]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - locale/README
Update French translation
[SourceForge/phpwiki.git] / locale / README
1
2 This document describes how to add a new language translation to PhpWiki.
3
4 If you just want to use one of the existing language translations, see
5 part Four in 'config/config.ini' for the DEFAULT_LANGUAGE or your special
6 starter script (wiki or index.php) to change the current or default language
7 of your Wiki. Modify or add a line that sets $LANG to use the two-letter
8 code of one of the supported languages, like this:
9
10     // Select your language/locale - default language "en": English
11     // English "en"  (English    - HomePage)
12     // Dutch   "nl" (Nederlands - ThuisPagina)
13     // Spanish "es" (Español    - PáginaPrincipal)
14     // French  "fr" (Français   - PageAccueil))
15     // German  "de" (Deutsch    - StartSeite)
16     // Swedish "sv" (Svenska    - Framsida)
17     // Italian "it" (Italiano   - PaginaPrincipale)
18     // Japanese "ja" (Japanese   - ホームページ)
19     // Chinese  "zh" (Chinese   - 首頁)
20     $LANG="it";
21
22 Phpwiki uses the DEFAULT_LANGUAGE internally, when no $GLOBALS['LANG'] is given.
23 With certain starter script which set $LANG you can easily provide a multi-lingual wiki.
24 For convenience provide some InterWikiMap entries for easier switching to the other
25 languages then. See http://phpwiki.org/MultiLingualWiki
26
27 Phpwiki uses GNU gettext tools to provide and maintain multi-lingual
28 messages for different languages. Even if you are already familiar
29 with xgettext you will want to read this document to be aware of
30 translation issues and tips specific to PhpWiki; perhaps skimming
31 through the Makefile section.
32
33 PhpWiki does not require gettext support to be compiled in to PHP. It
34 automatically provides a pure PHP replacement in case it's not
35 available.
36
37
38 Formalities
39 ===========
40 The modern English language has no clear rules for differentiating
41 between the formal and informal use of the spoken word. This both
42 simplifies and complicates matters for translators, as many languages
43 do still make such a distinction. For the most part, PhpWiki is written
44 using the casual forms of messages and explanatory text--after all the
45 WikiWikiWeb is an open and friendly place. :-)
46
47 However, there is no reason why translations of Wiki commands like
48 "Edit" or "FindPages" should not be written formally. For the sake of
49 recognition or clarity when the word function is the same as another
50 common computer term or menu-item, if you feel it would be more
51 effective to employ a formal variation then please do so. When the
52 formal word is significantly longer than the informal word, make a
53 judgement call or substitute an abbreviation, provided that it will
54 be easily recognised.
55
56 Remember that a good and thorough translation is a subjective and
57 collective process. Once people have had a chance to test-drive your
58 newly-translated PhpWiki there will always be suggestions for
59 reshaping and improving it.
60
61 Diversity and Change are part of WikiEssence. By all means don't
62 belabour the translation process, and have some fun!
63
64
65 General Steps
66 =============
67 The general steps to creating a new language module for PhpWiki:
68
69 1. Copy and rename the master template to create a new file for your
70    language ('phpwiki.pot' => 'xx.po').
71
72 2. Translate all the strings in the new language file ('.po file').
73    Empty strings will be kept in english.
74
75 3. Run 'make' to automatically create or update any additional files
76    ('.po' => '.mo' => 'phpwiki.php' files).
77
78 4. Create translations of the content for the default pages ('pgsrc'
79    files).
80
81
82 Example
83 =======
84 Let's assume for example that you would like to add an Islandic
85 translation to PhpWiki.
86
87
88 Text Strings
89 ------------
90 Duplicate the file phpwiki.pot in the 'locale/po/' folder and name it
91 'is.po' ('is' is the code for Islandic). Next, translate all the
92 strings inside 'is.po' from English to Islandic. Unix Hint: Emacs has
93 a handy "po translation mode" for you. See README.coding in the doc folder.
94
95
96 Character Encoding
97 ------------------
98
99 All language files are saved using the UTF-8 character encoding to
100 preserve accented characters. Make sure the text editor you use is
101 capable of handling UTF-8 text.
102
103 Word Reordering
104 ---------------
105 Different languages have different word ordering requirements. When a
106 key word such as a person's name needs to be added to the end of a
107 sentence in english, there is no guarantee that the same word will
108 appear at the end of a sentence once translated to another language.
109
110 PhpWiki has been designed with this in mind. (Standard printf
111 notations like %s and %1$s, %2$s will work with PhpWiki, even though
112 reordering of variable-substitutions is not actually part of PHP).
113 (The printf(3) manual page on your system may be of some help.)
114
115
116 Take the following English phrase as an example. This message would be
117 displayed in the browser when someone wants to compare two revisions
118 of a Wiki page. The corresponding entry for the German translation for
119 this phrase (from the file 'de.po') reads:
120
121     #: ../lib/diff.php:251
122     #, c-format
123     msgid "Differences between %s and %s of %s."
124     msgstr "Der Unterschiedsergebnis von %3$s, zwischen %1$s und %2$s"
125
126 In the English version, PhpWiki will substitute the phrases "version
127 1", "version 2" and the name of the page being compared. The
128 placeholder '%s' indicates where text will later be substituted, while
129 '%d' is used to indicate a number will be inserted.
130
131 Sentence structure of German is different than English, and this case
132 dictates that the "page name" must come first, then followed by
133 "Verson 1." and finally "Version 2."
134
135 To summarize, when the word ordering must differ, insert "1$", "2$"
136 etc. into the middle of '%s' and repeat for each instance of '%s' in
137 the phrase.  If you use this "$" notation, you must use it for each
138 of the the format specifications within the string.
139
140 Here are a couple more examples. They are fictional but they serve to
141 illustrate how to handle special cases, should they arise:
142
143
144 #msgid "Page version '%d' named '%s' is not available."
145 #msgstr "Xyqlmn vvvm » %2$s « mnqee » %1$d « Gvbbbnbhkkk eeek."
146
147 The %s and %d are reversed, so '2$' and '1$' have been used to
148 indicate the new ordering. The punctuation marks for this language
149 dictate extra spacing, so this has also been accounted for in the
150 translation (i.e. the quote marks are only for emphasis, they are not
151 considered part of the %s placeholder).
152
153
154 #msgid "Page named '%s' version '%d' written by author '%s' is not available."
155 #msgstr "Qppn wwmoooppp '%3$s' vvvm '%1$s' mnqee '%2$d' Gvbbbnbhkkk eeek."
156
157 Name and author are reversed. Even though the position of the number
158 ('%d') isn't changed, still it must be changed to '%2$d' --- if you
159 use a '$' on one of the format specifiers you must use it on all of
160 them.  The punctuation for this particular language is the same as
161 english so it is unchanged.
162
163
164 While translating the text strings if you are uncertain about the
165 syntax, look at the '.po' files of the other languages as an
166 example. If you are stuck or simply can't make any sense of all this,
167 just ask one of the PhpWiki programmers on the mailing list to help
168 out.
169
170 The 'phpwiki.php' files do not need to be created or edited because
171 the Makefile will create and update these files automatically. See the
172 'Makefile' section below.
173
174
175 Default Pages
176 -------------
177 Most of the work will be in the translation of the default pgsrc
178 files. As a starting point you can copy the English 'pgsrc' directory:
179
180     mkdir locale/is
181     cp -rv pgsrc locale/is
182
183 For these 'pgsrc' files it will be sufficient to change the page names
184 to Islandic, and maybe translate the HomePage and give it an Islandic
185 name. Again, for anything you don't know, look at the 'nl' or 'de'
186 versions.
187
188 The best approach to translating the default page content is to do all
189 of your page editing in the web browser itself, then perform a page
190 dump to save the pages as MIME text files.  Some of the pages are
191 locked so you will have to log into PhpWiki as the administrator
192 before you can edit them.
193
194 <FIXME>
195    Add instructions for editing MIME headers of files before moving
196    files into '/locale/is/pgsrc'
197
198  - keep modification date, page name and lock, remove author.
199    Use action=PageDump - "Preview as developer format" for this.
200    Example:
201
202    Date: Sat,  4 Jul 2009 19:09:38 +0000
203    Mime-Version: 1.0 (Produced by PhpWiki 1.3.11pre)
204    X-Rcs-Id: $Id$
205    Content-Type: application/x-phpwiki;
206      pagename=G%C3%A4steBuch;
207      flags="";
208      markup=2;
209      charset=utf-8
210    Content-Transfer-Encoding: binary
211
212  - Make sure to rename files with accents in the page name converted
213    to uppercase hex codes as shown in the pagename= line of the
214    Content-Type header.
215
216    (e.g. "GästeBuch" => "G%C3%A4steBuch")
217
218  - Translate body text and rename plugin pages to match changes
219    specified in the '.po' file. Leave plugin code as English.
220    Example:
221
222    <<RecentChanges days||=30 show_all||=0 show_minor||=0 >>
223
224 </FIXME>
225
226
227 Makefile
228 --------
229 The Makefile calls 'xgettext' to automatically perform a number of
230 important translation tasks:
231
232  * Scans through all the source code and retrieves the english
233    strings used as text arguments, then collects and indexes them into
234    the file 'phpwiki.pot'.
235
236  * Merges any new differences of the collected English text strings
237    with similar text strings found during any previous runs of 'make',
238    stored inside each of the translated '.po' files.
239
240  * Makes note of which English text strings have been added, reworded
241    or removed. The translated strings in the '.po' files are then marked
242    as "fuzzy" translations for all cases where the English text has been
243    changed. This makes it easy for translators to spot which items need
244    to be updated. (Emacs' po mode also uses this information).
245
246  * The necessary '.mo' files and 'phpwiki.php' text files are
247    synchronized and sorted according to the translated contents of the
248    '.po' files, for each of the locale subdirectories.
249
250 When a new language module is added to PhpWiki, the 'Makefile' in the
251 'locale' folder also needs to be updated. The process:
252
253  0. Change into the locale directory (if you're not already there.)
254
255  1. If there isn't one already, Create a new .po (in the po/ subdirectory)
256     for your translations:
257
258       cp po/phpwiki.pot po/xx.po
259
260     where 'xx' should be the two letter character code for the language
261     you are translating to.
262
263  2. If you've created a new .po file (or if there are new .php source files
264     containing translatable strings,) update the Makefile:
265
266       make depend
267
268  3. To make sure the list of translatable strings in the .po is in sync
269     with the actual php source code:
270
271       make po
272
273  4. Edit the translations in the .po file.  If you have emacs available,
274     emacs' po-mode is very helpful when doing this.
275
276  5. Translators may include comments in the po file. If using a text
277     editor other than emacs (with po-mode), add any comments BEFORE an
278     entry, and prefix each line with # like this:
279
280 # This entry is important for French punctuation rules which stipulate
281 # a space before each colon.
282 #: ../lib/display.php:54 ../lib/plugin/PageGroup.php:91
283 #: ../lib/plugin/PageGroup.php:156 ../lib/plugin/PageGroup.php:167
284 #: ../lib/plugin/PageGroup.php:183 ../lib/plugin/PageGroup.php:190
285 #: ../lib/plugin/PageHistory.php:216 ../lib/plugin/UnfoldSubpages.php:164
286 #: ../themes/default/templates/head.tmpl:46
287 #, c-format
288 msgid "%s: %s"
289 msgstr "%s : %s"
290
291  6. To update the compiled translation files (phpwiki.mo and
292     phpwiki.php):
293
294       make
295
296 Make will then automatically generate and update all the necessary
297 files. If this step fails because you don't have the necessary
298 software installed, then send your '.po' files to one of the PhpWiki
299 developers who will run Makefile for you.
300
301
302 NOTE: "Fuzzy" translations will NOT be included in the final '.mo' and
303 'phpwiki.php' files. If you are not using the emacs editor, make sure
304 to remove the fuzzy marks from any *completed translations* before you
305 run the makefile, like this:
306
307     #: ../lib/plugin/BackLinks.php:44
308     #, fuzzy, c-format
309     msgid "These pages link to %s:"
310     msgstr "%d pages pointent vers %s."
311
312 should become:
313
314     #: ../lib/plugin/BackLinks.php:44
315     #, c-format
316     msgid "These pages link to %s:"
317     msgstr "%d pages pointent vers %s."
318
319 and...
320
321     #: ../lib/Toolbar.php:160 ../templates/browse.html:54
322     #, fuzzy
323     msgid "Lock page"
324     msgstr "Bloquear página"
325
326 should become:
327
328     #: ../lib/Toolbar.php:160 ../templates/browse.html:54
329     msgid "Lock page"
330     msgstr "Bloquear página"
331
332
333 HTML Templates
334 --------------
335 The template files do not need to be translated. As of PhpWiki 1.3 all
336 the text strings in the html templates are cross-referenced with the
337 translations in the '.po' files.
338
339 *** Note: Updating html template translations from PhpWiki 1.2 to 1.3: ***
340
341 The translated version of the tips for TextFormattingRules must be
342 moved from the old html template 'editpage.html', and placed into the
343 'pgsrc' for the default page of TextFormattingRules. A plugin now
344 extracts this text and inserts it when editing a page in PhpWiki,
345 rather than it being embedded within the html template itself.
346
347 It is suggested this paragraph would go at the top of the page. It
348 must be in a section heading entitled "Summary" in order for the
349 editpage template to find it. Of course you will substitute the
350 translations for "TextFormattingRules" and "Summary", according to the
351 wording you used for these phrases when you translated the '.po' file.
352
353 Refer to the English "TextFormattingRules" and German (de)
354 "TextFormatierungsRegeln" pages to see working examples.
355
356
357 Finale
358 ======
359 After you have finished translating, you will want to see the result
360 of your efforts. Change the LANG setting in 'config.ini' to the
361 two-letter code for your language.
362
363 Et voilà, Phpwiki should now speak Islandic!
364
365 If your translation was a success, you may also want to add a
366 translation of these instructions for translating PhpWiki ;-)
367
368 About gettext
369 -------------
370 To learn more about GNU gettext and '.po' files, you may find some
371 information at:
372
373     <http://www.iro.umontreal.ca/contrib/po/HTML/>
374     <http://www.gnu.org/directory/gettext>
375
376 Good luck,
377 Jan Nieuwenhuizen <janneke@gnu.org>
378 Arno Hollosi <ahollosi@mail.com>
379 Carsten Klapp <carstenklapp@users.sourceforge.net>
380 Reini Urban <rurban@x-ray.at>
381
382 $Id$