-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguageDefinitions.py
83 lines (69 loc) · 2.73 KB
/
languageDefinitions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# -*- coding: utf-8 -*-
# Copyright (c) 2010 Rene Dohmen <[email protected]> and Peter Govers <[email protected]>
# Copyright (c) 2010 Stas Zykiewicz <[email protected]>
# languageDefinitions.py
# This program is free software; you can redistribute it and/or
# modify it under the terms of version 3 of the GNU General Public License
# as published by the Free Software Foundation. A copy of this license should
# be included in the file GPL-3.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# leave this line intact as it is
_ = lambda x:x
################## Put your translatable words in this list ###################
words = [ _("Good!"),
_("Cheat"),
_("Start"),
_("Try again!"),
_("New word"),
_("New question"),
_("Other category"),
_("Did you enjoy this?"),
_("Yes"),
_("No"),
_("Continue movie"),
_("Next movie"),
_("Memory"),
_("New Games"),
_("Puzzle"),
_("Quiz"),
_("Training"),
_("Short Term"),
_("Long Term"),
_("Daily Training")
]
############################### End of word definitions #####################
# Don't change stuff below this line.
# text from dailytraing.xml which is used in DT endscreen
a = _("short-term")
b = _("long-term")
c =_("quiz")
if __name__ == '__main__':
import codecs
import gettext
from SPConstants import LOCALEDIR
lang_nl = gettext.translation('seniorplay', LOCALEDIR, languages=['nl'])
lang_fr = gettext.translation('seniorplay', LOCALEDIR, languages=['fr'])
lang_de = gettext.translation('seniorplay', LOCALEDIR, languages=['de'])
lang_sv = gettext.translation('seniorplay', LOCALEDIR, languages=['sv'])
lines = ["Words from the languageDefinitions file"]
sep = "-" * 80
for lang in [lang_nl, lang_de, lang_fr, lang_sv]:
lines.append(sep)
s = lang.info()['language-team'].split('_')[0].split('language: ')[0]
lines.append("Language code: %s" % s)
lines.append(sep)
lang.install()
_ = lang.ugettext
for word in words:
lines.append("%s = %s" % (word, _(word)))
f = codecs.open('languageDefinitions_output.txt', 'wt', 'utf-8')
f.write('\n'.join(lines))
f.close()