@ledvance/base 1.3.96 → 1.3.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/localazy.json +5 -1
- package/package.json +1 -1
- package/src/components/Cell.tsx +31 -9
- package/src/i18n/strings.ts +3688 -1050
- package/translateKey.txt +5 -1
- package/update-localazy.py +3 -0
package/translateKey.txt
CHANGED
|
@@ -1272,4 +1272,8 @@ siren_alarm_alarm
|
|
|
1272
1272
|
siren_alarm_open
|
|
1273
1273
|
siren_alarm_close
|
|
1274
1274
|
siren_muffling_on
|
|
1275
|
-
siren_muffling_off
|
|
1275
|
+
siren_muffling_off
|
|
1276
|
+
contact_sensor_battery
|
|
1277
|
+
siren_settings_antidismantle
|
|
1278
|
+
motion_detection_no_safe_mode_subheadline_text
|
|
1279
|
+
app_navigation_bottom_msg
|
package/update-localazy.py
CHANGED
|
@@ -38,6 +38,9 @@ def main():
|
|
|
38
38
|
pt = string_json.get('pt-BR')
|
|
39
39
|
if pt:
|
|
40
40
|
string_json['pt_BR'] = pt
|
|
41
|
+
zh = string_json.get('zh-CN-Hans')
|
|
42
|
+
if zh:
|
|
43
|
+
string_json['zh'] = zh
|
|
41
44
|
f.write(f'export default {json.dumps(string_json, indent=4, ensure_ascii=False)}')
|
|
42
45
|
|
|
43
46
|
os.remove('strings.json')
|