This repository has been archived by the owner on Feb 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
TRANSLATIONS
53 lines (37 loc) · 1.45 KB
/
TRANSLATIONS
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
There are three sections:
A) New translations
B) Updating existing translations
C) Testing a translation
Follow the steps designated in each section to modify or
test your translation.
A) New Translations
-------------------------------------------
1) Execute these commands:
$ ./autogen.sh
$ cd po
$ make monsoon.pot
2) A file called monsoon.pot has now been created in the po
directory. Rename this file to $LANG$.po. For example,
if you were translating german you would call it 'de.po'.
3) Open this file in your favourite text editor and fill in
the required translations.
4) Edit configure.in and go to line 55 and include your
translation in the list of languages. If you were
including 'de.po' you would make the following modification.
-ALL_LINGUAS="es fr"
+ALL_LINGUAS="es fr de"
5) When you're finished, run 'svn diff' and save the output.
Send that in as your translation.
B) Updating an existing translation
-------------------------------------------
To update an existing translation, you need to do the following:
1) Execute the following commands:
$ svn up
$ cd po
$ make update-po
2) Open the required language file in your text editor and search
for "fuzzy" or "". These are places which need to be updated.
3) When complete run the following command and submit the
'language.patch' file. Replace $LANG$ with the language
you are translating. For German, this would be 'de'.
$ svn diff $LANG$.po > langauge.patch