Danish translation *almost* done.
[quassel.git] / i18n / README.Translations
1 In order to create or update a translatable file, run the following command
2 in the directory i18n/:
3
4 lupdate ../src -ts quassel_xx.ts
5
6 where xx is the two-letter language code according to ISO 639 (which,
7 if needed, may be suffixed by a country code according to ISO 3166).
8 Quassel will automatically load these translation files based on the
9 system locale. Examples for valid file names:
10
11 quassel_de.ts
12 quassel_en_US.ts
13
14 You can open these XML files with the Qt Linguist and add/edit translated strings.
15
16 The *.ts files can and should be kept in sync with the source code by running
17 lupdate regularly (existing translations won't be removed).
18
19 Qt itself does not use the *.ts files, but a compact binary format (*.qm). In order
20 to create these files from new or updated *.ts files, run
21
22 lrelease *.ts
23
24 In addition, new languages need to be added to i18n/i18n.qrc, since we are using Qt's
25 resource system for loading the translations.