At the momnet the en_UK language bundle has identical files to the default bundle. When users change proeprties in the default bundle if their locale is en_* the changes do not take effect as the English bundle overrides the default one. We do not need to en_UK bundle. All we need is to include the English language descriptor in the default language bundle so that users can still select "en_UK" from the Language drop down in teh admin section.
- causes
-
JRASERVER-9257 JIRA does not override the locale settings of java
-
- Closed
-
-
JRASERVER-5598 language_en_UK.jar should be renamed to language_en.jar
-
- Closed
-
- incorporates
-
JRASERVER-8687 Source Distribution does not have translations for 'en_UK'
-
- Closed
-
- is duplicated by
-
JRASERVER-15820 Please Verify: language_en_UK.jar should be removed from JIRA standalone when customising text
-
- Closed
-
This issue can not be resolved. The way that the ResourceBundle works is that having failed finding the bundle for the provided locale (in this case en_UK), it will do a search across the default locale of the JVM before falling back on the base property file. SO if you are running with a system locale (-Dlocale.country=DE, -Dlocale.language=de) of german then you can never switch to english if there are not properties with a en postfix, it will always fallback to the de_DE properties instead of the default base property file.