Multilingual support #1295
-
Needing to add multilingual support to an existing BIRT report. Also known as localization. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The first step is you need a standard property file by default you need for 2 languages 3 files: The postfix "_de.properties" is a standard Java mechanism so you would be able to use the long version of "_de_DE.properties"
Conten, structure like =, e.g. The next step is to add the file 01 (default language) to your report ressources If you have added the file then you use the properties on BIRT-labels on parameters: I hope it gives you the first steps and ideas for your next steps. |
Beta Was this translation helpful? Give feedback.
The first step is you need a standard property file by default you need for 2 languages 3 files:
file 01 - default language: .properties
file 02 - language DE: _de.properties
file 03 - language EN: _en.properties
The postfix "_de.properties" is a standard Java mechanism so you would be able to use the long version of "_de_DE.properties"
because German, English and other languages could have subcategories of languages.
Be aware the postfix use the ISO-language code and not the ISO-country codes 2 examples:
Conten, structure like =, e.g.
label1=Ich bin eine Beschriftung
exampl…