From 091cdf92af2a3cb361769f2b8f274f9500b166c3 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 12 Jun 2025 21:34:36 +0300 Subject: Remove hard-coded German locale and improve English localization MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- src/main/java/prefs/VSDefaultPrefs.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/main/java/prefs/VSDefaultPrefs.java') diff --git a/src/main/java/prefs/VSDefaultPrefs.java b/src/main/java/prefs/VSDefaultPrefs.java index bc57098..9a5d966 100644 --- a/src/main/java/prefs/VSDefaultPrefs.java +++ b/src/main/java/prefs/VSDefaultPrefs.java @@ -68,15 +68,15 @@ public class VSDefaultPrefs extends VSSerializablePrefs { initString("lang.edit", "Edit"); initString("lang.editor", "Editor"); initString("lang.event", "Event"); - initString("lang.event.add.global", "Insert global event"); - initString("lang.event.add.local", "Insert local event"); + initString("lang.event.add.global", "Add global event"); + initString("lang.event.add.local", "Add local event"); initString("lang.event.add.time", "at"); initString("lang.events", "Events"); initString("lang.events.process", "Process events"); initString("lang.file", "File"); initString("lang.filter", "Filter"); - initString("lang.loging.active", "Logging"); - initString("lang.loging.clear", "Delete logs"); + initString("lang.logging.active", "Logging"); + initString("lang.logging.clear", "Clear logs"); initString("lang.message", "Message"); initString("lang.message.recv", "Message received"); initString("lang.message.sent", "Message sent"); @@ -99,7 +99,7 @@ public class VSDefaultPrefs extends VSSerializablePrefs { initString("lang.prefs.protocols", "Protocol preferences"); initString("lang.prefs.simulator", "Simulator preferences"); initString("lang.process", "Process"); - initString("lang.process.add.new", "Insert new process"); + initString("lang.process.add.new", "Add new process"); initString("lang.process.crash", "Crash process"); initString("lang.process.edit", "Edit process"); initString("lang.process.id", "PID"); @@ -138,8 +138,8 @@ public class VSDefaultPrefs extends VSSerializablePrefs { initString("lang.takeover", "Take over"); initString("lang.task", "Task"); initString("lang.task.manager", "Event editor"); - initString("lang.tasks.fullfilled", "Fullfilled tasks"); - initString("lang.tasks.global", "GLobal tasks"); + initString("lang.tasks.fulfilled", "Fulfilled tasks"); + initString("lang.tasks.global", "Global tasks"); initString("lang.tasks.local", "Local tasks"); initString("lang.time", "Time"); initString("lang.time.lamport", "Lamport time"); -- cgit v1.2.3