A lot of theme-related things.
18
CHANGELOG.md
|
@ -3,13 +3,23 @@
|
|||
|
||||
## [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 current mood icon not showing up.
|
||||
- Fixed "CHUMHANDLE:" not fitting on some themes.
|
||||
- Fixed console capitalization.
|
||||
|
||||
### Added
|
||||
- Server prompt
|
||||
- Fixed "CONSOLE" & "REPORT BUG" menu options not being updated on theme change.
|
||||
- Incorrect hex for color in MSChum theme.
|
||||
- Fixed \_datadir not being used for certain json files.
|
||||
- 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
|
||||
- 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.
|
||||
- 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)
|
||||
- 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
|
||||
# notifications for that window, save for mentions.
|
||||
# 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.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.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.toggled[bool].connect(self.toggleMute)
|
||||
|
||||
|
@ -862,6 +876,29 @@ class PesterConvo(QtWidgets.QFrame):
|
|||
self.unblockchum.setText(self.mainwindow.theme["main/menus/rclickchumlist/unblockchum"])
|
||||
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.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.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.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.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.toggled[bool].connect(self.toggleMute)
|
||||
|
||||
|
@ -638,6 +650,29 @@ class PesterMemo(PesterConvo):
|
|||
self.timeswitchr.setIconSize(rarrow.realsize())
|
||||
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):
|
||||
self.initTheme(theme)
|
||||
|
|
|
@ -350,13 +350,20 @@ class chumArea(RightClickTree):
|
|||
return self.optionsMenu
|
||||
|
||||
def startDrag(self, dropAction):
|
||||
# create mime data object
|
||||
mime = QtCore.QMimeData()
|
||||
mime.setData('application/x-item', '???')
|
||||
# start drag
|
||||
drag = QtGui.QDrag(self)
|
||||
drag.setMimeData(mime)
|
||||
drag.start(QtCore.Qt.MoveAction)
|
||||
## Traceback (most recent call last):
|
||||
## File "pesterchum.py", line 355, in startDrag
|
||||
## mime.setData('application/x-item', '???')
|
||||
## TypeErroreError: setData(self, str, Union[QByteArray, bytes, bytearray]): argument 2 has unexpected type 'str'
|
||||
try:
|
||||
# create mime data object
|
||||
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):
|
||||
if event.mimeData().hasFormat("application/x-item"):
|
||||
|
@ -1236,7 +1243,13 @@ class PesterWindow(MovingWindow):
|
|||
self.chanServAction.triggered.connect(self.loadChanServ)
|
||||
self.aboutAction = QtWidgets.QAction(self.theme["main/menus/help/about"], self)
|
||||
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)
|
||||
helpmenu = self.menu.addMenu(self.theme["main/menus/help/_name"])
|
||||
self.helpmenu = helpmenu
|
||||
|
@ -1730,6 +1743,11 @@ class PesterWindow(MovingWindow):
|
|||
except:
|
||||
self.console.action.setText("Console")
|
||||
|
||||
try:
|
||||
self.reportBugAction.setText(self.theme["main/menus/help/reportbug"])
|
||||
except:
|
||||
self.reportBugAction.setText("REPORT BUG")
|
||||
|
||||
# moods
|
||||
self.moodsLabel.setText(theme["main/moodlabel/text"])
|
||||
self.moodsLabel.move(*theme["main/moodlabel/loc"])
|
||||
|
@ -2975,7 +2993,7 @@ class PesterWindow(MovingWindow):
|
|||
try:
|
||||
server = {
|
||||
"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()
|
||||
}
|
||||
logging.info("server: "+str(server))
|
||||
|
@ -3050,19 +3068,21 @@ class PesterWindow(MovingWindow):
|
|||
self.changeServerAskedToReset = True
|
||||
self.resetServerlist()
|
||||
return 1
|
||||
|
||||
selected_entry = None
|
||||
|
||||
for i in range(len(server_list_obj)):
|
||||
if server_list_obj[i]["server"] == self.removeServerBox.currentText():
|
||||
selected_entry = i
|
||||
|
||||
server_list_obj.pop(selected_entry)
|
||||
|
||||
try:
|
||||
with open(_datadir + "serverlist.json", "w") as server_file:
|
||||
server_file.write(json.dumps(server_list_obj, indent = 4))
|
||||
server_file.close()
|
||||
except:
|
||||
logging.error("failed")
|
||||
if selected_entry != None:
|
||||
server_list_obj.pop(selected_entry)
|
||||
|
||||
try:
|
||||
with open(_datadir + "serverlist.json", "w") as server_file:
|
||||
server_file.write(json.dumps(server_list_obj, indent = 4))
|
||||
server_file.close()
|
||||
except:
|
||||
logging.error("failed")
|
||||
|
||||
|
||||
self.changeServer()
|
||||
|
|
|
@ -54,7 +54,10 @@
|
|||
"opuser": "MAKE OP",
|
||||
"voiceuser": "GIVE VOICE",
|
||||
"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; ",
|
||||
|
|
|
@ -26,21 +26,25 @@
|
|||
"randen": "Random Encounter",
|
||||
"userlist": "Userlist",
|
||||
"addgroup": "Add Group",
|
||||
"talk": "Pester",
|
||||
"import": "Import",
|
||||
"reconnect": "Reconnect",
|
||||
"idle": "Idle",
|
||||
"exit": "Exit"},
|
||||
"exit": "Exit",
|
||||
"console": "Console"},
|
||||
"profile": {"_name": "Track",
|
||||
"switch": "Switch",
|
||||
"theme": "Theme",
|
||||
"color": "Color",
|
||||
"block": "Trollslum",
|
||||
"quirks": "Quirks" },
|
||||
"quirks": "Quirks"},
|
||||
"help": { "_name": "Info",
|
||||
"help": "Info",
|
||||
"calsprite": "Calsprite",
|
||||
"chanserv": "ChanServ",
|
||||
"nickserv": "NickServ",
|
||||
"about": "About" },
|
||||
"about": "About",
|
||||
"reportbug": "Report Bug"},
|
||||
"rclickchumlist": {"pester": "Pester",
|
||||
"removechum": "Remove Chum",
|
||||
"report": "Report",
|
||||
|
@ -62,7 +66,10 @@
|
|||
"memonoquirk": "Disable Quirks",
|
||||
"memohidden": "Hidden",
|
||||
"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;",
|
||||
"loc": [189, 162],
|
||||
|
|
|
@ -123,7 +123,7 @@
|
|||
"text": "" },
|
||||
"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';",
|
||||
"pressed" : "background: rgb(255, 255, 255, 30%);",
|
||||
|
@ -218,7 +218,7 @@
|
|||
},
|
||||
"margins": {"top": 0, "bottom": 6, "left": 0, "right": 0 },
|
||||
"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" },
|
||||
"minheight": 47,
|
||||
"maxheight": 47,
|
||||
|
|
|
@ -24,10 +24,12 @@
|
|||
"randen": "Random Encounter",
|
||||
"userlist": "Cronies",
|
||||
"addgroup": "New Crew",
|
||||
"talk": "Pester",
|
||||
"import": "Import",
|
||||
"reconnect": "Reconnect",
|
||||
"idle": "Idle",
|
||||
"exit": "Exit"},
|
||||
"exit": "Exit",
|
||||
"console": "Console"},
|
||||
"profile": {"_name": "Track",
|
||||
"switch": "Rap Name",
|
||||
"theme": "Theme",
|
||||
|
@ -38,7 +40,9 @@
|
|||
"help": "Info",
|
||||
"calsprite": "Calsprite",
|
||||
"nickserv": "NickServ",
|
||||
"about": "The Deal" },
|
||||
"about": "The Deal",
|
||||
"reportbug": "Report Bug",
|
||||
"chanserv": "ChanServ"},
|
||||
"rclickchumlist": {"pester": "Patronize",
|
||||
"removechum": "Forget",
|
||||
"report": "Tell a Coppa",
|
||||
|
@ -60,7 +64,10 @@
|
|||
"memonoquirk": "Disable Quirks",
|
||||
"memohidden": "Hidden",
|
||||
"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;",
|
||||
"loc": [175, 70],
|
||||
|
|
|
@ -24,10 +24,12 @@
|
|||
"randen": "Random Encounter",
|
||||
"userlist": "Userlist",
|
||||
"addgroup": "Add Group",
|
||||
"talk": "Pester",
|
||||
"import": "Import",
|
||||
"reconnect": "Reconnect",
|
||||
"idle": "Idle",
|
||||
"exit": "Exit"},
|
||||
"exit": "Exit",
|
||||
"console": "Console"},
|
||||
"profile": {"_name": "Profile",
|
||||
"switch": "Chumhandle",
|
||||
"theme": "Theme",
|
||||
|
@ -38,7 +40,9 @@
|
|||
"help": "Help",
|
||||
"calsprite": "Calsprite",
|
||||
"nickserv": "NickServ",
|
||||
"about": "About" },
|
||||
"about": "About",
|
||||
"reportbug": "Report Bug",
|
||||
"chanserv": "ChanServ"},
|
||||
"rclickchumlist": {"pester": "Pester",
|
||||
"removechum": "Remove",
|
||||
"report": "Report",
|
||||
|
@ -60,7 +64,10 @@
|
|||
"memonoquirk": "Disable Quirks",
|
||||
"memohidden": "Hidden",
|
||||
"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;",
|
||||
"loc": [225, 150],
|
||||
|
|
BIN
themes/battlefield/nothing.png
Normal file
After Width: | Height: | Size: 279 B |
|
@ -19,11 +19,15 @@
|
|||
"options": "Terms",
|
||||
"memos": "Wars",
|
||||
"logviewer": "Legends",
|
||||
"randen": "Random Encounter",
|
||||
"userlist": "Pawns",
|
||||
"addgroup": "Add Group",
|
||||
"talk": "Pester",
|
||||
"import": "Reinforce",
|
||||
"reconnect": "Resurrect",
|
||||
"idle": "Rest",
|
||||
"exit": "Exit"},
|
||||
"exit": "Exit",
|
||||
"console": "Console"},
|
||||
"profile": {"_name": "Title",
|
||||
"switch": "Alter",
|
||||
"color": "Hue",
|
||||
|
@ -31,7 +35,12 @@
|
|||
"block": "Enemies",
|
||||
"quirks": "Typing"},
|
||||
"help": { "_name": "Cavalry",
|
||||
"about": "Creators" },
|
||||
"about": "Creators",
|
||||
"help": "Help",
|
||||
"calsprite": "Calsprite",
|
||||
"nickserv": "NickServ",
|
||||
"reportbug": "Report Bug",
|
||||
"chanserv": "ChanServ"},
|
||||
"rclickchumlist": {"pester": "Parley",
|
||||
"removechum": "Turn On",
|
||||
"blockchum": "Deaconstruct",
|
||||
|
@ -41,7 +50,23 @@
|
|||
"unblockchum": "Renew User",
|
||||
"banuser": "Destroy User",
|
||||
"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;",
|
||||
|
|
|
@ -21,11 +21,15 @@
|
|||
"options": "Preferences",
|
||||
"memos": "Memos",
|
||||
"logviewer": "Pesterlogs",
|
||||
"randen": "Random Encounter",
|
||||
"userlist": "Userlist",
|
||||
"addgroup": "Add Group",
|
||||
"talk": "Pester",
|
||||
"import": "Import",
|
||||
"idle": "Idle",
|
||||
"reconnect": "Reconnect",
|
||||
"exit": "Cease"},
|
||||
"exit": "Cease",
|
||||
"console": "Console"},
|
||||
"profile": {"_name": "PC6.0",
|
||||
"switch": "Handle",
|
||||
"color": "Color",
|
||||
|
@ -33,7 +37,12 @@
|
|||
"block": "Blocked",
|
||||
"quirks": "Quirks"},
|
||||
"help": { "_name": "MSPA",
|
||||
"about": "About" },
|
||||
"about": "About",
|
||||
"help": "Help",
|
||||
"calsprite": "CalSprite",
|
||||
"chanserv": "ChanServ",
|
||||
"nickserv": "NickServ",
|
||||
"reportbug": "Report Bug"},
|
||||
"rclickchumlist": {"pester": "Pester",
|
||||
"removechum": "Remove",
|
||||
"report": "Report",
|
||||
|
@ -43,7 +52,22 @@
|
|||
"unblockchum": "Forgive",
|
||||
"banuser": "Expel User",
|
||||
"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; ",
|
||||
|
|
|
@ -14,11 +14,15 @@
|
|||
"options": "Options",
|
||||
"memos": "Cults",
|
||||
"logviewer": "Grimoires",
|
||||
"randen": "Random Summon",
|
||||
"userlist": "Followers",
|
||||
"addgroup": "Add Cult",
|
||||
"talk": "Summon",
|
||||
"import": "Import",
|
||||
"reconnect": "Return",
|
||||
"idle": "Sleep",
|
||||
"exit": "Exit"},
|
||||
"exit": "Exit",
|
||||
"console": "Beyond The Veil"},
|
||||
"profile": {"_name": "Profile",
|
||||
"switch": "Change",
|
||||
"color": "Colour",
|
||||
|
@ -26,7 +30,12 @@
|
|||
"block": "Demons",
|
||||
"quirks": "Quirks"},
|
||||
"help": { "_name": "Help",
|
||||
"about": "About" },
|
||||
"about": "About",
|
||||
"help": "Help",
|
||||
"calsprite": "CalSprite",
|
||||
"chanserv": "ChanServ",
|
||||
"nickserv": "NickServ",
|
||||
"reportbug": "Report Bug"},
|
||||
"rclickchumlist": {"pester": "Manifest",
|
||||
"removechum": "Remove Chum",
|
||||
"blockchum": "Block",
|
||||
|
@ -36,7 +45,22 @@
|
|||
"unblockchum": "Unblock",
|
||||
"banuser": "Ban User",
|
||||
"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",
|
||||
|
|
|
@ -26,7 +26,8 @@
|
|||
"import": "Import",
|
||||
"reconnect": "Reconnect",
|
||||
"idle": "Idle",
|
||||
"exit": "Exit"},
|
||||
"exit": "Exit",
|
||||
"console": "Console"},
|
||||
"profile": {"_name": "Profile",
|
||||
"switch": "Switch",
|
||||
"color": "Color",
|
||||
|
@ -36,8 +37,11 @@
|
|||
"help": { "_name": "Help",
|
||||
"about": "About",
|
||||
"help": "Help",
|
||||
"help": "Help",
|
||||
"calsprite": "CalSprite",
|
||||
"nickserv": "NickServ" },
|
||||
"chanserv": "ChanServ",
|
||||
"nickserv": "NickServ",
|
||||
"reportbug": "Report Bug"},
|
||||
"rclickchumlist": {"pester": "Pester",
|
||||
"removechum": "Remove Chum",
|
||||
"blockchum": "Block",
|
||||
|
@ -59,7 +63,10 @@
|
|||
"memonoquirk": "Disable Quirks",
|
||||
"memohidden": "Hidden",
|
||||
"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; ",
|
||||
|
|
|
@ -19,11 +19,15 @@
|
|||
"options": "Options",
|
||||
"memos": "Memos",
|
||||
"logviewer": "Memories",
|
||||
"randen": "Random Encounter",
|
||||
"userlist": "Users",
|
||||
"addgroup": "Add Group",
|
||||
"talk": "Meet up",
|
||||
"import": "Import",
|
||||
"reconnect": "Reconnect",
|
||||
"idle": "Idle",
|
||||
"exit": "Exit"},
|
||||
"exit": "Exit",
|
||||
"console": "Console"},
|
||||
"profile": {"_name": "Alias",
|
||||
"switch": "Change",
|
||||
"color": "Colour",
|
||||
|
@ -31,17 +35,37 @@
|
|||
"block": "Rivals",
|
||||
"quirks": "Quirks"},
|
||||
"help": { "_name": "Assistance",
|
||||
"about": "About!" },
|
||||
"about": "About!",
|
||||
"help": "Help",
|
||||
"calsprite": "CalSprite",
|
||||
"chanserv": "ChanServ",
|
||||
"nickserv": "NickServ",
|
||||
"reportbug": "Report Bug"},
|
||||
"rclickchumlist": {"pester": "Meet Up With",
|
||||
"removechum": "Remove Chum",
|
||||
"blockchum": "Stab",
|
||||
"report": "Report",
|
||||
"addchum": "Add Chum",
|
||||
"viewlog": "View Chitty",
|
||||
"notes": "Edit Notes...",
|
||||
"unblockchum": "Unblock",
|
||||
"removegroup": "Remove Group",
|
||||
"renamegroup": "Rename Group",
|
||||
"movechum": "Move To",
|
||||
"banuser": "Slay User",
|
||||
"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;",
|
||||
|
|
|
@ -41,7 +41,9 @@
|
|||
"about": "About",
|
||||
"help": "Help",
|
||||
"calsprite": "CalSprite",
|
||||
"nickserv": "NickServ" },
|
||||
"chanserv": "ChanServ",
|
||||
"nickserv": "NickServ",
|
||||
"reportbug": "Report Bug"},
|
||||
"rclickchumlist": {"pester": "Pester",
|
||||
"removechum": "Remove Chum",
|
||||
"report": "Report",
|
||||
|
@ -63,7 +65,10 @@
|
|||
"memonoquirk": "Disable Quirks",
|
||||
"memohidden": "Hidden",
|
||||
"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; ",
|
||||
|
|
|
@ -19,11 +19,15 @@
|
|||
"options": "Options",
|
||||
"memos": "Memos!!",
|
||||
"logviewer": "Memories",
|
||||
"randen": "Random Encounter",
|
||||
"userlist": "Users",
|
||||
"addgroup": "Add Group",
|
||||
"talk": "Pester",
|
||||
"import": "Import",
|
||||
"reconnect": "Reconnect",
|
||||
"idle": "Idle",
|
||||
"exit": "Exit"},
|
||||
"exit": "Exit",
|
||||
"console": "Console"},
|
||||
"profile": {"_name": "Profile",
|
||||
"switch": "Change",
|
||||
"color": "Colour",
|
||||
|
@ -31,17 +35,37 @@
|
|||
"block": "Meanies",
|
||||
"quirks": "Quirks"},
|
||||
"help": { "_name": "Help??",
|
||||
"about": "About!" },
|
||||
"about": "About!",
|
||||
"help": "Help!!",
|
||||
"calsprite": "CalSprite",
|
||||
"chanserv": "ChanServ",
|
||||
"nickserv": "NickServ",
|
||||
"reportbug": "Report Bug"},
|
||||
"rclickchumlist": {"pester": "Talk To!!",
|
||||
"removechum": "Remove Buddy",
|
||||
"blockchum": "Block",
|
||||
"report": "Report",
|
||||
"addchum": "Add Buddy",
|
||||
"viewlog": "View Memory!!",
|
||||
"notes": "Edit Notes!!",
|
||||
"unblockchum": "Unblock",
|
||||
"removegroup": "Remove Group",
|
||||
"renamegroup": "Rename Group",
|
||||
"movechum": "Move To",
|
||||
"banuser": "Ban User",
|
||||
"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;",
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"sounds": { "alertsound": "$path/alarm.wav",
|
||||
"ceasesound": "$path/cease.wav" },
|
||||
"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],
|
||||
"loc": [233,400],
|
||||
"moods": {
|
||||
|
@ -107,56 +107,56 @@
|
|||
},
|
||||
"defaultmood": 5,
|
||||
"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;",
|
||||
"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;",
|
||||
{ "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: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],
|
||||
"size": [30, 30],
|
||||
"text": "",
|
||||
"icon": "$path/chummy.png",
|
||||
"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;",
|
||||
"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;",
|
||||
{ "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: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],
|
||||
"size": [30, 30],
|
||||
"text": "",
|
||||
"icon": "$path/rancorous.png",
|
||||
"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;",
|
||||
"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;",
|
||||
{ "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: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],
|
||||
"size": [30, 30],
|
||||
"text": "",
|
||||
"icon": "$path/bemused.png",
|
||||
"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;",
|
||||
"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;",
|
||||
{ "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: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],
|
||||
"size": [30, 30],
|
||||
"text": "",
|
||||
"icon": "$path/pleasant.png",
|
||||
"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;",
|
||||
"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;",
|
||||
{ "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: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],
|
||||
"size": [30, 30],
|
||||
"text": "",
|
||||
"icon": "$path/distraught.png",
|
||||
"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;",
|
||||
"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;",
|
||||
{ "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: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],
|
||||
"size": [30, 30],
|
||||
"text": "",
|
||||
"icon": "$path/pranky.png",
|
||||
"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;",
|
||||
"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;",
|
||||
{ "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: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],
|
||||
"size": [30, 30],
|
||||
"text": "",
|
||||
|
@ -164,32 +164,32 @@
|
|||
"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;",
|
||||
"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;",
|
||||
{ "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: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],
|
||||
"size": [30, 30],
|
||||
"text": "",
|
||||
"icon": "$path/amazed.png",
|
||||
"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;",
|
||||
"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;",
|
||||
{ "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: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],
|
||||
"size": [30, 30],
|
||||
"text": "",
|
||||
"icon": "$path/insolent.png",
|
||||
"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;",
|
||||
"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;",
|
||||
{ "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: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],
|
||||
"size": [30, 30],
|
||||
"text": "",
|
||||
"icon": "$path/protective.png",
|
||||
"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;",
|
||||
"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;",
|
||||
{ "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: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],
|
||||
"size": [30, 30],
|
||||
"text": "",
|
||||
|
|
|
@ -22,10 +22,12 @@
|
|||
"randen": "Random Encounter",
|
||||
"userlist": "Userlist",
|
||||
"addgroup": "Add Group",
|
||||
"talk": "Pester",
|
||||
"import": "Import",
|
||||
"reconnect": "Reconnect",
|
||||
"idle": "Idle",
|
||||
"exit": "Exit"},
|
||||
"idle": "Idle",
|
||||
"exit": "Exit",
|
||||
"console": "Console"},
|
||||
"profile": {"_name": "Profile",
|
||||
"switch": "Switch",
|
||||
"color": "Color",
|
||||
|
@ -36,7 +38,9 @@
|
|||
"about": "About",
|
||||
"help": "Help",
|
||||
"calsprite": "CalSprite",
|
||||
"nickserv": "NickServ" },
|
||||
"chanserv": "ChanServ",
|
||||
"nickserv": "NickServ",
|
||||
"reportbug": "Report Bug"},
|
||||
"rclickchumlist": {"pester": "Pester",
|
||||
"removechum": "Remove Chum",
|
||||
"blockchum": "Block",
|
||||
|
@ -51,7 +55,17 @@
|
|||
"opuser": "Make OP",
|
||||
"voiceuser": "Give Voice",
|
||||
"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;",
|
||||
|
|
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",
|
||||
"userlist": "Userlist",
|
||||
"addgroup": "Add Group",
|
||||
"talk": "Pester",
|
||||
"import": "Import",
|
||||
"reconnect": "Reconnect",
|
||||
"idle": "Idle",
|
||||
"exit": "Log Off"},
|
||||
"exit": "Log Off",
|
||||
"console": "Console"},
|
||||
"profile": {"_name": " ",
|
||||
"switch": "Switch",
|
||||
"color": "Color",
|
||||
|
@ -32,8 +34,10 @@
|
|||
"help": { "_name": " ",
|
||||
"about": "About",
|
||||
"help": "Help",
|
||||
"calsprite": "Calsprite",
|
||||
"nickserv": "Nickserv" },
|
||||
"calsprite": "CalSprite",
|
||||
"chanserv": "ChanServ",
|
||||
"nickserv": "NickServ",
|
||||
"reportbug": "Report Bug"},
|
||||
"rclickchumlist": {"pester": "Message",
|
||||
"removechum": "Remove",
|
||||
"report": "Report",
|
||||
|
@ -56,7 +60,10 @@
|
|||
"memonoquirk": "Disable Quirks",
|
||||
"memohidden": "Hidden",
|
||||
"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",
|
||||
|
|
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",
|
||||
"memohidden": "HIDDEN",
|
||||
"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; ",
|
||||
|
|
|
@ -21,11 +21,15 @@
|
|||
"options": "Options",
|
||||
"memos": "Memos",
|
||||
"logviewer": "Pesterlogs",
|
||||
"randen": "Random Encounter",
|
||||
"userlist": "Userlist",
|
||||
"addgroup": "Add Group",
|
||||
"talk": "Pester",
|
||||
"import": "Import",
|
||||
"reconnect": "Reconnect",
|
||||
"idle": "Idle",
|
||||
"exit": "Exit"},
|
||||
"exit": "Exit",
|
||||
"console": "Console"},
|
||||
"profile": {"_name": "Profile",
|
||||
"switch": "Switch",
|
||||
"color": "Color",
|
||||
|
@ -33,7 +37,12 @@
|
|||
"block": "Trollslum",
|
||||
"quirks": "Quirks"},
|
||||
"help": { "_name": "Help",
|
||||
"about": "About" },
|
||||
"about": "About",
|
||||
"help": "Help",
|
||||
"calsprite": "CalSprite",
|
||||
"chanserv": "ChanServ",
|
||||
"nickserv": "NickServ",
|
||||
"reportbug": "Report Bug" },
|
||||
"rclickchumlist": {"pester": "Pester",
|
||||
"removechum": "Remove Chum",
|
||||
"report": "Report",
|
||||
|
@ -43,7 +52,22 @@
|
|||
"unblockchum": "Unblock",
|
||||
"banuser": "Ban User",
|
||||
"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; ",
|
||||
|
|
|
@ -19,10 +19,12 @@
|
|||
"randen": "Random Encounter",
|
||||
"userlist": "Userlist",
|
||||
"addgroup": "Add Group",
|
||||
"talk": "Pester",
|
||||
"import": "Import",
|
||||
"reconnect": "Reconnect",
|
||||
"idle": "Idle",
|
||||
"exit": "Log Off"},
|
||||
"exit": "Log Off",
|
||||
"console": "Console"},
|
||||
"profile": {"_name": " ",
|
||||
"switch": "Switch",
|
||||
"color": "Color",
|
||||
|
@ -32,8 +34,10 @@
|
|||
"help": { "_name": " ",
|
||||
"about": "About",
|
||||
"help": "Help",
|
||||
"calsprite": "Calsprite",
|
||||
"nickserv": "Nickserv" },
|
||||
"calsprite": "CalSprite",
|
||||
"chanserv": "ChanServ",
|
||||
"nickserv": "NickServ",
|
||||
"reportbug": "Report Bug" },
|
||||
"rclickchumlist": {"pester": "Message",
|
||||
"removechum": "Remove",
|
||||
"report": "Report",
|
||||
|
@ -56,7 +60,10 @@
|
|||
"memonoquirk": "Disable Quirks",
|
||||
"memohidden": "Hidden",
|
||||
"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",
|
||||
|
|
|
@ -41,7 +41,8 @@
|
|||
"help": "Help",
|
||||
"calsprite": "CalSprite",
|
||||
"chanserv": "ChanServ",
|
||||
"nickserv": "NickServ" },
|
||||
"nickserv": "NickServ",
|
||||
"reportbug": "Report Bug"},
|
||||
"rclickchumlist": {"pester": "Troll",
|
||||
"removechum": "Trash",
|
||||
"report": "Tattle",
|
||||
|
@ -63,7 +64,10 @@
|
|||
"memonoquirk": "Disable Quirks",
|
||||
"memohidden": "Hidden",
|
||||
"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); ",
|
||||
"scrollbar": { "style" : "background-color:#c2c2c2;",
|
||||
|
|
|
@ -25,10 +25,12 @@
|
|||
"randen": "Random Encounter",
|
||||
"userlist": "Userlist",
|
||||
"addgroup": "Add Group",
|
||||
"talk": "Converse",
|
||||
"import": "Import",
|
||||
"idle": "Idle",
|
||||
"reconnect": "Reconnect",
|
||||
"exit": "Cease"},
|
||||
"idle": "Idle",
|
||||
"reconnect": "Reconnect",
|
||||
"exit": "Cease",
|
||||
"console": "Console"},
|
||||
"profile": {"_name": "Ink",
|
||||
"switch": "Alias",
|
||||
"color": "Ink Color",
|
||||
|
@ -39,7 +41,9 @@
|
|||
"about": "About",
|
||||
"help": "Assistance",
|
||||
"calsprite": "CalSprite",
|
||||
"nickserv": "NickServ" },
|
||||
"chanserv": "ChanServ",
|
||||
"nickserv": "NickServ",
|
||||
"reportbug": "Report Bug" },
|
||||
"rclickchumlist": {"pester": "Converse",
|
||||
"removechum": "Erase User",
|
||||
"report": "Report User",
|
||||
|
@ -61,7 +65,10 @@
|
|||
"memonoquirk": "Disable Quirks",
|
||||
"memohidden": "Hidden",
|
||||
"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; ",
|
||||
|
|