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 10:59:36 +0400
committerDenis Fomin <fominde@gmail.com>2011-09-03 10:59:36 +0400
commit4b37c0c5832d20f5eefcf29fbf1585a223c62287 (patch)
treedc25e9695f02e519d7a129be3f7ca9e75c95011d /now_listen
parent4b297ebf7dfda3e64026267f8926967ab51ff495 (diff)
add translatable description
Diffstat (limited to 'now_listen')
-rw-r--r--now_listen/manifest.ini3
-rw-r--r--now_listen/now_listen.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/now_listen/manifest.ini b/now_listen/manifest.ini
index d437469..2dc3f87 100644
--- a/now_listen/manifest.ini
+++ b/now_listen/manifest.ini
@@ -2,7 +2,6 @@
name: Now Listen
short_name: now-listen
version: 0.1
-description: Copy tune info to conversation input box (alt + n),
- at cursor position
+description: Copy tune info to conversation input box (alt + n) at cursor position
authors = Denis Fomin <fominde@gmail.com>
homepage = http://trac-plugins.gajim.org/wiki
diff --git a/now_listen/now_listen.py b/now_listen/now_listen.py
index d5251f8..87add8a 100644
--- a/now_listen/now_listen.py
+++ b/now_listen/now_listen.py
@@ -17,6 +17,8 @@ class NowListenPlugin(GajimPlugin):
@log_calls('NowListenPlugin')
def init(self):
+ self.description = _('Copy tune info to conversation input box '
+ '(alt + n) at cursor position')
self.config_dialog = NowListenPluginConfigDialog(self)
self.gui_extension_points = {'chat_control_base':
(self.connect_with_chat_control, self.disconnect_from_chat_control)}