@ledvance/base 1.3.9 → 1.3.10
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 +4 -1
- package/localazy.keys.json +4 -3
- package/package.json +1 -1
- package/src/components/AdvanceList.tsx +3 -3
- package/src/components/ApplyForDeviceItem.tsx +17 -3
- package/src/components/BatteryStateView.tsx +3 -3
- package/src/components/Stepper.tsx +1 -1
- package/src/components/ldvSwitch.tsx +2 -2
- package/src/components/ldvTopName.tsx +1 -1
- package/src/i18n/strings.ts +157 -70
- package/translateKey.txt +3 -0
package/localazy.json
CHANGED
|
@@ -900,7 +900,10 @@
|
|
|
900
900
|
"MATCH:thermostat_maxtime",
|
|
901
901
|
"MATCH:thermostat_schedule",
|
|
902
902
|
"MATCH:thermostat_unit",
|
|
903
|
-
"MATCH:thermostat_comforttemp"
|
|
903
|
+
"MATCH:thermostat_comforttemp",
|
|
904
|
+
"MATCH:mood_resetbutton",
|
|
905
|
+
"MATCH:reset_mooddescription",
|
|
906
|
+
"MATCH:settings_wateralarmrecovery"
|
|
904
907
|
],
|
|
905
908
|
"replacements": {
|
|
906
909
|
"REGEX:% %1\\$s.*?\\)%": "{0}",
|
package/localazy.keys.json
CHANGED
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ import AdvanceCard, { AdvancedData } from './AdvanceCard'
|
|
|
4
4
|
import Spacer from './Spacer'
|
|
5
5
|
import { useNavigation } from '@react-navigation/core'
|
|
6
6
|
import { Utils } from 'tuya-panel-kit'
|
|
7
|
-
import { getMicrophoneAccess } from '
|
|
7
|
+
import { getMicrophoneAccess } from '../api/native'
|
|
8
8
|
|
|
9
9
|
const { convertX: cx } = Utils.RatioUtils
|
|
10
10
|
|
|
@@ -27,7 +27,7 @@ function AdvanceList(props: AdvanceListProps) {
|
|
|
27
27
|
onPress={async () => {
|
|
28
28
|
if(MusicRouterKey.includes(item.router.key)){
|
|
29
29
|
getMicrophoneAccess().then(res =>{
|
|
30
|
-
if(!res) return
|
|
30
|
+
if(!res) return
|
|
31
31
|
navigation.navigate(item.router.key, item.router.params)
|
|
32
32
|
})
|
|
33
33
|
}else{
|
|
@@ -77,4 +77,4 @@ const styles = StyleSheet.create({
|
|
|
77
77
|
},
|
|
78
78
|
})
|
|
79
79
|
|
|
80
|
-
export default React.memo(AdvanceList)
|
|
80
|
+
export default React.memo(AdvanceList)
|
|
@@ -5,6 +5,9 @@ import { DeviceInfo } from '../api/native'
|
|
|
5
5
|
import Spacer from './Spacer'
|
|
6
6
|
import res from '../res'
|
|
7
7
|
import ThemeType from '../config/themeType'
|
|
8
|
+
import { getGlobalParamsDp } from '../utils/common'
|
|
9
|
+
import I18n from '../i18n'
|
|
10
|
+
import { isNumber } from 'lodash'
|
|
8
11
|
|
|
9
12
|
const cx = Utils.RatioUtils.convertX
|
|
10
13
|
const { withTheme } = Utils.ThemeUtils
|
|
@@ -15,6 +18,9 @@ export interface ApplyForDeviceItemProps {
|
|
|
15
18
|
}
|
|
16
19
|
|
|
17
20
|
const ApplyForDeviceItem = (props: ApplyForDeviceItemProps) => {
|
|
21
|
+
const { dps } = props.deviceInfo
|
|
22
|
+
const curPowerDp = getGlobalParamsDp('cur_power')
|
|
23
|
+
const curPower = dps && JSON.parse(dps) && JSON.parse(dps)[curPowerDp]
|
|
18
24
|
|
|
19
25
|
const styles = StyleSheet.create({
|
|
20
26
|
root: {
|
|
@@ -59,8 +65,12 @@ const ApplyForDeviceItem = (props: ApplyForDeviceItemProps) => {
|
|
|
59
65
|
fontFamily: 'helvetica_neue_lt_std_roman',
|
|
60
66
|
},
|
|
61
67
|
offlineIcon: {
|
|
62
|
-
|
|
63
|
-
|
|
68
|
+
minWidth: cx(24),
|
|
69
|
+
minHeight: cx(24)
|
|
70
|
+
},
|
|
71
|
+
onlineText: {
|
|
72
|
+
color: props.theme?.global.fontColor,
|
|
73
|
+
fontSize: cx(14),
|
|
64
74
|
}
|
|
65
75
|
})
|
|
66
76
|
|
|
@@ -78,8 +88,12 @@ const ApplyForDeviceItem = (props: ApplyForDeviceItemProps) => {
|
|
|
78
88
|
</View>
|
|
79
89
|
<Spacer height={cx(6)} />
|
|
80
90
|
</View>
|
|
81
|
-
<View style={[styles.offlineIcon, {
|
|
91
|
+
<View style={[styles.offlineIcon, {marginHorizontal: cx(5)}]}>
|
|
82
92
|
{!props.deviceInfo.status && <Image style={styles.offlineIcon} source={res.offline_wifi} />}
|
|
93
|
+
{!!props.deviceInfo.status && isNumber(curPower) && <View style={{alignItems: 'flex-end'}}>
|
|
94
|
+
<Text style={styles.onlineText}>{`${curPower / 10} W`}</Text>
|
|
95
|
+
<Text style={[styles.onlineText, {fontSize: cx(12),marginTop: cx(5)}]}>{I18n.getLang('consumption_data_field1_headline_text')}</Text>
|
|
96
|
+
</View>}
|
|
83
97
|
</View>
|
|
84
98
|
</View>
|
|
85
99
|
)
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import Card from '
|
|
2
|
+
import Card from './Card';
|
|
3
3
|
import { Battery, Utils } from 'tuya-panel-kit';
|
|
4
4
|
import { View, Text, StyleSheet } from 'react-native';
|
|
5
|
-
import I18n from '
|
|
6
|
-
import Spacer from '
|
|
5
|
+
import I18n from '../i18n';
|
|
6
|
+
import Spacer from './Spacer';
|
|
7
7
|
|
|
8
8
|
const cx = Utils.RatioUtils.convertX;
|
|
9
9
|
type BatteryProps = {
|
|
@@ -9,7 +9,7 @@ const { withTheme } = Utils.ThemeUtils
|
|
|
9
9
|
interface Prop {
|
|
10
10
|
theme?: ThemeType
|
|
11
11
|
title: string
|
|
12
|
-
color
|
|
12
|
+
color?: string
|
|
13
13
|
colorAlpha: number
|
|
14
14
|
enable: boolean
|
|
15
15
|
setEnable: (enable: boolean) => void
|
|
@@ -24,7 +24,7 @@ const LdvSwitch = (props: Prop) => {
|
|
|
24
24
|
<View style={{flexDirection: 'column', flex: 1}}>
|
|
25
25
|
<View style={{flexDirection: 'row', alignItems: 'center'}}>
|
|
26
26
|
<Text style={{...styles.title, color: props.theme?.global.fontColor}}>{title}</Text>
|
|
27
|
-
<View style={[styles.colorBlock, {backgroundColor: color, opacity: colorAlpha}]}/>
|
|
27
|
+
<View style={[styles.colorBlock, {backgroundColor: color || props.theme?.card.background, opacity: colorAlpha}]}/>
|
|
28
28
|
</View>
|
|
29
29
|
{description && <Text style={{color: props.theme?.global.fontColor}}>{description}</Text>}
|
|
30
30
|
</View>
|
package/src/i18n/strings.ts
CHANGED
|
@@ -607,6 +607,7 @@ export default {
|
|
|
607
607
|
"mood_overview_information_text": "Los estados de ánimo estáticos se almacenan localmente en tu smartphone. Por lo tanto, no se pueden compartir con otros usuarios.",
|
|
608
608
|
"mood_overview_warning_max_number_text": "Se ha alcanzado el número máximo de estados de ánimo.",
|
|
609
609
|
"mood_preview": "Vista previa",
|
|
610
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
610
611
|
"motion_detection_add_time_schedule_actions_text1": "Acciones",
|
|
611
612
|
"motion_detection_add_time_schedule_headline_text": "Añadir un nuevo horario",
|
|
612
613
|
"motion_detection_add_time_schedule_selectionfield_text": "Nombre",
|
|
@@ -680,6 +681,7 @@ export default {
|
|
|
680
681
|
"recordings_sd_storage_headline_text": "Almacenamiento de la tarjeta SD",
|
|
681
682
|
"registration_dialog_button_no": "No",
|
|
682
683
|
"registration_dialog_button_yes": "Sí",
|
|
684
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
683
685
|
"routines_add_edit_name": "Editar nombre",
|
|
684
686
|
"sensor_deviceselftest": "Autocomprobación realizada con éxito. Su sensor funciona correctamente.",
|
|
685
687
|
"sensor_deviceselftestfail": "Fallo en la autocomprobación. El sensor no funciona correctamente. Por favor compruébelo.",
|
|
@@ -689,6 +691,7 @@ export default {
|
|
|
689
691
|
"settings_leakagealarm": "Alarma de fuga de agua",
|
|
690
692
|
"settings_smokealarm": "Alarma de humo",
|
|
691
693
|
"settings_smokealarmrecovery": "Recuperación de detectores de humo",
|
|
694
|
+
"settings_wateralarmrecovery": "Recuperación de alarmas de agua",
|
|
692
695
|
"sleepwakeschedule_add_button_text1": "Añadir horario de sueño",
|
|
693
696
|
"sleepwakeschedule_add_button_text2": "Añadir horario de despertador",
|
|
694
697
|
"sleepwakeschedule_empty_filtering_information_text": "No hay horarios para este filtrado.",
|
|
@@ -1490,6 +1493,7 @@ export default {
|
|
|
1490
1493
|
"mood_overview_information_text": "يتم تخزين الحالة المزاجية الثابتة محليًا على هاتفك الذكي. لذلك لا يمكن مشاركتها مع مستخدمين آخرين.",
|
|
1491
1494
|
"mood_overview_warning_max_number_text": "تم الوصول إلى الحد الأقصى لعدد الحالات المزاجية.",
|
|
1492
1495
|
"mood_preview": "استطلاع",
|
|
1496
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
1493
1497
|
"motion_detection_add_time_schedule_actions_text1": "الإجراءات",
|
|
1494
1498
|
"motion_detection_add_time_schedule_headline_text": "إضافة جدول جديد",
|
|
1495
1499
|
"motion_detection_add_time_schedule_selectionfield_text": "الاسم",
|
|
@@ -1563,6 +1567,7 @@ export default {
|
|
|
1563
1567
|
"recordings_sd_storage_headline_text": "وحدة تخزين بطاقة SD",
|
|
1564
1568
|
"registration_dialog_button_no": "لا",
|
|
1565
1569
|
"registration_dialog_button_yes": "نعم",
|
|
1570
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
1566
1571
|
"routines_add_edit_name": "تعديل الاسم",
|
|
1567
1572
|
"sensor_deviceselftest": "تم التحقق الذاتي بنجاح. جهاز الاستشعار الخاص بك يعمل بشكل جيد.",
|
|
1568
1573
|
"sensor_deviceselftestfail": "فشل الفحص الذاتي. جهاز الاستشعار الخاص بك لا يعمل بشكل صحيح. يرجى التحقق.",
|
|
@@ -1572,6 +1577,7 @@ export default {
|
|
|
1572
1577
|
"settings_leakagealarm": "إنذار تسرب المياه",
|
|
1573
1578
|
"settings_smokealarm": "جهاز إنذار الدخان",
|
|
1574
1579
|
"settings_smokealarmrecovery": "استعادة إنذار الدخان",
|
|
1580
|
+
"settings_wateralarmrecovery": "استعادة إنذار المياه",
|
|
1575
1581
|
"sleepwakeschedule_add_button_text1": "إضافة جدول النوم",
|
|
1576
1582
|
"sleepwakeschedule_add_button_text2": "إضافة جدول الاستيقاظ",
|
|
1577
1583
|
"sleepwakeschedule_empty_filtering_information_text": "لا توجد جداول لهذه التصفية.",
|
|
@@ -2373,6 +2379,7 @@ export default {
|
|
|
2373
2379
|
"mood_overview_information_text": "Statické nálady jsou uloženy na vašem chytrém telefonu. Nelze je tedy sdílet s ostatními uživateli.",
|
|
2374
2380
|
"mood_overview_warning_max_number_text": "Bylo dosaženo maximálního počtu nálad.",
|
|
2375
2381
|
"mood_preview": "Náhled",
|
|
2382
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
2376
2383
|
"motion_detection_add_time_schedule_actions_text1": "Akce",
|
|
2377
2384
|
"motion_detection_add_time_schedule_headline_text": "Přidat nový rozvrh",
|
|
2378
2385
|
"motion_detection_add_time_schedule_selectionfield_text": "Název",
|
|
@@ -2446,6 +2453,7 @@ export default {
|
|
|
2446
2453
|
"recordings_sd_storage_headline_text": "Úložiště na SD kartě",
|
|
2447
2454
|
"registration_dialog_button_no": "Ne",
|
|
2448
2455
|
"registration_dialog_button_yes": "Ano",
|
|
2456
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
2449
2457
|
"routines_add_edit_name": "Upravit název",
|
|
2450
2458
|
"sensor_deviceselftest": "Autotest úspěšný. Váš senzor funguje dobře.",
|
|
2451
2459
|
"sensor_deviceselftestfail": "Autotest se nezdařil. Váš senzor nefunguje správně. Zkontrolujte prosím.",
|
|
@@ -2455,6 +2463,7 @@ export default {
|
|
|
2455
2463
|
"settings_leakagealarm": "Alarm úniku vody",
|
|
2456
2464
|
"settings_smokealarm": "Kouřový alarm",
|
|
2457
2465
|
"settings_smokealarmrecovery": "Obnova kouřového alarmu",
|
|
2466
|
+
"settings_wateralarmrecovery": "Obnova vodního alarmu",
|
|
2458
2467
|
"sleepwakeschedule_add_button_text1": "Přidat rozvrh spánku",
|
|
2459
2468
|
"sleepwakeschedule_add_button_text2": "Přidat rozvrh probuzení",
|
|
2460
2469
|
"sleepwakeschedule_empty_filtering_information_text": "Pro toto filtrování nejsou nastaveny žádné rozvrhy.",
|
|
@@ -3256,6 +3265,7 @@ export default {
|
|
|
3256
3265
|
"mood_overview_information_text": "The static moods are stored locally on your smartphone. Therefore they can’t be shared with other users.",
|
|
3257
3266
|
"mood_overview_warning_max_number_text": "Maximum number of moods has been reached.",
|
|
3258
3267
|
"mood_preview": "Preview",
|
|
3268
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
3259
3269
|
"motion_detection_add_time_schedule_actions_text1": "Actions",
|
|
3260
3270
|
"motion_detection_add_time_schedule_headline_text": "Add a new schedule",
|
|
3261
3271
|
"motion_detection_add_time_schedule_selectionfield_text": "Name",
|
|
@@ -3329,6 +3339,7 @@ export default {
|
|
|
3329
3339
|
"recordings_sd_storage_headline_text": "SD card storage",
|
|
3330
3340
|
"registration_dialog_button_no": "No",
|
|
3331
3341
|
"registration_dialog_button_yes": "Yes",
|
|
3342
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
3332
3343
|
"routines_add_edit_name": "Edit Name",
|
|
3333
3344
|
"sensor_deviceselftest": "Self check successful. Your sensor is working fine.",
|
|
3334
3345
|
"sensor_deviceselftestfail": "Self check failed. Your sensor is not working correctly. Please check.",
|
|
@@ -3338,6 +3349,7 @@ export default {
|
|
|
3338
3349
|
"settings_leakagealarm": "Water leakage alarm",
|
|
3339
3350
|
"settings_smokealarm": "Smoke alarm",
|
|
3340
3351
|
"settings_smokealarmrecovery": "Smoke alarm recovery",
|
|
3352
|
+
"settings_wateralarmrecovery": "Water alarm recovery",
|
|
3341
3353
|
"sleepwakeschedule_add_button_text1": "Add sleep schedule",
|
|
3342
3354
|
"sleepwakeschedule_add_button_text2": "Add wake up schedule",
|
|
3343
3355
|
"sleepwakeschedule_empty_filtering_information_text": "There are no schedules for this filtering.",
|
|
@@ -4139,6 +4151,7 @@ export default {
|
|
|
4139
4151
|
"mood_overview_information_text": "Статичните настроения се съхраняват локално в смартфона ви. Поради това те не могат да бъдат споделяни с други потребители.",
|
|
4140
4152
|
"mood_overview_warning_max_number_text": "Максимален брой настроения е достигнат.",
|
|
4141
4153
|
"mood_preview": "Визуализация",
|
|
4154
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
4142
4155
|
"motion_detection_add_time_schedule_actions_text1": "Действия",
|
|
4143
4156
|
"motion_detection_add_time_schedule_headline_text": "Добавяне на нов график",
|
|
4144
4157
|
"motion_detection_add_time_schedule_selectionfield_text": "Име",
|
|
@@ -4212,6 +4225,7 @@ export default {
|
|
|
4212
4225
|
"recordings_sd_storage_headline_text": "Съхранение на SD карта",
|
|
4213
4226
|
"registration_dialog_button_no": "Не",
|
|
4214
4227
|
"registration_dialog_button_yes": "Да",
|
|
4228
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
4215
4229
|
"routines_add_edit_name": "Редактиране на име",
|
|
4216
4230
|
"sensor_deviceselftest": "Самопроверката е успешна. Вашият сензор работи изправно.",
|
|
4217
4231
|
"sensor_deviceselftestfail": "Самопроверката е неуспешна. Вашият сензор не работи изправно. Моля, проверете.",
|
|
@@ -4221,6 +4235,7 @@ export default {
|
|
|
4221
4235
|
"settings_leakagealarm": "Аларма за изтичане на вода",
|
|
4222
4236
|
"settings_smokealarm": "Аларма за дим",
|
|
4223
4237
|
"settings_smokealarmrecovery": "Възстановяване на аларма за дим",
|
|
4238
|
+
"settings_wateralarmrecovery": "Възстановяване на водна аларма",
|
|
4224
4239
|
"sleepwakeschedule_add_button_text1": "Добавете график за сън",
|
|
4225
4240
|
"sleepwakeschedule_add_button_text2": "Добавете график за събуждане",
|
|
4226
4241
|
"sleepwakeschedule_empty_filtering_information_text": "Няма графици за това филтриране.",
|
|
@@ -5022,6 +5037,7 @@ export default {
|
|
|
5022
5037
|
"mood_overview_information_text": "De statiske scener gemmes lokalt på din smartphone. Derfor kan de ikke deles med andre brugere.",
|
|
5023
5038
|
"mood_overview_warning_max_number_text": "Der er ikke plads til flere scener.",
|
|
5024
5039
|
"mood_preview": "Forhåndsvisning",
|
|
5040
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
5025
5041
|
"motion_detection_add_time_schedule_actions_text1": "Handlinger",
|
|
5026
5042
|
"motion_detection_add_time_schedule_headline_text": "Tilføj en ny tidsplan",
|
|
5027
5043
|
"motion_detection_add_time_schedule_selectionfield_text": "Navn",
|
|
@@ -5095,6 +5111,7 @@ export default {
|
|
|
5095
5111
|
"recordings_sd_storage_headline_text": "SD-kort lagring",
|
|
5096
5112
|
"registration_dialog_button_no": "Nej",
|
|
5097
5113
|
"registration_dialog_button_yes": "Ja",
|
|
5114
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
5098
5115
|
"routines_add_edit_name": "Redigér navn",
|
|
5099
5116
|
"sensor_deviceselftest": "Selvkontrol vellykket. Din sensor fungerer fint.",
|
|
5100
5117
|
"sensor_deviceselftestfail": "Selvkontrol mislykkedes. Din sensor fungerer ikke korrekt. Tjek venligst.",
|
|
@@ -5104,6 +5121,7 @@ export default {
|
|
|
5104
5121
|
"settings_leakagealarm": "Alarm for vandlækage",
|
|
5105
5122
|
"settings_smokealarm": "Røgalarm",
|
|
5106
5123
|
"settings_smokealarmrecovery": "Gendannelse af røgalarm",
|
|
5124
|
+
"settings_wateralarmrecovery": "Gendannelse af vandalarm",
|
|
5107
5125
|
"sleepwakeschedule_add_button_text1": "Tilføj søvnrutine",
|
|
5108
5126
|
"sleepwakeschedule_add_button_text2": "Tilføj en tidsplan for 'vågn op'-rutine",
|
|
5109
5127
|
"sleepwakeschedule_empty_filtering_information_text": "Der er ingen tidsplaner for denne filtrering.",
|
|
@@ -5905,6 +5923,7 @@ export default {
|
|
|
5905
5923
|
"mood_overview_information_text": "Die statischen Stimmungen werden lokal auf Ihrem Smartphone gespeichert. Daher können diese nicht mit anderen Benutzern geteilt werden.",
|
|
5906
5924
|
"mood_overview_warning_max_number_text": "Die maximale Anzahl an Stimmungen wurde erreicht.",
|
|
5907
5925
|
"mood_preview": "Vorschau",
|
|
5926
|
+
"mood_resetbutton": "Willst du die Stimmungen zurücksetzen?",
|
|
5908
5927
|
"motion_detection_add_time_schedule_actions_text1": "Aktionen",
|
|
5909
5928
|
"motion_detection_add_time_schedule_headline_text": "Neuen Zeitplan hinzufügen",
|
|
5910
5929
|
"motion_detection_add_time_schedule_selectionfield_text": "Name",
|
|
@@ -5978,6 +5997,7 @@ export default {
|
|
|
5978
5997
|
"recordings_sd_storage_headline_text": "SD-Kartenspeicher",
|
|
5979
5998
|
"registration_dialog_button_no": "Nein",
|
|
5980
5999
|
"registration_dialog_button_yes": "Ja",
|
|
6000
|
+
"reset_mooddescription": "Beachte, dass alle benutzerdefinierten Stimmungen zurückgesetzt werden.",
|
|
5981
6001
|
"routines_add_edit_name": "Name bearbeiten",
|
|
5982
6002
|
"sensor_deviceselftest": "Selbsttest erfolgreich. Dein Sensor funktioniert einwandfrei.",
|
|
5983
6003
|
"sensor_deviceselftestfail": "Selbsttest fehlgeschlagen. Ihr Sensor funktioniert nicht richtig. Bitte überprüfen.",
|
|
@@ -5987,6 +6007,7 @@ export default {
|
|
|
5987
6007
|
"settings_leakagealarm": "Wasserleckalarm",
|
|
5988
6008
|
"settings_smokealarm": "Rauchalarm",
|
|
5989
6009
|
"settings_smokealarmrecovery": "Wiederherstellung von Rauchmeldern",
|
|
6010
|
+
"settings_wateralarmrecovery": "Wiederherstellung des Wasseralarms",
|
|
5990
6011
|
"sleepwakeschedule_add_button_text1": "Schlafplan hinzufügen",
|
|
5991
6012
|
"sleepwakeschedule_add_button_text2": "Weckplan hinzufügen",
|
|
5992
6013
|
"sleepwakeschedule_empty_filtering_information_text": "Es gibt keine Zeitpläne für diese Filterung.",
|
|
@@ -6106,32 +6127,32 @@ export default {
|
|
|
6106
6127
|
"switch_overcharge_headline_text": "Überladeschutz",
|
|
6107
6128
|
"switchinching_overview_description_text": "Um das Gerät nach einer bestimmten Zeit automatisch auszuschalten.",
|
|
6108
6129
|
"thermostat_automode": "Automatischer Modus",
|
|
6109
|
-
"thermostat_comforttemp": "
|
|
6130
|
+
"thermostat_comforttemp": "Komforttemperatur",
|
|
6110
6131
|
"thermostat_descriptionrapid": "Um die Temperatur sofort auf einen Wert einzustellen",
|
|
6111
6132
|
"thermostat_descriptionvacation": "Um eine Urlaubszeit festzulegen",
|
|
6112
6133
|
"thermostat_difference": "Differenz zwischen der aktuellen und der eingestellten Temperatur",
|
|
6113
6134
|
"thermostat_drifttemp": "Drifttemperatur",
|
|
6114
6135
|
"thermostat_editauto": "Automatik-Modus bearbeiten",
|
|
6115
6136
|
"thermostat_enddate": "Enddatum",
|
|
6116
|
-
"thermostat_endtime": "
|
|
6137
|
+
"thermostat_endtime": "Endzeit",
|
|
6117
6138
|
"thermostat_energysaving": "Energiesparende Temperatur.",
|
|
6118
|
-
"thermostat_error": "
|
|
6119
|
-
"thermostat_maxtime": "
|
|
6139
|
+
"thermostat_error": "Die Endzeit muss nach der Startzeit liegen",
|
|
6140
|
+
"thermostat_maxtime": "Nicht länger als 100 Tage",
|
|
6120
6141
|
"thermostat_openwindow": "Erinnerung an offene Fenster",
|
|
6121
6142
|
"thermostat_powermode": "Leistungsmodus",
|
|
6122
6143
|
"thermostat_quicktemp": "Schneller Temperaturanstieg",
|
|
6123
6144
|
"thermostat_refresh": "Aktualisieren",
|
|
6124
|
-
"thermostat_schedule": "
|
|
6125
|
-
"thermostat_setscope": "
|
|
6145
|
+
"thermostat_schedule": "Du kannst die Temperatur nach deinem Zeitplan anpassen",
|
|
6146
|
+
"thermostat_setscope": "Umfang festlegen",
|
|
6126
6147
|
"thermostat_settemp": "Temperatur einstellen",
|
|
6127
|
-
"thermostat_settime": "
|
|
6148
|
+
"thermostat_settime": "Zeit einstellen",
|
|
6128
6149
|
"thermostat_startdate": "Beginndatum",
|
|
6129
|
-
"thermostat_starttime": "
|
|
6150
|
+
"thermostat_starttime": "Startzeit",
|
|
6130
6151
|
"thermostat_tempcurrent": "Aktuelle Temperatur",
|
|
6131
6152
|
"thermostat_tempsetting": " Temperatureinstellung",
|
|
6132
6153
|
"thermostat_title": "Thermostat",
|
|
6133
6154
|
"thermostat_triggertimes": "Auslösezeiten",
|
|
6134
|
-
"thermostat_unit": "
|
|
6155
|
+
"thermostat_unit": "Einheit: °C",
|
|
6135
6156
|
"thermostat_vacationmode": "Urlaubsmodus",
|
|
6136
6157
|
"time_unit_h": "h",
|
|
6137
6158
|
"timer_ceiling_fan_headline_text": "Timer",
|
|
@@ -6788,6 +6809,7 @@ export default {
|
|
|
6788
6809
|
"mood_overview_information_text": "Οι στατικές διαθέσεις αποθηκεύονται τοπικά στο smartphone σας. Ως εκ τούτου, δεν μπορούν να μοιραστούν με άλλους χρήστες.",
|
|
6789
6810
|
"mood_overview_warning_max_number_text": "Έχει επιτευχθεί ο μέγιστος αριθμός διαθέσεων.",
|
|
6790
6811
|
"mood_preview": "Προεπισκόπηση",
|
|
6812
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
6791
6813
|
"motion_detection_add_time_schedule_actions_text1": "Ενέργειες",
|
|
6792
6814
|
"motion_detection_add_time_schedule_headline_text": "Προσθήκη νέου προγράμματος",
|
|
6793
6815
|
"motion_detection_add_time_schedule_selectionfield_text": "Όνομα",
|
|
@@ -6861,6 +6883,7 @@ export default {
|
|
|
6861
6883
|
"recordings_sd_storage_headline_text": "Αποθηκευτικός χώρος κάρτας SD",
|
|
6862
6884
|
"registration_dialog_button_no": "Οχι",
|
|
6863
6885
|
"registration_dialog_button_yes": "Ναι",
|
|
6886
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
6864
6887
|
"routines_add_edit_name": "Επεξεργασία ονόματος",
|
|
6865
6888
|
"sensor_deviceselftest": "Επιτυχής αυτοέλεγχος. Ο αισθητήρας σας λειτουργεί καλά.",
|
|
6866
6889
|
"sensor_deviceselftestfail": "Ο αυτοέλεγχος απέτυχε. Ο αισθητήρας σας δεν λειτουργεί σωστά. Παρακαλώ ελέγξτε.",
|
|
@@ -6870,6 +6893,7 @@ export default {
|
|
|
6870
6893
|
"settings_leakagealarm": "Συναγερμός διαρροής νερού",
|
|
6871
6894
|
"settings_smokealarm": "Συναγερμός καπνού",
|
|
6872
6895
|
"settings_smokealarmrecovery": "Επαναφορά συναγερμού καπνού",
|
|
6896
|
+
"settings_wateralarmrecovery": "Ανάκτηση συναγερμού νερού",
|
|
6873
6897
|
"sleepwakeschedule_add_button_text1": "Προσθέστε πρόγραμμα ύπνου",
|
|
6874
6898
|
"sleepwakeschedule_add_button_text2": "Προσθέστε πρόγραμμα αφύπνισης",
|
|
6875
6899
|
"sleepwakeschedule_empty_filtering_information_text": "Δεν υπάρχουν χρονοδιαγράμματα για αυτό το φιλτράρισμα.",
|
|
@@ -7671,6 +7695,7 @@ export default {
|
|
|
7671
7695
|
"mood_overview_information_text": "Los estados de ánimo estáticos se almacenan localmente en tu smartphone. Por lo tanto, no se pueden compartir con otros usuarios.",
|
|
7672
7696
|
"mood_overview_warning_max_number_text": "Se ha alcanzado el número máximo de estados de ánimo.",
|
|
7673
7697
|
"mood_preview": "Vista previa",
|
|
7698
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
7674
7699
|
"motion_detection_add_time_schedule_actions_text1": "Acciones",
|
|
7675
7700
|
"motion_detection_add_time_schedule_headline_text": "Añadir un nuevo horario",
|
|
7676
7701
|
"motion_detection_add_time_schedule_selectionfield_text": "Nombre",
|
|
@@ -7744,6 +7769,7 @@ export default {
|
|
|
7744
7769
|
"recordings_sd_storage_headline_text": "Almacenamiento de la tarjeta SD",
|
|
7745
7770
|
"registration_dialog_button_no": "No",
|
|
7746
7771
|
"registration_dialog_button_yes": "Sí",
|
|
7772
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
7747
7773
|
"routines_add_edit_name": "Editar nombre",
|
|
7748
7774
|
"sensor_deviceselftest": "La autocomprobación se realizó correctamente. El sensor funciona correctamente.",
|
|
7749
7775
|
"sensor_deviceselftestfail": "Fallo en la autocomprobación. El sensor no funciona correctamente. Por favor compruébalo.",
|
|
@@ -7753,6 +7779,7 @@ export default {
|
|
|
7753
7779
|
"settings_leakagealarm": "Alarma de fuga de agua",
|
|
7754
7780
|
"settings_smokealarm": "Detector de humo",
|
|
7755
7781
|
"settings_smokealarmrecovery": "Recuperación de detectores de humo",
|
|
7782
|
+
"settings_wateralarmrecovery": "Recuperación de alarma de agua",
|
|
7756
7783
|
"sleepwakeschedule_add_button_text1": "Añadir horario de sueño",
|
|
7757
7784
|
"sleepwakeschedule_add_button_text2": "Añadir horario de despertador",
|
|
7758
7785
|
"sleepwakeschedule_empty_filtering_information_text": "No hay horarios para este filtrado.",
|
|
@@ -8554,6 +8581,7 @@ export default {
|
|
|
8554
8581
|
"mood_overview_information_text": "Staatilised meeleoluvalgustused salvestatakse üksnes sinu nutitelefoni. Seetõttu ei saa neid teiste kasutajatega jagada.",
|
|
8555
8582
|
"mood_overview_warning_max_number_text": "Meeleoluvalgustuste maksimaalne arv on täis.",
|
|
8556
8583
|
"mood_preview": "Eelvaade",
|
|
8584
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
8557
8585
|
"motion_detection_add_time_schedule_actions_text1": "Tegevused",
|
|
8558
8586
|
"motion_detection_add_time_schedule_headline_text": "Lisa uus ajakava",
|
|
8559
8587
|
"motion_detection_add_time_schedule_selectionfield_text": "Nimi",
|
|
@@ -8627,6 +8655,7 @@ export default {
|
|
|
8627
8655
|
"recordings_sd_storage_headline_text": "SD-mälukaart",
|
|
8628
8656
|
"registration_dialog_button_no": "Ei",
|
|
8629
8657
|
"registration_dialog_button_yes": "Jah",
|
|
8658
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
8630
8659
|
"routines_add_edit_name": "Muuda nime",
|
|
8631
8660
|
"sensor_deviceselftest": "Enesekontroll edukas. Teie andur töötab hästi.",
|
|
8632
8661
|
"sensor_deviceselftestfail": "Enesekontroll ebaõnnestus. Teie andur ei tööta õigesti. Palun kontrollige.",
|
|
@@ -8636,6 +8665,7 @@ export default {
|
|
|
8636
8665
|
"settings_leakagealarm": "Veelekke häire",
|
|
8637
8666
|
"settings_smokealarm": "Suitsuandur",
|
|
8638
8667
|
"settings_smokealarmrecovery": "Suitsuanduri taastamine",
|
|
8668
|
+
"settings_wateralarmrecovery": "Veealarmi taastamine",
|
|
8639
8669
|
"sleepwakeschedule_add_button_text1": "Lisa une ajakava",
|
|
8640
8670
|
"sleepwakeschedule_add_button_text2": "Lisa äratuse ajakava",
|
|
8641
8671
|
"sleepwakeschedule_empty_filtering_information_text": "Selle filtreerimise jaoks ajakavasid ei ole.",
|
|
@@ -9437,6 +9467,7 @@ export default {
|
|
|
9437
9467
|
"mood_overview_information_text": "Pysyvät tunnelmat tallennetaan paikallisesti älypuhelimeesi. Siksi niitä ei voi jakaa muiden käyttäjien kanssa.",
|
|
9438
9468
|
"mood_overview_warning_max_number_text": "Tunnelmien enimmäismäärä on saavutettu.",
|
|
9439
9469
|
"mood_preview": "Esikatselu",
|
|
9470
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
9440
9471
|
"motion_detection_add_time_schedule_actions_text1": "Toiminnot",
|
|
9441
9472
|
"motion_detection_add_time_schedule_headline_text": "Lisää uusi aikataulu",
|
|
9442
9473
|
"motion_detection_add_time_schedule_selectionfield_text": "Nimi",
|
|
@@ -9510,6 +9541,7 @@ export default {
|
|
|
9510
9541
|
"recordings_sd_storage_headline_text": "SD-kortin tallennustila",
|
|
9511
9542
|
"registration_dialog_button_no": "Ei",
|
|
9512
9543
|
"registration_dialog_button_yes": "Kyllä",
|
|
9544
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
9513
9545
|
"routines_add_edit_name": "Muokkaa nimeä",
|
|
9514
9546
|
"sensor_deviceselftest": "Itsetarkastus onnistui. Anturi toimii hyvin.",
|
|
9515
9547
|
"sensor_deviceselftestfail": "Itsetarkastus epäonnistui. Anturi ei toimi oikein. Ole hyvä ja tarkista.",
|
|
@@ -9519,6 +9551,7 @@ export default {
|
|
|
9519
9551
|
"settings_leakagealarm": "Vesivuotohälytys",
|
|
9520
9552
|
"settings_smokealarm": "Palohälytys",
|
|
9521
9553
|
"settings_smokealarmrecovery": "Palovaroittimen palautus",
|
|
9554
|
+
"settings_wateralarmrecovery": "Vesihälytyksen talteenotto",
|
|
9522
9555
|
"sleepwakeschedule_add_button_text1": "Lisää uniaikataulu",
|
|
9523
9556
|
"sleepwakeschedule_add_button_text2": "Lisää herätysaikataulu",
|
|
9524
9557
|
"sleepwakeschedule_empty_filtering_information_text": "Tälle suodatukselle ei ole aikatauluja.",
|
|
@@ -10320,6 +10353,7 @@ export default {
|
|
|
10320
10353
|
"mood_overview_information_text": "Les ambiances statiques sont enregistrées localement sur votre smartphone. Ils ne peuvent donc pas être partagés avec d'autres utilisateurs.",
|
|
10321
10354
|
"mood_overview_warning_max_number_text": "Le nombre maximum d'ambiances a été atteint.",
|
|
10322
10355
|
"mood_preview": "Aperçu",
|
|
10356
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
10323
10357
|
"motion_detection_add_time_schedule_actions_text1": "Actions",
|
|
10324
10358
|
"motion_detection_add_time_schedule_headline_text": "Ajouter un nouveau calendrier",
|
|
10325
10359
|
"motion_detection_add_time_schedule_selectionfield_text": "Nom",
|
|
@@ -10393,6 +10427,7 @@ export default {
|
|
|
10393
10427
|
"recordings_sd_storage_headline_text": "Stockage sur carte SD",
|
|
10394
10428
|
"registration_dialog_button_no": "Non",
|
|
10395
10429
|
"registration_dialog_button_yes": "Oui",
|
|
10430
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
10396
10431
|
"routines_add_edit_name": "Modifier le nom",
|
|
10397
10432
|
"sensor_deviceselftest": "Auto-contrôle réussi. Votre détecteur fonctionne correctement.",
|
|
10398
10433
|
"sensor_deviceselftestfail": "Échec de l' auto-contrôle. Votre détecteur ne fonctionne pas correctement. Veuillez vérifier.",
|
|
@@ -10402,6 +10437,7 @@ export default {
|
|
|
10402
10437
|
"settings_leakagealarm": "Alarme de fuite d'eau",
|
|
10403
10438
|
"settings_smokealarm": "Alarme de fumée",
|
|
10404
10439
|
"settings_smokealarmrecovery": "Récupération de l'alarme de fumée",
|
|
10440
|
+
"settings_wateralarmrecovery": "Récupération d'alarme d'eau",
|
|
10405
10441
|
"sleepwakeschedule_add_button_text1": "Ajouter un horaire de coucher",
|
|
10406
10442
|
"sleepwakeschedule_add_button_text2": "Ajouter un horaire de réveil",
|
|
10407
10443
|
"sleepwakeschedule_empty_filtering_information_text": "Il n’y a pas de planification pour ce filtrage.",
|
|
@@ -11203,6 +11239,7 @@ export default {
|
|
|
11203
11239
|
"mood_overview_information_text": "Statička raspoloženja pohranjuju se lokalno na vašem pametnom telefonu. Zato se ne mogu dijeliti s drugim korisnicima.",
|
|
11204
11240
|
"mood_overview_warning_max_number_text": "Dosegnut je maksimalan broj raspoloženja.",
|
|
11205
11241
|
"mood_preview": "Pregled",
|
|
11242
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
11206
11243
|
"motion_detection_add_time_schedule_actions_text1": "Akcije",
|
|
11207
11244
|
"motion_detection_add_time_schedule_headline_text": "Dodajte novi raspored",
|
|
11208
11245
|
"motion_detection_add_time_schedule_selectionfield_text": "Naziv",
|
|
@@ -11276,6 +11313,7 @@ export default {
|
|
|
11276
11313
|
"recordings_sd_storage_headline_text": "Pohrana SD kartice",
|
|
11277
11314
|
"registration_dialog_button_no": "Ne",
|
|
11278
11315
|
"registration_dialog_button_yes": "Da",
|
|
11316
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
11279
11317
|
"routines_add_edit_name": "Uredi naziv",
|
|
11280
11318
|
"sensor_deviceselftest": "Samoprovjera uspješna. Vaš senzor radi dobro.",
|
|
11281
11319
|
"sensor_deviceselftestfail": "Samoprovjera nije uspjela. Vaš senzor ne radi ispravno. Molimo provjerite.",
|
|
@@ -11285,6 +11323,7 @@ export default {
|
|
|
11285
11323
|
"settings_leakagealarm": "Alarm curenja vode",
|
|
11286
11324
|
"settings_smokealarm": "Alarm za dim",
|
|
11287
11325
|
"settings_smokealarmrecovery": "Oporavak alarma za dim",
|
|
11326
|
+
"settings_wateralarmrecovery": "Oporavak vodenog alarma",
|
|
11288
11327
|
"sleepwakeschedule_add_button_text1": "Dodajte raspored spavanja",
|
|
11289
11328
|
"sleepwakeschedule_add_button_text2": "Dodajte raspored buđenja",
|
|
11290
11329
|
"sleepwakeschedule_empty_filtering_information_text": "Ne postoje rasporedi za ovo filtriranje.",
|
|
@@ -12086,6 +12125,7 @@ export default {
|
|
|
12086
12125
|
"mood_overview_information_text": "Gli scenari statici sono memorizzati sullo smartphone. Non possono essere condivisi con altri utenti.",
|
|
12087
12126
|
"mood_overview_warning_max_number_text": "È stato raggiunto il numero massimo di scenari.",
|
|
12088
12127
|
"mood_preview": "Anteprima",
|
|
12128
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
12089
12129
|
"motion_detection_add_time_schedule_actions_text1": "Azioni",
|
|
12090
12130
|
"motion_detection_add_time_schedule_headline_text": "Aggiungi una nuova pianificazione",
|
|
12091
12131
|
"motion_detection_add_time_schedule_selectionfield_text": "Nome",
|
|
@@ -12159,6 +12199,7 @@ export default {
|
|
|
12159
12199
|
"recordings_sd_storage_headline_text": "Archivio scheda SD",
|
|
12160
12200
|
"registration_dialog_button_no": "No",
|
|
12161
12201
|
"registration_dialog_button_yes": "Sì",
|
|
12202
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
12162
12203
|
"routines_add_edit_name": "Modifica nome",
|
|
12163
12204
|
"sensor_deviceselftest": "Autoverifica avvenuta con successo. Il sensore funziona correttamente.",
|
|
12164
12205
|
"sensor_deviceselftestfail": "Autoverifica fallita. Il sensore non funziona correttamente. Per favore controlla.",
|
|
@@ -12168,6 +12209,7 @@ export default {
|
|
|
12168
12209
|
"settings_leakagealarm": "Allarme perdite d'acqua",
|
|
12169
12210
|
"settings_smokealarm": "Allarme antifumo",
|
|
12170
12211
|
"settings_smokealarmrecovery": "Ripristino dell'allarme antifumo",
|
|
12212
|
+
"settings_wateralarmrecovery": "Recupero allarme acqua",
|
|
12171
12213
|
"sleepwakeschedule_add_button_text1": "Aggiungi programma sonno",
|
|
12172
12214
|
"sleepwakeschedule_add_button_text2": "Aggiungi programma risveglio",
|
|
12173
12215
|
"sleepwakeschedule_empty_filtering_information_text": "Non ci sono programmi per questa selezione.",
|
|
@@ -12286,34 +12328,34 @@ export default {
|
|
|
12286
12328
|
"switch_overcharge_headline_description": "La funzione disattiva automaticamente la ricarica dei dispositivi mobili, inclusi telefoni cellulari e power bank, quando sono completamente carichi per evitare il sovraccarico e prolungare la durata della batteria.",
|
|
12287
12329
|
"switch_overcharge_headline_text": "Protezione da sovraccarico",
|
|
12288
12330
|
"switchinching_overview_description_text": "Per spegnere automaticamente il dispositivo dopo un certo periodo di tempo.",
|
|
12289
|
-
"thermostat_automode": "
|
|
12290
|
-
"thermostat_comforttemp": "
|
|
12291
|
-
"thermostat_descriptionrapid": "
|
|
12292
|
-
"thermostat_descriptionvacation": "
|
|
12293
|
-
"thermostat_difference": "
|
|
12331
|
+
"thermostat_automode": "Modalità automatica",
|
|
12332
|
+
"thermostat_comforttemp": "Temperatura di comfort.",
|
|
12333
|
+
"thermostat_descriptionrapid": "Per impostare immediatamente la temperatura su un valore",
|
|
12334
|
+
"thermostat_descriptionvacation": "Per impostare un orario di vacanza",
|
|
12335
|
+
"thermostat_difference": "Differenza tra la temperatura attuale e quella impostata",
|
|
12294
12336
|
"thermostat_drifttemp": "Drift temp.",
|
|
12295
|
-
"thermostat_editauto": "
|
|
12296
|
-
"thermostat_enddate": "
|
|
12297
|
-
"thermostat_endtime": "
|
|
12337
|
+
"thermostat_editauto": "Modifica modalità automatica",
|
|
12338
|
+
"thermostat_enddate": "Data di fine",
|
|
12339
|
+
"thermostat_endtime": "Fine",
|
|
12298
12340
|
"thermostat_energysaving": "Energy saving temp.",
|
|
12299
|
-
"thermostat_error": "
|
|
12300
|
-
"thermostat_maxtime": "
|
|
12301
|
-
"thermostat_openwindow": "
|
|
12302
|
-
"thermostat_powermode": "
|
|
12303
|
-
"thermostat_quicktemp": "
|
|
12304
|
-
"thermostat_refresh": "
|
|
12305
|
-
"thermostat_schedule": "
|
|
12341
|
+
"thermostat_error": "L'ora di fine deve essere maggiore dell'ora di inizio",
|
|
12342
|
+
"thermostat_maxtime": "Non più di 100 giorni",
|
|
12343
|
+
"thermostat_openwindow": "Promemoria",
|
|
12344
|
+
"thermostat_powermode": "Modalità di alimentazione",
|
|
12345
|
+
"thermostat_quicktemp": "Aumento rapido della temperatura",
|
|
12346
|
+
"thermostat_refresh": "Ricarica",
|
|
12347
|
+
"thermostat_schedule": "Puoi adattare la temperatura in base ai tuoi orari",
|
|
12306
12348
|
"thermostat_setscope": "Set scope",
|
|
12307
|
-
"thermostat_settemp": "
|
|
12308
|
-
"thermostat_settime": "
|
|
12309
|
-
"thermostat_startdate": "
|
|
12310
|
-
"thermostat_starttime": "
|
|
12311
|
-
"thermostat_tempcurrent": "
|
|
12312
|
-
"thermostat_tempsetting": "
|
|
12313
|
-
"thermostat_title": "
|
|
12349
|
+
"thermostat_settemp": "Impostazione della temperatura.",
|
|
12350
|
+
"thermostat_settime": "Impostare l'ora",
|
|
12351
|
+
"thermostat_startdate": "Data di inizio",
|
|
12352
|
+
"thermostat_starttime": "Inizio",
|
|
12353
|
+
"thermostat_tempcurrent": "Temperatura attuale",
|
|
12354
|
+
"thermostat_tempsetting": " Impostazione della temperatura",
|
|
12355
|
+
"thermostat_title": "Termostato",
|
|
12314
12356
|
"thermostat_triggertimes": "Trigger times",
|
|
12315
|
-
"thermostat_unit": "Unit
|
|
12316
|
-
"thermostat_vacationmode": "
|
|
12357
|
+
"thermostat_unit": "Unità: °C",
|
|
12358
|
+
"thermostat_vacationmode": "Modalità vacanza",
|
|
12317
12359
|
"time_unit_h": "h",
|
|
12318
12360
|
"timer_ceiling_fan_headline_text": "Timer",
|
|
12319
12361
|
"timer_ceiling_fan_lighting_switched_off_text": "L'illuminazione verrà spenta alle {0}",
|
|
@@ -12969,6 +13011,7 @@ export default {
|
|
|
12969
13011
|
"mood_overview_information_text": "정적인 무드는 스마트폰에 로컬로 저장됩니다. 따라서 다른 사용자와 공유할 수 없습니다.",
|
|
12970
13012
|
"mood_overview_warning_max_number_text": "최대 무드 수에 도달했습니다.",
|
|
12971
13013
|
"mood_preview": "미리보기",
|
|
13014
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
12972
13015
|
"motion_detection_add_time_schedule_actions_text1": "실행",
|
|
12973
13016
|
"motion_detection_add_time_schedule_headline_text": "일정 추가",
|
|
12974
13017
|
"motion_detection_add_time_schedule_selectionfield_text": "이름",
|
|
@@ -13042,6 +13085,7 @@ export default {
|
|
|
13042
13085
|
"recordings_sd_storage_headline_text": "SD 카드 저장소",
|
|
13043
13086
|
"registration_dialog_button_no": "아니오",
|
|
13044
13087
|
"registration_dialog_button_yes": "예",
|
|
13088
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
13045
13089
|
"routines_add_edit_name": "이름 편집",
|
|
13046
13090
|
"sensor_deviceselftest": "셀프 체크에 성공했습니다.센서가 정상적으로 작동합니다.",
|
|
13047
13091
|
"sensor_deviceselftestfail": "자체 검사에 실패했습니다.센서가 제대로 작동하지 않습니다.확인해 주세요.",
|
|
@@ -13051,6 +13095,7 @@ export default {
|
|
|
13051
13095
|
"settings_leakagealarm": "누수 경보",
|
|
13052
13096
|
"settings_smokealarm": "화재 경보기",
|
|
13053
13097
|
"settings_smokealarmrecovery": "화재 경보 복구",
|
|
13098
|
+
"settings_wateralarmrecovery": "수질 경보 복구",
|
|
13054
13099
|
"sleepwakeschedule_add_button_text1": "수면 일정 추가",
|
|
13055
13100
|
"sleepwakeschedule_add_button_text2": "기상 일정 추가",
|
|
13056
13101
|
"sleepwakeschedule_empty_filtering_information_text": "이 필터링에 대한 일정이 없습니다.",
|
|
@@ -13852,6 +13897,7 @@ export default {
|
|
|
13852
13897
|
"mood_overview_information_text": "Statinės nuotaikos saugomos jūsų išmaniajame telefone. Todėl jų negalima bendrinti su kitais naudotojais.",
|
|
13853
13898
|
"mood_overview_warning_max_number_text": "Pasiektas didžiausias nuotaikų skaičius.",
|
|
13854
13899
|
"mood_preview": "Peržiūra",
|
|
13900
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
13855
13901
|
"motion_detection_add_time_schedule_actions_text1": "Veiksmai",
|
|
13856
13902
|
"motion_detection_add_time_schedule_headline_text": "Pridėti naują grafiką",
|
|
13857
13903
|
"motion_detection_add_time_schedule_selectionfield_text": "Pavadinimas",
|
|
@@ -13925,6 +13971,7 @@ export default {
|
|
|
13925
13971
|
"recordings_sd_storage_headline_text": "SD kortelės saugykla",
|
|
13926
13972
|
"registration_dialog_button_no": "Ne",
|
|
13927
13973
|
"registration_dialog_button_yes": "Taip",
|
|
13974
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
13928
13975
|
"routines_add_edit_name": "Redaguoti pavadinimą",
|
|
13929
13976
|
"sensor_deviceselftest": "Savikontrolė sėkminga. Jūsų jutiklis veikia gerai.",
|
|
13930
13977
|
"sensor_deviceselftestfail": "Savikontrolė nepavyko. Jūsų jutiklis veikia netinkamai. Patikrinkite.",
|
|
@@ -13934,6 +13981,7 @@ export default {
|
|
|
13934
13981
|
"settings_leakagealarm": "Vandens nuotėkio signalizacija",
|
|
13935
13982
|
"settings_smokealarm": "Dūmų signalizacija",
|
|
13936
13983
|
"settings_smokealarmrecovery": "Dūmų signalizacijos atstatymas",
|
|
13984
|
+
"settings_wateralarmrecovery": "Vandens signalizacijos atstatymas",
|
|
13937
13985
|
"sleepwakeschedule_add_button_text1": "Pridėti miego grafiką",
|
|
13938
13986
|
"sleepwakeschedule_add_button_text2": "Pridėkite pabudimo grafiką",
|
|
13939
13987
|
"sleepwakeschedule_empty_filtering_information_text": "Šiam filtrui nėra grafikų",
|
|
@@ -14735,6 +14783,7 @@ export default {
|
|
|
14735
14783
|
"mood_overview_information_text": "Statiskās noskaņas tiek saglabātas viedtālrunī lokāli. Tāpēc tās nevar kopīgot ar citiem lietotājiem.",
|
|
14736
14784
|
"mood_overview_warning_max_number_text": "Sasniegts maksimālais noskaņu skaits.",
|
|
14737
14785
|
"mood_preview": "Priekšskatījums",
|
|
14786
|
+
"mood_resetbutton": "Vai vēlaties atiestatīt noskaņojumu?",
|
|
14738
14787
|
"motion_detection_add_time_schedule_actions_text1": "Darbības",
|
|
14739
14788
|
"motion_detection_add_time_schedule_headline_text": "Pievienot jaunu grafiku",
|
|
14740
14789
|
"motion_detection_add_time_schedule_selectionfield_text": "Nosaukums",
|
|
@@ -14808,6 +14857,7 @@ export default {
|
|
|
14808
14857
|
"recordings_sd_storage_headline_text": "SD kartes krātuve",
|
|
14809
14858
|
"registration_dialog_button_no": "Nē",
|
|
14810
14859
|
"registration_dialog_button_yes": "Jā",
|
|
14860
|
+
"reset_mooddescription": "Ņemiet vērā, ka visi pielāgotie noskaņojumi tiks atiestatīti.",
|
|
14811
14861
|
"routines_add_edit_name": "Rediģēt nosaukumu",
|
|
14812
14862
|
"sensor_deviceselftest": "Pašpārbaude veiksmīga. Jūsu sensors darbojas labi.",
|
|
14813
14863
|
"sensor_deviceselftestfail": "Pašpārbaude neizdevās. Jūsu sensors nedarbojas pareizi. Lūdzu, pārbaudiet.",
|
|
@@ -14817,6 +14867,7 @@ export default {
|
|
|
14817
14867
|
"settings_leakagealarm": "Ūdens noplūdes signalizācija",
|
|
14818
14868
|
"settings_smokealarm": "Dūmu trauksmes signāls",
|
|
14819
14869
|
"settings_smokealarmrecovery": "Dūmu trauksmes atgūšana",
|
|
14870
|
+
"settings_wateralarmrecovery": "Ūdens signalizācijas atjaunošana",
|
|
14820
14871
|
"sleepwakeschedule_add_button_text1": "Pievienot miega grafiku",
|
|
14821
14872
|
"sleepwakeschedule_add_button_text2": "Pievienot pamošanās grafiku",
|
|
14822
14873
|
"sleepwakeschedule_empty_filtering_information_text": "Šai filtrēšanai nav grafiku.",
|
|
@@ -14935,34 +14986,34 @@ export default {
|
|
|
14935
14986
|
"switch_overcharge_headline_description": "Šī funkcija automātiski izslēdz mobilo ierīču, tostarp mobilo tālruņu un barošanas bateriju, uzlādi, kad tās ir pilnībā uzlādētas, lai novērstu to pārmērīgu uzlādi un pagarinātu baterijas darbības laiku.",
|
|
14936
14987
|
"switch_overcharge_headline_text": "Aizsardzība pret pārmērīgu uzlādi",
|
|
14937
14988
|
"switchinching_overview_description_text": "Lai automātiski izslēgtu ierīci pēc noteikta laika perioda.",
|
|
14938
|
-
"thermostat_automode": "
|
|
14939
|
-
"thermostat_comforttemp": "
|
|
14940
|
-
"thermostat_descriptionrapid": "
|
|
14941
|
-
"thermostat_descriptionvacation": "
|
|
14942
|
-
"thermostat_difference": "
|
|
14943
|
-
"thermostat_drifttemp": "
|
|
14944
|
-
"thermostat_editauto": "
|
|
14945
|
-
"thermostat_enddate": "
|
|
14946
|
-
"thermostat_endtime": "
|
|
14947
|
-
"thermostat_energysaving": "
|
|
14948
|
-
"thermostat_error": "
|
|
14949
|
-
"thermostat_maxtime": "
|
|
14950
|
-
"thermostat_openwindow": "
|
|
14951
|
-
"thermostat_powermode": "
|
|
14952
|
-
"thermostat_quicktemp": "
|
|
14953
|
-
"thermostat_refresh": "
|
|
14954
|
-
"thermostat_schedule": "
|
|
14955
|
-
"thermostat_setscope": "
|
|
14956
|
-
"thermostat_settemp": "
|
|
14957
|
-
"thermostat_settime": "
|
|
14958
|
-
"thermostat_startdate": "
|
|
14959
|
-
"thermostat_starttime": "
|
|
14960
|
-
"thermostat_tempcurrent": "
|
|
14961
|
-
"thermostat_tempsetting": "
|
|
14962
|
-
"thermostat_title": "
|
|
14963
|
-
"thermostat_triggertimes": "
|
|
14964
|
-
"thermostat_unit": "
|
|
14965
|
-
"thermostat_vacationmode": "
|
|
14989
|
+
"thermostat_automode": "Automātiskais režīms",
|
|
14990
|
+
"thermostat_comforttemp": "Komforta temp.",
|
|
14991
|
+
"thermostat_descriptionrapid": "Tūlītēja temperatūras iestatīšana uz vērtību",
|
|
14992
|
+
"thermostat_descriptionvacation": "Atvaļinājuma laika iestatīšana",
|
|
14993
|
+
"thermostat_difference": "Starpība starp pašreizējo un iestatīto temperatūru",
|
|
14994
|
+
"thermostat_drifttemp": "Dreifa temperatūra.",
|
|
14995
|
+
"thermostat_editauto": "Rediģēt automātisko režīmu",
|
|
14996
|
+
"thermostat_enddate": "Beigu datums",
|
|
14997
|
+
"thermostat_endtime": "Beigu laiks",
|
|
14998
|
+
"thermostat_energysaving": "Enerģijas taupīšanas temp.",
|
|
14999
|
+
"thermostat_error": "Beigu laikam jābūt lielākam par sākuma laiku.",
|
|
15000
|
+
"thermostat_maxtime": "Ne ilgāk kā 100 dienas",
|
|
15001
|
+
"thermostat_openwindow": "Atvērt loga atgādinājumu",
|
|
15002
|
+
"thermostat_powermode": "Jaudas režīms",
|
|
15003
|
+
"thermostat_quicktemp": "Ātra temperatūras paaugstināšana",
|
|
15004
|
+
"thermostat_refresh": "Atjaunot",
|
|
15005
|
+
"thermostat_schedule": "Jūs varat pielāgot temperatūru atbilstoši savam grafikam",
|
|
15006
|
+
"thermostat_setscope": "Iestatiet darbības jomu",
|
|
15007
|
+
"thermostat_settemp": "Iestatiet temperatūru.",
|
|
15008
|
+
"thermostat_settime": "Iestatiet laiku",
|
|
15009
|
+
"thermostat_startdate": "Sākuma datums",
|
|
15010
|
+
"thermostat_starttime": "Sākuma laiks",
|
|
15011
|
+
"thermostat_tempcurrent": "Pašreizējā temp.",
|
|
15012
|
+
"thermostat_tempsetting": " Temperatūras iestatījums",
|
|
15013
|
+
"thermostat_title": "Termostats",
|
|
15014
|
+
"thermostat_triggertimes": "Sprūda laiki",
|
|
15015
|
+
"thermostat_unit": "Mērvienība: °C",
|
|
15016
|
+
"thermostat_vacationmode": "Atvaļinājuma režīms",
|
|
14966
15017
|
"time_unit_h": "h",
|
|
14967
15018
|
"timer_ceiling_fan_headline_text": "Taimeris",
|
|
14968
15019
|
"timer_ceiling_fan_lighting_switched_off_text": "Apgaismojums tiks izslēgts aptuveni {0}",
|
|
@@ -15618,6 +15669,7 @@ export default {
|
|
|
15618
15669
|
"mood_overview_information_text": "De statiske stemningene lagres lokalt på smarttelefonen din. Derfor kan de ikke deles med andre brukere.",
|
|
15619
15670
|
"mood_overview_warning_max_number_text": "Maksimalt antall stemninger er nådd.",
|
|
15620
15671
|
"mood_preview": "Forhåndsvis",
|
|
15672
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
15621
15673
|
"motion_detection_add_time_schedule_actions_text1": "Handlinger",
|
|
15622
15674
|
"motion_detection_add_time_schedule_headline_text": "Legg til en ny tidsplan",
|
|
15623
15675
|
"motion_detection_add_time_schedule_selectionfield_text": "Navn",
|
|
@@ -15691,6 +15743,7 @@ export default {
|
|
|
15691
15743
|
"recordings_sd_storage_headline_text": "Lagring på SD-kort",
|
|
15692
15744
|
"registration_dialog_button_no": "Nei",
|
|
15693
15745
|
"registration_dialog_button_yes": "Ja",
|
|
15746
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
15694
15747
|
"routines_add_edit_name": "Rediger navn",
|
|
15695
15748
|
"sensor_deviceselftest": "Selvsjekk vellykket. Sensoren din fungerer fint.",
|
|
15696
15749
|
"sensor_deviceselftestfail": "Selvsjekk mislyktes. Sensoren din fungerer ikke som den skal. Vennligst sjekk.",
|
|
@@ -15700,6 +15753,7 @@ export default {
|
|
|
15700
15753
|
"settings_leakagealarm": "Vannlekkasjealarm",
|
|
15701
15754
|
"settings_smokealarm": "Røykvarsler",
|
|
15702
15755
|
"settings_smokealarmrecovery": "Gjenoppretting av røykvarsler",
|
|
15756
|
+
"settings_wateralarmrecovery": "Gjenvinning av vannalarm",
|
|
15703
15757
|
"sleepwakeschedule_add_button_text1": "Legg til søvnplan",
|
|
15704
15758
|
"sleepwakeschedule_add_button_text2": "Legg til våkneplan",
|
|
15705
15759
|
"sleepwakeschedule_empty_filtering_information_text": "Det er ingen tidsplaner for denne filtreringen.",
|
|
@@ -16501,6 +16555,7 @@ export default {
|
|
|
16501
16555
|
"mood_overview_information_text": "De statische stemmingen worden lokaal op uw smartphone opgeslagen. Daarom kunnen ze niet worden gedeeld met andere gebruikers.",
|
|
16502
16556
|
"mood_overview_warning_max_number_text": "Het maximum aantal stemmingen is bereikt.",
|
|
16503
16557
|
"mood_preview": "Voorbeeld",
|
|
16558
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
16504
16559
|
"motion_detection_add_time_schedule_actions_text1": "Acties",
|
|
16505
16560
|
"motion_detection_add_time_schedule_headline_text": "Voeg een nieuw schema toe",
|
|
16506
16561
|
"motion_detection_add_time_schedule_selectionfield_text": "Naam",
|
|
@@ -16574,6 +16629,7 @@ export default {
|
|
|
16574
16629
|
"recordings_sd_storage_headline_text": "SD-kaart opslag",
|
|
16575
16630
|
"registration_dialog_button_no": "Nee",
|
|
16576
16631
|
"registration_dialog_button_yes": "Ja",
|
|
16632
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
16577
16633
|
"routines_add_edit_name": "Naam bewerken",
|
|
16578
16634
|
"sensor_deviceselftest": "Zelfcontrole succesvol. Uw sensor werkt prima.",
|
|
16579
16635
|
"sensor_deviceselftestfail": "Zelfcontrole is mislukt. Uw sensor werkt niet goed. Controleer dit alstublieft.",
|
|
@@ -16583,6 +16639,7 @@ export default {
|
|
|
16583
16639
|
"settings_leakagealarm": "Alarm voor waterlekkage",
|
|
16584
16640
|
"settings_smokealarm": "Rookmelder",
|
|
16585
16641
|
"settings_smokealarmrecovery": "Rookmelder herstel",
|
|
16642
|
+
"settings_wateralarmrecovery": "Herstel van wateralarmen",
|
|
16586
16643
|
"sleepwakeschedule_add_button_text1": "Slaapschema toevoegen",
|
|
16587
16644
|
"sleepwakeschedule_add_button_text2": "Wekschema toevoegen",
|
|
16588
16645
|
"sleepwakeschedule_empty_filtering_information_text": "Er zijn geen schema's voor deze filtering.",
|
|
@@ -17384,6 +17441,7 @@ export default {
|
|
|
17384
17441
|
"mood_overview_information_text": "Stările statice de dispoziție sunt stocate la nivel local pe smartphone-ul dumneavoastră. Prin urmare, acestea nu pot fi partajate cu alți utilizatori.",
|
|
17385
17442
|
"mood_overview_warning_max_number_text": "A fost atins numărul maxim de dispoziții.",
|
|
17386
17443
|
"mood_preview": "Previzualizare",
|
|
17444
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
17387
17445
|
"motion_detection_add_time_schedule_actions_text1": "Acțiuni",
|
|
17388
17446
|
"motion_detection_add_time_schedule_headline_text": "Adăugați un nou program",
|
|
17389
17447
|
"motion_detection_add_time_schedule_selectionfield_text": "Nume",
|
|
@@ -17457,6 +17515,7 @@ export default {
|
|
|
17457
17515
|
"recordings_sd_storage_headline_text": "Stocare pe card SD",
|
|
17458
17516
|
"registration_dialog_button_no": "Nu",
|
|
17459
17517
|
"registration_dialog_button_yes": "Da",
|
|
17518
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
17460
17519
|
"routines_add_edit_name": "Editare nume",
|
|
17461
17520
|
"sensor_deviceselftest": "Autoverificare reușită. Senzorul funcționează bine.",
|
|
17462
17521
|
"sensor_deviceselftestfail": "Autoverificarea a eșuat. Senzorul nu funcționează corect. Vă rugăm să verificați.",
|
|
@@ -17466,6 +17525,7 @@ export default {
|
|
|
17466
17525
|
"settings_leakagealarm": "Alarmă de scurgere de apă",
|
|
17467
17526
|
"settings_smokealarm": "Alarma de fum",
|
|
17468
17527
|
"settings_smokealarmrecovery": "Recuperarea alarmei de fum",
|
|
17528
|
+
"settings_wateralarmrecovery": "Recuperarea alarmei de apă",
|
|
17469
17529
|
"sleepwakeschedule_add_button_text1": "Adăugați programul de somn",
|
|
17470
17530
|
"sleepwakeschedule_add_button_text2": "Adăugați programul de trezire",
|
|
17471
17531
|
"sleepwakeschedule_empty_filtering_information_text": "Nu există programe pentru această filtrare.",
|
|
@@ -18267,6 +18327,7 @@ export default {
|
|
|
18267
18327
|
"mood_overview_information_text": "Statické nálady sú uložené lokálne na vašom smartfóne. Preto ich nemožno zdieľať s ostatnými používateľmi.",
|
|
18268
18328
|
"mood_overview_warning_max_number_text": "Maximálny počet nálad bol dosiahnutý.",
|
|
18269
18329
|
"mood_preview": "Náhľad",
|
|
18330
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
18270
18331
|
"motion_detection_add_time_schedule_actions_text1": "Akcie",
|
|
18271
18332
|
"motion_detection_add_time_schedule_headline_text": "Pridať nový rozvrh",
|
|
18272
18333
|
"motion_detection_add_time_schedule_selectionfield_text": "Meno",
|
|
@@ -18340,6 +18401,7 @@ export default {
|
|
|
18340
18401
|
"recordings_sd_storage_headline_text": "Úložisko SD karty",
|
|
18341
18402
|
"registration_dialog_button_no": "Nie",
|
|
18342
18403
|
"registration_dialog_button_yes": "Áno",
|
|
18404
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
18343
18405
|
"routines_add_edit_name": "Upraviť názov",
|
|
18344
18406
|
"sensor_deviceselftest": "Samokontrola úspešná. Váš senzor funguje dobre.",
|
|
18345
18407
|
"sensor_deviceselftestfail": "Samokontrola zlyhala. Váš snímač nefunguje správne. Prosím skontrolujte.",
|
|
@@ -18349,6 +18411,7 @@ export default {
|
|
|
18349
18411
|
"settings_leakagealarm": "Alarm úniku vody",
|
|
18350
18412
|
"settings_smokealarm": "Dymový alarm",
|
|
18351
18413
|
"settings_smokealarmrecovery": "Obnova dymového alarmu",
|
|
18414
|
+
"settings_wateralarmrecovery": "Obnovenie vodného alarmu",
|
|
18352
18415
|
"sleepwakeschedule_add_button_text1": "Pridajte plán spánku",
|
|
18353
18416
|
"sleepwakeschedule_add_button_text2": "Pridajte plán budenia",
|
|
18354
18417
|
"sleepwakeschedule_empty_filtering_information_text": "Pre toto filtrovanie neexistujú žiadne plány.",
|
|
@@ -19150,6 +19213,7 @@ export default {
|
|
|
19150
19213
|
"mood_overview_information_text": "De statiska stämningarna lagras lokalt på din smartphone. Därför kan de inte delas med andra användare.",
|
|
19151
19214
|
"mood_overview_warning_max_number_text": "Maximalt antal stämningar har uppnåtts.",
|
|
19152
19215
|
"mood_preview": "Förhandsvisning",
|
|
19216
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
19153
19217
|
"motion_detection_add_time_schedule_actions_text1": "Aktiviteter",
|
|
19154
19218
|
"motion_detection_add_time_schedule_headline_text": "Lägg till ett nytt schema",
|
|
19155
19219
|
"motion_detection_add_time_schedule_selectionfield_text": "Namn",
|
|
@@ -19223,6 +19287,7 @@ export default {
|
|
|
19223
19287
|
"recordings_sd_storage_headline_text": "Lagring på SD-kort",
|
|
19224
19288
|
"registration_dialog_button_no": "Nej",
|
|
19225
19289
|
"registration_dialog_button_yes": "Ja",
|
|
19290
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
19226
19291
|
"routines_add_edit_name": "Redigera namn",
|
|
19227
19292
|
"sensor_deviceselftest": "Självkontrollen lyckades. Din sensor fungerar bra.",
|
|
19228
19293
|
"sensor_deviceselftestfail": "Självkontroll misslyckades. Din sensor fungerar inte korrekt. Vänligen kontrollera.",
|
|
@@ -19232,6 +19297,7 @@ export default {
|
|
|
19232
19297
|
"settings_leakagealarm": "Larm för vattenläckage",
|
|
19233
19298
|
"settings_smokealarm": "Brandvarnare",
|
|
19234
19299
|
"settings_smokealarmrecovery": "Återställning av brandvarnare",
|
|
19300
|
+
"settings_wateralarmrecovery": "Återvinning av vattenlarm",
|
|
19235
19301
|
"sleepwakeschedule_add_button_text1": "Lägg till schema för insomning",
|
|
19236
19302
|
"sleepwakeschedule_add_button_text2": "Lägg till ett schema för uppvaknande",
|
|
19237
19303
|
"sleepwakeschedule_empty_filtering_information_text": "Det finns inga tidtabeller för denna filtrering.",
|
|
@@ -20033,6 +20099,7 @@ export default {
|
|
|
20033
20099
|
"mood_overview_information_text": "Статичні настрої зберігаються локально на вашому смартфоні. Тому ними не можна ділитися з іншими користувачами.",
|
|
20034
20100
|
"mood_overview_warning_max_number_text": "Досягнуто максимальної кількості настроїв.",
|
|
20035
20101
|
"mood_preview": "Попередній перегляд",
|
|
20102
|
+
"mood_resetbutton": "Бажаєте змінити режим ?",
|
|
20036
20103
|
"motion_detection_add_time_schedule_actions_text1": "Дії",
|
|
20037
20104
|
"motion_detection_add_time_schedule_headline_text": "Додати новий розклад",
|
|
20038
20105
|
"motion_detection_add_time_schedule_selectionfield_text": "Ім'я",
|
|
@@ -20106,6 +20173,7 @@ export default {
|
|
|
20106
20173
|
"recordings_sd_storage_headline_text": "Пам’ять карти SD",
|
|
20107
20174
|
"registration_dialog_button_no": "Ні",
|
|
20108
20175
|
"registration_dialog_button_yes": "Так",
|
|
20176
|
+
"reset_mooddescription": "Зверніть увагу, що всі налаштовані режими будуть скинуті.",
|
|
20109
20177
|
"routines_add_edit_name": "Редагувати ім’я",
|
|
20110
20178
|
"sensor_deviceselftest": "Автоматична перевірка пристрою пройшла успішно. Ваш датчик добре працює.",
|
|
20111
20179
|
"sensor_deviceselftestfail": "Помилка автоперевірки. Ваш датчик не працює належним чином. Будь ласка, перевірте.",
|
|
@@ -20115,6 +20183,7 @@ export default {
|
|
|
20115
20183
|
"settings_leakagealarm": "Сповіщення щодо протікання води",
|
|
20116
20184
|
"settings_smokealarm": "Сповіщення щодо при перевищенні рівня концентрації диму",
|
|
20117
20185
|
"settings_smokealarmrecovery": "Ремонт димової сигналізації",
|
|
20186
|
+
"settings_wateralarmrecovery": "Відновлення сигналізації води",
|
|
20118
20187
|
"sleepwakeschedule_add_button_text1": "Додати розклад сну",
|
|
20119
20188
|
"sleepwakeschedule_add_button_text2": "Додати розклад пробудження",
|
|
20120
20189
|
"sleepwakeschedule_empty_filtering_information_text": "Для цього фільтрування немає графіків.",
|
|
@@ -20234,32 +20303,32 @@ export default {
|
|
|
20234
20303
|
"switch_overcharge_headline_text": "Захист від перезарядки",
|
|
20235
20304
|
"switchinching_overview_description_text": "Автоматичне вимкнення пристрою через певний проміжок часу.",
|
|
20236
20305
|
"thermostat_automode": "Автоматичний режим",
|
|
20237
|
-
"thermostat_comforttemp": "
|
|
20306
|
+
"thermostat_comforttemp": "Комфортна температура.",
|
|
20238
20307
|
"thermostat_descriptionrapid": "Щоб відразу встановити значення температури",
|
|
20239
20308
|
"thermostat_descriptionvacation": "Встановити час перерви",
|
|
20240
20309
|
"thermostat_difference": "Різниця між поточною і заданою температурою",
|
|
20241
20310
|
"thermostat_drifttemp": "Похибка температури.",
|
|
20242
20311
|
"thermostat_editauto": "Редагувати автоматичний режим",
|
|
20243
20312
|
"thermostat_enddate": "Дата завершення",
|
|
20244
|
-
"thermostat_endtime": "
|
|
20313
|
+
"thermostat_endtime": "Час завершення",
|
|
20245
20314
|
"thermostat_energysaving": "Температура енергозберігання",
|
|
20246
|
-
"thermostat_error": "
|
|
20247
|
-
"thermostat_maxtime": "
|
|
20315
|
+
"thermostat_error": "Значення часу закінчення має бути більшим, ніж час початку",
|
|
20316
|
+
"thermostat_maxtime": "Не довше 100 днів",
|
|
20248
20317
|
"thermostat_openwindow": "Нагадування про відкрите вікно",
|
|
20249
20318
|
"thermostat_powermode": "Режим потужності",
|
|
20250
20319
|
"thermostat_quicktemp": "Швидкий темп підвищення температури",
|
|
20251
20320
|
"thermostat_refresh": "Оновити",
|
|
20252
|
-
"thermostat_schedule": "
|
|
20253
|
-
"thermostat_setscope": "
|
|
20321
|
+
"thermostat_schedule": "Ви можете регулювати температуру відповідно до свого розкладу",
|
|
20322
|
+
"thermostat_setscope": "Встановити область застосування",
|
|
20254
20323
|
"thermostat_settemp": "Встановити температуру.",
|
|
20255
|
-
"thermostat_settime": "
|
|
20324
|
+
"thermostat_settime": "Встановити час",
|
|
20256
20325
|
"thermostat_startdate": "Дата початку",
|
|
20257
|
-
"thermostat_starttime": "
|
|
20326
|
+
"thermostat_starttime": "Час початку",
|
|
20258
20327
|
"thermostat_tempcurrent": "Поточна температура.",
|
|
20259
20328
|
"thermostat_tempsetting": " Налаштування температури",
|
|
20260
20329
|
"thermostat_title": "Терморегулятор",
|
|
20261
20330
|
"thermostat_triggertimes": "ЧАС ЗАПУСКУ",
|
|
20262
|
-
"thermostat_unit": "
|
|
20331
|
+
"thermostat_unit": "Одиниця виміру:° C",
|
|
20263
20332
|
"thermostat_vacationmode": "Режим перерви",
|
|
20264
20333
|
"time_unit_h": "h",
|
|
20265
20334
|
"timer_ceiling_fan_headline_text": "Таймер",
|
|
@@ -20916,6 +20985,7 @@ export default {
|
|
|
20916
20985
|
"mood_overview_information_text": "A statikus hangulatok helyben tárolódnak az okostelefonon. Ezért nem oszthatók meg más felhasználókkal.",
|
|
20917
20986
|
"mood_overview_warning_max_number_text": "Elérte a hangulatok maximális számát.",
|
|
20918
20987
|
"mood_preview": "Előnézet",
|
|
20988
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
20919
20989
|
"motion_detection_add_time_schedule_actions_text1": "Műveletek",
|
|
20920
20990
|
"motion_detection_add_time_schedule_headline_text": "Új ütemezés hozzáadása",
|
|
20921
20991
|
"motion_detection_add_time_schedule_selectionfield_text": "Név",
|
|
@@ -20989,6 +21059,7 @@ export default {
|
|
|
20989
21059
|
"recordings_sd_storage_headline_text": "SD-kártya-tárhely",
|
|
20990
21060
|
"registration_dialog_button_no": "Nem",
|
|
20991
21061
|
"registration_dialog_button_yes": "Igen",
|
|
21062
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
20992
21063
|
"routines_add_edit_name": "Név szerkesztése",
|
|
20993
21064
|
"sensor_deviceselftest": "Self check successful. Your sensor is working fine.",
|
|
20994
21065
|
"sensor_deviceselftestfail": "Self check failed. Your sensor is not working correctly. Please check.",
|
|
@@ -20998,6 +21069,7 @@ export default {
|
|
|
20998
21069
|
"settings_leakagealarm": "Water leakage alarm",
|
|
20999
21070
|
"settings_smokealarm": "Smoke alarm",
|
|
21000
21071
|
"settings_smokealarmrecovery": "Smoke alarm recovery",
|
|
21072
|
+
"settings_wateralarmrecovery": "Water alarm recovery",
|
|
21001
21073
|
"sleepwakeschedule_add_button_text1": "Alvási ütemezés hozzáadása",
|
|
21002
21074
|
"sleepwakeschedule_add_button_text2": "Ébresztési ütemezés hozzáadása",
|
|
21003
21075
|
"sleepwakeschedule_empty_filtering_information_text": "Ehhez a szűréshez nincsenek ütemezések.",
|
|
@@ -21799,6 +21871,7 @@ export default {
|
|
|
21799
21871
|
"mood_overview_information_text": "Statyczne nastroje są przechowywane lokalnie na smartfonie. Dlatego nie można ich udostępniać innym użytkownikom.",
|
|
21800
21872
|
"mood_overview_warning_max_number_text": "Maksymalna liczba nastrojów została osiągnięta.",
|
|
21801
21873
|
"mood_preview": "Podgląd",
|
|
21874
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
21802
21875
|
"motion_detection_add_time_schedule_actions_text1": "Działania",
|
|
21803
21876
|
"motion_detection_add_time_schedule_headline_text": "Dodaj nowy harmonogram",
|
|
21804
21877
|
"motion_detection_add_time_schedule_selectionfield_text": "Nazwa",
|
|
@@ -21872,6 +21945,7 @@ export default {
|
|
|
21872
21945
|
"recordings_sd_storage_headline_text": "Pamięć karty SD",
|
|
21873
21946
|
"registration_dialog_button_no": "Nie",
|
|
21874
21947
|
"registration_dialog_button_yes": "Tak",
|
|
21948
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
21875
21949
|
"routines_add_edit_name": "Edytuj nazwę",
|
|
21876
21950
|
"sensor_deviceselftest": "Self check successful. Your sensor is working fine.",
|
|
21877
21951
|
"sensor_deviceselftestfail": "Self check failed. Your sensor is not working correctly. Please check.",
|
|
@@ -21881,6 +21955,7 @@ export default {
|
|
|
21881
21955
|
"settings_leakagealarm": "Water leakage alarm",
|
|
21882
21956
|
"settings_smokealarm": "Smoke alarm",
|
|
21883
21957
|
"settings_smokealarmrecovery": "Smoke alarm recovery",
|
|
21958
|
+
"settings_wateralarmrecovery": "Water alarm recovery",
|
|
21884
21959
|
"sleepwakeschedule_add_button_text1": "Dodaj harmonogram snu",
|
|
21885
21960
|
"sleepwakeschedule_add_button_text2": "Dodaj harmonogram budzenia",
|
|
21886
21961
|
"sleepwakeschedule_empty_filtering_information_text": "Nie ma harmonogramów tego filtrowania.",
|
|
@@ -22682,6 +22757,7 @@ export default {
|
|
|
22682
22757
|
"mood_overview_information_text": "Os modos estáticos são armazenados localmente em seu smartphone. Portanto, eles não podem ser compartilhados com outros usuários.",
|
|
22683
22758
|
"mood_overview_warning_max_number_text": "O número máximo de modos foi atingido.",
|
|
22684
22759
|
"mood_preview": "Pré-visualização",
|
|
22760
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
22685
22761
|
"motion_detection_add_time_schedule_actions_text1": "Ações",
|
|
22686
22762
|
"motion_detection_add_time_schedule_headline_text": "Adicionar um novo cronograma",
|
|
22687
22763
|
"motion_detection_add_time_schedule_selectionfield_text": "Nome",
|
|
@@ -22755,6 +22831,7 @@ export default {
|
|
|
22755
22831
|
"recordings_sd_storage_headline_text": "Armazenamento em cartão SD",
|
|
22756
22832
|
"registration_dialog_button_no": "Não",
|
|
22757
22833
|
"registration_dialog_button_yes": "Sim",
|
|
22834
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
22758
22835
|
"routines_add_edit_name": "Editar nome",
|
|
22759
22836
|
"sensor_deviceselftest": "Self check successful. Your sensor is working fine.",
|
|
22760
22837
|
"sensor_deviceselftestfail": "Self check failed. Your sensor is not working correctly. Please check.",
|
|
@@ -22764,6 +22841,7 @@ export default {
|
|
|
22764
22841
|
"settings_leakagealarm": "Water leakage alarm",
|
|
22765
22842
|
"settings_smokealarm": "Smoke alarm",
|
|
22766
22843
|
"settings_smokealarmrecovery": "Smoke alarm recovery",
|
|
22844
|
+
"settings_wateralarmrecovery": "Water alarm recovery",
|
|
22767
22845
|
"sleepwakeschedule_add_button_text1": "Adicionar horário de sono",
|
|
22768
22846
|
"sleepwakeschedule_add_button_text2": "Adicionar horário de despertar",
|
|
22769
22847
|
"sleepwakeschedule_empty_filtering_information_text": "Não há agendamentos para essa filtragem.",
|
|
@@ -23565,6 +23643,7 @@ export default {
|
|
|
23565
23643
|
"mood_overview_information_text": "Статичные настроения хранятся локально на вашем смартфоне. Поэтому ими нельзя поделиться с другими пользователями.",
|
|
23566
23644
|
"mood_overview_warning_max_number_text": "Достигнуто максимальное количество настроений.",
|
|
23567
23645
|
"mood_preview": "Предварительный просмотр",
|
|
23646
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
23568
23647
|
"motion_detection_add_time_schedule_actions_text1": "Действия",
|
|
23569
23648
|
"motion_detection_add_time_schedule_headline_text": "Добавить новое расписание",
|
|
23570
23649
|
"motion_detection_add_time_schedule_selectionfield_text": "Имя",
|
|
@@ -23638,6 +23717,7 @@ export default {
|
|
|
23638
23717
|
"recordings_sd_storage_headline_text": "Хранение на SD-карте",
|
|
23639
23718
|
"registration_dialog_button_no": "Нет",
|
|
23640
23719
|
"registration_dialog_button_yes": "Да",
|
|
23720
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
23641
23721
|
"routines_add_edit_name": "Редактировать имя",
|
|
23642
23722
|
"sensor_deviceselftest": "Self check successful. Your sensor is working fine.",
|
|
23643
23723
|
"sensor_deviceselftestfail": "Self check failed. Your sensor is not working correctly. Please check.",
|
|
@@ -23647,6 +23727,7 @@ export default {
|
|
|
23647
23727
|
"settings_leakagealarm": "Water leakage alarm",
|
|
23648
23728
|
"settings_smokealarm": "Smoke alarm",
|
|
23649
23729
|
"settings_smokealarmrecovery": "Smoke alarm recovery",
|
|
23730
|
+
"settings_wateralarmrecovery": "Water alarm recovery",
|
|
23650
23731
|
"sleepwakeschedule_add_button_text1": "Добавить график сна",
|
|
23651
23732
|
"sleepwakeschedule_add_button_text2": "Добавить расписание пробуждения",
|
|
23652
23733
|
"sleepwakeschedule_empty_filtering_information_text": "Для этого фильтра нет расписания.",
|
|
@@ -24448,6 +24529,7 @@ export default {
|
|
|
24448
24529
|
"mood_overview_information_text": "Statik modlar akıllı telefonunuzda yerel olarak saklanır. Bu nedenle diğer kullanıcılarla paylaşılamazlar.",
|
|
24449
24530
|
"mood_overview_warning_max_number_text": "Maksimum mod sayısına ulaşıldı.",
|
|
24450
24531
|
"mood_preview": "Önizleme",
|
|
24532
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
24451
24533
|
"motion_detection_add_time_schedule_actions_text1": "Eylemler",
|
|
24452
24534
|
"motion_detection_add_time_schedule_headline_text": "Yeni bir program ekle",
|
|
24453
24535
|
"motion_detection_add_time_schedule_selectionfield_text": "İsim",
|
|
@@ -24521,6 +24603,7 @@ export default {
|
|
|
24521
24603
|
"recordings_sd_storage_headline_text": "SD kart depolama",
|
|
24522
24604
|
"registration_dialog_button_no": "Hayır",
|
|
24523
24605
|
"registration_dialog_button_yes": "Evet",
|
|
24606
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
24524
24607
|
"routines_add_edit_name": "Adı Düzenle",
|
|
24525
24608
|
"sensor_deviceselftest": "Self check successful. Your sensor is working fine.",
|
|
24526
24609
|
"sensor_deviceselftestfail": "Self check failed. Your sensor is not working correctly. Please check.",
|
|
@@ -24530,6 +24613,7 @@ export default {
|
|
|
24530
24613
|
"settings_leakagealarm": "Water leakage alarm",
|
|
24531
24614
|
"settings_smokealarm": "Smoke alarm",
|
|
24532
24615
|
"settings_smokealarmrecovery": "Smoke alarm recovery",
|
|
24616
|
+
"settings_wateralarmrecovery": "Water alarm recovery",
|
|
24533
24617
|
"sleepwakeschedule_add_button_text1": "Uyku programı ekle",
|
|
24534
24618
|
"sleepwakeschedule_add_button_text2": "Uyandırma programı ekle",
|
|
24535
24619
|
"sleepwakeschedule_empty_filtering_information_text": "Bu filtreleme için program yok.",
|
|
@@ -25331,6 +25415,7 @@ export default {
|
|
|
25331
25415
|
"mood_overview_information_text": "Os modos estáticos são armazenados localmente em seu smartphone. Portanto, eles não podem ser compartilhados com outros usuários.",
|
|
25332
25416
|
"mood_overview_warning_max_number_text": "O número máximo de modos foi atingido.",
|
|
25333
25417
|
"mood_preview": "Pré-visualização",
|
|
25418
|
+
"mood_resetbutton": "Do you want to reset the moods?",
|
|
25334
25419
|
"motion_detection_add_time_schedule_actions_text1": "Ações",
|
|
25335
25420
|
"motion_detection_add_time_schedule_headline_text": "Adicionar um novo cronograma",
|
|
25336
25421
|
"motion_detection_add_time_schedule_selectionfield_text": "Nome",
|
|
@@ -25404,6 +25489,7 @@ export default {
|
|
|
25404
25489
|
"recordings_sd_storage_headline_text": "Armazenamento em cartão SD",
|
|
25405
25490
|
"registration_dialog_button_no": "Não",
|
|
25406
25491
|
"registration_dialog_button_yes": "Sim",
|
|
25492
|
+
"reset_mooddescription": "Note that all the customized moods will be resetted.",
|
|
25407
25493
|
"routines_add_edit_name": "Editar nome",
|
|
25408
25494
|
"sensor_deviceselftest": "Self check successful. Your sensor is working fine.",
|
|
25409
25495
|
"sensor_deviceselftestfail": "Self check failed. Your sensor is not working correctly. Please check.",
|
|
@@ -25413,6 +25499,7 @@ export default {
|
|
|
25413
25499
|
"settings_leakagealarm": "Water leakage alarm",
|
|
25414
25500
|
"settings_smokealarm": "Smoke alarm",
|
|
25415
25501
|
"settings_smokealarmrecovery": "Smoke alarm recovery",
|
|
25502
|
+
"settings_wateralarmrecovery": "Water alarm recovery",
|
|
25416
25503
|
"sleepwakeschedule_add_button_text1": "Adicionar horário de sono",
|
|
25417
25504
|
"sleepwakeschedule_add_button_text2": "Adicionar horário de despertar",
|
|
25418
25505
|
"sleepwakeschedule_empty_filtering_information_text": "Não há agendamentos para essa filtragem.",
|