Changeset 1463:b6edc11943a5
- Timestamp:
- 08/12/10 15:35:14 (3 years ago)
- Author:
- Thomas Gambet <tgambet@…>
- Branch:
- default
- Message:
-
~ fixed locale in language filenames
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r1353
|
r1463
|
|
| 313 | 313 | OutputFormater fileOutputFormater; |
| 314 | 314 | if (interfaceChanged) { |
| 315 | | fileOutputFormater = new FileOutputFormater("language.properties", Property.get("DEFAULT_LANGUAGE"), "text/plain", languageParameter + ".properties"); |
| | 315 | fileOutputFormater = new FileOutputFormater("language.properties", Property.get("DEFAULT_LANGUAGE"), "text/plain", languageParameter.replace("_", "-") + ".properties"); |
| 316 | 316 | outputFormaters.add(fileOutputFormater); |
| 317 | 317 | } |
| … |
… |
|
| 319 | 319 | OutputFormater fileOutputFormater2; |
| 320 | 320 | if (tasklistChanged) { |
| 321 | | fileOutputFormater2 = new FileOutputFormater("tasklist.properties", Property.get("DEFAULT_LANGUAGE"), "text/plain", languageParameter + ".tasklist.properties"); |
| | 321 | fileOutputFormater2 = new FileOutputFormater("tasklist.properties", Property.get("DEFAULT_LANGUAGE"), "text/plain", languageParameter.replace("_", "-") + ".tasklist.properties"); |
| 322 | 322 | outputFormaters.add(fileOutputFormater2); |
| 323 | 323 | } |