Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Fomin <fominde@gmail.com>2011-09-03 13:20:51 +0400
committerDenis Fomin <fominde@gmail.com>2011-09-03 13:20:51 +0400
commitc2a0c82a4834bafc1075de71ad54e27e0bb17e4c (patch)
tree1daf360ee2344221927231b615fda99fece3c09e /juick/plugin.py
parentd674b13ebf82f84949008f6c860cc07eafcc4816 (diff)
juick plugin. do not translate config vars
Diffstat (limited to 'juick/plugin.py')
-rw-r--r--juick/plugin.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/juick/plugin.py b/juick/plugin.py
index b06fcc0..6a5b1eb 100644
--- a/juick/plugin.py
+++ b/juick/plugin.py
@@ -32,10 +32,10 @@ class JuickPlugin(GajimPlugin):
'chat_control_base': (self.connect_with_chat_control,
self.disconnect_from_chat_control)}
self.config_default_values = {'SHOW_AVATARS': (False, ''),
- 'AVATAR_SIZE': (20, _('Avatar size(10-32)')),
+ 'AVATAR_SIZE': (20, 'Avatar size(10-32)'),
'SHOW_PREVIEW': (False, ''),
- 'PREVIEW_SIZE': (150, _('Preview size(10-512)')),
- 'LINK_COLOR': ('#B8833E', _('Juick link color')),
+ 'PREVIEW_SIZE': (150, 'Preview size(10-512)'),
+ 'LINK_COLOR': ('#B8833E', 'Juick link color'),
'SHOW_TAG_BUTTON': (True, ''),
'ONLY_AUTHOR_AVATAR': (True, ''),
'MENUITEM1': ('tune', ''), 'MENUITEM_TEXT1': ('*tune', ''),