diff options
author | Eike Rathke <erack@redhat.com> | 2015-04-22 19:17:15 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-04-22 19:40:32 +0200 |
commit | afd8e4093687557843427d7539c4b0e6ece8bbff (patch) | |
tree | 5d56434a822c20d1b42c4dac84a6e4d4f848ac61 /i18npool | |
parent | 3635aec0c6595219946225cf02032c87b389db4c (diff) |
both scientific formats are of type medium, tdf#88835 follow-up
Otherwise, with one of type long, we'd need to set that to default as
well, defaults are per type. Visible in a dbgutil build terminal output
when the locale is selected in the number formatter dialog for the first
time:
SvNumberFormatter::ImpAdjustFormatCodeDefault: no long type default
XML locale data FormatElement group of: ScientificFormatskey1
ja-JP requested
ja-JP loaded
SvNumberFormatter::ImpAdjustFormatCodeDefault: no long type default
XML locale data FormatElement group of: ScientificFormatskey1
ko-KR requested
ko-KR loaded
Change-Id: I3e445fff3ca2dd834bd19c609a2ee2f68e704093
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/localedata/data/ja_JP.xml | 2 | ||||
-rw-r--r-- | i18npool/source/localedata/data/ko_KR.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/i18npool/source/localedata/data/ja_JP.xml b/i18npool/source/localedata/data/ja_JP.xml index 0ab1c02aa2fe..540412149aeb 100644 --- a/i18npool/source/localedata/data/ja_JP.xml +++ b/i18npool/source/localedata/data/ja_JP.xml @@ -77,7 +77,7 @@ <FormatElement msgid="FixedFormatskey6" default="false" type="short" usage="FIXED_NUMBER" formatindex="5"> <FormatCode>#,###.00</FormatCode> </FormatElement> - <FormatElement msgid="ScientificFormatskey1" default="false" type="long" usage="SCIENTIFIC_NUMBER" formatindex="6"> + <FormatElement msgid="ScientificFormatskey1" default="false" type="medium" usage="SCIENTIFIC_NUMBER" formatindex="6"> <FormatCode>0.00E+000</FormatCode> </FormatElement> <FormatElement msgid="ScientificFormatskey2" default="true" type="medium" usage="SCIENTIFIC_NUMBER" formatindex="7"> diff --git a/i18npool/source/localedata/data/ko_KR.xml b/i18npool/source/localedata/data/ko_KR.xml index 60030d3bd61e..1ed634724eef 100644 --- a/i18npool/source/localedata/data/ko_KR.xml +++ b/i18npool/source/localedata/data/ko_KR.xml @@ -71,7 +71,7 @@ <FormatElement msgid="NumberFormatskey6" default="false" type="medium" usage="FIXED_NUMBER" formatindex="5"> <FormatCode>#,###.00</FormatCode> </FormatElement> - <FormatElement msgid="ScientificFormatskey1" default="false" type="long" usage="SCIENTIFIC_NUMBER" formatindex="6"> + <FormatElement msgid="ScientificFormatskey1" default="false" type="medium" usage="SCIENTIFIC_NUMBER" formatindex="6"> <FormatCode>0.00E+000</FormatCode> </FormatElement> <FormatElement msgid="ScientificFormatskey2" default="true" type="medium" usage="SCIENTIFIC_NUMBER" formatindex="7"> |