From 549c5aa6b9499a2c737f9ada887f54b20289ed1a Mon Sep 17 00:00:00 2001 From: matmemo <33166560+matmemo@users.noreply.github.com> Date: Sat, 16 Dec 2017 09:45:52 +0100 Subject: [PATCH] Update German translation to double lines in settings (#160) --- workspace/TS100/src/Translation.c | 50 +++++++++++++++---------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/workspace/TS100/src/Translation.c b/workspace/TS100/src/Translation.c index 320d9489..a045f327 100644 --- a/workspace/TS100/src/Translation.c +++ b/workspace/TS100/src/Translation.c @@ -418,16 +418,16 @@ const char* SettingsLongNames[16] = { /* Shutdown timeout */"Abschaltzeit ", /* Motion sensitivity level */"Bewegungsempfindlichkeit <0=Aus, 1=Minimal ... 9=Maximal>", /* Temperature in F and C */"Temperatureinheit ", - /* Advanced idle display mode enabled */"Detaillierte Anzeige im Ruhemodus ", - /* Display rotation mode */"Ausrichtung der Anzeige ", - /* Boost enabled */"Vordere Taste für Temperaturboost verwenden ", + /* Advanced idle display mode enabled */"Detaillierte Anzeige im Ruhemodus ", + /* Display rotation mode */"Ausrichtung der Anzeige ", + /* Boost enabled */"Vordere Taste für Temperaturboost verwenden ", /* Boost temperature */"Temperatur im Boostmodus (In der eingestellten Einheit)", - /* Automatic start mode */"Automatischer Start des Lötmodus beim Einschalten der Spannungsversorgung. ", - /* Cooldown blink */"Blinkende Temperaturanzeige beim Abkühlen, solange heiß. " + /* Automatic start mode */"Automatischer Start des Lötmodus beim Einschalten der Spannungsversorgung. ", + /* Cooldown blink */"Blinkende Temperaturanzeige beim Abkühlen, solange heiß. ", /* Temperature calibration enter menu */"Kalibrierung der Lötspitzentemperatur", /* Settings reset command */"Alle Einstellungen zurücksetzen", /* Calibrate input voltage */"Kalibrierung der Eingangsspannung. Kurzer Tastendruck zum Einstellen, langer Tastendruck zum Verlassen.", - /* Advanced soldering screen enabled */"Detaillierte Anzeige im Lötmodus ", + /* Advanced soldering screen enabled */"Detaillierte Anzeige im Lötmodus ", }; const char* SettingsCalibrationWarning = "Vor dem Fortfahren muss die Lötspitze vollständig abgekühlt sein!"; @@ -438,30 +438,30 @@ const char* SleepingAdvancedString = "Ruhemodus..."; // <=17 chars const char* WarningSimpleString = "HEIß"; // Must be <= 4 chars const char* WarningAdvancedString = "Achtung! Spitze Heiß!"; -const char SettingTrueChar = 'T'; -const char SettingFalseChar = 'F'; +const char SettingTrueChar = 'J'; +const char SettingFalseChar = 'N'; const char SettingRightChar = 'R'; const char SettingLeftChar = 'L'; const char SettingAutoChar = 'A'; -const enum ShortNameType SettingsShortNameType = SHORT_NAME_SINGLE_LINE; +const enum ShortNameType SettingsShortNameType = SHORT_NAME_DOUBLE_LINE; const char* SettingsShortNames[16][2] = { - /* (<= 5) Power source (DC or batt) */ {"PWRSC"}, - /* (<= 4) Sleep temperature */ {"STMP"}, - /* (<= 4) Sleep timeout */ {"STME"}, - /* (<= 5) Shutdown timeout */ {"SHTME"}, - /* (<= 6) Motion sensitivity level */ {"MSENSE"}, - /* (<= 6) Temperature in F and C */ {"TMPUNT"}, - /* (<= 6) Advanced idle display mode enabled */ {"ADVIDL"}, - /* (<= 6) Display rotation mode */ {"DSPROT"}, - /* (<= 6) Boost enabled */ {"BOOST"}, - /* (<= 4) Boost temperature */ {"BTMP"}, - /* (<= 6) Automatic start mode */ {"ASTART"}, - /* (<= 6) Cooldown blink */ {"CLBLNK"}, - /* (<= 8) Temperature calibration enter menu */ {"TMP CAL?"}, - /* (<= 8) Settings reset command */ {"RESET?"}, - /* (<= 8) Calibrate input voltage */ {"CAL VIN?"}, - /* (<= 6) Advanced soldering screen enabled */ {"ADVSLD"}, + /* (<= 11) Power source (DC or batt) */ {"Spannungs-", "quelle"}, + /* (<= 9) Sleep temperature */ {"Ruhetemp-", "eratur"}, + /* (<= 9) Sleep timeout */ {"Ruhever-", "zoegerung"}, + /* (<= 11) Shutdown timeout */ {"Abschalt-", "zeit"}, + /* (<= 13) Motion sensitivity level */ {"Bewegungs-", "empfindlichk."}, + /* (<= 13) Temperature in F and C */ {"Temperatur-", "einheit"}, + /* (<= 13) Advanced idle display mode enabled */ {"Detaillierte", "Ruheansicht"}, + /* (<= 13) Display rotation mode */ {"Anzeige-", "ausrichtung"}, + /* (<= 13) Boost enabled */ {"Boosttaste", "aktiv?"}, + /* (<= 9) Boost temperature */ {"Boosttemp-", "eratur"}, + /* (<= 13) Automatic start mode */ {"Auto-", "start"}, + /* (<= 13) Cooldown blink */ {"Abkuehl-", "blinken"}, + /* (<= 16) Temperature calibration enter menu */ {"Temperatur", "kalibrieren?"}, + /* (<= 16) Settings reset command */ {"Werks-", "reset?"}, + /* (<= 16) Calibrate input voltage */ {"Eingangsspannung", "kalibrieren?"}, + /* (<= 13) Advanced soldering screen enabled */ {"Detaillierte", "Loetansicht"}, }; #endif