]> git.mxchange.org Git - friendica.git/blob - README.translate
Merge pull request #956 from annando/master
[friendica.git] / README.translate
1 Friendica translations
2 ======================
3
4 Translation Process
5 -------------------
6
7 The strings used in the UI of Friendica is translated at Transifex [1] and then
8 included in the git repository at github. If you want to help with translation
9 for any language, be it correcting terms or translating friendica to a
10 currently not supported language, please register an account at transifex.com
11 and contact the friendica translation team there.
12
13 Translating friendica is simple. Just use the online tool at transifex. If you
14 don't want to deal with git & co. that is fine, we check the status of the
15 translations regularly and import them into the source tree at github so that
16 others can use them.
17
18 We do not include every translation from transifex in the source tree to avoid
19 a scattered and disturbed overall experience. As an uneducated guess we have a
20 lower limit of 50% translated strings before we include the language. This
21 limit is judging only by the amount of translated strings under the assumption
22 that the most prominent strings for the UI will be translated first by a
23 translation team. If you feel your translation useable before this limit,
24 please contact us and we will probably include your teams work in the source
25 tree.
26
27 If you want to get your work into the source tree yourself, feel free to do so
28 and contact us with and question that arises. The process is simple and
29 friendica ships with all the tools necessary.
30
31 The location of the translated files in the source tree is
32     /view/LNG-CODE/
33 where LNG-CODE is the language code used, e.g. de for German or fr for French.
34 For the email templates (the *.tpl files) just place them into the directory
35 and you are done. The translated strings come as a "message.po" file from
36 transifex which needs to be translated into the PHP file friendica uses.  To do
37 so, place the file in the directory mentioned above and use the "po2php"
38 utility from the util directory of your friendica installation.
39
40 Assuming you want to convert the German localization which is placed in
41 view/de/message.po you would do the following.
42
43     1. Navigate at the command prompt to the base directory of your
44        friendica installation
45
46     2. Execute the po2php script, which will place the translation
47        in the strings.php file that is used by friendica.
48
49        $> php util/po2php.php view/de/message.po
50
51        The output of the script will be placed at view/de/strings.php where
52        froemdoca os expecting it, so you can test your translation mmediately.
53                                   
54     3. Visit your friendica page to check if it still works in the language you
55        just translated. If not try to find the error, most likely PHP will give
56        you a hint in the log/warnings.about the error.
57                                         
58        For debugging you can also try to "run" the file with PHP. This should
59        not give any output if the file is ok but might give a hint for
60        searching the bug in the file.
61
62        $> php view/de/strings.php
63
64     4. commit the two files with a meaningful commit message to your git
65        repository, push it to your fork of the friendica repository at github and
66        issue a pull request for that commit.
67
68 Utilities
69 ---------
70
71 Additional to the po2php script there are some more utilities for translation
72 in the "util" directory of the friendica source tree.  If you only want to
73 translate friendica into another language you wont need any of these tools most
74 likely but it gives you an idea how the translation process of friendica
75 works.
76
77 For further information see the utils/README file.
78
79 Known Problems
80 --------------
81
82 Friendica uses the language setting of the visitors browser to determain the
83 language for the UI. Most of the time this works, but there are some known
84 quirks.
85
86 One is that some browsers, like Safari, do the setting to "de-de" but friendica
87 only has a "de" localisation.  A workaround would be to add a symbolic link
88 from
89     $friendica/view/de-de
90 pointing to
91     $friendica/view/de
92
93 Links
94 -----
95
96 [1]   https://www.transifex.com/projects/p/friendica/
97