From c2fa5491af1759c75ab3c29c5f21577e93e37c95 Mon Sep 17 00:00:00 2001 From: Kiooeht Date: Tue, 12 Jul 2011 00:15:47 -0700 Subject: [PATCH] Fix all themes for newest version --- irc.py | 2 +- memos.py | 20 +++--- parsetools.py | 5 +- pesterchum.py | 3 + themes/FRESHjamz/style.js | 114 +++++++++++++++++++--------------- themes/Scratch/style.js | 103 +++++++++++++++++-------------- themes/Zodiac/style.js | 123 ++++++++++++++++++++----------------- themes/enamel/style.js | 10 ++- themes/gold/style.js | 12 +++- themes/pesterchum/style.js | 8 ++- themes/trollian/style.js | 8 ++- themes/typewriter/style.js | 8 ++- 12 files changed, 249 insertions(+), 167 deletions(-) diff --git a/irc.py b/irc.py index afb92a4..fe120db 100644 --- a/irc.py +++ b/irc.py @@ -341,7 +341,7 @@ class PesterHandler(DefaultCommandHandler): handle = nick[0:nick.find("!")] logging.info("---> recv \"CTCP %s :%s\"" % (handle, msg[1:-1])) if msg[1:-1] == "VERSION": - helpers.ctcp_reply(self.parent.cli, handle, "VERSION", "Pesterchum %s\x01" % (_pcVersion)) + helpers.ctcp_reply(self.parent.cli, handle, "VERSION", "Pesterchum %s" % (_pcVersion)) elif msg[1:-1].startswith("NOQUIRKS") and chan[0] == "#": op = nick[0:nick.find("!")] self.parent.quirkDisable.emit(chan, msg[10:-1], op) diff --git a/memos.py b/memos.py index a1c65bd..6ee7f3d 100644 --- a/memos.py +++ b/memos.py @@ -374,7 +374,7 @@ class PesterMemo(PesterConvo): self.voiceAction = QtGui.QAction(self.mainwindow.theme["main/menus/rclickchumlist/voiceuser"], self) self.connect(self.voiceAction, QtCore.SIGNAL('triggered()'), self, QtCore.SLOT('voiceSelectedUser()')) - self.quirkDisableAction = QtGui.QAction("Kill Quirk", self) + self.quirkDisableAction = QtGui.QAction(self.mainwindow.theme["main/menus/rclickchumlist/quirkkill"], self) self.connect(self.quirkDisableAction, QtCore.SIGNAL('triggered()'), self, QtCore.SLOT('killQuirkUser()')) self.userlist.optionsMenu.addAction(self.addchumAction) @@ -395,20 +395,20 @@ class PesterMemo(PesterConvo): self.optionsMenu.addAction(self.logchum) self.optionsMenu.addAction(self.invitechum) - self.chanModeMenu = QtGui.QMenu("Memo Settings", self) - self.chanNoquirks = QtGui.QAction("Disable Quirks", self) + self.chanModeMenu = QtGui.QMenu(self.mainwindow.theme["main/menus/rclickchumlist/memosetting"], self) + self.chanNoquirks = QtGui.QAction(self.mainwindow.theme["main/menus/rclickchumlist/memonoquirk"], self) self.chanNoquirks.setCheckable(True) self.connect(self.chanNoquirks, QtCore.SIGNAL('toggled(bool)'), self, QtCore.SLOT('noquirksChan(bool)')) - self.chanHide = QtGui.QAction("Hidden", self) + self.chanHide = QtGui.QAction(self.mainwindow.theme["main/menus/rclickchumlist/memohidden"], self) self.chanHide.setCheckable(True) self.connect(self.chanHide, QtCore.SIGNAL('toggled(bool)'), self, QtCore.SLOT('hideChan(bool)')) - self.chanInvite = QtGui.QAction("Invite-Only", self) + self.chanInvite = QtGui.QAction(self.mainwindow.theme["main/menus/rclickchumlist/memoinvite"], self) self.chanInvite.setCheckable(True) self.connect(self.chanInvite, QtCore.SIGNAL('toggled(bool)'), self, QtCore.SLOT('inviteChan(bool)')) - self.chanMod = QtGui.QAction("Mute", self) + self.chanMod = QtGui.QAction(self.mainwindow.theme["main/menus/rclickchumlist/memomute"], self) self.chanMod.setCheckable(True) self.connect(self.chanMod, QtCore.SIGNAL('toggled(bool)'), self, QtCore.SLOT('modChan(bool)')) @@ -546,9 +546,15 @@ class PesterMemo(PesterConvo): self.banuserAction.setText(theme["main/menus/rclickchumlist/banuser"]) self.opAction.setText(theme["main/menus/rclickchumlist/opuser"]) self.voiceAction.setText(theme["main/menus/rclickchumlist/voiceuser"]) - self.quirkDisableAction.setText("Kill Quirk") + self.quirkDisableAction.setText(theme["main/menus/rclickchumlist/quirkkill"]) self.quirksOff.setText(theme["main/menus/rclickchumlist/quirksoff"]) self.logchum.setText(theme["main/menus/rclickchumlist/viewlog"]) + self.invitechum.setText(theme["main/menus/rclickchumlist/invitechum"]) + self.chanModeMenu.setTitle(theme["main/menus/rclickchumlist/memosetting"]) + self.chanNoquirks.setText(theme["main/menus/rclickchumlist/memonoquirk"]) + self.chanHide.setText(theme["main/menus/rclickchumlist/memohidden"]) + self.chanInvite.setText(theme["main/menus/rclickchumlist/memoinvite"]) + self.chanMod.setText(theme["main/menus/rclickchumlist/memomute"]) self.timeinput.setFixedWidth(theme["memos/time/text/width"]) self.timeinput.setStyleSheet(theme["memos/time/text/style"]) diff --git a/parsetools.py b/parsetools.py index 83d9276..388b51e 100644 --- a/parsetools.py +++ b/parsetools.py @@ -491,7 +491,10 @@ def themeChecker(theme): "main/chums/userlistcolor", "main/defaultwindow/style", \ "main/chums/moods", "main/chums/moods/chummy/icon", "main/menus/help/help", \ "main/menus/help/calsprite", "main/menus/help/nickserv", \ - "main/menus/rclickchumlist/invitechum", "main/menus/client/randen"] + "main/menus/rclickchumlist/invitechum", "main/menus/client/randen", \ + "main/menus/rclickchumlist/memosetting", "main/menus/rclickchumlist/memonoquirk", \ + "main/menus/rclickchumlist/memohidden", "main/menus/rclickchumlist/memoinvite", \ + "main/menus/rclickchumlist/memomute"] for n in needs: try: diff --git a/pesterchum.py b/pesterchum.py index 02b9bde..0bf799d 100644 --- a/pesterchum.py +++ b/pesterchum.py @@ -1972,6 +1972,9 @@ class PesterWindow(MovingWindow): self.switch.setText(theme["main/menus/profile/switch"]) self.profilemenu.setTitle(theme["main/menus/profile/_name"]) self.aboutAction.setText(self.theme["main/menus/help/about"]) + self.helpAction.setText(self.theme["main/menus/help/help"]) + self.botAction.setText(self.theme["main/menus/help/calsprite"]) + self.nickServAction.setText(self.theme["main/menus/help/nickserv"]) self.helpmenu.setTitle(self.theme["main/menus/help/_name"]) # moods diff --git a/themes/FRESHjamz/style.js b/themes/FRESHjamz/style.js index 4b0421d..4014c0f 100644 --- a/themes/FRESHjamz/style.js +++ b/themes/FRESHjamz/style.js @@ -6,10 +6,10 @@ "newmsgicon": "$path/trayicon2.png", "windowtitle": "FRESHjamz", "close": { "image": "$path/x.png", - "size": [13, 13], + "size": [13, 13], "loc": [101, 362]}, "minimize": { "image": "$path/m.png", - "size": [13, 13], + "size": [13, 13], "loc": [116, 362]}, "menubar": { "style": "font-family: 'Arial'; font-size: 11px; font: bold; color: white;" }, "menu" : { "style": "font-family: 'Arial'; font-size: 11px; font: bold; color: white; background-color: #393939; border:3px solid #797979;", @@ -18,15 +18,17 @@ "loc": [198,141] }, "sounds": { "alertsound": "$path/alarm.wav", - "ceasesound": "$path/ohgodwhat.wav" }, - "menus": {"client": {"_name": "Album", + "ceasesound": "$path/ohgodwhat.wav" }, + "menus": {"client": {"_name": "Album", "options": "Options", "memos": "Memos", "logviewer": "Pesterlogs", + "randen": "Random Encounter", "userlist": "Userlist", + "addgroup": "Add Group", "import": "Import", - "reconnect": "Reconnect", - "idle": "Idle", + "reconnect": "Reconnect", + "idle": "Idle", "exit": "Exit"}, "profile": {"_name": "Track", "switch": "Switch", @@ -36,76 +38,88 @@ "quirks": "Quirks" }, "help": { "_name": "Info", "help": "Info", - "calsprite": "Calsprite", + "calsprite": "Calsprite", + "nickserv": "NickServ", "about": "About" }, "rclickchumlist": {"pester": "Pester", "removechum": "Remove Chum", + "report": "Report", "blockchum": "Block", - "report": "Report", "addchum": "Add Chum", "viewlog": "View Pesterlog", "unblockchum": "Unblock", + "removegroup": "Remove Group", + "renamegroup": "Rename Group", + "movechum": "Move To", "banuser": "Ban", "opuser": "Make OP", - "quirksoff": "Quirks Off" } + "voiceuser": "Give Voice", + "quirkkill": "Kill Quirk", + "quirksoff": "Quirks Off", + "invitechum": "Invite Chump", + "memosetting": "Memo Settings", + "memonoquirk": "Disable Quirks", + "memohidden": "Hidden", + "memoinvite": "Invite-Only", + "memomute": "Mute" } }, "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], "size": [272, 170], "userlistcolor": "#ff168f", "moods": { - + "chummy": { "icon": "$path/chummy.png", "color": "white" }, - + "rancorous": { "icon": "$path/rancorous.png", "color": "#ff168f" }, - + "offline": { "icon": "$path/offline.png", "color": "grey"}, - - + + "pleasant": { "icon": "$path/pleasant.png", "color": "white" }, - + "distraught": { "icon": "$path/distraught.png", "color": "white" }, - + "pranky": { "icon": "$path/pranky.png", "color": "white" }, - + "smooth": { "icon": "$path/smooth.png", "color": "white" }, - - + + "mystified": { "icon": "$path/mystified.png", "color": "white" }, - + "amazed": { "icon": "$path/amazed.png", "color": "white" }, - + "insolent": { "icon": "$path/insolent.png", "color": "white" }, - - "bemused": { "icon": "$path/bemused.png", "color": "white" }, - - + + "bemused": { "icon": "$path/bemused.png", "color": "white" }, + + "ecstatic": { "icon": "$path/ecstatic.png", "color": "#ff168f" }, - + "relaxed": { "icon": "$path/relaxed.png", "color": "#ff168f" }, - + "discontent": { "icon": "$path/discontent.png", "color": "#ff168f" }, - + "devious": { "icon": "$path/devious.png", "color": "#ff168f" }, - + "sleek": { "icon": "$path/sleek.png", "color": "#ff168f" }, - + "detestful": { "icon": "$path/detestful.png", "color": "#ff168f" }, - + "mirthful": { "icon": "$path/mirthful.png", "color": "#ff168f" }, - + "manipulative": { "icon": "$path/manipulative.png", "color": "#ff168f" }, - + "vigorous": { "icon": "$path/vigorous.png", "color": "#ff168f" }, - + "perky": { "icon": "$path/perky.png", "color": "#ff168f" }, - + "acceptant": { "icon": "$path/acceptant.png", "color": "#ff168f" }, - + "protective": { "icon": "$path/protective.png", "color": "lime" }, - + "blocked": { "icon": "$path/blocked.png", "color": "#ff168f" } - + } }, "trollslum": { @@ -128,16 +142,16 @@ }, "defaultwindow": { "style": "color: black; background: #797979; font-family: 'Arial'; font: bold; selection-background-color: rgb(100,100,100);" }, - "addchum": + "addchum": { "style": "background-image:url($path/pause1.png); border:0px;", - "pressed": "background-image:url($path/pause2.png); border:0px;", + "pressed": "background-image:url($path/pause2.png); border:0px;", "loc": [239, 73], "size": [55, 58], "text": "" }, - "pester": + "pester": { "style": "background-image:url($path/play1.png); border:0px;", - "pressed": "background-image:url($path/play2.png); border:0px;", + "pressed": "background-image:url($path/play2.png); border:0px;", "loc": [180, 73], "size": [55, 58], "text": "" @@ -153,14 +167,14 @@ "text": "" }, "moods": [ - { "style": "background-image:url($path/rewind1.png); border:0px;", + { "style": "background-image:url($path/rewind1.png); border:0px;", "selected": "background-image:url($path/rewind2.png); border:0px;", "loc": [298, 73], "size": [55, 58], "text": "", "icon": "", "mood": 2 - }, + }, { "style": "background-image:url($path/fastforward1.png); border:0px;", "selected": "background-image:url($path/fastforward2.png); border:0px;", "loc": [357, 73], @@ -189,7 +203,7 @@ "style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px;" }, "tabwindow" : { - "style": "background: black; font-family: 'Arial'" + "style": "background: black; font-family: 'Arial'" }, "tabs": { "style": "border: 2px solid white; background: black; color: white;", @@ -235,15 +249,15 @@ "userlist": { "width": 125, "style": "font-size: 12px; background: white; margin-left: 5px; margin-bottom: 5px; border:2px solid #c2c2c2; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200);" }, - "time": { "text": { "width": 75, - "style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;" + "time": { "text": { "width": 75, + "style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;" }, "slider": { "style": " border:1px solid #c2c2c2;", "groove": "border-image:url($path/timeslider.png);", "handle": "image:url($path/timeicon.png);" }, - "buttons": { "style": "border:1px solid #ff9dcf; height: 17px; width: 50px; color: white; font-family: 'Arial'; background: #ff168f; margin-left: 2px;" }, - "arrows": { "left": "$path/leftarrow.png", + "buttons": { "style": "border:1px solid #ff9dcf; height: 17px; width: 50px; color: white; font-family: 'Arial'; background: #ff168f; margin-left: 2px;" }, + "arrows": { "left": "$path/leftarrow.png", "right": "$path/rightarrow.png", "style": "width: 19px; height: 19px; border:0px; margin-left: 2px;" } @@ -251,4 +265,4 @@ "systemMsgColor": "#646464", "op": { "icon": "$path/smooth.png" } } -} \ No newline at end of file +} diff --git a/themes/Scratch/style.js b/themes/Scratch/style.js index 21f2283..7c92916 100644 --- a/themes/Scratch/style.js +++ b/themes/Scratch/style.js @@ -16,15 +16,17 @@ "loc": [175,53] }, "sounds": { "alertsound": "$path/scratch.wav", - "ceasesound": "$path/scratch2.wav" }, + "ceasesound": "$path/scratch2.wav" }, "menus": {"client": {"_name": "Album", "options": "Remix", "memos": "Memos", "logviewer": "Pesterlogs", + "randen": "Random Encounter", "userlist": "Cronies", + "addgroup": "New Crew", "import": "Import", - "reconnect": "Reconnect", - "idle": "Idle", + "reconnect": "Reconnect", + "idle": "Idle", "exit": "Exit"}, "profile": {"_name": "Track", "switch": "Rap Name", @@ -34,77 +36,88 @@ "quirks": "Lingo" }, "help": { "_name": "Info", "help": "Info", - "calsprite": "Calsprite", + "calsprite": "Calsprite", + "nickserv": "NickServ", "about": "The Deal" }, "rclickchumlist": {"pester": "Patronize", "removechum": "Forget", "report": "Tell a Coppa", "blockchum": "Slam", - "report": "Report", "addchum": "Add to Crew", "viewlog": "View Pesterlog", "unblockchum": "Rectify", + "removegroup": "Forget Crew", + "renamegroup": "Rename Crew", + "movechum": "Change Crew", "banuser": "Banish", "opuser": "Hype", - "quirksoff": "Lingo Off" } + "voiceuser": "Let Rap", + "quirkkill": "Kill Quirk", + "quirksoff": "Lingo Off", + "invitechum": "Invite Crew", + "memosetting": "Memo Settings", + "memonoquirk": "Disable Quirks", + "memohidden": "Hidden", + "memoinvite": "Invite-Only", + "memomute": "Mute" } }, "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], "size": [302, 500], "userlistcolor": "white", "moods": { - + "chummy": { "icon": "$path/chummy.png", "color": "white" }, - + "rancorous": { "icon": "$path/rancorous.png", "color": "white" }, - + "offline": { "icon": "$path/offline.png", "color": "grey"}, - - + + "pleasant": { "icon": "$path/pleasant.png", "color": "white" }, - + "distraught": { "icon": "$path/distraught.png", "color": "white" }, - + "pranky": { "icon": "$path/pranky.png", "color": "white" }, - + "smooth": { "icon": "$path/smooth.png", "color": "white" }, - - + + "mystified": { "icon": "$path/mystified.png", "color": "white" }, - + "amazed": { "icon": "$path/amazed.png", "color": "white" }, - + "insolent": { "icon": "$path/insolent.png", "color": "white" }, - - "bemused": { "icon": "$path/bemused.png", "color": "white" }, - - + + "bemused": { "icon": "$path/bemused.png", "color": "white" }, + + "ecstatic": { "icon": "$path/ecstatic.png", "color": "red" }, - + "relaxed": { "icon": "$path/relaxed.png", "color": "red" }, - + "discontent": { "icon": "$path/discontent.png", "color": "red" }, - + "devious": { "icon": "$path/devious.png", "color": "red" }, - + "sleek": { "icon": "$path/sleek.png", "color": "red" }, - + "detestful": { "icon": "$path/detestful.png", "color": "red" }, - + "mirthful": { "icon": "$path/mirthful.png", "color": "red" }, - + "manipulative": { "icon": "$path/manipulative.png", "color": "red" }, - + "vigorous": { "icon": "$path/vigorous.png", "color": "red" }, - + "perky": { "icon": "$path/perky.png", "color": "red" }, - + "acceptant": { "icon": "$path/acceptant.png", "color": "red" }, - + "protective": { "icon": "$path/protective.png", "color": "lime" }, - + "blocked": { "icon": "$path/blocked.png", "color": "red" } - + } }, "trollslum": { @@ -127,13 +140,13 @@ }, "defaultwindow": { "style": "color: black; background: rgb(210,0,0); font-family: 'Arial'; font: bold; selection-background-color: rgb(100,100,100);" }, - "addchum": + "addchum": { "style": "background-image:url($path/a.png); border:0px;", "loc": [434, 55], "size": [8, 8], "text": "" }, - "pester": + "pester": { "style": "background: rgba(0,0,0,0); border:0px;", "loc": [0, 0], "size": [0, 0], @@ -150,14 +163,14 @@ "text": "" }, "moods": [ - { "style": "background-image:url($path/shades1.png); border:0px;", + { "style": "background-image:url($path/shades1.png); border:0px;", "selected": "background-image:url($path/shades2.png); border:0px;", "loc": [268, 580], "size": [104, 37], "text": "", "icon": "", "mood": 6 - }, + }, { "style": "background-image:url($path/offline1.png); border:0px;", "selected": "background-image:url($path/offline1.png); border:0px;", "loc": [382, 580], @@ -187,7 +200,7 @@ "style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px;" }, "tabwindow" : { - "style": "background: black; font-family: 'Arial'" + "style": "background: black; font-family: 'Arial'" }, "tabs": { "style": "border: 2px solid white; background: black; color: white;", @@ -233,15 +246,15 @@ "userlist": { "width": 125, "style": "font-size: 12px; background: white; margin-left: 5px; margin-bottom: 5px; border:2px solid #c2c2c2; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200);" }, - "time": { "text": { "width": 75, - "style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;" + "time": { "text": { "width": 75, + "style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;" }, "slider": { "style": " border:1px solid #c2c2c2;", "groove": "border-image:url($path/timeslider.png);", "handle": "image:url($path/timeicon.png);" }, - "buttons": { "style": "border:1px solid rgb(166,166,166); height: 17px; width: 50px; color: white; font-family: 'Arial'; background: black; margin-left: 2px;" }, - "arrows": { "left": "$path/leftarrow.png", + "buttons": { "style": "border:1px solid rgb(166,166,166); height: 17px; width: 50px; color: white; font-family: 'Arial'; background: black; margin-left: 2px;" }, + "arrows": { "left": "$path/leftarrow.png", "right": "$path/rightarrow.png", "style": "width: 19px; height: 19px; border:0px; margin-left: 2px;" } @@ -249,4 +262,4 @@ "systemMsgColor": "#646464", "op": { "icon": "$path/smooth.png" } } -} \ No newline at end of file +} diff --git a/themes/Zodiac/style.js b/themes/Zodiac/style.js index a5e71a1..8ecc8d4 100644 --- a/themes/Zodiac/style.js +++ b/themes/Zodiac/style.js @@ -16,15 +16,17 @@ "loc": [225,133] }, "sounds": { "alertsound": "$path/alarm.wav", - "ceasesound": "$path/cease.wav" }, + "ceasesound": "$path/cease.wav" }, "menus": {"client": {"_name": "Client", "options": "Options", "memos": "Memos", "logviewer": "Pesterlogs", + "randen": "Random Encounter", "userlist": "Userlist", + "addgroup": "Add Group", "import": "Import", - "reconnect": "Reconnect", - "idle": "Idle", + "reconnect": "Reconnect", + "idle": "Idle", "exit": "Exit"}, "profile": {"_name": "Profile", "switch": "Chumhandle", @@ -34,77 +36,88 @@ "quirks": "Quirks" }, "help": { "_name": "Help", "help": "Help", - "calsprite": "Calsprite", + "calsprite": "Calsprite", + "nickserv": "NickServ", "about": "About" }, "rclickchumlist": {"pester": "Pester", "removechum": "Remove", "report": "Report", "blockchum": "Block", - "report": "Report", "addchum": "Add Chum", "viewlog": "View Pesterlog", "unblockchum": "Unblock", + "removegroup": "Remove Group", + "renamegroup": "Rename Group", + "movechum": "Move To", "banuser": "Ban", "opuser": "Promote", - "quirksoff": "Quirks Off" } + "voiceuser": "Give Voice", + "quirkkill": "Kill Quirk", + "quirksoff": "Quirks Off", + "invitechum": "Invite Chump", + "memosetting": "Memo Settings", + "memonoquirk": "Disable Quirks", + "memohidden": "Hidden", + "memoinvite": "Invite-Only", + "memomute": "Mute" } }, "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], "size": [202, 294], "userlistcolor": "white", "moods": { - + "chummy": { "icon": "$path/chummy.png", "color": "#63ea00" }, - + "rancorous": { "icon": "$path/rancorous.png", "color": "#7f7f7f" }, - + "offline": { "icon": "$path/offline.png", "color": "white"}, - - + + "pleasant": { "icon": "$path/pleasant.png", "color": "#d69df8" }, - + "distraught": { "icon": "$path/distraught.png", "color": "#706eba" }, - + "pranky": { "icon": "$path/pranky.png", "color": "blue" }, - + "smooth": { "icon": "$path/smooth.png", "color": "red" }, - - + + "mystified": { "icon": "$path/mystified.png", "color": "red" }, - + "amazed": { "icon": "$path/amazed.png", "color": "red" }, - + "insolent": { "icon": "$path/insolent.png", "color": "white" }, - - "bemused": { "icon": "$path/bemused.png", "color": "white" }, - - + + "bemused": { "icon": "$path/bemused.png", "color": "white" }, + + "ecstatic": { "icon": "$path/ecstatic.png", "color": "#99004d" }, - + "relaxed": { "icon": "$path/relaxed.png", "color": "#078446" }, - + "discontent": { "icon": "$path/discontent.png", "color": "#a75403" }, - + "devious": { "icon": "$path/devious.png", "color": "#008282" }, - + "sleek": { "icon": "$path/sleek.png", "color": "#a1a100" }, - + "detestful": { "icon": "$path/detestful.png", "color": "#6a006a" }, - + "mirthful": { "icon": "$path/mirthful.png", "color": "#450077" }, - + "manipulative": { "icon": "$path/manipulative.png", "color": "#004182" }, - + "vigorous": { "icon": "$path/vigorous.png", "color": "#0021cb" }, - + "perky": { "icon": "$path/perky.png", "color": "#406600" }, - + "acceptant": { "icon": "$path/acceptant.png", "color": "#a10000" }, - + "protective": { "icon": "$path/protective.png", "color": "white" }, - + "blocked": { "icon": "$path/blocked.png", "color": "white" } - + } }, "trollslum": { @@ -127,14 +140,14 @@ }, "defaultwindow": { "style": "color: black; background: rgb(210,0,0); font-family: 'Arial'; font: bold; selection-background-color: rgb(100,100,100);" }, - "addchum": + "addchum": { "style": "background-image:url($path/addchum1.png); border:0px;", "pressed": "background-image:url($path/addchum2.png); border:0px;", "loc": [225, 564], "size": [50, 50], "text": "" }, - "pester": + "pester": { "style": "background-image:url($path/pester1.png); border:0px;", "pressed": "background-image:url($path/pester2.png); border:0px;", "loc": [367, 564], @@ -248,8 +261,8 @@ "icon": "", "mood": 7 }, - - { "style": "background-image:url($path/john1.png); border:0px;", + + { "style": "background-image:url($path/john1.png); border:0px;", "selected": "background-image:url($path/john2.png); border:0px;", "loc": [367, 27], "size": [50, 50], @@ -257,7 +270,7 @@ "icon": "", "mood": 5 }, - { "style": "background-image:url($path/rose1.png); border:0px;", + { "style": "background-image:url($path/rose1.png); border:0px;", "selected": "background-image:url($path/rose2.png); border:0px;", "loc": [30, 369], "size": [50, 50], @@ -265,7 +278,7 @@ "icon": "", "mood": 3 }, - { "style": "background-image:url($path/dave1.png); border:0px;", + { "style": "background-image:url($path/dave1.png); border:0px;", "selected": "background-image:url($path/dave2.png); border:0px;", "loc": [99, 494], "size": [50, 50], @@ -273,7 +286,7 @@ "icon": "", "mood": 6 }, - { "style": "background-image:url($path/jade1.png); border:0px;", + { "style": "background-image:url($path/jade1.png); border:0px;", "selected": "background-image:url($path/jade2.png); border:0px;", "loc": [566, 369], "size": [50, 50], @@ -281,7 +294,7 @@ "icon": "", "mood": 0 }, - { "style": "background-image:url($path/bec1.png); border:0px;", + { "style": "background-image:url($path/bec1.png); border:0px;", "selected": "background-image:url($path/bec2.png); border:0px;", "loc": [492, 494], "size": [50, 50], @@ -289,8 +302,8 @@ "icon": "", "mood": 18 }, - - { "style": "background-image:url($path/hearts1.png); border:0px;", + + { "style": "background-image:url($path/hearts1.png); border:0px;", "selected": "background-image:url($path/hearts2.png); border:0px;", "loc": [492, 101], "size": [50, 50], @@ -298,7 +311,7 @@ "icon": "", "mood": 20 }, - { "style": "background-image:url($path/spades1.png); border:0px;", + { "style": "background-image:url($path/spades1.png); border:0px;", "selected": "background-image:url($path/spades2.png); border:0px;", "loc": [99, 101], "size": [50, 50], @@ -306,7 +319,7 @@ "icon": "", "mood": 21 }, - { "style": "background-image:url($path/diamonds1.png); border:0px;", + { "style": "background-image:url($path/diamonds1.png); border:0px;", "selected": "background-image:url($path/diamonds2.png); border:0px;", "loc": [30, 225], "size": [50, 50], @@ -314,7 +327,7 @@ "icon": "", "mood": 19 }, - { "style": "background-image:url($path/clubs1.png); border:0px;", + { "style": "background-image:url($path/clubs1.png); border:0px;", "selected": "background-image:url($path/clubs2.png); border:0px;", "loc": [566, 225], "size": [50, 50], @@ -322,7 +335,7 @@ "icon": "", "mood": 22 }, - + { "style": "background-image:url($path/offline1.png); border:0px;", "selected": "background-image:url($path/offline2.png); border:0px;", "loc": [223, 27], @@ -352,7 +365,7 @@ "style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px;" }, "tabwindow" : { - "style": "background: black; font-family: 'Arial'" + "style": "background: black; font-family: 'Arial'" }, "tabs": { "style": "border: 2px solid white; background: black; color: white;", @@ -398,15 +411,15 @@ "userlist": { "width": 125, "style": "font-size: 12px; background: white; margin-left: 5px; margin-bottom: 5px; border:2px solid #c2c2c2; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200);" }, - "time": { "text": { "width": 75, - "style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;" + "time": { "text": { "width": 75, + "style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;" }, "slider": { "style": " border:1px solid #c2c2c2;", "groove": "border-image:url($path/timeslider.png);", "handle": "image:url($path/timeicon.png);" }, - "buttons": { "style": "border:1px solid rgb(166,166,166); height: 17px; width: 50px; color: white; font-family: 'Arial'; background: black; margin-left: 2px;" }, - "arrows": { "left": "$path/leftarrow.png", + "buttons": { "style": "border:1px solid rgb(166,166,166); height: 17px; width: 50px; color: white; font-family: 'Arial'; background: black; margin-left: 2px;" }, + "arrows": { "left": "$path/leftarrow.png", "right": "$path/rightarrow.png", "style": "width: 19px; height: 19px; border:0px; margin-left: 2px;" } @@ -414,4 +427,4 @@ "systemMsgColor": "#646464", "op": { "icon": "$path/smooth.png" } } -} \ No newline at end of file +} diff --git a/themes/enamel/style.js b/themes/enamel/style.js index 3c50325..48dd823 100644 --- a/themes/enamel/style.js +++ b/themes/enamel/style.js @@ -24,7 +24,7 @@ "addgroup": "Add Group", "import": "Import", "reconnect": "Reconnect", - "idle": "Idle", + "idle": "Idle", "exit": "Exit"}, "profile": {"_name": "Profile", "switch": "Switch", @@ -50,8 +50,14 @@ "banuser": "Ban User", "opuser": "Make OP", "voiceuser": "Give Voice", + "quirkkill": "Kill Quirk", "quirksoff": "Quirks Off", - "invitechum": "Invite Chum" + "invitechum": "Invite Chum", + "memosetting": "Memo Settings", + "memonoquirk": "Disable Quirks", + "memohidden": "Hidden", + "memoinvite": "Invite-Only", + "memomute": "Mute" } }, "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; ", diff --git a/themes/gold/style.js b/themes/gold/style.js index 67105c0..265fe40 100644 --- a/themes/gold/style.js +++ b/themes/gold/style.js @@ -26,8 +26,8 @@ "userlist": "Userlist", "addgroup": "Add Group", "import": "Import", - "reconnect": "Reconnect", - "idle": "Idle", + "reconnect": "Reconnect", + "idle": "Idle", "exit": "Exit"}, "profile": {"_name": "Profile", "switch": "Switch", @@ -53,8 +53,14 @@ "banuser": "Ban User", "opuser": "Make OP", "voiceuser": "Give Voice", + "quirkkill": "Kill Quirk", "quirksoff": "Quirks Off", - "invitechum": "Invite Chum" + "invitechum": "Invite Chum", + "memosetting": "Memo Settings", + "memonoquirk": "Disable Quirks", + "memohidden": "Hidden", + "memoinvite": "Invite-Only", + "memomute": "Mute" } }, "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; ", diff --git a/themes/pesterchum/style.js b/themes/pesterchum/style.js index 550680e..a96289b 100644 --- a/themes/pesterchum/style.js +++ b/themes/pesterchum/style.js @@ -53,8 +53,14 @@ "banuser": "BAN USER", "opuser": "MAKE OP", "voiceuser": "GIVE VOICE", + "quirkkill": "KILL QUIRK", "quirksoff": "QUIRKS OFF", - "invitechum": "INVITE CHUM" + "invitechum": "INVITE CHUM", + "memosetting": "MEMO SETTINGS", + "memonoquirk": "DISABLE QUIRKS", + "memohidden": "HIDDEN", + "memoinvite": "INVITE-ONLY", + "memomute": "MUTE" } }, "chums": { "style": "border:2px solid yellow; background-color: black;color: white;font: bold;font-family: 'Courier';selection-background-color:#646464; ", diff --git a/themes/trollian/style.js b/themes/trollian/style.js index a460214..216ca57 100644 --- a/themes/trollian/style.js +++ b/themes/trollian/style.js @@ -52,8 +52,14 @@ "banuser": "Ban", "opuser": "Promote", "voiceuser": "Let Speak", + "quirkkill": "Kill Quirk", "quirksoff": "Quirks Off", - "invitechum": "Invite Chump" } + "invitechum": "Invite Chump", + "memosetting": "Memo Settings", + "memonoquirk": "Disable Quirks", + "memohidden": "Hidden", + "memoinvite": "Invite-Only", + "memomute": "Mute" } }, "chums": { "style": "font-size: 12px; background: white; border:0px; font-family: 'Arial';selection-background-color:rgb(200,200,200); ", "scrollbar": { "style" : "background-color:#c2c2c2;", diff --git a/themes/typewriter/style.js b/themes/typewriter/style.js index 2169dae..8386ac4 100644 --- a/themes/typewriter/style.js +++ b/themes/typewriter/style.js @@ -53,8 +53,14 @@ "banuser": "Expel User", "opuser": "Promote", "voiceuser": "Let Speak", + "quirkkill": "Kill Quirk", "quirksoff": "Quirks Off", - "invitechum": "Invite User" + "invitechum": "Invite User", + "memosetting": "Memo Settings", + "memonoquirk": "Disable Quirks", + "memohidden": "Hidden", + "memoinvite": "Invite-Only", + "memomute": "Mute" } }, "chums": { "style": "border:0px; background-color: white; font: bold;font-family: 'Courier';selection-background-color: black; ",