Adapt language versions
The properties folder contains one or more property files with customized strings for the user interface. Adhere to these naming conventions:
- The English property file must be stored in a file with the extension .properties.
- All other property files must be stored in a file with the extension _<language code>.properties, for example, _de.properties for the German file.
- The underscore (_) must be used before the language code. It must not occur at any other position of the file name.
Examples
English properties file (without language code):
- Correct file name: myCustomizedStrings.properties
- Wrong file name: my_customized_strings.properties
German properties file (with language code):
- Correct file name: myCustomizedStrings_de.properties
- Wrong file name: my_customized_strings_de.properties
This allows you to create several language versions in parallel, whose file names only differ in terms of the language code.