Skip to content

Commit aca0c87

Browse files
author
Shigeru KANEMOTO
committed
Rearrange i18n Resource files into a directory
The "app/src/processing/app" directory became mess because there are a lot of "Resources_*.po" and "Resources_*.properties" files for the internationalization. Moved the resource related files into a directory "i18n" under the "app/src/processing/app" directory. This is for developers only. No feature changed.
1 parent 44efa7f commit aca0c87

File tree

87 files changed

+2
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+2
-2
lines changed

app/src/processing/app/I18n.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ static protected void init (String language) {
3535
if (language != null && language.trim().length() > 0) {
3636
Locale.setDefault(new Locale(language));
3737
}
38-
i18n = ResourceBundle.getBundle("processing.app.Resources", Locale.getDefault());
38+
i18n = ResourceBundle.getBundle("processing.app.i18n.Resources", Locale.getDefault());
3939

4040
PROMPT_YES = _("Yes");
4141
PROMPT_NO = _("No");

0 commit comments

Comments
 (0)