OLD | NEW |
(Empty) | |
| 1 # Localization files # |
| 2 |
| 3 The language-specific data is stored in the `locales` directory. Each language |
| 4 (identified by its locale code) is given a subdirectory here. The `.json` files |
| 5 contain localizable strings using the following format: |
| 6 |
| 7 { |
| 8 "stringid": { |
| 9 "message": "Translated string", |
| 10 "description": "Optional string description" |
| 11 }, |
| 12 ... |
| 13 } |
| 14 |
| 15 Any other files are considered localizable files and will be available on the |
| 16 server unchanged. This is useful for images for example: a language-dependent |
| 17 image can be placed into the `locales/en` directory and a German version |
| 18 of the same image into the `locales/de` directory. E.g. the file |
| 19 `locales/en/foo.png` will be available on the server under the URL `/en/foo.png`
. |
OLD | NEW |