A lot of theme-related things.
18
CHANGELOG.md
|
@ -3,13 +3,23 @@
|
||||||
|
|
||||||
## [v2.1.0] - 2021-4-4
|
## [v2.1.0] - 2021-4-4
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Server prompt + interface for adding & removing servers.
|
||||||
|
- Custom text for numerous themes. (Mostly just made things consistent, for example, "REPORT BUG" to "Report Bug" for Trollian.)
|
||||||
|
- Added theme support for "Beep on Message", "Flash on Message", "Mute Notifications".
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fixed current mood icon not showing up.
|
- Fixed current mood icon not showing up.
|
||||||
- Fixed "CHUMHANDLE:" not fitting on some themes.
|
- Fixed "CHUMHANDLE:" not fitting on some themes.
|
||||||
- Fixed console capitalization.
|
- Fixed "CONSOLE" & "REPORT BUG" menu options not being updated on theme change.
|
||||||
|
- Incorrect hex for color in MSChum theme.
|
||||||
### Added
|
- Fixed \_datadir not being used for certain json files.
|
||||||
- Server prompt
|
- Fixed "Specified color without alpha value but alpha given: 'rgb 0,0,0,0'" in johntierchum
|
||||||
|
- Fixed "RGB parameters out of range" in MSChum
|
||||||
|
- Fixed nothing.png not being present in battlefield theme.
|
||||||
|
- Fixed "Report" string not being updated in convo window when changing theme.
|
||||||
|
- Fixed pesterChumAction's text not being updated in memo windows when changing theme.
|
||||||
|
- Fixed incorrect sRGB profile in paperchum.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Made it so handle and ident are passed to ``_max_msg_len``, so, hopefully the text cutoff will be *slightly* less restrictive.
|
- Made it so handle and ident are passed to ``_max_msg_len``, so, hopefully the text cutoff will be *slightly* less restrictive.
|
||||||
|
|
3
TODO.md
|
@ -9,3 +9,6 @@
|
||||||
- Exclude unnecessary imports for builds.
|
- Exclude unnecessary imports for builds.
|
||||||
- Mask & target not being passed to ``_max_msg_len``.
|
- Mask & target not being passed to ``_max_msg_len``.
|
||||||
- No error message when Pesterchum fails to join a channel. (For example, when the channel name length is over CHANNELLEN)
|
- No error message when Pesterchum fails to join a channel. (For example, when the channel name length is over CHANNELLEN)
|
||||||
|
- Choose memo window doesn't get updated on theme change.
|
||||||
|
- Right click menu's color doesn't get updated on theme change in memos.
|
||||||
|
- Closed windows sometimes stay open.
|
43
convo.py
|
@ -649,15 +649,29 @@ class PesterConvo(QtWidgets.QFrame):
|
||||||
# Easiest solution: Implement a 'Mute' option that overrides all
|
# Easiest solution: Implement a 'Mute' option that overrides all
|
||||||
# notifications for that window, save for mentions.
|
# notifications for that window, save for mentions.
|
||||||
# TODO: Look into setting up theme support here.
|
# TODO: Look into setting up theme support here.
|
||||||
self._beepToggle = QtWidgets.QAction("Beep on Message", self)
|
|
||||||
|
# Theme support :3c
|
||||||
|
#if self.mainwindow.theme.has_key("main/menus/rclickchumlist/beeponmessage"):
|
||||||
|
try:
|
||||||
|
self._beepToggle = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/beeponmessage"], self)
|
||||||
|
except:
|
||||||
|
self._beepToggle = QtWidgets.QAction("BEEP ON MESSAGE", self)
|
||||||
self._beepToggle.setCheckable(True)
|
self._beepToggle.setCheckable(True)
|
||||||
self._beepToggle.toggled[bool].connect(self.toggleBeep)
|
self._beepToggle.toggled[bool].connect(self.toggleBeep)
|
||||||
|
|
||||||
self._flashToggle = QtWidgets.QAction("Flash on Message", self)
|
#if self.mainwindow.theme.has_key("main/menus/rclickchumlist/flashonmessage"):
|
||||||
|
try:
|
||||||
|
self._flashToggle = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/flashonmessage"], self)
|
||||||
|
except:
|
||||||
|
self._flashToggle = QtWidgets.QAction("FLASH ON MESSAGE", self)
|
||||||
self._flashToggle.setCheckable(True)
|
self._flashToggle.setCheckable(True)
|
||||||
self._flashToggle.toggled[bool].connect(self.toggleFlash)
|
self._flashToggle.toggled[bool].connect(self.toggleFlash)
|
||||||
|
|
||||||
self._muteToggle = QtWidgets.QAction("Mute Notifications", self)
|
#if self.mainwindow.theme.has_key("main/menus/rclickchumlist/mutenotifications"):
|
||||||
|
try:
|
||||||
|
self._muteToggle = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/mutenotifications"], self)
|
||||||
|
except:
|
||||||
|
self._muteToggle = QtWidgets.QAction("MUTE NOTIFICATIONS", self)
|
||||||
self._muteToggle.setCheckable(True)
|
self._muteToggle.setCheckable(True)
|
||||||
self._muteToggle.toggled[bool].connect(self.toggleMute)
|
self._muteToggle.toggled[bool].connect(self.toggleMute)
|
||||||
|
|
||||||
|
@ -862,6 +876,29 @@ class PesterConvo(QtWidgets.QFrame):
|
||||||
self.unblockchum.setText(self.mainwindow.theme["main/menus/rclickchumlist/unblockchum"])
|
self.unblockchum.setText(self.mainwindow.theme["main/menus/rclickchumlist/unblockchum"])
|
||||||
self.logchum.setText(self.mainwindow.theme["main/menus/rclickchumlist/viewlog"])
|
self.logchum.setText(self.mainwindow.theme["main/menus/rclickchumlist/viewlog"])
|
||||||
|
|
||||||
|
#if self.mainwindow.theme.has_key("main/menus/rclickchumlist/beeponmessage"):
|
||||||
|
try:
|
||||||
|
self._beepToggle.setText(self.mainwindow.theme["main/menus/rclickchumlist/beeponmessage"])
|
||||||
|
except:
|
||||||
|
self._beepToggle.setText("BEEP ON MESSAGE")
|
||||||
|
|
||||||
|
#if self.mainwindow.theme.has_key("main/menus/rclickchumlist/flashonmessage"):
|
||||||
|
try:
|
||||||
|
self._flashToggle.setText(self.mainwindow.theme["main/menus/rclickchumlist/flashonmessage"])
|
||||||
|
except:
|
||||||
|
self._flashToggle.setText("FLASH ON MESSAGE", self)
|
||||||
|
|
||||||
|
#if self.mainwindow.theme.has_key("main/menus/rclickchumlist/mutenotifications"):
|
||||||
|
try:
|
||||||
|
self._muteToggle.setText(self.mainwindow.theme["main/menus/rclickchumlist/mutenotifications"])
|
||||||
|
except:
|
||||||
|
self._muteToggle.setText("MUTE NOTIFICATIONS")
|
||||||
|
|
||||||
|
#if self.mainwindow.theme.has_key("main/menus/rclickchumlist/report"):
|
||||||
|
try:
|
||||||
|
self.reportchum.setText(self.mainwindow.theme["main/menus/rclickchumlist/report"])
|
||||||
|
except:
|
||||||
|
pass
|
||||||
self.textArea.changeTheme(theme)
|
self.textArea.changeTheme(theme)
|
||||||
self.textInput.changeTheme(theme)
|
self.textInput.changeTheme(theme)
|
||||||
|
|
||||||
|
|
41
memos.py
|
@ -420,15 +420,27 @@ class PesterMemo(PesterConvo):
|
||||||
self.invitechum = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/invitechum"], self)
|
self.invitechum = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/invitechum"], self)
|
||||||
self.invitechum.triggered.connect(self.inviteChums)
|
self.invitechum.triggered.connect(self.inviteChums)
|
||||||
|
|
||||||
self._beepToggle = QtWidgets.QAction("Beep on Message", self)
|
#if self.mainwindow.theme.has_key("main/menus/rclickchumlist/beeponmessage"):
|
||||||
|
try:
|
||||||
|
self._beepToggle = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/beeponmessage"], self)
|
||||||
|
except:
|
||||||
|
self._beepToggle = QtWidgets.QAction("BEEP ON MESSAGE", self)
|
||||||
self._beepToggle.setCheckable(True)
|
self._beepToggle.setCheckable(True)
|
||||||
self._beepToggle.toggled[bool].connect(self.toggleBeep)
|
self._beepToggle.toggled[bool].connect(self.toggleBeep)
|
||||||
|
|
||||||
self._flashToggle = QtWidgets.QAction("Flash on Message", self)
|
#if self.mainwindow.theme.has_key("main/menus/rclickchumlist/flashonmessage"):
|
||||||
|
try:
|
||||||
|
self._flashToggle = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/flashonmessage"], self)
|
||||||
|
except:
|
||||||
|
self._flashToggle = QtWidgets.QAction("FLASH ON MESSAGE", self)
|
||||||
self._flashToggle.setCheckable(True)
|
self._flashToggle.setCheckable(True)
|
||||||
self._flashToggle.toggled[bool].connect(self.toggleFlash)
|
self._flashToggle.toggled[bool].connect(self.toggleFlash)
|
||||||
|
|
||||||
self._muteToggle = QtWidgets.QAction("Mute Notifications", self)
|
#if self.mainwindow.theme.has_key("main/menus/rclickchumlist/mutenotifications"):
|
||||||
|
try:
|
||||||
|
self._muteToggle = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/mutenotifications"], self)
|
||||||
|
except:
|
||||||
|
self._muteToggle = QtWidgets.QAction("MUTE NOTIFICATIONS", self)
|
||||||
self._muteToggle.setCheckable(True)
|
self._muteToggle.setCheckable(True)
|
||||||
self._muteToggle.toggled[bool].connect(self.toggleMute)
|
self._muteToggle.toggled[bool].connect(self.toggleMute)
|
||||||
|
|
||||||
|
@ -638,6 +650,29 @@ class PesterMemo(PesterConvo):
|
||||||
self.timeswitchr.setIconSize(rarrow.realsize())
|
self.timeswitchr.setIconSize(rarrow.realsize())
|
||||||
self.timeswitchr.setStyleSheet(self.mainwindow.theme["memos/time/arrows/style"])
|
self.timeswitchr.setStyleSheet(self.mainwindow.theme["memos/time/arrows/style"])
|
||||||
|
|
||||||
|
#if self.mainwindow.theme.has_key("main/menus/rclickchumlist/beeponmessage"):
|
||||||
|
try:
|
||||||
|
self._beepToggle.setText(self.mainwindow.theme["main/menus/rclickchumlist/beeponmessage"])
|
||||||
|
except:
|
||||||
|
self._beepToggle.setText("BEEP ON MESSAGE")
|
||||||
|
|
||||||
|
#if self.mainwindow.theme.has_key("main/menus/rclickchumlist/flashonmessage"):
|
||||||
|
try:
|
||||||
|
self._flashToggle.setText(self.mainwindow.theme["main/menus/rclickchumlist/flashonmessage"])
|
||||||
|
except:
|
||||||
|
self._flashToggle.setText("FLASH ON MESSAGE")
|
||||||
|
|
||||||
|
#if self.mainwindow.theme.has_key("main/menus/rclickchumlist/mutenotifications"):
|
||||||
|
try:
|
||||||
|
self._muteToggle.setText(self.mainwindow.theme["main/menus/rclickchumlist/mutenotifications"])
|
||||||
|
except:
|
||||||
|
self._muteToggle.setText("MUTE NOTIFICATIONS")
|
||||||
|
|
||||||
|
#if self.mainwindow.theme.has_key("main/menus/rclickchumlist/pester"):
|
||||||
|
try:
|
||||||
|
self.pesterChumAction.setText(self.mainwindow.theme["main/menus/rclickchumlist/pester"])
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
def changeTheme(self, theme):
|
def changeTheme(self, theme):
|
||||||
self.initTheme(theme)
|
self.initTheme(theme)
|
||||||
|
|
|
@ -350,13 +350,20 @@ class chumArea(RightClickTree):
|
||||||
return self.optionsMenu
|
return self.optionsMenu
|
||||||
|
|
||||||
def startDrag(self, dropAction):
|
def startDrag(self, dropAction):
|
||||||
# create mime data object
|
## Traceback (most recent call last):
|
||||||
mime = QtCore.QMimeData()
|
## File "pesterchum.py", line 355, in startDrag
|
||||||
mime.setData('application/x-item', '???')
|
## mime.setData('application/x-item', '???')
|
||||||
# start drag
|
## TypeErroreError: setData(self, str, Union[QByteArray, bytes, bytearray]): argument 2 has unexpected type 'str'
|
||||||
drag = QtGui.QDrag(self)
|
try:
|
||||||
drag.setMimeData(mime)
|
# create mime data object
|
||||||
drag.start(QtCore.Qt.MoveAction)
|
mime = QtCore.QMimeData()
|
||||||
|
mime.setData('application/x-item', '???')
|
||||||
|
# start drag
|
||||||
|
drag = QtGui.QDrag(self)
|
||||||
|
drag.setMimeData(mime)
|
||||||
|
drag.start(QtCore.Qt.MoveAction)
|
||||||
|
except:
|
||||||
|
logging.exception('')
|
||||||
|
|
||||||
def dragMoveEvent(self, event):
|
def dragMoveEvent(self, event):
|
||||||
if event.mimeData().hasFormat("application/x-item"):
|
if event.mimeData().hasFormat("application/x-item"):
|
||||||
|
@ -1236,7 +1243,13 @@ class PesterWindow(MovingWindow):
|
||||||
self.chanServAction.triggered.connect(self.loadChanServ)
|
self.chanServAction.triggered.connect(self.loadChanServ)
|
||||||
self.aboutAction = QtWidgets.QAction(self.theme["main/menus/help/about"], self)
|
self.aboutAction = QtWidgets.QAction(self.theme["main/menus/help/about"], self)
|
||||||
self.aboutAction.triggered.connect(self.aboutPesterchum)
|
self.aboutAction.triggered.connect(self.aboutPesterchum)
|
||||||
self.reportBugAction = QtWidgets.QAction("REPORT BUG", self)
|
|
||||||
|
# Because I can't expect all themes to have this included.
|
||||||
|
if self.theme.has_key("main/menus/help/reportbug"):
|
||||||
|
self.reportBugAction = QtWidgets.QAction(self.theme["main/menus/help/reportbug"], self)
|
||||||
|
else:
|
||||||
|
self.reportBugAction = QtWidgets.QAction("REPORT BUG", self)
|
||||||
|
|
||||||
self.reportBugAction.triggered.connect(self.reportBug)
|
self.reportBugAction.triggered.connect(self.reportBug)
|
||||||
helpmenu = self.menu.addMenu(self.theme["main/menus/help/_name"])
|
helpmenu = self.menu.addMenu(self.theme["main/menus/help/_name"])
|
||||||
self.helpmenu = helpmenu
|
self.helpmenu = helpmenu
|
||||||
|
@ -1730,6 +1743,11 @@ class PesterWindow(MovingWindow):
|
||||||
except:
|
except:
|
||||||
self.console.action.setText("Console")
|
self.console.action.setText("Console")
|
||||||
|
|
||||||
|
try:
|
||||||
|
self.reportBugAction.setText(self.theme["main/menus/help/reportbug"])
|
||||||
|
except:
|
||||||
|
self.reportBugAction.setText("REPORT BUG")
|
||||||
|
|
||||||
# moods
|
# moods
|
||||||
self.moodsLabel.setText(theme["main/moodlabel/text"])
|
self.moodsLabel.setText(theme["main/moodlabel/text"])
|
||||||
self.moodsLabel.move(*theme["main/moodlabel/loc"])
|
self.moodsLabel.move(*theme["main/moodlabel/loc"])
|
||||||
|
@ -2975,7 +2993,7 @@ class PesterWindow(MovingWindow):
|
||||||
try:
|
try:
|
||||||
server = {
|
server = {
|
||||||
"server": server_and_port[0],
|
"server": server_and_port[0],
|
||||||
"port": server_and_port[1],
|
"port": int(server_and_port[1]),# to make sure port is a valid integer, and raise an exception if it cannot be converted.
|
||||||
"TLS": self.TLS_checkbox.isChecked()
|
"TLS": self.TLS_checkbox.isChecked()
|
||||||
}
|
}
|
||||||
logging.info("server: "+str(server))
|
logging.info("server: "+str(server))
|
||||||
|
@ -3050,19 +3068,21 @@ class PesterWindow(MovingWindow):
|
||||||
self.changeServerAskedToReset = True
|
self.changeServerAskedToReset = True
|
||||||
self.resetServerlist()
|
self.resetServerlist()
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
|
selected_entry = None
|
||||||
|
|
||||||
for i in range(len(server_list_obj)):
|
for i in range(len(server_list_obj)):
|
||||||
if server_list_obj[i]["server"] == self.removeServerBox.currentText():
|
if server_list_obj[i]["server"] == self.removeServerBox.currentText():
|
||||||
selected_entry = i
|
selected_entry = i
|
||||||
|
if selected_entry != None:
|
||||||
server_list_obj.pop(selected_entry)
|
server_list_obj.pop(selected_entry)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
with open(_datadir + "serverlist.json", "w") as server_file:
|
with open(_datadir + "serverlist.json", "w") as server_file:
|
||||||
server_file.write(json.dumps(server_list_obj, indent = 4))
|
server_file.write(json.dumps(server_list_obj, indent = 4))
|
||||||
server_file.close()
|
server_file.close()
|
||||||
except:
|
except:
|
||||||
logging.error("failed")
|
logging.error("failed")
|
||||||
|
|
||||||
|
|
||||||
self.changeServer()
|
self.changeServer()
|
||||||
|
|
|
@ -54,7 +54,10 @@
|
||||||
"opuser": "MAKE OP",
|
"opuser": "MAKE OP",
|
||||||
"voiceuser": "GIVE VOICE",
|
"voiceuser": "GIVE VOICE",
|
||||||
"quirksoff": "QUIRKS OFF",
|
"quirksoff": "QUIRKS OFF",
|
||||||
"invitechum": "INVITE CHUM"
|
"invitechum": "INVITE CHUM",
|
||||||
|
"beeponmessage": "BEEP ON MESSAGE",
|
||||||
|
"flashonmessage": "FLASH ON MESSAGE",
|
||||||
|
"mutenotifications": "MUTE NOTIFICATIONS"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chums": { "style": "border:0px; background-image:url($path/chumbg.png); background-color: rgb(102,102,102); background-repeat: no-repeat; color: white;font: bold;font-family: 'Arial';selection-background-color:#646464; ",
|
"chums": { "style": "border:0px; background-image:url($path/chumbg.png); background-color: rgb(102,102,102); background-repeat: no-repeat; color: white;font: bold;font-family: 'Arial';selection-background-color:#646464; ",
|
||||||
|
|
|
@ -26,21 +26,25 @@
|
||||||
"randen": "Random Encounter",
|
"randen": "Random Encounter",
|
||||||
"userlist": "Userlist",
|
"userlist": "Userlist",
|
||||||
"addgroup": "Add Group",
|
"addgroup": "Add Group",
|
||||||
|
"talk": "Pester",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"reconnect": "Reconnect",
|
"reconnect": "Reconnect",
|
||||||
"idle": "Idle",
|
"idle": "Idle",
|
||||||
"exit": "Exit"},
|
"exit": "Exit",
|
||||||
|
"console": "Console"},
|
||||||
"profile": {"_name": "Track",
|
"profile": {"_name": "Track",
|
||||||
"switch": "Switch",
|
"switch": "Switch",
|
||||||
"theme": "Theme",
|
"theme": "Theme",
|
||||||
"color": "Color",
|
"color": "Color",
|
||||||
"block": "Trollslum",
|
"block": "Trollslum",
|
||||||
"quirks": "Quirks" },
|
"quirks": "Quirks"},
|
||||||
"help": { "_name": "Info",
|
"help": { "_name": "Info",
|
||||||
"help": "Info",
|
"help": "Info",
|
||||||
"calsprite": "Calsprite",
|
"calsprite": "Calsprite",
|
||||||
|
"chanserv": "ChanServ",
|
||||||
"nickserv": "NickServ",
|
"nickserv": "NickServ",
|
||||||
"about": "About" },
|
"about": "About",
|
||||||
|
"reportbug": "Report Bug"},
|
||||||
"rclickchumlist": {"pester": "Pester",
|
"rclickchumlist": {"pester": "Pester",
|
||||||
"removechum": "Remove Chum",
|
"removechum": "Remove Chum",
|
||||||
"report": "Report",
|
"report": "Report",
|
||||||
|
@ -62,7 +66,10 @@
|
||||||
"memonoquirk": "Disable Quirks",
|
"memonoquirk": "Disable Quirks",
|
||||||
"memohidden": "Hidden",
|
"memohidden": "Hidden",
|
||||||
"memoinvite": "Invite-Only",
|
"memoinvite": "Invite-Only",
|
||||||
"memomute": "Mute" }
|
"memomute": "Mute",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications" }
|
||||||
},
|
},
|
||||||
"chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #414141; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: #ff168f;",
|
"chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #414141; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: #ff168f;",
|
||||||
"loc": [189, 162],
|
"loc": [189, 162],
|
||||||
|
|
|
@ -123,7 +123,7 @@
|
||||||
"text": "" },
|
"text": "" },
|
||||||
"currentMood": [18, 249]
|
"currentMood": [18, 249]
|
||||||
},
|
},
|
||||||
"defaultwindow": { "style": "background: #22222; font-family:'Courier';font:bold;selection-background-color:#F1F1F1; "
|
"defaultwindow": { "style": "background: #F1F1F1; font-family:'Courier';font:bold;selection-background-color:#F1F1F1; "
|
||||||
},
|
},
|
||||||
"addchum": { "style": "background: rgba(255, 255, 0, 0%); border:2px solid #000000; font: bold; color: rgba(0, 0, 0, 0%); font-family:'Courier';",
|
"addchum": { "style": "background: rgba(255, 255, 0, 0%); border:2px solid #000000; font: bold; color: rgba(0, 0, 0, 0%); font-family:'Courier';",
|
||||||
"pressed" : "background: rgb(255, 255, 255, 30%);",
|
"pressed" : "background: rgb(255, 255, 255, 30%);",
|
||||||
|
@ -218,7 +218,7 @@
|
||||||
},
|
},
|
||||||
"margins": {"top": 0, "bottom": 6, "left": 0, "right": 0 },
|
"margins": {"top": 0, "bottom": 6, "left": 0, "right": 0 },
|
||||||
"size": [500, 325],
|
"size": [500, 325],
|
||||||
"chumlabel": { "style": "margin-bottom: 21px;background: rgb(256, 256, 256); color: white; border:0px; font-size: 14px;font-family: 'Courier'",
|
"chumlabel": { "style": "margin-bottom: 21px;background: rgb(255, 255, 255); color: white; border:0px; font-size: 14px;font-family: 'Courier'",
|
||||||
"align": { "h": "center", "v": "center" },
|
"align": { "h": "center", "v": "center" },
|
||||||
"minheight": 47,
|
"minheight": 47,
|
||||||
"maxheight": 47,
|
"maxheight": 47,
|
||||||
|
|
|
@ -24,10 +24,12 @@
|
||||||
"randen": "Random Encounter",
|
"randen": "Random Encounter",
|
||||||
"userlist": "Cronies",
|
"userlist": "Cronies",
|
||||||
"addgroup": "New Crew",
|
"addgroup": "New Crew",
|
||||||
|
"talk": "Pester",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"reconnect": "Reconnect",
|
"reconnect": "Reconnect",
|
||||||
"idle": "Idle",
|
"idle": "Idle",
|
||||||
"exit": "Exit"},
|
"exit": "Exit",
|
||||||
|
"console": "Console"},
|
||||||
"profile": {"_name": "Track",
|
"profile": {"_name": "Track",
|
||||||
"switch": "Rap Name",
|
"switch": "Rap Name",
|
||||||
"theme": "Theme",
|
"theme": "Theme",
|
||||||
|
@ -38,7 +40,9 @@
|
||||||
"help": "Info",
|
"help": "Info",
|
||||||
"calsprite": "Calsprite",
|
"calsprite": "Calsprite",
|
||||||
"nickserv": "NickServ",
|
"nickserv": "NickServ",
|
||||||
"about": "The Deal" },
|
"about": "The Deal",
|
||||||
|
"reportbug": "Report Bug",
|
||||||
|
"chanserv": "ChanServ"},
|
||||||
"rclickchumlist": {"pester": "Patronize",
|
"rclickchumlist": {"pester": "Patronize",
|
||||||
"removechum": "Forget",
|
"removechum": "Forget",
|
||||||
"report": "Tell a Coppa",
|
"report": "Tell a Coppa",
|
||||||
|
@ -60,7 +64,10 @@
|
||||||
"memonoquirk": "Disable Quirks",
|
"memonoquirk": "Disable Quirks",
|
||||||
"memohidden": "Hidden",
|
"memohidden": "Hidden",
|
||||||
"memoinvite": "Invite-Only",
|
"memoinvite": "Invite-Only",
|
||||||
"memomute": "Mute" }
|
"memomute": "Mute",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications" }
|
||||||
},
|
},
|
||||||
"chums": { "style": "font-size: 16px; background: black; border: 3px solid white; font-family: 'Arial';selection-background-color:rgb(100,100,100); color: white;",
|
"chums": { "style": "font-size: 16px; background: black; border: 3px solid white; font-family: 'Arial';selection-background-color:rgb(100,100,100); color: white;",
|
||||||
"loc": [175, 70],
|
"loc": [175, 70],
|
||||||
|
|
|
@ -24,10 +24,12 @@
|
||||||
"randen": "Random Encounter",
|
"randen": "Random Encounter",
|
||||||
"userlist": "Userlist",
|
"userlist": "Userlist",
|
||||||
"addgroup": "Add Group",
|
"addgroup": "Add Group",
|
||||||
|
"talk": "Pester",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"reconnect": "Reconnect",
|
"reconnect": "Reconnect",
|
||||||
"idle": "Idle",
|
"idle": "Idle",
|
||||||
"exit": "Exit"},
|
"exit": "Exit",
|
||||||
|
"console": "Console"},
|
||||||
"profile": {"_name": "Profile",
|
"profile": {"_name": "Profile",
|
||||||
"switch": "Chumhandle",
|
"switch": "Chumhandle",
|
||||||
"theme": "Theme",
|
"theme": "Theme",
|
||||||
|
@ -38,7 +40,9 @@
|
||||||
"help": "Help",
|
"help": "Help",
|
||||||
"calsprite": "Calsprite",
|
"calsprite": "Calsprite",
|
||||||
"nickserv": "NickServ",
|
"nickserv": "NickServ",
|
||||||
"about": "About" },
|
"about": "About",
|
||||||
|
"reportbug": "Report Bug",
|
||||||
|
"chanserv": "ChanServ"},
|
||||||
"rclickchumlist": {"pester": "Pester",
|
"rclickchumlist": {"pester": "Pester",
|
||||||
"removechum": "Remove",
|
"removechum": "Remove",
|
||||||
"report": "Report",
|
"report": "Report",
|
||||||
|
@ -60,7 +64,10 @@
|
||||||
"memonoquirk": "Disable Quirks",
|
"memonoquirk": "Disable Quirks",
|
||||||
"memohidden": "Hidden",
|
"memohidden": "Hidden",
|
||||||
"memoinvite": "Invite-Only",
|
"memoinvite": "Invite-Only",
|
||||||
"memomute": "Mute" }
|
"memomute": "Mute",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications" }
|
||||||
},
|
},
|
||||||
"chums": { "style": "font-size: 12px; background: black; border: 3px solid white; font:bold; font-family: 'Arial';selection-background-color:rgb(100,100,100); color: white;",
|
"chums": { "style": "font-size: 12px; background: black; border: 3px solid white; font:bold; font-family: 'Arial';selection-background-color:rgb(100,100,100); color: white;",
|
||||||
"loc": [225, 150],
|
"loc": [225, 150],
|
||||||
|
|
BIN
themes/battlefield/nothing.png
Normal file
After Width: | Height: | Size: 279 B |
|
@ -19,11 +19,15 @@
|
||||||
"options": "Terms",
|
"options": "Terms",
|
||||||
"memos": "Wars",
|
"memos": "Wars",
|
||||||
"logviewer": "Legends",
|
"logviewer": "Legends",
|
||||||
|
"randen": "Random Encounter",
|
||||||
"userlist": "Pawns",
|
"userlist": "Pawns",
|
||||||
|
"addgroup": "Add Group",
|
||||||
|
"talk": "Pester",
|
||||||
"import": "Reinforce",
|
"import": "Reinforce",
|
||||||
"reconnect": "Resurrect",
|
"reconnect": "Resurrect",
|
||||||
"idle": "Rest",
|
"idle": "Rest",
|
||||||
"exit": "Exit"},
|
"exit": "Exit",
|
||||||
|
"console": "Console"},
|
||||||
"profile": {"_name": "Title",
|
"profile": {"_name": "Title",
|
||||||
"switch": "Alter",
|
"switch": "Alter",
|
||||||
"color": "Hue",
|
"color": "Hue",
|
||||||
|
@ -31,7 +35,12 @@
|
||||||
"block": "Enemies",
|
"block": "Enemies",
|
||||||
"quirks": "Typing"},
|
"quirks": "Typing"},
|
||||||
"help": { "_name": "Cavalry",
|
"help": { "_name": "Cavalry",
|
||||||
"about": "Creators" },
|
"about": "Creators",
|
||||||
|
"help": "Help",
|
||||||
|
"calsprite": "Calsprite",
|
||||||
|
"nickserv": "NickServ",
|
||||||
|
"reportbug": "Report Bug",
|
||||||
|
"chanserv": "ChanServ"},
|
||||||
"rclickchumlist": {"pester": "Parley",
|
"rclickchumlist": {"pester": "Parley",
|
||||||
"removechum": "Turn On",
|
"removechum": "Turn On",
|
||||||
"blockchum": "Deaconstruct",
|
"blockchum": "Deaconstruct",
|
||||||
|
@ -41,7 +50,23 @@
|
||||||
"unblockchum": "Renew User",
|
"unblockchum": "Renew User",
|
||||||
"banuser": "Destroy User",
|
"banuser": "Destroy User",
|
||||||
"opuser": "Empower",
|
"opuser": "Empower",
|
||||||
"quirksoff": "Untype"
|
"quirksoff": "Untype",
|
||||||
|
|
||||||
|
"notes": "Edit Notes...",
|
||||||
|
"removegroup": "Remove Group",
|
||||||
|
"renamegroup": "Rename Group",
|
||||||
|
"movechum": "Move To",
|
||||||
|
"voiceuser": "Give Voice",
|
||||||
|
"quirkkill": "Kill Quirk",
|
||||||
|
"invitechum": "Invite Chum",
|
||||||
|
"memosetting": "Memo Settings",
|
||||||
|
"memonoquirk": "Disable Quirks",
|
||||||
|
"memohidden": "Hidden",
|
||||||
|
"memoinvite": "Invite-Only",
|
||||||
|
"memomute": "Mute",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #C2C4EB; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: black;",
|
"chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #C2C4EB; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: black;",
|
||||||
|
|
|
@ -21,11 +21,15 @@
|
||||||
"options": "Preferences",
|
"options": "Preferences",
|
||||||
"memos": "Memos",
|
"memos": "Memos",
|
||||||
"logviewer": "Pesterlogs",
|
"logviewer": "Pesterlogs",
|
||||||
|
"randen": "Random Encounter",
|
||||||
"userlist": "Userlist",
|
"userlist": "Userlist",
|
||||||
|
"addgroup": "Add Group",
|
||||||
|
"talk": "Pester",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"idle": "Idle",
|
"idle": "Idle",
|
||||||
"reconnect": "Reconnect",
|
"reconnect": "Reconnect",
|
||||||
"exit": "Cease"},
|
"exit": "Cease",
|
||||||
|
"console": "Console"},
|
||||||
"profile": {"_name": "PC6.0",
|
"profile": {"_name": "PC6.0",
|
||||||
"switch": "Handle",
|
"switch": "Handle",
|
||||||
"color": "Color",
|
"color": "Color",
|
||||||
|
@ -33,7 +37,12 @@
|
||||||
"block": "Blocked",
|
"block": "Blocked",
|
||||||
"quirks": "Quirks"},
|
"quirks": "Quirks"},
|
||||||
"help": { "_name": "MSPA",
|
"help": { "_name": "MSPA",
|
||||||
"about": "About" },
|
"about": "About",
|
||||||
|
"help": "Help",
|
||||||
|
"calsprite": "CalSprite",
|
||||||
|
"chanserv": "ChanServ",
|
||||||
|
"nickserv": "NickServ",
|
||||||
|
"reportbug": "Report Bug"},
|
||||||
"rclickchumlist": {"pester": "Pester",
|
"rclickchumlist": {"pester": "Pester",
|
||||||
"removechum": "Remove",
|
"removechum": "Remove",
|
||||||
"report": "Report",
|
"report": "Report",
|
||||||
|
@ -43,7 +52,22 @@
|
||||||
"unblockchum": "Forgive",
|
"unblockchum": "Forgive",
|
||||||
"banuser": "Expel User",
|
"banuser": "Expel User",
|
||||||
"opuser": "Promote",
|
"opuser": "Promote",
|
||||||
"quirksoff": "Quirks Off"
|
"quirksoff": "Quirks Off",
|
||||||
|
"notes": "Edit Notes...",
|
||||||
|
"removegroup": "Remove Group",
|
||||||
|
"renamegroup": "Rename Group",
|
||||||
|
"movechum": "Move To",
|
||||||
|
"voiceuser": "Give Voice",
|
||||||
|
"quirkkill": "Kill Quirk",
|
||||||
|
"invitechum": "Invite Chum",
|
||||||
|
"memosetting": "Memo Settings",
|
||||||
|
"memonoquirk": "Disable Quirks",
|
||||||
|
"memohidden": "Hidden",
|
||||||
|
"memoinvite": "Invite-Only",
|
||||||
|
"memomute": "Mute",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chums": { "style": "border:0px; background-color: 444444; font: bold;font-family: 'Courier';selection-background-color: black; ",
|
"chums": { "style": "border:0px; background-color: 444444; font: bold;font-family: 'Courier';selection-background-color: black; ",
|
||||||
|
|
|
@ -14,11 +14,15 @@
|
||||||
"options": "Options",
|
"options": "Options",
|
||||||
"memos": "Cults",
|
"memos": "Cults",
|
||||||
"logviewer": "Grimoires",
|
"logviewer": "Grimoires",
|
||||||
|
"randen": "Random Summon",
|
||||||
"userlist": "Followers",
|
"userlist": "Followers",
|
||||||
|
"addgroup": "Add Cult",
|
||||||
|
"talk": "Summon",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"reconnect": "Return",
|
"reconnect": "Return",
|
||||||
"idle": "Sleep",
|
"idle": "Sleep",
|
||||||
"exit": "Exit"},
|
"exit": "Exit",
|
||||||
|
"console": "Beyond The Veil"},
|
||||||
"profile": {"_name": "Profile",
|
"profile": {"_name": "Profile",
|
||||||
"switch": "Change",
|
"switch": "Change",
|
||||||
"color": "Colour",
|
"color": "Colour",
|
||||||
|
@ -26,7 +30,12 @@
|
||||||
"block": "Demons",
|
"block": "Demons",
|
||||||
"quirks": "Quirks"},
|
"quirks": "Quirks"},
|
||||||
"help": { "_name": "Help",
|
"help": { "_name": "Help",
|
||||||
"about": "About" },
|
"about": "About",
|
||||||
|
"help": "Help",
|
||||||
|
"calsprite": "CalSprite",
|
||||||
|
"chanserv": "ChanServ",
|
||||||
|
"nickserv": "NickServ",
|
||||||
|
"reportbug": "Report Bug"},
|
||||||
"rclickchumlist": {"pester": "Manifest",
|
"rclickchumlist": {"pester": "Manifest",
|
||||||
"removechum": "Remove Chum",
|
"removechum": "Remove Chum",
|
||||||
"blockchum": "Block",
|
"blockchum": "Block",
|
||||||
|
@ -36,7 +45,22 @@
|
||||||
"unblockchum": "Unblock",
|
"unblockchum": "Unblock",
|
||||||
"banuser": "Ban User",
|
"banuser": "Ban User",
|
||||||
"opuser": "Make OP",
|
"opuser": "Make OP",
|
||||||
"quirksoff": "Unfog Speech"
|
"quirksoff": "Unfog Speech",
|
||||||
|
"notes": "Edit Notes...",
|
||||||
|
"removegroup": "Remove Group",
|
||||||
|
"renamegroup": "Rename Group",
|
||||||
|
"movechum": "Move To",
|
||||||
|
"voiceuser": "Give Voice",
|
||||||
|
"quirkkill": "Kill Quirk",
|
||||||
|
"invitechum": "Invite Chum",
|
||||||
|
"memosetting": "Memo Settings",
|
||||||
|
"memonoquirk": "Disable Quirks",
|
||||||
|
"memohidden": "Hidden",
|
||||||
|
"memoinvite": "Invite-Only",
|
||||||
|
"memomute": "Mute",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"close": { "image": "$path/x.png",
|
"close": { "image": "$path/x.png",
|
||||||
|
|
|
@ -26,7 +26,8 @@
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"reconnect": "Reconnect",
|
"reconnect": "Reconnect",
|
||||||
"idle": "Idle",
|
"idle": "Idle",
|
||||||
"exit": "Exit"},
|
"exit": "Exit",
|
||||||
|
"console": "Console"},
|
||||||
"profile": {"_name": "Profile",
|
"profile": {"_name": "Profile",
|
||||||
"switch": "Switch",
|
"switch": "Switch",
|
||||||
"color": "Color",
|
"color": "Color",
|
||||||
|
@ -36,8 +37,11 @@
|
||||||
"help": { "_name": "Help",
|
"help": { "_name": "Help",
|
||||||
"about": "About",
|
"about": "About",
|
||||||
"help": "Help",
|
"help": "Help",
|
||||||
|
"help": "Help",
|
||||||
"calsprite": "CalSprite",
|
"calsprite": "CalSprite",
|
||||||
"nickserv": "NickServ" },
|
"chanserv": "ChanServ",
|
||||||
|
"nickserv": "NickServ",
|
||||||
|
"reportbug": "Report Bug"},
|
||||||
"rclickchumlist": {"pester": "Pester",
|
"rclickchumlist": {"pester": "Pester",
|
||||||
"removechum": "Remove Chum",
|
"removechum": "Remove Chum",
|
||||||
"blockchum": "Block",
|
"blockchum": "Block",
|
||||||
|
@ -59,7 +63,10 @@
|
||||||
"memonoquirk": "Disable Quirks",
|
"memonoquirk": "Disable Quirks",
|
||||||
"memohidden": "Hidden",
|
"memohidden": "Hidden",
|
||||||
"memoinvite": "Invite-Only",
|
"memoinvite": "Invite-Only",
|
||||||
"memomute": "Mute"
|
"memomute": "Mute",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chums": { "style": "text-align: center; border:0px; background-image:url($path/chumbg.png); background-color: #ffe400; background-repeat: no-repeat; color: white; font-family: 'Century Gothic';selection-background-color:#646464; font-size:18px; ",
|
"chums": { "style": "text-align: center; border:0px; background-image:url($path/chumbg.png); background-color: #ffe400; background-repeat: no-repeat; color: white; font-family: 'Century Gothic';selection-background-color:#646464; font-size:18px; ",
|
||||||
|
|
|
@ -19,11 +19,15 @@
|
||||||
"options": "Options",
|
"options": "Options",
|
||||||
"memos": "Memos",
|
"memos": "Memos",
|
||||||
"logviewer": "Memories",
|
"logviewer": "Memories",
|
||||||
|
"randen": "Random Encounter",
|
||||||
"userlist": "Users",
|
"userlist": "Users",
|
||||||
|
"addgroup": "Add Group",
|
||||||
|
"talk": "Meet up",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"reconnect": "Reconnect",
|
"reconnect": "Reconnect",
|
||||||
"idle": "Idle",
|
"idle": "Idle",
|
||||||
"exit": "Exit"},
|
"exit": "Exit",
|
||||||
|
"console": "Console"},
|
||||||
"profile": {"_name": "Alias",
|
"profile": {"_name": "Alias",
|
||||||
"switch": "Change",
|
"switch": "Change",
|
||||||
"color": "Colour",
|
"color": "Colour",
|
||||||
|
@ -31,17 +35,37 @@
|
||||||
"block": "Rivals",
|
"block": "Rivals",
|
||||||
"quirks": "Quirks"},
|
"quirks": "Quirks"},
|
||||||
"help": { "_name": "Assistance",
|
"help": { "_name": "Assistance",
|
||||||
"about": "About!" },
|
"about": "About!",
|
||||||
|
"help": "Help",
|
||||||
|
"calsprite": "CalSprite",
|
||||||
|
"chanserv": "ChanServ",
|
||||||
|
"nickserv": "NickServ",
|
||||||
|
"reportbug": "Report Bug"},
|
||||||
"rclickchumlist": {"pester": "Meet Up With",
|
"rclickchumlist": {"pester": "Meet Up With",
|
||||||
"removechum": "Remove Chum",
|
"removechum": "Remove Chum",
|
||||||
"blockchum": "Stab",
|
"blockchum": "Stab",
|
||||||
"report": "Report",
|
"report": "Report",
|
||||||
"addchum": "Add Chum",
|
"addchum": "Add Chum",
|
||||||
"viewlog": "View Chitty",
|
"viewlog": "View Chitty",
|
||||||
|
"notes": "Edit Notes...",
|
||||||
"unblockchum": "Unblock",
|
"unblockchum": "Unblock",
|
||||||
|
"removegroup": "Remove Group",
|
||||||
|
"renamegroup": "Rename Group",
|
||||||
|
"movechum": "Move To",
|
||||||
"banuser": "Slay User",
|
"banuser": "Slay User",
|
||||||
"opuser": "Make Sidekick",
|
"opuser": "Make Sidekick",
|
||||||
"quirksoff": "No Frills"
|
"voiceuser": "Let Speak",
|
||||||
|
"quirksoff": "No Frills",
|
||||||
|
"quirkkill": "Kill Quirk",
|
||||||
|
"invitechum": "Invite Rival",
|
||||||
|
"memosetting": "Memo Settings",
|
||||||
|
"memonoquirk": "Disable Quirks",
|
||||||
|
"memohidden": "Hidden",
|
||||||
|
"memoinvite": "Invite-Only",
|
||||||
|
"memomute": "Mute",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #C2C4EB; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: black;",
|
"chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #C2C4EB; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: black;",
|
||||||
|
|
|
@ -41,7 +41,9 @@
|
||||||
"about": "About",
|
"about": "About",
|
||||||
"help": "Help",
|
"help": "Help",
|
||||||
"calsprite": "CalSprite",
|
"calsprite": "CalSprite",
|
||||||
"nickserv": "NickServ" },
|
"chanserv": "ChanServ",
|
||||||
|
"nickserv": "NickServ",
|
||||||
|
"reportbug": "Report Bug"},
|
||||||
"rclickchumlist": {"pester": "Pester",
|
"rclickchumlist": {"pester": "Pester",
|
||||||
"removechum": "Remove Chum",
|
"removechum": "Remove Chum",
|
||||||
"report": "Report",
|
"report": "Report",
|
||||||
|
@ -63,7 +65,10 @@
|
||||||
"memonoquirk": "Disable Quirks",
|
"memonoquirk": "Disable Quirks",
|
||||||
"memohidden": "Hidden",
|
"memohidden": "Hidden",
|
||||||
"memoinvite": "Invite-Only",
|
"memoinvite": "Invite-Only",
|
||||||
"memomute": "Mute"
|
"memomute": "Mute",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chums": { "style": "border:0px; background-image:url($path/chumbg.png); background-color: rgb(110,110,110); background-repeat: no-repeat; color: white; font-family: 'Arial';selection-background-color:#646464; font-size:14px; ",
|
"chums": { "style": "border:0px; background-image:url($path/chumbg.png); background-color: rgb(110,110,110); background-repeat: no-repeat; color: white; font-family: 'Arial';selection-background-color:#646464; font-size:14px; ",
|
||||||
|
|
|
@ -19,11 +19,15 @@
|
||||||
"options": "Options",
|
"options": "Options",
|
||||||
"memos": "Memos!!",
|
"memos": "Memos!!",
|
||||||
"logviewer": "Memories",
|
"logviewer": "Memories",
|
||||||
|
"randen": "Random Encounter",
|
||||||
"userlist": "Users",
|
"userlist": "Users",
|
||||||
|
"addgroup": "Add Group",
|
||||||
|
"talk": "Pester",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"reconnect": "Reconnect",
|
"reconnect": "Reconnect",
|
||||||
"idle": "Idle",
|
"idle": "Idle",
|
||||||
"exit": "Exit"},
|
"exit": "Exit",
|
||||||
|
"console": "Console"},
|
||||||
"profile": {"_name": "Profile",
|
"profile": {"_name": "Profile",
|
||||||
"switch": "Change",
|
"switch": "Change",
|
||||||
"color": "Colour",
|
"color": "Colour",
|
||||||
|
@ -31,17 +35,37 @@
|
||||||
"block": "Meanies",
|
"block": "Meanies",
|
||||||
"quirks": "Quirks"},
|
"quirks": "Quirks"},
|
||||||
"help": { "_name": "Help??",
|
"help": { "_name": "Help??",
|
||||||
"about": "About!" },
|
"about": "About!",
|
||||||
|
"help": "Help!!",
|
||||||
|
"calsprite": "CalSprite",
|
||||||
|
"chanserv": "ChanServ",
|
||||||
|
"nickserv": "NickServ",
|
||||||
|
"reportbug": "Report Bug"},
|
||||||
"rclickchumlist": {"pester": "Talk To!!",
|
"rclickchumlist": {"pester": "Talk To!!",
|
||||||
"removechum": "Remove Buddy",
|
"removechum": "Remove Buddy",
|
||||||
"blockchum": "Block",
|
"blockchum": "Block",
|
||||||
"report": "Report",
|
"report": "Report",
|
||||||
"addchum": "Add Buddy",
|
"addchum": "Add Buddy",
|
||||||
"viewlog": "View Memory!!",
|
"viewlog": "View Memory!!",
|
||||||
|
"notes": "Edit Notes!!",
|
||||||
"unblockchum": "Unblock",
|
"unblockchum": "Unblock",
|
||||||
|
"removegroup": "Remove Group",
|
||||||
|
"renamegroup": "Rename Group",
|
||||||
|
"movechum": "Move To",
|
||||||
"banuser": "Ban User",
|
"banuser": "Ban User",
|
||||||
"opuser": "Make OP",
|
"opuser": "Make OP",
|
||||||
"quirksoff": "Quirkless!!"
|
"quirksoff": "Quirkless!!",
|
||||||
|
"voiceuser": "Give Voice",
|
||||||
|
"quirkkill": "Kill Quirk",
|
||||||
|
"invitechum": "Invite Chum",
|
||||||
|
"memosetting": "Memo Settings",
|
||||||
|
"memonoquirk": "Disable Quirks",
|
||||||
|
"memohidden": "Hidden",
|
||||||
|
"memoinvite": "Invite-Only",
|
||||||
|
"memomute": "Mute",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #C2C4EB; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: black;",
|
"chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #C2C4EB; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: black;",
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
"sounds": { "alertsound": "$path/alarm.wav",
|
"sounds": { "alertsound": "$path/alarm.wav",
|
||||||
"ceasesound": "$path/cease.wav" },
|
"ceasesound": "$path/cease.wav" },
|
||||||
"defaultwindow": { "style": "background: #9BC4F2; font-family:'Arial';font:bold;selection-background-color:#66A5EC; " },
|
"defaultwindow": { "style": "background: #9BC4F2; font-family:'Arial';font:bold;selection-background-color:#66A5EC; " },
|
||||||
"chums": { "style": "border:2px solid rgb(0,0,0,0%); background-color: rgb(0,0,0,0%);color: black;font: bold;font-size:14px;font-family: 'Arial';selection-background-color:white; ",
|
"chums": { "style": "border:2px solid rgba(0,0,0,0%); background-color: rgba(0,0,0,0%);color: black;font: bold;font-size:14px;font-family: 'Arial';selection-background-color:white; ",
|
||||||
"size": [200, 180],
|
"size": [200, 180],
|
||||||
"loc": [233,400],
|
"loc": [233,400],
|
||||||
"moods": {
|
"moods": {
|
||||||
|
@ -107,56 +107,56 @@
|
||||||
},
|
},
|
||||||
"defaultmood": 5,
|
"defaultmood": 5,
|
||||||
"moods": [
|
"moods": [
|
||||||
{ "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
{ "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
"selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"loc": [302, 133],
|
"loc": [302, 133],
|
||||||
"size": [30, 30],
|
"size": [30, 30],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "$path/chummy.png",
|
"icon": "$path/chummy.png",
|
||||||
"mood": 0
|
"mood": 0
|
||||||
},
|
},
|
||||||
{ "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
{ "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
"selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"loc": [460, 432],
|
"loc": [460, 432],
|
||||||
"size": [30, 30],
|
"size": [30, 30],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "$path/rancorous.png",
|
"icon": "$path/rancorous.png",
|
||||||
"mood": 1
|
"mood": 1
|
||||||
},
|
},
|
||||||
{ "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
{ "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
"selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"loc": [368, 162],
|
"loc": [368, 162],
|
||||||
"size": [30, 30],
|
"size": [30, 30],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "$path/bemused.png",
|
"icon": "$path/bemused.png",
|
||||||
"mood": 22
|
"mood": 22
|
||||||
},
|
},
|
||||||
{ "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
{ "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
"selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"loc": [391, 192],
|
"loc": [391, 192],
|
||||||
"size": [30, 30],
|
"size": [30, 30],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "$path/pleasant.png",
|
"icon": "$path/pleasant.png",
|
||||||
"mood": 3
|
"mood": 3
|
||||||
},
|
},
|
||||||
{ "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
{ "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
"selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"loc": [409, 223],
|
"loc": [409, 223],
|
||||||
"size": [30, 30],
|
"size": [30, 30],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "$path/distraught.png",
|
"icon": "$path/distraught.png",
|
||||||
"mood": 4
|
"mood": 4
|
||||||
},
|
},
|
||||||
{ "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
{ "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
"selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"loc": [416, 260],
|
"loc": [416, 260],
|
||||||
"size": [30, 30],
|
"size": [30, 30],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "$path/pranky.png",
|
"icon": "$path/pranky.png",
|
||||||
"mood": 5
|
"mood": 5
|
||||||
},
|
},
|
||||||
{ "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
{ "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
"selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"loc": [412, 289],
|
"loc": [412, 289],
|
||||||
"size": [30, 30],
|
"size": [30, 30],
|
||||||
"text": "",
|
"text": "",
|
||||||
|
@ -164,32 +164,32 @@
|
||||||
"mood": 6
|
"mood": 6
|
||||||
},
|
},
|
||||||
|
|
||||||
{ "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
{ "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
"selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"loc": [335, 145],
|
"loc": [335, 145],
|
||||||
"size": [30, 30],
|
"size": [30, 30],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "$path/amazed.png",
|
"icon": "$path/amazed.png",
|
||||||
"mood": 20
|
"mood": 20
|
||||||
},
|
},
|
||||||
{ "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
{ "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
"selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"loc": [265, 122],
|
"loc": [265, 122],
|
||||||
"size": [30, 30],
|
"size": [30, 30],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "$path/insolent.png",
|
"icon": "$path/insolent.png",
|
||||||
"mood": 21
|
"mood": 21
|
||||||
},
|
},
|
||||||
{ "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
{ "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
"selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"loc": [387, 309],
|
"loc": [387, 309],
|
||||||
"size": [30, 30],
|
"size": [30, 30],
|
||||||
"text": "",
|
"text": "",
|
||||||
"icon": "$path/protective.png",
|
"icon": "$path/protective.png",
|
||||||
"mood": 18
|
"mood": 18
|
||||||
},
|
},
|
||||||
{ "style": "text-align:left; background:rgb(0,0,0,0);border:2px solid rgb(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
{ "style": "text-align:left; background:rgba(0,0,0,0);border:2px solid rgba(0,0,0,0);color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"selected": "text-align:left; background:rgb(0,0,0,0); border:2px solid rgb(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
"selected": "text-align:left; background:rgba(0,0,0,0); border:2px solid rgba(0,0,0,0); color: #66A5EC; font-family:'Arial'; font:bold; padding-left:3px;",
|
||||||
"loc": [436, 404],
|
"loc": [436, 404],
|
||||||
"size": [30, 30],
|
"size": [30, 30],
|
||||||
"text": "",
|
"text": "",
|
||||||
|
|
|
@ -22,10 +22,12 @@
|
||||||
"randen": "Random Encounter",
|
"randen": "Random Encounter",
|
||||||
"userlist": "Userlist",
|
"userlist": "Userlist",
|
||||||
"addgroup": "Add Group",
|
"addgroup": "Add Group",
|
||||||
|
"talk": "Pester",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"reconnect": "Reconnect",
|
"reconnect": "Reconnect",
|
||||||
"idle": "Idle",
|
"idle": "Idle",
|
||||||
"exit": "Exit"},
|
"exit": "Exit",
|
||||||
|
"console": "Console"},
|
||||||
"profile": {"_name": "Profile",
|
"profile": {"_name": "Profile",
|
||||||
"switch": "Switch",
|
"switch": "Switch",
|
||||||
"color": "Color",
|
"color": "Color",
|
||||||
|
@ -36,7 +38,9 @@
|
||||||
"about": "About",
|
"about": "About",
|
||||||
"help": "Help",
|
"help": "Help",
|
||||||
"calsprite": "CalSprite",
|
"calsprite": "CalSprite",
|
||||||
"nickserv": "NickServ" },
|
"chanserv": "ChanServ",
|
||||||
|
"nickserv": "NickServ",
|
||||||
|
"reportbug": "Report Bug"},
|
||||||
"rclickchumlist": {"pester": "Pester",
|
"rclickchumlist": {"pester": "Pester",
|
||||||
"removechum": "Remove Chum",
|
"removechum": "Remove Chum",
|
||||||
"blockchum": "Block",
|
"blockchum": "Block",
|
||||||
|
@ -51,7 +55,17 @@
|
||||||
"opuser": "Make OP",
|
"opuser": "Make OP",
|
||||||
"voiceuser": "Give Voice",
|
"voiceuser": "Give Voice",
|
||||||
"quirksoff": "Quirks Off",
|
"quirksoff": "Quirks Off",
|
||||||
"invitechum": "Invite Chum"
|
"invitechum": "Invite Chum",
|
||||||
|
"notes": "Edit Notes...",
|
||||||
|
"quirkkill": "Kill Quirk",
|
||||||
|
"memosetting": "Memo Settings",
|
||||||
|
"memonoquirk": "Disable Quirks",
|
||||||
|
"memohidden": "Hidden",
|
||||||
|
"memoinvite": "Invite-Only",
|
||||||
|
"memomute": "Mute",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #C2C4EB; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: black;",
|
"chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #C2C4EB; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: black;",
|
||||||
|
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 338 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 378 B After Width: | Height: | Size: 378 B |
Before Width: | Height: | Size: 338 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 340 B After Width: | Height: | Size: 340 B |
Before Width: | Height: | Size: 396 B After Width: | Height: | Size: 396 B |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 344 B After Width: | Height: | Size: 344 B |
Before Width: | Height: | Size: 349 B After Width: | Height: | Size: 349 B |
Before Width: | Height: | Size: 340 B After Width: | Height: | Size: 340 B |
Before Width: | Height: | Size: 341 B After Width: | Height: | Size: 341 B |
Before Width: | Height: | Size: 339 B After Width: | Height: | Size: 339 B |
Before Width: | Height: | Size: 329 B After Width: | Height: | Size: 329 B |
Before Width: | Height: | Size: 341 B After Width: | Height: | Size: 341 B |
Before Width: | Height: | Size: 375 B After Width: | Height: | Size: 375 B |
Before Width: | Height: | Size: 313 B After Width: | Height: | Size: 313 B |
Before Width: | Height: | Size: 388 B After Width: | Height: | Size: 388 B |
Before Width: | Height: | Size: 424 B After Width: | Height: | Size: 424 B |
Before Width: | Height: | Size: 341 B After Width: | Height: | Size: 341 B |
Before Width: | Height: | Size: 344 B After Width: | Height: | Size: 344 B |
Before Width: | Height: | Size: 286 B After Width: | Height: | Size: 286 B |
Before Width: | Height: | Size: 348 B After Width: | Height: | Size: 348 B |
Before Width: | Height: | Size: 380 B After Width: | Height: | Size: 380 B |
Before Width: | Height: | Size: 344 B After Width: | Height: | Size: 344 B |
Before Width: | Height: | Size: 337 B After Width: | Height: | Size: 337 B |
Before Width: | Height: | Size: 403 B After Width: | Height: | Size: 403 B |
Before Width: | Height: | Size: 376 B After Width: | Height: | Size: 376 B |
Before Width: | Height: | Size: 134 KiB After Width: | Height: | Size: 132 KiB |
Before Width: | Height: | Size: 330 KiB After Width: | Height: | Size: 330 KiB |
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 401 B |
Before Width: | Height: | Size: 350 B After Width: | Height: | Size: 350 B |
Before Width: | Height: | Size: 346 B After Width: | Height: | Size: 346 B |
Before Width: | Height: | Size: 350 B After Width: | Height: | Size: 350 B |
Before Width: | Height: | Size: 534 B After Width: | Height: | Size: 534 B |
Before Width: | Height: | Size: 351 B After Width: | Height: | Size: 351 B |
Before Width: | Height: | Size: 337 B After Width: | Height: | Size: 337 B |
Before Width: | Height: | Size: 340 B After Width: | Height: | Size: 340 B |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 305 B |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 297 B |
Before Width: | Height: | Size: 341 B After Width: | Height: | Size: 341 B |
Before Width: | Height: | Size: 341 B After Width: | Height: | Size: 341 B |
|
@ -19,10 +19,12 @@
|
||||||
"randen": "Random Encounter",
|
"randen": "Random Encounter",
|
||||||
"userlist": "Userlist",
|
"userlist": "Userlist",
|
||||||
"addgroup": "Add Group",
|
"addgroup": "Add Group",
|
||||||
|
"talk": "Pester",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"reconnect": "Reconnect",
|
"reconnect": "Reconnect",
|
||||||
"idle": "Idle",
|
"idle": "Idle",
|
||||||
"exit": "Log Off"},
|
"exit": "Log Off",
|
||||||
|
"console": "Console"},
|
||||||
"profile": {"_name": " ",
|
"profile": {"_name": " ",
|
||||||
"switch": "Switch",
|
"switch": "Switch",
|
||||||
"color": "Color",
|
"color": "Color",
|
||||||
|
@ -32,8 +34,10 @@
|
||||||
"help": { "_name": " ",
|
"help": { "_name": " ",
|
||||||
"about": "About",
|
"about": "About",
|
||||||
"help": "Help",
|
"help": "Help",
|
||||||
"calsprite": "Calsprite",
|
"calsprite": "CalSprite",
|
||||||
"nickserv": "Nickserv" },
|
"chanserv": "ChanServ",
|
||||||
|
"nickserv": "NickServ",
|
||||||
|
"reportbug": "Report Bug"},
|
||||||
"rclickchumlist": {"pester": "Message",
|
"rclickchumlist": {"pester": "Message",
|
||||||
"removechum": "Remove",
|
"removechum": "Remove",
|
||||||
"report": "Report",
|
"report": "Report",
|
||||||
|
@ -56,7 +60,10 @@
|
||||||
"memonoquirk": "Disable Quirks",
|
"memonoquirk": "Disable Quirks",
|
||||||
"memohidden": "Hidden",
|
"memohidden": "Hidden",
|
||||||
"memoinvite": "Invite Only",
|
"memoinvite": "Invite Only",
|
||||||
"memomute": "Mute Memo"
|
"memomute": "Mute Memo",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"close": { "image": "$path/m.png",
|
"close": { "image": "$path/m.png",
|
||||||
|
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 329 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 587 B After Width: | Height: | Size: 587 B |
Before Width: | Height: | Size: 332 B After Width: | Height: | Size: 332 B |
Before Width: | Height: | Size: 354 B After Width: | Height: | Size: 354 B |
Before Width: | Height: | Size: 474 B After Width: | Height: | Size: 474 B |
Before Width: | Height: | Size: 340 B After Width: | Height: | Size: 340 B |
|
@ -66,7 +66,10 @@
|
||||||
"memonoquirk": "DISABLE QUIRKS",
|
"memonoquirk": "DISABLE QUIRKS",
|
||||||
"memohidden": "HIDDEN",
|
"memohidden": "HIDDEN",
|
||||||
"memoinvite": "INVITE-ONLY",
|
"memoinvite": "INVITE-ONLY",
|
||||||
"memomute": "MUTE"
|
"memomute": "MUTE",
|
||||||
|
"beeponmessage": "BEEP ON MESSAGE",
|
||||||
|
"flashonmessage": "FLASH ON MESSAGE",
|
||||||
|
"mutenotifications": "MUTE NOTIFICATIONS"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chums": { "style": "border:2px solid yellow; background-color: black;color: white;font: bold;font-family: 'Courier';selection-background-color:#646464; ",
|
"chums": { "style": "border:2px solid yellow; background-color: black;color: white;font: bold;font-family: 'Courier';selection-background-color:#646464; ",
|
||||||
|
|
|
@ -21,11 +21,15 @@
|
||||||
"options": "Options",
|
"options": "Options",
|
||||||
"memos": "Memos",
|
"memos": "Memos",
|
||||||
"logviewer": "Pesterlogs",
|
"logviewer": "Pesterlogs",
|
||||||
|
"randen": "Random Encounter",
|
||||||
"userlist": "Userlist",
|
"userlist": "Userlist",
|
||||||
|
"addgroup": "Add Group",
|
||||||
|
"talk": "Pester",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"reconnect": "Reconnect",
|
"reconnect": "Reconnect",
|
||||||
"idle": "Idle",
|
"idle": "Idle",
|
||||||
"exit": "Exit"},
|
"exit": "Exit",
|
||||||
|
"console": "Console"},
|
||||||
"profile": {"_name": "Profile",
|
"profile": {"_name": "Profile",
|
||||||
"switch": "Switch",
|
"switch": "Switch",
|
||||||
"color": "Color",
|
"color": "Color",
|
||||||
|
@ -33,7 +37,12 @@
|
||||||
"block": "Trollslum",
|
"block": "Trollslum",
|
||||||
"quirks": "Quirks"},
|
"quirks": "Quirks"},
|
||||||
"help": { "_name": "Help",
|
"help": { "_name": "Help",
|
||||||
"about": "About" },
|
"about": "About",
|
||||||
|
"help": "Help",
|
||||||
|
"calsprite": "CalSprite",
|
||||||
|
"chanserv": "ChanServ",
|
||||||
|
"nickserv": "NickServ",
|
||||||
|
"reportbug": "Report Bug" },
|
||||||
"rclickchumlist": {"pester": "Pester",
|
"rclickchumlist": {"pester": "Pester",
|
||||||
"removechum": "Remove Chum",
|
"removechum": "Remove Chum",
|
||||||
"report": "Report",
|
"report": "Report",
|
||||||
|
@ -43,7 +52,22 @@
|
||||||
"unblockchum": "Unblock",
|
"unblockchum": "Unblock",
|
||||||
"banuser": "Ban User",
|
"banuser": "Ban User",
|
||||||
"opuser": "Make OP",
|
"opuser": "Make OP",
|
||||||
"quirksoff": "Quirks Off"
|
"quirksoff": "Quirks Off",
|
||||||
|
"notes": "Edit Notes...",
|
||||||
|
"removegroup": "Remove Group",
|
||||||
|
"renamegroup": "Rename Group",
|
||||||
|
"movechum": "Move To",
|
||||||
|
"voiceuser": "Give Voice",
|
||||||
|
"quirkkill": "Kill Quirk",
|
||||||
|
"invitechum": "Invite Chum",
|
||||||
|
"memosetting": "Memo Settings",
|
||||||
|
"memonoquirk": "Disable Quirks",
|
||||||
|
"memohidden": "Hidden",
|
||||||
|
"memoinvite": "Invite-Only",
|
||||||
|
"memomute": "Mute",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chums": { "style": "border:0px; background-color: rgb(184,136,232); background-repeat: no-repeat; color: #FFD0FA; font-family: 'Arial';selection-background-color:#646464; font-size:14px; ",
|
"chums": { "style": "border:0px; background-color: rgb(184,136,232); background-repeat: no-repeat; color: #FFD0FA; font-family: 'Arial';selection-background-color:#646464; font-size:14px; ",
|
||||||
|
|
|
@ -19,10 +19,12 @@
|
||||||
"randen": "Random Encounter",
|
"randen": "Random Encounter",
|
||||||
"userlist": "Userlist",
|
"userlist": "Userlist",
|
||||||
"addgroup": "Add Group",
|
"addgroup": "Add Group",
|
||||||
|
"talk": "Pester",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"reconnect": "Reconnect",
|
"reconnect": "Reconnect",
|
||||||
"idle": "Idle",
|
"idle": "Idle",
|
||||||
"exit": "Log Off"},
|
"exit": "Log Off",
|
||||||
|
"console": "Console"},
|
||||||
"profile": {"_name": " ",
|
"profile": {"_name": " ",
|
||||||
"switch": "Switch",
|
"switch": "Switch",
|
||||||
"color": "Color",
|
"color": "Color",
|
||||||
|
@ -32,8 +34,10 @@
|
||||||
"help": { "_name": " ",
|
"help": { "_name": " ",
|
||||||
"about": "About",
|
"about": "About",
|
||||||
"help": "Help",
|
"help": "Help",
|
||||||
"calsprite": "Calsprite",
|
"calsprite": "CalSprite",
|
||||||
"nickserv": "Nickserv" },
|
"chanserv": "ChanServ",
|
||||||
|
"nickserv": "NickServ",
|
||||||
|
"reportbug": "Report Bug" },
|
||||||
"rclickchumlist": {"pester": "Message",
|
"rclickchumlist": {"pester": "Message",
|
||||||
"removechum": "Remove",
|
"removechum": "Remove",
|
||||||
"report": "Report",
|
"report": "Report",
|
||||||
|
@ -56,7 +60,10 @@
|
||||||
"memonoquirk": "Disable Quirks",
|
"memonoquirk": "Disable Quirks",
|
||||||
"memohidden": "Hidden",
|
"memohidden": "Hidden",
|
||||||
"memoinvite": "Invite Only",
|
"memoinvite": "Invite Only",
|
||||||
"memomute": "Mute Memo"
|
"memomute": "Mute Memo",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"close": { "image": "$path/m.png",
|
"close": { "image": "$path/m.png",
|
||||||
|
|
|
@ -41,7 +41,8 @@
|
||||||
"help": "Help",
|
"help": "Help",
|
||||||
"calsprite": "CalSprite",
|
"calsprite": "CalSprite",
|
||||||
"chanserv": "ChanServ",
|
"chanserv": "ChanServ",
|
||||||
"nickserv": "NickServ" },
|
"nickserv": "NickServ",
|
||||||
|
"reportbug": "Report Bug"},
|
||||||
"rclickchumlist": {"pester": "Troll",
|
"rclickchumlist": {"pester": "Troll",
|
||||||
"removechum": "Trash",
|
"removechum": "Trash",
|
||||||
"report": "Tattle",
|
"report": "Tattle",
|
||||||
|
@ -63,7 +64,10 @@
|
||||||
"memonoquirk": "Disable Quirks",
|
"memonoquirk": "Disable Quirks",
|
||||||
"memohidden": "Hidden",
|
"memohidden": "Hidden",
|
||||||
"memoinvite": "Invite-Only",
|
"memoinvite": "Invite-Only",
|
||||||
"memomute": "Mute" }
|
"memomute": "Mute",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications" }
|
||||||
},
|
},
|
||||||
"chums": { "style": "font-size: 12px; background: white; border:0px; font-family: 'Arial';selection-background-color:rgb(200,200,200); ",
|
"chums": { "style": "font-size: 12px; background: white; border:0px; font-family: 'Arial';selection-background-color:rgb(200,200,200); ",
|
||||||
"scrollbar": { "style" : "background-color:#c2c2c2;",
|
"scrollbar": { "style" : "background-color:#c2c2c2;",
|
||||||
|
|
|
@ -25,10 +25,12 @@
|
||||||
"randen": "Random Encounter",
|
"randen": "Random Encounter",
|
||||||
"userlist": "Userlist",
|
"userlist": "Userlist",
|
||||||
"addgroup": "Add Group",
|
"addgroup": "Add Group",
|
||||||
|
"talk": "Converse",
|
||||||
"import": "Import",
|
"import": "Import",
|
||||||
"idle": "Idle",
|
"idle": "Idle",
|
||||||
"reconnect": "Reconnect",
|
"reconnect": "Reconnect",
|
||||||
"exit": "Cease"},
|
"exit": "Cease",
|
||||||
|
"console": "Console"},
|
||||||
"profile": {"_name": "Ink",
|
"profile": {"_name": "Ink",
|
||||||
"switch": "Alias",
|
"switch": "Alias",
|
||||||
"color": "Ink Color",
|
"color": "Ink Color",
|
||||||
|
@ -39,7 +41,9 @@
|
||||||
"about": "About",
|
"about": "About",
|
||||||
"help": "Assistance",
|
"help": "Assistance",
|
||||||
"calsprite": "CalSprite",
|
"calsprite": "CalSprite",
|
||||||
"nickserv": "NickServ" },
|
"chanserv": "ChanServ",
|
||||||
|
"nickserv": "NickServ",
|
||||||
|
"reportbug": "Report Bug" },
|
||||||
"rclickchumlist": {"pester": "Converse",
|
"rclickchumlist": {"pester": "Converse",
|
||||||
"removechum": "Erase User",
|
"removechum": "Erase User",
|
||||||
"report": "Report User",
|
"report": "Report User",
|
||||||
|
@ -61,7 +65,10 @@
|
||||||
"memonoquirk": "Disable Quirks",
|
"memonoquirk": "Disable Quirks",
|
||||||
"memohidden": "Hidden",
|
"memohidden": "Hidden",
|
||||||
"memoinvite": "Invite-Only",
|
"memoinvite": "Invite-Only",
|
||||||
"memomute": "Mute"
|
"memomute": "Mute",
|
||||||
|
"beeponmessage": "Beep on Message",
|
||||||
|
"flashonmessage": "Flash on Message",
|
||||||
|
"mutenotifications": "Mute Notifications"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"chums": { "style": "border:0px; background-color: white; font: bold;font-family: 'Courier';selection-background-color: black; ",
|
"chums": { "style": "border:0px; background-color: white; font: bold;font-family: 'Courier';selection-background-color: black; ",
|
||||||
|
|