aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFederico Di Lorenzo <[email protected]>2022-04-03 12:04:59 +0200
committerGitHub <[email protected]>2022-04-03 20:04:59 +1000
commit943d6bf0bd85e6631cdb7b471893c1432f462866 (patch)
tree45bc3d0db7a7ace84f8d9398b89709a6623a0bfc
parenta73f634cff5f6e6deb22faa65817e01264b0f279 (diff)
downloadIronOS-943d6bf0bd85e6631cdb7b471893c1432f462866.tar.gz
IronOS-943d6bf0bd85e6631cdb7b471893c1432f462866.zip
Symbols change (#1274)
* Costants change Changing to lowercase for two reasons: - Disambiguation with LiPos options - In the SI the symbol for seconds is s (while for minutes is min but doesn't really matter) * Update translation_BE.json * Update translation_BG.json * Update translation_CS.json * Update translation_DA.json * Update translation_DE.json * Update translation_EL.json * Update translation_EN.json * Update translation_ES.json * Update translation_FI.json * Update translation_FR.json * Update translation_HR.json * Update translation_HU.json * Update translation_IT.json * Update translation_JA_JP.json * Update translation_LT.json * Update translation_NL.json * Update translation_NL_BE.json * Update translation_NO.json * Update translation_PL.json * Update translation_PT.json * Update translation_RO.json * Update translation_RU.json * Update translation_SK.json * Update translation_SL.json * Update translation_SR_CYRL.json * Update translation_SR_LATN.json * Update translation_SV.json * Update translation_TR.json * Update translation_UK.json * Update translation_VI.json * Update translation_YUE_HK.json * Update translation_ZH_CN.json * Update translation_ZH_TW.json
-rwxr-xr-xTranslations/make_translation.py4
-rw-r--r--Translations/translation_BE.json2
-rw-r--r--Translations/translation_BG.json2
-rw-r--r--Translations/translation_CS.json2
-rw-r--r--Translations/translation_DA.json2
-rw-r--r--Translations/translation_DE.json6
-rw-r--r--Translations/translation_EL.json2
-rw-r--r--Translations/translation_EN.json6
-rw-r--r--Translations/translation_ES.json2
-rw-r--r--Translations/translation_FI.json6
-rw-r--r--Translations/translation_FR.json6
-rw-r--r--Translations/translation_HR.json2
-rw-r--r--Translations/translation_HU.json2
-rw-r--r--Translations/translation_IT.json2
-rwxr-xr-xTranslations/translation_JA_JP.json6
-rw-r--r--Translations/translation_LT.json2
-rw-r--r--Translations/translation_NL.json2
-rw-r--r--Translations/translation_NL_BE.json2
-rw-r--r--Translations/translation_NO.json2
-rw-r--r--Translations/translation_PL.json2
-rw-r--r--Translations/translation_PT.json2
-rw-r--r--Translations/translation_RO.json6
-rw-r--r--Translations/translation_RU.json2
-rw-r--r--Translations/translation_SK.json4
-rw-r--r--Translations/translation_SL.json6
-rw-r--r--Translations/translation_SR_CYRL.json6
-rw-r--r--Translations/translation_SR_LATN.json6
-rw-r--r--Translations/translation_SV.json4
-rw-r--r--Translations/translation_TR.json2
-rw-r--r--Translations/translation_UK.json2
-rw-r--r--Translations/translation_VI.json6
-rw-r--r--Translations/translation_YUE_HK.json6
-rw-r--r--Translations/translation_ZH_CN.json6
-rw-r--r--Translations/translation_ZH_TW.json6
34 files changed, 63 insertions, 63 deletions
diff --git a/Translations/make_translation.py b/Translations/make_translation.py
index af12a56e..c2c61590 100755
--- a/Translations/make_translation.py
+++ b/Translations/make_translation.py
@@ -102,8 +102,8 @@ def get_constants(build_version: str) -> List[Tuple[str, str]]:
("SymbolDot", "."),
("SymbolDegC", "C"),
("SymbolDegF", "F"),
- ("SymbolMinutes", "M"),
- ("SymbolSeconds", "S"),
+ ("SymbolMinutes", "m"),
+ ("SymbolSeconds", "s"),
("SymbolWatts", "W"),
("SymbolVolts", "V"),
("SymbolAmps", "A"),
diff --git a/Translations/translation_BE.json b/Translations/translation_BE.json
index 1217b99b..0270833a 100644
--- a/Translations/translation_BE.json
+++ b/Translations/translation_BE.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_BG.json b/Translations/translation_BG.json
index 501c3aca..5e3380e5 100644
--- a/Translations/translation_BG.json
+++ b/Translations/translation_BG.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_CS.json b/Translations/translation_CS.json
index 087cd479..4f5a53be 100644
--- a/Translations/translation_CS.json
+++ b/Translations/translation_CS.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_DA.json b/Translations/translation_DA.json
index 7f1b8c5c..8a42e907 100644
--- a/Translations/translation_DA.json
+++ b/Translations/translation_DA.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_DE.json b/Translations/translation_DE.json
index 2aada270..7f175344 100644
--- a/Translations/translation_DE.json
+++ b/Translations/translation_DE.json
@@ -77,11 +77,11 @@
},
"SleepTimeout": {
"text2": ["Ruhever-", "zögerung"],
- "desc": "Dauer vor Übergang in den Ruhemodus (S=Sekunden | M=Minuten)"
+ "desc": "Dauer vor Übergang in den Ruhemodus (s=Sekunden | m=Minuten)"
},
"ShutdownTimeout": {
"text2": ["Abschalt-", "verzög."],
- "desc": "Dauer vor automatischer Abschaltung (M=Minuten)"
+ "desc": "Dauer vor automatischer Abschaltung (m=Minuten)"
},
"MotionSensitivity": {
"text2": ["Bewegungs-", "empfindlichk."],
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Startlogo-", "dauer"],
- "desc": "Legt die Dauer der Anzeige des Startlogos fest (S=Sekunden)"
+ "desc": "Legt die Dauer der Anzeige des Startlogos fest (s=Sekunden)"
}
}
}
diff --git a/Translations/translation_EL.json b/Translations/translation_EL.json
index 66fcb3e6..88c64366 100644
--- a/Translations/translation_EL.json
+++ b/Translations/translation_EL.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_EN.json b/Translations/translation_EN.json
index a5554111..8e570a5f 100644
--- a/Translations/translation_EN.json
+++ b/Translations/translation_EN.json
@@ -77,11 +77,11 @@
},
"SleepTimeout": {
"text2": ["Sleep", "timeout"],
- "desc": "Interval before \"sleep mode\" kicks in (S=seconds | M=minutes)"
+ "desc": "Interval before \"sleep mode\" kicks in (s=seconds | m=minutes)"
},
"ShutdownTimeout": {
"text2": ["Shutdown", "timeout"],
- "desc": "Interval before the iron shuts down (M=minutes)"
+ "desc": "Interval before the iron shuts down (m=minutes)"
},
"MotionSensitivity": {
"text2": ["Motion", "sensitivity"],
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_ES.json b/Translations/translation_ES.json
index e959479a..448865ad 100644
--- a/Translations/translation_ES.json
+++ b/Translations/translation_ES.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_FI.json b/Translations/translation_FI.json
index 51ea7e83..32f9a413 100644
--- a/Translations/translation_FI.json
+++ b/Translations/translation_FI.json
@@ -77,11 +77,11 @@
},
"SleepTimeout": {
"text2": ["Lepotilan", "viive"],
- "desc": "\"Lepotilan\" ajastus (S=sekuntia | M=minuuttia)"
+ "desc": "\"Lepotilan\" ajastus (s=sekuntia | m=minuuttia)"
},
"ShutdownTimeout": {
"text2": ["Sammutus", "viive"],
- "desc": "Automaattisen sammutuksen ajastus (M=minuuttia)"
+ "desc": "Automaattisen sammutuksen ajastus (m=minuuttia)"
},
"MotionSensitivity": {
"text2": ["Liikkeen", "herkkyys"],
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_FR.json b/Translations/translation_FR.json
index d40c0c3e..37c7d0e3 100644
--- a/Translations/translation_FR.json
+++ b/Translations/translation_FR.json
@@ -77,11 +77,11 @@
},
"SleepTimeout": {
"text2": ["Délai", "veille"],
- "desc": "Délai avant mise en veille (S=secondes | M=minutes)"
+ "desc": "Délai avant mise en veille (s=secondes | m=minutes)"
},
"ShutdownTimeout": {
"text2": ["Délai", "extinction"],
- "desc": "Délai avant extinction (M=minutes)"
+ "desc": "Délai avant extinction (m=minutes)"
},
"MotionSensitivity": {
"text2": ["Sensibilité", "au mouvement"],
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_HR.json b/Translations/translation_HR.json
index 6971723c..8756579f 100644
--- a/Translations/translation_HR.json
+++ b/Translations/translation_HR.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_HU.json b/Translations/translation_HU.json
index e4dcaef2..43d3b5af 100644
--- a/Translations/translation_HU.json
+++ b/Translations/translation_HU.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_IT.json b/Translations/translation_IT.json
index 58a04493..12edf605 100644
--- a/Translations/translation_IT.json
+++ b/Translations/translation_IT.json
@@ -77,7 +77,7 @@
},
"SleepTimeout": {
"text2": ["Timer", "riposo"],
- "desc": "Imposta il timer per entrare in modalità Riposo [minuti/secondi]"
+ "desc": "Imposta il timer per entrare in modalità Riposo [secondi/minuti]"
},
"ShutdownTimeout": {
"text2": ["Timer", "spegnimento"],
diff --git a/Translations/translation_JA_JP.json b/Translations/translation_JA_JP.json
index ad07bda5..ce1f9b9c 100755
--- a/Translations/translation_JA_JP.json
+++ b/Translations/translation_JA_JP.json
@@ -77,11 +77,11 @@
},
"SleepTimeout": {
"text2": "待機遅延",
- "desc": "スタンバイモードに入るまでの待機時間 <S=秒 | M=分>"
+ "desc": "スタンバイモードに入るまでの待機時間 <s=秒 | m=分>"
},
"ShutdownTimeout": {
"text2": "自動オフ",
- "desc": "自動電源オフまでの待機時間 <M=分>"
+ "desc": "自動電源オフまでの待機時間 <m=分>"
},
"MotionSensitivity": {
"text2": "動きの感度",
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_LT.json b/Translations/translation_LT.json
index c7fe020d..f1548cc9 100644
--- a/Translations/translation_LT.json
+++ b/Translations/translation_LT.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_NL.json b/Translations/translation_NL.json
index bc9172cd..2538ac49 100644
--- a/Translations/translation_NL.json
+++ b/Translations/translation_NL.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_NL_BE.json b/Translations/translation_NL_BE.json
index c8a3aa57..40c878ab 100644
--- a/Translations/translation_NL_BE.json
+++ b/Translations/translation_NL_BE.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_NO.json b/Translations/translation_NO.json
index 5da114a5..a4e2d705 100644
--- a/Translations/translation_NO.json
+++ b/Translations/translation_NO.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_PL.json b/Translations/translation_PL.json
index ad55b4cc..8ad1deb6 100644
--- a/Translations/translation_PL.json
+++ b/Translations/translation_PL.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_PT.json b/Translations/translation_PT.json
index d898e02d..56050947 100644
--- a/Translations/translation_PT.json
+++ b/Translations/translation_PT.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_RO.json b/Translations/translation_RO.json
index 5d4dd1f8..ea7f3e40 100644
--- a/Translations/translation_RO.json
+++ b/Translations/translation_RO.json
@@ -77,11 +77,11 @@
},
"SleepTimeout": {
"text2": ["Expirare", "repaus"],
- "desc": "Interval înainte de lansarea \"modului de repaus\" în (S=secunde | M=minute)"
+ "desc": "Interval înainte de lansarea \"modului de repaus\" în (s=secunde | m=minute)"
},
"ShutdownTimeout": {
"text2": ["Expirare", "oprire"],
- "desc": "Interval înainte ca letconul să se oprească (M=minute)"
+ "desc": "Interval înainte ca letconul să se oprească (m=minute)"
},
"MotionSensitivity": {
"text2": ["Sensibilitate", "la mişcare"],
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_RU.json b/Translations/translation_RU.json
index c205bdef..1d418689 100644
--- a/Translations/translation_RU.json
+++ b/Translations/translation_RU.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_SK.json b/Translations/translation_SK.json
index 2baf818f..5e1c02a0 100644
--- a/Translations/translation_SK.json
+++ b/Translations/translation_SK.json
@@ -77,7 +77,7 @@
},
"SleepTimeout": {
"text2": ["Pokojový", "režim po"],
- "desc": "Pokojový režim po (S=sekundách | M=minútach)"
+ "desc": "Pokojový režim po (s=sekundách | m=minútach)"
},
"ShutdownTimeout": {
"text2": ["Vypnutie", "po"],
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_SL.json b/Translations/translation_SL.json
index 9320b62f..c8403612 100644
--- a/Translations/translation_SL.json
+++ b/Translations/translation_SL.json
@@ -77,11 +77,11 @@
},
"SleepTimeout": {
"text2": ["Čas do", "spanja"],
- "desc": "Čas pred spanjem (S=sekunde | M=minute)"
+ "desc": "Čas pred spanjem (s=sekunde | m=minute)"
},
"ShutdownTimeout": {
"text2": ["Čas do", "izklopa"],
- "desc": "Čas do izklopa (M=minute)"
+ "desc": "Čas do izklopa (m=minute)"
},
"MotionSensitivity": {
"text2": ["Občutljivost", "premikanja"],
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_SR_CYRL.json b/Translations/translation_SR_CYRL.json
index d50c7f54..61fb34f9 100644
--- a/Translations/translation_SR_CYRL.json
+++ b/Translations/translation_SR_CYRL.json
@@ -77,11 +77,11 @@
},
"SleepTimeout": {
"text2": ["Време до", "спавања"],
- "desc": "Време мировања након кога лемилица спушта температуру. (M=минути | S=секунде)"
+ "desc": "Време мировања након кога лемилица спушта температуру. (m=минути | s=секунде)"
},
"ShutdownTimeout": {
"text2": ["Време до", "гашења"],
- "desc": "Време мировања након кога се лемилица гаси. (M=минути)"
+ "desc": "Време мировања након кога се лемилица гаси. (m=минути)"
},
"MotionSensitivity": {
"text2": ["Осетљивост", "на покрет"],
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_SR_LATN.json b/Translations/translation_SR_LATN.json
index cef6a788..64660bd7 100644
--- a/Translations/translation_SR_LATN.json
+++ b/Translations/translation_SR_LATN.json
@@ -77,11 +77,11 @@
},
"SleepTimeout": {
"text2": ["Vreme do", "spavanja"],
- "desc": "Vreme mirovanja nakon koga lemilica spušta temperaturu. (M=minuti | S=sekunde)"
+ "desc": "Vreme mirovanja nakon koga lemilica spušta temperaturu. (m=minuti | s=sekunde)"
},
"ShutdownTimeout": {
"text2": ["Vreme do", "gašenja"],
- "desc": "Vreme mirovanja nakon koga se lemilica gasi. (M=minuti)"
+ "desc": "Vreme mirovanja nakon koga se lemilica gasi. (m=minuti)"
},
"MotionSensitivity": {
"text2": ["Osetljivost", "na pokret"],
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_SV.json b/Translations/translation_SV.json
index e22c4734..dbbb0c9e 100644
--- a/Translations/translation_SV.json
+++ b/Translations/translation_SV.json
@@ -77,7 +77,7 @@
},
"SleepTimeout": {
"text2": ["Vilo-", "timeout"],
- "desc": "Vilo-timeout (M=Minuter | S=Sekunder)"
+ "desc": "Vilo-timeout (m=Minuter | s=Sekunder)"
},
"ShutdownTimeout": {
"text2": ["Avstängn.", "timeout"],
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_TR.json b/Translations/translation_TR.json
index 2d65ae7d..2e49b4fe 100644
--- a/Translations/translation_TR.json
+++ b/Translations/translation_TR.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_UK.json b/Translations/translation_UK.json
index a476a527..6e516937 100644
--- a/Translations/translation_UK.json
+++ b/Translations/translation_UK.json
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_VI.json b/Translations/translation_VI.json
index 0b4c530c..dae2e8dd 100644
--- a/Translations/translation_VI.json
+++ b/Translations/translation_VI.json
@@ -77,11 +77,11 @@
},
"SleepTimeout": {
"text2": ["Ngu", "sau"],
- "desc": "- thoi gian truoc khi \"Che đo ngu\" bat đau (S=giây | M=phút)"
+ "desc": "- thoi gian truoc khi \"Che đo ngu\" bat đau (s=giây | m=phút)"
},
"ShutdownTimeout": {
"text2": ["Tat", "sau"],
- "desc": "- khoang thoi gian truoc khi tay hàn tat (M=phút)"
+ "desc": "- khoang thoi gian truoc khi tay hàn tat (m=phút)"
},
"MotionSensitivity": {
"text2": ["Cam bien", "cu đong"],
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_YUE_HK.json b/Translations/translation_YUE_HK.json
index faee8327..30f5c267 100644
--- a/Translations/translation_YUE_HK.json
+++ b/Translations/translation_YUE_HK.json
@@ -77,11 +77,11 @@
},
"SleepTimeout": {
"text2": "待機延時",
- "desc": "自動進入待機模式前嘅閒置等候時間 <S=秒 | M=分鐘>"
+ "desc": "自動進入待機模式前嘅閒置等候時間 <s=秒 | m=分鐘>"
},
"ShutdownTimeout": {
"text2": "自動熄機",
- "desc": "自動熄機前嘅閒置等候時間 <M=分鐘>"
+ "desc": "自動熄機前嘅閒置等候時間 <m=分鐘>"
},
"MotionSensitivity": {
"text2": "動作敏感度",
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_ZH_CN.json b/Translations/translation_ZH_CN.json
index 3d4edc2c..2b378f17 100644
--- a/Translations/translation_ZH_CN.json
+++ b/Translations/translation_ZH_CN.json
@@ -77,11 +77,11 @@
},
"SleepTimeout": {
"text2": "待机超时",
- "desc": "自动进入待机模式前的等候时间 <S=秒 | M=分钟>"
+ "desc": "自动进入待机模式前的等候时间 <s=秒 | m=分钟>"
},
"ShutdownTimeout": {
"text2": "自动关机",
- "desc": "自动关机前的等候时间 <M=分钟>"
+ "desc": "自动关机前的等候时间 <m=分钟>"
},
"MotionSensitivity": {
"text2": "动作灵敏度",
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}
diff --git a/Translations/translation_ZH_TW.json b/Translations/translation_ZH_TW.json
index 167d89df..20219857 100644
--- a/Translations/translation_ZH_TW.json
+++ b/Translations/translation_ZH_TW.json
@@ -77,11 +77,11 @@
},
"SleepTimeout": {
"text2": "待機延時",
- "desc": "自動進入待機模式前的閒置等候時間 <S=秒 | M=分鐘>"
+ "desc": "自動進入待機模式前的閒置等候時間 <s=秒 | m=分鐘>"
},
"ShutdownTimeout": {
"text2": "自動關機",
- "desc": "自動關機前的閒置等候時間 <M=分鐘>"
+ "desc": "自動關機前的閒置等候時間 <m=分鐘>"
},
"MotionSensitivity": {
"text2": "動作敏感度",
@@ -201,7 +201,7 @@
},
"LOGOTime": {
"text2": ["Boot logo", "duration"],
- "desc": "Sets the duration for the boot logo (S=seconds)"
+ "desc": "Sets the duration for the boot logo (s=seconds)"
}
}
}