Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@activitycentral.org>2011-06-25 11:58:18 (GMT)
committer Aleksey Lim <alsroot@activitycentral.org>2011-06-25 11:58:18 (GMT)
commit59e4d4a061f1cac23ef9928ae01deb3b12d6c3be (patch)
tree8b81e12f263f0a21ec789611f08390e69777951f
parent4b9cc9c67201bddbc506f942eb84922a09a11833 (diff)
Chat i18n enhancement #2903HEADmaster
-rw-r--r--activity/activity.info4
-rw-r--r--chat/smilies.py42
2 files changed, 44 insertions, 2 deletions
diff --git a/activity/activity.info b/activity/activity.info
index 03d54d6..6a0a233 100644
--- a/activity/activity.info
+++ b/activity/activity.info
@@ -7,9 +7,9 @@ license = GPLv2+
icon = activity-icon
exec = sugar-activity activity.Chat
-version = 70
+version = %(activity_version)s
stability = testing
# original activity.info options
-activity_version = %(version)s
+activity_version = 70
bundle_id = org.laptop.Chat
diff --git a/chat/smilies.py b/chat/smilies.py
index c3cc244..7248ed6 100644
--- a/chat/smilies.py
+++ b/chat/smilies.py
@@ -27,26 +27,68 @@ from sugar.activity.activity import get_activity_root, get_bundle_path
THEME = [
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are :-) and :)
('smile', _('Smile'), [':-)', ':)']),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are ;-) and ;)
('wink', _('Winking'), [';-)', ';)']),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are :-/ and :/
('confused', _('Confused'), [':-/', ':/']),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are :-( and :(
('sad', _('Sad'), [':-(', ':(']),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are :-D and :D
('grin', _('Grin'), [':-D', ':D']),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are :-| and :|
('neutral', _('Neutral'), (':-|', ':|')),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are :-O, :O, =-O and =O
('shock', _('Shock'), [':-O', ':O', '=-O', '=O']),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are B-), B), 8-) and 8)
('cool', _('Cool'), ['B-)', 'B)', '8-)', '8)']),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are :-P and :P
('tongue', _('Tongue'), [':-P', ':P']),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are :">
('blush', _('Blushing'), [':">']),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are :'-( and :'(
('weep', _('Weeping'), [":'-(", ":'("]),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are O-), O), O:-) and O:)
('angel', _('Angel'), ['O-)', 'O)', 'O:-)', 'O:)']),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are :-$ and :-$
('shutup', _("Don't tell anyone"), (':-$', ':-$')),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are x-(, x(, X-( and x-(
('angry', _('Angry'), ('x-(', 'x(', 'X-(', 'x-(')),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are >:> and >:)
('devil', _('Devil'), ('>:>', '>:)')),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are :-B, :B
('nerd', _('Nerd'), (':-B', ':B')),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are :-*, :*
('kiss', _('Kiss'), (':-*', ':*')),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are :))
('laugh', _('Laughing'), [':))']),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are I-)
('sleep', _('Sleepy'), ['I-)']),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are :-&
('sick', _('Sick'), [':-&']),
+ # TRANS: A smiley (http://en.wikipedia.org/wiki/Smiley) explanation
+ # TRANS: ASCII-art equivalents are /:)
('eyebrow', _('Raised eyebrows'), ['/:)']),
]