@ledvance/base 1.2.30 → 1.2.31
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/package.json +1 -1
- package/src/components/DrawToolView.tsx +1 -1
- package/src/i18n/strings.ts +262 -30
package/package.json
CHANGED
|
@@ -62,7 +62,7 @@ interface DrawToolViewProps extends PropsWithChildren<ViewProps> {
|
|
|
62
62
|
|
|
63
63
|
const DrawToolView = (props: DrawToolViewProps) => {
|
|
64
64
|
const state = useReactive({
|
|
65
|
-
visible: props.ledNumModalVisible,
|
|
65
|
+
visible: props.ledNumModalVisible || false,
|
|
66
66
|
ledNum: props.ledNum || 5,
|
|
67
67
|
width: 0,
|
|
68
68
|
})
|
package/src/i18n/strings.ts
CHANGED
|
@@ -586,7 +586,15 @@ export default {
|
|
|
586
586
|
month_short_may: "Mayo",
|
|
587
587
|
month_short_november: "Nov.",
|
|
588
588
|
month_short_october: "Oct.",
|
|
589
|
-
month_short_september: "Sep."
|
|
589
|
+
month_short_september: "Sep.",
|
|
590
|
+
consumption_data_annual_bar_chart_text: "Unidad: kWh",
|
|
591
|
+
flag_addanewflag: "Add a new flag",
|
|
592
|
+
flag_edittheflag: "Edit the flag",
|
|
593
|
+
flag_deleteflag: "Delete flag",
|
|
594
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
595
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
596
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
597
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
590
598
|
},
|
|
591
599
|
ar: {
|
|
592
600
|
add_new_dynamic_mood_color_changing_mode_value: "التدرج",
|
|
@@ -1175,7 +1183,15 @@ export default {
|
|
|
1175
1183
|
month_short_may: "مايو",
|
|
1176
1184
|
month_short_november: "نوفمبر",
|
|
1177
1185
|
month_short_october: "أكتوبر",
|
|
1178
|
-
month_short_september: "سبتمبر"
|
|
1186
|
+
month_short_september: "سبتمبر",
|
|
1187
|
+
consumption_data_annual_bar_chart_text: "الوحدة: كيلووات ساعة",
|
|
1188
|
+
flag_addanewflag: "Add a new flag",
|
|
1189
|
+
flag_edittheflag: "Edit the flag",
|
|
1190
|
+
flag_deleteflag: "Delete flag",
|
|
1191
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
1192
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
1193
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
1194
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
1179
1195
|
},
|
|
1180
1196
|
cs: {
|
|
1181
1197
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
@@ -1764,7 +1780,15 @@ export default {
|
|
|
1764
1780
|
month_short_may: "Květen",
|
|
1765
1781
|
month_short_november: "Lis",
|
|
1766
1782
|
month_short_october: "Říj",
|
|
1767
|
-
month_short_september: "Zář"
|
|
1783
|
+
month_short_september: "Zář",
|
|
1784
|
+
consumption_data_annual_bar_chart_text: "Jednotka: kWh",
|
|
1785
|
+
flag_addanewflag: "Add a new flag",
|
|
1786
|
+
flag_edittheflag: "Edit the flag",
|
|
1787
|
+
flag_deleteflag: "Delete flag",
|
|
1788
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
1789
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
1790
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
1791
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
1768
1792
|
},
|
|
1769
1793
|
en: {
|
|
1770
1794
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
@@ -2353,7 +2377,15 @@ export default {
|
|
|
2353
2377
|
month_short_may: "May",
|
|
2354
2378
|
month_short_november: "Nov",
|
|
2355
2379
|
month_short_october: "Oct",
|
|
2356
|
-
month_short_september: "Sep"
|
|
2380
|
+
month_short_september: "Sep",
|
|
2381
|
+
consumption_data_annual_bar_chart_text: "Unit: kWh",
|
|
2382
|
+
flag_addanewflag: "Add a new flag",
|
|
2383
|
+
flag_edittheflag: "Edit the flag",
|
|
2384
|
+
flag_deleteflag: "Delete flag",
|
|
2385
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
2386
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
2387
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
2388
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
2357
2389
|
},
|
|
2358
2390
|
bg: {
|
|
2359
2391
|
add_new_dynamic_mood_color_changing_mode_value: "Градиент",
|
|
@@ -2942,7 +2974,15 @@ export default {
|
|
|
2942
2974
|
month_short_may: "Май",
|
|
2943
2975
|
month_short_november: "Ное",
|
|
2944
2976
|
month_short_october: "Окт",
|
|
2945
|
-
month_short_september: "Сеп"
|
|
2977
|
+
month_short_september: "Сеп",
|
|
2978
|
+
consumption_data_annual_bar_chart_text: "Единица: kWh",
|
|
2979
|
+
flag_addanewflag: "Add a new flag",
|
|
2980
|
+
flag_edittheflag: "Edit the flag",
|
|
2981
|
+
flag_deleteflag: "Delete flag",
|
|
2982
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
2983
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
2984
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
2985
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
2946
2986
|
},
|
|
2947
2987
|
da: {
|
|
2948
2988
|
add_new_dynamic_mood_color_changing_mode_value: "Gradvist",
|
|
@@ -3531,7 +3571,15 @@ export default {
|
|
|
3531
3571
|
month_short_may: "Maj",
|
|
3532
3572
|
month_short_november: "Nov.",
|
|
3533
3573
|
month_short_october: "Okt.",
|
|
3534
|
-
month_short_september: "Sep."
|
|
3574
|
+
month_short_september: "Sep.",
|
|
3575
|
+
consumption_data_annual_bar_chart_text: "Enhed: kWh",
|
|
3576
|
+
flag_addanewflag: "Add a new flag",
|
|
3577
|
+
flag_edittheflag: "Edit the flag",
|
|
3578
|
+
flag_deleteflag: "Delete flag",
|
|
3579
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
3580
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
3581
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
3582
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
3535
3583
|
},
|
|
3536
3584
|
de: {
|
|
3537
3585
|
add_new_dynamic_mood_color_changing_mode_value: "Fließend",
|
|
@@ -4120,7 +4168,15 @@ export default {
|
|
|
4120
4168
|
month_short_may: "Mai",
|
|
4121
4169
|
month_short_november: "Nov",
|
|
4122
4170
|
month_short_october: "Okt",
|
|
4123
|
-
month_short_september: "Sep"
|
|
4171
|
+
month_short_september: "Sep",
|
|
4172
|
+
consumption_data_annual_bar_chart_text: "Einheit: kWh",
|
|
4173
|
+
flag_addanewflag: "Add a new flag",
|
|
4174
|
+
flag_edittheflag: "Edit the flag",
|
|
4175
|
+
flag_deleteflag: "Delete flag",
|
|
4176
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
4177
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
4178
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
4179
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
4124
4180
|
},
|
|
4125
4181
|
el: {
|
|
4126
4182
|
add_new_dynamic_mood_color_changing_mode_value: "Διαβάθμιση",
|
|
@@ -4709,7 +4765,15 @@ export default {
|
|
|
4709
4765
|
month_short_may: "Μάιος",
|
|
4710
4766
|
month_short_november: "Νοέ",
|
|
4711
4767
|
month_short_october: "Οκτ.",
|
|
4712
|
-
month_short_september: "Σεπ"
|
|
4768
|
+
month_short_september: "Σεπ",
|
|
4769
|
+
consumption_data_annual_bar_chart_text: "Μονάδα: kWh",
|
|
4770
|
+
flag_addanewflag: "Add a new flag",
|
|
4771
|
+
flag_edittheflag: "Edit the flag",
|
|
4772
|
+
flag_deleteflag: "Delete flag",
|
|
4773
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
4774
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
4775
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
4776
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
4713
4777
|
},
|
|
4714
4778
|
es: {
|
|
4715
4779
|
add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
|
|
@@ -5298,7 +5362,15 @@ export default {
|
|
|
5298
5362
|
month_short_may: "Mayo",
|
|
5299
5363
|
month_short_november: "Nov.",
|
|
5300
5364
|
month_short_october: "Oct.",
|
|
5301
|
-
month_short_september: "Sep."
|
|
5365
|
+
month_short_september: "Sep.",
|
|
5366
|
+
consumption_data_annual_bar_chart_text: "Unidad: kWh",
|
|
5367
|
+
flag_addanewflag: "Add a new flag",
|
|
5368
|
+
flag_edittheflag: "Edit the flag",
|
|
5369
|
+
flag_deleteflag: "Delete flag",
|
|
5370
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
5371
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
5372
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
5373
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
5302
5374
|
},
|
|
5303
5375
|
et: {
|
|
5304
5376
|
add_new_dynamic_mood_color_changing_mode_value: "Muutmisaste",
|
|
@@ -5887,7 +5959,15 @@ export default {
|
|
|
5887
5959
|
month_short_may: "Mai",
|
|
5888
5960
|
month_short_november: "Nov",
|
|
5889
5961
|
month_short_october: "Okt",
|
|
5890
|
-
month_short_september: "Sept"
|
|
5962
|
+
month_short_september: "Sept",
|
|
5963
|
+
consumption_data_annual_bar_chart_text: "Ühik: kWh",
|
|
5964
|
+
flag_addanewflag: "Add a new flag",
|
|
5965
|
+
flag_edittheflag: "Edit the flag",
|
|
5966
|
+
flag_deleteflag: "Delete flag",
|
|
5967
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
5968
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
5969
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
5970
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
5891
5971
|
},
|
|
5892
5972
|
fi: {
|
|
5893
5973
|
add_new_dynamic_mood_color_changing_mode_value: "Liukuva",
|
|
@@ -6476,7 +6556,15 @@ export default {
|
|
|
6476
6556
|
month_short_may: "Toukokuu",
|
|
6477
6557
|
month_short_november: "Marras",
|
|
6478
6558
|
month_short_october: "Loka",
|
|
6479
|
-
month_short_september: "Syys"
|
|
6559
|
+
month_short_september: "Syys",
|
|
6560
|
+
consumption_data_annual_bar_chart_text: "Yksikkö: kWh",
|
|
6561
|
+
flag_addanewflag: "Add a new flag",
|
|
6562
|
+
flag_edittheflag: "Edit the flag",
|
|
6563
|
+
flag_deleteflag: "Delete flag",
|
|
6564
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
6565
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
6566
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
6567
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
6480
6568
|
},
|
|
6481
6569
|
fr: {
|
|
6482
6570
|
add_new_dynamic_mood_color_changing_mode_value: "Fluide",
|
|
@@ -7065,7 +7153,15 @@ export default {
|
|
|
7065
7153
|
month_short_may: "Mai",
|
|
7066
7154
|
month_short_november: "Nov",
|
|
7067
7155
|
month_short_october: "Oct",
|
|
7068
|
-
month_short_september: "Sep"
|
|
7156
|
+
month_short_september: "Sep",
|
|
7157
|
+
consumption_data_annual_bar_chart_text: "Unité : kW/h",
|
|
7158
|
+
flag_addanewflag: "Add a new flag",
|
|
7159
|
+
flag_edittheflag: "Edit the flag",
|
|
7160
|
+
flag_deleteflag: "Delete flag",
|
|
7161
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
7162
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
7163
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
7164
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
7069
7165
|
},
|
|
7070
7166
|
hr: {
|
|
7071
7167
|
add_new_dynamic_mood_color_changing_mode_value: "Prijelaz",
|
|
@@ -7654,7 +7750,15 @@ export default {
|
|
|
7654
7750
|
month_short_may: "Svibanj",
|
|
7655
7751
|
month_short_november: "Stu",
|
|
7656
7752
|
month_short_october: "Lis",
|
|
7657
|
-
month_short_september: "Ruj"
|
|
7753
|
+
month_short_september: "Ruj",
|
|
7754
|
+
consumption_data_annual_bar_chart_text: "Jedinica: kWh",
|
|
7755
|
+
flag_addanewflag: "Add a new flag",
|
|
7756
|
+
flag_edittheflag: "Edit the flag",
|
|
7757
|
+
flag_deleteflag: "Delete flag",
|
|
7758
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
7759
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
7760
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
7761
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
7658
7762
|
},
|
|
7659
7763
|
hu: {
|
|
7660
7764
|
add_new_dynamic_mood_color_changing_mode_value: "Átmenet",
|
|
@@ -8243,7 +8347,15 @@ export default {
|
|
|
8243
8347
|
month_short_may: "Május",
|
|
8244
8348
|
month_short_november: "Nov.",
|
|
8245
8349
|
month_short_october: "Okt.",
|
|
8246
|
-
month_short_september: "Szept."
|
|
8350
|
+
month_short_september: "Szept.",
|
|
8351
|
+
consumption_data_annual_bar_chart_text: "Egység: kWh",
|
|
8352
|
+
flag_addanewflag: "Add a new flag",
|
|
8353
|
+
flag_edittheflag: "Edit the flag",
|
|
8354
|
+
flag_deleteflag: "Delete flag",
|
|
8355
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
8356
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
8357
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
8358
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
8247
8359
|
},
|
|
8248
8360
|
it: {
|
|
8249
8361
|
add_new_dynamic_mood_color_changing_mode_value: "Fluido",
|
|
@@ -8832,7 +8944,15 @@ export default {
|
|
|
8832
8944
|
month_short_may: "Maggio",
|
|
8833
8945
|
month_short_november: "Nov",
|
|
8834
8946
|
month_short_october: "Ott",
|
|
8835
|
-
month_short_september: "Set"
|
|
8947
|
+
month_short_september: "Set",
|
|
8948
|
+
consumption_data_annual_bar_chart_text: "Unità: kWh",
|
|
8949
|
+
flag_addanewflag: "Add a new flag",
|
|
8950
|
+
flag_edittheflag: "Edit the flag",
|
|
8951
|
+
flag_deleteflag: "Delete flag",
|
|
8952
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
8953
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
8954
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
8955
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
8836
8956
|
},
|
|
8837
8957
|
ko: {
|
|
8838
8958
|
add_new_dynamic_mood_color_changing_mode_value: "그래디언트",
|
|
@@ -9421,7 +9541,15 @@ export default {
|
|
|
9421
9541
|
month_short_may: "5월",
|
|
9422
9542
|
month_short_november: "11월",
|
|
9423
9543
|
month_short_october: "10월",
|
|
9424
|
-
month_short_september: "9월"
|
|
9544
|
+
month_short_september: "9월",
|
|
9545
|
+
consumption_data_annual_bar_chart_text: "단위: kWh",
|
|
9546
|
+
flag_addanewflag: "Add a new flag",
|
|
9547
|
+
flag_edittheflag: "Edit the flag",
|
|
9548
|
+
flag_deleteflag: "Delete flag",
|
|
9549
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
9550
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
9551
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
9552
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
9425
9553
|
},
|
|
9426
9554
|
lt: {
|
|
9427
9555
|
add_new_dynamic_mood_color_changing_mode_value: "Gradientas",
|
|
@@ -10010,7 +10138,15 @@ export default {
|
|
|
10010
10138
|
month_short_may: "Gegužė",
|
|
10011
10139
|
month_short_november: "Lap",
|
|
10012
10140
|
month_short_october: "Spa",
|
|
10013
|
-
month_short_september: "Rgs"
|
|
10141
|
+
month_short_september: "Rgs",
|
|
10142
|
+
consumption_data_annual_bar_chart_text: "Vienetas: kWh",
|
|
10143
|
+
flag_addanewflag: "Add a new flag",
|
|
10144
|
+
flag_edittheflag: "Edit the flag",
|
|
10145
|
+
flag_deleteflag: "Delete flag",
|
|
10146
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
10147
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
10148
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
10149
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
10014
10150
|
},
|
|
10015
10151
|
lv: {
|
|
10016
10152
|
add_new_dynamic_mood_color_changing_mode_value: "Gradients",
|
|
@@ -10599,7 +10735,15 @@ export default {
|
|
|
10599
10735
|
month_short_may: "Maijs",
|
|
10600
10736
|
month_short_november: "Nov.",
|
|
10601
10737
|
month_short_october: "Okt.",
|
|
10602
|
-
month_short_september: "Sept."
|
|
10738
|
+
month_short_september: "Sept.",
|
|
10739
|
+
consumption_data_annual_bar_chart_text: "Mērvienība: kWh",
|
|
10740
|
+
flag_addanewflag: "Add a new flag",
|
|
10741
|
+
flag_edittheflag: "Edit the flag",
|
|
10742
|
+
flag_deleteflag: "Delete flag",
|
|
10743
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
10744
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
10745
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
10746
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
10603
10747
|
},
|
|
10604
10748
|
nb: {
|
|
10605
10749
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
@@ -11188,7 +11332,15 @@ export default {
|
|
|
11188
11332
|
month_short_may: "Mai",
|
|
11189
11333
|
month_short_november: "Nov",
|
|
11190
11334
|
month_short_october: "Okt",
|
|
11191
|
-
month_short_september: "Sep"
|
|
11335
|
+
month_short_september: "Sep",
|
|
11336
|
+
consumption_data_annual_bar_chart_text: "Enhet: kWh",
|
|
11337
|
+
flag_addanewflag: "Add a new flag",
|
|
11338
|
+
flag_edittheflag: "Edit the flag",
|
|
11339
|
+
flag_deleteflag: "Delete flag",
|
|
11340
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
11341
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
11342
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
11343
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
11192
11344
|
},
|
|
11193
11345
|
nl: {
|
|
11194
11346
|
add_new_dynamic_mood_color_changing_mode_value: "Verloop",
|
|
@@ -11777,7 +11929,15 @@ export default {
|
|
|
11777
11929
|
month_short_may: "Mei",
|
|
11778
11930
|
month_short_november: "Nov",
|
|
11779
11931
|
month_short_october: "Okt",
|
|
11780
|
-
month_short_september: "Sep"
|
|
11932
|
+
month_short_september: "Sep",
|
|
11933
|
+
consumption_data_annual_bar_chart_text: "Eenheid: kWh",
|
|
11934
|
+
flag_addanewflag: "Add a new flag",
|
|
11935
|
+
flag_edittheflag: "Edit the flag",
|
|
11936
|
+
flag_deleteflag: "Delete flag",
|
|
11937
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
11938
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
11939
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
11940
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
11781
11941
|
},
|
|
11782
11942
|
pl: {
|
|
11783
11943
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
@@ -12366,7 +12526,15 @@ export default {
|
|
|
12366
12526
|
month_short_may: "Maj",
|
|
12367
12527
|
month_short_november: "Lis",
|
|
12368
12528
|
month_short_october: "Paź",
|
|
12369
|
-
month_short_september: "Wrz"
|
|
12529
|
+
month_short_september: "Wrz",
|
|
12530
|
+
consumption_data_annual_bar_chart_text: "Jednostka: kWh",
|
|
12531
|
+
flag_addanewflag: "Add a new flag",
|
|
12532
|
+
flag_edittheflag: "Edit the flag",
|
|
12533
|
+
flag_deleteflag: "Delete flag",
|
|
12534
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
12535
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
12536
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
12537
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
12370
12538
|
},
|
|
12371
12539
|
'pt-BR': {
|
|
12372
12540
|
add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
|
|
@@ -12955,7 +13123,15 @@ export default {
|
|
|
12955
13123
|
month_short_may: "Maio",
|
|
12956
13124
|
month_short_november: "Nov",
|
|
12957
13125
|
month_short_october: "Out",
|
|
12958
|
-
month_short_september: "Set"
|
|
13126
|
+
month_short_september: "Set",
|
|
13127
|
+
consumption_data_annual_bar_chart_text: "Unidade: kWh",
|
|
13128
|
+
flag_addanewflag: "Add a new flag",
|
|
13129
|
+
flag_edittheflag: "Edit the flag",
|
|
13130
|
+
flag_deleteflag: "Delete flag",
|
|
13131
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
13132
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
13133
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
13134
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
12959
13135
|
},
|
|
12960
13136
|
'pt_BR': {
|
|
12961
13137
|
add_new_dynamic_mood_color_changing_mode_value: "Gradiente",
|
|
@@ -13544,8 +13720,16 @@ export default {
|
|
|
13544
13720
|
month_short_may: "Maio",
|
|
13545
13721
|
month_short_november: "Nov",
|
|
13546
13722
|
month_short_october: "Out",
|
|
13547
|
-
month_short_september: "Set"
|
|
13548
|
-
|
|
13723
|
+
month_short_september: "Set",
|
|
13724
|
+
consumption_data_annual_bar_chart_text: "Unidade: kWh",
|
|
13725
|
+
flag_addanewflag: "Add a new flag",
|
|
13726
|
+
flag_edittheflag: "Edit the flag",
|
|
13727
|
+
flag_deleteflag: "Delete flag",
|
|
13728
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
13729
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
13730
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
13731
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
13732
|
+
},
|
|
13549
13733
|
ro: {
|
|
13550
13734
|
add_new_dynamic_mood_color_changing_mode_value: "Gradient",
|
|
13551
13735
|
power_off_memory_default_state_title: "Starea implicită",
|
|
@@ -14133,7 +14317,15 @@ export default {
|
|
|
14133
14317
|
month_short_may: "Mai",
|
|
14134
14318
|
month_short_november: "Noi.",
|
|
14135
14319
|
month_short_october: "Oct.",
|
|
14136
|
-
month_short_september: "Sep."
|
|
14320
|
+
month_short_september: "Sep.",
|
|
14321
|
+
consumption_data_annual_bar_chart_text: "Unitate: kWh",
|
|
14322
|
+
flag_addanewflag: "Add a new flag",
|
|
14323
|
+
flag_edittheflag: "Edit the flag",
|
|
14324
|
+
flag_deleteflag: "Delete flag",
|
|
14325
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
14326
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
14327
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
14328
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
14137
14329
|
},
|
|
14138
14330
|
ru: {
|
|
14139
14331
|
add_new_dynamic_mood_color_changing_mode_value: "Градиент",
|
|
@@ -14722,7 +14914,15 @@ export default {
|
|
|
14722
14914
|
month_short_may: "Май",
|
|
14723
14915
|
month_short_november: "Ноя",
|
|
14724
14916
|
month_short_october: "Окт",
|
|
14725
|
-
month_short_september: "Сен"
|
|
14917
|
+
month_short_september: "Сен",
|
|
14918
|
+
consumption_data_annual_bar_chart_text: "Единица измерения: кВтч",
|
|
14919
|
+
flag_addanewflag: "Add a new flag",
|
|
14920
|
+
flag_edittheflag: "Edit the flag",
|
|
14921
|
+
flag_deleteflag: "Delete flag",
|
|
14922
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
14923
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
14924
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
14925
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
14726
14926
|
},
|
|
14727
14927
|
sk: {
|
|
14728
14928
|
add_new_dynamic_mood_color_changing_mode_value: "Prechod",
|
|
@@ -15311,7 +15511,15 @@ export default {
|
|
|
15311
15511
|
month_short_may: "Máj",
|
|
15312
15512
|
month_short_november: "Nov.",
|
|
15313
15513
|
month_short_october: "Okt.",
|
|
15314
|
-
month_short_september: "Sep."
|
|
15514
|
+
month_short_september: "Sep.",
|
|
15515
|
+
consumption_data_annual_bar_chart_text: "Jednotka: kWh",
|
|
15516
|
+
flag_addanewflag: "Add a new flag",
|
|
15517
|
+
flag_edittheflag: "Edit the flag",
|
|
15518
|
+
flag_deleteflag: "Delete flag",
|
|
15519
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
15520
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
15521
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
15522
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
15315
15523
|
},
|
|
15316
15524
|
sv: {
|
|
15317
15525
|
add_new_dynamic_mood_color_changing_mode_value: "Toning",
|
|
@@ -15900,7 +16108,15 @@ export default {
|
|
|
15900
16108
|
month_short_may: "maj",
|
|
15901
16109
|
month_short_november: "Nov",
|
|
15902
16110
|
month_short_october: "Okt",
|
|
15903
|
-
month_short_september: "Sep"
|
|
16111
|
+
month_short_september: "Sep",
|
|
16112
|
+
consumption_data_annual_bar_chart_text: "Enhet: kWh",
|
|
16113
|
+
flag_addanewflag: "Add a new flag",
|
|
16114
|
+
flag_edittheflag: "Edit the flag",
|
|
16115
|
+
flag_deleteflag: "Delete flag",
|
|
16116
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
16117
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
16118
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
16119
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
15904
16120
|
},
|
|
15905
16121
|
tr: {
|
|
15906
16122
|
add_new_dynamic_mood_color_changing_mode_value: "Gradyan",
|
|
@@ -16489,7 +16705,15 @@ export default {
|
|
|
16489
16705
|
month_short_may: "Mayıs",
|
|
16490
16706
|
month_short_november: "Kas",
|
|
16491
16707
|
month_short_october: "Eki",
|
|
16492
|
-
month_short_september: "Eyl"
|
|
16708
|
+
month_short_september: "Eyl",
|
|
16709
|
+
consumption_data_annual_bar_chart_text: "Birim: kWh",
|
|
16710
|
+
flag_addanewflag: "Add a new flag",
|
|
16711
|
+
flag_edittheflag: "Edit the flag",
|
|
16712
|
+
flag_deleteflag: "Delete flag",
|
|
16713
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
16714
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
16715
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
16716
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
16493
16717
|
},
|
|
16494
16718
|
uk: {
|
|
16495
16719
|
add_new_dynamic_mood_color_changing_mode_value: "Градієнт",
|
|
@@ -17078,6 +17302,14 @@ export default {
|
|
|
17078
17302
|
month_short_may: "Травень",
|
|
17079
17303
|
month_short_november: "Лис",
|
|
17080
17304
|
month_short_october: "Жов",
|
|
17081
|
-
month_short_september: "Вер"
|
|
17305
|
+
month_short_september: "Вер",
|
|
17306
|
+
consumption_data_annual_bar_chart_text: "Одиниці: кВт/год",
|
|
17307
|
+
flag_addanewflag: "Add a new flag",
|
|
17308
|
+
flag_edittheflag: "Edit the flag",
|
|
17309
|
+
flag_deleteflag: "Delete flag",
|
|
17310
|
+
flag_deletepopup: "Do you really want to delete the flag?",
|
|
17311
|
+
flag_canceladding: "Do you really want to cancel adding a new flag?",
|
|
17312
|
+
flag_cancelinfo: "Note that your input will be lost if you cancel adding a new flag.",
|
|
17313
|
+
flag_canceledit: "Note that your changes will be lost if you leave edit the flag."
|
|
17082
17314
|
}
|
|
17083
17315
|
}
|