Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TODO1
-rw-r--r--po/TamTamSuite.pot22
-rwxr-xr-xsetup.py11
3 files changed, 33 insertions, 1 deletions
diff --git a/TODO b/TODO
new file mode 100644
index 0000000..0f8d82e
--- /dev/null
+++ b/TODO
@@ -0,0 +1 @@
+- per TamTam activity activities should use TamTamSuite gettext domain
diff --git a/po/TamTamSuite.pot b/po/TamTamSuite.pot
index 5dd099e..4e093a1 100644
--- a/po/TamTamSuite.pot
+++ b/po/TamTamSuite.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-07-28 08:02+0000\n"
+"POT-Creation-Date: 2011-07-29 10:42+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21,6 +21,26 @@ msgstr ""
msgid "TamTamSuite"
msgstr ""
+#. TRANS: Full activity name that will be used in Sugar Shell
+#: setup.py:31
+msgid "TamTamEdit"
+msgstr ""
+
+#. TRANS: Full activity name that will be used in Sugar Shell
+#: setup.py:33
+msgid "TamTamJam"
+msgstr ""
+
+#. TRANS: Full activity name that will be used in Sugar Shell
+#: setup.py:35
+msgid "TamTamMini"
+msgstr ""
+
+#. TRANS: Full activity name that will be used in Sugar Shell
+#: setup.py:37
+msgid "TamTamSynthLab"
+msgstr ""
+
#: common/Tooltips.py:8 Edit/EditToolbars.py:87
msgid "Select tool"
msgstr ""
diff --git a/setup.py b/setup.py
index 9c6a8fb..c5f4278 100755
--- a/setup.py
+++ b/setup.py
@@ -21,10 +21,21 @@ from glob import glob
from ConfigParser import ConfigParser
from os.path import join, dirname, abspath, lexists, islink, isdir, exists
from os.path import basename
+from gettext import gettext as _
COMPONENTS = ['Edit', 'Jam', 'Mini', 'SynthLab']
+FULL_COMPONENT_NAMES = [
+ # TRANS: Full activity name that will be used in Sugar Shell
+ _('TamTamEdit'),
+ # TRANS: Full activity name that will be used in Sugar Shell
+ _('TamTamJam'),
+ # TRANS: Full activity name that will be used in Sugar Shell
+ _('TamTamMini'),
+ # TRANS: Full activity name that will be used in Sugar Shell
+ _('TamTamSynthLab')]
+
def link_activities(dst_root, cp_cmd):
for component in COMPONENTS: