We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9cdc5e commit b36beebCopy full SHA for b36beeb
app/src/processing/app/I18n.java
@@ -53,7 +53,10 @@ static protected void init(String language) throws MissingResourceException {
53
public static String _(String s) {
54
String res;
55
try {
56
- res = i18n.getString(s);
+ if (i18n == null)
57
+ res = s;
58
+ else
59
+ res = i18n.getString(s);
60
} catch (MissingResourceException e) {
61
res = s;
62
}
0 commit comments