added localization options

//todo add all the strings
This commit is contained in:
Ticho Hidding
2025-09-25 14:38:06 +02:00
parent 7431d1b03f
commit 2c4719f6d4
8 changed files with 62 additions and 97 deletions

View File

@@ -0,0 +1,14 @@
package org.toop.local;
import java.util.Locale;
public class AppContext {
private static Locale currentLocale = Locale.getDefault();
public static void setCurrentLocale(Locale locale) {
currentLocale = locale;
}
public static Locale getLocale() {
return currentLocale;
}
}