forked from openSUSE/planet.opensuse.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.L10N
92 lines (68 loc) · 3.56 KB
/
README.L10N
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
83
84
85
86
87
88
89
90
91
92
First of all, please be aware that it only makes sense to translate the
Planet openSUSE interface in languages that are actually aggregated on
the site.
In order to provide translations, please proceed as follows:
1) Download the .pot template
=============================
The .pot is a plain text template file that contains all the localizable
strings that are used by Planet openSUSE.
To download that file to the current directory:
wget http://gitorious.org/opensuse/planet-opensuse/blobs/raw/master/locale/planetsuse.pot
2) Make a copy for the target language
======================================
For the sake of the example, let's say you would like to provide a German
translation (German having the language code "de"):
cp planetsuse.pot de.po
3) Translate
============
Translate the localizable strings in the .po file you created/copied in the
previous step, using either any text editor or an editor that has specialized
PO (gettext) support, such as Emacs, gted, poedit, gtranslator, kbabel, etc...
4) Submit
=========
Please send the resulting .po file (de.po in our example) to [email protected]
Thanks!
UPDATING AN EXISTING TRANSLATION
================================
Note that the procedure above is to provide a previously untranslated target
language. If there is already a .po file for the language you would like to
translate Planet openSUSE in, but that .po file is out of sync with the latest
localizable strings used on the site, the procedure is slightly different:
1) Update the .pot template
===========================
Using the same URL as in step (1) above, replace your current planetsuse.pot
file with the most recent one:
rm planetsuse.pot
wget http://gitorious.org/opensuse/planet-opensuse/blobs/raw/master/locale/planetsuse.pot
2) Merge the template with the .po file
=======================================
If you are the original author and/or current maintainer of a translation,
then you probably already have the latest .po file (e.g. de.po) on your host.
If not, also make sure to have the latest .po file, e.g.:
rm de.po
wget http://gitorious.org/opensuse/planet-opensuse/blobs/raw/master/locale/de.po
Now it is necessary to merge the localizable strings from the .pot template
file with what has already been translated in the .po file.
This process is *not* destructive, as it will both
- retain the translations that have already been made in the .po file, at least
as long as they are still relevant and used by the Planet openSUSE site
- try to automatically translate new localizable strings with existing translations
from the .po file, by applying some fuzzy logic (that usually doesn't work out
that well though)
The command to perform the merge is as follows, still taking de.po as the example:
msgmerge -U de.po planetsuse.pot
Note that the "-U" parameter tells msgmerge to update the existing .po file
in-place, and that the order of the files is first the .po file and then the
.pot template file.
From here on, steps (3) and (4) from above apply as well.
ADDING A NEW LANGUAGE
=====================
This section describes how to add a blog in a language that wasn't on planet yet.
- planetsuse/planet_template.html: search for "German", then add a similar link
for the new language. Make sure to also adjust class= and id=.
- website/css/style.css: search for ".lang-de"
- on the first match, add a line for the new language
- on the second match, add a line that includes the flag image
- write.sh: search for "de_DE" and add the new language
- website/images/lang/: add the flag image (filename as specified in style.css, 16x11px)
- run "make"