diff options
| author | Paul Buetow <paul@buetow.org> | 2025-06-12 21:34:36 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-06-12 21:34:36 +0300 |
| commit | 091cdf92af2a3cb361769f2b8f274f9500b166c3 (patch) | |
| tree | 38a5e7acf7aa56557404ddbde3062e500e05c3f0 /src/main/java/simulator/VSMain.java | |
| parent | 5c5f252d5c7a2bdfefd4fbe54a7ae64537a64874 (diff) | |
Remove hard-coded German locale and improve English localization
- Change default locale from German to English in VSMain.java
- Fix language key typos: "loging" → "logging" throughout codebase
- Improve English language strings:
- "Insert" → "Add" for better UX terminology
- "Fullfilled" → "Fulfilled" (spelling correction)
- "GLobal" → "Global" (capitalization fix)
- "Delete logs" → "Clear logs" (more appropriate action)
- Update all references to changed language keys
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'src/main/java/simulator/VSMain.java')
| -rw-r--r-- | src/main/java/simulator/VSMain.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/simulator/VSMain.java b/src/main/java/simulator/VSMain.java index 34a21b7..46077ec 100644 --- a/src/main/java/simulator/VSMain.java +++ b/src/main/java/simulator/VSMain.java @@ -61,7 +61,7 @@ public class VSMain { UIManager.getCrossPlatformLookAndFeelClassName()); } catch (Exception e) { } - Locale.setDefault(Locale.GERMAN); + Locale.setDefault(Locale.ENGLISH); javax.swing.JPopupMenu.setDefaultLightWeightPopupEnabled(false); VSPrefs prefs = VSDefaultPrefs.init(); VSRegisteredEvents.init(prefs); |
