Skip to content
This repository has been archived by the owner on Nov 12, 2020. It is now read-only.

Commit

Permalink
ResourceBundle translation for Korean
Browse files Browse the repository at this point in the history
  • Loading branch information
Template builder committed Mar 25, 2013
1 parent 2a557fc commit 1581c76
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions gui/pom.xml
Expand Up @@ -311,6 +311,7 @@
<include name="UIConstants_es.properties"/>
<include name="UIConstants_fr.properties"/>
<include name="UIConstants_ja.properties"/>
<include name="UIConstants_ko.properties"/>
<include name="UIConstants_pt_BR.properties"/>
<include name="UIConstants_zh_Hans.properties"/>
</fileset>
Expand All @@ -322,6 +323,7 @@
<include name="UIMessages_es.properties"/>
<include name="UIMessages_fr.properties"/>
<include name="UIMessages_ja.properties"/>
<include name="UIMessages_ko.properties"/>
<include name="UIMessages_pt_BR.properties"/>
<include name="UIMessages_zh_Hans.properties"/>
</fileset>
Expand Down
4 changes: 2 additions & 2 deletions gui/src/main/java/org/jboss/as/console/App.gwt.xml
Expand Up @@ -97,9 +97,9 @@
return locale_value;
</property-provider>

<extend-property name="locale" values="en,de,es,fr,pt_BR,zh_Hans,ja"/>
<extend-property name="locale" values="en,de,es,fr,pt_BR,zh_Hans,ja,ko"/>
<set-property-fallback name="locale" value="en"/>
<set-property name="locale" value="en,de,es,fr,pt_BR,zh_Hans,ja"/>
<set-property name="locale" value="en,de,es,fr,pt_BR,zh_Hans,ja,ko"/>

<!--removes client-side stack trace info (can reduce size up to 15%)-->
<set-property name="compiler.stackMode" value="strip"/>
Expand Down
Expand Up @@ -63,7 +63,7 @@ public SettingsView(EventBus eventBus) {
ComboBoxItem localeItem = new ComboBoxItem(Preferences.Key.LOCALE.getToken(), Preferences.Key.LOCALE.getTitle());

localeItem.setDefaultToFirstOption(true);
localeItem.setValueMap(new String[] {"en", "de", "zh_Hans", "pt_BR", "fr", "es", "ja"});
localeItem.setValueMap(new String[] {"en", "de", "zh_Hans", "pt_BR", "fr", "es", "ja", "ko"});

//CheckBoxItem useCache = new CheckBoxItem(Preferences.Key.USE_CACHE.getToken(), Preferences.Key.USE_CACHE.getTitle());

Expand Down
1 change: 1 addition & 0 deletions gui/zanata.xml
Expand Up @@ -11,6 +11,7 @@
<locale>fr</locale>
<locale>es</locale>
<locale>ja</locale>
<locale>ko</locale>
</locales>

</config>

0 comments on commit 1581c76

Please sign in to comment.