Version at: 22/02/2014, 18:44 vs. version at: 23/02/2014, 01:15
11#Extracting UI Strings
22
33These instructions describe how to extract UI strings so that they can be translated. The original source of these instructions, stored on Assembla, is here: [1]
44
55 [1]: https://www.assembla.com/spaces/tatoeba2/wiki/Internationalization
66
77
88##Markup for internationalized strings in the code
99
1010In the code, whenever developers write strings that will have to be translated, they use a special function whose name consists of a double underscore. A script (CakePHP's "i18n extract" script) can later be run to scan the code and extract the strings that are passed to this function.
1111
1212__() function
1313
1414CakePHP has several functions in this vein, but this is the function we will use most of the time. Note the pair of underscores.
1515
1616 __(‘some text’) => echo ‘some text’;
1717 __(‘some text’, true) => return ‘some text’;
1818
1919The language used in the code will be English.
2020
21##Running cake i18n (on a Linux machine or virtual machine)
21##Running cake i18n
2222
23 Open a console.
24 Type : /var/http/tatoeba/cake/console/cake i18n
25 Choose : E (Extract POT file from source)
26 When asked if you want to merge all translations into a single file, say yes
27 Type in the path to app: /home/tatoeba/tatoeba-www/app
28 Type in the path to locale: /home/tatoeba/tatoeba-www/app/locale
29 Choose a name for the file that will be generated (in this example, default.pot): default.pot
30 Choose: Q (quit)
31
32##PO file
33
34Note: it may be better to use Launchpad to create a new UI language rather than follow this manual procedure.
35
36Adding a new language (e.g., French):
37
38 Create folder : /app/locale/fre/LC_MESSAGES
39 Copy-paste default.pot in this folder
40 Change it into default.po
41 Open default.po with PoEdit (http://www.poedit.net/) and translate.
42 Save. It will generate a *.mo file, which is used when replacing strings at runtime.
43
44If new strings are added:
45
46 Follow the cake i18n instructions to generate the up-to-date POT file.
47 Open the PO file (PO, not POT).
48 In the menu : Catalog > Update from POT file…
49 Choose the POT file that was newly generated
50
51
52##Switching languages
53
54The language of the page is set through the URL.
55Example : http://localhost/tatoeba2/fre/sentences/index
56Resources
57
58 http://blog.jaysalvat.com/articles/choix-des-langues-par-url-dans-cakephp.php
59 http://www.formation-cakephp.com/41/multilingue-18n-l10n
23* Open a console on a Linux machine or Linux virtual machine.
24* Type : /var/http/tatoeba/cake/console/cake i18n
25* Choose : E (Extract POT file from source)
26* When asked if you want to merge all translations into a single file, say yes
27* Type in the path to app: /home/tatoeba/tatoeba-www/app
28* Type in the path to locale: /home/tatoeba/tatoeba-www/app/locale
29* Choose a name for the file that will be generated (in this example, default.pot): default.pot
30* Choose: Q (quit)
6031
6132
6233
6334
35
diff view generated by jsdifflib

Version at: 22/02/2014, 18:44

#Extracting UI Strings

These instructions describe how to extract UI strings so that they can be translated. The original source of these instructions, stored on Assembla, is here: [1]

  [1]: https://www.assembla.com/spaces/tatoeba2/wiki/Internationalization


##Markup for internationalized strings in the code

In the code, whenever developers write strings that will have to be translated, they use a special function whose name consists of a double underscore. A script (CakePHP's "i18n extract" script) can later be run to scan the code and extract the strings that are passed to this function.

__() function

CakePHP has several functions in this vein, but this is the function we will use most of the time. Note the pair of underscores.

    __(‘some text’) => echo ‘some text’;
    __(‘some text’, true) => return ‘some text’;

The language used in the code will be English.

##Running cake i18n (on a Linux machine or virtual machine)

    Open a console.
    Type : /var/http/tatoeba/cake/console/cake i18n
    Choose : E (Extract POT file from source)
    When asked if you want to merge all translations into a single file, say yes
    Type in the path to app: /home/tatoeba/tatoeba-www/app
    Type in the path to locale: /home/tatoeba/tatoeba-www/app/locale
    Choose a name for the file that will be generated (in this example, default.pot): default.pot
    Choose: Q (quit)

##PO file

Note: it may be better to use Launchpad to create a new UI language rather than follow this manual procedure.

Adding a new language (e.g., French):

    Create folder : /app/locale/fre/LC_MESSAGES
    Copy-paste default.pot in this folder
    Change it into default.po
    Open default.po with PoEdit (http://www.poedit.net/) and translate.
    Save. It will generate a *.mo file, which is used when replacing strings at runtime.

If new strings are added:

    Follow the cake i18n instructions to generate the up-to-date POT file.
    Open the PO file (PO, not POT).
    In the menu : Catalog > Update from POT file…
    Choose the POT file that was newly generated


##Switching languages

The language of the page is set through the URL.
Example : http://localhost/tatoeba2/fre/sentences/index
Resources

    http://blog.jaysalvat.com/articles/choix-des-langues-par-url-dans-cakephp.php
    http://www.formation-cakephp.com/41/multilingue-18n-l10n



version at: 23/02/2014, 01:15

#Extracting UI Strings

These instructions describe how to extract UI strings so that they can be translated. The original source of these instructions, stored on Assembla, is here: [1]

  [1]: https://www.assembla.com/spaces/tatoeba2/wiki/Internationalization


##Markup for internationalized strings in the code

In the code, whenever developers write strings that will have to be translated, they use a special function whose name consists of a double underscore. A script (CakePHP's "i18n extract" script) can later be run to scan the code and extract the strings that are passed to this function.

__() function

CakePHP has several functions in this vein, but this is the function we will use most of the time. Note the pair of underscores.

    __(‘some text’) => echo ‘some text’;
    __(‘some text’, true) => return ‘some text’;

The language used in the code will be English.

##Running cake i18n

* Open a console on a Linux machine or Linux virtual machine.
* Type : /var/http/tatoeba/cake/console/cake i18n
* Choose : E (Extract POT file from source)
* When asked if you want to merge all translations into a single file, say yes
* Type in the path to app: /home/tatoeba/tatoeba-www/app
* Type in the path to locale: /home/tatoeba/tatoeba-www/app/locale
* Choose a name for the file that will be generated (in this example, default.pot): default.pot
* Choose: Q (quit)




Note

The lines in green are the lines that have been added in the new version. The lines in red are those that have been removed.