mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-22 16:56:35 +00:00
Fix translation download and add empty languages (#5824)
This commit is contained in:
parent
29ed1144d5
commit
75ed0f2f99
@ -1,9 +1,14 @@
|
||||
const del = require("del");
|
||||
const gulp = require("gulp");
|
||||
const fs = require("fs");
|
||||
const mapStream = require("map-stream");
|
||||
|
||||
const inDir = "translations/frontend";
|
||||
const downloadDir = inDir + "/downloads";
|
||||
const inDirFrontend = "translations/frontend";
|
||||
const inDirBackend = "translations/backend";
|
||||
const downloadDir = "translations/downloads";
|
||||
const srcMeta = "src/translations/translationMetadata.json";
|
||||
|
||||
const encoding = "utf8";
|
||||
|
||||
const tasks = [];
|
||||
|
||||
@ -53,9 +58,25 @@ gulp.task(taskName, function () {
|
||||
});
|
||||
tasks.push(taskName);
|
||||
|
||||
taskName = "check-all-files-exist";
|
||||
gulp.task(taskName, function () {
|
||||
const file = fs.readFileSync(srcMeta, { encoding });
|
||||
const meta = JSON.parse(file);
|
||||
Object.keys(meta).forEach((lang) => {
|
||||
if (!fs.existsSync(`${inDirFrontend}/${lang}.json`)) {
|
||||
fs.writeFileSync(`${inDirFrontend}/${lang}.json`, JSON.stringify({}));
|
||||
}
|
||||
if (!fs.existsSync(`${inDirBackend}/${lang}.json`)) {
|
||||
fs.writeFileSync(`${inDirBackend}/${lang}.json`, JSON.stringify({}));
|
||||
}
|
||||
});
|
||||
return Promise.resolve();
|
||||
});
|
||||
tasks.push(taskName);
|
||||
|
||||
taskName = "move-downloaded-translations";
|
||||
gulp.task(taskName, function () {
|
||||
return gulp.src(`${downloadDir}/*.json`).pipe(gulp.dest(inDir));
|
||||
return gulp.src(`${downloadDir}/*.json`).pipe(gulp.dest(inDirFrontend));
|
||||
});
|
||||
tasks.push(taskName);
|
||||
|
||||
@ -65,6 +86,7 @@ gulp.task(
|
||||
gulp.series(
|
||||
"check-translations-html",
|
||||
"move-downloaded-translations",
|
||||
"check-all-files-exist",
|
||||
"clean-downloaded-translations"
|
||||
)
|
||||
);
|
||||
|
1
translations/backend/en-GB.json
Normal file
1
translations/backend/en-GB.json
Normal file
@ -0,0 +1 @@
|
||||
{}
|
1
translations/backend/fy.json
Normal file
1
translations/backend/fy.json
Normal file
@ -0,0 +1 @@
|
||||
{}
|
1
translations/backend/gl.json
Normal file
1
translations/backend/gl.json
Normal file
@ -0,0 +1 @@
|
||||
{}
|
@ -199,6 +199,8 @@
|
||||
"stopped": "Gestop"
|
||||
},
|
||||
"default": {
|
||||
"off": "Af",
|
||||
"on": "Aan",
|
||||
"unavailable": "Nie beskikbaar nie",
|
||||
"unknown": "Onbekend"
|
||||
},
|
||||
@ -1010,8 +1012,10 @@
|
||||
}
|
||||
},
|
||||
"integrations": {
|
||||
"add_integration": "Stel 'n nuwe integrasie op",
|
||||
"caption": "Integrasies",
|
||||
"config_entry": {
|
||||
"delete": "Verwyder",
|
||||
"delete_confirm": "Is u seker u wil hierdie integrasie skrap?",
|
||||
"device_unavailable": "toestel nie beskikbaar nie",
|
||||
"entity_unavailable": "entiteit nie beskikbaar nie",
|
||||
@ -1021,7 +1025,10 @@
|
||||
"no_area": "Geen Gebied",
|
||||
"no_device": "Entiteite sonder toestelle",
|
||||
"no_devices": "Hierdie integrasie het geen toestelle nie.",
|
||||
"restart_confirm": "Herbegin Home Assistant om hierdie integrasie te voltooi"
|
||||
"options": "Opsies",
|
||||
"rename": "Hernoem",
|
||||
"restart_confirm": "Herbegin Home Assistant om hierdie integrasie te voltooi",
|
||||
"system_options": "Stelselopsies"
|
||||
},
|
||||
"config_flow": {
|
||||
"aborted": "Gestaak",
|
||||
@ -1055,7 +1062,12 @@
|
||||
},
|
||||
"integration_not_found": "Integrasie nie gevind nie.",
|
||||
"new": "Stel 'n nuwe integrasie op",
|
||||
"none": "Nog niks is opgestel nie"
|
||||
"no_integrations": "Lyk asof jy nog nie enige integations gekonfigureer het nie. Klik op die knoppie hieronder om jou eerste integrasie te voeg!",
|
||||
"none": "Nog niks is opgestel nie",
|
||||
"none_found": "Geen integrasies gevind nie",
|
||||
"none_found_detail": "Verstel jou soekkriteria.",
|
||||
"rename_dialog": "Redigeer die naam van hierdie config-inskrywing",
|
||||
"rename_input_label": "Inskrywingsnaam"
|
||||
},
|
||||
"introduction": "Hier is dit moontlik om u komponente en Home Assistant op te stel. Tans kan alles in verband met die gebruikerskoppelvlak nog nie hier opgestel word nie, maar ons werk daaraan.",
|
||||
"lovelace": {
|
||||
@ -1515,7 +1527,8 @@
|
||||
},
|
||||
"warning": {
|
||||
"entity_non_numeric": "Entiteit is nie-numeriese: {entity}",
|
||||
"entity_not_found": "Entiteit nie beskikbaar nie: {entity}"
|
||||
"entity_not_found": "Entiteit nie beskikbaar nie: {entity}",
|
||||
"entity_unavailable": "{entity} is nie tans beskikbaar nie."
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
|
@ -178,6 +178,8 @@
|
||||
"stopped": "موقف"
|
||||
},
|
||||
"default": {
|
||||
"off": "مطفئ",
|
||||
"on": "مشغل",
|
||||
"unavailable": "غير متوفر",
|
||||
"unknown": "غير معروف"
|
||||
},
|
||||
@ -267,9 +269,19 @@
|
||||
"returning": "العودة"
|
||||
},
|
||||
"weather": {
|
||||
"clear-night": "صافي، ليلا",
|
||||
"cloudy": "Bewolkt",
|
||||
"fog": "Mist",
|
||||
"sunny": "مشمس"
|
||||
"lightning": "برق",
|
||||
"lightning-rainy": "برق ، ممطر",
|
||||
"partlycloudy": "غائم جزئيا",
|
||||
"pouring": "أمطار غزيرة",
|
||||
"rainy": "ماطر",
|
||||
"snowy": "ثلوج",
|
||||
"snowy-rainy": "ثلوج، ماطر",
|
||||
"sunny": "مشمس",
|
||||
"windy": "عاصف",
|
||||
"windy-variant": "عاصف"
|
||||
},
|
||||
"zwave": {
|
||||
"default": {
|
||||
@ -292,7 +304,16 @@
|
||||
},
|
||||
"card": {
|
||||
"alarm_control_panel": {
|
||||
"arm_custom_bypass": "تجاوز مخصص"
|
||||
"arm_away": "تفعيل خارج المنزل",
|
||||
"arm_custom_bypass": "تجاوز مخصص",
|
||||
"arm_home": "تفعيل في المنزل",
|
||||
"clear_code": "مسح",
|
||||
"code": "الرمز",
|
||||
"disarm": "تعطيل"
|
||||
},
|
||||
"automation": {
|
||||
"last_triggered": "آخر تشغيل",
|
||||
"trigger": "تشغيل"
|
||||
},
|
||||
"camera": {
|
||||
"not_available": "الصورة غير متاحة"
|
||||
@ -326,6 +347,12 @@
|
||||
"persistent_notification": {
|
||||
"dismiss": "رفض"
|
||||
},
|
||||
"scene": {
|
||||
"activate": "تفعيل"
|
||||
},
|
||||
"script": {
|
||||
"execute": "نفذ"
|
||||
},
|
||||
"vacuum": {
|
||||
"actions": {
|
||||
"resume_cleaning": "استئناف التنظيف",
|
||||
@ -344,8 +371,14 @@
|
||||
},
|
||||
"weather": {
|
||||
"attributes": {
|
||||
"precipitation": "ترسب"
|
||||
"air_pressure": "الضغط الجوي",
|
||||
"humidity": "الرطوبة",
|
||||
"precipitation": "ترسب",
|
||||
"temperature": "الحرارة",
|
||||
"visibility": "الرؤية",
|
||||
"wind_speed": "سرعة الرياح"
|
||||
},
|
||||
"forecast": "التوقعات",
|
||||
"high": "عالي",
|
||||
"low": "منخفض"
|
||||
}
|
||||
@ -354,6 +387,9 @@
|
||||
"cancel": "إلغاء",
|
||||
"delete": "حذف",
|
||||
"loading": "جار التحميل",
|
||||
"next": "التالى",
|
||||
"previous": "السابق",
|
||||
"refresh": "تحديث",
|
||||
"successfully_deleted": "تم الحذف بنجاح",
|
||||
"undo": "تراجع"
|
||||
},
|
||||
@ -363,6 +399,10 @@
|
||||
"entity": "الجهاز"
|
||||
}
|
||||
},
|
||||
"history_charts": {
|
||||
"loading_history": "جارٍ تحميل سجل الحالات ...",
|
||||
"no_history_found": "لم يتم العثور على سجل الحالات."
|
||||
},
|
||||
"relative_time": {
|
||||
"never": "Nooit"
|
||||
},
|
||||
@ -415,7 +455,19 @@
|
||||
"password": "كلمه السر",
|
||||
"remember": "تذكر"
|
||||
},
|
||||
"notification_drawer": {
|
||||
"click_to_configure": "انقر هنا لتعديل {entity}",
|
||||
"empty": "لا إشعارات",
|
||||
"title": "إشعارات"
|
||||
},
|
||||
"notification_toast": {
|
||||
"connection_lost": "انقطع الاتصال. جارٍ إعادة الاتصال ..."
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "تقاويمي",
|
||||
"today": "اليوم"
|
||||
},
|
||||
"config": {
|
||||
"areas": {
|
||||
"data_table": {
|
||||
@ -476,6 +528,9 @@
|
||||
"learn_more": "معرفة المزيد عن الشروط",
|
||||
"type_select": "نوع الشرط",
|
||||
"type": {
|
||||
"not": {
|
||||
"label": "ليس"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "فوق",
|
||||
"below": "تحت",
|
||||
@ -682,6 +737,7 @@
|
||||
"new": "إعداد تكامل جديد",
|
||||
"no_integrations": "يبدوأن ليس هناك أي integations بعد. انقر على الزر أدناه لإضافة واحدة!",
|
||||
"none": "لم يتم الإعداد بعد",
|
||||
"none_found_detail": "اضبط معايير البحث.",
|
||||
"rename_dialog": "تعديل الاسم",
|
||||
"rename_input_label": "الاسم"
|
||||
},
|
||||
@ -924,6 +980,7 @@
|
||||
},
|
||||
"save_config": {
|
||||
"cancel": "لا يهم",
|
||||
"close": "إغلاق",
|
||||
"empty_config": "ابدأ بلوحة معلومات فارغة"
|
||||
},
|
||||
"view": {
|
||||
@ -957,6 +1014,7 @@
|
||||
"playback_title": "تشغيل الرسالة"
|
||||
},
|
||||
"page-authorize": {
|
||||
"abort_intro": "إلغاء الدخول",
|
||||
"form": {
|
||||
"providers": {
|
||||
"command_line": {
|
||||
@ -969,13 +1027,17 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"working": "الرجاء الانتظار"
|
||||
},
|
||||
"initializing": "جار التهيئة"
|
||||
},
|
||||
"page-onboarding": {
|
||||
"user": {
|
||||
"data": {
|
||||
"password_confirm": "تأكيد كلمة السر"
|
||||
"password": "كلمه السر",
|
||||
"password_confirm": "تأكيد كلمة السر",
|
||||
"username": "المستخدم"
|
||||
},
|
||||
"error": {
|
||||
"password_not_match": "كلمة السر غير مطابقة",
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Спряна"
|
||||
},
|
||||
"default": {
|
||||
"off": "Изключен",
|
||||
"on": "Включен",
|
||||
"unavailable": "Недостъпен",
|
||||
"unknown": "Неизвестно"
|
||||
},
|
||||
@ -425,6 +427,7 @@
|
||||
"attributes": {
|
||||
"air_pressure": "Въздушно налягане",
|
||||
"humidity": "Влажност",
|
||||
"precipitation": "Валежи",
|
||||
"temperature": "Температура",
|
||||
"visibility": "Видимост",
|
||||
"wind_speed": "Скорост на вятъра"
|
||||
@ -452,8 +455,10 @@
|
||||
},
|
||||
"common": {
|
||||
"cancel": "Отмени",
|
||||
"delete": "Изтриване",
|
||||
"loading": "Зареждане",
|
||||
"save": "Запазване",
|
||||
"successfully_deleted": "Успешно изтриване",
|
||||
"successfully_saved": "Успешно запазено"
|
||||
},
|
||||
"components": {
|
||||
@ -491,6 +496,24 @@
|
||||
"enable_new_entities_label": "Активирай новодобавените устройства.",
|
||||
"title": "Системни опции за {integration}"
|
||||
},
|
||||
"entity_registry": {
|
||||
"editor": {
|
||||
"delete": "Изтриване",
|
||||
"update": "Актуализация"
|
||||
},
|
||||
"no_unique_id": "Този обект няма уникален идентификатор, затова неговите настройки не могат да бъдат управлявани от потребителския интерфейс."
|
||||
},
|
||||
"helper_settings": {
|
||||
"input_number": {
|
||||
"step": "Размер на стъпката"
|
||||
},
|
||||
"input_text": {
|
||||
"max": "Максимална дължина",
|
||||
"min": "Минимална дължина"
|
||||
},
|
||||
"platform_not_loaded": "{platform} интеграцията не е заредена. Моля, добавете я във вашата конфигурация като добавите 'default_config:' или '{platform}:'.",
|
||||
"yaml_not_editable": "Настройките на този обект не могат да бъдат редактирани. Могат да се конфигурират само обектите, създадени от потребителския интерфейс."
|
||||
},
|
||||
"more_info_control": {
|
||||
"script": {
|
||||
"last_action": "Последно задействане"
|
||||
@ -504,6 +527,12 @@
|
||||
"title": "Инструкции за актуализиране"
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"entities": "Обекти",
|
||||
"no_entities": "Няма обекти",
|
||||
"recent_messages": "{n} последно получено(и) съобщение(я)",
|
||||
"show_as_yaml": "Покажи като YAML"
|
||||
},
|
||||
"options_flow": {
|
||||
"form": {
|
||||
"header": "Опции"
|
||||
@ -517,6 +546,9 @@
|
||||
"label_voice": "Въведете и натиснете „Enter“ или докоснете микрофона, за да говорите"
|
||||
},
|
||||
"zha_device_info": {
|
||||
"buttons": {
|
||||
"zigbee_information": "Zigbee информация"
|
||||
},
|
||||
"manuf": "от {manufacturer}",
|
||||
"no_area": "Без област",
|
||||
"services": {
|
||||
@ -556,6 +588,13 @@
|
||||
"config": {
|
||||
"areas": {
|
||||
"caption": "Регистър на областите",
|
||||
"data_table": {
|
||||
"area": "Област",
|
||||
"devices": "Устройства"
|
||||
},
|
||||
"delete": {
|
||||
"confirmation_title": "Сигурни ли сте, че искате да изтриете тази област?"
|
||||
},
|
||||
"description": "Преглед на всички области във Вашия дом.",
|
||||
"editor": {
|
||||
"create": "СЪЗДАВАНЕ",
|
||||
@ -564,10 +603,12 @@
|
||||
"update": "АКТУАЛИЗАЦИЯ"
|
||||
},
|
||||
"picker": {
|
||||
"create_area": "Създайте област",
|
||||
"header": "Регистър на областите",
|
||||
"integrations_page": "Интеграции",
|
||||
"introduction": "Областите се използват за организиране на местоположението на устройствата. Тази информация ще се използва в Home Assistant, за да ви помогне при организирането на Вашия интерфейс, права за достъп и интеграции с други системи.",
|
||||
"introduction2": "За да поставите устройства в дадена област, използвайте връзката по-долу, за да отидете на страницата за интеграции, след което кликнете върху конфигурирана интеграция, за да видите картите на устройството."
|
||||
"introduction2": "За да поставите устройства в дадена област, използвайте връзката по-долу, за да отидете на страницата за интеграции, след което кликнете върху конфигурирана интеграция, за да видите картите на устройството.",
|
||||
"no_areas": "Изглежда, че все още нямате области!"
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
@ -756,6 +797,9 @@
|
||||
"picker": {
|
||||
"add_automation": "Добавяне на автоматизация",
|
||||
"header": "Редактор на автоматизации",
|
||||
"headers": {
|
||||
"name": "Име"
|
||||
},
|
||||
"introduction": "Редакторът на автоматизации позволява да създавате и редактирате автоматизации. Моля, последвайте препратката по-долу за да прочетете инструкциите за да се уверите, че Home Assistant е правилно конфигуриран.",
|
||||
"learn_more": "Научете повече за автоматизациите",
|
||||
"no_automations": "Не можахме да намерим никакви автоматизации подлежащи на редакция",
|
||||
@ -763,6 +807,14 @@
|
||||
}
|
||||
},
|
||||
"cloud": {
|
||||
"account": {
|
||||
"alexa": {
|
||||
"config_documentation": "Документация за конфигурацията"
|
||||
},
|
||||
"google": {
|
||||
"config_documentation": "Документация за конфигурацията"
|
||||
}
|
||||
},
|
||||
"caption": "Home Assistant Cloud",
|
||||
"description_features": "Контролирайте дома си, и когато не сте вкъщи, активирайте интегрирациите с Alexa и Google Assistant.",
|
||||
"description_login": "Влезли сте като {email}",
|
||||
@ -803,7 +855,13 @@
|
||||
},
|
||||
"devices": {
|
||||
"caption": "Устройства",
|
||||
"description": "Управление на свързани устройства"
|
||||
"confirm_delete": "Сигурни ли сте, че искате да изтриете устройството?",
|
||||
"delete": "Изтриване",
|
||||
"description": "Управление на свързани устройства",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Добавете към Lovelace"
|
||||
},
|
||||
"no_devices": "Няма устройства"
|
||||
},
|
||||
"entities": {
|
||||
"caption": "Регистър на обектите",
|
||||
@ -814,10 +872,16 @@
|
||||
"introduction2": "Използвайте регистъра на обектите, за да промените името, идентификатора на обекта или да премахнете записа от Home Assistant. Моля имайте на предвид, че премахването на записа от регистъра на обектите няма да премахне обекта. За да направите това, следвайте препратката по-долу и я премахнете от страницата за интеграции."
|
||||
}
|
||||
},
|
||||
"filtering": {
|
||||
"clear": "Изчистване",
|
||||
"filtering_by": "Филтриране по"
|
||||
},
|
||||
"header": "Конфигуриране на Home Assistant",
|
||||
"integrations": {
|
||||
"add_integration": "Добавяне на интеграция",
|
||||
"caption": "Интеграции",
|
||||
"config_entry": {
|
||||
"delete": "Изтриване",
|
||||
"delete_confirm": "Сигурни ли сте, че искате да изтриете интеграцията?",
|
||||
"device_unavailable": "недостъпно устройство",
|
||||
"entity_unavailable": "недостъпен",
|
||||
@ -827,7 +891,10 @@
|
||||
"no_area": "Без област",
|
||||
"no_device": "Обекти без устройства",
|
||||
"no_devices": "Тази интеграция няма устройства.",
|
||||
"restart_confirm": "Рестартирайте Home Assistant за да завършите премахването на интеграцията"
|
||||
"options": "Настройки",
|
||||
"rename": "Преименуване",
|
||||
"restart_confirm": "Рестартирайте Home Assistant за да завършите премахването на интеграцията",
|
||||
"system_options": "Системни настройки"
|
||||
},
|
||||
"config_flow": {
|
||||
"external_step": {
|
||||
@ -839,10 +906,33 @@
|
||||
"configured": "Конфигуриран",
|
||||
"description": "Управление и настройка на интеграции",
|
||||
"discovered": "Открити",
|
||||
"integration": "интеграция",
|
||||
"new": "Настройте нова интеграция",
|
||||
"none": "Нищо не е конфигурирано към момента"
|
||||
"no_integrations": "Изглежда, че все още нямате конфигурирани интеграции. Кликнете върху бутона по-долу, за да добавите първата си интеграция!",
|
||||
"none": "Нищо не е конфигурирано към момента",
|
||||
"none_found": "Не са намерени интеграции",
|
||||
"none_found_detail": "Коригирайте критериите си за търсене.",
|
||||
"rename_dialog": "Редактирайте името на този запис в конфигурацията"
|
||||
},
|
||||
"introduction": "Тук е възможно да конфигурирате Вашите компоненти и Home Assistant. Не всичко е възможно да се конфигурира от Интерфейса, но работим по върпоса.",
|
||||
"lovelace": {
|
||||
"dashboards": {
|
||||
"cant_edit_default": "Стандартното Lovelace табло не може да се редактира от потребителския интерфейс. Можете да го скриете, като зададете друго табло по подразбиране.",
|
||||
"cant_edit_yaml": "Табла, дефинирани в YAML, не могат да бъдат редактирани от потребителския интерфейс. Променете ги в configuration.yaml.",
|
||||
"default_dashboard": "Това е таблото по подразбиране",
|
||||
"detail": {
|
||||
"icon": "Икона",
|
||||
"title": "Заглавие",
|
||||
"url_error_msg": "URL адресът трябва да съдържа '-' и не може да съдържа интервали или специални символи, с изключение на '_' и '-'"
|
||||
},
|
||||
"picker": {
|
||||
"open": "Отворен"
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"cant_edit_yaml": "Използвате Lovelace в YAML режим, следователно не можете да управлявате ресурсите си чрез потребителския интерфейс. Управлявайте ги в configuration.yaml."
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"caption": "Хора",
|
||||
"description": "Управлявайте хората, които следите от Home Assistant.",
|
||||
@ -853,9 +943,22 @@
|
||||
"name": "Име"
|
||||
}
|
||||
},
|
||||
"scene": {
|
||||
"picker": {
|
||||
"headers": {
|
||||
"name": "Име"
|
||||
}
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"caption": "Скриптове",
|
||||
"description": "Създаване и редактиране на скриптове"
|
||||
"description": "Създаване и редактиране на скриптове",
|
||||
"picker": {
|
||||
"headers": {
|
||||
"name": "Име"
|
||||
},
|
||||
"show_info": "Показване на информация за скрипта"
|
||||
}
|
||||
},
|
||||
"server_control": {
|
||||
"caption": "Управление на сървъра",
|
||||
@ -865,7 +968,7 @@
|
||||
"automation": "Презареждане на автоматизациите",
|
||||
"core": "Презареждане на местоположението и персонализациите",
|
||||
"group": "Презареждане на гурпите",
|
||||
"heading": "Презареждане на конфигурацията",
|
||||
"heading": "Презареждане на YAML конфигурацията",
|
||||
"introduction": "Някои части от Home Assistant могат да се презаредят без да е необходимо рестартиране. Натискането на Презареди ще отхвърли настоящата конфигурация и ще зареди новата конфигурация.",
|
||||
"scene": "Презареди сцените",
|
||||
"script": "Презареждане на скриптовете"
|
||||
@ -899,10 +1002,19 @@
|
||||
"description": "Управление на потребителите",
|
||||
"editor": {
|
||||
"activate_user": "Активиране на потребител",
|
||||
"admin": "Администратор",
|
||||
"caption": "Преглед на потребителя",
|
||||
"change_password": "Смяна на парола",
|
||||
"deactivate_user": "Деактивиране на потребителя",
|
||||
"delete_user": "Изтриване на потребител"
|
||||
"delete_user": "Изтриване на потребител",
|
||||
"name": "Име",
|
||||
"system_generated_users_not_editable": "Неуспешно обновяване на системно генерираните потребители"
|
||||
},
|
||||
"picker": {
|
||||
"headers": {
|
||||
"group": "Група",
|
||||
"name": "Име"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zha": {
|
||||
@ -912,7 +1024,13 @@
|
||||
"spinner": "Търсене на ZHA Zigbee устройства..."
|
||||
},
|
||||
"caption": "ZHA",
|
||||
"description": "Управление на Zigbee мрежата за домашна автоматизация"
|
||||
"description": "Управление на Zigbee мрежата за домашна автоматизация",
|
||||
"node_management": {
|
||||
"hint_wakeup": "Някои устройства като сензорите Xiaomi имат бутон за събуждане, който можете да натискате на интервали от ~ 5 секунди, които поддържат устройствата будни, докато взаимодействате с тях."
|
||||
}
|
||||
},
|
||||
"zone": {
|
||||
"edit_home_zone": "Радиусът на зоната \"Дом\" все още не може да бъде редактиран. Плъзнете маркера на картата, за да преместите въпросната зона."
|
||||
},
|
||||
"zwave": {
|
||||
"caption": "Z-Wave",
|
||||
@ -1026,6 +1144,9 @@
|
||||
"entities": {
|
||||
"toggle": "Превключване на обекти."
|
||||
},
|
||||
"iframe": {
|
||||
"name": "Уеб страница"
|
||||
},
|
||||
"vertical-stack": {
|
||||
"name": "Вертикална колона"
|
||||
},
|
||||
@ -1033,6 +1154,9 @@
|
||||
"name": "Прогноза за времето"
|
||||
}
|
||||
},
|
||||
"cardpicker": {
|
||||
"no_description": "Няма налично описание."
|
||||
},
|
||||
"edit_card": {
|
||||
"add": "Добавяне на карта",
|
||||
"delete": "Изтриване на карта",
|
||||
@ -1051,7 +1175,10 @@
|
||||
"add": "Добавяне на изглед",
|
||||
"delete": "Изтриване на изгледа",
|
||||
"edit": "Редактиране на изгледа",
|
||||
"header": "Конфигурация на изглед"
|
||||
"header": "Конфигурация на изглед",
|
||||
"visibility": {
|
||||
"select_users": "Изберете кои потребители да виждат този изглед в навигацията"
|
||||
}
|
||||
},
|
||||
"header": "Редактиране на потребителския интерфейс",
|
||||
"menu": {
|
||||
@ -1065,6 +1192,7 @@
|
||||
"para_no_id": "Този елемент няма идентификатор. Моля, добавете идентификатор към този елемент в \"ui-lovelace.yaml\"."
|
||||
},
|
||||
"raw_editor": {
|
||||
"error_remove": "Конфигурацията не може да бъде премахната: {error}",
|
||||
"header": "Редактиране на конфигурацията",
|
||||
"save": "Запазване",
|
||||
"saved": "Запазено",
|
||||
@ -1075,7 +1203,13 @@
|
||||
"header": "Поемете контрол над потребителския интерфейс на Lovelace",
|
||||
"para": "По подразбиране Home Assistant поддържа потребителския интерфейс, като го актуализира, когато нови обекти или компоненти на Lovelace станат достъпни. Ако поемете контрол, ние вече няма да правим автоматично промени вместо вас.",
|
||||
"para_sure": "Наистина ли искате да поемете управлението на потребителския интерфейс?",
|
||||
"save": "Поемете контрола"
|
||||
"save": "Поемете контрола",
|
||||
"yaml_mode": "Използвате YAML режим за това табло, което означава, че не можете да промените вашата Lovelace конфигурация от потребителския интерфейс. Ако искате да управлявате това табло от потребителския интерфейс, премахнете „mode: yaml“ от вашата Lovelace конфигурация в „configuration.yaml.“."
|
||||
},
|
||||
"view": {
|
||||
"panel_mode": {
|
||||
"warning_multiple_cards": "Този изглед съдържа повече от една карта, но изгледът на панел може да показва само 1 карта."
|
||||
}
|
||||
}
|
||||
},
|
||||
"menu": {
|
||||
@ -1084,9 +1218,14 @@
|
||||
"refresh": "Обновяване"
|
||||
},
|
||||
"reload_lovelace": "Презареждане на Lovelace",
|
||||
"views": {
|
||||
"confirm_delete": "Изтриване на изгледа?"
|
||||
},
|
||||
"warning": {
|
||||
"attribute_not_found": "Атрибут {attribute} не е наличен в: {entity}",
|
||||
"entity_non_numeric": "Обектът не е числов: {entity}",
|
||||
"entity_not_found": "Обектът е недостъпен: {entity}"
|
||||
"entity_not_found": "Обектът е недостъпен: {entity}",
|
||||
"entity_unavailable": "{entity} в момента не е наличен"
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
@ -1267,6 +1406,7 @@
|
||||
},
|
||||
"profile": {
|
||||
"advanced_mode": {
|
||||
"description": "Отключва разширени функции.",
|
||||
"title": "Разширен режим"
|
||||
},
|
||||
"change_password": {
|
||||
@ -1278,6 +1418,10 @@
|
||||
"submit": "Промяна"
|
||||
},
|
||||
"current_user": "В момента сте влезли като {fullName}.",
|
||||
"dashboard": {
|
||||
"dropdown_label": "Табло",
|
||||
"header": "Табло"
|
||||
},
|
||||
"force_narrow": {
|
||||
"description": "Това ще скрие страничната лента по подразбиране, подобно на изгледа в мобилната версия.",
|
||||
"header": "Винаги скривай страничната лента"
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Aturat"
|
||||
},
|
||||
"default": {
|
||||
"off": "Off",
|
||||
"on": "On",
|
||||
"unavailable": "No disponible",
|
||||
"unknown": "Desconegut"
|
||||
},
|
||||
@ -471,11 +473,15 @@
|
||||
}
|
||||
},
|
||||
"common": {
|
||||
"and": "i",
|
||||
"cancel": "Cancel·la",
|
||||
"close": "Tanca",
|
||||
"delete": "Elimina",
|
||||
"loading": "Carregant",
|
||||
"next": "Següent",
|
||||
"no": "No",
|
||||
"previous": "Anterior",
|
||||
"refresh": "Actualitza",
|
||||
"save": "Desa",
|
||||
"successfully_deleted": "S'ha eliminat correctament",
|
||||
"successfully_saved": "S'ha desat correctament",
|
||||
@ -542,7 +548,7 @@
|
||||
},
|
||||
"dialogs": {
|
||||
"config_entry_system_options": {
|
||||
"enable_new_entities_description": "Si està desactivat, les entitats recentment descobertes per a {integration} no s’afegiran automàticament a Home Assistant.",
|
||||
"enable_new_entities_description": "Si està desactivat, les entitats descobertes recentment per a {integration} no s'afegiran automàticament a Home Assistant.",
|
||||
"enable_new_entities_label": "Activa entitats afegides recentment.",
|
||||
"title": "Opcions del sistema per a {integration}",
|
||||
"update": "Actualitza"
|
||||
@ -557,8 +563,8 @@
|
||||
"confirm_delete": "Estàs segur que vols eliminar aquesta entrada?",
|
||||
"delete": "Elimina",
|
||||
"enabled_cause": "Desactivada per {cause}.",
|
||||
"enabled_description": "Les entitats desactivades no s’afegiran a Home Assistant.",
|
||||
"enabled_label": "Activa l’entitat",
|
||||
"enabled_description": "Les entitats desactivades no s'afegiran a Home Assistant.",
|
||||
"enabled_label": "Activa l'entitat",
|
||||
"entity_id": "ID de l'entitat",
|
||||
"icon": "Sustitució d'icona",
|
||||
"icon_error": "Els icones han de tenir el format 'prefix:nom_icona', per exemple: 'mdi:home'",
|
||||
@ -643,7 +649,7 @@
|
||||
},
|
||||
"vacuum": {
|
||||
"clean_spot": "Zona neta",
|
||||
"commands": "Comandes de l’aspirador:",
|
||||
"commands": "Comandes de l'aspirador:",
|
||||
"fan_speed": "Velocitat del ventilador",
|
||||
"locate": "Localitza",
|
||||
"pause": "Pausa",
|
||||
@ -735,6 +741,10 @@
|
||||
"triggered": "{name} disparat/ada"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Calendaris",
|
||||
"today": "Avui"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Falten opcions de configuració? Activa el mode avançat",
|
||||
@ -837,6 +847,9 @@
|
||||
},
|
||||
"label": "Dispositiu"
|
||||
},
|
||||
"not": {
|
||||
"label": "No"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Per sobre de",
|
||||
"below": "Per sota de",
|
||||
@ -886,7 +899,7 @@
|
||||
"enable_disable": "Activa/desactiva automatització",
|
||||
"introduction": "Utilitza les automatitzacions per donar més vida a la teva casa",
|
||||
"load_error_not_editable": "Només es poden editar les automatitzacions de l'arxiu automations.yaml.",
|
||||
"load_error_unknown": "Error en carregar l’automatització ({err_no}).",
|
||||
"load_error_unknown": "Error en carregar l'automatització ({err_no}).",
|
||||
"save": "Desa",
|
||||
"triggers": {
|
||||
"add": "Afegeix disparador",
|
||||
@ -1005,9 +1018,9 @@
|
||||
"disable": "desactiva",
|
||||
"enable": "activa",
|
||||
"enable_ha_skill": "Activa l'auxiliar de Home Assistant per Alexa",
|
||||
"enable_state_reporting": "Activa els informes d’estat",
|
||||
"enable_state_reporting": "Activa els informes d'estat",
|
||||
"info": "Amb la integració d'Alexa per Home Assistant Cloud podràs controlar tots els dispositius de Home Assistant a través dels dispositius compatibles amb Alexa.",
|
||||
"info_state_reporting": "Si actives els informes d'estat, Home Assistant enviarà a Amazon tots els canvis d’estat de les entitats exposades. Això et permetrà veure els últims estats a l’aplicació Alexa i utilitzar-los per crear rutines.",
|
||||
"info_state_reporting": "Si actives els informes d'estat, Home Assistant enviarà a Amazon tots els canvis d'estat de les entitats exposades. Això et permetrà veure els últims estats a l'aplicació Alexa i utilitzar-los per crear rutines.",
|
||||
"manage_entities": "Gestió d'entitats",
|
||||
"state_reporting_error": "No s'ha pogut {enable_disable} l'informe d'estat.",
|
||||
"sync_entities": "Sincronitza les entitats",
|
||||
@ -1021,12 +1034,12 @@
|
||||
"config_documentation": "Documentació de configuració",
|
||||
"devices_pin": "PIN dels dispositius de seguretat",
|
||||
"enable_ha_skill": "Activa l'auxiliar de Home Assistant per Google Assistant",
|
||||
"enable_state_reporting": "Activa els informes d’estat",
|
||||
"enable_state_reporting": "Activa els informes d'estat",
|
||||
"enter_pin_error": "No s'ha pogut desar el pin:",
|
||||
"enter_pin_hint": "Introdueix un PIN per utilitzar dispositius de seguretat",
|
||||
"enter_pin_info": "Introdueix un codi PIN per interactuar amb dispositius de seguretat. Aquests dispositius són portes, garatges o panys, per exemple. Se't demanarà que introdueixis (o diguis) aquest PIN quan interactuïs amb aquests dispositius mitjançant Google Assistant.",
|
||||
"info": "Amb la integració de Google Assistant per Home Assistant Cloud podràs controlar tots els dispositius de Home Assistant a través dels dispositius compatibles amb Google Assistant.",
|
||||
"info_state_reporting": "Si actives els informes d'estat, Home Assistant enviarà a Google tots els canvis d’estat de les entitats exposades. Això et permetrà veure els últims estats a l’aplicació de Google.",
|
||||
"info_state_reporting": "Si actives els informes d'estat, Home Assistant enviarà a Google tots els canvis d'estat de les entitats exposades. Això et permetrà veure els últims estats a l'aplicació de Google.",
|
||||
"manage_entities": "Gestió d'entitats",
|
||||
"security_devices": "Dispositius de seguretat",
|
||||
"sync_entities": "Sincronitza les entitats amb Google",
|
||||
@ -1034,14 +1047,14 @@
|
||||
"title": "Google Assistant"
|
||||
},
|
||||
"integrations": "Integracions",
|
||||
"integrations_introduction": "Les integracions per Home Assistant Cloud et permeten connectar-vos a d'altres serveis al núvol sense haver d’exposar la teva instància de Home Assistant públicament a Internet.",
|
||||
"integrations_introduction": "Les integracions per Home Assistant Cloud et permeten connectar-vos a d'altres serveis al núvol sense haver d'exposar la teva instància de Home Assistant públicament a Internet.",
|
||||
"integrations_introduction2": "Consulta el lloc web per ",
|
||||
"integrations_link_all_features": "totes les funcions disponibles",
|
||||
"manage_account": "Gestió del compte",
|
||||
"nabu_casa_account": "Compte Nabu Casa",
|
||||
"not_connected": "No connectat",
|
||||
"remote": {
|
||||
"access_is_being_prepared": "S’està preparant l’accés remot. T’avisarem quan estigui a punt.",
|
||||
"access_is_being_prepared": "S'està preparant l'accés remot. T'avisarem quan estigui a punt.",
|
||||
"certificate_info": "Informació del certificat",
|
||||
"info": "Home Assistant Cloud t'ofereix una connexió remota i segura amb la teva instància mentre siguis fora de casa",
|
||||
"instance_is_available": "La teva instància està disponible a",
|
||||
@ -1083,7 +1096,7 @@
|
||||
"will_be_auto_renewed": "Es renovarà automàticament"
|
||||
},
|
||||
"dialog_cloudhook": {
|
||||
"available_at": "El webhook està disponible a l’URL següent:",
|
||||
"available_at": "El webhook està disponible a l'URL següent:",
|
||||
"close": "Tanca",
|
||||
"confirm_disable": "Estàs segur que vols desactivar aquest webhook?",
|
||||
"copied_to_clipboard": "Copiat al porta-retalls",
|
||||
@ -1112,8 +1125,8 @@
|
||||
"title": "Google Assistant"
|
||||
},
|
||||
"login": {
|
||||
"alert_email_confirm_necessary": "Has de confirmar el teu correu electrònic abans d’iniciar sessió.",
|
||||
"alert_password_change_required": "Has de canviar la teva contrasenya abans d’iniciar sessió.",
|
||||
"alert_email_confirm_necessary": "Has de confirmar el teu correu electrònic abans d'iniciar sessió.",
|
||||
"alert_password_change_required": "Has de canviar la teva contrasenya abans d'iniciar sessió.",
|
||||
"dismiss": "Desestimar",
|
||||
"email": "Correu electrònic",
|
||||
"email_error_msg": "Correu electrònic invàlid",
|
||||
@ -1121,7 +1134,7 @@
|
||||
"introduction": "Home Assistant Cloud t'ofereix una connexió remota i segura amb la teva instància mentre siguis fora de casa. També et permet connectar-te amb els serveis disponibles al núvol: Amazon Alexa i Google Assistant.",
|
||||
"introduction2": "Aquest servei està gestionat pel nostre soci ",
|
||||
"introduction2a": ", una empresa fundada pels creadors de Home Assistant i Hass.io.",
|
||||
"introduction3": "Home Assistant Cloud és un servei de subscripció amb una prova gratuïta d’un mes. No és necessària la informació de pagament.",
|
||||
"introduction3": "Home Assistant Cloud és un servei de subscripció amb una prova gratuïta d'un mes. No és necessària la informació de pagament.",
|
||||
"learn_more_link": "Més informació sobre Home Assistant Cloud",
|
||||
"password": "Contrasenya",
|
||||
"password_error_msg": "La contrasenya han de tenir un mínim de 8 caràcters",
|
||||
@ -1140,7 +1153,7 @@
|
||||
"feature_remote_control": "Control de Home Assistant fora de casa",
|
||||
"feature_webhook_apps": "Fàcil integració amb aplicacions basades an webhook com OwnTracks",
|
||||
"headline": "Inicia la prova gratuïta",
|
||||
"information": "Crea un compte per iniciar la prova gratuïta d’un mes amb Home Assistant Cloud. No és necessària la informació de pagament.",
|
||||
"information": "Crea un compte per iniciar la prova gratuïta d'un mes amb Home Assistant Cloud. No és necessària la informació de pagament.",
|
||||
"information2": "La prova et donarà accés a tots els avantatges de Home Assistant Cloud, inclosos:",
|
||||
"information3": "Aquest servei està gestionat pel nostre soci ",
|
||||
"information3a": ", una empresa fundada pels creadors de Home Assistant i Hass.io.",
|
||||
@ -1168,7 +1181,9 @@
|
||||
"edit_requires_storage": "L'editor està desactivat ja que la configuració es troba a configuration.yaml.",
|
||||
"elevation": "Altitud",
|
||||
"elevation_meters": "metres",
|
||||
"external_url": "URL extern",
|
||||
"imperial_example": "Fahrenheit, lliures",
|
||||
"internal_url": "URL intern",
|
||||
"latitude": "Latitud",
|
||||
"location_name": "Nom de la instal·lació de Home Assistant",
|
||||
"longitude": "Longitud",
|
||||
@ -1192,7 +1207,7 @@
|
||||
"attributes_set": "Els següents atributs d'entitat s'estableixen programàticament.",
|
||||
"caption": "Personalització",
|
||||
"description": "Personalitza les entitats",
|
||||
"different_include": "Possiblement a través d’un domini o una altra inclusió diferent.",
|
||||
"different_include": "Possiblement a través d'un domini o una altra inclusió diferent.",
|
||||
"pick_attribute": "Selecciona un atribut per substituir-lo",
|
||||
"picker": {
|
||||
"header": "Personalització",
|
||||
@ -1201,7 +1216,7 @@
|
||||
"warning": {
|
||||
"include_link": "inclou customize.yaml",
|
||||
"include_sentence": "Sembla que la teva configuració a configuration.yaml no",
|
||||
"not_applied": "Els canvis realitzats aquí es desen, però no s’aplicaran fins que es torni a carregar la configuració, tret que la inclusió estigui present."
|
||||
"not_applied": "Els canvis realitzats aquí es desen, però no s'aplicaran fins que es torni a carregar la configuració, tret que la inclusió estigui present."
|
||||
}
|
||||
},
|
||||
"devices": {
|
||||
@ -1223,7 +1238,7 @@
|
||||
"cant_edit": "Només pots editar els elements creats a la interfície d'usuari (UI).",
|
||||
"caption": "Dispositius",
|
||||
"confirm_delete": "Estàs segur que vols eliminar aquest dispositiu?",
|
||||
"confirm_rename_entity_ids": "Vols, també, canviar el nom dels ID's d’entitat de les entitats?",
|
||||
"confirm_rename_entity_ids": "Vols, també, canviar el nom dels ID's d'entitat de les entitats?",
|
||||
"data_table": {
|
||||
"area": "Àrea",
|
||||
"battery": "Bateria",
|
||||
@ -1235,6 +1250,7 @@
|
||||
},
|
||||
"delete": "Elimina",
|
||||
"description": "Gestiona els dispositius connectats",
|
||||
"device_info": "Informació del dispositiu",
|
||||
"device_not_found": "Dispositiu no trobat.",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Afegeix a Lovelace",
|
||||
@ -1265,7 +1281,7 @@
|
||||
"picker": {
|
||||
"disable_selected": {
|
||||
"button": "Desactiva seleccionada/es",
|
||||
"confirm_text": "Les entitats desactivades no s’afegiran a Home Assistant.",
|
||||
"confirm_text": "Les entitats desactivades no s'afegiran a Home Assistant.",
|
||||
"confirm_title": "Vols desactivar {number} entitat/s?"
|
||||
},
|
||||
"enable_selected": {
|
||||
@ -1328,7 +1344,7 @@
|
||||
}
|
||||
},
|
||||
"types": {
|
||||
"input_boolean": "Commuta",
|
||||
"input_boolean": "Interruptor",
|
||||
"input_datetime": "Data i/o hora",
|
||||
"input_number": "Número",
|
||||
"input_select": "Desplegable",
|
||||
@ -1377,13 +1393,13 @@
|
||||
},
|
||||
"configure": "Configurar",
|
||||
"configured": "Configurades",
|
||||
"description": "Gestiona i configura la integració",
|
||||
"description": "Gestionar i configurar integracións",
|
||||
"details": "Detalls de la integració",
|
||||
"discovered": "Descobertes",
|
||||
"home_assistant_website": "lloc web de Home Assistant",
|
||||
"ignore": {
|
||||
"confirm_delete_ignore": "Això farà que quan la integració es descobreixi torni a aparèixer a les integracions descobertes. Pot ser que tardi una estona o es necessiti reiniciar.",
|
||||
"confirm_delete_ignore_title": "Vols deixar d’ignorar {name}?",
|
||||
"confirm_delete_ignore_title": "Vols deixar d'ignorar {name}?",
|
||||
"confirm_ignore": "Estàs segur que no vols per a configurar aquesta integració? Pots desfer-ho fent clic a 'Mostra les integracions ignorades' al menú de la part superior dreta.",
|
||||
"confirm_ignore_title": "Ignorar descobriment de {name}?",
|
||||
"hide_ignored": "Amaga les integracions ignorades",
|
||||
@ -1397,10 +1413,12 @@
|
||||
"new": "Configura una nova integració",
|
||||
"no_integrations": "Sembla que encara no tens cap integració configurada. Prem al botó de sota per afegir la teva primera integració!",
|
||||
"none": "Encara no hi ha res configurat",
|
||||
"none_found": "No s'han trobat integracions",
|
||||
"none_found_detail": "Ajusta els paràmetres de cerca.",
|
||||
"note_about_integrations": "Encara no es poden configurar totes les integracions a través de la UI.",
|
||||
"note_about_website_reference": "N'hi ha més disponibles al ",
|
||||
"rename_dialog": "Edita el nom de l'entrada de configuració",
|
||||
"rename_input_label": "Nom de l’entrada"
|
||||
"rename_input_label": "Nom de l'entrada"
|
||||
},
|
||||
"introduction": "Aquí pots configurar Home Assistant i els seus components. Encara no és possible configurar-ho tot des de la interfície d'usuari, però hi estem treballant.",
|
||||
"lovelace": {
|
||||
@ -1470,10 +1488,10 @@
|
||||
},
|
||||
"no_resources": "Sense recursos"
|
||||
},
|
||||
"refresh_body": "Has d’actualitzar la pàgina per completar l’eliminació. Vols actualitzar-la ara?",
|
||||
"refresh_body": "Has d'actualitzar la pàgina per completar l'eliminació. Vols actualitzar-la ara?",
|
||||
"refresh_header": "Vols actualitzar?",
|
||||
"types": {
|
||||
"css": "Fitxer d’estils",
|
||||
"css": "Fitxer d'estils",
|
||||
"html": "HTML (obsolet)",
|
||||
"js": "Fitxer JavaScript (obsolet)",
|
||||
"module": "Mòdul JavaScript"
|
||||
@ -1528,7 +1546,7 @@
|
||||
},
|
||||
"introduction": "Utilitza les escenes per donar més vida a la teva llar.",
|
||||
"load_error_not_editable": "Només es poden editar les escenes de l'arxiu scenes.yaml.",
|
||||
"load_error_unknown": "Error en carregar l’escena ({err_no}).",
|
||||
"load_error_unknown": "Error en carregar l'escena ({err_no}).",
|
||||
"name": "Nom",
|
||||
"save": "Desa",
|
||||
"unsaved_confirm": "Hi han canvis no desats. Segur que vols sortir?"
|
||||
@ -1538,7 +1556,7 @@
|
||||
"delete_confirm": "Estàs segur que vols eliminar aquesta escena?",
|
||||
"delete_scene": "Elimina l'escena",
|
||||
"edit_scene": "Edita escena",
|
||||
"header": "Editor d’escenes",
|
||||
"header": "Editor d'escenes",
|
||||
"headers": {
|
||||
"name": "Nom"
|
||||
},
|
||||
@ -1559,11 +1577,11 @@
|
||||
"delete_confirm": "Estàs segur que vols eliminar aquest script?",
|
||||
"delete_script": "Elimina l'script",
|
||||
"header": "Script: {name}",
|
||||
"introduction": "Utilitza els scripts per executar seqüències d’accions.",
|
||||
"introduction": "Utilitza els scripts per executar seqüències d'accions.",
|
||||
"link_available_actions": "Més informació sobre les accions disponibles.",
|
||||
"load_error_not_editable": "Només es poden editar els scripts dins de l'arxiu scripts.yaml.",
|
||||
"sequence": "Seqüència",
|
||||
"sequence_sentence": "Seqüència d’accions de l'script."
|
||||
"sequence_sentence": "Seqüència d'accions de l'script."
|
||||
},
|
||||
"picker": {
|
||||
"add_script": "Afegeix script",
|
||||
@ -1650,7 +1668,7 @@
|
||||
},
|
||||
"zha": {
|
||||
"add_device_page": {
|
||||
"discovery_text": "Els dispositius descoberts apareixeran aquí. Segueix les instruccions del teu dispositiu/s i posa el dispositiu/s en mode d’emparellament.",
|
||||
"discovery_text": "Els dispositius descoberts apareixeran aquí. Segueix les instruccions del/s teu/s dispositiu/s i posa el dispositiu/s en mode d'emparellament.",
|
||||
"header": "Domòtica amb Zigbee - Afegir dispositius",
|
||||
"search_again": "Torna a cercar",
|
||||
"spinner": "S'estan cercant dispositius ZHA Zigbee..."
|
||||
@ -1665,7 +1683,7 @@
|
||||
"get_zigbee_attribute": "Obtenir l'atribut Zigbee",
|
||||
"header": "Atributs clúster",
|
||||
"help_attribute_dropdown": "Selecciona un atribut per visualitzar-ne o definiu-ne el valor.",
|
||||
"help_get_zigbee_attribute": "Obté el valor de l’atribut seleccionat.",
|
||||
"help_get_zigbee_attribute": "Obté el valor de l'atribut seleccionat.",
|
||||
"help_set_zigbee_attribute": "Estableix el valor d'atribut pel clúster especificat a l'entitat especificada.",
|
||||
"introduction": "Consulta i edita els atributs del clúster.",
|
||||
"set_zigbee_attribute": "Estableix l'atribut Zigbee"
|
||||
@ -1763,7 +1781,7 @@
|
||||
"name": "Nom",
|
||||
"new_zone": "Zona nova",
|
||||
"passive": "Passiva",
|
||||
"passive_note": "Les zones passives estan amagades i no s’utilitzen com a ubicacions per a dispositius rastrejables. Però són utils per a la creació d'automatitzacions.",
|
||||
"passive_note": "Les zones passives estan amagades i no s'utilitzen com a ubicacions per a dispositius rastrejables. Però són utils per a la creació d'automatitzacions.",
|
||||
"radius": "Radi",
|
||||
"required_error_msg": "Aquest camp és obligatori",
|
||||
"update": "Actualitza"
|
||||
@ -1772,7 +1790,7 @@
|
||||
"edit_home_zone_narrow": "El radi de la zona principal (casa) encara no es pot editar des del \"frontend\". Sí que pots canviar-ne la ubicació des de la configuració general.",
|
||||
"go_to_core_config": "Anar a la configuració general?",
|
||||
"home_zone_core_config": "La ubicació de la zona principal (casa) és pot canviar des de la pàgina de configuració general. El radi d'aquesta zona encara no es pot editar des d'aquí. Vols anar a la configuració general?",
|
||||
"introduction": "Les zones et permeten definir certes regions del planeta. Quan una persona es trobi dins d’una zona, l’estat prendrà el nom d'aquesta zona. També es poden utilitzar com a disparadors o condicions durant la creació d'automatitzacions.",
|
||||
"introduction": "Les zones et permeten definir certes regions del planeta. Quan una persona es trobi dins d'una zona, l'estat prendrà el nom d'aquesta zona. També es poden utilitzar com a disparadors o condicions durant la creació d'automatitzacions.",
|
||||
"no_zones_created_yet": "Sembla que encara no has creat cap zona."
|
||||
},
|
||||
"zwave": {
|
||||
@ -1805,12 +1823,12 @@
|
||||
"header": "Opcions de configuració del node",
|
||||
"seconds": "segons",
|
||||
"set_config_parameter": "Defineix el paràmetre de configuració",
|
||||
"set_wakeup": "Estableix l’interval en despertar",
|
||||
"set_wakeup": "Estableix l'interval en despertar",
|
||||
"true": "Cert"
|
||||
},
|
||||
"ozw_log": {
|
||||
"header": "Registre d'OZW",
|
||||
"introduction": "Consulta el registre. 0 és el mínim (carrega el registre complet) i 1000 és el màxim. La càrrega mostrarà un registre estàtic i la cua s’actualitzarà automàticament amb l’últim número de línies especificat."
|
||||
"introduction": "Consulta el registre. 0 és el mínim (carrega el registre complet) i 1000 és el màxim. La càrrega mostrarà un registre estàtic i la cua s'actualitzarà automàticament amb l'últim número de línies especificat."
|
||||
},
|
||||
"services": {
|
||||
"add_node": "Afegeix node",
|
||||
@ -1851,7 +1869,7 @@
|
||||
"listening_to": "Escoltant a",
|
||||
"notification_event_fired": "L'esdeveniment {type} s'ha cridat correctament",
|
||||
"start_listening": "Comença a escoltar",
|
||||
"stop_listening": "Deixa d’escoltar",
|
||||
"stop_listening": "Deixa d'escoltar",
|
||||
"subscribe_to": "Esdeveniment al qual subscriure's",
|
||||
"title": "Esdeveniments",
|
||||
"type": "Tipus d'esdeveniment"
|
||||
@ -1890,7 +1908,7 @@
|
||||
"payload": "Dades/missatge (plantilla permesa)",
|
||||
"publish": "Publica",
|
||||
"start_listening": "Comença a escoltar",
|
||||
"stop_listening": "Deixa d’escoltar",
|
||||
"stop_listening": "Deixa d'escoltar",
|
||||
"subscribe_to": "Tòpic al qual subscriure's",
|
||||
"title": "MQTT",
|
||||
"topic": "tòpic"
|
||||
@ -1903,14 +1921,14 @@
|
||||
"column_parameter": "Paràmetre",
|
||||
"data": "Dades del servei (en YAML, opcionals)",
|
||||
"description": "L'eina Serveis et permet fer crides a qualsevol servei disponible a Home Assistant.",
|
||||
"fill_example_data": "Omple amb dades d’exemple",
|
||||
"fill_example_data": "Omple amb dades d'exemple",
|
||||
"no_description": "No hi ha cap descripció disponible",
|
||||
"no_parameters": "Aquest servei no té paràmetres.",
|
||||
"select_service": "Selecciona un servei per veure'n la descripció",
|
||||
"title": "Serveis"
|
||||
},
|
||||
"states": {
|
||||
"alert_entity_field": "L’entitat és un camp obligatori",
|
||||
"alert_entity_field": "L'entitat és un camp obligatori",
|
||||
"attributes": "Atributs",
|
||||
"current_entities": "Entitats actuals",
|
||||
"description1": "Defineix la representació d'un dispositiu a Home Assistant.",
|
||||
@ -1941,7 +1959,7 @@
|
||||
"showing_entries": "Mostrant entrades de"
|
||||
},
|
||||
"logbook": {
|
||||
"entries_not_found": "No s’han trobat entrades al registre.",
|
||||
"entries_not_found": "No s'han trobat entrades al registre.",
|
||||
"period": "Període",
|
||||
"showing_entries": "Mostrant entrades de"
|
||||
},
|
||||
@ -1971,7 +1989,7 @@
|
||||
"url": "Obre un finestra a {url_path}"
|
||||
},
|
||||
"safe-mode": {
|
||||
"description": "Home Assistant ha tingut algun problema en carregar la configuració i ara s'està executant en mode segur. Mira el registre d’errors per veure què ha anat malament.",
|
||||
"description": "Home Assistant ha tingut algun problema en carregar la configuració i ara s'està executant en mode segur. Mira el registre d'errors per veure què ha anat malament.",
|
||||
"header": "Mode segur activat"
|
||||
},
|
||||
"shopping-list": {
|
||||
@ -2239,14 +2257,14 @@
|
||||
"menu": {
|
||||
"close": "Tanca",
|
||||
"configure_ui": "Configurar la interfície d'usuari",
|
||||
"exit_edit_mode": "Surt del mode d’edició d'interfície",
|
||||
"exit_edit_mode": "Surt del mode d'edició d'interfície",
|
||||
"help": "Ajuda",
|
||||
"refresh": "Actualitzar",
|
||||
"reload_resources": "Actualitza recursos"
|
||||
},
|
||||
"reload_lovelace": "Recarrega Lovelace",
|
||||
"reload_resources": {
|
||||
"refresh_body": "Has d’actualitzar la pàgina per completar la càrrega. Vols actualitzar-la ara?",
|
||||
"refresh_body": "Has d'actualitzar la pàgina per completar la càrrega. Vols actualitzar-la ara?",
|
||||
"refresh_header": "Vols actualitzar?"
|
||||
},
|
||||
"unused_entities": {
|
||||
@ -2377,7 +2395,7 @@
|
||||
"cards": {
|
||||
"demo": {
|
||||
"demo_by": "per {name}",
|
||||
"introduction": "Benvingut a casa! Has arribat a la demo de Home Assistant on es mostren algunes de les millors interfícies d’usuari creades per la comunitat.",
|
||||
"introduction": "Benvingut a casa! Has arribat a la demo de Home Assistant on es mostren algunes de les millors interfícies d'usuari creades per la comunitat.",
|
||||
"learn_more": "Més informació sobre Home Assistant",
|
||||
"next_demo": "Següent mostra"
|
||||
}
|
||||
@ -2482,18 +2500,18 @@
|
||||
"logout_text": "Estàs segur que vols tancar la sessió?",
|
||||
"logout_title": "Tancar sessió?",
|
||||
"long_lived_access_tokens": {
|
||||
"confirm_delete": "Estàs segur que vols eliminar el testimoni d'autenticació d'accés per {name}?",
|
||||
"create": "Crea un testimoni d'autenticació",
|
||||
"create_failed": "No s'ha pogut crear el testimoni d'autenticació d'accés.",
|
||||
"confirm_delete": "Estàs segur que vols eliminar el token d'autenticació d'accés per {name}?",
|
||||
"create": "Crea un token d'autenticació",
|
||||
"create_failed": "No s'ha pogut crear el token d'autenticació d'accés.",
|
||||
"created_at": "Creat el {date}",
|
||||
"delete_failed": "No s'ha pogut eliminar el testimoni d'autenticació d'accés.",
|
||||
"description": "Crea testimonis d'autenticació d'accés de llarga durada per permetre als teus programes (scripts) interactuar amb la instància de Home Assistant. Cada testimoni d'autenticació serà vàlid durant deu anys després de la seva creació. Els següents testimonis d'autenticació d'accés de llarga durada estan actius actualment.",
|
||||
"empty_state": "Encara no tens testimonis d'autenticaciós d'accés de llarga durada.",
|
||||
"header": "Testimonis d'autenticació d'accés de llarga durada",
|
||||
"delete_failed": "No s'ha pogut eliminar el token d'autenticació d'accés.",
|
||||
"description": "Crea tokens d'autenticació d'accés de llarga durada per permetre als teus programes (scripts) interactuar amb la instància de Home Assistant. Cada token d'autenticació serà vàlid durant deu anys després de la seva creació. Els següents tokens d'autenticació d'accés de llarga durada estan actius actualment.",
|
||||
"empty_state": "Encara no tens tokens d'autenticaciós d'accés de llarga durada.",
|
||||
"header": "Tokens d'autenticació d'accés de llarga durada",
|
||||
"last_used": "Darrer ús el {date} des de {location}",
|
||||
"learn_auth_requests": "Aprèn a fer sol·licituds autenticades.",
|
||||
"not_used": "Mai no s'ha utilitzat",
|
||||
"prompt_copy_token": "Copia't el testimoni d'autenticació (token) d'accés. No es tornarà a mostrar més endavant.",
|
||||
"prompt_copy_token": "Copia't el token d'autenticació d'accés. No es tornarà a mostrar més endavant.",
|
||||
"prompt_name": "Nom?"
|
||||
},
|
||||
"mfa_setup": {
|
||||
@ -2518,15 +2536,15 @@
|
||||
"push_notifications": "Notificacions push"
|
||||
},
|
||||
"refresh_tokens": {
|
||||
"confirm_delete": "Estàs segur que vols eliminar el testimoni d'actualització per a {name}?",
|
||||
"confirm_delete": "Estàs segur que vols eliminar el token d'actualització per a {name}?",
|
||||
"created_at": "Creat el {date}",
|
||||
"current_token_tooltip": "No s'ha pogut eliminar el testimoni d'autenticació d'actualització.",
|
||||
"delete_failed": "No s'ha pogut eliminar el testimoni d'autenticació d'actualització.",
|
||||
"description": "Cada testimoni d'autenticació d'actualització representa un inici de sessió diferent. Els testimonis d'autenticació d'actualització s'eliminaran automàticament quan tanquis la sessió. A sota hi ha una llista de testimonis d'autenticació d'actualització que estan actius actualment al teu compte.",
|
||||
"header": "Refresca els testimonis d'autenticació",
|
||||
"current_token_tooltip": "No s'ha pogut eliminar el token d'autenticació d'actualització.",
|
||||
"delete_failed": "No s'ha pogut eliminar el token d'autenticació d'actualització.",
|
||||
"description": "Cada token d'autenticació d'actualització representa un inici de sessió diferent. Els tokens d'autenticació d'actualització s'eliminaran automàticament quan tanquis la sessió. A sota hi ha una llista de tokens d'autenticació d'actualització que estan actius actualment al teu compte.",
|
||||
"header": "Refresca els tokens d'autenticació",
|
||||
"last_used": "Darrer ús el {date} des de {location}",
|
||||
"not_used": "Mai no s'ha utilitzat",
|
||||
"token_title": "Testimoni d'actualització de {clientId}"
|
||||
"token_title": "Token d'actualització de {clientId}"
|
||||
},
|
||||
"themes": {
|
||||
"dropdown_label": "Tema",
|
||||
@ -2535,7 +2553,7 @@
|
||||
"link_promo": "Crea temes personalitzats"
|
||||
},
|
||||
"vibrate": {
|
||||
"description": "Activa o desactiva la vibració en d’aquest dispositiu.",
|
||||
"description": "Activa o desactiva la vibració en d'aquest dispositiu.",
|
||||
"header": "Vibra"
|
||||
}
|
||||
},
|
||||
@ -2546,7 +2564,7 @@
|
||||
}
|
||||
},
|
||||
"sidebar": {
|
||||
"external_app_configuration": "Configuració de l’aplicació",
|
||||
"external_app_configuration": "Configuració de l'aplicació",
|
||||
"sidebar_toggle": "Commutació de la barra lateral"
|
||||
}
|
||||
}
|
||||
|
@ -137,7 +137,7 @@
|
||||
"on": "Vlhko"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Bez pohybu",
|
||||
"off": "Žádný pohyb",
|
||||
"on": "Zaznamenán pohyb"
|
||||
},
|
||||
"occupancy": {
|
||||
@ -206,6 +206,8 @@
|
||||
"stopped": "Zastaveno"
|
||||
},
|
||||
"default": {
|
||||
"off": "Vypnuto",
|
||||
"on": "Zapnuto",
|
||||
"unavailable": "Není k dispozici",
|
||||
"unknown": "Nezjištěno"
|
||||
},
|
||||
@ -288,7 +290,7 @@
|
||||
},
|
||||
"vacuum": {
|
||||
"cleaning": "Čistí",
|
||||
"docked": "V stanici",
|
||||
"docked": "Ve stanici",
|
||||
"error": "Chyba",
|
||||
"idle": "Nečinný",
|
||||
"off": "Off",
|
||||
@ -442,6 +444,7 @@
|
||||
"attributes": {
|
||||
"air_pressure": "Tlak vzduchu",
|
||||
"humidity": "Vlhkost vzduchu",
|
||||
"precipitation": "Srážky",
|
||||
"temperature": "Teplota",
|
||||
"visibility": "Viditelnost",
|
||||
"wind_speed": "Rychlost větru"
|
||||
@ -476,6 +479,7 @@
|
||||
"save": "Uložit",
|
||||
"successfully_deleted": "Úspěšně smazáno",
|
||||
"successfully_saved": "Úspěšně uloženo",
|
||||
"undo": "Zpět",
|
||||
"yes": "Ano"
|
||||
},
|
||||
"components": {
|
||||
@ -650,6 +654,17 @@
|
||||
"stop": "Stop"
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"deserialize": "Pokus o parsování MQTT zpráv jako JSON",
|
||||
"entities": "Entity",
|
||||
"no_entities": "Žádné entity",
|
||||
"no_triggers": "Žádné spouštěče",
|
||||
"payload_display": "Zobrazení MQTT zprávy",
|
||||
"recent_messages": "{n} naposledy přijaté zprávy",
|
||||
"show_as_yaml": "Zobrazit jako YAML",
|
||||
"title": "Ladicí informace {device}",
|
||||
"triggers": "Spouštěče"
|
||||
},
|
||||
"options_flow": {
|
||||
"form": {
|
||||
"header": "Nastavení"
|
||||
@ -670,11 +685,13 @@
|
||||
"buttons": {
|
||||
"add": "Přidat zařízení",
|
||||
"reconfigure": "Překonfigurovat zařízení",
|
||||
"remove": "Odebrat zařízení"
|
||||
"remove": "Odebrat zařízení",
|
||||
"zigbee_information": "Informace o Zigbee"
|
||||
},
|
||||
"confirmations": {
|
||||
"remove": "Opravdu chcete zařízení odebrat?"
|
||||
},
|
||||
"device_signature": "Podpis zařízení Zigbee",
|
||||
"last_seen": "Naposledy viděn",
|
||||
"manuf": "od {manufacturer}",
|
||||
"no_area": "Žádná oblast",
|
||||
@ -683,7 +700,8 @@
|
||||
"services": {
|
||||
"reconfigure": "Překonfigurovat zařízení ZHA (opravit zařízení). Použijte, pokud se zařízením máte problémy. Je-li dotyčné zařízení napájené bateriemi, ujistěte se prosím, že je při používání této služby spuštěné a přijímá příkazy.",
|
||||
"remove": "Odebrat zařízení ze sítě Zigbee.",
|
||||
"updateDeviceName": "Nastavte vlastní název tohoto zařízení v registru zařízení."
|
||||
"updateDeviceName": "Nastavte vlastní název tohoto zařízení v registru zařízení.",
|
||||
"zigbee_information": "Zobrazit Zigbee informace zařízení."
|
||||
},
|
||||
"unknown": "Neznámý",
|
||||
"zha_device_card": {
|
||||
@ -724,6 +742,10 @@
|
||||
},
|
||||
"areas": {
|
||||
"caption": "Registr oblastí",
|
||||
"data_table": {
|
||||
"area": "Oblast",
|
||||
"devices": "Zařízení"
|
||||
},
|
||||
"delete": {
|
||||
"confirmation_text": "Všechna zařízení v této oblasti budou nastavena jako nepřiřazena.",
|
||||
"confirmation_title": "Opravdu chcete tuto oblast smazat?"
|
||||
@ -731,14 +753,17 @@
|
||||
"description": "Přehled všech oblastí ve vaší domácnosti.",
|
||||
"editor": {
|
||||
"create": "VYTVOŘIT",
|
||||
"default_name": "Nová oblast",
|
||||
"delete": "Odstranit",
|
||||
"update": "UPRAVIT"
|
||||
},
|
||||
"picker": {
|
||||
"create_area": "Vytvořit oblast",
|
||||
"header": "Registr oblastí",
|
||||
"integrations_page": "Stránka integrací",
|
||||
"introduction": "Oblasti se používají k uspořádání zařízení podle místa kde jsou. Tato informace bude použita k organizaci rozhraní, k nastavení oprávnění a v integraci s ostatnímy systémy.",
|
||||
"introduction2": "Pro přídání zařízení do oblasti přejděte na stránku integrací pomocí odkazu níže tam klikněte na nakonfigurovanou integraci abyste se dostali na kartu zažízení."
|
||||
"introduction2": "Pro přídání zařízení do oblasti přejděte na stránku integrací pomocí odkazu níže tam klikněte na nakonfigurovanou integraci abyste se dostali na kartu zažízení.",
|
||||
"no_areas": "Vypadá to, že ještě nemáte žádné oblasti!"
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
@ -962,6 +987,9 @@
|
||||
"delete_confirm": "Opravdu chcete odstranit tuto automatizaci?",
|
||||
"edit_automation": "Upravit automatizaci",
|
||||
"header": "Editor automatizací",
|
||||
"headers": {
|
||||
"name": "Název"
|
||||
},
|
||||
"introduction": "Editor automatizací umožňuje vytvářet a upravovat automatizace. Přečtěte si prosím [pokyny] (https://home-assistant.io/docs/automation/editor/), abyste se ujistili, že jste aplikaci Home Assistant nakonfigurovali správně.",
|
||||
"learn_more": "Další informace o automatizacích",
|
||||
"no_automations": "Nemohli jsme najít žádné upravitelné automatizace",
|
||||
@ -1214,6 +1242,7 @@
|
||||
"none": "Toto zařízení nemá žádné entity"
|
||||
},
|
||||
"name": "Jméno",
|
||||
"no_devices": "Žádná zařízení",
|
||||
"scene": {
|
||||
"create": "Vytvořit scénu se zařízením",
|
||||
"no_scenes": "Žádné scény",
|
||||
@ -1276,6 +1305,10 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtering": {
|
||||
"clear": "Vymazat",
|
||||
"filtering_by": "Filtrování podle"
|
||||
},
|
||||
"header": "Konfigurace Home Assistant",
|
||||
"helpers": {
|
||||
"caption": "Pomocníci",
|
||||
@ -1303,9 +1336,11 @@
|
||||
}
|
||||
},
|
||||
"integrations": {
|
||||
"add_integration": "Přidat integraci",
|
||||
"caption": "Integrace",
|
||||
"config_entry": {
|
||||
"area": "V {area}",
|
||||
"delete": "Smazat",
|
||||
"delete_button": "Smazat {integration}",
|
||||
"delete_confirm": "Opravdu chcete odstranit tuto integraci?",
|
||||
"device_unavailable": "zařízení není k dispozici",
|
||||
@ -1316,8 +1351,11 @@
|
||||
"no_area": "Žádná oblast",
|
||||
"no_device": "Entity bez zařízení",
|
||||
"no_devices": "Tato integrace nemá žádná zařízení.",
|
||||
"options": "Možnosti",
|
||||
"rename": "Přejmenovat",
|
||||
"restart_confirm": "Restartujte Home Assistant pro odstranění této integrace",
|
||||
"settings_button": "Upravit nastavení pro {integration}",
|
||||
"system_options": "Systémové možnosti pro {integration}",
|
||||
"system_options_button": "Systémové možnosti pro {integration}"
|
||||
},
|
||||
"config_flow": {
|
||||
@ -1352,11 +1390,17 @@
|
||||
"show_ignored": "Zobrazit ignorované integrace",
|
||||
"stop_ignore": "Přestat ignorovat"
|
||||
},
|
||||
"integration": "integrace",
|
||||
"integration_not_found": "Integrace nebyla nalezena.",
|
||||
"new": "Nastavte novou integraci",
|
||||
"no_integrations": "Vypadá to, že ještě nemáte nakonfigurovány žádné integrace. Kliknutím na tlačítko níže přidáte svou první integraci!",
|
||||
"none": "Zatím nic nezkonfigurováno",
|
||||
"none_found": "Žádné integrace nenalezeny.",
|
||||
"none_found_detail": "Upravte kritéria vyhledávání.",
|
||||
"note_about_integrations": "Ne všechny integrace lze prozatím konfigurovat prostřednictvím uživatelského rozhraní.",
|
||||
"note_about_website_reference": "Další jsou k dispozici na "
|
||||
"note_about_website_reference": "Další jsou k dispozici na ",
|
||||
"rename_dialog": "Upravit název této položky nastavení",
|
||||
"rename_input_label": "Název položky"
|
||||
},
|
||||
"introduction": "Zde je možné konfigurovat vaše komponenty a Home Assistant.\nZ uživatelského rozhraní sice zatím není možné konfigurovat vše, ale pracujeme na tom.",
|
||||
"lovelace": {
|
||||
@ -1495,6 +1539,9 @@
|
||||
"delete_scene": "Smazat scénu",
|
||||
"edit_scene": "Upravit scénu",
|
||||
"header": "Editor scén",
|
||||
"headers": {
|
||||
"name": "Název"
|
||||
},
|
||||
"introduction": "Editor scén vám umožňuje vytvářet a upravovat scény. Postupujte podle níže uvedeného odkazu a přečtěte si pokyny, abyste se ujistili, že jste Home Assistant nakonfigurovali správně.",
|
||||
"learn_more": "Další informace o scénách",
|
||||
"no_scenes": "Nemohli jsme najít žádné upravitelné scény",
|
||||
@ -1522,9 +1569,13 @@
|
||||
"add_script": "Přidat skript",
|
||||
"edit_script": "Upravit skript",
|
||||
"header": "Editor skriptů",
|
||||
"headers": {
|
||||
"name": "Název"
|
||||
},
|
||||
"introduction": "Editor skriptů umožňuje vytvářet a upravovat skripty. Postupujte podle níže uvedeného odkazu a přečtěte si pokyny, abyste se ujistili, že jste Home Assistant nakonfigurovali správně.",
|
||||
"learn_more": "Další informace o skriptech",
|
||||
"no_scripts": "Nemohli jsme najít žádné editovatelné skripty",
|
||||
"show_info": "Zobrazit informace o skriptu",
|
||||
"trigger_script": "Spustit skript"
|
||||
}
|
||||
},
|
||||
@ -1573,6 +1624,7 @@
|
||||
"editor": {
|
||||
"activate_user": "Aktivovat uživatele",
|
||||
"active": "Aktivní",
|
||||
"admin": "Administrátor",
|
||||
"caption": "Zobrazit uživatele",
|
||||
"change_password": "Změnit heslo",
|
||||
"confirm_user_deletion": "Opravdu chcete smazat {name} ?",
|
||||
@ -1580,10 +1632,20 @@
|
||||
"delete_user": "Odstranit uživatele",
|
||||
"group": "Skupina",
|
||||
"id": "ID",
|
||||
"name": "Jméno",
|
||||
"owner": "Vlastník",
|
||||
"system_generated": "Generovaný systémem",
|
||||
"system_generated_users_not_editable": "Nelze aktualizovat uživatele generované systémem.",
|
||||
"system_generated_users_not_removable": "Nelze odebrat uživatele generované systémem.",
|
||||
"unnamed_user": "Nepojmenovaný uživatel"
|
||||
"unnamed_user": "Nepojmenovaný uživatel",
|
||||
"update_user": "Aktualizovat"
|
||||
},
|
||||
"picker": {
|
||||
"headers": {
|
||||
"group": "Skupina",
|
||||
"name": "Název",
|
||||
"system": "Systémový"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zha": {
|
||||
@ -1706,7 +1768,7 @@
|
||||
"required_error_msg": "Toto pole je povinné",
|
||||
"update": "Aktualizovat"
|
||||
},
|
||||
"edit_home_zone": "Umístění vašeho domova lze změnit v konfiguraci.",
|
||||
"edit_home_zone": "Poloměr domovské zóny zatím nelze upravit z frontendu. Z frontendu se dá změnit jen poloha domovské zóny.",
|
||||
"edit_home_zone_narrow": "Poloměr domovské zóny zatím nelze upravit z frontendu. Umístění lze změnit z obecné konfigurace.",
|
||||
"go_to_core_config": "Přejít na obecnou konfiguraci?",
|
||||
"home_zone_core_config": "Umístění vaší domovské zóny lze upravit na stránce obecné konfigurace. Poloměr domovské zóny zatím nelze upravit z frontendu. Chcete přejít na obecnou konfiguraci?",
|
||||
@ -1958,6 +2020,10 @@
|
||||
"description": "Karta Filtr entit umožňuje definovat seznam entit, které chcete sledovat pouze v určitém stavu.",
|
||||
"name": "Filtr entit"
|
||||
},
|
||||
"entity": {
|
||||
"description": "Karta Entity vám poskytuje rychlý přehled o stavu vaší entity.",
|
||||
"name": "Entita"
|
||||
},
|
||||
"gauge": {
|
||||
"description": "Karta Ručičkový ukazatel je základní karta pro vizuální zobrazení hodnoty senzoru.",
|
||||
"name": "Ručičkový ukazatel",
|
||||
@ -1970,8 +2036,10 @@
|
||||
},
|
||||
"generic": {
|
||||
"aspect_ratio": "Poměr stran",
|
||||
"attribute": "Atribut",
|
||||
"camera_image": "Entita kamery",
|
||||
"camera_view": "Zobrazení kamery",
|
||||
"double_tap_action": "Akce při dvojitém poklepání",
|
||||
"entities": "Entity",
|
||||
"entity": "Entita",
|
||||
"hold_action": "Akce při podržení",
|
||||
@ -2022,6 +2090,7 @@
|
||||
"default_zoom": "Výchozí zvětšení",
|
||||
"description": "Karta Mapa umožňuje zobrazit entity na mapě.",
|
||||
"geo_location_sources": "Zdroje geolokace",
|
||||
"hours_to_show": "Hodin k zobrazení",
|
||||
"name": "Mapa",
|
||||
"source": "Zdroj"
|
||||
},
|
||||
@ -2078,6 +2147,10 @@
|
||||
"name": "Předpověď počasí"
|
||||
}
|
||||
},
|
||||
"cardpicker": {
|
||||
"custom_card": "Vlastní",
|
||||
"no_description": "Žádný popis není k dispozici."
|
||||
},
|
||||
"edit_card": {
|
||||
"add": "Přidat kartu",
|
||||
"delete": "Odstranit",
|
||||
@ -2127,7 +2200,7 @@
|
||||
"confirm_remove_config_text": "Pokud odeberete nastavení Lovelace, automaticky vygenerujeme vaše zobrazení Lovelace s vašimi oblastmi a zařízeními.",
|
||||
"confirm_remove_config_title": "Opravdu chcete odstranit nastavení Lovelace? Automaticky vygenerujeme vaše zobrazení Lovelace s vašimi oblastmi a zařízeními.",
|
||||
"confirm_unsaved_changes": "Máte neuložené změny. Opravdu chcete odejít?",
|
||||
"confirm_unsaved_comments": "Vaše konfigurace obsahuje komentáře, které se neuloží. Chceš pokračovat?",
|
||||
"confirm_unsaved_comments": "Vaše konfigurace obsahuje komentáře, které se neuloží. Chcete pokračovat?",
|
||||
"error_invalid_config": "Vaše konfigurace není platná: {error}",
|
||||
"error_parse_yaml": "Chyba při parsování YAML: {error}",
|
||||
"error_remove": "Nelze odstranit nastavení: {error}",
|
||||
@ -2141,6 +2214,7 @@
|
||||
"save_config": {
|
||||
"cancel": "Zahodit změnu",
|
||||
"close": "Zavřít",
|
||||
"empty_config": "Začít s prázdným dashboardem",
|
||||
"header": "Převzít kontrolu nad vaší Lovelace UI",
|
||||
"para": "Ve výchozím nastavení bude Home Assistant spravovat vaše uživatelské rozhraní – aktualizovat jej při přidání nové entity nebo Lovelace komponenty. Pokud převezmete kontrolu, nebudeme již provádět změny automaticky za vás.",
|
||||
"para_sure": "Opravdu chcete převzít kontrolu nad uživalským rohraním ?",
|
||||
@ -2193,7 +2267,8 @@
|
||||
"warning": {
|
||||
"attribute_not_found": "Atribut {attribute} není k dispozici v: {entity}",
|
||||
"entity_non_numeric": "Entita není číselná: {entity}",
|
||||
"entity_not_found": "Entita není k dispozici: {entity}"
|
||||
"entity_not_found": "Entita není k dispozici: {entity}",
|
||||
"entity_unavailable": "Entita {entity} není aktuálně k dispozici."
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
@ -2388,6 +2463,11 @@
|
||||
"submit": "Odeslat"
|
||||
},
|
||||
"current_user": "Nyní jste přihlášeni jako {fullName}.",
|
||||
"dashboard": {
|
||||
"description": "Vyberte výchozí dashboard pro toto zařízení.",
|
||||
"dropdown_label": "Dashboard",
|
||||
"header": "Dashboard"
|
||||
},
|
||||
"force_narrow": {
|
||||
"description": "Tato volba skryje postranním panelu jako výchozí nastavení, podobně jako na mobilním zažízení.",
|
||||
"header": "Vždy skrýt postranní panel"
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Stoppet"
|
||||
},
|
||||
"default": {
|
||||
"off": "Fra",
|
||||
"on": "Til",
|
||||
"unavailable": "Utilgængelig",
|
||||
"unknown": "Ukendt"
|
||||
},
|
||||
@ -475,7 +477,10 @@
|
||||
"close": "Luk",
|
||||
"delete": "Slet",
|
||||
"loading": "Indlæser",
|
||||
"next": "Næste",
|
||||
"no": "Nej",
|
||||
"previous": "Forrige",
|
||||
"refresh": "Opdater",
|
||||
"save": "Gem",
|
||||
"successfully_deleted": "Slettet",
|
||||
"successfully_saved": "Gemt",
|
||||
@ -735,6 +740,10 @@
|
||||
"triggered": "Udløste {name}"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Mine kalendere",
|
||||
"today": "I dag"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Mangler der konfigurationsindstillinger? Aktivér avanceret tilstand",
|
||||
@ -837,6 +846,9 @@
|
||||
},
|
||||
"label": "Enhed"
|
||||
},
|
||||
"not": {
|
||||
"label": "Ikke"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Over",
|
||||
"below": "Under",
|
||||
@ -1235,6 +1247,7 @@
|
||||
},
|
||||
"delete": "Slet",
|
||||
"description": "Administrer tilsluttede enheder",
|
||||
"device_info": "Enhedsoplysninger",
|
||||
"device_not_found": "Enhed blev ikke fundet.",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Tilføj til Lovelace",
|
||||
@ -1344,6 +1357,8 @@
|
||||
"delete_button": "Slet {integration}",
|
||||
"delete_confirm": "Er du sikker på, at du vil fjerne denne integration?",
|
||||
"device_unavailable": "entitet utilgængelig",
|
||||
"devices": "{count} {count, plural,\n one {enhed}\n other {enheder}\n}",
|
||||
"entities": "{count} {count, plural,\n one {entitet}\n other {entiteter}\n}",
|
||||
"entity_unavailable": "entitet utilgængelig",
|
||||
"firmware": "Firmware: {version}",
|
||||
"hub": "Forbundet via",
|
||||
@ -1395,6 +1410,8 @@
|
||||
"new": "Opret en ny integration",
|
||||
"no_integrations": "Det ser ud til, at du ikke har konfigureret nogen integrationer endnu. Klik på knappen nedenfor for at tilføje din første integration!",
|
||||
"none": "Intet konfigureret endnu",
|
||||
"none_found": "Ingen integrationer fundet",
|
||||
"none_found_detail": "Juster dine søgekriterier.",
|
||||
"note_about_integrations": "Ikke alle integrationer kan konfigureres via brugerfladen endnu.",
|
||||
"note_about_website_reference": "Flere er tilgængelige på ",
|
||||
"rename_dialog": "Rediger navnet på denne konfigurationspost",
|
||||
@ -2214,12 +2231,12 @@
|
||||
"close": "Luk",
|
||||
"empty_config": "Start med et tomt betjeningspanel",
|
||||
"header": "Tag kontrol over din 'Lovelace'-brugerflade",
|
||||
"para": "Som standard vil Home Assistant vedligeholde din brugerflade ved at opdatere den, når nye entiteter eller Lovelace-brugerfladekomponenter bliver tilgængelige. Hvis du overtager kontrollen, vil vi ikke længere foretage ændringer automatisk for dig.",
|
||||
"para": "Dette betjeningspanel vedligeholdes i øjeblikket af Home Assistant. Det opdateres automatisk, når nye entiteter eller Lovelace-brugerfladekomponenter bliver tilgængelige. Hvis du overtager kontrollen, opdateres dette betjeningspanel ikke længere automatisk. Du kan altid oprette et nyt betjeningspanel at lege med i konfigurationen.",
|
||||
"para_sure": "Er du sikker på du ønsker at tage kontrol over din brugerflade?",
|
||||
"save": "Tag kontrol",
|
||||
"yaml_config": "For at hjælpe dig med at starte, er her den aktuelle konfiguration af dette betjeningspanel:",
|
||||
"yaml_control": "For at tage kontrol i YAML-tilstand skal du oprette en YAML-fil med det navn, du har angivet i din konfiguration for dette betjeningspanel, eller standard-'ui-lovelace.yaml'-filen.",
|
||||
"yaml_mode": "Du bruger YAML-tilstand. Det betyder, at du ikke kan ændre din Lovelace-konfiguration fra brugerfladen. Hvis du vil ændre Lovelace fra brugerfladen, skal du fjerne 'mode: yaml' fra din Lovelace-konfiguration i 'configuration.yaml.'"
|
||||
"yaml_mode": "Du bruger YAML-tilstand for dette betjeningspanel. Det betyder, at du ikke kan ændre din Lovelace-konfiguration fra brugerfladen. Hvis du vil ændre dette betjeningspanel fra brugerfladen, skal du fjerne 'mode: yaml' fra din Lovelace-konfiguration i 'configuration.yaml.'"
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Tilføj til Lovelace-brugerflade",
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Angehalten"
|
||||
},
|
||||
"default": {
|
||||
"off": "Aus",
|
||||
"on": "An",
|
||||
"unavailable": "Nicht verfügbar",
|
||||
"unknown": "Unbekannt"
|
||||
},
|
||||
@ -475,7 +477,10 @@
|
||||
"close": "Schließen",
|
||||
"delete": "Löschen",
|
||||
"loading": "Laden",
|
||||
"next": "Weiter",
|
||||
"no": "Nein",
|
||||
"previous": "Vorher",
|
||||
"refresh": "Aktualisieren",
|
||||
"save": "Speichern",
|
||||
"successfully_deleted": "Erfolgreich gelöscht",
|
||||
"successfully_saved": "Erfolgreich gespeichert",
|
||||
@ -655,9 +660,11 @@
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"deserialize": "Versuchen MQTT-Nachrichten als JSON zu parsen",
|
||||
"entities": "Entitäten",
|
||||
"no_entities": "Keine Entitäten",
|
||||
"no_triggers": "Keine Auslöser",
|
||||
"payload_display": "Payload anzeigen",
|
||||
"recent_messages": "{n} zuletzt empfangene Nachricht(en)",
|
||||
"show_as_yaml": "Als YAML anzeigen",
|
||||
"title": "{device} Debug-Informationen",
|
||||
@ -699,7 +706,7 @@
|
||||
"reconfigure": "Konfigurieren Sie das ZHA-Gerät neu (Gerät heilen). Verwenden Sie diese Option, wenn Sie Probleme mit dem Gerät haben. Wenn es sich bei dem fraglichen Gerät um ein batteriebetriebenes Gerät handelt, vergewissern Sie sich, dass es wach ist und Befehle akzeptiert, wenn Sie diesen Dienst nutzen.",
|
||||
"remove": "Ein Gerät aus dem ZigBee-Netzwerk entfernen.",
|
||||
"updateDeviceName": "Lege einen benutzerdefinierten Namen für dieses Gerät in der Geräteregistrierung fest.",
|
||||
"zigbee_information": "Zeigen Sie die ZigBee-Informationen für das Gerät an."
|
||||
"zigbee_information": "Zeige die ZigBee-Informationen für das Gerät an."
|
||||
},
|
||||
"unknown": "Unbekannt",
|
||||
"zha_device_card": {
|
||||
@ -733,6 +740,10 @@
|
||||
"triggered": "{name} ausgelöst"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Meine Kalender",
|
||||
"today": "Heute"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Fehlende Konfigurationsoptionen? Aktiviere den erweiterten Modus.",
|
||||
@ -835,6 +846,9 @@
|
||||
},
|
||||
"label": "Gerät"
|
||||
},
|
||||
"not": {
|
||||
"label": "Nicht"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Über",
|
||||
"below": "Unter",
|
||||
@ -1233,6 +1247,7 @@
|
||||
},
|
||||
"delete": "Löschen",
|
||||
"description": "Verwalte verbundene Geräte",
|
||||
"device_info": "Geräteinformationen",
|
||||
"device_not_found": "Gerät nicht gefunden.",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Zu Lovelace hinzufügen",
|
||||
@ -1343,7 +1358,7 @@
|
||||
"delete_confirm": "Möchtest du diese Integration wirklich löschen?",
|
||||
"device_unavailable": "Gerät nicht verfügbar",
|
||||
"devices": "{count} {count, plural,\n one {Gerät}\n other {Geräte}\n}",
|
||||
"entities": "{count} {count, plural,\none {Einheit}\nother {Einheiten}\n}",
|
||||
"entities": "{count} {count, plural,\none {Entität}\nother {Entitäten}\n}",
|
||||
"entity_unavailable": "Entität nicht verfügbar",
|
||||
"firmware": "Firmware: {version}",
|
||||
"hub": "Verbunden über",
|
||||
@ -1393,11 +1408,13 @@
|
||||
"integration": "Integration",
|
||||
"integration_not_found": "Integration nicht gefunden.",
|
||||
"new": "Richte eine neue Integration ein",
|
||||
"no_integrations": "Sie haben anscheinend noch keine Integrationen konfiguriert. Klicken Sie auf die Schaltfläche unten, um Ihre erste Integration hinzuzufügen!",
|
||||
"no_integrations": "Du hast anscheinend noch keine Integrationen konfiguriert. Klicke auf die Schaltfläche unten, um Deine erste Integration hinzuzufügen!",
|
||||
"none": "Noch nichts konfiguriert",
|
||||
"none_found": "Keine Integrationen gefunden",
|
||||
"none_found_detail": "Passe Deine Suchkriterien an.",
|
||||
"note_about_integrations": "Nicht alle Integrationen können über die Benutzeroberfläche konfiguriert werden.",
|
||||
"note_about_website_reference": "Weitere Informationen finden Sie auf der ",
|
||||
"rename_dialog": "Bearbeiten Sie den Namen dieses Konfigurationseintrags",
|
||||
"note_about_website_reference": "Weitere Informationen findest Du auf der ",
|
||||
"rename_dialog": "Bearbeite den Namen dieses Konfigurationseintrags",
|
||||
"rename_input_label": "Eintragsname"
|
||||
},
|
||||
"introduction": "Hier ist es möglich, deine Komponenten und Home Assistant zu konfigurieren. Noch ist nicht alles über die GUI einstellbar, aber wir arbeiten daran.",
|
||||
@ -1468,7 +1485,7 @@
|
||||
},
|
||||
"no_resources": "keine Ressourcen"
|
||||
},
|
||||
"refresh_body": "Die Seite muss aktualisiert werden, um das Entfernen abzuschließen. Möchtest du sie jetzt aktualisieren?",
|
||||
"refresh_body": "Die Seite muss aktualisiert werden, um das Entfernen abzuschließen. Möchtest Du sie jetzt aktualisieren?",
|
||||
"refresh_header": "Möchtest du aktualisieren?",
|
||||
"types": {
|
||||
"css": "Stylesheet",
|
||||
@ -1761,7 +1778,7 @@
|
||||
"name": "Name",
|
||||
"new_zone": "Neue Zone",
|
||||
"passive": "Passiv",
|
||||
"passive_note": "Passive Zonen sind im Frontend versteckt und werden nicht als Ort für Device Tracker verwendet. Dies ist nützlich, wenn du sie nur für Automatisierungen verwenden möchtest.",
|
||||
"passive_note": "Passive Zonen sind im Frontend versteckt und werden nicht als Ort für Device Tracker verwendet. Dies ist nützlich, wenn Du sie nur für Automatisierungen verwenden möchtest.",
|
||||
"radius": "Radius",
|
||||
"required_error_msg": "Dieses Feld ist erforderlich",
|
||||
"update": "Aktualisieren"
|
||||
@ -1771,7 +1788,7 @@
|
||||
"go_to_core_config": "Zur allgemeinen Konfiguration gehen?",
|
||||
"home_zone_core_config": "Der Standort deiner Homezone kann auf der allgemeinen Konfigurationsseite bearbeitet werden. Der Radius der Homezone kann vom Frontend aus noch nicht bearbeitet werden. Möchtest du zur allgemeinen Konfiguration gehen?",
|
||||
"introduction": "Mit Zonen kannst du bestimmte Regionen auf der Erde angeben. Befindet sich eine Person in einer Zone, übernimmt der Zustand den Namen aus der Zone. Zonen können auch als Auslöser oder Bedingung in Automatisierungs-Setups verwendet werden.",
|
||||
"no_zones_created_yet": "Es sieht so aus, als hättest du noch keine Zonen erstellt."
|
||||
"no_zones_created_yet": "Es sieht so aus, als hättest Du noch keine Zonen erstellt."
|
||||
},
|
||||
"zwave": {
|
||||
"caption": "Z-Wave",
|
||||
@ -1969,7 +1986,7 @@
|
||||
"url": "Fenster zu {url_path} öffnen"
|
||||
},
|
||||
"safe-mode": {
|
||||
"description": "Home Assistant hatte beim Laden Ihrer Konfiguration Probleme und wird jetzt im abgesicherten Modus ausgeführt. Sieh dir das Fehlerprotokoll an, um zu erkennen, was schiefgelaufen ist.",
|
||||
"description": "Home Assistant hatte beim Laden Ihrer Konfiguration Probleme und wird jetzt im abgesicherten Modus ausgeführt. Sieh Dir das Fehlerprotokoll an, um zu erkennen, was schiefgelaufen ist.",
|
||||
"header": "Abgesicherter Modus aktiviert"
|
||||
},
|
||||
"shopping-list": {
|
||||
@ -2019,7 +2036,7 @@
|
||||
"name": "Entität Filter"
|
||||
},
|
||||
"entity": {
|
||||
"description": "Mit der Entitätskarte erhalten Sie einen schnellen Überblick über den Status Ihrer Entität.",
|
||||
"description": "Mit der Entitätskarte erhältst Du einen schnellen Überblick über den Status Ihrer Entität.",
|
||||
"name": "Entität"
|
||||
},
|
||||
"gauge": {
|
||||
@ -2212,14 +2229,14 @@
|
||||
"save_config": {
|
||||
"cancel": "Abbrechen",
|
||||
"close": "Schließen",
|
||||
"empty_config": "Beginnen Sie mit einem leeren Dashboard",
|
||||
"empty_config": "Beginne mit einem leeren Dashboard",
|
||||
"header": "Lovelace Userinterface selbst verwalten",
|
||||
"para": "Dieses Dashboard wird derzeit von Home Assistant verwaltet. Es wird automatisch aktualisiert, wenn neue Entitäten oder Lovelace-UI-Komponenten verfügbar werden. Wenn Sie die Kontrolle übernehmen, wird dieses Dashboard nicht mehr automatisch aktualisiert. Sie können jederzeit ein neues Dashboard in der Konfiguration erstellen, mit dem Sie herumspielen können.",
|
||||
"para_sure": "Bist du dir sicher, dass du die Benutzeroberfläche selbst verwalten möchtest?",
|
||||
"save": "Kontrolle übernehmen",
|
||||
"yaml_config": "Um dir den Einstieg zu erleichtern, findest du hier die aktuelle Konfiguration dieses Dashboards:",
|
||||
"yaml_control": "Um die Kontrolle im YAML-Modus zu übernehmen, erstellen Sie eine YAML-Datei mit dem Namen, den Sie in Ihrer Konfiguration für dieses Dashboard angegeben haben, oder mit der Standardeinstellung 'ui-lovelace.yaml'.",
|
||||
"yaml_mode": "Sie verwenden den YAML-Modus für dieses Dashboard. Dies bedeutet, dass Sie Ihre Lovelace-Konfiguration nicht über die Benutzeroberfläche ändern können. Wenn Sie dieses Dashboard über die Benutzeroberfläche verwalten möchten, entfernen Sie \"mode: yaml\" aus Ihrer Lovelace-Konfiguration in \"configuration.yaml\"."
|
||||
"yaml_control": "Um die Kontrolle im YAML-Modus zu übernehmen, erstelle eine YAML-Datei mit dem Namen, den Du in Deiner Konfiguration für dieses Dashboard angegeben hast, oder mit der Standardeinstellung 'ui-lovelace.yaml'.",
|
||||
"yaml_mode": "Du verwendest den YAML-Modus für dieses Dashboard. Dies bedeutet, dass Du Deine Lovelace-Konfiguration nicht über die Benutzeroberfläche ändern kannst. Wenn Du dieses Dashboard über die Benutzeroberfläche verwalten möchtest, entferne \"mode: yaml\" aus Deiner Lovelace-Konfiguration in \"configuration.yaml\"."
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Zu Lovelace hinzufügen",
|
||||
@ -2462,7 +2479,7 @@
|
||||
},
|
||||
"current_user": "Sie sind derzeit als {fullName} angemeldet.",
|
||||
"dashboard": {
|
||||
"description": "Wählen Sie ein Standard-Dashboard für dieses Gerät.",
|
||||
"description": "Wähle ein Standard-Dashboard für dieses Gerät.",
|
||||
"dropdown_label": "Dashboard",
|
||||
"header": "Dashboard"
|
||||
},
|
||||
|
1
translations/frontend/en-GB.json
Normal file
1
translations/frontend/en-GB.json
Normal file
@ -0,0 +1 @@
|
||||
{}
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Stopped"
|
||||
},
|
||||
"default": {
|
||||
"off": "Off",
|
||||
"on": "On",
|
||||
"unavailable": "Unavailable",
|
||||
"unknown": "Unknown"
|
||||
},
|
||||
@ -471,11 +473,15 @@
|
||||
}
|
||||
},
|
||||
"common": {
|
||||
"and": "and",
|
||||
"cancel": "Cancel",
|
||||
"close": "Close",
|
||||
"delete": "Delete",
|
||||
"loading": "Loading",
|
||||
"next": "Next",
|
||||
"no": "No",
|
||||
"previous": "Previous",
|
||||
"refresh": "Refresh",
|
||||
"save": "Save",
|
||||
"successfully_deleted": "Successfully deleted",
|
||||
"successfully_saved": "Successfully saved",
|
||||
@ -735,6 +741,10 @@
|
||||
"triggered": "Triggered {name}"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "My Calendars",
|
||||
"today": "Today"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Missing config options? Enable advanced mode on",
|
||||
@ -837,6 +847,9 @@
|
||||
},
|
||||
"label": "Device"
|
||||
},
|
||||
"not": {
|
||||
"label": "Not"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Above",
|
||||
"below": "Below",
|
||||
@ -1168,7 +1181,9 @@
|
||||
"edit_requires_storage": "Editor disabled because config stored in configuration.yaml.",
|
||||
"elevation": "Elevation",
|
||||
"elevation_meters": "meters",
|
||||
"external_url": "External URL",
|
||||
"imperial_example": "Fahrenheit, pounds",
|
||||
"internal_url": "Internal URL",
|
||||
"latitude": "Latitude",
|
||||
"location_name": "Name of your Home Assistant installation",
|
||||
"longitude": "Longitude",
|
||||
@ -1235,6 +1250,7 @@
|
||||
},
|
||||
"delete": "Delete",
|
||||
"description": "Manage connected devices",
|
||||
"device_info": "Device info",
|
||||
"device_not_found": "Device not found.",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Add to Lovelace",
|
||||
@ -1397,6 +1413,8 @@
|
||||
"new": "Set up a new integration",
|
||||
"no_integrations": "Seems like you don't have any integations configured yet. Click on the button below to add your first integration!",
|
||||
"none": "Nothing configured yet",
|
||||
"none_found": "No integrations found",
|
||||
"none_found_detail": "Adjust your search criteria.",
|
||||
"note_about_integrations": "Not all integrations can be configured via the UI yet.",
|
||||
"note_about_website_reference": "More are available on the ",
|
||||
"rename_dialog": "Edit the name of this config entry",
|
||||
|
@ -52,11 +52,11 @@
|
||||
},
|
||||
"state_badge": {
|
||||
"alarm_control_panel": {
|
||||
"armed": "Activado",
|
||||
"armed_away": "Activado",
|
||||
"armed_custom_bypass": "Activado",
|
||||
"armed": "Armado",
|
||||
"armed_away": "Armado",
|
||||
"armed_custom_bypass": "Armado",
|
||||
"armed_home": "Activada",
|
||||
"armed_night": "Activado",
|
||||
"armed_night": "Armado",
|
||||
"arming": "Activando",
|
||||
"disarmed": "Desactivado",
|
||||
"disarming": "Desarmar",
|
||||
@ -206,6 +206,8 @@
|
||||
"stopped": "Detenido"
|
||||
},
|
||||
"default": {
|
||||
"off": "Apagado",
|
||||
"on": "Encendido",
|
||||
"unavailable": "No disponible",
|
||||
"unknown": "Desconocido"
|
||||
},
|
||||
@ -475,7 +477,10 @@
|
||||
"close": "Cerrar",
|
||||
"delete": "Eliminar",
|
||||
"loading": "Cargando",
|
||||
"next": "Siguiente",
|
||||
"no": "No",
|
||||
"previous": "Anterior",
|
||||
"refresh": "Actualizar",
|
||||
"save": "Guardar",
|
||||
"successfully_deleted": "Eliminado exitosamente",
|
||||
"successfully_saved": "Guardado correctamente",
|
||||
@ -654,6 +659,17 @@
|
||||
"stop": "Detener"
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"deserialize": "Intentar analizar mensajes MQTT como JSON",
|
||||
"entities": "Entidades",
|
||||
"no_entities": "No hay entidades",
|
||||
"no_triggers": "Sin disparadores",
|
||||
"payload_display": "Pantalla de carga útil",
|
||||
"recent_messages": "{n} mensajes recibidos más recientemente",
|
||||
"show_as_yaml": "Mostrar como YAML",
|
||||
"title": "{device} información de depuración",
|
||||
"triggers": "Disparadores"
|
||||
},
|
||||
"options_flow": {
|
||||
"form": {
|
||||
"header": "Opciones"
|
||||
@ -724,6 +740,10 @@
|
||||
"triggered": "{name} activado"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Mis calendarios",
|
||||
"today": "Hoy"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "¿Faltan opciones de configuración? Habilitar el modo avanzado en",
|
||||
@ -826,6 +846,9 @@
|
||||
},
|
||||
"label": "Dispositivo"
|
||||
},
|
||||
"not": {
|
||||
"label": "No"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Por encima de",
|
||||
"below": "Por debajo de",
|
||||
@ -1294,6 +1317,10 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtering": {
|
||||
"clear": "Limpiar",
|
||||
"filtering_by": "Filtrar por"
|
||||
},
|
||||
"header": "Configurar Home Assistant",
|
||||
"helpers": {
|
||||
"caption": "Auxiliares",
|
||||
@ -1321,12 +1348,16 @@
|
||||
}
|
||||
},
|
||||
"integrations": {
|
||||
"add_integration": "Agregar integración",
|
||||
"caption": "Integraciones",
|
||||
"config_entry": {
|
||||
"area": "En {area}",
|
||||
"delete": "Eliminar",
|
||||
"delete_button": "Eliminar {integration}",
|
||||
"delete_confirm": "¿Estás seguro de que quieres eliminar esta integración?",
|
||||
"device_unavailable": "dispositivo no disponible",
|
||||
"devices": "{count} {count, plural,\n one {dispositivo}\n other {dispositivos}\n}",
|
||||
"entities": "{count} {count, plural,\n one {entidad}\n other {entidades}\n}",
|
||||
"entity_unavailable": "entidad no disponible",
|
||||
"firmware": "Firmware: {version}",
|
||||
"hub": "Conectado a través de",
|
||||
@ -1334,8 +1365,11 @@
|
||||
"no_area": "Ninguna área",
|
||||
"no_device": "Entidades sin dispositivos",
|
||||
"no_devices": "Esta integración no tiene dispositivos.",
|
||||
"options": "Opciones",
|
||||
"rename": "Renombrar",
|
||||
"restart_confirm": "Reinicie Home Assistant para terminar de eliminar esta integración.",
|
||||
"settings_button": "Editar configuración para {integration}",
|
||||
"system_options": "Opciones de Sistema",
|
||||
"system_options_button": "Opciones del sistema para {integration}"
|
||||
},
|
||||
"config_flow": {
|
||||
@ -1370,11 +1404,17 @@
|
||||
"show_ignored": "Mostrar integraciones ignoradas",
|
||||
"stop_ignore": "Dejar de ignorar"
|
||||
},
|
||||
"integration": "Integración",
|
||||
"integration_not_found": "Integración no encontrada.",
|
||||
"new": "Configurar una nueva integración.",
|
||||
"no_integrations": "Al parecer no tienes ninguna integración configurada todavía. Haga click en el botón de abajo para agregar su primera integración",
|
||||
"none": "No hay nada configurado",
|
||||
"none_found": "No se encontraron integraciones",
|
||||
"none_found_detail": "Ajuste sus criterios de búsqueda",
|
||||
"note_about_integrations": "No todas las integraciones se pueden configurar a través de la interfaz de usuario.",
|
||||
"note_about_website_reference": "Hay más disponibles en "
|
||||
"note_about_website_reference": "Hay más disponibles en ",
|
||||
"rename_dialog": "Editar el nombre de esta entrada de configuración",
|
||||
"rename_input_label": "Ingresar Nombre"
|
||||
},
|
||||
"introduction": "Aquí es posible configurar sus componentes y Home Assistant. Todavía no es posible configurar todo desde la interfaz de usuario, pero estamos trabajando en ello.",
|
||||
"lovelace": {
|
||||
@ -2195,7 +2235,7 @@
|
||||
"save": "Tomar el control",
|
||||
"yaml_config": "Para ayudarlo a comenzar, aquí está la configuración actual de este tablero:",
|
||||
"yaml_control": "Para tomar el control en modo YAML, cree un archivo YAML con el nombre que especificó en su configuración para este tablero, o el valor predeterminado 'ui-lovelace.yaml'.",
|
||||
"yaml_mode": "Está utilizando el modo YAML, lo que significa que no puede cambiar su configuración de Lovelace desde la interfaz de usuario. Si desea cambiar Lovelace desde la interfaz de usuario, elimine 'mode: yaml' de su configuración de Lovelace en 'configuration.yaml'."
|
||||
"yaml_mode": "Está utilizando el modo YAML para este panel, lo que significa que no puede cambiar su configuración de Lovelace desde la interfaz de usuario. Si desea administrar este panel de control desde la interfaz de usuario, elimine 'mode: yaml' de su configuración de Lovelace en 'configuration.yaml.'."
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Agregar a Lovelace UI",
|
||||
@ -2241,7 +2281,8 @@
|
||||
"warning": {
|
||||
"attribute_not_found": "El atributo {attribute} no está disponible en: {entity}",
|
||||
"entity_non_numeric": "Entidad no es numérica: {entity}",
|
||||
"entity_not_found": "Entidad no disponible: {entity}"
|
||||
"entity_not_found": "Entidad no disponible: {entity}",
|
||||
"entity_unavailable": "{entidad} no se encuentra disponible"
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Detenido"
|
||||
},
|
||||
"default": {
|
||||
"off": "Apagado",
|
||||
"on": "Encendido",
|
||||
"unavailable": "No disponible",
|
||||
"unknown": "Desconocido"
|
||||
},
|
||||
@ -475,7 +477,10 @@
|
||||
"close": "Cerrar",
|
||||
"delete": "Eliminar",
|
||||
"loading": "Cargando",
|
||||
"next": "Siguiente",
|
||||
"no": "No",
|
||||
"previous": "Anterior",
|
||||
"refresh": "Actualizar",
|
||||
"save": "Guardar",
|
||||
"successfully_deleted": "Eliminado correctamente",
|
||||
"successfully_saved": "Guardado correctamente",
|
||||
@ -735,6 +740,10 @@
|
||||
"triggered": "Activado {name}"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Mis Calendarios",
|
||||
"today": "Hoy"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "¿Faltan opciones de configuración? Activa el modo avanzado",
|
||||
@ -837,6 +846,9 @@
|
||||
},
|
||||
"label": "Dispositivo"
|
||||
},
|
||||
"not": {
|
||||
"label": "Negar"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Por encima de",
|
||||
"below": "Por debajo de",
|
||||
@ -1235,6 +1247,7 @@
|
||||
},
|
||||
"delete": "Eliminar",
|
||||
"description": "Administrar dispositivos conectados",
|
||||
"device_info": "Información del dispositivo",
|
||||
"device_not_found": "Dispositivo no encontrado.",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Añadir a Lovelace",
|
||||
@ -1397,8 +1410,10 @@
|
||||
"new": "Configurar una nueva integración.",
|
||||
"no_integrations": "Parece que todavía no tienes ninguna integración configurada. ¡Pulsa en el botón de abajo para añadir tu primera integración!",
|
||||
"none": "Todavía no hay nada configurado",
|
||||
"none_found": "No se han encontrado integraciones",
|
||||
"none_found_detail": "Ajusta tus criterios de búsqueda.",
|
||||
"note_about_integrations": "Todavía no se pueden configurar todas las integraciones a través de la interfaz de usuario.",
|
||||
"note_about_website_reference": "Más están disponibles en el",
|
||||
"note_about_website_reference": "Hay más disponibles en el ",
|
||||
"rename_dialog": "Edita el nombre de esta entrada de configuración",
|
||||
"rename_input_label": "Nombre de la entrada"
|
||||
},
|
||||
@ -2216,12 +2231,12 @@
|
||||
"close": "Cerrar",
|
||||
"empty_config": "Empezar con un panel de control vacío",
|
||||
"header": "Tomar el control de la interfaz de usuario Lovelace",
|
||||
"para": "Por defecto Home Assistant se encargará de tu interfaz de usuario, actualizándola cuando haya nuevas entidades o componentes Lovelace disponibles. Si asumes el control, ya no haremos más cambios automáticamente por ti.",
|
||||
"para": "Este panel de control está siendo mantenido actualmente por Home Assistant. Se actualiza automáticamente cada vez que nuevas entidades o componentes de la IU Lovelace están disponibles. Si asumes el control, este panel de control ya no se actualizará automáticamente. Siempre podrás crear un nuevo panel de control en la configuración con el que jugar.",
|
||||
"para_sure": "¿Estás seguro de que quieres tomar el control de tu interfaz de usuario?",
|
||||
"save": "Tomar el control",
|
||||
"yaml_config": "Para ayudarte a empezar aquí está la configuración actual de este panel:",
|
||||
"yaml_control": "Para tomar el control en modo YAML, crea un archivo YAML con el nombre que especificaste en la configuración para este panel de control, o el valor predeterminado 'ui-lovelace.yaml'.",
|
||||
"yaml_mode": "Estás utilizando el modo YAML, lo que significa que no puedes cambiar la configuración de Lovelace desde la IU. Si deseas cambiar Lovelace desde la IU, elimina 'mode: yaml' de la configuración de Lovelace en 'configuration.yaml.'"
|
||||
"yaml_mode": "Estás utilizando el modo YAML para este panel de control, lo que significa que no puedes cambiar la configuración de Lovelace desde la IU. Si quieres gestionar este panel de control desde la IU, elimina 'mode: yaml' de la configuración de Lovelace en 'configuration.yaml.'"
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Añadir a la IU Lovelace",
|
||||
|
@ -21,6 +21,13 @@
|
||||
"auto": "خودکار",
|
||||
"off": "خاموش",
|
||||
"on": "روشن"
|
||||
},
|
||||
"hvac_action": {
|
||||
"cooling": "Racire",
|
||||
"drying": "Uscare",
|
||||
"fan": "Ventilator",
|
||||
"heating": "Incalzire",
|
||||
"off": "Oprit"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -165,6 +172,7 @@
|
||||
"dry": "خشک",
|
||||
"fan_only": "فقط پنکه",
|
||||
"heat": "حرارت",
|
||||
"heat_cool": "Incalzire/Racire",
|
||||
"off": "خاموش"
|
||||
},
|
||||
"configurator": {
|
||||
@ -179,6 +187,8 @@
|
||||
"stopped": "متوقف"
|
||||
},
|
||||
"default": {
|
||||
"off": "Oprit",
|
||||
"on": "Pornit",
|
||||
"unavailable": "غیرقابل دسترس",
|
||||
"unknown": "نامشخص"
|
||||
},
|
||||
@ -267,6 +277,7 @@
|
||||
},
|
||||
"weather": {
|
||||
"cloudy": "ابری",
|
||||
"exceptional": "Exceptional",
|
||||
"fog": "مه",
|
||||
"hail": "تگرگ",
|
||||
"lightning": "رعد و برق",
|
||||
@ -316,6 +327,8 @@
|
||||
"away_mode": "حالت بیرون",
|
||||
"currently": "در حال حاضر",
|
||||
"fan_mode": "حالت فن",
|
||||
"high": "inalt",
|
||||
"low": "jos",
|
||||
"on_off": "روشن/خاموش",
|
||||
"operation": "عملیات",
|
||||
"swing_mode": "حالت چرخش",
|
||||
@ -355,6 +368,14 @@
|
||||
"script": {
|
||||
"execute": "اجرا کردن"
|
||||
},
|
||||
"timer": {
|
||||
"actions": {
|
||||
"cancel": "anuleaza",
|
||||
"finish": "termina",
|
||||
"pause": "pauza",
|
||||
"start": "incepe"
|
||||
}
|
||||
},
|
||||
"water_heater": {
|
||||
"away_mode": "حالت بیرون",
|
||||
"currently": "در حال حاضر",
|
||||
@ -389,10 +410,23 @@
|
||||
},
|
||||
"common": {
|
||||
"cancel": "لغو",
|
||||
"close": "Inchide",
|
||||
"delete": "Elimina",
|
||||
"loading": "در حال بارگذاری",
|
||||
"save": "ذخیره"
|
||||
"save": "ذخیره",
|
||||
"successfully_deleted": "Eliminat cu succes",
|
||||
"successfully_saved": "Salvat cu succes"
|
||||
},
|
||||
"components": {
|
||||
"area-picker": {
|
||||
"add_dialog": {
|
||||
"add": "Adauga",
|
||||
"failed_create_area": "Nu s-a reusit creerea zonei",
|
||||
"name": "Nume",
|
||||
"text": "Introdu numele noii zone",
|
||||
"title": "Adauga zona noua"
|
||||
}
|
||||
},
|
||||
"entity": {
|
||||
"entity-picker": {
|
||||
"entity": "نهاد"
|
||||
@ -402,6 +436,11 @@
|
||||
"loading_history": "بارگیری وضعیت تاریخچه",
|
||||
"no_history_found": "هیچ دولتی سابقه یافت."
|
||||
},
|
||||
"related-items": {
|
||||
"area": "Zona",
|
||||
"device": "Dispozitiv",
|
||||
"integration": "Integrare"
|
||||
},
|
||||
"relative_time": {
|
||||
"duration": {
|
||||
"day": "{count} {تعداد, جمع,\nیکی {روز}\nدیگر {روز}\n}",
|
||||
@ -416,15 +455,44 @@
|
||||
}
|
||||
},
|
||||
"dialogs": {
|
||||
"domain_toggler": {
|
||||
"title": "Comuta domeniile"
|
||||
},
|
||||
"generic": {
|
||||
"close": "inchide"
|
||||
},
|
||||
"helper_settings": {
|
||||
"input_datetime": {
|
||||
"date": "تاریخ",
|
||||
"datetime": "تاریخ و زمان",
|
||||
"mode": "چه چیزی را می خواهید وارد کنید",
|
||||
"time": "زمان"
|
||||
},
|
||||
"input_number": {
|
||||
"max": "Valoare maxima",
|
||||
"min": "Valoare minima",
|
||||
"mode": "Mod de vizualizare",
|
||||
"unit_of_measurement": "Unitate de masura"
|
||||
},
|
||||
"input_select": {
|
||||
"add": "Adauga",
|
||||
"add_option": "Adauga optiune",
|
||||
"no_options": "Nu exista inca optiuni",
|
||||
"options": "Optiuni"
|
||||
},
|
||||
"input_text": {
|
||||
"mode": "Mod de vizualizare",
|
||||
"password": "Parola",
|
||||
"text": "Text"
|
||||
}
|
||||
},
|
||||
"more_info_control": {
|
||||
"restored": {
|
||||
"confirm_remove_text": "Esti sigur ca vrei sa elimini aceasta entitate?",
|
||||
"confirm_remove_title": "Eliminati entitatea?",
|
||||
"not_provided": "Aceasta entitate este momentan indisponibila fiind un orfan al unei entitati sau unui dispozitiv eliminat, schimbat sau disfunctional",
|
||||
"remove_action": "Eliminati entitatea"
|
||||
},
|
||||
"script": {
|
||||
"last_action": "آخرین اقدام"
|
||||
},
|
||||
@ -435,6 +503,45 @@
|
||||
},
|
||||
"updater": {
|
||||
"title": "دستورالعمل به روز رسانی"
|
||||
},
|
||||
"vacuum": {
|
||||
"commands": "Comenzi aspirator:",
|
||||
"fan_speed": "Viteza ventilator",
|
||||
"locate": "Localizare",
|
||||
"pause": "Pauza",
|
||||
"return_home": "Intoarcere acasa",
|
||||
"start": "Start",
|
||||
"start_pause": "Start/Pauza",
|
||||
"status": "Status",
|
||||
"stop": "Stop"
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"deserialize": "Incearca sa analizezi mesajele MQTT ca si JSON",
|
||||
"entities": "Entitati",
|
||||
"no_entities": "Nicio entitate",
|
||||
"no_triggers": "Niciun mecanism de declansare",
|
||||
"payload_display": "Afiseaza incarcatura",
|
||||
"recent_messages": "\n{n} mesaje cele mai recente",
|
||||
"show_as_yaml": "Arata in format YAML",
|
||||
"title": "{dispozitiv} informatii depanare",
|
||||
"triggers": "Mecanism de declansare"
|
||||
},
|
||||
"zha_device_info": {
|
||||
"buttons": {
|
||||
"zigbee_information": "Informatii Zigbee"
|
||||
},
|
||||
"device_signature": "Semnatura dispozitiv Zigbee",
|
||||
"manuf": "de catre {fabricant}",
|
||||
"no_area": "Nicio Zona ",
|
||||
"services": {
|
||||
"remove": "Elimina un dispozitiv din reteaua Zigbee",
|
||||
"zigbee_information": "Vizualizeaza informatiile Zigbee pentru acest dispozitiv "
|
||||
},
|
||||
"zha_device_card": {
|
||||
"area_picker_label": "Zona",
|
||||
"device_name_placeholder": "Prenume utilizator",
|
||||
"update_name_button": "Actualizeaza nume"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -462,6 +569,10 @@
|
||||
"config": {
|
||||
"areas": {
|
||||
"caption": "ثبت نام منطقه",
|
||||
"data_table": {
|
||||
"area": "Zona",
|
||||
"devices": "Dispozitive"
|
||||
},
|
||||
"delete": {
|
||||
"confirmation_text": "هیچیک از درستگاه های این ناحیه اختصاص داده نشده اند",
|
||||
"confirmation_title": "آیا مطمئنید که می خواهید این ناحیه را حذف کنید ؟"
|
||||
@ -500,11 +611,20 @@
|
||||
"delay": "تاخیر",
|
||||
"label": "تاخیر"
|
||||
},
|
||||
"device_id": {
|
||||
"extra_fields": {
|
||||
"code": "Cod"
|
||||
},
|
||||
"label": "Dispozitiv"
|
||||
},
|
||||
"event": {
|
||||
"event": "اتفاق",
|
||||
"label": "رویداد آتش",
|
||||
"service_data": "اطلاعات خدمات"
|
||||
},
|
||||
"scene": {
|
||||
"label": "Activeaza scena"
|
||||
},
|
||||
"service": {
|
||||
"label": "خدمات تماس",
|
||||
"service_data": "داده های خدمات"
|
||||
@ -527,12 +647,26 @@
|
||||
"learn_more": "درباره شرایط بیشتر بدانید",
|
||||
"type_select": "نوع وضعیت",
|
||||
"type": {
|
||||
"and": {
|
||||
"label": "Si"
|
||||
},
|
||||
"device": {
|
||||
"extra_fields": {
|
||||
"above": "Deasupra",
|
||||
"below": "Dedesubt",
|
||||
"for": "Durata"
|
||||
},
|
||||
"label": "Dispozitiv"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "بالاتر",
|
||||
"below": "پایین تر",
|
||||
"label": "Numeric state",
|
||||
"value_template": "قالب مقدار (اختیاری)"
|
||||
},
|
||||
"or": {
|
||||
"label": "Sau"
|
||||
},
|
||||
"state": {
|
||||
"label": "حالت",
|
||||
"state": "حالت"
|
||||
@ -564,6 +698,10 @@
|
||||
"unsupported_condition": "شرایط غیرقابل پشتیبانی: {condition}"
|
||||
},
|
||||
"default_name": "اضافه کردن اتوماسیون",
|
||||
"description": {
|
||||
"label": "Descriere",
|
||||
"placeholder": "Descriere optionala"
|
||||
},
|
||||
"introduction": "از اتوماسیون استفاده کنید برای زنده کردن خانه",
|
||||
"load_error_not_editable": "فقط اتوماسیون در automations.yaml قابل ویرایش هستند.",
|
||||
"load_error_unknown": "خطا در بارگذاری اتوماسیون ({err_no}).",
|
||||
@ -628,18 +766,90 @@
|
||||
},
|
||||
"picker": {
|
||||
"add_automation": "اضافه کردن اتوماسیون",
|
||||
"delete_automation": "Elimina automatizare",
|
||||
"delete_confirm": "Esti sigur ca vrei sa elimini aceasta automatizare?",
|
||||
"edit_automation": "Editeaza automatizare",
|
||||
"header": "ویرایشگر اتوماسیون",
|
||||
"headers": {
|
||||
"name": "Nume"
|
||||
},
|
||||
"introduction": "ویرایشگر اتوماسیون اجازه می دهد تا شما را به ایجاد و ویرایش اتوماسیون بپردازید . لطفا پیوند زیر را بخوانید تا دستورالعمل ها را بخواند تا مطمئن شوید که صفحه اصلی دستیار را به درستی پیکربندی کرده اید.",
|
||||
"learn_more": "درباره اتوماسیون بیشتر بدانید",
|
||||
"no_automations": "هیچ اتوماسیون قابل ویرایشی پیدا نشد",
|
||||
"pick_automation": "انتخاب اتوماسیون برای ویرایش"
|
||||
"only_editable": "Doar automatizarile definite in automations.yaml sunt editabile",
|
||||
"pick_automation": "انتخاب اتوماسیون برای ویرایش",
|
||||
"show_info_automation": "Afiseaza informatii despre automatizare"
|
||||
}
|
||||
},
|
||||
"cloud": {
|
||||
"account": {
|
||||
"integrations": "Integrari",
|
||||
"integrations_introduction2": "Verifica website-ul pentru",
|
||||
"integrations_link_all_features": "toate caracteristicile disponibile",
|
||||
"manage_account": "Administrare Cont",
|
||||
"nabu_casa_account": "Cont Nabu Casa",
|
||||
"webhooks": {
|
||||
"loading": "Se incarca..."
|
||||
}
|
||||
},
|
||||
"alexa": {
|
||||
"title": "Alexa"
|
||||
},
|
||||
"caption": "home assistant ابر",
|
||||
"description_features": "کنترل کردن از خانه، ادغام با Alexa و Google Assistant.",
|
||||
"description_login": "وارد شده به عنوان {email}",
|
||||
"description_not_login": "وارد نشده اید"
|
||||
"description_not_login": "وارد نشده اید",
|
||||
"dialog_certificate": {
|
||||
"certificate_expiration_date": "Data expirare certificat",
|
||||
"certificate_information": "Informatii certificat",
|
||||
"will_be_auto_renewed": "Va fi reinnoit in mod automat"
|
||||
},
|
||||
"dialog_cloudhook": {
|
||||
"close": "Inchide",
|
||||
"confirm_disable": "Esti sigur ca vrei sa dezactivezi acest webhook?",
|
||||
"copied_to_clipboard": "Copiat in clipboard",
|
||||
"info_disable_webhook": "Daca nu mai doresti sa folosesti acest webhook, poti sa",
|
||||
"link_disable_webhook": "dezactiveaza",
|
||||
"view_documentation": "Vizualizeaza documentatie"
|
||||
},
|
||||
"login": {
|
||||
"alert_email_confirm_necessary": "Trebuie sa iti confirmi adresa de email inainte de a te conecta",
|
||||
"alert_password_change_required": "Trebuie sa iti schimbi parola inainte de a te conecta",
|
||||
"dismiss": "Revoca",
|
||||
"email": "Adresa de email",
|
||||
"email_error_msg": "Adresa de email invalida",
|
||||
"forgot_password": "Ai uitat parola?",
|
||||
"introduction2": "Acest serviciu este condus de catre partenerul nostru",
|
||||
"learn_more_link": "Afla mai multe despre Home Assistant Coud",
|
||||
"password": "Parola",
|
||||
"password_error_msg": "Parolele au cel putin 8 caractere",
|
||||
"sign_in": "Conecteaza-te",
|
||||
"start_trial": "Incepe perioada de proba de o luna",
|
||||
"title": "Conectare in Cloud",
|
||||
"trial_info": "Nu sunt necesare informatii de plata"
|
||||
},
|
||||
"register": {
|
||||
"account_created": "Cont creat! Verifica email-ul pentru instructiuni cum sa iti activezi contul",
|
||||
"create_account": "Creaza cont",
|
||||
"email_address": "Adresa de email",
|
||||
"email_error_msg": "Adresa de email invalida",
|
||||
"feature_amazon_alexa": "Integrare cu Amazon Alexa",
|
||||
"feature_google_home": "Integrare cu Google Assistant",
|
||||
"feature_remote_control": "Controleaza Home Asisstant cand nu esti acasa",
|
||||
"headline": "Incepe perioada de proba gratuita",
|
||||
"information": "Creaza un cont pentru a incepe perioada de proba de o luna cu Home Assistant Cloud. Nu sunt necesare informatii de plata",
|
||||
"information2": "Perioada de proba va va da acces la toate beneficiile Home Assistant Cloud, incluzand",
|
||||
"information3": "Acest serviciu este condus de catre partenerul nostru",
|
||||
"information3a": ", o companie creata de fondatorii Home Assistant si Hass.io",
|
||||
"information4": "Prin inregistrarea unui cont esti de acord cu urmatorii termeni si conditii",
|
||||
"link_privacy_policy": "Politica de Confidentialitate",
|
||||
"link_terms_conditions": "Termeni si Conditii",
|
||||
"password": "Parola",
|
||||
"password_error_msg": "Parolele au cel putin 8 caractere",
|
||||
"resend_confirm_email": "Retrimite email-ul de confirmare",
|
||||
"start_trial": "Incepe perioada de proba",
|
||||
"title": "Inregistreaza Cont"
|
||||
}
|
||||
},
|
||||
"core": {
|
||||
"caption": "عمومی",
|
||||
@ -666,32 +876,126 @@
|
||||
}
|
||||
},
|
||||
"customize": {
|
||||
"attributes_not_set": "Urmatoarele atribute nu au fost fixate. Fixeaza-le daca vrei",
|
||||
"pick_attribute": "Alege un atribut pentru a trece peste acesta",
|
||||
"picker": {
|
||||
"header": "سفارشی سازی ها",
|
||||
"introduction": "نویسه ویژگی های هر سازمانی. سفارشی سازی اضافه شده / ویرایش شده فورا اثر می کند. سفارشی های حذف شده هنگامی که موجودیت به روز می شود اثر می کند."
|
||||
},
|
||||
"warning": {
|
||||
"include_link": "Include customize.yaml"
|
||||
}
|
||||
},
|
||||
"devices": {
|
||||
"automation": {
|
||||
"automations": "Automatizari",
|
||||
"conditions": {
|
||||
"caption": "Fa ceva doar daca..."
|
||||
},
|
||||
"create": "Creaza automatizare cu acest dispozitiv",
|
||||
"no_automations": "Nu exista automatizari",
|
||||
"no_device_automations": "Nu exista automatizari disponibile pentru acest dispozitiv",
|
||||
"triggers": {
|
||||
"caption": "Fa ceva cand..."
|
||||
}
|
||||
},
|
||||
"cant_edit": "Puteti edita doar elemente create in Interfata Utilizator",
|
||||
"caption": "Dispozitive",
|
||||
"confirm_delete": "Esti sigur ca vrei sa elimini acest dispozitiv?",
|
||||
"confirm_rename_entity_ids": "Vrei de asemenea sa redenumesti Entity ID-ul entitatilor tale?",
|
||||
"data_table": {
|
||||
"area": "Zona",
|
||||
"battery": "Baterie",
|
||||
"device": "Dispozitiv",
|
||||
"integration": "Integrare",
|
||||
"manufacturer": "Fabricant",
|
||||
"model": "Model",
|
||||
"no_devices": "دستگاهی وجود ندارد"
|
||||
}
|
||||
},
|
||||
"delete": "Elimina",
|
||||
"device_not_found": "Nu s-a descoperit dispozitivul.",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Adauga la Lovelace",
|
||||
"entities": "Entitati",
|
||||
"none": "Acest dispozitiv nu are nicio entitate"
|
||||
},
|
||||
"name": "Nume",
|
||||
"no_devices": "Nu exista dispozitive",
|
||||
"scene": {
|
||||
"create": "Creaza scena cu acest dispozitiv",
|
||||
"no_scenes": "Nu exista scene",
|
||||
"scenes": "Scene"
|
||||
},
|
||||
"scenes": "Scene",
|
||||
"script": {
|
||||
"create": "Creaza script cu acest dispozitiv",
|
||||
"no_scripts": "Nu exista scripturi",
|
||||
"scripts": "Scripturi"
|
||||
},
|
||||
"scripts": "Scripturi",
|
||||
"unknown_error": "Eroare necunoscuta",
|
||||
"unnamed_device": "Dispozitiv nedenumit",
|
||||
"update": "Actualizeaza"
|
||||
},
|
||||
"entities": {
|
||||
"caption": "ثبت منطقه",
|
||||
"description": "مرور کلیه اشخاص شناخته شده.",
|
||||
"picker": {
|
||||
"filter": {
|
||||
"filter": "Filtru",
|
||||
"show_disabled": "Afiseaza entitatile dezactivate",
|
||||
"show_unavailable": "Afiseaza entitatile indisponibile"
|
||||
},
|
||||
"header": "ثبت منطقه",
|
||||
"headers": {
|
||||
"entity_id": "ID Entitate",
|
||||
"integration": "Integrare",
|
||||
"name": "Nume",
|
||||
"status": "Status"
|
||||
},
|
||||
"introduction": "دستیار خانه نگهداری رجیستری از هر نهاد که تا به حال دیده است که می تواند منحصر به فرد شناسایی شده است. هر یک از این نهاد ها یک شناسه نهادی اختصاص داده است که فقط برای این نهاد محفوظ خواهد ماند.",
|
||||
"introduction2": "از رجیستر entity استفاده کنید تا نام را عوض کند، شناسه موجودیت را تغییر دهید یا ورودی را از صفحه اصلی دستیار حذف کنید. توجه داشته باشید، از بین بردن ورودی رجیستر entity entity entity را حذف نخواهد کرد. برای انجام این کار، پیوند زیر را دنبال کنید و آن را از صفحه ی ادغام حذف کنید.",
|
||||
"status": {
|
||||
"restored": "بازیابی شد"
|
||||
"disabled": "Dezactivat",
|
||||
"ok": "OK",
|
||||
"restored": "بازیابی شد",
|
||||
"unavailable": "Indisponibil"
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtering": {
|
||||
"clear": "Elimina",
|
||||
"filtering_by": "Filtreaza dupa"
|
||||
},
|
||||
"header": "پیکربندی HOME ASSistant",
|
||||
"helpers": {
|
||||
"caption": "Ajutoare",
|
||||
"description": "Elemente ce pot ajuta la construirea de automatizari",
|
||||
"dialog": {
|
||||
"add_helper": "Adauga ajutor",
|
||||
"add_platform": "Adauga {platforma}",
|
||||
"create": "Creaza"
|
||||
},
|
||||
"picker": {
|
||||
"add_helper": "Adauga ajutor",
|
||||
"headers": {
|
||||
"editable": "Editabil",
|
||||
"name": "Nume",
|
||||
"type": "Tip"
|
||||
}
|
||||
},
|
||||
"types": {
|
||||
"input_boolean": "Comutare",
|
||||
"input_datetime": "Data si/sau ora",
|
||||
"input_number": "Numar",
|
||||
"input_text": "Text"
|
||||
}
|
||||
},
|
||||
"integrations": {
|
||||
"add_integration": "Adauga integrare",
|
||||
"caption": "یکپارچگی",
|
||||
"config_entry": {
|
||||
"delete": "Sterge",
|
||||
"device_unavailable": "دستگاه در دسترس نیست",
|
||||
"entity_unavailable": "نهاد در دسترس نیست",
|
||||
"firmware": "سیستم عامل: {version}",
|
||||
@ -700,52 +1004,156 @@
|
||||
"no_area": "بدون منطقه",
|
||||
"no_device": " بدون دستگاه",
|
||||
"no_devices": "این ادغام هیچ دستگاهی ندارد.",
|
||||
"restart_confirm": "راه اندازی مجدد home assistant به پایان بردن این ادغام"
|
||||
"options": "Optiuni",
|
||||
"rename": "Redenumeste",
|
||||
"restart_confirm": "راه اندازی مجدد home assistant به پایان بردن این ادغام",
|
||||
"system_options": "Optiuni de sistem"
|
||||
},
|
||||
"config_flow": {
|
||||
"aborted": "Esuat",
|
||||
"close": "Inchide",
|
||||
"created_config": "Configurare creata pentru {nume}",
|
||||
"external_step": {
|
||||
"description": "این مرحله نیاز به بازدید از وب سایت خارجی دارد که باید تکمیل شود.",
|
||||
"open_site": "باز کردن سایت"
|
||||
},
|
||||
"loading_first_time": "لطفاً منتظر بمانید تا ادغام نصب شود"
|
||||
"finish": "Termina",
|
||||
"loading_first_time": "لطفاً منتظر بمانید تا ادغام نصب شود",
|
||||
"not_all_required_fields": "Nu toate campurile necesare sunt completate",
|
||||
"submit": "Trimite"
|
||||
},
|
||||
"configure": "پیکربندی",
|
||||
"configured": "پیکربندی شده",
|
||||
"description": "مدیریت دستگاهها و خدمات متصل شده",
|
||||
"discovered": "کشف شده",
|
||||
"ignore": {
|
||||
"hide_ignored": "Ascunde integrarile ignorate",
|
||||
"ignore": "Ignora",
|
||||
"ignored": "Ignorat",
|
||||
"show_ignored": "Afiseaza integrarile ignorate"
|
||||
},
|
||||
"integration": "integrare",
|
||||
"integration_not_found": "Nu s-a gasit integrarea",
|
||||
"new": "تنظیم ادغام جدید",
|
||||
"none": "هیچ چیز پیکربندی نشده است"
|
||||
"no_integrations": "Se pare ca nu ai configurat nicio integrare inca. Apasa pe butonul de mai jos pentru a adauga prima integrare",
|
||||
"none": "هیچ چیز پیکربندی نشده است",
|
||||
"none_found": "Nu s-au gasit integrari",
|
||||
"none_found_detail": "Ajusteaza criteriul de cautare ",
|
||||
"note_about_integrations": "Nu toate integrarile pot fi configurate inca folosind interfata utilizator",
|
||||
"note_about_website_reference": "Mai multe sunt disponibile la",
|
||||
"rename_dialog": "Editeaza numele acestei optiuni de configurare",
|
||||
"rename_input_label": "Introdu nume"
|
||||
},
|
||||
"introduction": "در اینجا می توانید اجزای خود و صفحه اصلی دستیار را پیکربندی کنید. ",
|
||||
"lovelace": {
|
||||
"dashboards": {
|
||||
"default_dashboard": "این داشبورد پیش فرض است",
|
||||
"detail": {
|
||||
"title_required": "عنوان مورد نیاز است."
|
||||
"create": "Creaza",
|
||||
"delete": "Elimina",
|
||||
"require_admin": "Doar administratorul",
|
||||
"title_required": "عنوان مورد نیاز است.",
|
||||
"update": "Actualizeaza",
|
||||
"url": "URL"
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"caption": "Resurse",
|
||||
"confirm_delete": "Esti sigur ca vrei sa elimini aceasta resursa?",
|
||||
"detail": {
|
||||
"create": "ایجاد کن",
|
||||
"delete": "پاک کن",
|
||||
"update": "به روز رسانی"
|
||||
"dismiss": "Inchide",
|
||||
"new_resource": "Adauga resursa noua",
|
||||
"type": "Tipul resursei",
|
||||
"update": "به روز رسانی",
|
||||
"url": "URL",
|
||||
"url_error_msg": "URL este un camp necesar",
|
||||
"warning_header": "Mare atentie!"
|
||||
},
|
||||
"picker": {
|
||||
"add_resource": "Adauga resursa",
|
||||
"headers": {
|
||||
"type": "Tip",
|
||||
"url": "URL"
|
||||
},
|
||||
"no_resources": "منابعی وجود ندارد"
|
||||
},
|
||||
"refresh_header": "Vrei sa reimprospatezi? ",
|
||||
"types": {
|
||||
"module": "Modul JavaScript"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
"add_person": "Adauga Persoana",
|
||||
"caption": "افراد",
|
||||
"confirm_delete": "Esti sigur ca vrei sa elimini aceasta persoana?",
|
||||
"confirm_delete2": "Toate dispozitivele apartinand acestei persoane vor deveni neatribuite",
|
||||
"create_person": "Creaza Persoana",
|
||||
"description": "مدیریت افراد خانه هوشمند",
|
||||
"detail": {
|
||||
"create": "Creaza",
|
||||
"delete": "Elimina",
|
||||
"device_tracker_intro": "دستگاه هایی که متعلق به این شخص هستند را انتخاب کنید.",
|
||||
"device_tracker_pick": "دستگاه را برای پیگیری انتخاب کنید",
|
||||
"device_tracker_picked": "پیگیری دستگاه",
|
||||
"name": "نام"
|
||||
"link_integrations_page": "Pagina Integrari",
|
||||
"link_presence_detection_integrations": "Integrari detectie prezenta",
|
||||
"linked_user": "Utilizator corelat",
|
||||
"name": "نام",
|
||||
"name_error_msg": "Este necesar numele",
|
||||
"new_person": "Persoana Noua",
|
||||
"update": "Actualizeaza"
|
||||
},
|
||||
"introduction": "Aici poti defini fiecare persoana de interes in Home Assistant",
|
||||
"no_persons_created_yet": "Se pare ca nu ai creat nicio persoana deocamdata"
|
||||
},
|
||||
"scene": {
|
||||
"caption": "Scene",
|
||||
"description": "Creaza si editeaza scene",
|
||||
"editor": {
|
||||
"entities": {
|
||||
"add": "Adauga entitate",
|
||||
"delete": "Elimina entitatea",
|
||||
"device_entities": "Daca adaugi o entitate care apartine unui dispozitiv, acel dispozitiv va fi adaugat"
|
||||
}
|
||||
},
|
||||
"picker": {
|
||||
"header": "Editor de scene",
|
||||
"headers": {
|
||||
"name": "Nume"
|
||||
},
|
||||
"introduction": "Editorul de scene permite crearea si editare de scene. Va rugam folositi link-ul de mai jos pentru a citi instructiunile si a va asigurat ca ati configurat corect Home Assistant",
|
||||
"learn_more": "Invata mai multe despre scene"
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
"editor": {
|
||||
"default_name": "Script nou",
|
||||
"delete_confirm": "Esti sigur ca vrei sa elimini acest script?",
|
||||
"delete_script": "Elimina script",
|
||||
"introduction": "Foloseste script-uri pentru a executa mai multe actiuni succesive",
|
||||
"link_available_actions": "Afla mai multe despre actiunile disponibile",
|
||||
"load_error_not_editable": "Doar scripturile definite in scripts.yaml sunt editabile",
|
||||
"sequence": "Secventa",
|
||||
"sequence_sentence": "Ordinea actiunilor in acest script"
|
||||
},
|
||||
"picker": {
|
||||
"add_script": "Adauga script",
|
||||
"edit_script": "Editeaza script",
|
||||
"header": "Editor de scripturi",
|
||||
"headers": {
|
||||
"name": "Nume"
|
||||
},
|
||||
"learn_more": "Afla mai multe despre scripturi",
|
||||
"no_scripts": "Nu s-au gasit scripturi editabile",
|
||||
"show_info": "Afiseaza informatii despre script",
|
||||
"trigger_script": "Declanseaza script"
|
||||
}
|
||||
},
|
||||
"server_control": {
|
||||
"caption": "Controale Server",
|
||||
"section": {
|
||||
"reloading": {
|
||||
"automation": "بارگیری مجدد اتوماسیون",
|
||||
@ -780,7 +1188,17 @@
|
||||
"confirm_user_deletion": "آیا مطمئنید می خواهید {name} را حذف کنید ؟",
|
||||
"deactivate_user": "غیر فعال کردن کاربر",
|
||||
"delete_user": "حذف کاربر",
|
||||
"unnamed_user": "کاربر نامشخص"
|
||||
"name": "Nume",
|
||||
"owner": "Proprietar",
|
||||
"unnamed_user": "کاربر نامشخص",
|
||||
"update_user": "Actualizeaza"
|
||||
},
|
||||
"picker": {
|
||||
"headers": {
|
||||
"group": "Grup",
|
||||
"name": "Nume",
|
||||
"system": "Sistem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zha": {
|
||||
@ -790,6 +1208,9 @@
|
||||
"search_again": "جستجوی مجدد",
|
||||
"spinner": "جستجو برای دستگاه های ZHY Zigbee ..."
|
||||
},
|
||||
"add": {
|
||||
"caption": "Adauga dispozitive"
|
||||
},
|
||||
"caption": "ZHA",
|
||||
"common": {
|
||||
"add_devices": "افزودن دستگاهها",
|
||||
@ -797,6 +1218,22 @@
|
||||
"value": "مقدار"
|
||||
},
|
||||
"description": "صفحه اصلی اتوماسیون مدیریت شبکه Zigbee",
|
||||
"groups": {
|
||||
"add_members": "Adauga membri",
|
||||
"adding_members": "Se adauga membri",
|
||||
"create": "Creaza grup",
|
||||
"creating_group": "Se creaza grup",
|
||||
"group_details": "Acestea sunt toate detaliile pentru grupul Zigbee selectat",
|
||||
"group_info": "Informatii Grup",
|
||||
"group_name_placeholder": "Nume grup",
|
||||
"group_not_found": "Nu s-a gasit grup!",
|
||||
"introduction": "Creaza si editeaza grupuri zigbee",
|
||||
"members": "Membri",
|
||||
"remove_groups": "Elimina grupuri",
|
||||
"remove_members": "Elimina membri",
|
||||
"removing_groups": "Se elimina grupuri",
|
||||
"removing_members": "Se elimina membri"
|
||||
},
|
||||
"network_management": {
|
||||
"header": "مدیریت شبکه",
|
||||
"introduction": "دستوراتی که روی کل شبکه تأثیر می گذارند"
|
||||
@ -805,10 +1242,25 @@
|
||||
"header": "مدیریت دستگاه"
|
||||
}
|
||||
},
|
||||
"zone": {
|
||||
"add_zone": "Adauga zona",
|
||||
"caption": "Zone",
|
||||
"confirm_delete": "Esti sigur ca vrei sa elimini aceasta zona?",
|
||||
"create_zone": "Creaza zona",
|
||||
"detail": {
|
||||
"icon": "Iconita",
|
||||
"name": "Nume",
|
||||
"new_zone": "Zona noua",
|
||||
"radius": "Raza"
|
||||
},
|
||||
"no_zones_created_yet": "Se pare ca inca nu ai creat nicio zona"
|
||||
},
|
||||
"zwave": {
|
||||
"caption": "Z-Wave",
|
||||
"common": {
|
||||
"index": "Index",
|
||||
"unknown": "نامشخص",
|
||||
"value": "Valoare",
|
||||
"wakeup_interval": "فاصله Wakeup"
|
||||
},
|
||||
"node_config": {
|
||||
@ -820,6 +1272,13 @@
|
||||
"set_config_parameter": "تنظیم پارامتر پیکربندی",
|
||||
"set_wakeup": "تنظیم فاصله Wakeup",
|
||||
"true": "صحیح"
|
||||
},
|
||||
"services": {
|
||||
"add_node": "Adauga Nod",
|
||||
"cancel_command": "Anuleaza Comanda",
|
||||
"remove_node": "Elimina Nodul",
|
||||
"save_config": "Salveaza Configuratie",
|
||||
"test_network": "Testare Retea"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -829,8 +1288,11 @@
|
||||
"title": "رویدادها"
|
||||
},
|
||||
"info": {
|
||||
"built_using": "Construit cu ajutorul",
|
||||
"home_assistant_logo": "Logo Home Assistant",
|
||||
"icons_by": "آیکون توسط",
|
||||
"server": "سرور",
|
||||
"source": "Sursa:",
|
||||
"title": "اطلاعات"
|
||||
},
|
||||
"logs": {
|
||||
@ -838,12 +1300,31 @@
|
||||
"title": "وقایع"
|
||||
},
|
||||
"mqtt": {
|
||||
"publish": "Publica",
|
||||
"subscribe_to": "Subiect pentru abonare",
|
||||
"title": "MQTT"
|
||||
},
|
||||
"services": {
|
||||
"call_service": "Apeleaza serviciul",
|
||||
"column_description": "Descriere",
|
||||
"column_example": "Exemplu",
|
||||
"column_parameter": "Parametru",
|
||||
"no_description": "Nu este disponibila nicio descriere",
|
||||
"no_parameters": "Acest serviciu nu accepta parametri",
|
||||
"select_service": "Selecteaza un serviciu pentru a-i vedea descrierea",
|
||||
"title": "خدمات"
|
||||
},
|
||||
"states": {
|
||||
"attributes": "Atribute",
|
||||
"current_entities": "Entitati curente",
|
||||
"description2": "Acesta nu va comunica cu dispozitivul",
|
||||
"entity": "Entitate",
|
||||
"filter_attributes": "Filtreaza atributele",
|
||||
"filter_entities": "Filtreaza entitatile",
|
||||
"filter_states": "Filtreaza starile",
|
||||
"set_state": "Fixeaza stare",
|
||||
"state": "Stare",
|
||||
"state_attributes": "Stare atribute *(YAML, optional)",
|
||||
"title": "وضعیت"
|
||||
},
|
||||
"templates": {
|
||||
@ -855,11 +1336,13 @@
|
||||
"showing_entries": "نمایش نوشته ها برای"
|
||||
},
|
||||
"logbook": {
|
||||
"entries_not_found": "Nu s-au gasit intrari in logbook",
|
||||
"period": "دوره",
|
||||
"showing_entries": "نمایش نامه برای"
|
||||
},
|
||||
"lovelace": {
|
||||
"cards": {
|
||||
"confirm_delete": "Esti sigur ca vrei sa elimini acest card?",
|
||||
"empty_state": {
|
||||
"go_to_integrations_page": "به صفحه ادغام بروید.",
|
||||
"no_devices": "این صفحه به شما اجازه می دهد تا دستگاه های خود را کنترل کنید، با این حال به نظر می رسد که هیچ دستگاهی تنظیم نشده است. برای شروع به صفحه ادغام بروید.",
|
||||
@ -884,17 +1367,37 @@
|
||||
},
|
||||
"editor": {
|
||||
"card": {
|
||||
"alarm-panel": {
|
||||
"available_states": "Stari disponibile",
|
||||
"name": "Panou de alarma"
|
||||
},
|
||||
"conditional": {
|
||||
"card": "کارت",
|
||||
"conditions": "شرایط",
|
||||
"current_state": "جاری"
|
||||
"current_state": "جاری",
|
||||
"name": "Conditional"
|
||||
},
|
||||
"config": {
|
||||
"optional": "Optional",
|
||||
"required": "Necesar"
|
||||
},
|
||||
"entities": {
|
||||
"name": "Entitati"
|
||||
},
|
||||
"entity-filter": {
|
||||
"name": "Filtru entitate"
|
||||
},
|
||||
"entity": {
|
||||
"name": "Entitate"
|
||||
},
|
||||
"generic": {
|
||||
"attribute": "Atribut",
|
||||
"manual": "دستی",
|
||||
"manual_description": "آیا نیاز به اضافه کردن کارت سفارشی دارید یا فقط می خواهید yaml را به صورت دستی بنویسید؟",
|
||||
"maximum": "بیشترین",
|
||||
"minimum": "کمترین",
|
||||
"name": "نام",
|
||||
"no_theme": "Nicio tema",
|
||||
"refresh_interval": "فاصله رفرش",
|
||||
"show_icon": "نمایش آیکون؟",
|
||||
"show_name": "نمایش نام؟",
|
||||
@ -905,6 +1408,12 @@
|
||||
"unit": "واحد",
|
||||
"url": "آدرس"
|
||||
},
|
||||
"glance": {
|
||||
"name": "Privire"
|
||||
},
|
||||
"iframe": {
|
||||
"name": "Pagina web"
|
||||
},
|
||||
"light": {
|
||||
"name": "چراغ"
|
||||
},
|
||||
@ -924,18 +1433,28 @@
|
||||
"picture": {
|
||||
"name": "تصویر"
|
||||
},
|
||||
"plant-status": {
|
||||
"description": "Cardul Plant Status este pentru toti iubitorii de plante"
|
||||
},
|
||||
"sensor": {
|
||||
"description": "Cardul Sensor va ofera o viziune rapida a starii senzorilor cu un grafic optional pentru a vizualiza schimbarile produse in timp",
|
||||
"graph_detail": "نمودار جزئیات",
|
||||
"graph_type": "نوع نمودار",
|
||||
"name": "سنسور"
|
||||
},
|
||||
"shopping-list": {
|
||||
"description": "Cardul Shopping List va permite sa adaugati, editati, verificati sau eliminati elemente din lista de cumparaturi",
|
||||
"name": "لیست خرید"
|
||||
},
|
||||
"thermostat": {
|
||||
"description": "Cardul Thermostat va da control asupra entitatii ce controleaza clima. Acesta permite schimbarea temperaturii si a modului de operare al acestei entitati",
|
||||
"name": "ترموستات"
|
||||
},
|
||||
"vertical-stack": {
|
||||
"description": "Cardul Vertical Stack va permite gruparea mai multor carduri astfel incat acestea intotdeauna sa stea in aceeasi coloana"
|
||||
},
|
||||
"weather-forecast": {
|
||||
"description": "Cardul Weather Forecast afiseaza vremea. Foarte util a se include in interfate ce vor fi afisate pe perete",
|
||||
"name": "پیش بینی آب و هوا"
|
||||
}
|
||||
},
|
||||
@ -947,6 +1466,9 @@
|
||||
"pick_card": "کارتی را که می خواهید اضافه کنید انتخاب کنید ؛",
|
||||
"toggle_editor": "تغییر ویرایشگر"
|
||||
},
|
||||
"edit_lovelace": {
|
||||
"explanation": "Acest titlu este afisat deasupra tuturor vizualizarilor in Lovelace"
|
||||
},
|
||||
"edit_view": {
|
||||
"add": "افزودن نمایه",
|
||||
"edit": "ویرایش نما",
|
||||
@ -973,13 +1495,23 @@
|
||||
"save_config": {
|
||||
"cancel": "بیخیال",
|
||||
"close": "ببند",
|
||||
"empty_config": "Incepe cu un tablou de bord gol",
|
||||
"header": "کنترل UI Lovelace خود را بگیرید",
|
||||
"para": "به طور پیش فرض Home Assistant رابط کاربر خود را حفظ می کند، آن را به روز می کند زمانی که موجودیت های جدید و یا اجزای Lovelace در دسترس قرار گیرد. اگر کنترل داشته باشید دیگر تغییرات را برای شما انجام نخواهیم داد.",
|
||||
"para_sure": "آیا مطمئن هستید که میخواهید کنترل رابط کاربری خود را کنترل کنید؟",
|
||||
"save": "کنترل را به دست گرفتن"
|
||||
},
|
||||
"suggest_card": {
|
||||
"header": "Am creat o sugestie pentru tine"
|
||||
},
|
||||
"view": {
|
||||
"panel_mode": {
|
||||
"warning_multiple_cards": "Aceasta vizualizare contine mai mult de un card, dar un panou de vizualizare poate arata doar un card"
|
||||
}
|
||||
}
|
||||
},
|
||||
"menu": {
|
||||
"close": "Inchide",
|
||||
"help": "کمک",
|
||||
"refresh": "تازه کردن",
|
||||
"reload_resources": "بارگذاری مجدد منابع"
|
||||
@ -989,13 +1521,24 @@
|
||||
"refresh_body": "شما باید صفحه را تازه سازی کنید تا بارگذاری مجدد را کامل کنید ، آیا می خواهید اکنون دوباره آن را تازه کنید ؟",
|
||||
"refresh_header": "آیا می خواهید تازه سازی کنید ؟"
|
||||
},
|
||||
"unused_entities": {
|
||||
"available_entities": "Acestea sunt entitatile disponibile care nu se afla inca in Lovelace",
|
||||
"domain": "Domeniu",
|
||||
"entity": "Entitate",
|
||||
"entity_id": "ID Entitate",
|
||||
"last_changed": "Modificat ultima data",
|
||||
"select_to_add": "Selecteaza entitatile pe care doresti sa le adaugi la un card si apasa butonul add card",
|
||||
"title": "Entitati nefolosite"
|
||||
},
|
||||
"views": {
|
||||
"confirm_delete": "Elimini vizualizare?",
|
||||
"confirm_delete_existing_cards": "با حذف این نمای کارت ها نیز حذف می شود"
|
||||
},
|
||||
"warning": {
|
||||
"attribute_not_found": "ویژگی {attribute} در دسترس نیست:: {entity}",
|
||||
"entity_non_numeric": "نهاد غیر عددی است: {entity}",
|
||||
"entity_not_found": "نهاد موجود نیست: {entity}"
|
||||
"entity_not_found": "نهاد موجود نیست: {entity}",
|
||||
"entity_unavailable": "{entitate} indisponibila in acest moment"
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
@ -1068,6 +1611,24 @@
|
||||
"logging_in_with": "ورود با ** {authProviderName} **.",
|
||||
"pick_auth_provider": "یا وارد سیستم شوید"
|
||||
},
|
||||
"page-demo": {
|
||||
"cards": {
|
||||
"demo": {
|
||||
"learn_more": "Afla mai multe despre Home Assistant "
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"arsaboo": {
|
||||
"names": {
|
||||
"family_room": "Living",
|
||||
"hallway": "Hol",
|
||||
"kitchen": "Bucatarie",
|
||||
"master_bedroom": "Dormitor Principal",
|
||||
"upstairs": "Etaj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"page-onboarding": {
|
||||
"core-config": {
|
||||
"button_detect": "تشخیص",
|
||||
@ -1108,6 +1669,12 @@
|
||||
"new_password": "رمز جدید"
|
||||
},
|
||||
"current_user": "شما در حال حاضر به عنوان {fullName} وارد شده اید.",
|
||||
"dashboard": {
|
||||
"header": "Tablou de bord"
|
||||
},
|
||||
"logout": "Deconectare",
|
||||
"logout_text": "Esti sigur ca vrei sa te deconectezi?",
|
||||
"logout_title": "Deconectare?",
|
||||
"long_lived_access_tokens": {
|
||||
"confirm_delete": "آیا مطمئن هستید که میخواهید token زیر را برای {name} حذف کنید؟",
|
||||
"created_at": "ایجاد شده در {date}",
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Pysäytetty"
|
||||
},
|
||||
"default": {
|
||||
"off": "Pois",
|
||||
"on": "Päällä",
|
||||
"unavailable": "Ei saatavissa",
|
||||
"unknown": "Tuntematon"
|
||||
},
|
||||
@ -329,7 +331,7 @@
|
||||
"ui": {
|
||||
"auth_store": {
|
||||
"ask": "Haluatko pysyä kirjautuneena sisään?",
|
||||
"confirm": "Tallenna käyttäjätunnus",
|
||||
"confirm": "Kyllä",
|
||||
"decline": "Ei kiitos"
|
||||
},
|
||||
"card": {
|
||||
@ -475,7 +477,10 @@
|
||||
"close": "Sulje",
|
||||
"delete": "Poista",
|
||||
"loading": "Ladataan",
|
||||
"next": "Seuraava",
|
||||
"no": "Ei",
|
||||
"previous": "Edellinen",
|
||||
"refresh": "Päivitä",
|
||||
"save": "Tallenna",
|
||||
"successfully_deleted": "Poistettu onnistuneesti",
|
||||
"successfully_saved": "Tallennus onnistui",
|
||||
@ -499,12 +504,14 @@
|
||||
"device-picker": {
|
||||
"clear": "Tyhjennä",
|
||||
"device": "Laite",
|
||||
"show_devices": "Näytä laitteet"
|
||||
"show_devices": "Näytä laitteet",
|
||||
"toggle": "Vaihda"
|
||||
},
|
||||
"entity": {
|
||||
"entity-picker": {
|
||||
"clear": "Tyhjennä",
|
||||
"entity": "Kohde"
|
||||
"entity": "Kohde",
|
||||
"show_entities": "Näytä kohteet"
|
||||
}
|
||||
},
|
||||
"history_charts": {
|
||||
@ -518,6 +525,7 @@
|
||||
"entity": "Liittyvät kohteet",
|
||||
"group": "Osa seuraavia ryhmiä",
|
||||
"integration": "Integraatio",
|
||||
"no_related_found": "Aiheeseen liittyviä komponentteja ei löytynyt.",
|
||||
"scene": "Osa seuraavia tilanteita",
|
||||
"script": "Osa seuraavia skriptejä"
|
||||
},
|
||||
@ -544,6 +552,9 @@
|
||||
"title": "Järjestelmäasetukset kohteelle {integration}",
|
||||
"update": "Päivitä"
|
||||
},
|
||||
"domain_toggler": {
|
||||
"title": "Kytke verkkotunnukset"
|
||||
},
|
||||
"entity_registry": {
|
||||
"control": "Ohjaus",
|
||||
"dismiss": "Hylkää",
|
||||
@ -555,12 +566,14 @@
|
||||
"enabled_label": "Ota kohte käyttöön",
|
||||
"entity_id": "Kohde ID",
|
||||
"icon": "Kuvakkeen yliajo",
|
||||
"icon_error": "Kuvakkeen tulisi olla muodossa etuliite:ikoni, esimerkiksi: mdi:home",
|
||||
"name": "Nimen yliajo",
|
||||
"note": "Huomaa: tämä ei ehkä vielä toimi kaikissa integraatioissa.",
|
||||
"unavailable": "Tämä kohde ei ole tällä hetkellä käytettävissä.",
|
||||
"update": "Päivitä"
|
||||
},
|
||||
"related": "liittyvä",
|
||||
"no_unique_id": "Tällä kohteella ei ole yksilöivää tunnusta, joten sen asetuksia ei voida hallita käyttöliittymästä.",
|
||||
"related": "Liittyvät",
|
||||
"settings": "Asetukset"
|
||||
},
|
||||
"generic": {
|
||||
@ -590,7 +603,9 @@
|
||||
"unit_of_measurement": "Mittayksikkö"
|
||||
},
|
||||
"input_select": {
|
||||
"add": "Lisää",
|
||||
"add_option": "Lisää vaihtoehto",
|
||||
"no_options": "Valintoja ei vielä ole.",
|
||||
"options": "Asetukset"
|
||||
},
|
||||
"input_text": {
|
||||
@ -598,16 +613,25 @@
|
||||
"min": "Vähimmäispituus",
|
||||
"mode": "Näyttötila",
|
||||
"password": "Salasana",
|
||||
"pattern": "Regex-malli käyttäjäpuolen validointia varten.",
|
||||
"text": "Teksti"
|
||||
}
|
||||
},
|
||||
"platform_not_loaded": "Integrointia {platform} ei ole ladattu. Voit ladata sen llisäämällä \"default_config:\" tai {platform}: konfiguraatiotiedostoon.",
|
||||
"required_error_msg": "Tämä kenttä on pakollinen",
|
||||
"yaml_not_editable": "Tämän kohteen asetuksia ei voi muokata käyttöliittymästä. Vain käyttöliittymästä määritetyt kohteet ovat määritettävissä käyttöliittymästä."
|
||||
},
|
||||
"more_info_control": {
|
||||
"dismiss": "Sulje ikkuna",
|
||||
"edit": "Muokkaa kohdetta",
|
||||
"person": {
|
||||
"create_zone": "Luo vyöhyke nykyisestä sijainnista"
|
||||
},
|
||||
"restored": {
|
||||
"confirm_remove_text": "Haluatko varmasti poistaa tämän kohteen?",
|
||||
"confirm_remove_title": "Poistetaanko kohde?",
|
||||
"remove_action": "Poista kohde"
|
||||
"not_provided": "Tämä kohde ei ole tällä hetkellä käytettävissä ja se on orpo poistetulle, muutetulle tai virheelliselle integraatiolle tai laitteelle.",
|
||||
"remove_action": "Poista kohde",
|
||||
"remove_intro": "Jos kokonaisuutta ei enää käytetä, voit puhdistaa sen poistamalla sen."
|
||||
},
|
||||
"script": {
|
||||
"last_action": "Edellinen toiminto",
|
||||
@ -624,6 +648,7 @@
|
||||
},
|
||||
"vacuum": {
|
||||
"clean_spot": "Puhdista paikka",
|
||||
"commands": "Pölynimurin komennot:",
|
||||
"fan_speed": "Tuulettimen nopeus",
|
||||
"locate": "Paikanna",
|
||||
"pause": "Tauko",
|
||||
@ -635,9 +660,14 @@
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"deserialize": "Yritetään jäsentää MQTT-viestejä JSON-muodossa",
|
||||
"entities": "Kohteet",
|
||||
"no_entities": "Ei kohteita",
|
||||
"no_triggers": "Ei laukaisimia",
|
||||
"payload_display": "Tietosisältönäyttö",
|
||||
"recent_messages": "{n} viimeksi vastaanotettua viestiä",
|
||||
"show_as_yaml": "Näytä YAML-muodossa",
|
||||
"title": "{device} vianetsintätiedot",
|
||||
"triggers": "Laukaisimet"
|
||||
},
|
||||
"options_flow": {
|
||||
@ -710,8 +740,13 @@
|
||||
"triggered": "Laukaisi kohteen {name}"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Omat kalenterit",
|
||||
"today": "Tänään"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Puuttuvatko asetusvaihtoehdot? Ota edistynyt tila käyttöön",
|
||||
"link_profile_page": "profiilisivusi"
|
||||
},
|
||||
"areas": {
|
||||
@ -721,6 +756,7 @@
|
||||
"devices": "Laitteet"
|
||||
},
|
||||
"delete": {
|
||||
"confirmation_text": "Tälle alueelle kuuluvien laitteiden osoitus poistetaan.",
|
||||
"confirmation_title": "Haluatko varmasti poistaa tämän alueen?"
|
||||
},
|
||||
"description": "Yleiskuva kaikista kotisi alueista.",
|
||||
@ -810,6 +846,9 @@
|
||||
},
|
||||
"label": "Laite"
|
||||
},
|
||||
"not": {
|
||||
"label": "Ei"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Yli",
|
||||
"below": "Alle",
|
||||
@ -856,6 +895,7 @@
|
||||
},
|
||||
"edit_ui": "Muokkaa käyttöliittymässä",
|
||||
"edit_yaml": "Muokkaa YAML-tiedostona",
|
||||
"enable_disable": "Ota automaatio käyttöön tai poista se käytöstä",
|
||||
"introduction": "Käytä automaatioita herättääksesi kotisi eloon",
|
||||
"load_error_not_editable": "Vain automaatiot tiedostossa automations.yaml ovat muokattavissa.",
|
||||
"load_error_unknown": "Virhe ladatessa automaatiota ( {err_no} )",
|
||||
@ -979,6 +1019,7 @@
|
||||
"enable_ha_skill": "Ota Kotiavustajan taito käyttöön Alexassa",
|
||||
"enable_state_reporting": "Ota tilaraportointi käyttöön",
|
||||
"info": "Alexa Integraatio Home Assistant Cloudille mahdollistaa Home Assistant laitteiden ohjaamisen miltä tahansa Alexa laitteelta.",
|
||||
"info_state_reporting": "Jos otat tilaraportoinnin käyttöön, Home Assistant lähettää kaikki julkistettujen kohteiden tilamuutokset Amazonille. Tämän avulla voit aina nähdä uusimmat tilat Alexa-sovelluksessa ja käyttää tilamuutoksia rutiinien luomiseen.",
|
||||
"manage_entities": "Hallitse kohteita",
|
||||
"state_reporting_error": "Tilaa {enable_disable} .ei ole saatavilla",
|
||||
"sync_entities": "Synkronoi kohteet",
|
||||
@ -995,10 +1036,13 @@
|
||||
"enable_state_reporting": "Ota tilaraportointi käyttöön",
|
||||
"enter_pin_error": "PIN-koodin tallentaminen ei onnistu:",
|
||||
"enter_pin_hint": "Anna PIN-koodi turvalaitteiden käyttämistä varten",
|
||||
"enter_pin_info": "Anna turvalaitteille, kuten oville, autotalleille ja lukoille PIN-koodi. Tätä koodia tullaan sinulta kysymään käyttäessäsi edellä mainittuja laitteita Google Assistantin kautta.",
|
||||
"info": "Google Assistant Integraatio Home Assistant Cloudille mahdollistaa Home Assistant laitteiden ohjaamisen miltä tahansa Google Assistant laitteelta.",
|
||||
"info_state_reporting": "Jos otat tilaraportoinnin käyttöön, Home Assistant lähettää kaikki julkistettujen kohteiden tilamuutokset Googlelle. Tämän avulla voit aina nähdä uusimmat tilat Google-sovelluksessa.",
|
||||
"manage_entities": "Hallitse kohteita",
|
||||
"security_devices": "Turvalaitteet",
|
||||
"sync_entities": "Synkronoi kohteet Googleen",
|
||||
"sync_entities_404_message": "Kohteiden synkronointi Googlelle epäonnistui. Kysy \"Hey Google, sync my devices\" synkronoidaksesi kohteet.",
|
||||
"title": "Google Assistant"
|
||||
},
|
||||
"integrations": "Integraatiot",
|
||||
@ -1021,6 +1065,7 @@
|
||||
"thank_you_note": "Kiitos, että olet osa Home Assistant Cloudia. Sinun kaltaisten ihmisten takia pystymme tarjoamaan loistavan kodin automaatiokokemuksen kaikille. Kiitos!",
|
||||
"webhooks": {
|
||||
"disable_hook_error_msg": "Webhookin poistaminen epäonnistui:",
|
||||
"info": "Kaikille, jotka ovat määritetty käynnistymään webhookin avulla, voidaan antaa julkisesti saatavilla oleba URL jotta voit lähettää tietoja takaisin Home Assistant mistä tahansa, paljastamatta järjestelmääsi Internetiin.",
|
||||
"link_learn_more": "Lisätietoja webhook-pohjaisten automaatioiden luomisesta.",
|
||||
"loading": "Ladataan...",
|
||||
"manage": "Hallitse",
|
||||
@ -1032,13 +1077,14 @@
|
||||
}
|
||||
},
|
||||
"alexa": {
|
||||
"banner": "Tämän käyttöliittymän kautta näkyvien kohteiden muokkaaminen on poistettu käytöstä, koska olet määrittänyt kohdesuodattimet kohteessa configuration.yaml.",
|
||||
"expose": "Julkista Alexalle",
|
||||
"exposed_entities": "Julkistetut kohteet",
|
||||
"not_exposed_entities": "eJulk",
|
||||
"title": "Alexa"
|
||||
},
|
||||
"caption": "Home Assistant Cloud",
|
||||
"description_features": "Ohjaus possa kotoa, käytä Alexaa ja Google Assistentia",
|
||||
"description_features": "Ohjaus poissa kotoa Alexan tai Google Assistantin avulla.",
|
||||
"description_login": "Kirjautunut sisään {email}",
|
||||
"description_not_login": "Et ole kirjautunut",
|
||||
"dialog_certificate": {
|
||||
@ -1069,6 +1115,7 @@
|
||||
"title": "Unohtuiko salasana?"
|
||||
},
|
||||
"google": {
|
||||
"banner": "Tämän käyttöliittymän kautta näkyvien kihteiden muokkaaminen on poistettu käytöstä, koska olet määrittänyt kohdesuodattimet kohteessa configuration.yaml.",
|
||||
"disable_2FA": "Poista kaksivaiheinen tunnistautuminen",
|
||||
"expose": "Julkista Google Assistantille",
|
||||
"exposed_entities": "Julkistetut kohteet",
|
||||
@ -1157,13 +1204,16 @@
|
||||
"attributes_set": "Seuraavat kohteet määritteet asetetaan ohjelmallisesti.",
|
||||
"caption": "Muokkaukset",
|
||||
"description": "Muokkaa laitteita",
|
||||
"different_include": "Mahdollisesti verkkotunnuksen, glob-kaavan tai muun sisällön kautta.",
|
||||
"pick_attribute": "Valitse yliajettava määrite",
|
||||
"picker": {
|
||||
"header": "Räätälöinti",
|
||||
"introduction": "Muotoile ominaisuuksia olemuskohtaisesti. Lisäykset/muokkaukset tulevat välittömästi voimaan. Poistetut mukautukset tulevat voimaan, kun olemus päivitetään."
|
||||
},
|
||||
"warning": {
|
||||
"include_link": "sisällytä customize.yaml"
|
||||
"include_link": "sisällytä customize.yaml",
|
||||
"include_sentence": "Näyttää siltä, että configuration.yaml ei oikein",
|
||||
"not_applied": "Täällä tehdyt muutokset on kirjoitettu siihen, mutta niitä ei sovelleta kokoonpanon uudelleenlatauksen jälkeen, ellei niitä oteta käyttöön."
|
||||
}
|
||||
},
|
||||
"devices": {
|
||||
@ -1175,6 +1225,7 @@
|
||||
"conditions": {
|
||||
"caption": "Tee jotain vain, jos..."
|
||||
},
|
||||
"create": "Luo automaatio laitteella",
|
||||
"no_automations": "Ei automaatioita",
|
||||
"no_device_automations": "Tälle laitteelle ei ole käytettävissä automaatioita.",
|
||||
"triggers": {
|
||||
@ -1195,7 +1246,7 @@
|
||||
"no_devices": "Ei laitteita"
|
||||
},
|
||||
"delete": "Poista",
|
||||
"description": "Hallitse yhdistettyjä laitteita",
|
||||
"description": "Hallitse yhdistettyjä laitteita.",
|
||||
"device_not_found": "Laitetta ei löydy.",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Lisää Lovelace näkymään",
|
||||
@ -1221,23 +1272,26 @@
|
||||
"update": "Päivitä"
|
||||
},
|
||||
"entities": {
|
||||
"caption": "Olemusrekisteri",
|
||||
"caption": "Kohteet",
|
||||
"description": "Yleiskuva kaikista tunnetuista entiteeteistä.",
|
||||
"picker": {
|
||||
"disable_selected": {
|
||||
"button": "Poista valitut käytöstä",
|
||||
"confirm_text": "Käytöstä poistettuja kohteita ei lisätä Home Assistantiin."
|
||||
"confirm_text": "Käytöstä poistettuja kohteita ei lisätä Home Assistantiin.",
|
||||
"confirm_title": "Haluatko poistaa käytöstä {number} kohdetta?"
|
||||
},
|
||||
"enable_selected": {
|
||||
"button": "Ota valitut käyttöön",
|
||||
"confirm_text": "Tämä tekee ne saataville Home Assistantissa, jos ne ovat nyt poistettu käytöstä.",
|
||||
"confirm_title": "Haluatko ottaa {number} kohdetta käyttöön?"
|
||||
},
|
||||
"filter": {
|
||||
"filter": "Suodatin",
|
||||
"show_disabled": "Näytä käytöstä poistetut kohteet",
|
||||
"show_readonly": "Näytä vain luku -kohteet"
|
||||
"show_readonly": "Näytä vain luku -kohteet",
|
||||
"show_unavailable": "Näytä ei-käytettävissä olevat kohteet"
|
||||
},
|
||||
"header": "Olemusrekisteri",
|
||||
"header": "Kohteet",
|
||||
"headers": {
|
||||
"entity_id": "Kohde ID",
|
||||
"integration": "Integraatio",
|
||||
@ -1245,14 +1299,15 @@
|
||||
"status": "Tila"
|
||||
},
|
||||
"introduction": "Home Assistant pitää rekisteriä jokaisesta havaitetusta olemuksesta, joka voidaan yksilöidä. Kullekin näille yksiköille määritetään olemus-ID, varattu juuri tälle yksikölle.",
|
||||
"introduction2": "Yksikkörekisterin avulla voit ohittaa nimeä, muuttaa yksikön tunnusta tai poistaa merkinnän Home Assistantista. Huomaa, että rekisterimerkinnän poistaminen ei poista yksikköä sinäänsä. Sitä voit seuraamalla alla olevaa linkkiä ja poistamalla sitä integrointisivulta.",
|
||||
"introduction2": "Kohderekisterin avulla voit yliajaa nimen, muuttaa sen ID-tunnusta tai poistaa sen Home Assistantista. Huomaa, että rekisterimerkinnän poistaminen ei poista kohdetta.",
|
||||
"remove_selected": {
|
||||
"button": "Poista valitut",
|
||||
"confirm_partly_text": "Voit poistaa vain {removable} valittujen {selected} entiteetin. Entiteetit voidaan poistaa vain, jos integrointi ei enää tarjoa entiteettejä. Joskus Home Assistant on käynnistettävä uudelleen, ennen kuin voit poistaa poistetun integroinnin entiteetit. Haluatko varmasti poistaa siirrettävät entiteetit?",
|
||||
"confirm_partly_title": "Vain {number} valittua entiteettiä voidaan poistaa.",
|
||||
"confirm_text": "Sinun tulisi poistaa ne Lovelace-käyttöliittymästä ja automaatioista, jos ne sisältävät näitä kohteita.",
|
||||
"confirm_title": "Haluatko poistaa {number} kohdetta?"
|
||||
},
|
||||
"selected": "{numero} valittuna",
|
||||
"selected": "{number} valittuna",
|
||||
"status": {
|
||||
"disabled": "Poistettu käytöstä",
|
||||
"ok": "Ok",
|
||||
@ -1263,12 +1318,15 @@
|
||||
}
|
||||
},
|
||||
"filtering": {
|
||||
"clear": "Tyhjennä"
|
||||
"clear": "Tyhjennä",
|
||||
"filtering_by": "Suodatus"
|
||||
},
|
||||
"header": "Säädä Home Assistanttia",
|
||||
"helpers": {
|
||||
"caption": "Auttajat",
|
||||
"description": "Elementit, jotka voivat auttaa rakentamaan automaatioita.",
|
||||
"dialog": {
|
||||
"add_helper": "Lisää apustin",
|
||||
"add_helper": "Lisää auttaja",
|
||||
"add_platform": "Lisää {platform}",
|
||||
"create": "Luo"
|
||||
},
|
||||
@ -1284,18 +1342,22 @@
|
||||
"types": {
|
||||
"input_boolean": "Kytkin",
|
||||
"input_datetime": "Päivämäärä ja/tai kellonaika",
|
||||
"input_select": "Alasvetovalikko"
|
||||
"input_number": "Numero",
|
||||
"input_select": "Alasvetovalikko",
|
||||
"input_text": "Teksti"
|
||||
}
|
||||
},
|
||||
"integrations": {
|
||||
"add_integration": "Lisää integraatio",
|
||||
"caption": "Integraatiot",
|
||||
"config_entry": {
|
||||
"area": "Alueessa {alue}",
|
||||
"area": "Alueessa {area}",
|
||||
"delete": "Poista",
|
||||
"delete_button": "Poista {integration}",
|
||||
"delete_confirm": "Haluatko varmasti poistaa tämän integraation?",
|
||||
"device_unavailable": "laite ei saatavissa",
|
||||
"devices": "{count} {count, plural,\n one {laite}\n other {laitteet}\n}",
|
||||
"entities": "{count} {count, plural,\n one {kohde}\n other {kohteet}\n}",
|
||||
"entity_unavailable": "kohde ei saatavilla",
|
||||
"firmware": "Laiteohjelmisto: {version}",
|
||||
"hub": "Yhdistetty kautta",
|
||||
@ -1306,9 +1368,9 @@
|
||||
"options": "Asetukset",
|
||||
"rename": "Nimeä uudelleen",
|
||||
"restart_confirm": "Käynnistä Home Assistant uudellen viimeistelläksesi tämän integraation poistamisen",
|
||||
"settings_button": "Muokkaa {Integration}-asetuksia",
|
||||
"settings_button": "Muokkaa {integration}-asetuksia",
|
||||
"system_options": "Järjestelmäasetukset",
|
||||
"system_options_button": "{Integration}-järjestelmän asetukset"
|
||||
"system_options_button": "{integration}-järjestelmän asetukset"
|
||||
},
|
||||
"config_flow": {
|
||||
"aborted": "Keskeytetty",
|
||||
@ -1332,6 +1394,10 @@
|
||||
"discovered": "Löydetty",
|
||||
"home_assistant_website": "Home Assistant – sivusto",
|
||||
"ignore": {
|
||||
"confirm_delete_ignore": "Tämä saa integroinnin näkymään löydetyissä integroinneissa uudelleen, kun se löydetään. Tämä saattaa vaatia uudelleenkäynnistyksen tai kestää jonkin aikaa.",
|
||||
"confirm_delete_ignore_title": "Lopeta integraation {name} ohittaminen?",
|
||||
"confirm_ignore": "Oletko varma, ettet halua määrittää tätä integrointia? Voit kumota tämän napsauttamalla oikeassa yläkulmassa olevasta valikosta \"Näytä ohitetut integroinnit\".",
|
||||
"confirm_ignore_title": "Ohitetaanko kohteen {name} etsintä?",
|
||||
"hide_ignored": "Piilota ohitetut integraatiot",
|
||||
"ignore": "Ohita",
|
||||
"ignored": "Ohitettu",
|
||||
@ -1341,7 +1407,10 @@
|
||||
"integration": "integraatio",
|
||||
"integration_not_found": "Integraatiota ei löydy.",
|
||||
"new": "Määritä uusi integraatio",
|
||||
"no_integrations": "Näyttää ettei yhtään integraatiota ole määritetty. Lisää ensimmäinen integraatio klikkaamalla painiketta alhaalta!",
|
||||
"none": "Mitään ei ole vielä määritetty",
|
||||
"none_found": "Integraatioita ei löytynyt",
|
||||
"none_found_detail": "Muokkaa haku ehtojasi",
|
||||
"note_about_integrations": "Kaikkia integraatioita ei voi vielä määrittää käyttöliittymän kautta.",
|
||||
"note_about_website_reference": "Lisää saatavilla",
|
||||
"rename_dialog": "Muokkaa tämän määritysmerkinnän nimeä",
|
||||
@ -1351,6 +1420,7 @@
|
||||
"lovelace": {
|
||||
"caption": "Lovelace-kojelaudat",
|
||||
"dashboards": {
|
||||
"cant_edit_default": "Lovelace-koontinäyttöä ei voi muokata käyttöliittymästä. Voit piilottaa sen määrittämällä toisen koontinäytön oletukseksi.",
|
||||
"cant_edit_yaml": "YAML-tiedostossa määritettyjä kojelautoja ei voi muokata käyttöliittymästä. Muuta niitä tiedostossa configuration.yaml.",
|
||||
"caption": "Kojelaudat",
|
||||
"conf_mode": {
|
||||
@ -1414,7 +1484,7 @@
|
||||
},
|
||||
"no_resources": "Ei resursseja"
|
||||
},
|
||||
"refresh_body": "Sinun on päivitettävä sivu suorittaaksesi poiston loppuun. Haluatko päivittää nyt?",
|
||||
"refresh_body": "Sinun on päivitettävä sivu suorittaaksesi poisto loppuun. Haluatko päivittää nyt?",
|
||||
"refresh_header": "Haluatko päivittää?",
|
||||
"types": {
|
||||
"css": "Tyylitiedosto",
|
||||
@ -1447,7 +1517,8 @@
|
||||
"update": "Päivitä"
|
||||
},
|
||||
"introduction": "Täällä voit määritellä jokaisen kiinnostavan henkilön Home Assistantissa.",
|
||||
"no_persons_created_yet": "Näyttää siltä, ettet ole vielä luonut yhtään henkilöä."
|
||||
"no_persons_created_yet": "Näyttää siltä, ettet ole vielä luonut yhtään henkilöä.",
|
||||
"note_about_persons_configured_in_yaml": "Huomaa: configuration.yaml-tiedoston kautta määritettyjä henkilöitä ei voi muokata käyttöliittymän kautta."
|
||||
},
|
||||
"scene": {
|
||||
"activated": "Aktivoitu tilanne {name}.",
|
||||
@ -1466,7 +1537,7 @@
|
||||
"delete": "Poista kohde",
|
||||
"device_entities": "Jos lisäät kohteen, joka kuuluu laitteeseen, laite lisätään.",
|
||||
"header": "Kohteet",
|
||||
"introduction": "Kohteet jotka eivät kuulu laitteisiin voidaan asettaa täällä.",
|
||||
"introduction": "Kohteet, jotka eivät kuulu laitteisiin, voidaan asettaa täällä.",
|
||||
"without_device": "Kohteet ilman laitetta"
|
||||
},
|
||||
"introduction": "Käytä tilanteita herättääksesi kotisi eloon.",
|
||||
@ -1578,6 +1649,7 @@
|
||||
"name": "Nimi",
|
||||
"owner": "Omistaja",
|
||||
"system_generated": "Järjestelmän luoma",
|
||||
"system_generated_users_not_editable": "Järjestelmän luomia käyttäjiä ei voi päivittää.",
|
||||
"system_generated_users_not_removable": "Järjestelmän luomia käyttäjiä ei voi poistaa.",
|
||||
"unnamed_user": "Nimeämätön käyttäjä",
|
||||
"update_user": "Päivitä"
|
||||
@ -1608,6 +1680,7 @@
|
||||
"header": "Klusterin määritteet",
|
||||
"help_attribute_dropdown": "Valitse määrite, jonka arvoa haluat tarkastella tai määrittää.",
|
||||
"help_get_zigbee_attribute": "Hae valitun määritteen arvo.",
|
||||
"help_set_zigbee_attribute": "Määritä määritetyn kohteen määritetyn klusterin määritteen arvo.",
|
||||
"introduction": "Tarkastele ja muokkaa klusterimääritteitä.",
|
||||
"set_zigbee_attribute": "Aseta Zigbee-ominaisuus"
|
||||
},
|
||||
@ -1635,11 +1708,14 @@
|
||||
"header": "Zigbee-kotiautomaatio - laite"
|
||||
},
|
||||
"group_binding": {
|
||||
"bind_button_help": "Sido valittu ryhmä valittuihin laiteklustereihin.",
|
||||
"bind_button_label": "Sido ryhmä",
|
||||
"cluster_selection_help": "Valitse valittuun ryhmään sidottavat klusterit.",
|
||||
"group_picker_help": "Valitse ryhmä, jos haluat antaa sidontakomennon.",
|
||||
"group_picker_label": "Sidottavat ryhmät",
|
||||
"header": "Ryhmäsidonta",
|
||||
"introduction": "Sido ja pura ryhmiä",
|
||||
"unbind_button_help": "Pura valitun ryhmän sidonta valituista laiteklustereista.",
|
||||
"unbind_button_label": "Pura ryhmän sidonta"
|
||||
},
|
||||
"groups": {
|
||||
@ -1678,6 +1754,8 @@
|
||||
"node_management": {
|
||||
"header": "Laitehallinta",
|
||||
"help_node_dropdown": "Valitse laite tarkastellaksesi laitekohtaisia vaihtoehtoja.",
|
||||
"hint_battery_devices": "Huomautus: Nukkuvien (akkukäyttöisten) laitteiden on oltava hereillä, kun niitä vastaan suoritetaan komentoja. Voit yleensä herättää uneliaan laitteen käynnistämällä sen.",
|
||||
"hint_wakeup": "Joissakin laitteissa, kuten Xiaomi-antureissa, on herätyspainike, jota voit painaa 5 sekunnin välein, jotka pitävät laitteet hereillä, kun olet vuorovaikutuksessa niiden kanssa.",
|
||||
"introduction": "Suorita ZHA-komennot, jotka vaikuttavat yhteen laitteeseen. Valitse laite nähdäksesi luettelon käytettävissä olevista komennoista."
|
||||
},
|
||||
"title": "Zigbee-kotiautomaatio"
|
||||
@ -1685,6 +1763,7 @@
|
||||
"zone": {
|
||||
"add_zone": "Lisää vyöhyke",
|
||||
"caption": "Alueet",
|
||||
"configured_in_yaml": "Configuration.yaml-tiedoston kautta määritettyjä vyöhykkeitä ei voi muokata käyttöliittymän kautta.",
|
||||
"confirm_delete": "Haluatko varmasti poistaa tämän vyöhykkeen?",
|
||||
"create_zone": "Luo alue",
|
||||
"description": "Hallitse vyöhykkeitä, joissa haluat seurata ihmisiä.",
|
||||
@ -1703,7 +1782,10 @@
|
||||
"required_error_msg": "Tämä kenttä on pakollinen",
|
||||
"update": "Päivitä"
|
||||
},
|
||||
"edit_home_zone": "Voit asettaa kotisi sijainnin kohdasta Asetukset>Yleinen.",
|
||||
"edit_home_zone": "Kotivyöhykkeen sädettä ei voi vielä määrittää käyttöliittymästä. Raahaa merkkiä kartalla muuttaaksesi kotivyöhykettä.",
|
||||
"edit_home_zone_narrow": "Kotivyöhykkeen sädettä ei voi vielä muokata käyttöliittymästä. Paikka voidaan muuttaa yleisestä konfiguraatiosta.",
|
||||
"go_to_core_config": "Siirry yleisiin asetuksiin?",
|
||||
"home_zone_core_config": "Kotivyöhykkeen sijaintia voi muokata yleiset asetukset-sivulta. Koti-alueen sädettä ei voi vielä muokata Frontendistä. Haluatko siirtyä yleisiin asetuksiin?",
|
||||
"introduction": "Vyöhykkeiden avulla voit määrittää alueita maan päällä. Kun henkilö on vyöhykkeellä, tila saa vyöhykkeen nimen. Vyöhykkeitä voidaan käyttää myös laukaisimina tai ehtoina automaatioissa.",
|
||||
"no_zones_created_yet": "Näyttää siltä, että et ole vielä luonut vyöhykkeitä."
|
||||
},
|
||||
@ -1761,6 +1843,13 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"custom": {
|
||||
"external_panel": {
|
||||
"complete_access": "Se voi käyttää kaikkia Home Assistantin tietoja.",
|
||||
"hide_message": "Tarkista panel_custom-komponentin dokumentaatio piilottaaksesi tämän viestin",
|
||||
"question_trust": "Luotatko ulkoiseen paneeliin {name} osoitteessa {link} ?"
|
||||
}
|
||||
},
|
||||
"developer-tools": {
|
||||
"tabs": {
|
||||
"events": {
|
||||
@ -1790,8 +1879,10 @@
|
||||
"home_assistant_logo": "Home Assistant-logo",
|
||||
"icons_by": "Kuvakkeet luonut",
|
||||
"license": "Julkaistu Apache 2.0-lisenssillä",
|
||||
"path_configuration": "Polku configuration.yaml-tiedostoon: {path}",
|
||||
"server": "palvelin",
|
||||
"source": "Lähde:",
|
||||
"system_health_error": "Järjestelmän kunto-komponenttia ei ole ladattu. Lisää 'system_health:' kohteeseen configuration.yaml",
|
||||
"title": "Tiedot"
|
||||
},
|
||||
"logs": {
|
||||
@ -1799,6 +1890,7 @@
|
||||
"details": "Lokitiedot ( {level} )",
|
||||
"load_full_log": "Lataa Home Assistantin koko loki",
|
||||
"loading_log": "Ladataan virhelokia...",
|
||||
"multiple_messages": "Viesti esiintyi ensimmäisen kerran {time} ja tämän jälkeen {counter} kertaa",
|
||||
"no_errors": "Virheitä ei ole ilmoitettu.",
|
||||
"no_issues": "Ei uusia aiheita!",
|
||||
"refresh": "Päivitä",
|
||||
@ -1824,6 +1916,7 @@
|
||||
"column_example": "Esimerkki",
|
||||
"column_parameter": "Parametri",
|
||||
"data": "Palvelutiedot (YAML, valinnainen)",
|
||||
"description": "Service dev -työkalun avulla voit kutsua mitMitä tahansa käytettävissä olevaan palvelua Home Assistant -sovelluksessa.",
|
||||
"fill_example_data": "Täytä esimerkkitiedoilla",
|
||||
"no_description": "Kuvausta ei ole saatavilla",
|
||||
"no_parameters": "Tämä palvelu ei ota parametreja.",
|
||||
@ -1831,8 +1924,11 @@
|
||||
"title": "Palvelut"
|
||||
},
|
||||
"states": {
|
||||
"alert_entity_field": "Kohde on pakollinen kenttä",
|
||||
"attributes": "Määritteet",
|
||||
"current_entities": "Nykyiset kohteet",
|
||||
"description1": "Aseta laitteen esitys Home Assistant -sovelluksessa.",
|
||||
"description2": "Tämä ei kommunikoi varsinaisen laitteen kanssa.",
|
||||
"entity": "Kohde",
|
||||
"filter_attributes": "Suodata määritteitä",
|
||||
"filter_entities": "Suodata kohteita",
|
||||
@ -1841,11 +1937,16 @@
|
||||
"no_entities": "Ei kohteita",
|
||||
"set_state": "Aseta tila",
|
||||
"state": "Tila",
|
||||
"state_attributes": "Tilamääritteet (YAML, valinnainen)",
|
||||
"title": "Tilat"
|
||||
},
|
||||
"templates": {
|
||||
"description": "Mallit tehdään Jinja2-mallimoottorilla, joissa on joitain Home Assistant -kohtaisia laajennuksia.",
|
||||
"editor": "Mallieditori",
|
||||
"title": "Malli"
|
||||
"jinja_documentation": "Jinja2-mallin dokumentaatio",
|
||||
"template_extensions": "Home Assistant -mallilaajennukset",
|
||||
"title": "Malli",
|
||||
"unknown_error_template": "Tuntematon virhe mallin renderöinnissa"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1884,6 +1985,7 @@
|
||||
"url": "Avaa ikkuna {url_path}"
|
||||
},
|
||||
"safe-mode": {
|
||||
"description": "Home Assistant joutui vaikeuksiin kokoonpanoa ladattaessa, ja se on nyt käynnissä vikasietotilassa. Katso virhelokistua mikä meni pieleen.",
|
||||
"header": "Vikasietotila aktivoitu"
|
||||
},
|
||||
"shopping-list": {
|
||||
@ -1900,16 +2002,20 @@
|
||||
"card": {
|
||||
"alarm-panel": {
|
||||
"available_states": "Käytettävissä olevat tilat",
|
||||
"description": "Hälytyspaneelikortin kortin avulla voit virittää ja purkaa hälytyksen ohjauspaneelin integrointeja.",
|
||||
"name": "Hälytyspaneeli"
|
||||
},
|
||||
"button": {
|
||||
"description": "Painikekortti antaa sinun lisätä painikkeita tehtävien suorittamiseen.",
|
||||
"name": "Painike"
|
||||
},
|
||||
"conditional": {
|
||||
"card": "Kortti",
|
||||
"change_type": "Muuta tyyppiä",
|
||||
"condition_explanation": "Kortti näytetään, kun kaikki alla olevat ehdot täyttyvät.",
|
||||
"conditions": "Ehdot",
|
||||
"current_state": "Nykyinen",
|
||||
"description": "Ehdollinen kortti näyttää toisen kortin kohteen tilan perusteella.",
|
||||
"name": "Ehdollinen",
|
||||
"state_equal": "Tila on yhtä suuri kuin",
|
||||
"state_not_equal": "Tila ei ole yhtä suuri kuin"
|
||||
@ -1919,13 +2025,17 @@
|
||||
"required": "Vaadittu"
|
||||
},
|
||||
"entities": {
|
||||
"description": "Kohde-kortti on yleisin korttityyppi. Se ryhmittelee kohteet yhteen luetteloiksi.",
|
||||
"name": "Kohteet",
|
||||
"show_header_toggle": "Näytä otsikkokytkin?"
|
||||
"show_header_toggle": "Näytä otsikkokytkin?",
|
||||
"toggle": "Ota kohteet käyttöön tai poista käytöstä"
|
||||
},
|
||||
"entity-filter": {
|
||||
"description": "Kohdesuodatin-kortin avulla voit määrittää luettelon kohteista, joita haluat seurata vain tietyssä tilassa.",
|
||||
"name": "Kohteen suodatus"
|
||||
},
|
||||
"entity": {
|
||||
"description": "Kohdekortti antaa sinulle nopean yleiskatsauksen kohteen tilasta.",
|
||||
"name": "Kohde"
|
||||
},
|
||||
"gauge": {
|
||||
@ -1952,6 +2062,7 @@
|
||||
"icon_height": "Kuvakkeen korkeus",
|
||||
"image": "Kuvan polku",
|
||||
"manual": "Manuaalinen",
|
||||
"manual_description": "Haluatko lisätä mukautetun kortin tai vain kirjoittaa YAML:in manuaalisesti?",
|
||||
"maximum": "Enimmäismäärä",
|
||||
"minimum": "Vähimmäismäärä",
|
||||
"name": "Nimi",
|
||||
@ -1969,18 +2080,23 @@
|
||||
},
|
||||
"glance": {
|
||||
"columns": "Sarakkeet",
|
||||
"description": "Glance-kortti on hyödyllinen useiden anturien ryhmittelemiseksi kompaktiin yleiskuvaan.",
|
||||
"name": "Pikavilkaisu"
|
||||
},
|
||||
"history-graph": {
|
||||
"description": "Historiakaavio-kortin avulla voit näyttää kaavion kullekin luettelossa olevalle kohteelle.",
|
||||
"name": "Historiakuvaaja"
|
||||
},
|
||||
"horizontal-stack": {
|
||||
"description": "Vaakapinokortin avulla voit pinota yhteen useita kortteja, jolloin ne ovat aina vierekkäin yhden sarakkeen tilassa.",
|
||||
"name": "Vaakapino"
|
||||
},
|
||||
"iframe": {
|
||||
"description": "Verkkosivukortin avulla voit upottaa suosikkiverkkosivusi suoraan Home Assistantiin.",
|
||||
"name": "iFrame"
|
||||
},
|
||||
"light": {
|
||||
"description": "Valokortti antaa sinun muuttaa valon kirkkautta.",
|
||||
"name": "Valo"
|
||||
},
|
||||
"map": {
|
||||
@ -1998,38 +2114,50 @@
|
||||
"name": "Merkintä"
|
||||
},
|
||||
"media-control": {
|
||||
"description": "Media Control -korttia käytetään mediasoittimen näyttämiseen käyttöliittymässä, jossa on helppokäyttöiset ohjaimet.",
|
||||
"name": "Mediaohjaus"
|
||||
},
|
||||
"picture-elements": {
|
||||
"description": "Picture Elements -kortti on yksi monipuolisimmista korttityypeistä. Korttien avulla voit sijoittaa kuvakkeita tai tekstiä ja jopa palveluja! Koordinaatteihin perustuvassa kuvassa.",
|
||||
"name": "Kuvaelementit"
|
||||
},
|
||||
"picture-entity": {
|
||||
"description": "Kuvakohde -kortti näyttää kohteen kuvan muodossa. URL-osoitteesta saatujen kuvien sijasta se voi myös näyttää kameran kuvan.",
|
||||
"name": "Kuvakohde"
|
||||
},
|
||||
"picture-glance": {
|
||||
"description": "Picture Glance -kortissa näkyy kuva ja vastaava kohde näkyy kuvakkeena. Oikealla puolella olevat kohteet sallivat vaihtotoiminnot, toiset näyttävät enemmän tietoja -valintaikkunan.",
|
||||
"name": "Kuva pikavilkaisu"
|
||||
},
|
||||
"picture": {
|
||||
"description": "Kuvakortti antaa sinun asettaa kuvan, jota käytetään navigointiin käyttöliittymän eri poluille tai palvelun suorittamiseen.",
|
||||
"name": "Kuva"
|
||||
},
|
||||
"plant-status": {
|
||||
"description": "Kasvien tila -kortti on tarkoitettu kaikille siellä oleville ihanille kotikasvitieteilijöille.",
|
||||
"name": "Kasvin tila"
|
||||
},
|
||||
"sensor": {
|
||||
"description": "Anturikortti antaa sinulle nopean yleiskatsauksen antureiden tilasta valinnaisella kaaviolla, joka kuvaa muutosta ajan myötä.",
|
||||
"graph_detail": "Kaavion tiedot",
|
||||
"graph_type": "Kaavion tyyppi",
|
||||
"name": "Sensori"
|
||||
},
|
||||
"shopping-list": {
|
||||
"description": "Ostolistakortti antaa sinun lisätä, muokata, tarkistaa ja tyhjentää kohteita ostoslistaltasi.",
|
||||
"integration_not_loaded": "Tämä kortti vaatii `shopping_list` -integraation ottamisen käyttöön.",
|
||||
"name": "Ostoslista"
|
||||
},
|
||||
"thermostat": {
|
||||
"description": "Termostaatti-kortti antaa sinun hallita ilmastokohteita. Voit muuttaa kohteen lämpötilaa ja toimintaa.",
|
||||
"name": "Termostaatti"
|
||||
},
|
||||
"vertical-stack": {
|
||||
"description": "Pystypino-kortti antaa sinun ryhmitellä useita kortteja niin, että ne ovat aina samassa sarakkeessa.",
|
||||
"name": "Pystypino"
|
||||
},
|
||||
"weather-forecast": {
|
||||
"description": "Sääennustekortti näyttää säätiedot. Erittäin hyödyllinen sisällyttää käyttöliittymiin, joita ihmiset näkevät seinällä.",
|
||||
"name": "Sääennuste"
|
||||
}
|
||||
},
|
||||
@ -2046,6 +2174,7 @@
|
||||
"move": "Siirrä",
|
||||
"options": "Lisää vaihtoehtoja",
|
||||
"pick_card": "Valitse kortti jonka haluat lisätä",
|
||||
"pick_card_view_title": "Minkä kortin haluat lisätä {name} -näkymääsi?",
|
||||
"show_code_editor": "Näytä koodieditori",
|
||||
"show_visual_editor": "Näytä visuaalinen editori",
|
||||
"toggle_editor": "Vaihda editori"
|
||||
@ -2060,12 +2189,15 @@
|
||||
"delete": "Poista näkymä",
|
||||
"edit": "Muokkaa näkymää",
|
||||
"header": "Näytä asetukset",
|
||||
"header_name": "{nimi} Näytä asetukset",
|
||||
"header_name": "{name} Näytä asetukset",
|
||||
"move_left": "Siirrä näkymää vasemmalle",
|
||||
"move_right": "Siirrä näkymää oikealle",
|
||||
"tab_badges": "Merkit",
|
||||
"tab_settings": "Asetukset",
|
||||
"tab_visibility": "Näkyvyys"
|
||||
"tab_visibility": "Näkyvyys",
|
||||
"visibility": {
|
||||
"select_users": "Valitse ketkä käyttäjät näkevät tämän näkymän navigoinnissa"
|
||||
}
|
||||
},
|
||||
"header": "Muokkaa käyttöliittymää",
|
||||
"menu": {
|
||||
@ -2088,6 +2220,7 @@
|
||||
"error_remove": "Asetusta ei voida poistaa: {error}",
|
||||
"error_save_yaml": "YAML-tiedostoa ei voi tallentaa: {error}",
|
||||
"header": "Muokkaa asetuksia",
|
||||
"resources_moved": "Resursseja ei enää lisätä Lovelace-kokoonpanoon, mutta ne voidaan lisätä Lovelace config -paneeliin.",
|
||||
"save": "Tallenna",
|
||||
"saved": "Tallennettu",
|
||||
"unsaved_changes": "Tallentamattomat muutokset"
|
||||
@ -2100,7 +2233,9 @@
|
||||
"para": "Oletuksena Home Assistant ylläpitää käyttöliittymääsi, päivittäen sitä uusien yksiköiden tai Lovelace komponenttien tullessa saataville. Jos muokkaat käyttöliittymääsi, emme enää tee muutoksia automaattisesti.",
|
||||
"para_sure": "Oletko varma, että haluat ottaa haltuun käyttöliittymän?",
|
||||
"save": "Ota hallintaan",
|
||||
"yaml_mode": "Käytät YAML-tilaa, mikä tarkoittaa, että et voi muuttaa Lovelace-kokoonpanoa käyttöliittymästä. Jos haluat muuttaa Lovelace-sovellusta käyttöliittymästä, poista 'mode: yaml' Lovelace-määrityksestäsi tiedostossa 'configuration.yaml'."
|
||||
"yaml_config": "Tämän aloittamisen helpottamiseksi on tämä hallintapaneelin nykyinen kokoonpano:",
|
||||
"yaml_control": "Jos haluat hallita YAML-tilaa, luo YAML-tiedosto, jonka nimi on määritetty tämän kojelaudan kokoonpanossa, tai oletusarvoinen 'ui-lovelace.yaml'.",
|
||||
"yaml_mode": "Käytät YAML-tilaa, mikä tarkoittaa, että et voi muuttaa Lovelace-asetuksia käyttöliittymästä. Jos haluat muuttaa Lovelacea käyttöliittymästä, poista 'mode: yaml' Lovelace-määrityksestäsi tiedostossa 'configuration.yaml'."
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Lisää Lovelace-käyttöliittymään",
|
||||
@ -2109,7 +2244,9 @@
|
||||
},
|
||||
"view": {
|
||||
"panel_mode": {
|
||||
"title": "Paneelitila?"
|
||||
"description": "Tämä renderöi ensimmäisen kortin täydellä leveydellä. Muita kortteja tässä näkymässä ei näytetä.",
|
||||
"title": "Paneelitila?",
|
||||
"warning_multiple_cards": "Tämä näkymä sisältää useamman kuin yhden kortin, paneelinäkymä tukee vain yhtä korttia."
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2118,10 +2255,12 @@
|
||||
"configure_ui": "Määrittele käyttöliittymä",
|
||||
"exit_edit_mode": "Poistu käyttöliittymän muokkaustilasta",
|
||||
"help": "Apua",
|
||||
"refresh": "Päivitä"
|
||||
"refresh": "Päivitä",
|
||||
"reload_resources": "Lataa resurssit uudelleen"
|
||||
},
|
||||
"reload_lovelace": "Lataa Lovelace uudelleen",
|
||||
"reload_resources": {
|
||||
"refresh_body": "Sinun täytyy päivittää sivu viimeistelläksesi uudelleenlatauksen, haluatko päivittää nyt?",
|
||||
"refresh_header": "Haluatko päivittää?"
|
||||
},
|
||||
"unused_entities": {
|
||||
@ -2130,14 +2269,17 @@
|
||||
"entity": "Kohde",
|
||||
"entity_id": "Kohde ID",
|
||||
"last_changed": "Viimeksi muutettu",
|
||||
"select_to_add": "Valitse kohteet, jotka haluat lisätä korttiin, ja napsauta sitten Lisää kortti -painiketta.",
|
||||
"title": "Käyttämättömät entiteetit"
|
||||
},
|
||||
"views": {
|
||||
"confirm_delete": "Oletko varma, että haluat poistaa tämän näkymän?",
|
||||
"confirm_delete_existing_cards": "Tämän näkymän poistaminen poistaa myös kortit",
|
||||
"confirm_delete_existing_cards_text": "Haluatko varmasti poistaa näkymän {name}? Näkymä sisältää {number}-kortteja, jotka poistetaan. Tätä toimintoa ei voi kumota.",
|
||||
"confirm_delete_text": "Haluatko varmasti poistaa '{name}' -näkymäsi?"
|
||||
},
|
||||
"warning": {
|
||||
"attribute_not_found": "Määrite {attribute} ei ole käytettävissä kohteessa {entity}",
|
||||
"entity_non_numeric": "Yksikkö ei ole numeerinen: {entity}",
|
||||
"entity_not_found": "Yksikkö ei ole käytettävissä: {entity}",
|
||||
"entity_unavailable": "{entity} ei ole tällä hetkellä käytettävissä"
|
||||
@ -2279,6 +2421,7 @@
|
||||
"mirror": "Peili",
|
||||
"patio": "Terassi",
|
||||
"right": "Oikea",
|
||||
"temperature_study": "Lämpötilaoppi",
|
||||
"upstairs": "Yläkerta"
|
||||
},
|
||||
"unit": {
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Arrêté"
|
||||
},
|
||||
"default": {
|
||||
"off": "Off",
|
||||
"on": "On",
|
||||
"unavailable": "Indisponible",
|
||||
"unknown": "Inconnu"
|
||||
},
|
||||
@ -471,11 +473,15 @@
|
||||
}
|
||||
},
|
||||
"common": {
|
||||
"and": "et",
|
||||
"cancel": "Annuler",
|
||||
"close": "Fermer",
|
||||
"delete": "Supprimer",
|
||||
"loading": "Chargement",
|
||||
"next": "Suivant",
|
||||
"no": "Non",
|
||||
"previous": "Précédent",
|
||||
"refresh": "Rafraîchir",
|
||||
"save": "Enregistrer",
|
||||
"successfully_deleted": "Supprimé avec succès",
|
||||
"successfully_saved": "Enregistré avec succès",
|
||||
@ -526,11 +532,11 @@
|
||||
},
|
||||
"relative_time": {
|
||||
"duration": {
|
||||
"day": "{count} {count, plural,\none {jour}\nother {jours}\n}",
|
||||
"hour": "{count} {count, plural,\none {heure}\nother {heures}\n}",
|
||||
"minute": "{count} {count, plural,\none {minute}\nother {minutes}\n}",
|
||||
"second": "{count} {count, plural,\none {seconde}\nother {secondes}\n}",
|
||||
"week": "{count} {count, plural,\none {semaine}\nother {semaines}\n}"
|
||||
"day": "{count} {count, plural,\nzero {jour}\none {jour}\nother {jours}\n}",
|
||||
"hour": "{count} {count, plural,\nzero {heure}\none {heure}\nother {heures}\n}",
|
||||
"minute": "{count} {count, plural,\nzero {minute}\none {minute}\nother {minutes}\n}",
|
||||
"second": "{count} {count, plural,\nzero {seconde}\none {seconde}\nother {secondes}\n}",
|
||||
"week": "{count} {count, plural,\nzero {semaine}\none {semaine}\nother {semaines}\n}"
|
||||
},
|
||||
"future": "Dans {time}",
|
||||
"never": "Jamais",
|
||||
@ -655,8 +661,13 @@
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"deserialize": "Tentative d'analyse des messages MQTT en tant que JSON",
|
||||
"entities": "Entités",
|
||||
"no_entities": "Aucune entité",
|
||||
"no_triggers": "Pas de déclencheur",
|
||||
"payload_display": "Affichage de la charge utile",
|
||||
"recent_messages": "{n} dernier(s) message(s) reçu(s)",
|
||||
"show_as_yaml": "Afficher en tant que YAML",
|
||||
"title": "{device} informations de débogage",
|
||||
"triggers": "Déclencheurs"
|
||||
},
|
||||
@ -707,11 +718,11 @@
|
||||
}
|
||||
},
|
||||
"duration": {
|
||||
"day": "{count} {count, plural,\none {jour}\nother {jours}\n}",
|
||||
"hour": "{count} {count, plural,\none {heure}\nother {heures}\n}",
|
||||
"minute": "{count} {count, plural,\none {minute}\nother {minutes}\n}",
|
||||
"second": "{count} {count, plural,\none {seconde}\nother {secondes}\n}",
|
||||
"week": "{count} {count, plural,\none {semaine}\nother {semaines}\n}"
|
||||
"day": "{count} {count, plural,\nzero {jour}\none {jour}\nother {jours}\n}",
|
||||
"hour": "{count} {count, plural,\nzero {heure}\none {heure}\nother {heures}\n}",
|
||||
"minute": "{count} {count, plural,\nzero {minute}\none {minute}\nother {minutes}\n}",
|
||||
"second": "{count} {count, plural,\nzero {seconde}\none {seconde}\nother {secondes}\n}",
|
||||
"week": "{count} {count, plural,\nzero {semaine}\none {semaine}\nother {semaines}\n}"
|
||||
},
|
||||
"login-form": {
|
||||
"log_in": "Connexion",
|
||||
@ -730,6 +741,10 @@
|
||||
"triggered": "{name} déclenché"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Mes calendriers",
|
||||
"today": "Aujourd'hui"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Options de configuration manquantes? Activer le mode avancé",
|
||||
@ -832,6 +847,9 @@
|
||||
},
|
||||
"label": "Appareil"
|
||||
},
|
||||
"not": {
|
||||
"label": "Pas"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Au-Dessus",
|
||||
"below": "En-Dessous",
|
||||
@ -1163,7 +1181,9 @@
|
||||
"edit_requires_storage": "L'éditeur est désactivé car la configuration est stockée dans configuration.yaml.",
|
||||
"elevation": "Élévation",
|
||||
"elevation_meters": "mètres",
|
||||
"external_url": "URL externe",
|
||||
"imperial_example": "Fahrenheit, livres",
|
||||
"internal_url": "URL interne",
|
||||
"latitude": "Latitude",
|
||||
"location_name": "Nom de votre installation Home Assistant",
|
||||
"longitude": "Longitude",
|
||||
@ -1230,6 +1250,7 @@
|
||||
},
|
||||
"delete": "Supprimer",
|
||||
"description": "Gérer les appareils connectés",
|
||||
"device_info": "Informations sur l’appareil",
|
||||
"device_not_found": "Appareil non trouvé.",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Ajouter à Lovelace",
|
||||
@ -1339,6 +1360,8 @@
|
||||
"delete_button": "Supprimer {integration}",
|
||||
"delete_confirm": "Êtes-vous sûr de vouloir supprimer cette intégration?",
|
||||
"device_unavailable": "appareil indisponible",
|
||||
"devices": "{count} {count, plural,\n zero {appareil}\n one {appareil}\n other {appareils}\n}",
|
||||
"entities": "{count} {count, plural,\n zero {entité}\n one {entité}\n other {entités}\n}",
|
||||
"entity_unavailable": "entité indisponible",
|
||||
"firmware": "Firmware: {version}",
|
||||
"hub": "Connecté via",
|
||||
@ -1388,9 +1411,13 @@
|
||||
"integration": "intégration",
|
||||
"integration_not_found": "Intégration introuvable.",
|
||||
"new": "Configurer une nouvelle intégration",
|
||||
"no_integrations": "Il semble que vous n'ayez pas encore configuré d'intégrations. Cliquez sur le bouton ci-dessous pour ajouter votre première intégration!",
|
||||
"none": "Rien n'est encore configuré",
|
||||
"none_found": "Aucune intégration trouvée",
|
||||
"none_found_detail": "Ajustez vos critères de recherche.",
|
||||
"note_about_integrations": "Toutes les intégrations ne peuvent pas encore être configurées via l'interface utilisateur.",
|
||||
"note_about_website_reference": "D'autres sont disponibles sur le ",
|
||||
"rename_dialog": "Modifier le nom de cette entrée de configuration",
|
||||
"rename_input_label": "Nom de l'entrée"
|
||||
},
|
||||
"introduction": "Ici, il est possible de configurer vos composants et Home Assistant. Tout n'est pas encore possible de configurer à partir de l'interface utilisateur, mais nous y travaillons.",
|
||||
@ -2207,12 +2234,12 @@
|
||||
"close": "Fermer",
|
||||
"empty_config": "Commencez avec un tableau de bord vide",
|
||||
"header": "Prenez le contrôle de votre Interface Lovelace",
|
||||
"para": "Par défaut, Home Assistant maintient votre interface utilisateur, la met à jour lorsque de nouvelles entités ou de nouveaux composants Lovelace UI sont disponibles. Si vous prenez le contrôle, nous ne ferons plus les changements automatiquement pour vous.",
|
||||
"para": "Par défaut, Home Assistant maintient votre interface utilisateur et la met à jour lorsque de nouvelles entités ou de nouveaux composants Lovelace UI sont disponibles. Si vous prenez le contrôle, nous ne ferons plus les changements automatiquement pour vous.",
|
||||
"para_sure": "Êtes-vous sûr de vouloir prendre le contrôle de l'interface utilisateur?",
|
||||
"save": "Prenez le contrôle",
|
||||
"yaml_config": "Pour vous aider à démarrer, voici la configuration actuelle de ce tableau de bord:",
|
||||
"yaml_control": "Pour prendre le contrôle en mode YAML, créez un fichier YAML avec le nom que vous avez spécifié dans votre configuration pour ce tableau de bord, ou le 'ui-lovelace.yaml' par défaut.",
|
||||
"yaml_mode": "Vous utilisez le mode YAML, ce qui signifie que vous ne pouvez pas modifier votre configuration Lovelace depuis l'interface utilisateur. Si vous souhaitez modifier Lovelace de l'interface utilisateur, supprimez «mode: yaml» de votre configuration Lovelace dans «configuration.yaml»."
|
||||
"yaml_mode": "Vous utilisez le mode YAML pour ce tableau de bord, ce qui signifie que vous ne pouvez pas modifier votre configuration Lovelace depuis l'interface utilisateur. Si vous souhaitez gérer votre tableau de bord via l'interface utilisateur, supprimez «mode: yaml» de votre configuration Lovelace dans «configuration.yaml»."
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Ajouter à Lovelace UI",
|
||||
@ -2258,7 +2285,8 @@
|
||||
"warning": {
|
||||
"attribute_not_found": "Attribut {attribute} non disponible dans: {entity}",
|
||||
"entity_non_numeric": "L'entité est non numérique: {entity}",
|
||||
"entity_not_found": "Entité non disponible: {entity}"
|
||||
"entity_not_found": "Entité non disponible: {entity}",
|
||||
"entity_unavailable": "{entity} n'est pas disponible actuellement"
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
|
1
translations/frontend/fy.json
Normal file
1
translations/frontend/fy.json
Normal file
@ -0,0 +1 @@
|
||||
{}
|
1
translations/frontend/gl.json
Normal file
1
translations/frontend/gl.json
Normal file
@ -0,0 +1 @@
|
||||
{}
|
@ -147,6 +147,8 @@
|
||||
"stopped": "Gstoppt"
|
||||
},
|
||||
"default": {
|
||||
"off": "Aus",
|
||||
"on": "An",
|
||||
"unavailable": "Nid verfüägbar",
|
||||
"unknown": "Unbekannt"
|
||||
},
|
||||
@ -345,7 +347,10 @@
|
||||
}
|
||||
},
|
||||
"common": {
|
||||
"loading": "Lade"
|
||||
"loading": "Lade",
|
||||
"next": "Weiter",
|
||||
"previous": "Zurück",
|
||||
"refresh": "Neu laden"
|
||||
},
|
||||
"components": {
|
||||
"device-picker": {
|
||||
@ -370,6 +375,10 @@
|
||||
"connection_lost": "Vrbindig vrlore. Neu verbinde..."
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Meine Kalender",
|
||||
"today": "Heute"
|
||||
},
|
||||
"config": {
|
||||
"automation": {
|
||||
"caption": "Automation",
|
||||
@ -396,6 +405,9 @@
|
||||
"conditions": {
|
||||
"header": "Bedingig",
|
||||
"type": {
|
||||
"not": {
|
||||
"label": "Nicht"
|
||||
},
|
||||
"sun": {
|
||||
"after": "Nachhär:",
|
||||
"before": "Vorhär:",
|
||||
@ -462,6 +474,7 @@
|
||||
"caption": "Home Assistant Cloud"
|
||||
},
|
||||
"devices": {
|
||||
"device_info": "Geräteinformationen",
|
||||
"scripts": "Scripts"
|
||||
},
|
||||
"integrations": {
|
||||
@ -474,7 +487,9 @@
|
||||
},
|
||||
"configure": "Konfiguriärä",
|
||||
"configured": "Konfiguriärt",
|
||||
"discovered": "Erkennt"
|
||||
"discovered": "Erkennt",
|
||||
"none_found": "Keine Integrationen gefunden",
|
||||
"none_found_detail": "Passen Sie Ihre Suchkriterien an."
|
||||
},
|
||||
"users": {
|
||||
"caption": "Benutzer",
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "עצור"
|
||||
},
|
||||
"default": {
|
||||
"off": "מופסק",
|
||||
"on": "מופעל",
|
||||
"unavailable": "לא זמין",
|
||||
"unknown": "לא ידוע"
|
||||
},
|
||||
@ -1096,6 +1098,7 @@
|
||||
"caption": "אינטגרציות",
|
||||
"config_entry": {
|
||||
"area": "ב {area}",
|
||||
"delete": "מחק",
|
||||
"delete_button": "מחק {integration}",
|
||||
"delete_confirm": "האם אתה בטוח שברצונך למחוק אינטגרציה זו?",
|
||||
"device_unavailable": "התקן אינו זמין",
|
||||
@ -1106,8 +1109,11 @@
|
||||
"no_area": "ללא אזור",
|
||||
"no_device": "ישויות ללא מכשירים",
|
||||
"no_devices": "לאינטגרציה זו אין התקנים.",
|
||||
"options": "אפשרויות",
|
||||
"rename": "שנה שם",
|
||||
"restart_confirm": "הפעל מחדש את Home Assistant כדי להשלים את הסרת האינטגרציה",
|
||||
"settings_button": "ערוך הגדרות עבור {integration}",
|
||||
"system_options": "אפשרויות מערכת",
|
||||
"system_options_button": "אפשרויות מערכת עבור {integration}"
|
||||
},
|
||||
"config_flow": {
|
||||
@ -1132,6 +1138,8 @@
|
||||
"integration_not_found": "האינטגרציה לא נמצאה.",
|
||||
"new": "הגדר אינטגרציה",
|
||||
"none": "כלום אינו הוגדר עדיין",
|
||||
"none_found": "לא נמצאו אינטגרציות",
|
||||
"none_found_detail": "התאם את קריטריוני החיפוש שלך.",
|
||||
"note_about_integrations": "קיימות אינטגרציות שלא ניתן עדיין להגדירן ע\"י ממשק המשתמש.",
|
||||
"note_about_website_reference": "מידע נוסף זמין ב:"
|
||||
},
|
||||
@ -1751,7 +1759,8 @@
|
||||
},
|
||||
"warning": {
|
||||
"entity_non_numeric": "הישות אינה מספרית: {entity}",
|
||||
"entity_not_found": "הישות אינה זמינה: {entity}"
|
||||
"entity_not_found": "הישות אינה זמינה: {entity}",
|
||||
"entity_unavailable": "כרגע {entity} אינו זמין"
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
|
@ -92,6 +92,8 @@
|
||||
"off": "बंद"
|
||||
},
|
||||
"default": {
|
||||
"off": "बंद",
|
||||
"on": "चालू",
|
||||
"unavailable": "अनुपलब्ध",
|
||||
"unknown": "अनजान"
|
||||
},
|
||||
@ -153,8 +155,31 @@
|
||||
}
|
||||
},
|
||||
"ui": {
|
||||
"card": {
|
||||
"weather": {
|
||||
"attributes": {
|
||||
"precipitation": "वर्षण"
|
||||
},
|
||||
"high": "उच्च",
|
||||
"low": "कम"
|
||||
}
|
||||
},
|
||||
"common": {
|
||||
"undo": "Undo"
|
||||
"undo": "पूर्ववत करें"
|
||||
},
|
||||
"dialogs": {
|
||||
"mqtt_device_debug_info": {
|
||||
"entities": "संस्थाएं",
|
||||
"no_entities": "कोई संस्थाएं नहीं",
|
||||
"no_triggers": "कोई ट्रिगर नहीं",
|
||||
"show_as_yaml": "YAML के रूप में दिखाएं",
|
||||
"triggers": "ट्रिगर"
|
||||
},
|
||||
"zha_device_info": {
|
||||
"services": {
|
||||
"zigbee_information": "डिवाइस के लिए Zigbee जानकारी देखें।"
|
||||
}
|
||||
}
|
||||
},
|
||||
"duration": {
|
||||
"day": "{count} {count, plural,\n one {दिन}\n other {दिन}\n}",
|
||||
@ -170,6 +195,9 @@
|
||||
"editor": {
|
||||
"conditions": {
|
||||
"type": {
|
||||
"not": {
|
||||
"label": "नहीं"
|
||||
},
|
||||
"sun": {
|
||||
"after": "बाद:",
|
||||
"before": "पहले:",
|
||||
@ -203,12 +231,49 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"picker": {
|
||||
"headers": {
|
||||
"name": "नाम"
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtering": {
|
||||
"clear": "विशद",
|
||||
"filtering_by": "द्वारा छान रहे हैं"
|
||||
},
|
||||
"integrations": {
|
||||
"add_integration": "एकीकरण जोड़ें",
|
||||
"config_entry": {
|
||||
"delete": "हटाएं",
|
||||
"rename": "नाम बदलें",
|
||||
"system_options": "सिस्टम विकल्प"
|
||||
},
|
||||
"integration": "एकीकरण",
|
||||
"no_integrations": "लगता है जैसे आपके पास अभी तक कोई भी पूर्णांक कॉन्फ़िगर नहीं है। अपना पहला एकीकरण जोड़ने के लिए नीचे दिए गए बटन पर क्लिक करें!",
|
||||
"rename_dialog": "इस कॉन्फ़िगरेशन प्रविष्टि का नाम संपादित करें",
|
||||
"rename_input_label": "प्रवेश का नाम"
|
||||
},
|
||||
"script": {
|
||||
"picker": {
|
||||
"headers": {
|
||||
"name": "नाम"
|
||||
}
|
||||
}
|
||||
},
|
||||
"users": {
|
||||
"editor": {
|
||||
"admin": "admin",
|
||||
"system_generated_users_not_editable": "ARAVIN"
|
||||
"admin": "प्रशासक",
|
||||
"name": "नाम",
|
||||
"system_generated_users_not_editable": "सिस्टम जनरेट किए गए उपयोगकर्ताओं को अपडेट करने में असमर्थ।",
|
||||
"update_user": "अपडेट"
|
||||
},
|
||||
"picker": {
|
||||
"headers": {
|
||||
"group": "समूह",
|
||||
"name": "नाम",
|
||||
"system": "सिस्टम"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zha": {
|
||||
@ -248,7 +313,10 @@
|
||||
"editor": {
|
||||
"card": {
|
||||
"entity": {
|
||||
"description": "KARNATAKA"
|
||||
"description": "एंटिटी कार्ड आपको अपनी इकाई की स्थिति का त्वरित अवलोकन देता है।"
|
||||
},
|
||||
"generic": {
|
||||
"double_tap_action": "डबल टैप एक्शन"
|
||||
},
|
||||
"map": {
|
||||
"hours_to_show": "hours to show"
|
||||
@ -258,6 +326,12 @@
|
||||
"custom_card": "custom_ card",
|
||||
"no_description": "description"
|
||||
}
|
||||
},
|
||||
"reload_resources": {
|
||||
"refresh_header": "क्या आप रिफ्रेश करना चाहते हैं?"
|
||||
},
|
||||
"warning": {
|
||||
"entity_unavailable": "{entity} वर्तमान में अनुपलब्ध है"
|
||||
}
|
||||
},
|
||||
"page-authorize": {
|
||||
@ -284,6 +358,11 @@
|
||||
}
|
||||
},
|
||||
"profile": {
|
||||
"dashboard": {
|
||||
"description": "इस उपकरण के लिए एक डिफ़ॉल्ट डैशबोर्ड चुनें।",
|
||||
"dropdown_label": "डैशबोर्ड",
|
||||
"header": "डैशबोर्ड"
|
||||
},
|
||||
"language": {
|
||||
"link_promo": "अनुवाद करने में सहायता करें"
|
||||
}
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Megállítva"
|
||||
},
|
||||
"default": {
|
||||
"off": "Ki",
|
||||
"on": "Be",
|
||||
"unavailable": "Nem elérhető",
|
||||
"unknown": "Ismeretlen"
|
||||
},
|
||||
@ -344,7 +346,7 @@
|
||||
},
|
||||
"automation": {
|
||||
"last_triggered": "Utoljára aktiválva",
|
||||
"trigger": "Aktivál"
|
||||
"trigger": "Végrehajt"
|
||||
},
|
||||
"camera": {
|
||||
"not_available": "Kép nem áll rendelkezésre"
|
||||
@ -475,7 +477,10 @@
|
||||
"close": "Bezárás",
|
||||
"delete": "Törlés",
|
||||
"loading": "Betöltés",
|
||||
"next": "Tovább",
|
||||
"no": "Nem",
|
||||
"previous": "Előző",
|
||||
"refresh": "Frissítés",
|
||||
"save": "Mentés",
|
||||
"successfully_deleted": "Sikeresen törölve",
|
||||
"successfully_saved": "Sikeresen elmentve",
|
||||
@ -660,7 +665,7 @@
|
||||
"no_entities": "Nincsenek entitások",
|
||||
"no_triggers": "Nincsenek eseményindítók",
|
||||
"payload_display": "Payload megjelenítése",
|
||||
"recent_messages": "{n} legfrissebb fogadott üzenet",
|
||||
"recent_messages": "{n} legfrissebb fogadott üzenet(ek)",
|
||||
"show_as_yaml": "Megjelenítés YAML-ként",
|
||||
"title": "{device} debug infók",
|
||||
"triggers": "Eseményindítók"
|
||||
@ -735,6 +740,10 @@
|
||||
"triggered": "Aktiválva {name}"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Saját naptáraim",
|
||||
"today": "Ma"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Hiányzó konfigurációs beállítások? Kapcsold be a haladó üzemmódot",
|
||||
@ -837,6 +846,9 @@
|
||||
},
|
||||
"label": "Eszköz"
|
||||
},
|
||||
"not": {
|
||||
"label": "Nem"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Felett",
|
||||
"below": "Alatt",
|
||||
@ -1397,6 +1409,8 @@
|
||||
"new": "Új integráció beállítása",
|
||||
"no_integrations": "Úgy tűnik, még nincs beállítva egyetlen integráció sem. Kattints az alábbi gombra az első integráció hozzáadásához!",
|
||||
"none": "Még semmi sincs beállítva",
|
||||
"none_found": "Nincsenek integrációk",
|
||||
"none_found_detail": "Módosítsd a keresési feltételeket.",
|
||||
"note_about_integrations": "Még nem minden integráció konfigurálható a felhasználói felületen keresztül.",
|
||||
"note_about_website_reference": "Továbbiak érhetőek el itt: ",
|
||||
"rename_dialog": "A konfigurációs bejegyzés nevének szerkesztése",
|
||||
@ -2216,12 +2230,12 @@
|
||||
"close": "Bezárás",
|
||||
"empty_config": "Kezdj egy üres irányítópulttal",
|
||||
"header": "Vedd át az irányítást a Lovelace UI felett",
|
||||
"para": "Alapértelmezés szerint a Home Assistant kezeli a felhasználói felületet, és frissíti azt, amikor új entitások vagy Lovelace komponensek válnak elérhetővé. Ha átveszed az irányítást, többé nem fogunk automatikusan módosításokat végezni számodra.",
|
||||
"para": "Ezt az irányítópultot jelenleg a Home Assistant kezeli. Automatikusan frissül, amikor új entitások vagy Lovelace komponensek válnak elérhetővé. Ha átveszed az irányítást, akkor ez az irányítópult nem fog többé automatikusan frissülni. Bármikor létre tudsz hozni egy új irányítópultot a konfigurációban a próbálgatáshoz.",
|
||||
"para_sure": "Biztosan át szeretnéd venni az irányítást a felhasználói felületed felett?",
|
||||
"save": "Irányítás átvétele",
|
||||
"yaml_config": "A kezdéshez itt a jelenlegi konfigurációja ennek az irányítópultnak:",
|
||||
"yaml_control": "Ahhoz, hogy átvedd az irányítást YAML módban, hozz létre egy YAML fájlt az irányítópult konfigurációjában megadott vagy az alapértelmezett 'ui-lovelace.yaml' névvel.",
|
||||
"yaml_mode": "YAML módot használsz, ezért nem módosíthatod a Lovelace konfigurációt a felhasználói felületről. Ha mégis onnan szeretnéd, akkor távolítsd el a 'mode: yaml' bejegyzést a Lovelace konfigurációból a 'configuration.yaml' fájlban."
|
||||
"yaml_mode": "YAML módot használsz ehhez az irányítópulthoz, ezért nem módosíthatod a Lovelace konfigurációt a felhasználói felületről. Ha mégis onnan szeretnéd, akkor távolítsd el a 'mode: yaml' bejegyzést a Lovelace konfigurációból a 'configuration.yaml' fájlban."
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Hozzáadás a Lovelace-hez",
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Arrestato"
|
||||
},
|
||||
"default": {
|
||||
"off": "Spento",
|
||||
"on": "Acceso",
|
||||
"unavailable": "Non disponibile",
|
||||
"unknown": "Sconosciuto"
|
||||
},
|
||||
@ -475,7 +477,10 @@
|
||||
"close": "Chiudi",
|
||||
"delete": "Elimina",
|
||||
"loading": "Caricamento",
|
||||
"next": "Avanti",
|
||||
"no": "No",
|
||||
"previous": "Indietro",
|
||||
"refresh": "Aggiorna",
|
||||
"save": "Salva",
|
||||
"successfully_deleted": "Cancellato con successo",
|
||||
"successfully_saved": "Salvataggio riuscito",
|
||||
@ -654,6 +659,17 @@
|
||||
"stop": "Stop"
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"deserialize": "Tentativo di analizzare i messaggi MQTT come JSON",
|
||||
"entities": "Entità",
|
||||
"no_entities": "Nessuna entità",
|
||||
"no_triggers": "Nessuna attivazione",
|
||||
"payload_display": "Visualizzazione del payload",
|
||||
"recent_messages": "{n} messaggi ricevuti più di recente",
|
||||
"show_as_yaml": "Mostra come YAML",
|
||||
"title": "Informazioni di debug per il dispositivo {device}",
|
||||
"triggers": "Attivazioni"
|
||||
},
|
||||
"options_flow": {
|
||||
"form": {
|
||||
"header": "Opzioni"
|
||||
@ -724,6 +740,10 @@
|
||||
"triggered": "Attivato {name}"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Calendari personali",
|
||||
"today": "Oggi"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Opzioni di configurazione mancanti? Abilita la modalità avanzata",
|
||||
@ -826,6 +846,9 @@
|
||||
},
|
||||
"label": "Dispositivo"
|
||||
},
|
||||
"not": {
|
||||
"label": "Non"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Superiore",
|
||||
"below": "Inferiore",
|
||||
@ -917,8 +940,8 @@
|
||||
},
|
||||
"mqtt": {
|
||||
"label": "MQTT",
|
||||
"payload": "Payload (opzionale)",
|
||||
"topic": "Argomento"
|
||||
"payload": "Messaggio (o Payload) (opzionale)",
|
||||
"topic": "Argomento (o Topic)"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Maggiore di",
|
||||
@ -1294,6 +1317,10 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtering": {
|
||||
"clear": "Cancella",
|
||||
"filtering_by": "Filtraggio per"
|
||||
},
|
||||
"header": "Configura Home Assistant",
|
||||
"helpers": {
|
||||
"caption": "Aiutanti",
|
||||
@ -1321,12 +1348,16 @@
|
||||
}
|
||||
},
|
||||
"integrations": {
|
||||
"add_integration": "Aggiungi integrazione",
|
||||
"caption": "Integrazioni",
|
||||
"config_entry": {
|
||||
"area": "In {area}",
|
||||
"delete": "Elimina",
|
||||
"delete_button": "Elimina {integration}",
|
||||
"delete_confirm": "Sei sicuro di voler eliminare questa integrazione?",
|
||||
"device_unavailable": "dispositivo non disponibile",
|
||||
"devices": "{count} {count, plural, \none {dispositivo}\nother {dispositivi}\n}",
|
||||
"entities": "{count} {count, plural, \none {entità}\nother {entità }\n}",
|
||||
"entity_unavailable": "entità non disponibile",
|
||||
"firmware": "Firmware: {version}",
|
||||
"hub": "Connesso tramite",
|
||||
@ -1334,8 +1365,11 @@
|
||||
"no_area": "Nessuna area",
|
||||
"no_device": "Entità senza dispositivi",
|
||||
"no_devices": "Questa integrazione non ha dispositivi.",
|
||||
"options": "Opzioni",
|
||||
"rename": "Rinomina",
|
||||
"restart_confirm": "Riavvia Home Assistant per completare la rimozione di questa integrazione",
|
||||
"settings_button": "Modificare le impostazioni per {integration}.",
|
||||
"system_options": "Opzioni di sistema",
|
||||
"system_options_button": "Opzioni di sistema per {integration}"
|
||||
},
|
||||
"config_flow": {
|
||||
@ -1370,11 +1404,17 @@
|
||||
"show_ignored": "Mostra integrazioni ignorate",
|
||||
"stop_ignore": "Smetti di ignorare"
|
||||
},
|
||||
"integration": "Integrazione",
|
||||
"integration_not_found": "Integrazione non trovata.",
|
||||
"new": "Configura una nuova integrazione",
|
||||
"no_integrations": "Sembra che tu non abbia ancora alcuna integrazione configurata. Fai clic sul pulsante in basso per aggiungere la tua prima integrazione!",
|
||||
"none": "Non hai ancora configurato niente",
|
||||
"none_found": "Non sono state trovate integrazioni",
|
||||
"none_found_detail": "Modifica i criteri di ricerca.",
|
||||
"note_about_integrations": "Non tutte le integrazioni possono ancora essere configurate tramite l'interfaccia utente.",
|
||||
"note_about_website_reference": "Ulteriori informazioni sono disponibili su "
|
||||
"note_about_website_reference": "Ulteriori informazioni sono disponibili su ",
|
||||
"rename_dialog": "Modifica il nome di questa voce di configurazione",
|
||||
"rename_input_label": "Nome della voce"
|
||||
},
|
||||
"introduction": "Qui è possibile configurare i componenti e Home Assistant. Non è ancora possibile configurare tutto dall'Interfaccia Utente, ma ci stiamo lavorando.",
|
||||
"lovelace": {
|
||||
@ -1912,12 +1952,12 @@
|
||||
},
|
||||
"history": {
|
||||
"period": "Periodo",
|
||||
"showing_entries": "Mostra registrazioni per"
|
||||
"showing_entries": "Visualizzazione delle voci per"
|
||||
},
|
||||
"logbook": {
|
||||
"entries_not_found": "Non sono state trovate voci nel registro.",
|
||||
"period": "Periodo",
|
||||
"showing_entries": "Mostra registrazioni per"
|
||||
"showing_entries": "Visualizzazione delle voci per"
|
||||
},
|
||||
"lovelace": {
|
||||
"add_entities": {
|
||||
@ -2190,12 +2230,12 @@
|
||||
"close": "Chiudi",
|
||||
"empty_config": "Iniziare con un cruscotto vuoto",
|
||||
"header": "Prendi il controllo della tua interfaccia utente di Lovelace",
|
||||
"para": "Per impostazione predefinita, Home Assistant gestirà l'Interfaccia Utente, aggiornandola quando nuove entità o componenti dell'IU Lovelace diventano disponibili. Se prendi il controllo non effettueremo più automaticamente le modifiche per te.",
|
||||
"para": "Questo cruscotto è attualmente gestito da Home Assistant. E' aggiornato automaticamente quando nuove entità o componenti dell'Interfaccia Utente Lovelace diventano disponibili. Se si assume il controllo, questo cruscotto non verrà più aggiornato automaticamente. È sempre possibile creare un nuovo cruscotto in configurazione con cui esperimentare.",
|
||||
"para_sure": "Sei sicuro di voler prendere il controllo della tua interfaccia utente?",
|
||||
"save": "Prendere il controllo",
|
||||
"yaml_config": "Per aiutarti a iniziare qui c'è la configurazione corrente di questo cruscotto:",
|
||||
"yaml_control": "Per assumere il controllo in modalità YAML, creare un file YAML con il nome specificato nella configurazione per questo cruscotto, o il predefinito 'ui-lovelace.yaml'.",
|
||||
"yaml_mode": "Si sta utilizzando la modalità YAML, il che significa che non è possibile modificare la configurazione Lovelace dall'Interfaccia Utente. Se si desidera modificare Lovelace dall'Interfaccia Utente, rimuovere la riga con 'mode: yaml' dalla configurazione Lovelace in 'configuration.yaml'."
|
||||
"yaml_mode": "Questo cruscotto sta utilizzando la modalità YAML, il che significa che non è possibile modificare la configurazione di Lovelace dall'Interfaccia Utente. Se volete gestire questo cruscotto dall'Interfaccia Utente, rimuovere 'mode: yaml' dalla configurazione di Lovelace in 'configuration.yaml'."
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Aggiungi all'interfaccia utente di Lovelace",
|
||||
@ -2241,14 +2281,15 @@
|
||||
"warning": {
|
||||
"attribute_not_found": "Attributo {attribute} non disponibile in: {entity}",
|
||||
"entity_non_numeric": "L'entità non è numerica: {entity}",
|
||||
"entity_not_found": "Entità non disponibile: {entity}"
|
||||
"entity_not_found": "Entità non disponibile: {entity}",
|
||||
"entity_unavailable": "{entity} non è al momento disponibile"
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
"delete_button": "Elimina",
|
||||
"delete_prompt": "Eliminare questo messaggio?",
|
||||
"empty": "Non hai nessun messaggio",
|
||||
"playback_title": "Riproduci messaggio"
|
||||
"playback_title": "Riproduzione messaggio"
|
||||
},
|
||||
"page-authorize": {
|
||||
"abort_intro": "Login interrotto",
|
||||
@ -2514,7 +2555,7 @@
|
||||
},
|
||||
"shopping-list": {
|
||||
"add_item": "Aggiungi articolo",
|
||||
"clear_completed": "Pulizia completata",
|
||||
"clear_completed": "Cancellazione completata",
|
||||
"microphone_tip": "Cliccare sul microfono in alto a destra e dire o digitare \"Aggiungi caramelle alla mia lista della spesa\"."
|
||||
}
|
||||
},
|
||||
|
@ -1,4 +1,9 @@
|
||||
{
|
||||
"config_entry": {
|
||||
"disabled_by": {
|
||||
"integration": "インテグレーション"
|
||||
}
|
||||
},
|
||||
"panel": {
|
||||
"calendar": "カレンダー",
|
||||
"config": "設定",
|
||||
@ -151,6 +156,8 @@
|
||||
"opening": "扉"
|
||||
},
|
||||
"default": {
|
||||
"off": "オフ",
|
||||
"on": "オン",
|
||||
"unavailable": "利用不可",
|
||||
"unknown": "不明"
|
||||
},
|
||||
@ -373,6 +380,7 @@
|
||||
"no_history_found": "状態履歴がありません。"
|
||||
},
|
||||
"related-items": {
|
||||
"integration": "インテグレーション",
|
||||
"no_related_found": "関連するアイテムが見つかりませんでした。"
|
||||
},
|
||||
"relative_time": {
|
||||
@ -474,6 +482,10 @@
|
||||
"stop": "停止"
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"show_as_yaml": "YAML として表示",
|
||||
"triggers": "トリガー"
|
||||
},
|
||||
"voice_command": {
|
||||
"did_not_hear": "Home Assistant は何も聞きませんでした",
|
||||
"error": "エラーが発生しました",
|
||||
@ -687,12 +699,14 @@
|
||||
"enter_pin_hint": "セキュリティデバイスを使用するには PIN を入力してください",
|
||||
"security_devices": "セキュリティデバイス"
|
||||
},
|
||||
"integrations": "インテグレーション",
|
||||
"remote": {
|
||||
"info": "Home Assistant Cloud は、自宅の外からインスタンスへの安全なリモート接続を提供します。"
|
||||
},
|
||||
"webhooks": {
|
||||
"disable_hook_error_msg": "ウェブホックを無効にできませんでした:",
|
||||
"manage": "管理"
|
||||
"manage": "管理",
|
||||
"no_hooks_yet_link_integration": "Webhook ベースのインテグレーション"
|
||||
}
|
||||
},
|
||||
"alexa": {
|
||||
@ -720,6 +734,8 @@
|
||||
"learn_more_link": "Home Assistant Cloud の情報をもっと見る。"
|
||||
},
|
||||
"register": {
|
||||
"feature_amazon_alexa": "Amazon Alexa との統合",
|
||||
"feature_google_home": "Google Assistant との統合",
|
||||
"information2": "試用版では、Home Assistant Cloud すべての特典にアクセスできます、例えば:"
|
||||
}
|
||||
},
|
||||
@ -799,6 +815,7 @@
|
||||
"header": "エンティティ",
|
||||
"headers": {
|
||||
"entity_id": "エンティティ ID",
|
||||
"integration": "インテグレーション",
|
||||
"name": "名前"
|
||||
},
|
||||
"status": {
|
||||
@ -806,6 +823,10 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtering": {
|
||||
"clear": "消去",
|
||||
"filtering_by": "フィルタリング"
|
||||
},
|
||||
"header": "Home Assistant の設定",
|
||||
"helpers": {
|
||||
"caption": "ヘルパー",
|
||||
@ -832,14 +853,26 @@
|
||||
}
|
||||
},
|
||||
"integrations": {
|
||||
"add_integration": "インテグレーションを追加",
|
||||
"config_entry": {
|
||||
"delete_button": "{integration} を削除"
|
||||
"delete": "削除",
|
||||
"delete_button": "{integration} を削除",
|
||||
"no_area": "エリアなし",
|
||||
"options": "オプション",
|
||||
"rename": "名前を変更",
|
||||
"settings_button": "{integration} の設定を編集",
|
||||
"system_options": "システムオプション",
|
||||
"system_options_button": "{integration} のシステムオプション"
|
||||
},
|
||||
"config_flow": {
|
||||
"aborted": "中止",
|
||||
"close": "閉じる",
|
||||
"created_config": "{name} の構成が作成しました。",
|
||||
"dismiss": "ダイアログを閉じる",
|
||||
"error_saving_area": "エリアを保存できません: {error}",
|
||||
"external_step": {
|
||||
"description": "この手順を完了するには、外部のウエブサイトにアクセスする必要があります。"
|
||||
},
|
||||
"finish": "完了",
|
||||
"loading_first_time": "インテグレーションのインストールを完了するまでお待ちください",
|
||||
"submit": "送信"
|
||||
@ -847,7 +880,21 @@
|
||||
"description": "インテグレーションの管理とセットアップ",
|
||||
"details": "インテグレーションの詳細",
|
||||
"home_assistant_website": "Home Assistant のウェブサイト",
|
||||
"integration_not_found": "インテグレーションが見つかりません。"
|
||||
"ignore": {
|
||||
"confirm_delete_ignore_title": "{name} の無視を停止しますか?",
|
||||
"confirm_ignore_title": "{name} の検出を無視しますか?",
|
||||
"hide_ignored": "無視されたインテグレーションを非表示にする",
|
||||
"ignore": "無視する",
|
||||
"ignored": "無視しました",
|
||||
"show_ignored": "無視されたインテグレーションを表示",
|
||||
"stop_ignore": "無視を停止する"
|
||||
},
|
||||
"integration": "インテグレーション",
|
||||
"integration_not_found": "インテグレーションが見つかりません。",
|
||||
"none_found": "インテグレーションが見つかりません。",
|
||||
"none_found_detail": "別の検索基準をためしてみます。",
|
||||
"rename_dialog": "このコンフィグレーションエントリーの名前を変更",
|
||||
"rename_input_label": "エントリー名"
|
||||
},
|
||||
"lovelace": {
|
||||
"caption": "Lovelace ダッシュボード",
|
||||
@ -922,6 +969,8 @@
|
||||
"detail": {
|
||||
"create": "作成",
|
||||
"delete": "削除",
|
||||
"link_integrations_page": "インテグレーションページ",
|
||||
"link_presence_detection_integrations": "プレゼンス検出のインテグレーション",
|
||||
"update": "更新"
|
||||
},
|
||||
"no_persons_created_yet": "まだ人を作成していませんですね。",
|
||||
@ -1410,6 +1459,9 @@
|
||||
"core-config": {
|
||||
"intro_location": "どこに住んでいるか知りたいです。 この情報は、他の情報の表示および太陽の位置に関する自動化の設定に役立ちます。 これらの情報がインターネットで外部と共有されることがありません。",
|
||||
"location_name_default": "自宅"
|
||||
},
|
||||
"integration": {
|
||||
"finish": "完了"
|
||||
}
|
||||
},
|
||||
"profile": {
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "멈춤"
|
||||
},
|
||||
"default": {
|
||||
"off": "끄기",
|
||||
"on": "켜기",
|
||||
"unavailable": "사용불가",
|
||||
"unknown": "알수없음"
|
||||
},
|
||||
@ -471,11 +473,15 @@
|
||||
}
|
||||
},
|
||||
"common": {
|
||||
"and": "그리고",
|
||||
"cancel": "취소",
|
||||
"close": "닫기",
|
||||
"delete": "삭제",
|
||||
"loading": "읽는 중",
|
||||
"next": "다음",
|
||||
"no": "아니오",
|
||||
"previous": "이전",
|
||||
"refresh": "새로고침",
|
||||
"save": "저장",
|
||||
"successfully_deleted": "성공적으로 삭제되었습니다",
|
||||
"successfully_saved": "성공적으로 저장되었습니다",
|
||||
@ -691,7 +697,7 @@
|
||||
"confirmations": {
|
||||
"remove": "이 기기를 제거하시겠습니까?"
|
||||
},
|
||||
"device_signature": "Zigbee 기기서명",
|
||||
"device_signature": "Zigbee 기기 서명",
|
||||
"last_seen": "마지막 확인",
|
||||
"manuf": "{manufacturer} 제조",
|
||||
"no_area": "영역 없음",
|
||||
@ -735,6 +741,10 @@
|
||||
"triggered": "{name} 트리거됨"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "내 캘린더",
|
||||
"today": "오늘"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "구성 옵션이 보이지 않으신가요? 고급 모드를 사용해보세요",
|
||||
@ -827,7 +837,7 @@
|
||||
"type_select": "조건 유형",
|
||||
"type": {
|
||||
"and": {
|
||||
"label": "다중조건 (그리고)"
|
||||
"label": "다중조건 (And)"
|
||||
},
|
||||
"device": {
|
||||
"extra_fields": {
|
||||
@ -837,6 +847,9 @@
|
||||
},
|
||||
"label": "기기"
|
||||
},
|
||||
"not": {
|
||||
"label": "다중조건 (Not)"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "이상",
|
||||
"below": "이하",
|
||||
@ -844,7 +857,7 @@
|
||||
"value_template": "값 템플릿 (선택 사항)"
|
||||
},
|
||||
"or": {
|
||||
"label": "다중조건 (또는)"
|
||||
"label": "다중조건 (Or)"
|
||||
},
|
||||
"state": {
|
||||
"label": "상태",
|
||||
@ -965,8 +978,8 @@
|
||||
"label": "시간"
|
||||
},
|
||||
"webhook": {
|
||||
"label": "Webhook",
|
||||
"webhook_id": "Webhook ID"
|
||||
"label": "웹 훅",
|
||||
"webhook_id": "웹 훅 ID"
|
||||
},
|
||||
"zone": {
|
||||
"enter": "입장",
|
||||
@ -1052,16 +1065,16 @@
|
||||
"sign_out": "로그 아웃",
|
||||
"thank_you_note": "Home Assistant Cloud 를 이용해주셔서 감사합니다. 여러분 덕분에 저희는 모든 분들에게 더 나은 홈 자동화를 제공해드릴 수 있습니다. 감사합니다!",
|
||||
"webhooks": {
|
||||
"disable_hook_error_msg": "Webhook 를 비활성화하지 못했습니다:",
|
||||
"info": "Webhook 에 의해 트리거 되도록 구성된 모든 구성요소를 인터넷상에 공개 노출시키지 않고도 어디서나 Home Assistant 로 데이터를 보낼 수 있는 공개된 액세스가 가능한 URL 을 제공해드립니다.",
|
||||
"link_learn_more": "Webhook 기반 자동화 생성에 대해 더 알아보기.",
|
||||
"disable_hook_error_msg": "웹 훅을 비활성화하지 못했습니다:",
|
||||
"info": "웹 훅에 의해 트리거 되도록 구성된 모든 구성요소를 인터넷상에 공개 노출시키지 않고도 어디서나 Home Assistant 로 데이터를 보낼 수 있는 공개된 액세스가 가능한 URL 을 제공해드립니다.",
|
||||
"link_learn_more": "웹 훅 기반 자동화 생성에 대해 더 알아보기.",
|
||||
"loading": "읽는 중 ...",
|
||||
"manage": "관리",
|
||||
"no_hooks_yet": "아직 Webhook 가 없는 것 같습니다. 다음을 구성하여 시작하실 수 있습니다. ",
|
||||
"no_hooks_yet_link_automation": "Webhook 자동화",
|
||||
"no_hooks_yet_link_integration": "Webhook 기반 연동",
|
||||
"no_hooks_yet": "아직 웹 훅이 없는 것 같습니다. 다음을 구성하여 시작하실 수 있습니다. ",
|
||||
"no_hooks_yet_link_automation": "웹 훅 자동화",
|
||||
"no_hooks_yet_link_integration": "웹 훅 기반 연동",
|
||||
"no_hooks_yet2": " 또는 다음을 작성할 수 있습니다. ",
|
||||
"title": "Webhooks"
|
||||
"title": "웹 훅"
|
||||
}
|
||||
},
|
||||
"alexa": {
|
||||
@ -1083,15 +1096,15 @@
|
||||
"will_be_auto_renewed": "인증서는 자동으로 갱신됩니다"
|
||||
},
|
||||
"dialog_cloudhook": {
|
||||
"available_at": "Webhook 는 다음의 URL 을 사용해 주세요:",
|
||||
"available_at": "웹 훅은 다음의 URL 을 사용해 주세요:",
|
||||
"close": "닫기",
|
||||
"confirm_disable": "이 Webhook 를 비활성화하시겠습니까?",
|
||||
"confirm_disable": "이 웹 훅을 비활성화하시겠습니까?",
|
||||
"copied_to_clipboard": "클립보드에 복사됨",
|
||||
"info_disable_webhook": "이 Webhook 를 더 이상 사용하지 않으려면, 다음을 해보세요: ",
|
||||
"info_disable_webhook": "이 웹 훅을 더 이상 사용하지 않으려면, 다음을 해보세요: ",
|
||||
"link_disable_webhook": "비활성화",
|
||||
"managed_by_integration": "이 Webhook 는 통합 구성요소에 의해 관리되고 있어 비활성화할 수 없습니다.",
|
||||
"managed_by_integration": "이 웹 훅은 통합 구성요소에 의해 관리되고 있어 비활성화할 수 없습니다.",
|
||||
"view_documentation": "관련문서 보기",
|
||||
"webhook_for": "{name} Webhook"
|
||||
"webhook_for": "{name} 웹 훅"
|
||||
},
|
||||
"forgot_password": {
|
||||
"check_your_email": "비밀번호를 재설정하는 방법은 보내드린 이메일을 확인해주세요.",
|
||||
@ -1138,7 +1151,7 @@
|
||||
"feature_amazon_alexa": "Amazon Alexa 연동",
|
||||
"feature_google_home": "Google 어시스턴트 연동",
|
||||
"feature_remote_control": "집 밖에서 Home Assistant 를 제어",
|
||||
"feature_webhook_apps": "OwnTracks 와 같은 Webhook 기반 앱과 쉬운 연동",
|
||||
"feature_webhook_apps": "OwnTracks 와 같은 웹 훅 기반 앱과 쉬운 연동",
|
||||
"headline": "1개월 무료 평가판 사용해 보기",
|
||||
"information": "1개월간 무료로 사용해 볼 수 있는 Home Assistant Cloud 계정을 만들어보세요. 결제 정보는 필요하지 않습니다.",
|
||||
"information2": "평가판을 사용하면 다음을 포함하는 Home Assistant Cloud 의 모든 기능을 이용해 볼 수 있습니다:",
|
||||
@ -1168,7 +1181,9 @@
|
||||
"edit_requires_storage": "구성내용이 configuration.yaml 에 저장되어 있기 때문에 편집기가 비활성화 되었습니다.",
|
||||
"elevation": "고도",
|
||||
"elevation_meters": "미터",
|
||||
"external_url": "외부 URL",
|
||||
"imperial_example": "화씨, 파운드",
|
||||
"internal_url": "내부 URL",
|
||||
"latitude": "위도",
|
||||
"location_name": "Home Assistant 이름",
|
||||
"longitude": "경도",
|
||||
@ -1235,6 +1250,7 @@
|
||||
},
|
||||
"delete": "삭제",
|
||||
"description": "연결된 기기를 관리합니다",
|
||||
"device_info": "기기 정보",
|
||||
"device_not_found": "기기를 찾을 수 없습니다.",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Lovelace 에 추가",
|
||||
@ -1397,6 +1413,8 @@
|
||||
"new": "새로운 통합 구성요소 설정",
|
||||
"no_integrations": "아직 통합 구성요소를 구성하지 않은 것 같습니다. 첫 번째 통합 구성요소를 추가하려면 아래 버튼을 클릭해주세요!",
|
||||
"none": "설정된 통합 구성요소가 없습니다",
|
||||
"none_found": "통합 구성요소를 찾을 수 없습니다",
|
||||
"none_found_detail": "검색 대상을 확인해주세요.",
|
||||
"note_about_integrations": "아직 UI 에서 모든 통합 구성요소를 구성할 수 있는 것은 아닙니다.",
|
||||
"note_about_website_reference": "더 많은 구성요소는 다음에서 살펴 봐주세요. ",
|
||||
"rename_dialog": "이 구성 항목의 이름을 편집하기",
|
||||
@ -1651,7 +1669,7 @@
|
||||
"zha": {
|
||||
"add_device_page": {
|
||||
"discovery_text": "발견된 기기가 여기에 표시됩니다. 기기의 설명서를 참고하여 기기를 페어링 모드로 설정해주세요.",
|
||||
"header": "Zigbee 홈 자동화 - 기기 추가",
|
||||
"header": "Zigbee Home Automation - 기기 추가",
|
||||
"search_again": "다시 검색",
|
||||
"spinner": "ZHA Zigbee 기기를 찾고있습니다..."
|
||||
},
|
||||
@ -1689,9 +1707,9 @@
|
||||
"manufacturer_code_override": "제조업체 코드 재정의",
|
||||
"value": "값"
|
||||
},
|
||||
"description": "Zigbee 홈 자동화 네트워크를 관리합니다",
|
||||
"description": "Zigbee Home Automation 네트워크를 관리합니다",
|
||||
"devices": {
|
||||
"header": "Zigbee 홈 자동화 - 기기"
|
||||
"header": "Zigbee Home Automation - 기기"
|
||||
},
|
||||
"group_binding": {
|
||||
"bind_button_help": "선택한 그룹을 선택한 기기 클러스터에서 바인딩해주세요.",
|
||||
@ -1705,11 +1723,11 @@
|
||||
"unbind_button_label": "그룹 바인딩 해제"
|
||||
},
|
||||
"groups": {
|
||||
"add_members": "구성원 추가",
|
||||
"adding_members": "구성원 추가",
|
||||
"add_members": "구성 기기 추가",
|
||||
"adding_members": "구성 기기 추가",
|
||||
"caption": "그룹",
|
||||
"create": "그룹 생성",
|
||||
"create_group": "Zigbee 홈 자동화 - 그룹 만들기",
|
||||
"create_group": "Zigbee Home Automation - 그룹 만들기",
|
||||
"create_group_details": "새로운 Zigbee 그룹을 생성하기 위해 필요한 세부 사항을 입력해주세요",
|
||||
"creating_group": "그룹 생성",
|
||||
"description": "Zigbee 그룹을 생성하거나 수정합니다",
|
||||
@ -1718,20 +1736,20 @@
|
||||
"group_info": "그룹 정보",
|
||||
"group_name_placeholder": "그룹 이름",
|
||||
"group_not_found": "그룹을 찾을 수 없습니다!",
|
||||
"group-header": "Zigbee 홈 자동화 - 그룹 상세정보",
|
||||
"group-header": "Zigbee Home Automation - 그룹 상세정보",
|
||||
"groups": "그룹",
|
||||
"groups-header": "Zigbee 홈 자동화 - 그룹 관리",
|
||||
"header": "Zigbee 홈 자동화 - 그룹 관리",
|
||||
"groups-header": "Zigbee Home Automation - 그룹 관리",
|
||||
"header": "Zigbee Home Automation - 그룹 관리",
|
||||
"introduction": "Zigbee 그룹을 생성하거나 수정합니다",
|
||||
"manage_groups": "Zigbee 그룹 관리",
|
||||
"members": "구성원",
|
||||
"members": "구성 기기",
|
||||
"remove_groups": "그룹 제거",
|
||||
"remove_members": "구성원 제거",
|
||||
"remove_members": "구성 기기 제거",
|
||||
"removing_groups": "그룹 제거",
|
||||
"removing_members": "구성원 제거",
|
||||
"removing_members": "구성 기기 제거",
|
||||
"zha_zigbee_groups": "ZHA Zigbee 그룹"
|
||||
},
|
||||
"header": "Zigbee 홈 자동화 구성",
|
||||
"header": "Zigbee Home Automation 구성",
|
||||
"introduction": "여기에서 ZHA 구성요소를 설정할 수 있습니다. 아직 여기서 모두 설정할 수는 없지만, 모든 내용을 설정할 수 있도록 작업 중입니다.",
|
||||
"network_management": {
|
||||
"header": "네트워크 관리",
|
||||
@ -1744,7 +1762,7 @@
|
||||
"hint_wakeup": "Xiaomi 센서와 같은 일부 기기는 상호 작용하는 동안 기기의 절전 모드 해제가 가능한 약 5초 동안 누를 수 있는 절전 해제 버튼이 있습니다.",
|
||||
"introduction": "단일 기기에 영향을 주는 ZHA 명령을 실행합니다. 사용 가능한 명령 목록을 보려면 기기를 선택해주세요."
|
||||
},
|
||||
"title": "Zigbee 홈 자동화"
|
||||
"title": "Zigbee Home Automation"
|
||||
},
|
||||
"zone": {
|
||||
"add_zone": "지역 추가",
|
||||
@ -2012,7 +2030,7 @@
|
||||
},
|
||||
"entities": {
|
||||
"description": "구성요소 카드는 가장 일반적인 유형의 카드입니다. 항목을 목록으로 그룹화합니다.",
|
||||
"name": "구성요소",
|
||||
"name": "구성요소 모음",
|
||||
"show_header_toggle": "헤더 토글 표시",
|
||||
"toggle": "구성요소 토글"
|
||||
},
|
||||
@ -2047,8 +2065,8 @@
|
||||
"icon": "아이콘",
|
||||
"icon_height": "아이콘 높이",
|
||||
"image": "이미지 경로",
|
||||
"manual": "수동 구성",
|
||||
"manual_description": "사용자 정의 카드를 추가하거나 yaml 을 수동으로 작성하시겠습니까?",
|
||||
"manual": "직접 작성",
|
||||
"manual_description": "사용자 정의 카드를 추가하거나 yaml 을 직접 작성하시겠습니까?",
|
||||
"maximum": "최대",
|
||||
"minimum": "최소",
|
||||
"name": "이름",
|
||||
@ -2074,8 +2092,8 @@
|
||||
"name": "기록 그래프"
|
||||
},
|
||||
"horizontal-stack": {
|
||||
"description": "수평 쌓아보기 카드를 사용하면 여러 카드를 함께 묶을 수 있으며 항상 한 열의 공간에서 옆으로 나열합니다.",
|
||||
"name": "수평 쌓아보기"
|
||||
"description": "수평 모아보기 카드를 사용하면 여러 카드를 함께 묶을 수 있으며 항상 한 열의 공간에서 옆으로 나열합니다.",
|
||||
"name": "수평 모아보기"
|
||||
},
|
||||
"iframe": {
|
||||
"description": "웹 페이지 카드를 사용하면 즐겨 찾는 웹 페이지를 Home Assistant 에 삽입할 수 있습니다.",
|
||||
@ -2268,7 +2286,7 @@
|
||||
"attribute_not_found": "{attribute} 속성을 사용할 수 없습니다: {entity}",
|
||||
"entity_non_numeric": "구성요소가 숫자형식이 아닙니다: {entity}",
|
||||
"entity_not_found": "구성요소를 사용할 수 없습니다: {entity}",
|
||||
"entity_unavailable": "{entity} 는 현재 사용할 수 없습니다"
|
||||
"entity_unavailable": "{entity} 은(는) 현재 사용할 수 없습니다"
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Gestoppt"
|
||||
},
|
||||
"default": {
|
||||
"off": "Aus",
|
||||
"on": "Un",
|
||||
"unavailable": "Net erreechbar",
|
||||
"unknown": "Onbekannt"
|
||||
},
|
||||
@ -475,7 +477,10 @@
|
||||
"close": "Zoumaachen",
|
||||
"delete": "Läschen",
|
||||
"loading": "Lued",
|
||||
"next": "Nächst",
|
||||
"no": "Nee",
|
||||
"previous": "Virdrun",
|
||||
"refresh": "Aktualiséieren",
|
||||
"save": "Späicheren",
|
||||
"successfully_deleted": "Erfollegräich geläscht.",
|
||||
"successfully_saved": "Erfollegräich gespäichert.",
|
||||
@ -735,6 +740,10 @@
|
||||
"triggered": "{name} ausgeléist"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Meng Kalenner",
|
||||
"today": "Haut"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Feelen Konfiguratioun's Optiounen? Avancéierte Modus aschalten op",
|
||||
@ -837,6 +846,9 @@
|
||||
},
|
||||
"label": "Apparat"
|
||||
},
|
||||
"not": {
|
||||
"label": "Net"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Iwwert",
|
||||
"below": "Ënnert",
|
||||
@ -1235,6 +1247,7 @@
|
||||
},
|
||||
"delete": "Läschen",
|
||||
"description": "Verwalt verbonnen Apparater",
|
||||
"device_info": "Informatioune vum Apparat",
|
||||
"device_not_found": "Apparat net fonnt.",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Zu Lovelace bäisetzen",
|
||||
@ -1397,6 +1410,8 @@
|
||||
"new": "Eng nei Integratioun ariichten",
|
||||
"no_integrations": "Et gesäit suu ass wéi wann nach keng Integratioun ageriicht ass. Klick de Knäppchen hei ënnen fir déi éischt Integratioun anzeriichten.",
|
||||
"none": "Nach näischt konfiguréiert",
|
||||
"none_found": "Keng Integratioune fonnt",
|
||||
"none_found_detail": "Siich Kriterien upassen.",
|
||||
"note_about_integrations": "Net all Integratioune könne nach via den Benotzer Interface konfiguréiert ginn.",
|
||||
"note_about_website_reference": "Méi sin der disponibel op der ",
|
||||
"rename_dialog": "Numm vun dësem Objet läschen",
|
||||
|
@ -26,7 +26,7 @@
|
||||
"state_attributes": {
|
||||
"climate": {
|
||||
"fan_mode": {
|
||||
"auto": "Auto",
|
||||
"auto": "",
|
||||
"off": "Av",
|
||||
"on": "På"
|
||||
},
|
||||
@ -206,6 +206,8 @@
|
||||
"stopped": "Stoppet"
|
||||
},
|
||||
"default": {
|
||||
"off": "Av",
|
||||
"on": "På",
|
||||
"unavailable": "Utilgjengelig",
|
||||
"unknown": "Ukjent"
|
||||
},
|
||||
@ -283,7 +285,7 @@
|
||||
},
|
||||
"timer": {
|
||||
"active": "aktiv",
|
||||
"idle": "inaktiv",
|
||||
"idle": "Inaktiv",
|
||||
"paused": "pauset"
|
||||
},
|
||||
"vacuum": {
|
||||
@ -361,7 +363,7 @@
|
||||
"low": "lav",
|
||||
"on_off": "På / av",
|
||||
"operation": "Operasjon",
|
||||
"preset_mode": "Preset",
|
||||
"preset_mode": "",
|
||||
"swing_mode": "Svingmodus",
|
||||
"target_humidity": "Ønsket luftfuktighet",
|
||||
"target_temperature": "Ønsket temperatur",
|
||||
@ -451,12 +453,12 @@
|
||||
"e": "Ø",
|
||||
"ene": "ØNØ",
|
||||
"ese": "ØSØ",
|
||||
"n": "N",
|
||||
"n": "",
|
||||
"ne": "NØ",
|
||||
"nne": "NNØ",
|
||||
"nnw": "NNV",
|
||||
"nw": "NV",
|
||||
"s": "S",
|
||||
"s": "",
|
||||
"se": "SØ",
|
||||
"sse": "SSØ",
|
||||
"ssw": "SSV",
|
||||
@ -475,7 +477,10 @@
|
||||
"close": "Lukk",
|
||||
"delete": "Slett",
|
||||
"loading": "Laster",
|
||||
"next": "Neste",
|
||||
"no": "Nei",
|
||||
"previous": "Forrige",
|
||||
"refresh": "Oppdater",
|
||||
"save": "Lagre",
|
||||
"successfully_deleted": "Slettet",
|
||||
"successfully_saved": "Vellykket lagring",
|
||||
@ -488,7 +493,7 @@
|
||||
"add": "Legg til",
|
||||
"failed_create_area": "Kunne ikke opprette område.",
|
||||
"name": "Navn",
|
||||
"text": "Skriv inn navnet på det nye området.",
|
||||
"text": "Fyll inn navnet på det nye området.",
|
||||
"title": "Legg til nytt område"
|
||||
},
|
||||
"add_new": "Legg til nytt område ...",
|
||||
@ -520,7 +525,7 @@
|
||||
"entity": "Beslektede entiteter",
|
||||
"group": "Del av følgende grupper",
|
||||
"integration": "Integrasjoner",
|
||||
"no_related_found": "Finner ingen relaterte elementer.",
|
||||
"no_related_found": "Ingen relaterte elementer funnet.",
|
||||
"scene": "Del av følgende scener",
|
||||
"script": "Del av følgende skript"
|
||||
},
|
||||
@ -563,11 +568,11 @@
|
||||
"icon": "Overstyring av ikon",
|
||||
"icon_error": "Ikoner bør være i formatet 'prefiks:ikonnavn', f.eks 'mdi:home'",
|
||||
"name": "Overstyr Navn",
|
||||
"note": "Merk: dette fungerer kanskje ikke enda med alle integrasjoner.",
|
||||
"note": "Merk: dette fungerer kanskje ikke med alle integrasjoner ennå .",
|
||||
"unavailable": "Denne entiteten er ikke tilgjengelig for øyeblikket.",
|
||||
"update": "Oppdater"
|
||||
},
|
||||
"no_unique_id": "Denne entiteten har ikke en unik ID, derfor kan innstillingene ikke administreres fra brukergrensesnittet.",
|
||||
"no_unique_id": "Denne entiteten har ikke en unik ID og derfor kan ikke innstillingene administreres fra brukergrensesnittet.",
|
||||
"related": "Relaterte",
|
||||
"settings": "Innstillinger"
|
||||
},
|
||||
@ -589,7 +594,7 @@
|
||||
"time": "Tid"
|
||||
},
|
||||
"input_number": {
|
||||
"box": "Inntastingsfelt",
|
||||
"box": "Inndatafelt",
|
||||
"max": "Maksimal verdi",
|
||||
"min": "Minimum verdi",
|
||||
"mode": "Visningsmodus",
|
||||
@ -613,7 +618,7 @@
|
||||
},
|
||||
"platform_not_loaded": "{platform}-integrasjonen er ikke lastet inn. Legg til konfigurasjonen ved å legge til 'default_config:' eller '{platform}:'.",
|
||||
"required_error_msg": "Dette feltet er påkrevd",
|
||||
"yaml_not_editable": "Innstillingene for denne entiteten kan ikke redigeres fra brukergrensesnittet. Bare entiteter som er konfigurert fra brukergrensesnittet, kan konfigureres fra brukergrensesnittet."
|
||||
"yaml_not_editable": "Innstillingene for denne entiteten kan ikke redigeres fra brukergrensesnittet. Bare entiteter som er satt opp fra brukergrensesnittet, kan konfigureres fra brukergrensesnittet."
|
||||
},
|
||||
"more_info_control": {
|
||||
"dismiss": "Avvis dialogboksen",
|
||||
@ -642,7 +647,7 @@
|
||||
"title": "Oppdateringsanvisning"
|
||||
},
|
||||
"vacuum": {
|
||||
"clean_spot": "Rent sted",
|
||||
"clean_spot": "Rengjør flekk",
|
||||
"commands": "Støvsugerkommandoer:",
|
||||
"fan_speed": "Viftehastighet",
|
||||
"locate": "Lokaliser",
|
||||
@ -678,8 +683,8 @@
|
||||
"error": "Beklager, det har oppstått en feil",
|
||||
"found": "Jeg fant følgende for deg:",
|
||||
"how_can_i_help": "Hvordan kan jeg hjelpe?",
|
||||
"label": "Skriv inn et spørsmål og trykk 'Enter'",
|
||||
"label_voice": "Skriv og trykk 'Enter', eller trykk på mikrofonen for å snakke"
|
||||
"label": "Fyll inn et spørsmål og trykk 'Enter'",
|
||||
"label_voice": "Fyll inn og trykk 'Enter', eller trykk på mikrofonen for å snakke"
|
||||
},
|
||||
"zha_device_info": {
|
||||
"buttons": {
|
||||
@ -701,7 +706,7 @@
|
||||
"reconfigure": "Rekonfigurer ZHA-enhet (heal enhet). Bruk dette hvis du har problemer med enheten. Hvis den aktuelle enheten er en batteridrevet enhet, sørg for at den er våken og aksepterer kommandoer når du bruker denne tjenesten.",
|
||||
"remove": "Fjern en enhet fra Zigbee-nettverket.",
|
||||
"updateDeviceName": "Angi et egendefinert navn for denne enheten i enhetsregisteret.",
|
||||
"zigbee_information": "Vis Zigbee-informasjonen for enheten."
|
||||
"zigbee_information": "Vis Zigbee-informasjon for enheten."
|
||||
},
|
||||
"unknown": "Ukjent",
|
||||
"zha_device_card": {
|
||||
@ -735,6 +740,10 @@
|
||||
"triggered": "Utløst {name}"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Mine kalendere",
|
||||
"today": "I dag"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Manglende konfigurasjonsalternativer? Aktivér avansert modus",
|
||||
@ -776,7 +785,7 @@
|
||||
"delete_confirm": "Er du sikker på at du ønsker å slette?",
|
||||
"duplicate": "Dupliser",
|
||||
"header": "Handlinger",
|
||||
"introduction": "Handling(ene) er hva Home Assistant vil utføre når en automasjon utløses.",
|
||||
"introduction": "Handlingen(e) er hva Home Assistant vil utføre når en automasjon utløses.",
|
||||
"learn_more": "Lær mer om handlinger",
|
||||
"name": "Handling",
|
||||
"type_select": "Handling",
|
||||
@ -803,7 +812,7 @@
|
||||
"label": "Aktiver scene"
|
||||
},
|
||||
"service": {
|
||||
"label": "Kall tjeneste",
|
||||
"label": "Tilkall tjeneste",
|
||||
"service_data": "Tjenestedata"
|
||||
},
|
||||
"wait_template": {
|
||||
@ -837,6 +846,9 @@
|
||||
},
|
||||
"label": "Enhet"
|
||||
},
|
||||
"not": {
|
||||
"label": "Ikke"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Over",
|
||||
"below": "Under",
|
||||
@ -881,7 +893,7 @@
|
||||
"label": "Beskrivelse",
|
||||
"placeholder": "Valgfri beskrivelse"
|
||||
},
|
||||
"edit_ui": "Rediger med UI",
|
||||
"edit_ui": "Rediger med brukergrensesnittet",
|
||||
"edit_yaml": "Rediger som YAML",
|
||||
"enable_disable": "Aktivere/deaktivere automasjon",
|
||||
"introduction": "Bruk automasjon for å få liv i hjemmet ditt",
|
||||
@ -894,9 +906,9 @@
|
||||
"delete_confirm": "Er du sikker på at du vil slette dette?",
|
||||
"duplicate": "Dupliser",
|
||||
"header": "Utløsere",
|
||||
"introduction": "Utløsere er det som starter en automasjonsregel. Det er mulig å spesifisere flere utløsere for samme regel. Når en utløser aktiveres, vil Home Assistant bekrefte vilkårene - hvis noen - og utføre handlingen. \n\n[Lær mer om utløsere.](https://home-assistant.io/docs/automation/trigger/)",
|
||||
"introduction": "Utløsere er det som starter en automasjonsregel. Det er mulig å spesifisere flere utløsere for samme regel. Når en utløser aktiveres, vil Home Assistant bekrefte betingelsene, hvis noen, og utføre handlingen. \n\n[Lær mer om utløsere.](https://home-assistant.io/docs/automation/trigger/)",
|
||||
"learn_more": "Lær mer om utløsere",
|
||||
"name": "Utløse",
|
||||
"name": "Utløser",
|
||||
"type_select": "Utløser",
|
||||
"type": {
|
||||
"device": {
|
||||
@ -938,7 +950,7 @@
|
||||
"value_template": "Verdi fra mal (valgfritt)"
|
||||
},
|
||||
"state": {
|
||||
"for": "For",
|
||||
"for": "",
|
||||
"from": "Fra",
|
||||
"label": "Tilstand",
|
||||
"to": "Til"
|
||||
@ -965,8 +977,8 @@
|
||||
"label": "Tid"
|
||||
},
|
||||
"webhook": {
|
||||
"label": "Webhook",
|
||||
"webhook_id": "Webhook ID"
|
||||
"label": "",
|
||||
"webhook_id": ""
|
||||
},
|
||||
"zone": {
|
||||
"enter": "Ankommer",
|
||||
@ -1035,7 +1047,7 @@
|
||||
},
|
||||
"integrations": "Integrasjoner",
|
||||
"integrations_introduction": "Integrasjoner for Home Assistant Cloud lar deg koble til tjenester i skyen uten å måtte avsløre Home Assistant-forekomsten offentlig på internett.",
|
||||
"integrations_introduction2": "Sjekk nettstedet for",
|
||||
"integrations_introduction2": "Sjekk nettstedet for ",
|
||||
"integrations_link_all_features": " alle tilgjengelige funksjoner",
|
||||
"manage_account": "Administrer konto",
|
||||
"nabu_casa_account": "Nabu Casa konto",
|
||||
@ -1061,7 +1073,7 @@
|
||||
"no_hooks_yet_link_automation": "webhook-automasjon",
|
||||
"no_hooks_yet_link_integration": "webhook-basert integrasjon",
|
||||
"no_hooks_yet2": " eller ved å opprette en ",
|
||||
"title": "Webhooks"
|
||||
"title": ""
|
||||
}
|
||||
},
|
||||
"alexa": {
|
||||
@ -1072,7 +1084,7 @@
|
||||
"title": ""
|
||||
},
|
||||
"caption": "",
|
||||
"description_features": "Kontroller borte fra hjemmet, integrere med Alexa og Google Assistant.",
|
||||
"description_features": "Kontroller borte fra hjemmet, integrer med Alexa og Google Assistant.",
|
||||
"description_login": "Logget inn som {email}",
|
||||
"description_not_login": "Ikke pålogget",
|
||||
"dialog_certificate": {
|
||||
@ -1097,14 +1109,14 @@
|
||||
"check_your_email": "Sjekk e-posten din for instruksjoner om hvordan du tilbakestiller passordet.",
|
||||
"email": "E-post",
|
||||
"email_error_msg": "Ugyldig e-postadresse",
|
||||
"instructions": "Skriv inn din e-postadresse og vi vil sende deg en link for å tilbakestille passordet ditt.",
|
||||
"instructions": "Fyll inn din e-postadresse og vi vil sende deg en link for å tilbakestille passordet ditt.",
|
||||
"send_reset_email": "Send tilbakestilling av passord via e-post",
|
||||
"subtitle": "Glemt passord",
|
||||
"title": "Glemt passord"
|
||||
},
|
||||
"google": {
|
||||
"banner": "Redigere hvilke entiteter som vises via dette grensesnittet er deaktivert fordi du har konfigurert entitetsfiltre i configuration.yaml.",
|
||||
"disable_2FA": "Deaktiver tofaktorautentisering",
|
||||
"disable_2FA": "Deaktiver totrinnsbekreftelse",
|
||||
"expose": "Eksponer til Google Assistant",
|
||||
"exposed_entities": "Eksponerte entiteter",
|
||||
"not_exposed_entities": "Ikke-eksponerte entiteter",
|
||||
@ -1220,7 +1232,7 @@
|
||||
"caption": "Gjør noe når ..."
|
||||
}
|
||||
},
|
||||
"cant_edit": "Du kan bare redigere elementer som er opprettet i UI.",
|
||||
"cant_edit": "Du kan bare redigere elementer som er opprettet i brukergrensesnittet.",
|
||||
"caption": "Enheter",
|
||||
"confirm_delete": "Er du sikker på at du vil slette denne enheten?",
|
||||
"confirm_rename_entity_ids": "Vil du også endre navn på entitets-ID-en for entitetene dine?",
|
||||
@ -1235,6 +1247,7 @@
|
||||
},
|
||||
"delete": "Slett",
|
||||
"description": "Administrer tilkoblede enheter",
|
||||
"device_info": "Enhetsinformasjon",
|
||||
"device_not_found": "Enhet ikke funnet",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Legg til i Lovelace",
|
||||
@ -1331,7 +1344,7 @@
|
||||
"input_boolean": "Veksle",
|
||||
"input_datetime": "Dato og/eller klokkeslett",
|
||||
"input_number": "Nummer",
|
||||
"input_select": "Dropdown",
|
||||
"input_select": "",
|
||||
"input_text": "Tekst"
|
||||
}
|
||||
},
|
||||
@ -1344,7 +1357,9 @@
|
||||
"delete_button": "Slett {integration}",
|
||||
"delete_confirm": "Er du sikker på at du vil slette denne integrasjonen?",
|
||||
"device_unavailable": "enheten er utilgjengelig",
|
||||
"entity_unavailable": "entiteten er ikke tilgjengelig",
|
||||
"devices": "{count} {count, plural,\n one {enhet}\n other {enheter}\n}",
|
||||
"entities": "{count} {count, plural,\n one {entitet}\n other {entiteter}\n}",
|
||||
"entity_unavailable": "entiteten er utilgjengelig",
|
||||
"firmware": "Fastvare: {version}",
|
||||
"hub": "Tilkoblet via",
|
||||
"manuf": "av {manufacturer}",
|
||||
@ -1369,32 +1384,34 @@
|
||||
"open_site": "Åpne nettsted"
|
||||
},
|
||||
"finish": "Fullfør",
|
||||
"loading_first_time": "Vent mens integrasjonen installeres",
|
||||
"loading_first_time": "Vennligst vent mens integrasjonen installeres",
|
||||
"not_all_required_fields": "Ikke alle obligatoriske felt er fylt ut.",
|
||||
"submit": "Send inn"
|
||||
},
|
||||
"configure": "Konfigurer",
|
||||
"configured": "Konfigurert",
|
||||
"description": "Administrer og konfigurer integrasjoner",
|
||||
"description": "Administrer og sett opp integrasjoner",
|
||||
"details": "Integrasjonsdetaljer",
|
||||
"discovered": "Oppdaget",
|
||||
"home_assistant_website": "Nettsted for Home Assistant",
|
||||
"ignore": {
|
||||
"confirm_delete_ignore": "Dette vil få integrasjonen til å vises i de oppdagede integrasjonene dine igjen når den blir oppdaget. Dette kan kreve omstart eller ta litt tid.",
|
||||
"confirm_delete_ignore_title": "Slutt å ignorere {name}?",
|
||||
"confirm_ignore": "Er du sikker på at du ikke vil konfigurere denne integrasjonen? Du kan angre ved å klikke på «Vis ignorerte integrasjoner» i overflow-menyen øverst til høyre.",
|
||||
"confirm_ignore": "Er du sikker på at du ikke vil sette opp denne integrasjonen? Du kan angre ved å klikke på 'Vis ignorerte integrasjoner' i overflow-menyen øverst til høyre.",
|
||||
"confirm_ignore_title": "Ignorer oppdaging av {name}?",
|
||||
"hide_ignored": "Skjul ignorerte integrasjoner",
|
||||
"ignore": "Ignorer",
|
||||
"ignored": "ignorert",
|
||||
"ignored": "Ignorert",
|
||||
"show_ignored": "Vis ignorerte integrasjoner",
|
||||
"stop_ignore": "Slutt å ignorere"
|
||||
},
|
||||
"integration": "integrering",
|
||||
"integration": "integrasjon",
|
||||
"integration_not_found": "Integrasjon ikke funnet.",
|
||||
"new": "Sett opp en ny integrasjon",
|
||||
"no_integrations": "Virker som om du ikke har konfigurert noen integrasjoner ennå. Klikk på knappen nedenfor for å legge til din første integrasjon!",
|
||||
"no_integrations": "Det ser ut som om du ikke har konfigurert noen integrasjoner ennå. Klikk på knappen nedenfor for å legge til din første integrasjon!",
|
||||
"none": "Ingenting er konfigurert enda",
|
||||
"none_found": "Ingen integrasjoner funnet",
|
||||
"none_found_detail": "Juster dine søkekriterier",
|
||||
"note_about_integrations": "Ikke alle integrasjoner kan konfigureres via brukergrensesnittet ennå.",
|
||||
"note_about_website_reference": "Flere er tilgjengelige på",
|
||||
"rename_dialog": "Redigere navnet på denne config-oppføringen",
|
||||
@ -1402,48 +1419,48 @@
|
||||
},
|
||||
"introduction": "Her er det mulig å konfigurere dine komponenter og Home Assistant. Ikke alt er mulig å konfigurere fra brukergrensesnittet enda, men vi jobber med det.",
|
||||
"lovelace": {
|
||||
"caption": "Lovelace dashbord",
|
||||
"caption": "Lovelace instrumentbord",
|
||||
"dashboards": {
|
||||
"cant_edit_default": "Standard Lovelace-dashbordet kan ikke redigeres fra brukergrensesnittet. Du kan skjule det ved å angi et annet instrumentbord som standard.",
|
||||
"cant_edit_yaml": "Dashbord som er definert i YAML, kan ikke redigeres fra brukergrensesnittet. Endringer gjøres i configuration.yaml.",
|
||||
"caption": "Dashbord",
|
||||
"cant_edit_default": "Standard Lovelace-instrumentbord kan ikke redigeres fra brukergrensesnittet. Du kan skjule det ved å angi et annet instrumentbord som standard.",
|
||||
"cant_edit_yaml": "Instrumentbord som er definert i YAML, kan ikke redigeres fra brukergrensesnittet. Endringer gjøres i configuration.yaml.",
|
||||
"caption": "Instrumentbord",
|
||||
"conf_mode": {
|
||||
"storage": "UI kontrollert",
|
||||
"storage": "Brukergrensesnitt kontrollert",
|
||||
"yaml": "YAML-fil"
|
||||
},
|
||||
"confirm_delete": "Er du sikker på at du vil slette dette dashbordet?",
|
||||
"confirm_delete": "Er du sikker på at du vil slette dette instrumentbordet?",
|
||||
"default_dashboard": "Dette er standard instrumentbord",
|
||||
"detail": {
|
||||
"create": "Opprett",
|
||||
"delete": "Slett",
|
||||
"dismiss": "Lukk",
|
||||
"edit_dashboard": "Redigere dashbord",
|
||||
"edit_dashboard": "Redigere instrumentbord",
|
||||
"icon": "Ikon",
|
||||
"new_dashboard": "Legg til nytt dashbord",
|
||||
"new_dashboard": "Legg til nytt instrumentbord",
|
||||
"remove_default": "Fjern som standard på denne enheten",
|
||||
"require_admin": "Bare administrator",
|
||||
"require_admin": "Kun administrator",
|
||||
"set_default": "Angi som standard på denne enheten",
|
||||
"show_sidebar": "Vis i sidepanelet",
|
||||
"title": "Tittel",
|
||||
"title_required": "Tittel er nødvendig.",
|
||||
"title_required": "Tittel er påkrevd.",
|
||||
"update": "Oppdater",
|
||||
"url": "",
|
||||
"url_error_msg": "URLen skal inneholde en - og kan ikke inneholde mellomrom eller spesialtegn, bortsett fra _ og -"
|
||||
},
|
||||
"picker": {
|
||||
"add_dashboard": "Legg til dashbord",
|
||||
"add_dashboard": "Legg til instrumentbord",
|
||||
"headers": {
|
||||
"conf_mode": "Konfigurasjonsmetode",
|
||||
"default": "Standard",
|
||||
"filename": "Filnavn",
|
||||
"require_admin": "Bare administrator",
|
||||
"require_admin": "Kun administrator",
|
||||
"sidebar": "Vis i sidepanelet",
|
||||
"title": "Tittel"
|
||||
},
|
||||
"open": "Åpne"
|
||||
}
|
||||
},
|
||||
"description": "Konfigurer dine Lovelace dashbord",
|
||||
"description": "Konfigurer dine Lovelace instrumentbord",
|
||||
"resources": {
|
||||
"cant_edit_yaml": "Du bruker Lovelace i YAML-modus, derfor kan du ikke administrere ressursene dine via brukergrensesnittet. Behandle dem i configuration.yaml.",
|
||||
"caption": "Ressurser",
|
||||
@ -1456,7 +1473,7 @@
|
||||
"type": "Ressurstype",
|
||||
"update": "Oppdater",
|
||||
"url": "",
|
||||
"url_error_msg": "Url-adresse er et obligatorisk felt",
|
||||
"url_error_msg": "URL-adresse er et obligatorisk felt",
|
||||
"warning_header": "Vær forsiktig!",
|
||||
"warning_text": "Det kan være farlig å legge til ressurser, sørg for at du kjenner kilden til ressursen og stoler på dem. Dårlige ressurser kan skade systemet ditt alvorlig."
|
||||
},
|
||||
@ -1502,7 +1519,7 @@
|
||||
},
|
||||
"introduction": "Her kan du definere hver person av interesse i Home Assistant.",
|
||||
"no_persons_created_yet": "Ser ut som du ikke har opprettet noen personer ennå.",
|
||||
"note_about_persons_configured_in_yaml": "Merk: personer konfigurert via configuration.yaml kan ikke redigeres via UI."
|
||||
"note_about_persons_configured_in_yaml": "Merk: personer konfigurert i configuration.yaml kan ikke redigeres via brukergrensesnittet."
|
||||
},
|
||||
"scene": {
|
||||
"activated": "Aktivert scene {name}.",
|
||||
@ -1622,7 +1639,7 @@
|
||||
"editor": {
|
||||
"activate_user": "Aktiver bruker",
|
||||
"active": "Aktiv",
|
||||
"admin": "Administrator",
|
||||
"admin": "",
|
||||
"caption": "Vis bruker",
|
||||
"change_password": "Endre passord",
|
||||
"confirm_user_deletion": "Er du sikker på at du vil slette {name} ?",
|
||||
@ -1632,9 +1649,9 @@
|
||||
"id": "Id",
|
||||
"name": "Navn",
|
||||
"owner": "Eier",
|
||||
"system_generated": "System generert",
|
||||
"system_generated_users_not_editable": "Kan ikke oppdatere systemgenererte brukere.",
|
||||
"system_generated_users_not_removable": "Kan ikke fjerne systemgenererte brukere.",
|
||||
"system_generated": "System opprettet",
|
||||
"system_generated_users_not_editable": "Kan ikke oppdatere systemopprettede brukere.",
|
||||
"system_generated_users_not_removable": "Kan ikke fjerne systemopprettede brukere.",
|
||||
"unnamed_user": "Bruker uten navn",
|
||||
"update_user": "Oppdater"
|
||||
},
|
||||
@ -1642,7 +1659,7 @@
|
||||
"headers": {
|
||||
"group": "Gruppe",
|
||||
"name": "Navn",
|
||||
"system": "System"
|
||||
"system": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1755,7 +1772,7 @@
|
||||
"create": "Opprett",
|
||||
"delete": "Slett",
|
||||
"icon": "Ikon",
|
||||
"icon_error_msg": "Ikonet skal være i formatets prefiks: iconname, for eksempel: mdi: home",
|
||||
"icon_error_msg": "Ikonet skal være i formatets prefiks:iconname, for eksempel: mdi:home",
|
||||
"latitude": "Breddegrad",
|
||||
"longitude": "Lengdegrad",
|
||||
"name": "Navn",
|
||||
@ -1766,12 +1783,12 @@
|
||||
"required_error_msg": "Dette feltet er påkrevd",
|
||||
"update": "Oppdater"
|
||||
},
|
||||
"edit_home_zone": "Radien til Hjemmesonen kan ikke redigeres fra frontend ennå. Dra markøren på kartet for å flytte hjemmesonen.",
|
||||
"edit_home_zone_narrow": "Radiusen til hjemsonen kan ikke redigeres fra frontend ennå. Plasseringen kan endres fra den generelle konfigurasjonen.",
|
||||
"edit_home_zone": "Radiusen til Hjemmesonen kan ikke redigeres fra brukergrensesnittet ennå. Dra markøren på kartet for å flytte hjemmesonen.",
|
||||
"edit_home_zone_narrow": "Radiusen til hjemsonen kan ikke redigeres fra brukergrensesnittet ennå. Plasseringen kan endres fra den generelle konfigurasjonen.",
|
||||
"go_to_core_config": "Gå til generell konfigurasjon?",
|
||||
"home_zone_core_config": "Plasseringen av hjemmesonen kan redigeres fra den generelle konfigurasjonssiden. Radiusen til hjemsonen kan ikke redigeres fra frontend ennå. Vil du gå til den generelle konfigurasjonen?",
|
||||
"introduction": "Med soner kan du angi bestemte områder på jorden. Når en person er innenfor en sone, vil tilstanden til lokasjonen ta navnet fra sonen. Soner kan også brukes som en utløser eller tilstand i automasjoner.",
|
||||
"no_zones_created_yet": "Det ser ut til at du ikke har opprettet noen soner enda."
|
||||
"home_zone_core_config": "Plasseringen av hjemmesonen kan redigeres fra den generelle konfigurasjonssiden. Radiusen til hjemmesonen kan ikke redigeres fra brukergrensesnittet ennå. Vil du gå til den generelle konfigurasjonen?",
|
||||
"introduction": "Med soner kan du angi bestemte områder på jorden. Når en person er innenfor en sone, vil tilstanden til enheten ta navnet fra sonen. Soner kan også brukes som en utløser eller betingelse i automasjoner.",
|
||||
"no_zones_created_yet": "Det ser ikke ut som du har opprettet noen soner enda"
|
||||
},
|
||||
"zwave": {
|
||||
"caption": "Z-Wave",
|
||||
@ -1856,10 +1873,10 @@
|
||||
},
|
||||
"info": {
|
||||
"built_using": "Bygget med",
|
||||
"custom_uis": "Tilpasset UIs:",
|
||||
"custom_uis": "Tilpassede brukergrensesnitt:",
|
||||
"developed_by": "Utviklet av en gjeng med fantastiske mennesker.",
|
||||
"frontend": "frontend-ui",
|
||||
"frontend_version": "Frontend-versjon: {version} - {type}",
|
||||
"frontend": "",
|
||||
"frontend_version": "Brukergrensesnittet-versjon: {version} - {type}",
|
||||
"home_assistant_logo": "Logo for Home Assistant",
|
||||
"icons_by": "Ikoner av",
|
||||
"license": "Publisert under Apache 2.0-lisensen",
|
||||
@ -1895,12 +1912,12 @@
|
||||
},
|
||||
"services": {
|
||||
"alert_parsing_yaml": "Feil ved parsing av YAML: {data}",
|
||||
"call_service": "Kall tjeneste",
|
||||
"call_service": "Tilkall tjeneste",
|
||||
"column_description": "Beskrivelse",
|
||||
"column_example": "Eksempel",
|
||||
"column_parameter": "",
|
||||
"data": "Tjenestedata (YAML, valgfritt)",
|
||||
"description": "Med verktøyet for tjenesteutvikling kan du utføre alle tilgjengelige tjenester i Home Assistant.",
|
||||
"description": "Service utviklingsverktøyet lar deg tilkalle alle tilgjengelige tjenester i Home Assistant.",
|
||||
"fill_example_data": "Fyll ut eksempeldata",
|
||||
"no_description": "Ingen beskrivelse er tilgjengelig",
|
||||
"no_parameters": "Denne tjenesten tar ingen parametere.",
|
||||
@ -1945,23 +1962,23 @@
|
||||
},
|
||||
"lovelace": {
|
||||
"add_entities": {
|
||||
"generated_unsupported": "Du kan bare bruke denne funksjonen når du har tatt kontroll over Lovelace UI.",
|
||||
"saving_failed": "Lagring av Lovelace UI-konfigurasjon mislyktes.",
|
||||
"generated_unsupported": "Du kan bare bruke denne funksjonen når du har tatt kontroll over Lovelace brukergrensesnittet.",
|
||||
"saving_failed": "Lagring av Lovelace brukergrensesnitt-konfigurasjon mislyktes.",
|
||||
"yaml_unsupported": "Du kan ikke bruke denne funksjonen når du bruker Lovelace i YAML-modus."
|
||||
},
|
||||
"cards": {
|
||||
"confirm_delete": "Er du sikker på at du vil slette dette kortet?",
|
||||
"empty_state": {
|
||||
"go_to_integrations_page": "Gå til integrasjonssiden.",
|
||||
"no_devices": "Denne siden lar deg styre enhetene dine, men det ser ut til at du ikke har konfigurert noen enheter ennå. Gå til integrasjonssiden for å komme i gang.",
|
||||
"no_devices": "Denne siden lar deg styre enhetene dine, men det ser ut til at du ikke har satt opp noen enheter ennå. Gå til integrasjonssiden for å komme i gang.",
|
||||
"title": "Velkommen hjem"
|
||||
},
|
||||
"entities": {
|
||||
"never_triggered": "Aldri utløst"
|
||||
},
|
||||
"picture-elements": {
|
||||
"call_service": "Tjenestekall {name}",
|
||||
"hold": "Hold:",
|
||||
"call_service": "Tilkall tjeneste {name}",
|
||||
"hold": "",
|
||||
"more_info": "Vis mer info: {name}",
|
||||
"navigate_to": "Naviger til {location}",
|
||||
"tap": "Trykk:",
|
||||
@ -1979,7 +1996,7 @@
|
||||
}
|
||||
},
|
||||
"changed_toast": {
|
||||
"message": "Lovelace UI-konfigurasjonen ble oppdatert for dette dashbordet. oppdater for å se endringer?",
|
||||
"message": "Lovelace brukergrensesnitt-konfigurasjonen ble oppdatert for dette instrumentbordet, oppdater for å se endringer?",
|
||||
"refresh": "Oppdater"
|
||||
},
|
||||
"editor": {
|
||||
@ -1997,7 +2014,7 @@
|
||||
"card": "Kort",
|
||||
"change_type": "Endre type",
|
||||
"condition_explanation": "Kortet vil vises når ALLE betingelser nedenfor er oppfylt.",
|
||||
"conditions": "Forhold",
|
||||
"conditions": "Betingelser",
|
||||
"current_state": "Gjeldende",
|
||||
"description": "Betingelseskortet viser et annet kort basert på entitetstilstander.",
|
||||
"name": "Betinget",
|
||||
@ -2037,7 +2054,7 @@
|
||||
"attribute": "Attributtet",
|
||||
"camera_image": "Kameraentitet",
|
||||
"camera_view": "Kameravisning",
|
||||
"double_tap_action": "Dobbelttrykk Handling",
|
||||
"double_tap_action": "Dobbeltklikk Handling",
|
||||
"entities": "Entiteter",
|
||||
"entity": "Entitet",
|
||||
"hold_action": "Hold handling",
|
||||
@ -2095,7 +2112,7 @@
|
||||
"markdown": {
|
||||
"content": "Innhold",
|
||||
"description": "Markdown-kortet brukes til å gjengi Markdown.",
|
||||
"name": "Markdown"
|
||||
"name": ""
|
||||
},
|
||||
"media-control": {
|
||||
"description": "Media Control-kortet brukes til å vise mediespillerenheter på et grensesnitt med brukervennlige kontroller.",
|
||||
@ -2114,7 +2131,7 @@
|
||||
"name": "Bilde blikk"
|
||||
},
|
||||
"picture": {
|
||||
"description": "Bildekortet lar deg stille inn et bilde som skal brukes til navigasjon til forskjellige baner i grensesnittet ditt eller for å ringe en tjeneste.",
|
||||
"description": "Bildekortet lar deg stille inn et bilde som skal brukes til navigasjon til forskjellige baner i grensesnittet ditt eller for å tilkalle en tjeneste.",
|
||||
"name": "Bilde"
|
||||
},
|
||||
"plant-status": {
|
||||
@ -2129,7 +2146,7 @@
|
||||
},
|
||||
"shopping-list": {
|
||||
"description": "På Shopping List-kortet kan du legge til, redigere, sjekke av og fjerne gjenstander fra handlelisten din.",
|
||||
"integration_not_loaded": "Dette kortet krever at \"shopping_list\" -integrasjonen er satt opp.",
|
||||
"integration_not_loaded": "Dette kortet krever at `shopping_list` integrasjonen er satt opp.",
|
||||
"name": "Handleliste"
|
||||
},
|
||||
"thermostat": {
|
||||
@ -2152,7 +2169,7 @@
|
||||
"edit_card": {
|
||||
"add": "Legg til kort",
|
||||
"delete": "Slett kort",
|
||||
"duplicate": "Kopiér kort",
|
||||
"duplicate": "Dupliser kort",
|
||||
"edit": "Rediger",
|
||||
"header": "Kortkonfigurasjon",
|
||||
"move": "Flytt til visning",
|
||||
@ -2165,8 +2182,8 @@
|
||||
},
|
||||
"edit_lovelace": {
|
||||
"edit_title": "Rediger tittel",
|
||||
"explanation": "Denne tittelen vises over alle visningene dine i Lovelace UI.",
|
||||
"header": "Tittel på Lovelace UI"
|
||||
"explanation": "Denne tittelen vises over alle visningene dine i Lovelace brukergrensesnittet.",
|
||||
"header": "Tittel på ditt Lovelace brukergrensesnitt"
|
||||
},
|
||||
"edit_view": {
|
||||
"add": "Legg til visning",
|
||||
@ -2174,8 +2191,8 @@
|
||||
"edit": "Rediger visning",
|
||||
"header": "Vis konfigurasjon",
|
||||
"header_name": "{name} Vis konfigurasjon",
|
||||
"move_left": "Flytt visning til venstre",
|
||||
"move_right": "Flytt visning til høyre",
|
||||
"move_left": "Flytt visningen til venstre",
|
||||
"move_right": "Flytt visningen til høyre",
|
||||
"tab_badges": "Merker",
|
||||
"tab_settings": "Innstillinger",
|
||||
"tab_visibility": "Synlighet",
|
||||
@ -2185,18 +2202,18 @@
|
||||
},
|
||||
"header": "Rediger brukergrensesnitt",
|
||||
"menu": {
|
||||
"open": "Åpne Lovelace UI-menyen",
|
||||
"open": "Åpne Lovelace brukergrensesnitt-menyen",
|
||||
"raw_editor": "Redigeringsprogram for raw-konfigurasjon"
|
||||
},
|
||||
"migrate": {
|
||||
"header": "Inkompatibel Konfigurasjon",
|
||||
"header": "Inkompatibel konfigurasjon",
|
||||
"migrate": "Migrer konfigurasjon",
|
||||
"para_migrate": "Hjemmeassistent kan legge til ID-er på alle kortene og visningene automatisk for deg ved å trykke på 'Migrer konfigurasjon' -knappen.",
|
||||
"para_migrate": "Home Assistant kan legge til ID-er på alle kortene og visningene automatisk for deg ved å trykke på 'Migrer konfigurasjon' knappen.",
|
||||
"para_no_id": "Dette elementet har ingen ID. Vennligst legg til en ID på dette elementet i 'ui-lovelace.yaml'."
|
||||
},
|
||||
"raw_editor": {
|
||||
"confirm_remove_config_text": "Vi vil automatisk generere Lovelace-visningene dine med områdene og enhetene dine hvis du fjerner Lovelace-konfigurasjonen.",
|
||||
"confirm_remove_config_title": "Er du sikker på at du vil fjerne Lovelace-konfigurasjonen? Vi vil automatisk generere Lovelace-visningene dine med områdene og enhetene dine.",
|
||||
"confirm_remove_config_text": "Vi vil automatisk opprette Lovelace-visningene dine med områdene og enhetene dine hvis du fjerner Lovelace-konfigurasjonen.",
|
||||
"confirm_remove_config_title": "Er du sikker på at du vil fjerne Lovelace-konfigurasjonen? Vi vil automatisk opprette Lovelace-visningene dine med områdene og enhetene dine.",
|
||||
"confirm_unsaved_changes": "Du har ulagrede endringer, er du sikker på at du vil avslutte?",
|
||||
"confirm_unsaved_comments": "Konfigurasjonen din inneholder kommentarer, disse vil ikke bli lagret. Vil du fortsette?",
|
||||
"error_invalid_config": "Konfigurasjonen din er ikke gyldig: {error}",
|
||||
@ -2214,15 +2231,15 @@
|
||||
"close": "Lukk",
|
||||
"empty_config": "Start med et tomt instrumentbord",
|
||||
"header": "Ta kontroll over Lovelace brukergrensesnittet ditt",
|
||||
"para": "Som standard vil Home Assistant opprettholde brukergrensesnittet ditt, oppdatere det når nye enheter eller Lovelace UI-komponenter blir tilgjengelige. Hvis du tar kontroll, vil vi ikke lenger gjøre endringer automatisk for deg.",
|
||||
"para": "Dette instrumentbordet vedlikeholdes for tiden av Home Assistant. Det oppdateres automatisk når nye enheter eller Lovelace brukergrensesnitt-komponenter blir tilgjengelige. Hvis du tar kontroll, vil dette instrumentbordet ikke lenger oppdateres automatisk. Du kan alltid lage et nytt instrumentbord i konfigurasjon å leke med.",
|
||||
"para_sure": "Er du sikker på at du vil ta kontroll over brukergrensesnittet ditt?",
|
||||
"save": "Ta kontroll",
|
||||
"yaml_config": "For å hjelpe deg med å starte, her er den gjeldende konfigurasjonen av dette dashbordet:",
|
||||
"yaml_config": "For å hjelpe deg med å starte, her er den gjeldende konfigurasjonen av dette instrumentbordet:",
|
||||
"yaml_control": "Hvis du vil ta kontroll i YAML-modus, oppretter du en YAML-fil med navnet du angav i konfigurasjonen for dette instrumentbordet, eller standard 'ui-lovelace.yaml'.",
|
||||
"yaml_mode": "Du bruker YAML-modus, det betyr at du ikke kan endre Lovelace config fra brukergrensesnittet. Hvis du vil endre Lovelace fra brukergrensesnittet, fjerner du 'modus: yaml' fra Lovelace-konfigurasjonen i 'configuration.yaml'."
|
||||
"yaml_mode": "Du bruker YAML-modus for dette instrumentbordet, noe som betyr at du ikke kan endre Lovelace-konfigurasjonen fra brukergrensesnittet. Hvis du vil administrere dette instrumentbordet fra brukergrensesnittet, må du fjerne 'modus: yaml' fra Lovelace-konfigurasjonen i 'configuration.yaml'."
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Legg til i Lovelace UI",
|
||||
"add": "Legg til i Lovelace brukergrensesnitt",
|
||||
"create_own": "Velg et annet kort",
|
||||
"header": "Vi har laget et forslag til deg"
|
||||
},
|
||||
@ -2242,13 +2259,13 @@
|
||||
"refresh": "Oppdater",
|
||||
"reload_resources": "Last inn ressurser på nytt"
|
||||
},
|
||||
"reload_lovelace": "Last inn UI",
|
||||
"reload_lovelace": "Last inn brukergrensesnittet på nytt",
|
||||
"reload_resources": {
|
||||
"refresh_body": "Du må oppdatere siden for å fullføre omlastingen, vil du oppdatere nå?",
|
||||
"refresh_header": "Vil du oppdatere?"
|
||||
"refresh_header": "Vil du oppfriske?"
|
||||
},
|
||||
"unused_entities": {
|
||||
"available_entities": "Dette er enheter som du har tilgjengelig, men som ikke er i Lovelace UI ennå.",
|
||||
"available_entities": "Dette er enheter som du har tilgjengelig, men som ikke er i Lovelace brukergrensesnittet ennå.",
|
||||
"domain": "Domene",
|
||||
"entity": "Entitet",
|
||||
"entity_id": "Entitets-ID",
|
||||
@ -2258,7 +2275,7 @@
|
||||
},
|
||||
"views": {
|
||||
"confirm_delete": "Slette visning?",
|
||||
"confirm_delete_existing_cards": "Hvis du sletter denne visningen, fjernes også kortene",
|
||||
"confirm_delete_existing_cards": "Sletting av denne visningen vil også slette kortene",
|
||||
"confirm_delete_existing_cards_text": "Er du sikker på at du vil slette visningen '{name}'? Visningen inneholder {number} kort som blir slettet. Denne handlingen kan ikke angre.",
|
||||
"confirm_delete_text": "Er du sikker på at du vil slette visningen '{name}'?"
|
||||
},
|
||||
@ -2286,7 +2303,7 @@
|
||||
},
|
||||
"error": {
|
||||
"invalid_auth": "Ugyldig brukernavn eller passord",
|
||||
"invalid_code": "Ugyldig autentiseringskode"
|
||||
"invalid_code": "Ugyldig godkjenningskode"
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
@ -2297,9 +2314,9 @@
|
||||
},
|
||||
"mfa": {
|
||||
"data": {
|
||||
"code": "To-faktor autentiseringskode"
|
||||
"code": "Totrinns verifiseringskode"
|
||||
},
|
||||
"description": "Åpne **{mfa_module_name}** på enheten din for å se din tofaktors autentiseringskode og bekrefte identiteten din:"
|
||||
"description": "Åpne **{mfa_module_name}** på enheten din for å se din tofaktors godkjenningskode og bekrefte identiteten din:"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2309,7 +2326,7 @@
|
||||
},
|
||||
"error": {
|
||||
"invalid_auth": "Ugyldig brukernavn eller passord",
|
||||
"invalid_code": "Ugyldig autentiseringskode"
|
||||
"invalid_code": "Ugyldig godkjenningskode"
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
@ -2320,9 +2337,9 @@
|
||||
},
|
||||
"mfa": {
|
||||
"data": {
|
||||
"code": "To-faktor autentiseringskode"
|
||||
"code": "Totrinns verifiseringskode"
|
||||
},
|
||||
"description": "Åpne **{mfa_module_name}** på enheten din for å se din tofaktors autentiseringskode og bekrefte identiteten din:"
|
||||
"description": "Åpne **{mfa_module_name}** på enheten din for å se din tofaktors godkjenningskode og bekrefte identiteten din:"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2333,20 +2350,20 @@
|
||||
},
|
||||
"error": {
|
||||
"invalid_auth": "Ugyldig API-passord",
|
||||
"invalid_code": "Ugyldig autentiseringskode"
|
||||
"invalid_code": "Ugyldig godkjenningskode"
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"data": {
|
||||
"password": "API-passord"
|
||||
},
|
||||
"description": "Skriv inn API-passordet i HTTP-konfigurasjonen:"
|
||||
"description": "Vennligst fyll inn API-passordet i HTTP-konfigurasjonen:"
|
||||
},
|
||||
"mfa": {
|
||||
"data": {
|
||||
"code": "To-faktor autentiseringskode"
|
||||
"code": "Totrinns verifiseringskode"
|
||||
},
|
||||
"description": "Åpne **{mfa_module_name}** på enheten din for å se din tofaktors autentiseringskode og bekrefte identiteten din:"
|
||||
"description": "Åpne **{mfa_module_name}** på enheten din for å se din tofaktors godkjenningskode og bekrefte identiteten din:"
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2375,7 +2392,7 @@
|
||||
"cards": {
|
||||
"demo": {
|
||||
"demo_by": "ved {name}",
|
||||
"introduction": "Velkommen hjem! Du har nådd Home Assistant-demoen der vi viser frem de beste UIs som er opprettet av fellesskapet vårt.",
|
||||
"introduction": "Velkommen hjem! Du har nådd Home Assistant-demoen hvor vi viser frem de beste brukergrensesnittene som er opprettet av fellesskapet vårt.",
|
||||
"learn_more": "Lær mer om Home Assistant",
|
||||
"next_demo": "Neste demo"
|
||||
}
|
||||
@ -2388,7 +2405,7 @@
|
||||
"commute_home": "Pendle til hjem",
|
||||
"entertainment": "Underholdning",
|
||||
"hdmi_input": "HDMI inngang",
|
||||
"hdmi_switcher": "HDMI velger",
|
||||
"hdmi_switcher": "HDMI-velger",
|
||||
"information": "Informasjon",
|
||||
"lights": "Lys",
|
||||
"morning_commute": "Morgen pendling",
|
||||
@ -2409,7 +2426,7 @@
|
||||
"upstairs": "Oppe"
|
||||
},
|
||||
"unit": {
|
||||
"minutes_abbr": "min",
|
||||
"minutes_abbr": "",
|
||||
"watching": "Ser på"
|
||||
}
|
||||
}
|
||||
@ -2462,9 +2479,9 @@
|
||||
},
|
||||
"current_user": "Du er logget inn som {fullName}.",
|
||||
"dashboard": {
|
||||
"description": "Velg et standard dashbord for denne enheten.",
|
||||
"dropdown_label": "Dashboard",
|
||||
"header": "Dashboard"
|
||||
"description": "Velg et standard instrumentbord for denne enheten.",
|
||||
"dropdown_label": "",
|
||||
"header": ""
|
||||
},
|
||||
"force_narrow": {
|
||||
"description": "Dette vil skjule sidepanelet som standard, tilsvarende opplevelsen på en mobil.",
|
||||
@ -2505,10 +2522,10 @@
|
||||
"confirm_disable": "Er du sikker på at du vil deaktivere {name}?",
|
||||
"disable": "Deaktiver",
|
||||
"enable": "Aktiver",
|
||||
"header": "Flerfaktor autentiseringsmoduler"
|
||||
"header": "Flerfaktor godkjenningsmoduler"
|
||||
},
|
||||
"push_notifications": {
|
||||
"description": "Send notifikasjoner til denne enheten",
|
||||
"description": "Send varsler til denne enheten.",
|
||||
"error_load_platform": "Konfigurer notify.html5.",
|
||||
"error_use_https": "Krever SSL aktivert for grensesnitt.",
|
||||
"header": "Push varslinger",
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Gestopt"
|
||||
},
|
||||
"default": {
|
||||
"off": "Uit",
|
||||
"on": "Aan",
|
||||
"unavailable": "Niet beschikbaar",
|
||||
"unknown": "Onbekend"
|
||||
},
|
||||
@ -563,7 +565,7 @@
|
||||
"icon": "Overschrijf pictogram",
|
||||
"icon_error": "Pictogrammen moeten de notatie 'prefix:pictogramnaam' hebben, bijvoorbeeld 'mdi:home'",
|
||||
"name": "Naam overschrijven",
|
||||
"note": "Nota bene: dit werkt mogelijk nog niet met alle integraties.",
|
||||
"note": "Opmerking: dit werkt mogelijk nog niet met alle integraties.",
|
||||
"unavailable": "Deze entiteit is momenteel niet beschikbaar.",
|
||||
"update": "Bijwerken"
|
||||
},
|
||||
@ -594,7 +596,7 @@
|
||||
"min": "Minimale waarde",
|
||||
"mode": "Weergavemodus",
|
||||
"slider": "Schuifregelaar",
|
||||
"step": "Stapgrootte van de schuifregelaar",
|
||||
"step": "Stapgrootte",
|
||||
"unit_of_measurement": "Meeteenheid"
|
||||
},
|
||||
"input_select": {
|
||||
@ -655,7 +657,7 @@
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"deserialize": "Probeer MQTT-berichten als JSON te parseren",
|
||||
"deserialize": "Probeer MQTT-berichten als JSON te ontleden",
|
||||
"entities": "Entiteiten",
|
||||
"no_entities": "Geen entiteiten",
|
||||
"no_triggers": "Geen triggers",
|
||||
@ -1344,8 +1346,8 @@
|
||||
"delete_button": "Verwijder {integration}.",
|
||||
"delete_confirm": "Weet je zeker dat je deze integratie wilt verwijderen?",
|
||||
"device_unavailable": "apparaat niet beschikbaar",
|
||||
"devices": "{count} {count, plural,\n one {device}\n other {devices}\n}",
|
||||
"entities": "{count} {count, plural,\n one {entity}\n other {entities}\n}",
|
||||
"devices": "{count} {count, plural,\n one {apparaat}\n other {apparaten}\n}",
|
||||
"entities": "{count} {count, plural,\n one {entiteit}\n other {entiteiten}\n}",
|
||||
"entity_unavailable": "entiteit niet beschikbaar",
|
||||
"firmware": "Firmware: {version}",
|
||||
"hub": "Verbonden via",
|
||||
@ -1397,10 +1399,12 @@
|
||||
"new": "Stel een nieuwe integratie in",
|
||||
"no_integrations": "Het lijkt erop dat je nog geen integraties hebt geconfigureerd. Klik op de knop hieronder om uw eerste integratie toe te voegen!",
|
||||
"none": "Er is nog niets geconfigureerd",
|
||||
"none_found": "Geen integraties gevonden",
|
||||
"none_found_detail": "Pas uw zoekcriteria aan.",
|
||||
"note_about_integrations": "Nog niet alle integraties kunnen via de UI worden geconfigureerd.",
|
||||
"note_about_website_reference": "Meer zijn beschikbaar op de ",
|
||||
"rename_dialog": "Bewerk de naam van configuratie item",
|
||||
"rename_input_label": "Vermeldingsnaam"
|
||||
"rename_dialog": "Bewerk de naam van dit configuratie item",
|
||||
"rename_input_label": "Invoernaam"
|
||||
},
|
||||
"introduction": "Hier kun je je componenten en Home Assistant configureren. Het is nog niet mogelijk om alles te configureren vanuit de interface, maar we werken er aan.",
|
||||
"lovelace": {
|
||||
@ -1410,7 +1414,7 @@
|
||||
"cant_edit_yaml": "Dashboards die zijn gedefinieerd in YAML kunnen niet worden bewerkt vanuit de gebruikersinterface. Wijzig ze in configuration.yaml.",
|
||||
"caption": "Dashboards",
|
||||
"conf_mode": {
|
||||
"storage": "UI gecontroleerd",
|
||||
"storage": "Gebruikersinterface gestuurd",
|
||||
"yaml": "YAML-bestand"
|
||||
},
|
||||
"confirm_delete": "Weet je zeker dat je dit dashboard wilt verwijderen?",
|
||||
@ -1468,14 +1472,14 @@
|
||||
"type": "Type",
|
||||
"url": "Url"
|
||||
},
|
||||
"no_resources": "Geen Lovelace bronnen"
|
||||
"no_resources": "Geen bronnen"
|
||||
},
|
||||
"refresh_body": "Je moet de pagina vernieuwen om de verwijdering te voltooien. Wil je nu vernieuwen?",
|
||||
"refresh_header": "Wil je verversen?",
|
||||
"types": {
|
||||
"css": "Stylesheet",
|
||||
"html": "HTML (afgeschaft)",
|
||||
"js": "JavaScript-bestand (afgeschaft)",
|
||||
"html": "HTML (verouderd)",
|
||||
"js": "JavaScript-bestand (verouderd)",
|
||||
"module": "JavaScript-module"
|
||||
}
|
||||
}
|
||||
@ -2148,7 +2152,7 @@
|
||||
}
|
||||
},
|
||||
"cardpicker": {
|
||||
"custom_card": "Aangepaste UI's:",
|
||||
"custom_card": "Aangepaste",
|
||||
"no_description": "Er is geen beschrijving beschikbaar"
|
||||
},
|
||||
"edit_card": {
|
||||
@ -2179,7 +2183,7 @@
|
||||
"move_left": "Verplaats weergave naar links",
|
||||
"move_right": "Verplaats weergave naar rechts",
|
||||
"tab_badges": "Badges",
|
||||
"tab_settings": "instellingen",
|
||||
"tab_settings": "Instellingen",
|
||||
"tab_visibility": "Zichtbaarheid",
|
||||
"visibility": {
|
||||
"select_users": "Selecteer welke gebruikers deze weergave in de navigatie moeten zien"
|
||||
@ -2206,7 +2210,7 @@
|
||||
"error_remove": "Kan configuratie niet verwijderen: {error}",
|
||||
"error_save_yaml": "Kan YAML niet opslaan: {error}",
|
||||
"header": "Configuratie bewerken",
|
||||
"resources_moved": "Bronnen moeten niet langer worden toegevoegd aan de Lovelace-configuratie, maar kunnen worden toegevoegd in het Lovelace-configuratievenster.",
|
||||
"resources_moved": "Bronnen moeten niet langer worden toegevoegd aan de Lovelace-configuratie, maar kunnen worden toegevoegd in het Lovelace-configuratiepaneel.",
|
||||
"save": "Opslaan",
|
||||
"saved": "Opgeslagen",
|
||||
"unsaved_changes": "Niet-opgeslagen wijzigingen"
|
||||
@ -2216,12 +2220,12 @@
|
||||
"close": "Sluiten",
|
||||
"empty_config": "Begin met een leeg dashboard",
|
||||
"header": "Neem de controle over je Lovelace UI",
|
||||
"para": "Home Assistant onderhoudt je gebruikersinterface en update die met nieuwe entiteiten of Lovelace-onderdelen wanneer deze beschikbaar zijn. Als je het beheer overneemt, zullen we niet langer automatisch wijzigingen aanbrengen.",
|
||||
"para": "Home Assistant onderhoudt je gebruikersinterface en update die met nieuwe entiteiten of Lovelace-onderdelen wanneer deze beschikbaar zijn. Als je het beheer overneemt, zullen we niet langer automatisch wijzigingen aanbrengen. Je kunt later altijd een nieuw dashboard in de configuratie toevoegen om mee te spelen.",
|
||||
"para_sure": "Weet je zeker dat je de controle wilt over je gebruikersinterface?",
|
||||
"save": "Neem over",
|
||||
"yaml_config": "Om je te helpen te beginnen, hier is de huidige configuratie van dit dashboard:",
|
||||
"yaml_control": "Om de controle over te nemen in de YAML-modus, maak je een YAML-bestand met de naam die je hebt opgegeven in je configuratie voor dit dashboard, of de standaard 'ui-lovelace.yaml'.",
|
||||
"yaml_mode": "Je gebruikt de YAML-modus, wat betekent dat je jouw Lovelace-configuratie niet vanuit de gebruikersinterface kunt wijzigen. Als je Lovelace vanuit de gebruikersinterface wilt wijzigen, verwijder dan 'mode: yaml' uit de Lovelace-configuratie in 'configuration.yaml.'"
|
||||
"yaml_mode": "Je gebruikt de YAML-modus, wat betekent dat je jouw Lovelace-configuratie niet vanuit de gebruikersinterface kunt wijzigen. Als je Lovelace vanuit de gebruikersinterface wilt wijzigen, verwijder dan 'mode: yaml' uit de Lovelace-configuratie in 'configuration.yaml'."
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Voeg toe aan de Lovelace gebruikersinterface",
|
||||
@ -2242,7 +2246,7 @@
|
||||
"exit_edit_mode": "UI-bewerkingsmodus afsluiten",
|
||||
"help": "Help",
|
||||
"refresh": "Vernieuwen",
|
||||
"reload_resources": "Herlaad Lovelace gegevens"
|
||||
"reload_resources": "Herlaad bronnen"
|
||||
},
|
||||
"reload_lovelace": "Lovelace herladen",
|
||||
"reload_resources": {
|
||||
|
@ -203,9 +203,11 @@
|
||||
"closing": "zamykanie",
|
||||
"open": "otwarta",
|
||||
"opening": "otwieranie",
|
||||
"stopped": "zatrzymany"
|
||||
"stopped": "zatrzymanie"
|
||||
},
|
||||
"default": {
|
||||
"off": "wyłączony",
|
||||
"on": "włączony",
|
||||
"unavailable": "niedostępny",
|
||||
"unknown": "nieznany"
|
||||
},
|
||||
@ -475,7 +477,10 @@
|
||||
"close": "Zamknij",
|
||||
"delete": "Usuń",
|
||||
"loading": "Ładowanie",
|
||||
"next": "Dalej",
|
||||
"no": "Nie",
|
||||
"previous": "Poprzedni",
|
||||
"refresh": "Odśwież",
|
||||
"save": "Zapisz",
|
||||
"successfully_deleted": "Pomyślnie usunięto",
|
||||
"successfully_saved": "Pomyślnie zapisano",
|
||||
@ -527,10 +532,10 @@
|
||||
"relative_time": {
|
||||
"duration": {
|
||||
"day": "{count} {count, plural,\n one {dzień}\n other {dni}\n}",
|
||||
"hour": "{count} {count, plural,\n one {godzina}\n other {godzin(y)}\n}",
|
||||
"minute": "{count} {count, plural,\n one {minuta}\n other {minut(y)}\n}",
|
||||
"second": "{count} {count, plural,\n one {sekunda}\n other {sekund(y)}\n}",
|
||||
"week": "{count} {count, plural,\n one {tydzień}\n other {tygodni(e)}\n}"
|
||||
"hour": "{count} {count, plural,\n one {godzina}\n few {godziny}\n many {godzin}\n other {godzin}\n}",
|
||||
"minute": "{count} {count, plural,\n one {minuta}\n few {minuty}\n many {minut}\n other {minut}\n}",
|
||||
"second": "{count} {count, plural,\n one {sekunda}\n few {sekundy}\n many {sekund}\n other {sekund}\n}",
|
||||
"week": "{count} {count, plural,\n one {tydzień}\n few {tygodnie}\n many {tygodni}\n other {tygodni}\n}"
|
||||
},
|
||||
"future": "Za {time}",
|
||||
"never": "Nigdy",
|
||||
@ -548,13 +553,13 @@
|
||||
"update": "Aktualizuj"
|
||||
},
|
||||
"domain_toggler": {
|
||||
"title": "Przełączanie domen"
|
||||
"title": "Włączanie domen"
|
||||
},
|
||||
"entity_registry": {
|
||||
"control": "Kontrola",
|
||||
"dismiss": "Odrzuć",
|
||||
"editor": {
|
||||
"confirm_delete": "Na pewno chcesz usunąć ten wpis?",
|
||||
"confirm_delete": "Czy na pewno chcesz usunąć ten wpis?",
|
||||
"delete": "USUŃ",
|
||||
"enabled_cause": "Wyłączone przez {cause}.",
|
||||
"enabled_description": "Wyłączone encje nie zostaną dodane do Home Assistant'a.",
|
||||
@ -713,10 +718,10 @@
|
||||
},
|
||||
"duration": {
|
||||
"day": "{count} {count, plural,\n one {dzień}\n other {dni}\n}",
|
||||
"hour": "{count} {count, plural,\none {godzina}\nother {godzin(y)}\n}",
|
||||
"minute": "{count} {count, plural,\none {minuta}\nother {minut(y)}\n}",
|
||||
"second": "{count} {count, plural,\n one {sekunda}\n other {sekund(y)}\n}",
|
||||
"week": "{count} {count, plural,\n one {tydzień}\n other {tygodni(e)}\n}"
|
||||
"hour": "{count} {count, plural,\n one {godzina}\n few {godziny}\n many {godzin}\n other {godzin}\n}",
|
||||
"minute": "{count} {count, plural,\n one {minuta}\n few {minuty}\n many {minut}\n other {minut}\n}",
|
||||
"second": "{count} {count, plural,\n one {sekunda}\n few {sekundy}\n many {sekund}\n other {sekund}\n}",
|
||||
"week": "{count} {count, plural,\n one {tydzień}\n few {tygodnie}\n many {tygodni}\n other {tygodni}\n}"
|
||||
},
|
||||
"login-form": {
|
||||
"log_in": "Zaloguj",
|
||||
@ -735,6 +740,10 @@
|
||||
"triggered": "Wyzwolenie {name}"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Moje kalendarze",
|
||||
"today": "Dzisiaj"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Brakuje opcji konfiguracji? Włącz tryb zaawansowany",
|
||||
@ -773,7 +782,7 @@
|
||||
"actions": {
|
||||
"add": "Dodaj akcję",
|
||||
"delete": "Usuń",
|
||||
"delete_confirm": "Jesteś pewien, że chcesz usunąć?",
|
||||
"delete_confirm": "Czy na pewno chcesz to usunąć?",
|
||||
"duplicate": "Duplikuj",
|
||||
"header": "Akcje",
|
||||
"introduction": "Akcje są wykonywane przez Home Assistant'a po uruchomieniu automatyzacji.",
|
||||
@ -837,6 +846,9 @@
|
||||
},
|
||||
"label": "Urządzenie"
|
||||
},
|
||||
"not": {
|
||||
"label": "Nie"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Powyżej",
|
||||
"below": "Poniżej",
|
||||
@ -891,7 +903,7 @@
|
||||
"triggers": {
|
||||
"add": "Dodaj wyzwalacz",
|
||||
"delete": "Usuń",
|
||||
"delete_confirm": "Jesteś pewien, że chcesz usunąć?",
|
||||
"delete_confirm": "Czy na pewno chcesz to usunąć?",
|
||||
"duplicate": "Duplikuj",
|
||||
"header": "Wyzwalacze",
|
||||
"introduction": "Wyzwalacze uruchamiają przetwarzanie automatyzacji. Możliwe jest stworzenie wielu wyzwalaczy dla tej samej automatyzacji. Po uruchomieniu wyzwalacza Home Assistant sprawdzi ewentualne warunki i wywoła akcje.",
|
||||
@ -984,7 +996,7 @@
|
||||
"picker": {
|
||||
"add_automation": "Dodaj automatyzację",
|
||||
"delete_automation": "Usuń automatyzację",
|
||||
"delete_confirm": "Na pewno chcesz usunąć tę automatyzację?",
|
||||
"delete_confirm": "Czy na pewno chcesz usunąć tę automatyzację?",
|
||||
"edit_automation": "Edytuj automatyzację",
|
||||
"header": "Edytor automatyzacji",
|
||||
"headers": {
|
||||
@ -1085,7 +1097,7 @@
|
||||
"dialog_cloudhook": {
|
||||
"available_at": "Webhook jest dostępny pod następującym adresem URL:",
|
||||
"close": "Zamknij",
|
||||
"confirm_disable": "Na pewno chcesz wyłączyć ten webhook?",
|
||||
"confirm_disable": "Czy na pewno chcesz wyłączyć ten webhook?",
|
||||
"copied_to_clipboard": "Skopiowano do schowka",
|
||||
"info_disable_webhook": "Jeśli nie chcesz już używać tego webhook'a, możesz",
|
||||
"link_disable_webhook": "wyłączyć go",
|
||||
@ -1222,7 +1234,7 @@
|
||||
},
|
||||
"cant_edit": "Możesz edytować tylko elementy utworzone w interfejsie użytkownika.",
|
||||
"caption": "Urządzenia",
|
||||
"confirm_delete": "Na pewno chcesz usunąć to urządzenie?",
|
||||
"confirm_delete": "Czy na pewno chcesz usunąć to urządzenie?",
|
||||
"confirm_rename_entity_ids": "Czy chcesz także zmienić identyfikatory encji?",
|
||||
"data_table": {
|
||||
"area": "Obszar",
|
||||
@ -1235,6 +1247,7 @@
|
||||
},
|
||||
"delete": "Usuń",
|
||||
"description": "Zarządzaj podłączonymi urządzeniami",
|
||||
"device_info": "Informacje o urządzeniu",
|
||||
"device_not_found": "Urządzenie nie zostało znalezione.",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Dodaj do interfejsu użytkownika Lovelace",
|
||||
@ -1251,7 +1264,7 @@
|
||||
"scenes": "Sceny",
|
||||
"script": {
|
||||
"create": "Utwórz skrypt z urządzeniem",
|
||||
"no_scripts": "Bez skryptów",
|
||||
"no_scripts": "Brak skryptów",
|
||||
"scripts": "Skrypty"
|
||||
},
|
||||
"scripts": "Skrypty",
|
||||
@ -1342,10 +1355,10 @@
|
||||
"area": "obszar: {area}",
|
||||
"delete": "Usuń",
|
||||
"delete_button": "Usuń {integration}",
|
||||
"delete_confirm": "Na pewno chcesz usunąć tę integrację?",
|
||||
"delete_confirm": "Czy na pewno chcesz usunąć tę integrację?",
|
||||
"device_unavailable": "urządzenie niedostępne",
|
||||
"devices": "{count} {count, plural,\n one {urządzenie}\n other {urządze(nia/ń)}\n}",
|
||||
"entities": "{count} {count, plural,\n one {encja}\n other {encj(e/i)}\n}",
|
||||
"devices": "{count} {count, plural,\n one {urządzenie}\n few {urządzenia}\n many {urządzeń}\n other {urządzeń}\n}",
|
||||
"entities": "{count} {count, plural,\n one {encja}\n few {encje}\n many {encji}\n other {encji}\n}",
|
||||
"entity_unavailable": "encja niedostępna",
|
||||
"firmware": "oprogramowanie: {version}",
|
||||
"hub": "połączony poprzez:",
|
||||
@ -1383,20 +1396,22 @@
|
||||
"home_assistant_website": "Home Assistant'a",
|
||||
"ignore": {
|
||||
"confirm_delete_ignore": "Spowoduje to, że integracja pojawi się ponownie w wykrytych integracjach. Może to wymagać ponownego uruchomienia lub czasu.",
|
||||
"confirm_delete_ignore_title": "Przestać ignorować {name}?",
|
||||
"confirm_ignore": "Na pewno chcesz ignorować tę integrację? Możesz to cofnąć, klikając „Pokaż ignorowane integracje” w menu w prawym górnym rogu.",
|
||||
"confirm_ignore_title": "Ignorować wykrywanie {name}?",
|
||||
"hide_ignored": "Ukryj ignorowane integracje",
|
||||
"confirm_delete_ignore_title": "Wyłączenie ignorowania {name}",
|
||||
"confirm_ignore": "Czy na pewno chcesz ignorować tę integrację? Możesz cofnąć ignorowanie, wybierając 'Wyświetlaj ignorowane integracje' w menu w prawym górnym rogu.",
|
||||
"confirm_ignore_title": "Ignorowanie {name}",
|
||||
"hide_ignored": "Ukrywaj ignorowane integracje",
|
||||
"ignore": "Ignoruj",
|
||||
"ignored": "Ignorowana",
|
||||
"show_ignored": "Pokaż ignorowane integracje",
|
||||
"stop_ignore": "Wyłączenie ignorowania"
|
||||
"show_ignored": "Wyświetlaj ignorowane integracje",
|
||||
"stop_ignore": "Wyłącz ignorowanie"
|
||||
},
|
||||
"integration": "integracja",
|
||||
"integration_not_found": "Nie znaleziono integracji.",
|
||||
"new": "Konfiguruj nową integrację",
|
||||
"no_integrations": "Wygląda na to, że nie masz jeszcze skonfigurowanych żadnych integracji. Kliknij przycisk poniżej, aby dodać pierwszą integrację!",
|
||||
"none": "Nic jeszcze nie zostało skonfigurowane",
|
||||
"none_found": "Nie znaleziono integracji",
|
||||
"none_found_detail": "Dostosuj kryteria wyszukiwania.",
|
||||
"note_about_integrations": "Jeszcze nie wszystkie integracje można skonfigurować za pomocą interfejsu użytkownika.",
|
||||
"note_about_website_reference": "Więcej jest dostępnych na stronie integracji ",
|
||||
"rename_dialog": "Edytuj nazwę tego wpisu konfiguracji",
|
||||
@ -1407,13 +1422,13 @@
|
||||
"caption": "Dashboardy",
|
||||
"dashboards": {
|
||||
"cant_edit_default": "Standardowego dashboardu Lovelace nie można edytować za pomocą interfejsu użytkownika. Możesz go ukryć, ustawiając jako domyślny inny dashboard.",
|
||||
"cant_edit_yaml": "Dasboard'y zdefiniowane w plikach YAML nie mogą być edytowane z poziomu interfejsu użytkownika. Zmień je w pliku configuration.yaml.",
|
||||
"cant_edit_yaml": "Dashboard'y zdefiniowane w plikach YAML nie mogą być edytowane z poziomu interfejsu użytkownika. Zmień je w pliku configuration.yaml.",
|
||||
"caption": "Dashboardy",
|
||||
"conf_mode": {
|
||||
"storage": "Konfigurowalny z interfejsu użytkownika",
|
||||
"yaml": "Plik YAML"
|
||||
},
|
||||
"confirm_delete": "Na pewno chcesz usunąć ten dashboard?",
|
||||
"confirm_delete": "Czy na pewno chcesz usunąć ten dashboard?",
|
||||
"default_dashboard": "To jest domyślny dashboard",
|
||||
"detail": {
|
||||
"create": "Utwórz",
|
||||
@ -1449,7 +1464,7 @@
|
||||
"resources": {
|
||||
"cant_edit_yaml": "Korzystasz z interfejsu użytkownika Lovelace w trybie YAML, dlatego nie możesz zarządzać zasobami za pomocą interfejsu użytkownika. Zarządzaj nimi w pliku configuration.yaml.",
|
||||
"caption": "Zasoby",
|
||||
"confirm_delete": "Na pewno chcesz usunąć ten zasób?",
|
||||
"confirm_delete": "Czy na pewno chcesz usunąć ten zasób?",
|
||||
"detail": {
|
||||
"create": "Utwórz",
|
||||
"delete": "Usuń",
|
||||
@ -1483,7 +1498,7 @@
|
||||
"person": {
|
||||
"add_person": "Dodaj osobę",
|
||||
"caption": "Osoby",
|
||||
"confirm_delete": "Na pewno chcesz usunąć tę osobę?",
|
||||
"confirm_delete": "Czy na pewno chcesz usunąć tę osobę?",
|
||||
"confirm_delete2": "Wszystkie urządzenia należące do tej osoby zostaną nieprzypisane.",
|
||||
"create_person": "Utwórz osobę",
|
||||
"description": "Zarządzaj osobami, które śledzi Home Assistant",
|
||||
@ -1535,7 +1550,7 @@
|
||||
},
|
||||
"picker": {
|
||||
"add_scene": "Dodaj scenę",
|
||||
"delete_confirm": "Na pewno chcesz usunąć tę scenę?",
|
||||
"delete_confirm": "Czy na pewno chcesz usunąć tę scenę?",
|
||||
"delete_scene": "Usuń scenę",
|
||||
"edit_scene": "Edytuj scenę",
|
||||
"header": "Edytor scen",
|
||||
@ -1556,7 +1571,7 @@
|
||||
"editor": {
|
||||
"alias": "Nazwa",
|
||||
"default_name": "Nowy skrypt",
|
||||
"delete_confirm": "Na pewno chcesz usunąć ten skrypt?",
|
||||
"delete_confirm": "Czy na pewno chcesz usunąć ten skrypt?",
|
||||
"delete_script": "Usuń skrypt",
|
||||
"header": "Skrypt: {name}",
|
||||
"introduction": "Użyj skryptów, aby wykonać sekwencję akcji.",
|
||||
@ -1588,15 +1603,15 @@
|
||||
"core": "Lokalizacja i dostosowywanie",
|
||||
"group": "Grupy",
|
||||
"heading": "Ponowne wczytanie konfiguracji",
|
||||
"introduction": "Niektóre części konfiguracji można wczytać od nowa bez konieczności ponownego uruchamiania Home Assistant'a. Naciśnięcie poniższych przycisków wczyta ponownie daną część konfiguracji.",
|
||||
"introduction": "Niektóre fragmenty konfiguracji można przeładować bez ponownego uruchamiania. Poniższe przyciski pozwalają na ponowne wczytanie konfiguracji.",
|
||||
"person": "Osoby",
|
||||
"scene": "Sceny",
|
||||
"script": "Skrypty",
|
||||
"zone": "Strefy"
|
||||
},
|
||||
"server_management": {
|
||||
"confirm_restart": "Na pewno chcesz ponownie uruchomić Home Assistant'a?",
|
||||
"confirm_stop": "Na pewno chcesz zatrzymać Home Assistant'a?",
|
||||
"confirm_restart": "Czy na pewno chcesz ponownie uruchomić Home Assistant'a?",
|
||||
"confirm_stop": "Czy na pewno chcesz zatrzymać Home Assistant'a?",
|
||||
"heading": "Zarządzanie serwerem",
|
||||
"introduction": "Kontroluj serwer Home Assistant'a.",
|
||||
"restart": "Uruchom ponownie",
|
||||
@ -1627,7 +1642,7 @@
|
||||
"admin": "Administrator",
|
||||
"caption": "Wyświetl użytkownika",
|
||||
"change_password": "Zmień hasło",
|
||||
"confirm_user_deletion": "Na pewno chcesz usunąć {name}?",
|
||||
"confirm_user_deletion": "Czy na pewno chcesz usunąć {name}?",
|
||||
"deactivate_user": "Dezaktywuj użytkownika",
|
||||
"delete_user": "Usuń użytkownika",
|
||||
"group": "Grupa",
|
||||
@ -1750,7 +1765,7 @@
|
||||
"add_zone": "Dodaj strefę",
|
||||
"caption": "Strefy",
|
||||
"configured_in_yaml": "Stref skonfigurowanych za pomocą pliku configuration.yaml nie można edytować za pomocą interfejsu użytkownika.",
|
||||
"confirm_delete": "Na pewno chcesz usunąć tę strefę?",
|
||||
"confirm_delete": "Czy na pewno chcesz usunąć tę strefę?",
|
||||
"create_zone": "Utwórz strefę",
|
||||
"description": "Zarządzaj strefami, w których chcesz śledzić osoby",
|
||||
"detail": {
|
||||
@ -1763,7 +1778,7 @@
|
||||
"name": "Nazwa",
|
||||
"new_zone": "Nowa strefa",
|
||||
"passive": "Pasywna",
|
||||
"passive_note": "Strefy pasywne są ukryte w interfejsie użytkownika i nie są używane jako lokalizacje dla śledzonych urządzeń. Są one przydatne, jeśli chcesz w automatyzacjach.",
|
||||
"passive_note": "Strefy pasywne są ukryte w interfejsie użytkownika i nie są używane jako lokalizacje dla trackerów urządzeń. Są przydatne, jeśli chcesz chcesz z nich skorzystać w automatyzacjach.",
|
||||
"radius": "Promień",
|
||||
"required_error_msg": "To pole jest wymagane",
|
||||
"update": "Aktualizuj"
|
||||
@ -1804,7 +1819,7 @@
|
||||
"false": "Fałsz",
|
||||
"header": "Opcje konfiguracji węzła",
|
||||
"seconds": "sekundy",
|
||||
"set_config_parameter": "Ustaw parametr konfiguracji",
|
||||
"set_config_parameter": "Ustaw parametr",
|
||||
"set_wakeup": "Ustaw częstotliwość wybudzenia",
|
||||
"true": "Prawda"
|
||||
},
|
||||
@ -1952,7 +1967,7 @@
|
||||
"yaml_unsupported": "Nie możesz używać tej funkcji, gdy używasz interfejsu użytkownika Lovelace w trybie YAML."
|
||||
},
|
||||
"cards": {
|
||||
"confirm_delete": "Na pewno chcesz usunąć tę kartę?",
|
||||
"confirm_delete": "Czy na pewno chcesz usunąć tę kartę?",
|
||||
"empty_state": {
|
||||
"go_to_integrations_page": "Przejdź do strony integracji.",
|
||||
"no_devices": "Ta strona pozwala kontrolować urządzenia, ale wygląda na to, że nie masz jeszcze żadnych skonfigurowanych. Przejdź na stronę integracji, aby rozpocząć.",
|
||||
@ -1981,7 +1996,7 @@
|
||||
}
|
||||
},
|
||||
"changed_toast": {
|
||||
"message": "Zaktualizowano konfigurację interfejsu użytkownika Lovelace, czy chcesz ją wczytać ponownie?",
|
||||
"message": "Zaktualizowano konfigurację interfejsu Lovelace, czy wczytać ją ponownie?",
|
||||
"refresh": "Wczytaj ponownie"
|
||||
},
|
||||
"editor": {
|
||||
@ -2217,7 +2232,7 @@
|
||||
"empty_config": "Zacznij od pustego dashboardu",
|
||||
"header": "Przejmij kontrolę nad interfejsem użytkownika Lovelace",
|
||||
"para": "Domyślnie Home Assistant będzie zarządzać interfejsem użytkownika, aktualizując go, gdy pojawią się nowe encje lub komponenty Lovelace. Jeśli przejmiesz kontrolę, Home Assistant nie będzie już automatycznie wprowadzać dla ciebie zmian.",
|
||||
"para_sure": "Na pewno chcesz przejąć kontrolę nad interfejsem użytkownika?",
|
||||
"para_sure": "Czy na pewno chcesz przejąć kontrolę nad interfejsem użytkownika?",
|
||||
"save": "Przejmuję kontrolę",
|
||||
"yaml_config": "Aby rozpocząć, zapoznaj się z aktualną konfiguracją tego dashboardu:",
|
||||
"yaml_control": "Aby zarządzać w trybie YAML, utwórz plik o nazwie podanej w konfiguracji dla tego dashboardu lub domyślny 'ui-lovelace.yaml'.",
|
||||
@ -2225,7 +2240,7 @@
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Dodaj do interfejsu użytkownika Lovelace",
|
||||
"create_own": "Stwórz swój własny",
|
||||
"create_own": "Wybierz inną kartę",
|
||||
"header": "Stworzyliśmy dla Ciebie sugestię"
|
||||
},
|
||||
"view": {
|
||||
@ -2279,7 +2294,7 @@
|
||||
},
|
||||
"page-authorize": {
|
||||
"abort_intro": "Logowanie przerwane",
|
||||
"authorizing_client": "Czy na pewno chcesz dać dostęp {clientId} do Twojej instancji Home Assistant'a.",
|
||||
"authorizing_client": "Uzyskujesz dostęp do instancji Home Assistant'a w lokalizacji {clientId}.",
|
||||
"form": {
|
||||
"providers": {
|
||||
"command_line": {
|
||||
@ -2287,8 +2302,8 @@
|
||||
"login_expired": "Sesja wygasła, zaloguj się ponownie."
|
||||
},
|
||||
"error": {
|
||||
"invalid_auth": "Nieprawidłowa nazwa użytkownika lub hasło",
|
||||
"invalid_code": "Nieprawidłowy kod uwierzytelniający"
|
||||
"invalid_auth": "Nieprawidłowa nazwa użytkownika lub hasło.",
|
||||
"invalid_code": "Nieprawidłowy kod uwierzytelniający."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
@ -2310,8 +2325,8 @@
|
||||
"login_expired": "Sesja wygasła, zaloguj się ponownie."
|
||||
},
|
||||
"error": {
|
||||
"invalid_auth": "Nieprawidłowa nazwa użytkownika lub hasło",
|
||||
"invalid_code": "Nieprawidłowy kod uwierzytelniający"
|
||||
"invalid_auth": "Nieprawidłowa nazwa użytkownika lub hasło.",
|
||||
"invalid_code": "Nieprawidłowy kod uwierzytelniający."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
@ -2335,14 +2350,14 @@
|
||||
},
|
||||
"error": {
|
||||
"invalid_auth": "Nieprawidłowe hasło API",
|
||||
"invalid_code": "Nieprawidłowy kod uwierzytelniający"
|
||||
"invalid_code": "Nieprawidłowy kod uwierzytelniający."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
"data": {
|
||||
"password": "Hasło API"
|
||||
},
|
||||
"description": "Proszę wprowadzić hasło API w Twoim configu http:"
|
||||
"description": "Proszę wprowadzić hasło API w konfiguracji HTTP:"
|
||||
},
|
||||
"mfa": {
|
||||
"data": {
|
||||
@ -2361,7 +2376,7 @@
|
||||
"data": {
|
||||
"user": "Użytkownik"
|
||||
},
|
||||
"description": "Proszę wybrać użytkownika, na którego chcesz się zalogować:"
|
||||
"description": "Proszę wybrać użytkownika, jako który chcesz się zalogować:"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2482,7 +2497,7 @@
|
||||
"logout_text": "Czy na pewno chcesz się wylogować?",
|
||||
"logout_title": "Wylogować się?",
|
||||
"long_lived_access_tokens": {
|
||||
"confirm_delete": "Na pewno chcesz usunąć token dla {name}?",
|
||||
"confirm_delete": "Czy na pewno chcesz usunąć token dla {name}?",
|
||||
"create": "Utwórz token",
|
||||
"create_failed": "Nie udało się utworzyć tokena.",
|
||||
"created_at": "Utworzony {date}",
|
||||
@ -2504,7 +2519,7 @@
|
||||
"title_success": "Powodzenie!"
|
||||
},
|
||||
"mfa": {
|
||||
"confirm_disable": "Na pewno chcesz wyłączyć {name}?",
|
||||
"confirm_disable": "Czy na pewno chcesz wyłączyć {name}?",
|
||||
"disable": "Wyłącz",
|
||||
"enable": "Włącz",
|
||||
"header": "Moduły uwierzytelniania wieloskładnikowego"
|
||||
@ -2518,7 +2533,7 @@
|
||||
"push_notifications": "Powiadomienia push"
|
||||
},
|
||||
"refresh_tokens": {
|
||||
"confirm_delete": "Na pewno chcesz usunąć token dla {name}?",
|
||||
"confirm_delete": "Czy na pewno chcesz usunąć token dla {name}?",
|
||||
"created_at": "Utworzony {date}",
|
||||
"current_token_tooltip": "Nie można usunąć bieżącego tokena",
|
||||
"delete_failed": "Nie udało się usunąć tokena.",
|
||||
|
@ -14,7 +14,7 @@
|
||||
"panel": {
|
||||
"calendar": "Calendário",
|
||||
"config": "Configurações",
|
||||
"developer_tools": "Ferramentas do desenvolvedor",
|
||||
"developer_tools": "Ferramentas de desenvolvedor",
|
||||
"history": "Histórico",
|
||||
"logbook": "Log de eventos",
|
||||
"mailbox": "Caixa de correio",
|
||||
@ -109,8 +109,8 @@
|
||||
"on": "Conectado"
|
||||
},
|
||||
"default": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado"
|
||||
"off": "Livre",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"door": {
|
||||
"off": "Fechado",
|
||||
@ -121,7 +121,7 @@
|
||||
"on": "Aberto"
|
||||
},
|
||||
"gas": {
|
||||
"off": "Limpo",
|
||||
"off": "Livre",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"heat": {
|
||||
@ -130,18 +130,18 @@
|
||||
},
|
||||
"lock": {
|
||||
"off": "Trancado",
|
||||
"on": "Desbloqueado"
|
||||
"on": "Destrancado"
|
||||
},
|
||||
"moisture": {
|
||||
"off": "Seco",
|
||||
"on": "Molhado"
|
||||
},
|
||||
"motion": {
|
||||
"off": "Desligado",
|
||||
"off": "Livre",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"occupancy": {
|
||||
"off": "Desocupado",
|
||||
"off": "Livre",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"opening": {
|
||||
@ -158,18 +158,18 @@
|
||||
},
|
||||
"safety": {
|
||||
"off": "Seguro",
|
||||
"on": "Não seguro"
|
||||
"on": "Inseguro"
|
||||
},
|
||||
"smoke": {
|
||||
"off": "Limpo",
|
||||
"off": "Livre",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"sound": {
|
||||
"off": "Limpo",
|
||||
"off": "Livre",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"vibration": {
|
||||
"off": "Limpo",
|
||||
"off": "Livre",
|
||||
"on": "Detectado"
|
||||
},
|
||||
"window": {
|
||||
@ -206,6 +206,8 @@
|
||||
"stopped": "Parado"
|
||||
},
|
||||
"default": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado",
|
||||
"unavailable": "Indisponível",
|
||||
"unknown": "Desconhecido"
|
||||
},
|
||||
@ -328,9 +330,9 @@
|
||||
},
|
||||
"ui": {
|
||||
"auth_store": {
|
||||
"ask": "Você quer salvar este login?",
|
||||
"confirm": "Salvar login",
|
||||
"decline": "Não, obrigado"
|
||||
"ask": "Você deseja continuar logado?",
|
||||
"confirm": "Sim",
|
||||
"decline": "Não"
|
||||
},
|
||||
"card": {
|
||||
"alarm_control_panel": {
|
||||
@ -479,7 +481,7 @@
|
||||
"save": "Salvar",
|
||||
"successfully_deleted": "Eliminado com sucesso",
|
||||
"successfully_saved": "Salvo com sucesso",
|
||||
"undo": "Voltar para trás",
|
||||
"undo": "Desfazer",
|
||||
"yes": "Sim"
|
||||
},
|
||||
"components": {
|
||||
@ -520,6 +522,7 @@
|
||||
"entity": "Entidades relacionadas",
|
||||
"group": "Parte dos seguintes grupos",
|
||||
"integration": "Integração",
|
||||
"no_related_found": "Não foram encontrados itens relacionados.",
|
||||
"scene": "Parte das seguintes cenas",
|
||||
"script": "Parte dos seguintes scripts"
|
||||
},
|
||||
@ -543,7 +546,8 @@
|
||||
"config_entry_system_options": {
|
||||
"enable_new_entities_description": "Se desativadas, as entidades recém-descobertas de {integration} não serão automaticamente adicionadas ao Home Assistant.",
|
||||
"enable_new_entities_label": "Habilitar entidades recém-adicionadas.",
|
||||
"title": "Opções do sistema para {integration}"
|
||||
"title": "Opções do sistema para {integration}",
|
||||
"update": "Atualizar"
|
||||
},
|
||||
"domain_toggler": {
|
||||
"title": "Alternar Domínios"
|
||||
@ -553,40 +557,78 @@
|
||||
"dismiss": "Dispensar",
|
||||
"editor": {
|
||||
"confirm_delete": "Tem certeza que você deseja excluir esta entrada?",
|
||||
"delete": "APAGAR",
|
||||
"delete": "Excluir",
|
||||
"enabled_cause": "Desativado por {cause}.",
|
||||
"enabled_description": "Entidades desativadas não serão adicionadas ao Home Assistant.",
|
||||
"enabled_label": "Ativar entidade",
|
||||
"entity_id": "ID da entidade",
|
||||
"icon": "Sobrescrever ícone",
|
||||
"icon_error": "Os ícones devem estar no formato 'prefixo:nome do ícone', ex: 'mdi:home'.",
|
||||
"name": "Sobrescrever nome",
|
||||
"note": "Nota: isso talvez ainda não funcione com todas as integrações.",
|
||||
"unavailable": "Esta entidade não está disponível no momento.",
|
||||
"update": "ATUALIZAR"
|
||||
"update": "Atualizar"
|
||||
},
|
||||
"no_unique_id": "Essa entidade não possui um ID exclusivo; portanto, suas configurações não podem ser gerenciadas a partir da interface do usuário.",
|
||||
"related": "Relacionado",
|
||||
"settings": "Configurações"
|
||||
},
|
||||
"generic": {
|
||||
"cancel": "Cancelar",
|
||||
"close": "fechar",
|
||||
"default_confirmation_title": "Você tem certeza?",
|
||||
"ok": "OK"
|
||||
},
|
||||
"helper_settings": {
|
||||
"generic": {
|
||||
"icon": "Ícone",
|
||||
"name": "Nome"
|
||||
},
|
||||
"input_datetime": {
|
||||
"date": "Data",
|
||||
"datetime": "Data e hora",
|
||||
"mode": "O que você deseja inserir",
|
||||
"time": "Hora"
|
||||
},
|
||||
"input_number": {
|
||||
"step": "Tamanho da etapa"
|
||||
"box": "Campo de entrada",
|
||||
"max": "Valor máximo",
|
||||
"min": "Valor mínimo",
|
||||
"mode": "Modo de exibição",
|
||||
"slider": "Controle deslizante",
|
||||
"step": "Tamanho da etapa",
|
||||
"unit_of_measurement": "Unidade de medida"
|
||||
},
|
||||
"input_select": {
|
||||
"add": "Adicionar",
|
||||
"add_option": "Adicionar opção",
|
||||
"no_options": "Ainda não há opções.",
|
||||
"options": "Opções"
|
||||
},
|
||||
"input_text": {
|
||||
"max": "Comprimento máximo",
|
||||
"min": "Comprimento mínimo"
|
||||
}
|
||||
"min": "Comprimento mínimo",
|
||||
"mode": "Modo de exibição",
|
||||
"password": "Senha",
|
||||
"pattern": "Padrão Regex para validação do lado do cliente",
|
||||
"text": "Texto"
|
||||
},
|
||||
"platform_not_loaded": "A integração {platform} não está carregada. Por favor, adicione sua configuração adicionando 'default_config:' ou '{platform}:'.",
|
||||
"required_error_msg": "Este campo é obrigatório",
|
||||
"yaml_not_editable": "As configurações desta entidade não podem ser editadas a partir da interface do usuário. Somente entidades configuradas a partir da interface do usuário são configuráveis a partir da interface do usuário."
|
||||
},
|
||||
"more_info_control": {
|
||||
"dismiss": "Dispensar diálogo",
|
||||
"edit": "Editar entidade",
|
||||
"person": {
|
||||
"create_zone": "Criar zona a partir da localização atual"
|
||||
},
|
||||
"restored": {
|
||||
"confirm_remove_text": "Tem certeza de que deseja remover esta entidade?",
|
||||
"confirm_remove_title": "Remover entidade?",
|
||||
"remove_action": "Remover entidade"
|
||||
"not_provided": "Esta entidade está atualmente indisponível e é um órfã de uma integração ou dispositivo removido, alterado ou disfuncional.",
|
||||
"remove_action": "Remover entidade",
|
||||
"remove_intro": "Se a entidade não estiver mais em uso, você pode limpá-la removendo-a."
|
||||
},
|
||||
"script": {
|
||||
"last_action": "Última Ação",
|
||||
@ -615,9 +657,14 @@
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"deserialize": "Tentativa de analisar mensagens MQTT como JSON",
|
||||
"entities": "Entidades",
|
||||
"no_entities": "Nenhuma entidade",
|
||||
"no_triggers": "Nenhum gatilhos",
|
||||
"payload_display": "Exibição de carga",
|
||||
"recent_messages": "{n} mensagem (s) recebida (s) mais recentemente",
|
||||
"recent_messages": "{n} mensagem(ns) recebida(s) mais recentemente",
|
||||
"show_as_yaml": "Mostrar como YAML",
|
||||
"title": "Informação de depuração do {device}",
|
||||
"triggers": "Gatilhos"
|
||||
},
|
||||
"options_flow": {
|
||||
@ -640,11 +687,13 @@
|
||||
"buttons": {
|
||||
"add": "Adicionar Dispositivos",
|
||||
"reconfigure": "Reconfigurar O Dispositivo",
|
||||
"remove": "Remover dispositivo"
|
||||
"remove": "Remover dispositivo",
|
||||
"zigbee_information": "Informações sobre o Zigbee"
|
||||
},
|
||||
"confirmations": {
|
||||
"remove": "Tem a certeza que quer remover o dispositivo?"
|
||||
},
|
||||
"device_signature": "Assinatura do dispositivo Zigbee",
|
||||
"last_seen": "Visto pela última vez",
|
||||
"manuf": "por {manufacturer}",
|
||||
"no_area": "Sem área",
|
||||
@ -653,7 +702,8 @@
|
||||
"services": {
|
||||
"reconfigure": "Reconfigure o dispositivo ZHA (curar dispositivo). Use isto se você estiver tendo problemas com o dispositivo. Se o dispositivo em questão for um dispositivo alimentado por bateria, certifique-se de que ele esteja ativo e aceitando comandos ao usar esse serviço.",
|
||||
"remove": "Remove um dispositivo da rede Zigbee.",
|
||||
"updateDeviceName": "Definir um nome personalizado para este dispositivo no registro de dispositivos."
|
||||
"updateDeviceName": "Definir um nome personalizado para este dispositivo no registro de dispositivos.",
|
||||
"zigbee_information": "Veja as informações Zigbee do dispositivo."
|
||||
},
|
||||
"unknown": "Desconhecido",
|
||||
"zha_device_card": {
|
||||
@ -693,26 +743,33 @@
|
||||
"link_profile_page": "sua página de perfil"
|
||||
},
|
||||
"areas": {
|
||||
"caption": "Registro de Áreas",
|
||||
"caption": "Áreas",
|
||||
"data_table": {
|
||||
"area": "Área",
|
||||
"devices": "Dispositivos"
|
||||
},
|
||||
"delete": {
|
||||
"confirmation_text": "Todos os dispositivos nesta área ficarão sem designação.",
|
||||
"confirmation_title": "Tem certeza de que deseja excluir esta zona?"
|
||||
},
|
||||
"description": "Visão geral de todas as áreas da sua casa.",
|
||||
"editor": {
|
||||
"create": "CRIAR",
|
||||
"delete": "APAGAR",
|
||||
"update": "ATUALIZAR"
|
||||
"create": "Criar",
|
||||
"default_name": "Nova Zona",
|
||||
"delete": "Excluir",
|
||||
"update": "Atualizar"
|
||||
},
|
||||
"picker": {
|
||||
"header": "Registro de Áreas",
|
||||
"create_area": "Criar Zona",
|
||||
"header": "Registro de Zona",
|
||||
"integrations_page": "Página de integrações",
|
||||
"introduction": "Áreas são usadas para organizar os dispositivos. Essas informações serão usadas no Home Assistant para ajudá-lo a organizar sua interface, permissões e integrações com outros sistemas.",
|
||||
"introduction2": "Para colocar dispositivos em uma área, use o link abaixo para navegar até a página de integrações e, em seguida, clique em uma integração configurada para acessar os cartões de dispositivos."
|
||||
"introduction2": "Para colocar dispositivos em uma área, use o link abaixo para navegar até a página de integrações e, em seguida, clique em uma integração configurada para acessar os cartões de dispositivos.",
|
||||
"no_areas": "Parece que você ainda não tem áreas!"
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
"caption": "Automação",
|
||||
"caption": "Automações",
|
||||
"description": "Criar e editar automações",
|
||||
"editor": {
|
||||
"actions": {
|
||||
@ -766,7 +823,7 @@
|
||||
"delete_confirm": "Tem certeza que deseja excluir?",
|
||||
"duplicate": "Duplicar",
|
||||
"header": "Condições",
|
||||
"introduction": "As condições são uma parte opcional de uma regra de automação e podem ser usadas para impedir que uma ação aconteça quando acionada. As condições parecem muito semelhantes aos gatilhos, mas são muito diferentes. Um gatilho analisará os eventos que estão ocorrendo no sistema, enquanto uma condição apenas analisa a aparência do sistema no momento. Um disparador pode observar que um comutador está sendo ligado. Uma condição só pode ver se um interruptor está atualmente ativado ou desativado.",
|
||||
"introduction": "Condições são opcionais e impedirão a continuação da execução, a menos que todas as condições sejam satisfeitas.",
|
||||
"learn_more": "Saiba mais sobre condições",
|
||||
"name": "Condição",
|
||||
"type_select": "Tipo de Condição",
|
||||
@ -828,13 +885,14 @@
|
||||
},
|
||||
"edit_ui": "Editar com interface",
|
||||
"edit_yaml": "Editar como YAML",
|
||||
"enable_disable": "Ativar / desativar automação",
|
||||
"introduction": "Use automações para trazer vida à sua casa",
|
||||
"load_error_not_editable": "Somente automações em automations.yaml são editáveis.",
|
||||
"load_error_unknown": "Erro ao carregar a automação ({err_no}).",
|
||||
"save": "Salvar",
|
||||
"triggers": {
|
||||
"add": "Adicionar gatilho",
|
||||
"delete": "Apagar",
|
||||
"delete": "Excluir",
|
||||
"delete_confirm": "Tem certeza que deseja excluir?",
|
||||
"duplicate": "Duplicar",
|
||||
"header": "Gatilhos",
|
||||
@ -974,6 +1032,7 @@
|
||||
"manage_entities": "Gerenciar Entidades",
|
||||
"security_devices": "Dispositivos de Segurança",
|
||||
"sync_entities": "Sincronizar entidades com o Google",
|
||||
"sync_entities_404_message": "Falha ao sincronizar suas entidades com o Google, peça ao Google 'Ei, Google, sincronize meus dispositivos' para sincronizar suas entidades.",
|
||||
"title": "Google Assistant"
|
||||
},
|
||||
"integrations": "Integrações",
|
||||
@ -1104,7 +1163,7 @@
|
||||
},
|
||||
"core": {
|
||||
"caption": "Geral",
|
||||
"description": "Valide seu arquivo de configuração e controle o servidor",
|
||||
"description": "Alterar a configuração geral do Home Assistant",
|
||||
"section": {
|
||||
"core": {
|
||||
"core_config": {
|
||||
@ -1173,7 +1232,8 @@
|
||||
"device": "Dispositivo",
|
||||
"integration": "Integração",
|
||||
"manufacturer": "Fabricante",
|
||||
"model": "Modelo"
|
||||
"model": "Modelo",
|
||||
"no_devices": "Nenhum dispositivo"
|
||||
},
|
||||
"delete": "Eliminar",
|
||||
"description": "Gerenciar dispositivos conectados",
|
||||
@ -1218,6 +1278,7 @@
|
||||
"filter": {
|
||||
"filter": "Filtro",
|
||||
"show_disabled": "Mostrar entidades desativadas",
|
||||
"show_readonly": "Mostrar entidades somente de leitura",
|
||||
"show_unavailable": "Mostrar entidades indisponíveis"
|
||||
},
|
||||
"header": "Registro de Entidades",
|
||||
@ -1231,13 +1292,17 @@
|
||||
"introduction2": "Use o registro da entidade para sobrescrever o nome, alterar o ID da entidade ou remover a entrada do Home Assistant. Observe que a remoção do registro de entidade não removerá a entidade totalmente. Para fazer isso, siga o link abaixo e remova-o da página de integrações.",
|
||||
"remove_selected": {
|
||||
"button": "Remover selecionado",
|
||||
"confirm_text": "Entidades só podem ser removidas quando a integração não estiver mais fornecendo as entidades.",
|
||||
"confirm_partly_text": "Você só pode remover {removable} das {selected} entidades selecionadas. As entidades só podem ser removidas quando a integração não for mais fornecida pelas entidades. Às vezes, você tem que reiniciar o Home Assistant antes de remover as entidades de uma integração removida. Tem certeza de que deseja remover as entidades removíveis?",
|
||||
"confirm_partly_title": "Somente {number} entidades selecionadas podem ser removidas.",
|
||||
"confirm_text": "Você deve removê-los de sua configuração Lovelace e automatizações se eles contiverem essas entidades.",
|
||||
"confirm_title": "Deseja remover {number} entidades?"
|
||||
},
|
||||
"selected": "{number} selecionado",
|
||||
"status": {
|
||||
"disabled": "Desativado",
|
||||
"ok": "Ok",
|
||||
"readonly": "Somente de leitura",
|
||||
"restored": "Restaurado",
|
||||
"unavailable": "Indisponível"
|
||||
}
|
||||
}
|
||||
@ -1247,14 +1312,42 @@
|
||||
"filtering_by": "Filtrando por"
|
||||
},
|
||||
"header": "Configurar o Home Assistant",
|
||||
"helpers": {
|
||||
"caption": "Ajudantes",
|
||||
"description": "Elementos que podem ajudar a construir automações.",
|
||||
"dialog": {
|
||||
"add_helper": "Adicionar ajudante",
|
||||
"add_platform": "Adicionar {plataform}",
|
||||
"create": "Criar"
|
||||
},
|
||||
"picker": {
|
||||
"add_helper": "Adicionar ajudante",
|
||||
"headers": {
|
||||
"editable": "Editável",
|
||||
"entity_id": "ID da entidade",
|
||||
"name": "Nome",
|
||||
"type": "Tipo"
|
||||
}
|
||||
},
|
||||
"types": {
|
||||
"input_boolean": "Alternar",
|
||||
"input_datetime": "Data e/ou hora",
|
||||
"input_number": "Número",
|
||||
"input_select": "Dropdown",
|
||||
"input_text": "Texto"
|
||||
}
|
||||
},
|
||||
"integrations": {
|
||||
"add_integration": "Adicionar integração",
|
||||
"caption": "Integrações",
|
||||
"config_entry": {
|
||||
"area": "Em {area}",
|
||||
"delete": "Excluir",
|
||||
"delete_button": "Excluir {integration}",
|
||||
"delete_confirm": "Tem certeza de que deseja excluir essa integração?",
|
||||
"device_unavailable": "dispositivo indisponível",
|
||||
"devices": "{count} {count, plural,\none {dispositivo}\nother {dispositivos}\n}",
|
||||
"entities": "{count} {count, plural,\none {entidade}\nother {entidades}\n}",
|
||||
"entity_unavailable": "entidade indisponível",
|
||||
"firmware": "Firmware: {version}",
|
||||
"hub": "Conectado via",
|
||||
@ -1262,8 +1355,11 @@
|
||||
"no_area": "Sem área",
|
||||
"no_device": "Entidades sem dispositivos",
|
||||
"no_devices": "Esta integração não possui dispositivos.",
|
||||
"options": "Opções",
|
||||
"rename": "Renomear",
|
||||
"restart_confirm": "Reinicie o Home Assistant para concluir a remoção dessa integração",
|
||||
"settings_button": "Editar configurações para {integration}",
|
||||
"system_options": "Opções do sistema",
|
||||
"system_options_button": "Opções do sistema para {integration}"
|
||||
},
|
||||
"config_flow": {
|
||||
@ -1283,14 +1379,14 @@
|
||||
},
|
||||
"configure": "Configurar",
|
||||
"configured": "Configurado",
|
||||
"description": "Gerenciar integrações e serviços conectados",
|
||||
"description": "Gerenciar e configurar integrações",
|
||||
"details": "Detalhes da integração",
|
||||
"discovered": "Descoberto",
|
||||
"home_assistant_website": "Site do Home Assistant",
|
||||
"ignore": {
|
||||
"confirm_delete_ignore": "Isso fará com que a integração apareça novamente nas suas integrações descobertas quando ela for descoberta. Isso pode exigir uma reinicialização ou levar algum tempo.",
|
||||
"confirm_delete_ignore_title": "Deixar de ignorar {name}?",
|
||||
"confirm_ignore": "Temcerteza que não deseja configurar esta integração? Você pode desfazer isso clicando em 'Mostrar integrações ignoradas' no menu no canto superior esquerdo.",
|
||||
"confirm_ignore": "Tem certeza que não deseja configurar esta integração? Você pode desfazer isso clicando em 'Mostrar integrações ignoradas' no menu no canto superior direito.",
|
||||
"confirm_ignore_title": "Ignorar o descobrimento de {name}?",
|
||||
"hide_ignored": "Esconder integrações ignoradas",
|
||||
"ignore": "Ignorar",
|
||||
@ -1301,23 +1397,91 @@
|
||||
"integration": "integração",
|
||||
"integration_not_found": "Integração não encontrada.",
|
||||
"new": "Configurar uma nova integração",
|
||||
"no_integrations": "Parece que você ainda não possui integrações configuradas. Clique no botão abaixo para adicionar sua primeira integração!",
|
||||
"none": "Nada configurado ainda",
|
||||
"none_found": "Nenhuma integração encontrada",
|
||||
"none_found_detail": "Ajuste seu critério de pesquisa.",
|
||||
"note_about_integrations": "Nem todas as integrações podem ser configuradas via interface do usuário ainda.",
|
||||
"note_about_website_reference": "Existem mais disponíveis no "
|
||||
"note_about_website_reference": "Existem mais disponíveis no ",
|
||||
"rename_dialog": "Edite o nome desta entrada de configuração",
|
||||
"rename_input_label": "Nome da entrada"
|
||||
},
|
||||
"introduction": "Aqui é possível configurar seus componentes e Home Assistant. Nem tudo é possível configurar via UI, mas estamos trabalhando nisso.",
|
||||
"lovelace": {
|
||||
"caption": "Painéis Lovelace",
|
||||
"dashboards": {
|
||||
"cant_edit_default": "O painel padrão do Lovelace não pode ser editado a partir da UI. Você pode ocultá-lo definindo outro painel como padrão.",
|
||||
"cant_edit_yaml": "Os painéis definidos no YAML não podem ser editados a partir da UI. Altere-os em configuration.yaml.",
|
||||
"caption": "Painéis",
|
||||
"conf_mode": {
|
||||
"storage": "Controlado via Interface",
|
||||
"yaml": "Arquivo YAML"
|
||||
},
|
||||
"confirm_delete": "Tem certeza de que deseja excluir este painel?",
|
||||
"default_dashboard": "Este é o painel de instrumentos padrão",
|
||||
"detail": {
|
||||
"create": "Criar",
|
||||
"delete": "Excluir",
|
||||
"dismiss": "Fechar",
|
||||
"edit_dashboard": "Editar painel",
|
||||
"icon": "Ícone",
|
||||
"title": "Título"
|
||||
"new_dashboard": "Adicionar novo painel",
|
||||
"remove_default": "Remover como padrão neste dispositivo",
|
||||
"require_admin": "Apenas administrador",
|
||||
"set_default": "Definir como padrão neste dispositivo",
|
||||
"show_sidebar": "Mostrar na barra lateral",
|
||||
"title": "Título",
|
||||
"title_required": "Título é obrigatório.",
|
||||
"update": "Atualizar",
|
||||
"url": "URL",
|
||||
"url_error_msg": "A URL deve conter um - e não pode conter espaços ou caracteres especiais, exceto _ e -"
|
||||
},
|
||||
"picker": {
|
||||
"add_dashboard": "Adicionar painel",
|
||||
"headers": {
|
||||
"conf_mode": "Método de configuração",
|
||||
"default": "Padrão",
|
||||
"filename": "Nome do arquivo",
|
||||
"require_admin": "Apenas administrador",
|
||||
"sidebar": "Mostrar na barra lateral",
|
||||
"title": "Título"
|
||||
},
|
||||
"open": "Aberto"
|
||||
}
|
||||
},
|
||||
"description": "Configure seus painéis Lovelace",
|
||||
"resources": {
|
||||
"cant_edit_yaml": "Você está usando o Lovelace no modo YAML, portanto, não é possível gerenciar seus recursos por meio da interface do usuário. Gerencie-os por meio do arquivo configuration.yaml.",
|
||||
"caption": "Recursos",
|
||||
"confirm_delete": "Tem certeza de que deseja excluir este recurso?",
|
||||
"detail": {
|
||||
"create": "Criar",
|
||||
"delete": "Excluir",
|
||||
"dismiss": "Fechar",
|
||||
"new_resource": "Adicionar novo recurso",
|
||||
"type": "Tipo de recurso",
|
||||
"update": "Atualizar",
|
||||
"url": "URL",
|
||||
"url_error_msg": "URL é um campo obrigatório",
|
||||
"warning_header": "Seja cauteloso!",
|
||||
"warning_text": "Adicionar recursos pode ser perigoso, certifique-se de saber a origem do recurso e confie neles. Recursos ruins podem prejudicar seriamente seu sistema."
|
||||
},
|
||||
"picker": {
|
||||
"add_resource": "Adicionar recurso",
|
||||
"headers": {
|
||||
"type": "Tipo",
|
||||
"url": "URL"
|
||||
},
|
||||
"no_resources": "Nenhum recurso"
|
||||
},
|
||||
"refresh_body": "Você precisa atualizar a página para concluir a remoção. Deseja atualizar agora?",
|
||||
"refresh_header": "Deseja atualizar?",
|
||||
"types": {
|
||||
"css": "Folha de estilo",
|
||||
"html": "HTML (descontinuado)",
|
||||
"js": "Arquivo JavaScript (descontinuado)",
|
||||
"module": "Módulo JavaScript"
|
||||
}
|
||||
}
|
||||
},
|
||||
"person": {
|
||||
@ -1425,10 +1589,10 @@
|
||||
"section": {
|
||||
"reloading": {
|
||||
"automation": "Recarregar as automações",
|
||||
"core": "Recarregar o Core",
|
||||
"core": "Recarregar localização & customizações",
|
||||
"group": "Recarregar os grupos",
|
||||
"heading": "Recarregando a configuração",
|
||||
"introduction": "Algumas partes do Home Assistant podem ser recarregadas sem a necessidade de reiniciar. Pressionar recarregar descarregará sua configuração atual e carregará a nova.",
|
||||
"heading": "Recarregando a configuração YAML",
|
||||
"introduction": "Algumas partes do Home Assistant podem ser recarregadas sem a necessidade de reiniciar. Pressionar recarregar, descarregará sua configuração YAML atual e carregará a nova.",
|
||||
"person": "Recarregar pessoas",
|
||||
"scene": "Recarregar cenas",
|
||||
"script": "Recarregar os scripts",
|
||||
@ -1519,7 +1683,8 @@
|
||||
},
|
||||
"clusters": {
|
||||
"header": "Clusters",
|
||||
"help_cluster_dropdown": "Selecione um cluster para visualizar atributos e comandos."
|
||||
"help_cluster_dropdown": "Selecione um cluster para visualizar atributos e comandos.",
|
||||
"introduction": "Clusters são os blocos de construção da funcionalidade do Zigbee. Eles separam a funcionalidade em unidades lógicas. Existem tipos de cliente e servidor e são compostos por atributos e comandos."
|
||||
},
|
||||
"common": {
|
||||
"add_devices": "Adicionar Dispositivos",
|
||||
@ -1544,14 +1709,34 @@
|
||||
"unbind_button_label": "Desvincular grupo"
|
||||
},
|
||||
"groups": {
|
||||
"add_members": "Adicionar membros",
|
||||
"adding_members": "Adicionando membros",
|
||||
"caption": "Grupos",
|
||||
"create": "Criar grupo",
|
||||
"create_group": "Zigbee Automação Residencial - Criar Grupo",
|
||||
"create_group_details": "Digite os detalhes necessários para criar um grupo Zigbee",
|
||||
"creating_group": "Criando grupo",
|
||||
"description": "Criar e modificar grupos Zigbee",
|
||||
"group_details": "Aqui estão todos os detalhes do grupo Zigbee selecionado.",
|
||||
"group_id": "ID do grupo",
|
||||
"group_info": "Informações do grupo",
|
||||
"group_name_placeholder": "Nome do grupo",
|
||||
"group_not_found": "Grupo não encontrado!",
|
||||
"group-header": "Zigbee Home Automation - Detalhes do Grupo",
|
||||
"groups": "Grupos",
|
||||
"groups-header": "Zigbee Home Automation - Gerenciamento de grupos",
|
||||
"header": "Zigbee Automação Residencial - Gestão de Grupo",
|
||||
"introduction": "Criar e modificar grupos Zigbee",
|
||||
"manage_groups": "Gerenciar grupos Zigbee",
|
||||
"members": "Membros",
|
||||
"remove_groups": "Remover grupos",
|
||||
"remove_members": "Remover membros",
|
||||
"removing_groups": "Removendo grupos",
|
||||
"removing_members": "Removendo membros",
|
||||
"zha_zigbee_groups": "Grupos ZHA Zigbee"
|
||||
},
|
||||
"header": "Configurar o Zigbee Home Automation",
|
||||
"introduction": "Aqui é possível configurar o componente ZHA. Ainda não é possível configurar tudo a partir da interface do usuário, mas estamos trabalhando nisso.",
|
||||
"network_management": {
|
||||
"header": "Gerenciamento de Rede",
|
||||
"introduction": "Comandos que afetam toda a rede"
|
||||
@ -1562,7 +1747,8 @@
|
||||
"hint_battery_devices": "Nota: Os dispositivos sonolentos (alimentados por bateria) precisam estar ativos ao executar comandos contra eles. Geralmente, você pode ativar um dispositivo sonolento acionando-o.",
|
||||
"hint_wakeup": "Alguns dispositivos, como sensores Xiaomi, têm um botão de despertar que você pode pressionar em intervalos de ~5 segundos que mantêm os dispositivos acordados enquanto interage com eles.",
|
||||
"introduction": "Execute comandos ZHA que afetam um único dispositivo. Escolha um dispositivo para ver uma lista dos comandos disponíveis."
|
||||
}
|
||||
},
|
||||
"title": "Zigbee Home Automation"
|
||||
},
|
||||
"zone": {
|
||||
"add_zone": "Adicionar Zona",
|
||||
@ -1586,7 +1772,10 @@
|
||||
"required_error_msg": "Este campo é obrigatório",
|
||||
"update": "Atualizar"
|
||||
},
|
||||
"edit_home_zone": "A localização da sua casa pode ser alterada nas configurações gerais",
|
||||
"edit_home_zone": "O raio da zona \"Casa\" ainda não pode ser editado a partir do frontend. Arraste o marcador no mapa para mover a zona de origem.",
|
||||
"edit_home_zone_narrow": "O raio da zona Casa ainda não pode ser editado a partir do frontend. A localização pode ser alterada a partir da configuração geral.",
|
||||
"go_to_core_config": "Ir para configuração geral?",
|
||||
"home_zone_core_config": "A localização da sua zona Casa é editável na página de configuração geral. O raio da zona inicial ainda não pode ser editado a partir do frontend. Deseja ir para a configuração geral?",
|
||||
"introduction": "As zonas permitem especificar determinadas regiões da Terra. Quando uma pessoa está dentro de uma zona, o estado assume o nome da zona. As zonas também podem ser usadas como gatilho ou condição nas configurações de automações.",
|
||||
"no_zones_created_yet": "Parece que você ainda não criou nenhuma zona."
|
||||
},
|
||||
@ -1786,7 +1975,8 @@
|
||||
"url": "Abrir janela para {url_path}"
|
||||
},
|
||||
"safe-mode": {
|
||||
"description": "O Home Assistant teve problemas ao carregar sua configuração e agora está sendo executado no modo de segurança. Dê uma olhada no log de erros para ver o que deu errado."
|
||||
"description": "O Home Assistant teve problemas ao carregar sua configuração e agora está sendo executado no modo de segurança. Dê uma olhada no log de erros para ver o que deu errado.",
|
||||
"header": "Modo de segurança ativado"
|
||||
},
|
||||
"shopping-list": {
|
||||
"add_item": "Adicionar item",
|
||||
@ -1795,34 +1985,51 @@
|
||||
}
|
||||
},
|
||||
"changed_toast": {
|
||||
"message": "A configuração do Lovelace foi atualizada, você gostaria de recarregar?",
|
||||
"message": "A configuração da Interface Lovelace foi atualizada, você gostaria de recarregar para ver as modificações?",
|
||||
"refresh": "Atualizar"
|
||||
},
|
||||
"editor": {
|
||||
"card": {
|
||||
"alarm-panel": {
|
||||
"available_states": "Estados Disponíveis",
|
||||
"description": "O cartão Painel de alarme permite que você arme e desarme as integrações do painel de controle de alarme.",
|
||||
"name": "Painel de Alarme"
|
||||
},
|
||||
"button": {
|
||||
"description": "O cartão Botão permite adicionar botões para executar tarefas.",
|
||||
"name": "Botão"
|
||||
},
|
||||
"conditional": {
|
||||
"name": "Condicional"
|
||||
"card": "Cartão",
|
||||
"change_type": "Alterar tipo",
|
||||
"condition_explanation": "O cartão será exibido quando TODAS as condições abaixo forem cumpridas.",
|
||||
"conditions": "Condições",
|
||||
"current_state": "atual",
|
||||
"description": "O cartão Condicional exibe outro cartão com base nos estados de entidades.",
|
||||
"name": "Condicional",
|
||||
"state_equal": "Estado é igual a",
|
||||
"state_not_equal": "Estado não é igual a"
|
||||
},
|
||||
"config": {
|
||||
"optional": "Opcional",
|
||||
"required": "Obrigatório"
|
||||
},
|
||||
"entities": {
|
||||
"description": "O cartão das Entidades é o tipo de cartão mais comum. Ele agrupa os itens em listas.",
|
||||
"name": "Entidades",
|
||||
"show_header_toggle": "Mostrar Alternador do Cabeçalho?",
|
||||
"toggle": "Alternar entidades."
|
||||
},
|
||||
"entity-filter": {
|
||||
"description": "O cartão Filtro de Entidade permite definir uma lista de entidades que você quer ver apenas quando em um determinado estado.",
|
||||
"name": "Entidade Filtro"
|
||||
},
|
||||
"entity": {
|
||||
"description": "O cartão Entidade fornece uma visão rápida do estado de uma entidade.",
|
||||
"name": "Entidade"
|
||||
},
|
||||
"gauge": {
|
||||
"description": "O cartão Medidor é um cartão básico que permite ver visualmente os dados de um sensor.",
|
||||
"name": "Indicador",
|
||||
"severity": {
|
||||
"define": "Definir gravidade?",
|
||||
@ -1844,6 +2051,8 @@
|
||||
"icon": "Ícone",
|
||||
"icon_height": "Altura do ícone",
|
||||
"image": "Caminho da imagem",
|
||||
"manual": "Manual",
|
||||
"manual_description": "Precisa adicionar um cartão personalizado ou apenas escrever manualmente o yaml?",
|
||||
"maximum": "Máximo",
|
||||
"minimum": "Mínimo",
|
||||
"name": "Nome",
|
||||
@ -1852,6 +2061,7 @@
|
||||
"show_icon": "Mostrar Icone?",
|
||||
"show_name": "Mostrar nome?",
|
||||
"show_state": "Mostrar Estado?",
|
||||
"state": "Estado",
|
||||
"tap_action": "Ação de toque",
|
||||
"theme": "Tema",
|
||||
"title": "Título",
|
||||
@ -1860,23 +2070,29 @@
|
||||
},
|
||||
"glance": {
|
||||
"columns": "Colunas",
|
||||
"description": "O cartão Relance é útil para agrupar vários sensores em uma visão compacta.",
|
||||
"name": "Relance"
|
||||
},
|
||||
"history-graph": {
|
||||
"description": "O cartão Gráfico Histórico permite exibir um gráfico para cada uma das entidades listadas.",
|
||||
"name": "Gráfico de histórico"
|
||||
},
|
||||
"horizontal-stack": {
|
||||
"description": "O cartão Pilha Horizontal permite empilhar vários cartões, para que eles sempre fiquem próximos um do outro no espaço de uma coluna.",
|
||||
"name": "Pilha horizontal"
|
||||
},
|
||||
"iframe": {
|
||||
"name": "iFrame"
|
||||
"description": "O cartão de Página Web permite incorporar sua página web favorita diretamente no Home Assistant.",
|
||||
"name": "Página Web"
|
||||
},
|
||||
"light": {
|
||||
"description": "O cartão Luz permite mudar a luminosidade da luz.",
|
||||
"name": "Luz"
|
||||
},
|
||||
"map": {
|
||||
"dark_mode": "Modo escuro?",
|
||||
"default_zoom": "Zoom padrão",
|
||||
"description": "O cartão Mapa permite visualizar entidades num mapa.",
|
||||
"geo_location_sources": "Fontes de geolocalização",
|
||||
"hours_to_show": "Horas a Mostrar",
|
||||
"name": "Mapa",
|
||||
@ -1884,42 +2100,54 @@
|
||||
},
|
||||
"markdown": {
|
||||
"content": "Conteúdo",
|
||||
"description": "O cartão Markdown é usado para renderizar Markdown.",
|
||||
"name": "Markdown"
|
||||
},
|
||||
"media-control": {
|
||||
"description": "O cartão Controle de Mídia é usado para exibir entidades reprodutores de mídia em uma interface com controles fáceis de usar.",
|
||||
"name": "Controle de Mídia"
|
||||
},
|
||||
"picture-elements": {
|
||||
"description": "O cartão Elementos de Imagem é um dos tipos de cartões mais versáteis. Ele permite que você posicione ícones, texto e até serviços em uma imagem usando coordenadas.",
|
||||
"name": "Elementos de Imagem"
|
||||
},
|
||||
"picture-entity": {
|
||||
"description": "O cartão Entidade de Imagem exibe uma entidade na forma de uma imagem. Em vez de imagens de URL, ele também pode mostrar a imagem de entidades de câmera.",
|
||||
"name": "Entidade Imagem"
|
||||
},
|
||||
"picture-glance": {
|
||||
"description": "O cartão Imagem de Relance mostra uma imagem e estados correspondentes da entidade como um ícone. As entidades do lado direito permitem alternar ações, outras mostram diálogo com mais informações.",
|
||||
"name": "Relance de Imagem"
|
||||
},
|
||||
"picture": {
|
||||
"description": "O cartão Imagem permite que você defina uma imagem para navegar em sua interface ou para chamar um serviço.",
|
||||
"name": "Imagem"
|
||||
},
|
||||
"plant-status": {
|
||||
"description": "O cartão Estado de Plantas é para todos os botânicos adoráveis por aí.",
|
||||
"name": "Estado da planta"
|
||||
},
|
||||
"sensor": {
|
||||
"description": "O cartão Sensor oferece uma visão rápida do estado de seus sensores com um gráfico opcional para visualizar a mudança ao longo do tempo.",
|
||||
"graph_detail": "Detalhe do gráfico",
|
||||
"graph_type": "Tipo de gráfico",
|
||||
"name": "Sensor"
|
||||
},
|
||||
"shopping-list": {
|
||||
"description": "O cartão da Lista de Compras permite adicionar, editar, fazer check-off e limpar itens da sua lista de compras.",
|
||||
"integration_not_loaded": "Este cartão requer que a integração `shopping_list` tenha sido configurada.",
|
||||
"name": "Lista de compras"
|
||||
},
|
||||
"thermostat": {
|
||||
"description": "O cartão Termostato fornece controle da sua entidade climática. Permite alterar a temperatura e o modo da entidade.",
|
||||
"name": "Termostato"
|
||||
},
|
||||
"vertical-stack": {
|
||||
"description": "O cartão Pilha vertical permite agrupar vários cartões para que eles sempre fiquem na mesma coluna.",
|
||||
"name": "Pilha vertical"
|
||||
},
|
||||
"weather-forecast": {
|
||||
"description": "O cartão Previsão do tempo exibe o clima. Muito útil para incluir nas interfaces que as pessoas exibem na parede.",
|
||||
"name": "Previsão do Tempo"
|
||||
}
|
||||
},
|
||||
@ -1929,11 +2157,11 @@
|
||||
},
|
||||
"edit_card": {
|
||||
"add": "Adicionar Cartão",
|
||||
"delete": "Excluir",
|
||||
"delete": "Excluir Cartão",
|
||||
"duplicate": "Duplicar",
|
||||
"edit": "Editar",
|
||||
"header": "Configuração de cartão",
|
||||
"move": "Mover",
|
||||
"move": "Mover para Visualização",
|
||||
"options": "Mais opções",
|
||||
"pick_card": "Qual card você gostaria de adicionar?",
|
||||
"pick_card_view_title": "Qual cartão você gostaria de adicionar à sua visualização {name} ?",
|
||||
@ -1951,52 +2179,64 @@
|
||||
"delete": "Excluir visualização",
|
||||
"edit": "Editar visualização",
|
||||
"header": "Configurações",
|
||||
"header_name": "Ver Configuração de {nome}",
|
||||
"header_name": "Configuração da visualização {nome}",
|
||||
"move_left": "Mover à esquerda",
|
||||
"move_right": "Mover à direita",
|
||||
"tab_badges": "Distintivos",
|
||||
"tab_settings": "Configurações",
|
||||
"tab_visibility": "Visibilidade",
|
||||
"visibility": {
|
||||
"select_users": "Selecione quais usuários devem ver essa visualização na navegação"
|
||||
}
|
||||
},
|
||||
"header": "Editar “interface” do usuário",
|
||||
"menu": {
|
||||
"open": "Abra o menu Lovelace",
|
||||
"open": "Abra o menu da Interface Lovelace",
|
||||
"raw_editor": "Editor de configuração RAW"
|
||||
},
|
||||
"migrate": {
|
||||
"header": "Configuração Incompatível",
|
||||
"migrate": "Migrar configuração",
|
||||
"para_migrate": "O Home Assistant pode adicionar IDs a todos os seus cards e visualizações automaticamente clicando no botão 'Migrar config'.",
|
||||
"para_migrate": "O Home Assistant pode adicionar IDs a todos os seus cards e visualizações automaticamente clicando no botão 'Migrar configuração'.",
|
||||
"para_no_id": "Este elemento não possui um ID. Por favor adicione um ID a este elemento em 'ui-lovelace.yaml'."
|
||||
},
|
||||
"raw_editor": {
|
||||
"confirm_remove_config_text": "Geraremos automaticamente suas visualizações da interface do usuário do Lovelace com suas áreas e dispositivos se você remover a configuração da interface do usuário do Lovelace.",
|
||||
"confirm_remove_config_title": "Tem certeza de que deseja remover a configuração da interface Lovelace? Geraremos automaticamente visualizações da interface Lovelace com suas áreas e dispositivos.",
|
||||
"confirm_unsaved_changes": "Você tem alterações não salvas. Tem certeza de que deseja sair?",
|
||||
"confirm_unsaved_comments": "Sua configuração contém comentários, eles não serão salvos. Você quer continuar?",
|
||||
"confirm_unsaved_comments": "Sua configuração contém comentário(s), eles não serão salvos. Você quer continuar?",
|
||||
"error_invalid_config": "Sua configuração não é válida: {error}",
|
||||
"error_parse_yaml": "Não foi possível analisar o YAML: {error}",
|
||||
"error_remove": "Não foi possível remover a configuração: {error}",
|
||||
"error_save_yaml": "Não foi possível salvar o YAML: {error}",
|
||||
"header": "Editar Configuração",
|
||||
"resources_moved": "Os recursos não devem mais ser adicionados à configuração do Lovelace, mas podem ser adicionados no painel de configuração do Lovelace.",
|
||||
"save": "Salvar",
|
||||
"saved": "Salvo",
|
||||
"unsaved_changes": "Alterações não salvas"
|
||||
},
|
||||
"save_config": {
|
||||
"cancel": "Esquecer",
|
||||
"close": "Fechar",
|
||||
"empty_config": "Comece com um painel de instrumentos vazio",
|
||||
"header": "Assuma o controle da sua interface do Lovelace",
|
||||
"para": "Por padrão, o Home Assistant manterá sua interface de usuário, atualizando-a quando novas entidades ou componentes do Lovelace estiverem disponíveis. Se você assumir o controle, não faremos mais alterações automaticamente para você.",
|
||||
"para": "Este painel está sendo atualmente mantido pelo Home Assistant. É atualizado automaticamente quando novas entidades ou componentes da interface do Lovelace ficam disponíveis. Se você assumir o controle, esse painel não será mais atualizado automaticamente. Alternativamente, você pode criar um novo painel na configuração para brincar.",
|
||||
"para_sure": "Tem certeza de que deseja assumir o controle da sua interface de usuário?",
|
||||
"save": "Assuma o controle"
|
||||
"save": "Assuma o controle",
|
||||
"yaml_config": "Para ajudá-lo a começar, aqui está a configuração atual deste painel:",
|
||||
"yaml_control": "Para assumir o controle no modo YAML, crie um arquivo YAML com o nome que você especificou na sua configuração para este painel ou arquivo padrão 'ui-lovelace.yaml'.",
|
||||
"yaml_mode": "Você está usando o modo YAML para este painel, o que significa que não é possível alterar a configuração do Lovelace na interface. Se você deseja gerenciar esse painel na interface do usuário, remova 'mode: yaml' da configuração do Lovelace em 'configuration.yaml.'"
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Adicionar a UI do Lovelace",
|
||||
"create_own": "Escolha cartão diferente"
|
||||
"create_own": "Escolha cartão diferente",
|
||||
"header": "Criamos uma sugestão para você"
|
||||
},
|
||||
"view": {
|
||||
"panel_mode": {
|
||||
"description": "Isso renderiza o primeiro cartão em largura total; outros cartões nesta visualização não serão renderizados.",
|
||||
"title": "Modo Painel?",
|
||||
"warning_multiple_cards": "Esta vista contém mais do que uma carta, mas uma vista de painel só pode mostrar 1 carta."
|
||||
"warning_multiple_cards": "Esta visualização contém mais de uma cartão, mas uma visualização de modo painel só pode mostrar 1 cartão."
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2008,7 +2248,7 @@
|
||||
"refresh": "Atualizar",
|
||||
"reload_resources": "Recarregar recursos"
|
||||
},
|
||||
"reload_lovelace": "Recarregar Lovelace",
|
||||
"reload_lovelace": "Recarregar Interface Lovelace",
|
||||
"reload_resources": {
|
||||
"refresh_body": "Você precisa atualizar a página para concluir a recarga. Deseja atualizar agora?",
|
||||
"refresh_header": "Deseja atualizar?"
|
||||
@ -2023,12 +2263,16 @@
|
||||
"title": "Entidades não utilizadas"
|
||||
},
|
||||
"views": {
|
||||
"confirm_delete": "Tem certeza de que deseja excluir esta visualização?"
|
||||
"confirm_delete": "Excluir visualização",
|
||||
"confirm_delete_existing_cards": "Eliminar esta visualização vai também remover os cartões",
|
||||
"confirm_delete_existing_cards_text": "Tem certeza de que deseja excluir a visualização '{name}'? Ela contém {number} cartões que serão excluídos. Esta ação não pode ser desfeita.",
|
||||
"confirm_delete_text": "Tem a certeza que quer apagar a visualização '{name}'?"
|
||||
},
|
||||
"warning": {
|
||||
"attribute_not_found": "O atributo {attribute} não está disponível em: {entity}",
|
||||
"entity_non_numeric": "Entidade não é numérica: {entity}",
|
||||
"entity_not_found": "Entidade não disponível: {entity}"
|
||||
"entity_not_found": "Entidade não disponível: {entity}",
|
||||
"entity_unavailable": "{entity} não está disponível"
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
@ -2102,7 +2346,7 @@
|
||||
"data": {
|
||||
"password": "Senha de API"
|
||||
},
|
||||
"description": "Por favor insira a senha da API em sua configuração http:"
|
||||
"description": "Por favor insira a senha da API em sua configuração HTTP:"
|
||||
},
|
||||
"mfa": {
|
||||
"data": {
|
||||
@ -2210,7 +2454,7 @@
|
||||
},
|
||||
"profile": {
|
||||
"advanced_mode": {
|
||||
"description": "O Home Assistant oculta os recursos e opções avançados por padrão. Você pode tornar esses recursos acessíveis marcando essa opção. Essa é uma configuração específica do usuário e não afeta outros usuários usando o Home Assistant.",
|
||||
"description": "Desbloqueia recursos avançados.",
|
||||
"link_promo": "Saiba mais",
|
||||
"title": "Modo Avançado"
|
||||
},
|
||||
@ -2225,8 +2469,8 @@
|
||||
"current_user": "Você está logado como {fullName}.",
|
||||
"dashboard": {
|
||||
"description": "Escolha um painel padrão para este dispositivo.",
|
||||
"dropdown_label": "painel de controle",
|
||||
"header": "painel de controle"
|
||||
"dropdown_label": "Painel de controle",
|
||||
"header": "Painel de controle"
|
||||
},
|
||||
"force_narrow": {
|
||||
"description": "Isto irá ocultar a barra lateral por padrão, semelhante à experiência móvel.",
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Parado"
|
||||
},
|
||||
"default": {
|
||||
"off": "Desligado",
|
||||
"on": "Ligado",
|
||||
"unavailable": "Indisponível",
|
||||
"unknown": "Desconhecido"
|
||||
},
|
||||
@ -411,6 +413,9 @@
|
||||
"script": {
|
||||
"execute": "Executar"
|
||||
},
|
||||
"service": {
|
||||
"run": "Executar"
|
||||
},
|
||||
"timer": {
|
||||
"actions": {
|
||||
"cancel": "Cancelar",
|
||||
@ -472,7 +477,10 @@
|
||||
"close": "Fechar",
|
||||
"delete": "Apagar",
|
||||
"loading": "A carregar",
|
||||
"next": "Seguinte",
|
||||
"no": "Não",
|
||||
"previous": "Anterior",
|
||||
"refresh": "Atualizar",
|
||||
"save": "Guardar",
|
||||
"successfully_deleted": "Eliminado com sucesso",
|
||||
"successfully_saved": "Salva com sucesso",
|
||||
@ -483,15 +491,21 @@
|
||||
"area-picker": {
|
||||
"add_dialog": {
|
||||
"add": "Adicionar",
|
||||
"name": "Nome"
|
||||
"failed_create_area": "Falha ao criar a área.",
|
||||
"name": "Nome",
|
||||
"text": "Introduza o nome da nova área.",
|
||||
"title": "Adicionar nova área"
|
||||
},
|
||||
"add_new": "Adicionar nova área…",
|
||||
"area": "Área",
|
||||
"clear": "Limpar"
|
||||
"clear": "Limpar",
|
||||
"show_areas": "Mostrar áreas"
|
||||
},
|
||||
"device-picker": {
|
||||
"clear": "Apagar",
|
||||
"device": "Dispositivo",
|
||||
"show_devices": "Mostrar dispositivos"
|
||||
"show_devices": "Mostrar dispositivos",
|
||||
"toggle": "Alternar"
|
||||
},
|
||||
"entity": {
|
||||
"entity-picker": {
|
||||
@ -506,8 +520,14 @@
|
||||
},
|
||||
"related-items": {
|
||||
"area": "Área",
|
||||
"automation": "Parte das seguintes automações",
|
||||
"device": "Dispositivo",
|
||||
"integration": "Integração"
|
||||
"entity": "Entidades relacionadas",
|
||||
"group": "Parte dos seguintes grupos",
|
||||
"integration": "Integração",
|
||||
"no_related_found": "Nenhum item relacionado encontrado.",
|
||||
"scene": "Parte dos seguintes cenários",
|
||||
"script": "Parte dos seguintes scripts"
|
||||
},
|
||||
"relative_time": {
|
||||
"duration": {
|
||||
@ -539,15 +559,26 @@
|
||||
"control": "Controle",
|
||||
"dismiss": "Fechar",
|
||||
"editor": {
|
||||
"confirm_delete": "Tem certeza de que deseja apagar esta entrada?",
|
||||
"delete": "Apagar",
|
||||
"enabled_cause": "Desativado por {cause}.",
|
||||
"enabled_description": "Entidades desativadas não serão adicionadas ao Home Assistant.",
|
||||
"enabled_label": "Ativar entidade",
|
||||
"entity_id": "Identificação da entidade",
|
||||
"icon": "Substituição do ícone",
|
||||
"icon_error": "Os ícones devem estar no formato 'prefixo:nome do ícone', por exemplo 'mdi:home'.",
|
||||
"name": "Substituição do nome",
|
||||
"note": "Nota: isto pode ainda não funcionar com todas as integrações.",
|
||||
"unavailable": "Esta entidade não está atualmente disponível.",
|
||||
"update": "Atualizar"
|
||||
},
|
||||
"no_unique_id": "Esta entidade não tem uma identificação única, portanto suas configurações não podem ser geridas a partir da IU.",
|
||||
"related": "Relacionadas",
|
||||
"settings": "Definições"
|
||||
},
|
||||
"generic": {
|
||||
"cancel": "Cancelar",
|
||||
"close": "fechar",
|
||||
"default_confirmation_title": "Tem a certeza?",
|
||||
"ok": "OK"
|
||||
},
|
||||
@ -564,7 +595,9 @@
|
||||
},
|
||||
"input_number": {
|
||||
"box": "Campo de entrada",
|
||||
"max": "Valor máximo",
|
||||
"min": "Valor mínimo",
|
||||
"mode": "Modo de exibição",
|
||||
"step": "Tamanho do passo",
|
||||
"unit_of_measurement": "Unidade de medida"
|
||||
},
|
||||
@ -579,12 +612,19 @@
|
||||
"min": "Comprimento mínimo",
|
||||
"mode": "Modo de exibição",
|
||||
"password": "Palavra-passe",
|
||||
"pattern": "Padrão Regex para validação do lado do cliente",
|
||||
"text": "Texto"
|
||||
},
|
||||
"platform_not_loaded": "A integração {platform} não foi carregada. Por favor, adicione ao ficheiro configuration.yaml, 'default_config:' ou '{platform}:'.",
|
||||
"required_error_msg": "Este campo é obrigatório",
|
||||
"yaml_not_editable": "As configurações desta entidade não podem ser editadas a partir do IU. Apenas as entidades adiccionadas a partir da IU são configuráveis a partir da IU."
|
||||
},
|
||||
"more_info_control": {
|
||||
"dismiss": "Descartar diálogo",
|
||||
"edit": "Editar entidade",
|
||||
"person": {
|
||||
"create_zone": "Criar zona a partir da localização atual"
|
||||
},
|
||||
"restored": {
|
||||
"confirm_remove_text": "Tem a certeza que deseja remover esta entidade?",
|
||||
"confirm_remove_title": "Remover a entidade?",
|
||||
@ -606,7 +646,10 @@
|
||||
"title": "Instruções para atualização"
|
||||
},
|
||||
"vacuum": {
|
||||
"clean_spot": "Limpar ",
|
||||
"commands": "Comandos do aspirador:",
|
||||
"fan_speed": "Velocidade do ventilador",
|
||||
"locate": "Localizar",
|
||||
"pause": "Pausa",
|
||||
"start": "Iniciar",
|
||||
"start_pause": "Iniciar / Pausar",
|
||||
@ -618,7 +661,11 @@
|
||||
"deserialize": "Tentativa de analisar mensagens MQTT como JSON",
|
||||
"entities": "Entidades",
|
||||
"no_entities": "Sem entidades",
|
||||
"no_triggers": "Sem gatilhos",
|
||||
"payload_display": "Exibição de carga",
|
||||
"recent_messages": "{n} mensagem(s) recebida(s) mais recentemente",
|
||||
"show_as_yaml": "Mostrar como YAML",
|
||||
"title": "{device} Informação de depuração",
|
||||
"triggers": "Gatilhos"
|
||||
},
|
||||
"options_flow": {
|
||||
@ -644,12 +691,15 @@
|
||||
"remove": "Remover Dispositivo",
|
||||
"zigbee_information": "Informação Zigbee"
|
||||
},
|
||||
"confirmations": {
|
||||
"remove": "Tem a certeza que deseja remover este dispositivo?"
|
||||
},
|
||||
"device_signature": "Assinatura do dispositivo Zigbee",
|
||||
"last_seen": "Visto pela última vez",
|
||||
"manuf": "por {manufacturer}",
|
||||
"no_area": "Nenhuma Área",
|
||||
"power_source": "Fonte de energia",
|
||||
"quirk": "Capricho",
|
||||
"quirk": "Peculiaridade",
|
||||
"services": {
|
||||
"reconfigure": "Reconfigure o dispositivo ZHA (curar dispositivo). Utilize isto se estiver a ter problemas com o dispositivo. Se o dispositivo em questão for um dispositivo alimentado por uma bateria, ao utilizar este serviço certifique-se de que o equipamento está ativo e a aceitar comandos.",
|
||||
"remove": "Remover um dispositivo da rede Zigbee.",
|
||||
@ -688,6 +738,10 @@
|
||||
"triggered": "Despoletado {name}"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Os meus Calendários",
|
||||
"today": "Hoje"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Falta de opções de configuração? Ativar o modo avançado em",
|
||||
@ -705,7 +759,7 @@
|
||||
},
|
||||
"description": "Visão geral de todas as áreas da sua casa.",
|
||||
"editor": {
|
||||
"create": "CRIAR",
|
||||
"create": "Criar",
|
||||
"default_name": "Nova área",
|
||||
"delete": "APAGAR",
|
||||
"update": "ATUALIZAR"
|
||||
@ -715,7 +769,8 @@
|
||||
"header": "Áreas",
|
||||
"integrations_page": "Página de Integrações",
|
||||
"introduction": "As áreas são utilizadas para organizar os dispositivos. Essas informações serão utilizadas no Home Assistant para o ajudar a organizar o seu interface, permissões e integrações com outros sistemas.",
|
||||
"introduction2": "Para colocar dispositivos numa área, use o link abaixo para navegar até a página de integrações e em seguida, clique numa integração configurada para aceder aos cartões de dispositivos."
|
||||
"introduction2": "Para colocar dispositivos numa área, use o link abaixo para navegar até a página de integrações e em seguida, clique numa integração configurada para aceder aos cartões de dispositivos.",
|
||||
"no_areas": "Parece que ainda não tem áreas!"
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
@ -789,6 +844,9 @@
|
||||
},
|
||||
"label": "Dispositivo"
|
||||
},
|
||||
"not": {
|
||||
"label": "Não"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Acima",
|
||||
"below": "Abaixo",
|
||||
@ -835,6 +893,7 @@
|
||||
},
|
||||
"edit_ui": "Editar com IU",
|
||||
"edit_yaml": "Editar como YAML",
|
||||
"enable_disable": "Habilitar/desabilitar automação",
|
||||
"introduction": "Crie automações para dar vida à sua casa",
|
||||
"load_error_not_editable": "Apenas as automações em automations.yaml são editáveis.",
|
||||
"load_error_unknown": "Erro ao carregar a automação ({err_no}).",
|
||||
@ -1150,7 +1209,8 @@
|
||||
},
|
||||
"warning": {
|
||||
"include_link": "incluir customize.yaml",
|
||||
"include_sentence": "Parece que o seu configuration.yaml não está adequadamente"
|
||||
"include_sentence": "Parece que o seu configuration.yaml não está adequadamente",
|
||||
"not_applied": "As alterações feitas aqui são gravadas nele, mas não serão aplicadas após o carregamento da configuração, a não ser que a inclusão esteja no lugar."
|
||||
}
|
||||
},
|
||||
"devices": {
|
||||
@ -1158,14 +1218,18 @@
|
||||
"actions": {
|
||||
"caption": "Quando alguma coisa é despoletada..."
|
||||
},
|
||||
"automations": "Automações",
|
||||
"conditions": {
|
||||
"caption": "Só fazer alguma coisa se..."
|
||||
},
|
||||
"create": "Criar automação com dispositivo",
|
||||
"no_automations": "Sem automações",
|
||||
"no_device_automations": "Não há automações disponíveis para este dispositivo.",
|
||||
"triggers": {
|
||||
"caption": "Fazer alguma coisa quando..."
|
||||
}
|
||||
},
|
||||
"cant_edit": "Só pode editar itens que são criados na IU.",
|
||||
"caption": "Dispositivos",
|
||||
"confirm_delete": "Tem a certeza que quer apagar este dispositivo?",
|
||||
"confirm_rename_entity_ids": "Deseja também renomear os id's de entidade de suas entidades?",
|
||||
@ -1188,6 +1252,17 @@
|
||||
},
|
||||
"name": "Nome",
|
||||
"no_devices": "Sem dispositivos",
|
||||
"scene": {
|
||||
"create": "Criar cena com o dispositivo",
|
||||
"scenes": "Cenas"
|
||||
},
|
||||
"scenes": "Cenas",
|
||||
"script": {
|
||||
"create": "Criar script com o dispositivo",
|
||||
"no_scripts": "Sem scripts",
|
||||
"scripts": "Scripts"
|
||||
},
|
||||
"scripts": "Scripts",
|
||||
"unknown_error": "Erro desconhecido",
|
||||
"unnamed_device": "Dispositivo sem nome",
|
||||
"update": "Atualizar"
|
||||
@ -1209,6 +1284,7 @@
|
||||
"filter": {
|
||||
"filter": "Filtro",
|
||||
"show_disabled": "Mostrar entidades desativadas",
|
||||
"show_readonly": "Mostrar entidades somente de leitura.",
|
||||
"show_unavailable": "Mostrar entidades indisponíveis"
|
||||
},
|
||||
"header": "Entidades",
|
||||
@ -1221,12 +1297,16 @@
|
||||
"introduction": "O Home Assistant mantém um registo de todas as entidades que foram alguma vez detetadas e que podem ser identificadas de uma forma única. Cada uma dessas entidades terá um ID de entidade atribuído, que será reservado apenas para essa entidade.",
|
||||
"introduction2": "Use o registo da entidade para substituir o nome, alterar o ID da entidade ou remover a entrada do Home Assistant. Note que a remoção da entrada do registo de entidade não removerá a entidade. Para fazer isso, siga o link abaixo e remova-o da página de integrações.",
|
||||
"remove_selected": {
|
||||
"confirm_partly_title": "Somente {número} entidades selecionadas podem ser removidas."
|
||||
"button": "Remover selecionado",
|
||||
"confirm_partly_text": "Você pode remover apenas {removable} das {selected} entidades selecionadas. As entidades só podem ser removidas quando a integração deixar de suportá-las. Por vezes é necessário reiniciar o Home Assistant antes de poder remover as entidades de uma integração removida. Tem a certeza de que deseja remover as entidades removíveis?",
|
||||
"confirm_partly_title": "Somente {número} entidades selecionadas podem ser removidas.",
|
||||
"confirm_title": "Deseja remover {number} entidades?"
|
||||
},
|
||||
"selected": "Selecionou {number}",
|
||||
"status": {
|
||||
"disabled": "Desativado",
|
||||
"ok": "Ok",
|
||||
"readonly": "Somente leitura",
|
||||
"restored": "Restaurado",
|
||||
"unavailable": "Indisponível"
|
||||
}
|
||||
@ -1239,15 +1319,24 @@
|
||||
"header": "Configurar o Home Assistant",
|
||||
"helpers": {
|
||||
"caption": "Auxiliares",
|
||||
"description": "Elementos que podem ajudar a construir automações.",
|
||||
"dialog": {
|
||||
"add_helper": "Adicionar auxiliar",
|
||||
"add_platform": "Adicione {platform}",
|
||||
"create": "Criar"
|
||||
},
|
||||
"picker": {
|
||||
"add_helper": "Adicionar auxiliar",
|
||||
"headers": {
|
||||
"entity_id": "ID da entidade"
|
||||
"editable": "Editável",
|
||||
"entity_id": "ID da entidade",
|
||||
"name": "Nome",
|
||||
"type": "Tipo"
|
||||
}
|
||||
},
|
||||
"types": {
|
||||
"input_boolean": "Interruptor",
|
||||
"input_datetime": "Data e/ou hora",
|
||||
"input_number": "Número",
|
||||
"input_text": "Texto"
|
||||
}
|
||||
@ -1309,34 +1398,59 @@
|
||||
"integration": "Integração",
|
||||
"integration_not_found": "Integração não encontrada.",
|
||||
"new": "Configurar uma nova integração",
|
||||
"no_integrations": "Parece que você ainda não possui integrações configuradas. Clique no botão abaixo para adicionar sua primeira integração!",
|
||||
"no_integrations": "Parece que ainda não possui integrações configuradas. Clique no botão abaixo para adicionar a sua primeira integração!",
|
||||
"none": "Nada configurado ainda",
|
||||
"none_found": "Integrações não encontradas",
|
||||
"none_found_detail": "Ajuste os seus critérios de pesquisa.",
|
||||
"note_about_integrations": "De momento nem todas as integrações podem ser configuradas via UI.",
|
||||
"note_about_website_reference": "Existem mais disponíveis no"
|
||||
"note_about_website_reference": "Existem mais disponíveis no",
|
||||
"rename_dialog": "Edite o nome desta entrada de configuração.",
|
||||
"rename_input_label": "Nome da entrada"
|
||||
},
|
||||
"introduction": "Aqui é possível configurar os seus componentes e o Home Assistant. Nem tudo é possível de ser configurado a partir da Interface Gráfica, mas estamos a trabalhar para isso.",
|
||||
"lovelace": {
|
||||
"caption": "Painéis Lovelace",
|
||||
"dashboards": {
|
||||
"cant_edit_default": "O painel padrão não pode ser editado através do IU. Pode escondê-lo se definir outro painel como padrão.",
|
||||
"cant_edit_yaml": "Os painéis definidos no YAML não podem ser editados a partir da interface do utilizador. Altere-os em configuration.yaml.",
|
||||
"caption": "Dashboards",
|
||||
"conf_mode": {
|
||||
"storage": "Controlado pelo IU",
|
||||
"yaml": "ficheiro YAML"
|
||||
},
|
||||
"confirm_delete": "Tem a certeza que quer apagar este dashboard?",
|
||||
"default_dashboard": "Este é o painel de instrumentos padrão",
|
||||
"detail": {
|
||||
"create": "Criar",
|
||||
"delete": "Apagar",
|
||||
"dismiss": "Fechar",
|
||||
"edit_dashboard": "Editar painel",
|
||||
"icon": "Ícone",
|
||||
"new_dashboard": "Adicionar novo painel",
|
||||
"remove_default": "Remover este dispositivo de painel padrão",
|
||||
"require_admin": "Administrador apenas",
|
||||
"set_default": "Definir este dispositivo como padrão",
|
||||
"show_sidebar": "Mostrar na barra lateral",
|
||||
"title": "Título",
|
||||
"title_required": "O título é obrigatório.",
|
||||
"update": "Atualizar",
|
||||
"url": "Url"
|
||||
"url": "Url",
|
||||
"url_error_msg": "A URL deve conter um - e não pode conter espaços ou caracteres especiais, excepto para _ e -"
|
||||
},
|
||||
"picker": {
|
||||
"add_dashboard": "Adicionar dashboard",
|
||||
"headers": {
|
||||
"conf_mode": "Método de configuração",
|
||||
"default": "Predefinição",
|
||||
"filename": "Nome do ficheiro",
|
||||
"require_admin": "Administrador apenas",
|
||||
"sidebar": "Mostrar na barra lateral",
|
||||
"title": "Título"
|
||||
},
|
||||
"open": "Abrir"
|
||||
}
|
||||
},
|
||||
"description": "Configure os seus Lovelace Dashboards",
|
||||
"resources": {
|
||||
"cant_edit_yaml": "Você está a usar o Lovelace no modo YAML, portanto, não é possível gerir os seus recursos através do interface do utilizador. Configure-os em configuration.yaml.",
|
||||
"caption": "Recursos",
|
||||
@ -1425,7 +1539,7 @@
|
||||
"unsaved_confirm": "Existem alterações não guardadas. Tem a certeza de que quer sair?"
|
||||
},
|
||||
"picker": {
|
||||
"add_scene": "Adicionar cena",
|
||||
"add_scene": "Adicionar cenário",
|
||||
"delete_confirm": "Tem certeza de que deseja apagar esta cena?",
|
||||
"delete_scene": "Eliminar cena",
|
||||
"edit_scene": "Editar cena",
|
||||
@ -1569,7 +1683,8 @@
|
||||
},
|
||||
"clusters": {
|
||||
"header": "Clusters",
|
||||
"help_cluster_dropdown": "Selecione um cluster para visualizar atributos e comandos."
|
||||
"help_cluster_dropdown": "Selecione um cluster para visualizar atributos e comandos.",
|
||||
"introduction": "Clusters são os blocos de construção para a funcionalidade Zigbee. Eles separam a funcionalidade em unidades lógicas. Existem tipos de cliente e servidor e que são compostos de atributos e comandos."
|
||||
},
|
||||
"common": {
|
||||
"add_devices": "Adicionar dispositivos",
|
||||
@ -1579,15 +1694,40 @@
|
||||
"value": "Valor"
|
||||
},
|
||||
"description": "Gestão de rede Zigbee Home Automation",
|
||||
"devices": {
|
||||
"header": "Zigbee Home Automation - Dispositivo"
|
||||
},
|
||||
"group_binding": {
|
||||
"bind_button_help": "Vincule o grupo selecionado aos clusters de dispositivos selecionados.",
|
||||
"bind_button_label": "Vincular grupo",
|
||||
"unbind_button_help": "Desvincular o grupo selecionado dos clusters de dispositivos selecionados.",
|
||||
"unbind_button_label": "Desvincular grupo"
|
||||
},
|
||||
"groups": {
|
||||
"add_members": "Adicionar membros",
|
||||
"adding_members": "A Adicionar membros",
|
||||
"caption": "Grupos",
|
||||
"create": "Criar grupo",
|
||||
"create_group": "Zigbee Home Automation - Criar grupo",
|
||||
"creating_group": "Criação de grupo",
|
||||
"description": "Criar e modificar grupos Zigbee",
|
||||
"group_id": "ID do grupo",
|
||||
"group_info": "Informações sobre o grupo",
|
||||
"group_name_placeholder": "Nome do Grupo",
|
||||
"group_not_found": "Grupo não encontrado!",
|
||||
"group-header": "Zigbee Home Automation - Detalhes do grupo",
|
||||
"groups": "Grupos",
|
||||
"groups-header": "Zigbee Home Automation - Gestão de Grupos",
|
||||
"introduction": "Criar e modificar grupos zigbee",
|
||||
"manage_groups": "Gerir Grupos Zigbee",
|
||||
"members": "Membros",
|
||||
"remove_groups": "Remover grupos",
|
||||
"removing_groups": "A remover grupos"
|
||||
"remove_members": "Remover membros",
|
||||
"removing_groups": "A remover grupos",
|
||||
"removing_members": "A remover de membros",
|
||||
"zha_zigbee_groups": "Grupos ZHA Zigbee"
|
||||
},
|
||||
"header": "Configurar a automação residencial Zigbee",
|
||||
"network_management": {
|
||||
"header": "Gestão ",
|
||||
"introduction": "Comandos que afetam toda a rede"
|
||||
@ -1598,25 +1738,36 @@
|
||||
"hint_battery_devices": "Nota: Os dispositivos que entram em modo \"sleep\" (alimentados a bateria) precisam estar activos ao executar comandos sobre eles. Geralmente é possível \"acordar\" um dispositivo em modo\"sleep\" acionando-o.",
|
||||
"hint_wakeup": "Alguns dispositivos, como os sensores Xiaomi, têm um botão de ativação que você pode pressionar em intervalos de ~ 5 segundos para manter os dispositivos acordados enquanto você interage com eles.",
|
||||
"introduction": "Execute comandos ZHA que afetem um único dispositivo. Escolha um dispositivo para ver uma lista de comandos disponíveis."
|
||||
}
|
||||
},
|
||||
"title": "Automação residencial zigbee"
|
||||
},
|
||||
"zone": {
|
||||
"add_zone": "Adicionar zona",
|
||||
"caption": "Zonas",
|
||||
"configured_in_yaml": "As zonas configuradas via configuration.yaml não podem ser editadas pelo IU.",
|
||||
"confirm_delete": "Tem certeza de que deseja apagar esta zona?",
|
||||
"create_zone": "Criar zona",
|
||||
"description": "Gerencie as zonas nas quais deseja rastrear pessoas.",
|
||||
"detail": {
|
||||
"create": "Criar",
|
||||
"delete": "Eliminar",
|
||||
"icon": "Ícone",
|
||||
"icon_error_msg": "O ícone deve estar no prefixo do formato: iconname, por exemplo: mdi: home",
|
||||
"latitude": "Latitude",
|
||||
"longitude": "Longitude",
|
||||
"name": "Nome",
|
||||
"new_zone": "Nova Zona",
|
||||
"passive": "Passivo",
|
||||
"passive_note": "As zonas passivas estão ocultas no frontend e não são usadas como local para rastreadores de dispositivos. Isto é útil se quiser usá-lo apenas para automações.",
|
||||
"radius": "Raio",
|
||||
"required_error_msg": "Este campo é obrigatório"
|
||||
"required_error_msg": "Este campo é obrigatório",
|
||||
"update": "Atualizar"
|
||||
},
|
||||
"edit_home_zone": "O raio da zona casa ainda não pode ser editado a partir do frontend. Arraste o marcador no mapa para mover a zona inicial.",
|
||||
"edit_home_zone_narrow": "O raio da zona casa ainda não pode ser editado a partir do frontend. A localização pode ser modificada a partir da configuração geral."
|
||||
"edit_home_zone_narrow": "O raio da zona casa ainda não pode ser editado a partir do frontend. A localização pode ser modificada a partir da configuração geral.",
|
||||
"go_to_core_config": "Ir para a configuração geral?",
|
||||
"introduction": "As zonas permitem especificar determinadas regiões da Terra. Quando uma pessoa está dentro de uma zona, o estado assume o nome da zona. As zonas também podem ser usadas como gatilho ou condição nas configurações de automação.",
|
||||
"no_zones_created_yet": "Parece que você ainda não criou nenhuma zona."
|
||||
},
|
||||
"zwave": {
|
||||
"caption": "Z-Wave",
|
||||
@ -1643,11 +1794,11 @@
|
||||
},
|
||||
"node_config": {
|
||||
"config_parameter": "Parâmetro de configuração",
|
||||
"config_value": "Cofigurar valor",
|
||||
"config_value": "Valor de Configuração",
|
||||
"false": "Falso",
|
||||
"header": "Configurar opçoes do nó",
|
||||
"seconds": "Segundos",
|
||||
"set_config_parameter": "Definir o parâmetro de configuração",
|
||||
"set_config_parameter": "Definir o Parâmetro de Configuração",
|
||||
"set_wakeup": "Definir intervalo de acordar",
|
||||
"true": "Verdadeiro"
|
||||
},
|
||||
@ -1739,6 +1890,7 @@
|
||||
"topic": "tópico"
|
||||
},
|
||||
"services": {
|
||||
"alert_parsing_yaml": "Erro na análise de YAML: {data}",
|
||||
"call_service": "Chamar serviço",
|
||||
"column_description": "Descrição",
|
||||
"column_example": "Exemplo",
|
||||
@ -1788,6 +1940,9 @@
|
||||
"showing_entries": "Mostrar valores para"
|
||||
},
|
||||
"lovelace": {
|
||||
"add_entities": {
|
||||
"yaml_unsupported": "Você não pode usar esta função ao usar o Lovelace IU no modo YAML."
|
||||
},
|
||||
"cards": {
|
||||
"confirm_delete": "Tem a certeza que quer apagar este cartão?",
|
||||
"empty_state": {
|
||||
@ -1807,6 +1962,10 @@
|
||||
"toggle": "Alternar {name}",
|
||||
"url": "Abrir janela para {url_path}"
|
||||
},
|
||||
"safe-mode": {
|
||||
"description": "O Home Assistant teve problemas durante o carregamento da configuração e agora está em execução no modo de segurança. Dê uma vista de olhos no registro de erros para ver o que está errado.",
|
||||
"header": "Modo de Segurança Ativada"
|
||||
},
|
||||
"shopping-list": {
|
||||
"add_item": "Adicionar Item",
|
||||
"checked_items": "Itens marcados",
|
||||
@ -1825,6 +1984,7 @@
|
||||
"name": "Painel de alarme"
|
||||
},
|
||||
"button": {
|
||||
"description": "O Cartão de Botões permite-lhe adicionar botões para realizar tarefas.",
|
||||
"name": "Botão"
|
||||
},
|
||||
"conditional": {
|
||||
@ -1833,6 +1993,7 @@
|
||||
"condition_explanation": "O cartão será exibido quando TODAS as condições abaixo forem cumpridas.",
|
||||
"conditions": "Condições",
|
||||
"current_state": "atual",
|
||||
"description": "O cartão Condicional exibe outro cartão com base nos estados da entidade.",
|
||||
"name": "Condicional",
|
||||
"state_equal": "Estado é igual a",
|
||||
"state_not_equal": "Estado não é igual a"
|
||||
@ -1842,11 +2003,13 @@
|
||||
"required": "Obrigatório"
|
||||
},
|
||||
"entities": {
|
||||
"description": "O cartão de entidades é o tipo mais comum de cartão. Ele agrupa itens em listas.",
|
||||
"name": "Entidades",
|
||||
"show_header_toggle": "Show Header Toggle?",
|
||||
"toggle": "Alternar entidades."
|
||||
},
|
||||
"entity-filter": {
|
||||
"description": "O cartão Filtro de entidade permite definir uma lista de entidades que você deseja rastrear apenas quando num determinado estado.",
|
||||
"name": "Filtro de entidade"
|
||||
},
|
||||
"entity": {
|
||||
@ -1854,6 +2017,7 @@
|
||||
"name": "Entidade"
|
||||
},
|
||||
"gauge": {
|
||||
"description": "O cartão Manómetro é um cartão básico que permite visualizar dados de um sensor em forma de manómetro.",
|
||||
"name": "Manómetro",
|
||||
"severity": {
|
||||
"define": "Definir gravidade?",
|
||||
@ -1891,16 +2055,20 @@
|
||||
"url": "Url"
|
||||
},
|
||||
"glance": {
|
||||
"columns": "Colunas"
|
||||
"columns": "Colunas",
|
||||
"description": "O cartão Glance é útil para agrupar vários sensores numa visão geral compacta."
|
||||
},
|
||||
"history-graph": {
|
||||
"description": "O cartão Gráfico de histórico permite exibir um gráfico para cada uma das entidades listadas.",
|
||||
"name": "Gráfico de histórico"
|
||||
},
|
||||
"horizontal-stack": {
|
||||
"description": "O cartão Agrupamento Vertical permite agrupar vários cartões para que estes fiquem sempre na mesma coluna.",
|
||||
"name": "Agrupamento Horizontal"
|
||||
},
|
||||
"iframe": {
|
||||
"name": ""
|
||||
"description": "O cartão de página da Web, permite incorporar a sua página da Web favorita diretamente no Home Assistant.",
|
||||
"name": "Página Web"
|
||||
},
|
||||
"light": {
|
||||
"description": "O cartão Luz permite alterar o brilho da luz.",
|
||||
@ -1921,15 +2089,22 @@
|
||||
"name": "Markdown"
|
||||
},
|
||||
"media-control": {
|
||||
"description": "O cartão Controlo multimédia é usado para exibir entidades leitor de multimédia num interface com comandos fáceis de usar.",
|
||||
"name": "Controlo multimédia"
|
||||
},
|
||||
"picture-elements": {
|
||||
"description": "O cartão Elementos de Imagem é um dos tipos de cartões mais versáteis. Os cartões permitem que você posicione ícones ou texto e até serviços! Em uma imagem baseada em coordenadas.",
|
||||
"name": "Elementos da imagem"
|
||||
},
|
||||
"picture-entity": {
|
||||
"description": "A imagem cartão de entidade de imagem exibe uma entidade sob a forma de uma imagem. Em vez de imagens de URL, também pode mostrar a imagem de entidades da câmera.",
|
||||
"name": "Entidade de imagem"
|
||||
},
|
||||
"picture-glance": {
|
||||
"description": "O cartão Vista de imagem mostra uma imagem e os estados das entidades correspondentes como um ícone. As entidades do lado direito permitem alternar ações, outras mostram a opção mais informações."
|
||||
},
|
||||
"picture": {
|
||||
"description": "O cartão de imagem permite definir uma imagem a ser usada para navegação em vários pontos na sua interface ou para chamar um serviço.",
|
||||
"name": "Imagem"
|
||||
},
|
||||
"plant-status": {
|
||||
@ -1944,6 +2119,7 @@
|
||||
},
|
||||
"shopping-list": {
|
||||
"description": "O cartão Lista de compras permite adicionar, editar, marcar e limpar itens da sua lista de compras.",
|
||||
"integration_not_loaded": "Este cartão requer que a integração lista de compras seja configurada.",
|
||||
"name": "Lista de compras"
|
||||
},
|
||||
"thermostat": {
|
||||
@ -1972,14 +2148,14 @@
|
||||
"move": "Mover para Vista",
|
||||
"options": "Mais opções",
|
||||
"pick_card": "Escolha o cartão que deseja adicionar.",
|
||||
"pick_card_view_title": "Que cartão você gostaria de adicionar à sua vista {nome}?",
|
||||
"pick_card_view_title": "Que cartão você gostaria de adicionar à sua vista {name}?",
|
||||
"show_code_editor": "Mostrar Editor de Código",
|
||||
"show_visual_editor": "Mostrar Editor Visual",
|
||||
"toggle_editor": "Alternar Editor"
|
||||
},
|
||||
"edit_lovelace": {
|
||||
"edit_title": "Editar título",
|
||||
"explanation": "Este título é mostrado acima de todas as vista em Lovelace.",
|
||||
"explanation": "Este título é mostrado acima de todas as suas vistas na interface Lovelace.",
|
||||
"header": "Título da sua interface do Lovelace"
|
||||
},
|
||||
"edit_view": {
|
||||
@ -2010,9 +2186,10 @@
|
||||
},
|
||||
"raw_editor": {
|
||||
"confirm_unsaved_changes": "Existem alterações não guardadas. De certeza de que quer sair?",
|
||||
"confirm_unsaved_comments": "Sua configuração contém comentário(s), eles não serão salvos. Você quer continuar?",
|
||||
"error_invalid_config": "Sua configuração não é válida: {error}",
|
||||
"confirm_unsaved_comments": "A sua configuração contém comentário(s), eles não serão salvos. Deseja continuar?",
|
||||
"error_invalid_config": "A sua configuração não é válida: {error}",
|
||||
"error_parse_yaml": "Não foi possível analisar o YAML: {error}",
|
||||
"error_remove": "Não foi possível remover a configuração: {error}",
|
||||
"error_save_yaml": "Não é possível salvar o YAML: {error}",
|
||||
"header": "Editar configuração",
|
||||
"resources_moved": "Os recursos não devem mais ser adicionados ao editor de configuração do código fonte do Lovelace, mas podem ser adicionados no painel de configuração do Lovelace.",
|
||||
@ -2028,7 +2205,13 @@
|
||||
"para": "Por omissão o Home Assistant irá manter a sua interface de utilizador, atualizando-a sempre que uma nova entidade ou novos componentes Lovelace fiquem disponíveis. Se assumir o controlo, não faremos mais alterações automáticas por si.",
|
||||
"para_sure": "Tem certeza que deseja assumir o controlo sobre a interface de utilizador?",
|
||||
"save": "Assumir o controlo",
|
||||
"yaml_control": "Para assumir o controle no modo YAML, crie um ficheiro YAML com o nome que especificou na sua configuração para este painel de controle, ou o padrão 'ui-lovelace.yaml'."
|
||||
"yaml_config": "Para o ajudar a começar, aqui está a actual configuração deste dashboard:",
|
||||
"yaml_control": "Para assumir o controle no modo YAML, crie um ficheiro YAML com o nome que especificou na sua configuração para este painel de controle, ou o padrão 'ui-lovelace.yaml'.",
|
||||
"yaml_mode": "Está a usar o modo YAML para este painel, o que significa que não pode alterar a sua configuração Lovelace a partir da UI. Se quiser alterar este painel a partir da UI, remova 'mode: yaml' da configuração Lovelace em 'configuration.yaml'."
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Adicionar à Lovelace UI",
|
||||
"header": "Criamos uma sugestão para você."
|
||||
},
|
||||
"view": {
|
||||
"panel_mode": {
|
||||
@ -2063,6 +2246,7 @@
|
||||
"views": {
|
||||
"confirm_delete": "Eliminar vista?",
|
||||
"confirm_delete_existing_cards": "Eliminar esta vista vai também remover os cartões",
|
||||
"confirm_delete_existing_cards_text": "Tem certeza de que deseja excluir a sua vista '{name}'? A vista contém {number} cartões que serão excluídos. Essa ação não pode ser desfeita.",
|
||||
"confirm_delete_text": "Tem certeza de que deseja apagar a sua vista '{name}'?"
|
||||
},
|
||||
"warning": {
|
||||
@ -2279,6 +2463,8 @@
|
||||
"link_promo": "Ajude na tradução"
|
||||
},
|
||||
"logout": "Sair",
|
||||
"logout_text": "Tem certeza que deseja terminar a sessão?",
|
||||
"logout_title": "Sair?",
|
||||
"long_lived_access_tokens": {
|
||||
"confirm_delete": "Tem certeza de que deseja apagar o token de acesso de {name} ?",
|
||||
"create": "Criar Token",
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Oprit"
|
||||
},
|
||||
"default": {
|
||||
"off": "Oprit",
|
||||
"on": "Pornit",
|
||||
"unavailable": "Indisponibil",
|
||||
"unknown": "Necunoscut"
|
||||
},
|
||||
@ -428,6 +430,7 @@
|
||||
"attributes": {
|
||||
"air_pressure": "Presiunea aerului",
|
||||
"humidity": "Umiditate",
|
||||
"precipitation": "Precipitaţii",
|
||||
"temperature": "Temperatura",
|
||||
"visibility": "Vizibilitate",
|
||||
"wind_speed": "Viteza vântului"
|
||||
@ -450,15 +453,23 @@
|
||||
"wnw": "VestNordVest",
|
||||
"wsw": "VestSudVest"
|
||||
},
|
||||
"forecast": "Prognoză"
|
||||
"forecast": "Prognoză",
|
||||
"high": "Înalt",
|
||||
"low": "Scăzut"
|
||||
}
|
||||
},
|
||||
"common": {
|
||||
"cancel": "Revocare",
|
||||
"close": "Închide",
|
||||
"delete": "Șterge",
|
||||
"loading": "Se încarcă",
|
||||
"next": "Următorul",
|
||||
"previous": "Anterior",
|
||||
"refresh": "Reîmprospătare",
|
||||
"save": "Salvați",
|
||||
"successfully_saved": "Opțiunile salvate cu succes."
|
||||
"successfully_deleted": "Șters cu succes",
|
||||
"successfully_saved": "Opțiunile salvate cu succes.",
|
||||
"undo": "Undo"
|
||||
},
|
||||
"components": {
|
||||
"area-picker": {
|
||||
@ -535,6 +546,7 @@
|
||||
"enabled_description": "Entitățile dezactivate nu vof fi adăugate in Home Assistant",
|
||||
"enabled_label": "Activează entitatea",
|
||||
"entity_id": "ID-ul entității",
|
||||
"icon": "Înlocuire pictogramă",
|
||||
"name": "Suprascriere nume",
|
||||
"note": "Notă: este posibil să nu funcționeze încă cu toate integrările.",
|
||||
"unavailable": "Această entitate nu este disponibilă momentan.",
|
||||
@ -546,9 +558,44 @@
|
||||
},
|
||||
"generic": {
|
||||
"cancel": "Revocare",
|
||||
"close": "Închide",
|
||||
"default_confirmation_title": "Ești sigur?",
|
||||
"ok": "OK"
|
||||
},
|
||||
"helper_settings": {
|
||||
"generic": {
|
||||
"icon": "Pictograma",
|
||||
"name": "Nume"
|
||||
},
|
||||
"input_datetime": {
|
||||
"date": "Data",
|
||||
"datetime": "Data si ora",
|
||||
"mode": "Ce doriți să introduceți",
|
||||
"time": "Timp"
|
||||
},
|
||||
"input_number": {
|
||||
"max": "Valoare maximă",
|
||||
"min": "Valoare minimă",
|
||||
"mode": "Mod de afișare",
|
||||
"slider": "Glisor",
|
||||
"step": "Dimensiunea pasului",
|
||||
"unit_of_measurement": "Unitate de măsură"
|
||||
},
|
||||
"input_select": {
|
||||
"add": "Adaugă",
|
||||
"add_option": "Adăugați o opțiune",
|
||||
"no_options": "Nu există încă opțiuni",
|
||||
"options": "Opțiuni"
|
||||
},
|
||||
"input_text": {
|
||||
"max": "Lungime maxima",
|
||||
"min": "Lungime minimă",
|
||||
"mode": "Mod de afișare",
|
||||
"password": "Parola",
|
||||
"text": "Text"
|
||||
},
|
||||
"required_error_msg": "Acest câmp este obligatoriu"
|
||||
},
|
||||
"more_info_control": {
|
||||
"dismiss": "Se respinge dialogul",
|
||||
"edit": "Editează entitatea",
|
||||
@ -588,6 +635,15 @@
|
||||
"stop": "Stop"
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"deserialize": "Încercați să analizați mesajele MQTT ca JSON",
|
||||
"entities": "Entități",
|
||||
"no_entities": "Nu sunt entități",
|
||||
"no_triggers": "Nu exista declansatori",
|
||||
"payload_display": "Afișare sarcină utilă",
|
||||
"show_as_yaml": "Afișați ca YAML",
|
||||
"triggers": "Declanșatoare"
|
||||
},
|
||||
"options_flow": {
|
||||
"form": {
|
||||
"header": "Opțiuni"
|
||||
@ -601,15 +657,20 @@
|
||||
"label_voice": "Tastați și apăsați „Enter” sau atingeți microfonul pentru a vorbi"
|
||||
},
|
||||
"zha_device_info": {
|
||||
"buttons": {
|
||||
"zigbee_information": "Informații Zigbee"
|
||||
},
|
||||
"confirmations": {
|
||||
"remove": "Ești sigur că vrei să înlături dispozitivul?"
|
||||
},
|
||||
"device_signature": "Semnătura dispozitivului Zigbee",
|
||||
"manuf": "de {manufacturer}",
|
||||
"no_area": "Nici o zonă",
|
||||
"services": {
|
||||
"reconfigure": "Reconfigurați dispozitivul ZHA (dispozitiv de vindecare). Utilizați acest lucru dacă aveți probleme cu dispozitivul. Dacă dispozitivul în cauză este un dispozitiv alimentat cu baterii, asigurați-vă că este treaz și accepta comenzi atunci când utilizați acest serviciu.",
|
||||
"remove": "Eliminați un dispozitiv din rețeaua Zigbee.",
|
||||
"updateDeviceName": "Setați un nume personalizat pentru acest dispozitiv în registrul de dispozitive."
|
||||
"updateDeviceName": "Setați un nume personalizat pentru acest dispozitiv în registrul de dispozitive.",
|
||||
"zigbee_information": "Vizualizați informațiile Zigbee pentru dispozitiv."
|
||||
},
|
||||
"zha_device_card": {
|
||||
"area_picker_label": "Zonă",
|
||||
@ -641,6 +702,10 @@
|
||||
"service_call_failed": "Nu s-a putut apela serviciul {service}."
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Calendarele mele",
|
||||
"today": "Astăzi"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Lipsesc opțiunile de configurare? Activați modul avansat",
|
||||
@ -648,6 +713,14 @@
|
||||
},
|
||||
"areas": {
|
||||
"caption": "Zone",
|
||||
"data_table": {
|
||||
"area": "Zonă",
|
||||
"devices": "Dispozitive"
|
||||
},
|
||||
"delete": {
|
||||
"confirmation_text": "Toate dispozitivele din această zonă vor deveni neatribuite.",
|
||||
"confirmation_title": "Sigur dorești să ștergi această zonă?"
|
||||
},
|
||||
"description": "Privire de ansamblu asupra tuturor zonelor din casa ta.",
|
||||
"editor": {
|
||||
"create": "CREAȚI",
|
||||
@ -721,6 +794,9 @@
|
||||
"device": {
|
||||
"label": "Dispozitiv"
|
||||
},
|
||||
"not": {
|
||||
"label": "Nu"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Mai mare ca:",
|
||||
"below": "Mai mic ca:",
|
||||
@ -862,11 +938,19 @@
|
||||
},
|
||||
"picker": {
|
||||
"add_automation": "Adăugați o automatizare",
|
||||
"delete_automation": "Ștergeți automatizarea",
|
||||
"delete_confirm": "Sigur doriți să ștergeți această automatizare?",
|
||||
"edit_automation": "Editare automatizare",
|
||||
"header": "Editor de automatizare",
|
||||
"headers": {
|
||||
"name": "Nume"
|
||||
},
|
||||
"introduction": "Editorul de automatizare vă permite să creați și să editați automatizări. Citiți [instrucțiunile] (https://home-assistant.io/docs/automation/editor/) pentru a vă asigura că ați configurat corect Home Assistant.",
|
||||
"learn_more": "Aflați mai multe despre automatizări",
|
||||
"no_automations": "Nu am putut găsi automatizări editabile",
|
||||
"pick_automation": "Alegeți automatizarea pentru a o edita"
|
||||
"only_editable": "Numai automatizările din automations.yaml pot fi editate.",
|
||||
"pick_automation": "Alegeți automatizarea pentru a o edita",
|
||||
"show_info_automation": "Afișați informații despre automatizare"
|
||||
}
|
||||
},
|
||||
"cloud": {
|
||||
@ -910,8 +994,11 @@
|
||||
}
|
||||
},
|
||||
"customize": {
|
||||
"attributes_not_set": "Următoarele atribute nu au fost setate. Setați-le dacă doriți.",
|
||||
"attributes_override": "Poți să le suprascrii dacă vrei.",
|
||||
"caption": "Personalizare",
|
||||
"description": "Personalizați-vă entitățile",
|
||||
"pick_attribute": "Alegeți un atribut pentru suprascriere",
|
||||
"picker": {
|
||||
"header": "Personalizări",
|
||||
"introduction": "Atributele per entitate. Particularizările adăugate/editate vor avea efect imediat. Particularizările eliminate vor avea efect atunci când entitatea este actualizată."
|
||||
@ -935,6 +1022,7 @@
|
||||
},
|
||||
"cant_edit": "Poți edita numai elementele create în UI.",
|
||||
"caption": "Dispozitive",
|
||||
"confirm_delete": "Sigur doriți să ștergeți acest dispozitiv?",
|
||||
"confirm_rename_entity_ids": "De asemenea, doriți să redenumiți ID-urile entității ale entităților dvs.?",
|
||||
"data_table": {
|
||||
"area": "Zonă",
|
||||
@ -942,15 +1030,19 @@
|
||||
"device": "Dispozitiv",
|
||||
"integration": "Integrare",
|
||||
"manufacturer": "Producător",
|
||||
"model": "Model"
|
||||
"model": "Model",
|
||||
"no_devices": "Nu există dispozitive"
|
||||
},
|
||||
"delete": "Șterge",
|
||||
"description": "Gestionați dispozitivele conectate",
|
||||
"device_not_found": "Dispozitivul nu a fost găsit.",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Adăugați la Lovelace",
|
||||
"entities": "Entități",
|
||||
"none": "Acest dispozitiv nu are entități"
|
||||
},
|
||||
"name": "Nume",
|
||||
"no_devices": "Nu există dispozitive",
|
||||
"scene": {
|
||||
"create": "Creează un scenariu cu dispozitivul",
|
||||
"no_scenes": "Nu există scenarii",
|
||||
@ -963,6 +1055,8 @@
|
||||
"scripts": "Scripturi"
|
||||
},
|
||||
"scripts": "Scripturi",
|
||||
"unknown_error": "Eroare necunoscută",
|
||||
"unnamed_device": "Dispozitiv fără nume",
|
||||
"update": "Actualizare"
|
||||
},
|
||||
"entities": {
|
||||
@ -993,6 +1087,7 @@
|
||||
"introduction2": "Utilizați registrul de entități pentru a înlocui numele, schimba identitatea entității sau a elimina înregistrarea din Home Assistant. Rețineți că eliminarea intrării din registrul entității nu va elimina entitatea. Pentru aceasta, urmați linkul de mai jos și eliminați-l din pagina de integrare.",
|
||||
"remove_selected": {
|
||||
"button": "Sterge selectia",
|
||||
"confirm_partly_title": "Doar {number} entități selectate pot fi eliminate.",
|
||||
"confirm_text": "Entitățile pot fi eliminate numai atunci când integrarea nu mai oferă entitățile.",
|
||||
"confirm_title": "Doriți să eliminați {number} entități?"
|
||||
},
|
||||
@ -1001,14 +1096,45 @@
|
||||
"disabled": "Dezactivat",
|
||||
"ok": "In regula",
|
||||
"readonly": "Mod doar citire",
|
||||
"restored": "Restaurat",
|
||||
"unavailable": "Indisponibil"
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtering": {
|
||||
"clear": "Şterge",
|
||||
"filtering_by": "Filtrare dupa"
|
||||
},
|
||||
"header": "Configurați Home Assistant",
|
||||
"helpers": {
|
||||
"caption": "Ajutoare",
|
||||
"description": "Elemente care pot ajuta la construirea automatizărilor.",
|
||||
"dialog": {
|
||||
"add_helper": "Adaugă ajutor",
|
||||
"create": "Creează"
|
||||
},
|
||||
"picker": {
|
||||
"add_helper": "Adaugă ajutor",
|
||||
"headers": {
|
||||
"editable": "Editabil",
|
||||
"entity_id": "ID entitate",
|
||||
"name": "Nume",
|
||||
"type": "Tip"
|
||||
}
|
||||
},
|
||||
"types": {
|
||||
"input_boolean": "Comutare",
|
||||
"input_datetime": "Data și / sau ora",
|
||||
"input_number": "Număr",
|
||||
"input_select": "Buton Dropdown",
|
||||
"input_text": "Text"
|
||||
}
|
||||
},
|
||||
"integrations": {
|
||||
"add_integration": "Adăugați integrare",
|
||||
"caption": "Integrări",
|
||||
"config_entry": {
|
||||
"delete": "Șterge",
|
||||
"delete_confirm": "Sigur doriți să ștergeți această integrare?",
|
||||
"device_unavailable": "dispozitiv indisponibil",
|
||||
"entity_unavailable": "Entitatea nu este disponibilă",
|
||||
@ -1018,7 +1144,10 @@
|
||||
"no_area": "Nici o zonă",
|
||||
"no_device": "Entități fără dispozitive",
|
||||
"no_devices": "Această integrare nu are dispozitive.",
|
||||
"restart_confirm": "Reporniți Home Assistant pentru a termina eliminarea acestei integrări"
|
||||
"options": "Opțiuni",
|
||||
"rename": "Redenumire",
|
||||
"restart_confirm": "Reporniți Home Assistant pentru a termina eliminarea acestei integrări",
|
||||
"system_options": "Opțiuni de sistem"
|
||||
},
|
||||
"config_flow": {
|
||||
"aborted": "Anulat",
|
||||
@ -1031,6 +1160,7 @@
|
||||
"open_site": "Deschideți site-ul web"
|
||||
},
|
||||
"finish": "Termina",
|
||||
"loading_first_time": "Vă rugăm să așteptați în timp ce integrarea este instalată",
|
||||
"not_all_required_fields": "Nu toate câmpurile obligatorii sunt completate.",
|
||||
"submit": "Trimite"
|
||||
},
|
||||
@ -1050,12 +1180,19 @@
|
||||
"show_ignored": "Afișați integrări ignorate",
|
||||
"stop_ignore": "Nu mai ignorați"
|
||||
},
|
||||
"integration": "Integrare",
|
||||
"integration_not_found": "Integrarea nu a fost găsită.",
|
||||
"new": "Configurați o nouă integrare",
|
||||
"none": "Nimic nu a fost configurat încă"
|
||||
"no_integrations": "Se pare că nu aveți încă integrări configurate. Faceți clic pe butonul de mai jos pentru a adăuga prima dvs. integrare!",
|
||||
"none": "Nimic nu a fost configurat încă",
|
||||
"none_found": "Nu s-au găsit integrări",
|
||||
"none_found_detail": "Ajustați criteriile de căutare.",
|
||||
"rename_dialog": "Editați numele acestei intrări de configurare",
|
||||
"rename_input_label": "Introdu nume"
|
||||
},
|
||||
"introduction": "Aici este posibil să vă configurați componentele și Home Assistant. Nu este posibilă configurarea de la UI, dar lucrăm la asta.",
|
||||
"lovelace": {
|
||||
"caption": "Panouri de bord Lovelace",
|
||||
"dashboards": {
|
||||
"cant_edit_yaml": "Tablourile de bord definite în YAML nu pot fi editate din UI. Schimbați-le în configuration.yaml.",
|
||||
"caption": "Tablouri de bord",
|
||||
@ -1064,6 +1201,7 @@
|
||||
"yaml": "Fișier YAML"
|
||||
},
|
||||
"confirm_delete": "Sigur doriți să ștergeți acest tablou de bord?",
|
||||
"default_dashboard": "Acesta este tabloul de bord implicit",
|
||||
"detail": {
|
||||
"create": "Creează",
|
||||
"delete": "Șterge",
|
||||
@ -1071,9 +1209,12 @@
|
||||
"edit_dashboard": "Editează tabloul de bord",
|
||||
"icon": "Pictograma barei laterale",
|
||||
"new_dashboard": "Adăugați un nou tablou de bord",
|
||||
"remove_default": "Eliminare ca implicit pe acest dispozitiv",
|
||||
"require_admin": "Doar administrator",
|
||||
"set_default": "Setare ca implicită pe acest dispozitiv",
|
||||
"show_sidebar": "Afișați în bara laterală",
|
||||
"title": "Titlul barei laterale",
|
||||
"title_required": "Titlul este necesar.",
|
||||
"update": "Actualizare",
|
||||
"url": "Url",
|
||||
"url_error_msg": "URL-ul nu poate conține spații sau caractere speciale, cu excepția lui _ și -"
|
||||
@ -1082,6 +1223,7 @@
|
||||
"add_dashboard": "Adăugați tablou de bord",
|
||||
"headers": {
|
||||
"conf_mode": "Metoda de configurare",
|
||||
"default": "Implicit",
|
||||
"filename": "Nume de fișier",
|
||||
"require_admin": "Doar administrator",
|
||||
"sidebar": "Afișați în bara laterală",
|
||||
@ -1111,7 +1253,8 @@
|
||||
"headers": {
|
||||
"type": "Tip",
|
||||
"url": "Url"
|
||||
}
|
||||
},
|
||||
"no_resources": "Fără resurse"
|
||||
},
|
||||
"refresh_body": "Trebuie să reîmprospătați pagina pentru a finaliza eliminarea, doriți să reîmprospătați acum?",
|
||||
"refresh_header": "Vrei să reîmprospătezi?",
|
||||
@ -1140,21 +1283,38 @@
|
||||
"editor": {
|
||||
"default_name": "Scenă nouă",
|
||||
"devices": {
|
||||
"header": "Dispozitive"
|
||||
"add": "Adaugă un dispozitiv",
|
||||
"delete": "Ștergere dispozitiv",
|
||||
"header": "Dispozitive",
|
||||
"introduction": "Adăugați dispozitivele pe care doriți să le includeți în scenă. Setați toate dispozitivele la starea dorită pentru această scenă."
|
||||
},
|
||||
"entities": {
|
||||
"introduction": "Entitățile care nu aparțin unui dispozitiv pot fi setate aici."
|
||||
"add": "Adăugați o entitate",
|
||||
"delete": "Ștergeți entitatea",
|
||||
"header": "Entități",
|
||||
"introduction": "Entitățile care nu aparțin unui dispozitiv pot fi setate aici.",
|
||||
"without_device": "Entități fără dispozitiv"
|
||||
},
|
||||
"introduction": "Utilizeaza scene pentru a aduce casa ta la viață.",
|
||||
"load_error_not_editable": "Numai scenele din scene.yaml sunt editabile.",
|
||||
"load_error_unknown": "Eroare la încărcarea scenei ({err_no}).",
|
||||
"name": "Nume",
|
||||
"save": "Salvează",
|
||||
"unsaved_confirm": "Aveți modificări nesalvate. Ești sigur că vrei să ieși?"
|
||||
},
|
||||
"picker": {
|
||||
"add_scene": "Adăugare scenă",
|
||||
"delete_confirm": "Sigur dorești să ștergi această zonă?",
|
||||
"delete_scene": "Ștergere scenă",
|
||||
"edit_scene": "Editare scenă",
|
||||
"header": "Editor scenă",
|
||||
"headers": {
|
||||
"name": "Nume"
|
||||
},
|
||||
"learn_more": "Aflați mai multe despre scene",
|
||||
"pick_scene": "Alege scena pentru a edita"
|
||||
"no_scenes": "Nu am putut găsi nici o scenă editabilă",
|
||||
"pick_scene": "Alege scena pentru a edita",
|
||||
"show_info_scene": "Afișează informații despre scenă"
|
||||
}
|
||||
},
|
||||
"script": {
|
||||
@ -1170,6 +1330,10 @@
|
||||
},
|
||||
"picker": {
|
||||
"edit_script": "Editare script",
|
||||
"headers": {
|
||||
"name": "Nume"
|
||||
},
|
||||
"show_info": "Afișează informații despre script",
|
||||
"trigger_script": "Script activator"
|
||||
}
|
||||
},
|
||||
@ -1217,10 +1381,21 @@
|
||||
"description": "Gestionați utilizatorii",
|
||||
"editor": {
|
||||
"activate_user": "Activați utilizatorul",
|
||||
"admin": "Administrator",
|
||||
"caption": "Vizualizați utilizatorul",
|
||||
"change_password": "Schimbaţi parola",
|
||||
"deactivate_user": "Dezactivați utilizatorul",
|
||||
"delete_user": "Ștergeți utilizatorul"
|
||||
"delete_user": "Ștergeți utilizatorul",
|
||||
"name": "Nume",
|
||||
"system_generated_users_not_editable": "Nu s-au putut actualiza utilizatorii generați de sistem.",
|
||||
"update_user": "Actualizare"
|
||||
},
|
||||
"picker": {
|
||||
"headers": {
|
||||
"group": "Grup",
|
||||
"name": "Nume",
|
||||
"system": "Sistem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zha": {
|
||||
@ -1490,18 +1665,78 @@
|
||||
"editor": {
|
||||
"card": {
|
||||
"button": {
|
||||
"description": "Cardul Button vă permite să adăugați butoane pentru a efectua sarcini.",
|
||||
"name": "Buton"
|
||||
},
|
||||
"conditional": {
|
||||
"card": "Card",
|
||||
"change_type": "Modifică tipul",
|
||||
"condition_explanation": "Cardul va fi afișat atunci când TOATE condițiile de mai jos sunt îndeplinite.",
|
||||
"conditions": "Condiții",
|
||||
"current_state": "actual",
|
||||
"description": "Cardul condițional afișează un alt card bazat pe stări de entitate.",
|
||||
"state_equal": "Starea este egala cu",
|
||||
"state_not_equal": "Starea nu este egala cu"
|
||||
},
|
||||
"entities": {
|
||||
"description": "Cardul Entities este cel mai comun tip de card. Acesta grupează elementele împreună în liste.",
|
||||
"toggle": "Schimbati entitatile"
|
||||
},
|
||||
"entity": {
|
||||
"description": "Cardul Entity vă oferă o imagine de ansamblu rapidă asupra stării entității",
|
||||
"name": "Entitate"
|
||||
},
|
||||
"gauge": {
|
||||
"description": "Cardul Gauge este un card de bază care permite vizualizarea vizuală a datelor senzorilor."
|
||||
},
|
||||
"generic": {
|
||||
"attribute": "Atribut",
|
||||
"double_tap_action": "Acțiune atingere dublă",
|
||||
"manual": "Manual",
|
||||
"manual_description": "Trebuie să adăugați un card personalizat sau doriți doar să scrieți manual yaml?",
|
||||
"no_theme": "Nicio temă",
|
||||
"state": "Stare"
|
||||
},
|
||||
"glance": {
|
||||
"description": "Cardul Glance este util pentru a grupa mai mulți senzori într-o imagine de ansamblu compactă."
|
||||
},
|
||||
"history-graph": {
|
||||
"description": "Fișa History Graph vă permite să afișați un grafic pentru fiecare dintre entitățile listate."
|
||||
},
|
||||
"light": {
|
||||
"description": "Cardul Light vă permite să schimbați luminozitatea luminii."
|
||||
},
|
||||
"map": {
|
||||
"hours_to_show": "Ore de afisat"
|
||||
},
|
||||
"plant-status": {
|
||||
"description": "Cardul de Stare al Plantelor este destinat tuturor botanistilor"
|
||||
},
|
||||
"sensor": {
|
||||
"description": "Cardul Senzor vă oferă o imagine de ansamblu rapidă a stării senzorilor cu un grafic opțional pentru a vizualiza schimbarea în timp."
|
||||
},
|
||||
"shopping-list": {
|
||||
"description": "Cardul Listă cumpărături vă permite să adăugați, să editați, să verificați și să ștergeți elemente din lista de cumpărături.",
|
||||
"integration_not_loaded": "Acest card necesită integrarea \"shopping_list\" pentru a fi configurat."
|
||||
},
|
||||
"thermostat": {
|
||||
"description": "Cardul Termostat oferă controlul entității climatice. Permițându-vă să modificați temperatura și modul entității."
|
||||
},
|
||||
"vertical-stack": {
|
||||
"description": "Cardul Vertical Stack vă permite să grupați mai multe carduri, astfel încât acestea să stea întotdeauna în aceeași coloană."
|
||||
},
|
||||
"weather-forecast": {
|
||||
"description": "Cardul Prognoza meteo afișează vremea. Foarte util pentru a include pe interfețele pe care oamenii le afișează pe perete."
|
||||
}
|
||||
},
|
||||
"cardpicker": {
|
||||
"custom_card": "Personalizare",
|
||||
"no_description": "Nicio descriere disponibilă."
|
||||
},
|
||||
"edit_card": {
|
||||
"add": "Adăugare card",
|
||||
"delete": "Ștergeți cardul",
|
||||
"duplicate": "Duplicare card",
|
||||
"edit": "Editeaza",
|
||||
"header": "Configurare card",
|
||||
"move": "Mutați la Vizualizare",
|
||||
@ -1522,7 +1757,11 @@
|
||||
"move_left": "Mutare vizualizare la stânga",
|
||||
"move_right": "Mutare vizualizare dreapta",
|
||||
"tab_badges": "Insigne",
|
||||
"tab_settings": "Setări"
|
||||
"tab_settings": "Setări",
|
||||
"tab_visibility": "Vizibilitate",
|
||||
"visibility": {
|
||||
"select_users": "Selectați care utilizatori ar trebui să vadă această vedere în navigare"
|
||||
}
|
||||
},
|
||||
"header": "Editați interfața utilizator",
|
||||
"menu": {
|
||||
@ -1553,6 +1792,7 @@
|
||||
"save_config": {
|
||||
"cancel": "Nu contează",
|
||||
"close": "Închide",
|
||||
"empty_config": "Începeți cu un tablou de bord gol",
|
||||
"header": "Preia controlul asupra interfața dvs. Lovelace",
|
||||
"para": "În mod implicit, Home Assistant va menține interfața dvs. de utilizator, actualizând-o atunci când entitățile noi sau componente Lovelace devin disponibile. Dacă preluați controlul, nu vom mai face automat modificări pentru dvs.",
|
||||
"para_sure": "Sigur doriți să preluați controlul asupra interfeței dvs. de utilizator?",
|
||||
@ -1565,6 +1805,11 @@
|
||||
"add": "Adăugați la Lovelace UI",
|
||||
"create_own": "Alege alt card",
|
||||
"header": "Am creat o sugestie pentru dumneavoastră"
|
||||
},
|
||||
"view": {
|
||||
"panel_mode": {
|
||||
"warning_multiple_cards": "Această vizualizare conține mai multe carduri, dar un panel view poate afișa doar 1 card"
|
||||
}
|
||||
}
|
||||
},
|
||||
"menu": {
|
||||
@ -1572,9 +1817,14 @@
|
||||
"configure_ui": "Configurați interfața utilizator",
|
||||
"exit_edit_mode": "Ieșiți din modul de modificare a interfeței de utilizator",
|
||||
"help": "Ajutor",
|
||||
"refresh": "Reîmprospătare"
|
||||
"refresh": "Reîmprospătare",
|
||||
"reload_resources": "Reîncărcare resurse"
|
||||
},
|
||||
"reload_lovelace": "Reîncarcă Lovelace UI",
|
||||
"reload_resources": {
|
||||
"refresh_body": "Trebuie să reîmprospătați pagina pentru a finaliza reîncărcarea, doriți să reîmprospătați acum?",
|
||||
"refresh_header": "Vrei să reîmprospătezi?"
|
||||
},
|
||||
"unused_entities": {
|
||||
"available_entities": "Acestea sunt entitățile pe care le aveți disponibile, dar nu sunt încă în UI dvs. Lovelace.",
|
||||
"domain": "Domeniu",
|
||||
@ -1584,9 +1834,14 @@
|
||||
"select_to_add": "Selectați entitățile pe care doriți să le adăugați pe un card, apoi faceți clic pe butonul Adăugare card.",
|
||||
"title": "Entități neutilizate"
|
||||
},
|
||||
"views": {
|
||||
"confirm_delete_existing_cards": "Ștergerea acestei vizualizări va elimina și cardurile",
|
||||
"confirm_delete_text": "Sigur doriți să ștergeți vizualizarea „{name}”?"
|
||||
},
|
||||
"warning": {
|
||||
"entity_non_numeric": "Entitatea este non-numerică: {entity}",
|
||||
"entity_not_found": "Entitatea nu este disponibilă: {entity}"
|
||||
"entity_not_found": "Entitatea nu este disponibilă: {entity}",
|
||||
"entity_unavailable": "{entity} este momentan indisponibilă"
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
@ -1779,6 +2034,11 @@
|
||||
"submit": "Trimite"
|
||||
},
|
||||
"current_user": "În prezent sunteți conectat ca {fullName}.",
|
||||
"dashboard": {
|
||||
"description": "Alegeți un tablou de bord implicit pentru acest dispozitiv.",
|
||||
"dropdown_label": "Tablou de bord",
|
||||
"header": "Tablou de bord"
|
||||
},
|
||||
"force_narrow": {
|
||||
"description": "Aceasta va ascunde bara laterală în mod prestabilit, similar cu experiența mobilă.",
|
||||
"header": "Ascunde întotdeauna bara laterală"
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Остановлено"
|
||||
},
|
||||
"default": {
|
||||
"off": "Выкл",
|
||||
"on": "Вкл",
|
||||
"unavailable": "Недоступно",
|
||||
"unknown": "Неизвестно"
|
||||
},
|
||||
@ -471,11 +473,15 @@
|
||||
}
|
||||
},
|
||||
"common": {
|
||||
"and": "и",
|
||||
"cancel": "Отменить",
|
||||
"close": "Закрыть",
|
||||
"delete": "Удалить",
|
||||
"loading": "Загрузка",
|
||||
"next": "Далее",
|
||||
"no": "Нет",
|
||||
"previous": "Назад",
|
||||
"refresh": "Обновить",
|
||||
"save": "Сохранить",
|
||||
"successfully_deleted": "Успешно удалено",
|
||||
"successfully_saved": "Успешно сохранено",
|
||||
@ -556,9 +562,9 @@
|
||||
"editor": {
|
||||
"confirm_delete": "Вы уверены, что хотите удалить эту запись?",
|
||||
"delete": "Удалить",
|
||||
"enabled_cause": "Инициатор отключения: {cause}.",
|
||||
"enabled_description": "Отключенные объекты не будут доступны в Home Assistant.",
|
||||
"enabled_label": "Включить объект",
|
||||
"enabled_cause": "Инициатор: {cause}.",
|
||||
"enabled_description": "Скрытые объекты не будут доступны в Home Assistant.",
|
||||
"enabled_label": "Отображать объект",
|
||||
"entity_id": "ID объекта",
|
||||
"icon": "Значок",
|
||||
"icon_error": "Параметр должен быть в формате 'prefix:iconname' (например: 'mdi:home')",
|
||||
@ -735,6 +741,10 @@
|
||||
"triggered": "Сработало от {name}"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "Мои календари",
|
||||
"today": "Сегодня"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "Хотите больше параметров для конфигурирования? Активируйте расширенный режим на",
|
||||
@ -837,6 +847,9 @@
|
||||
},
|
||||
"label": "Устройство"
|
||||
},
|
||||
"not": {
|
||||
"label": "Не"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Выше",
|
||||
"below": "Ниже",
|
||||
@ -1168,7 +1181,9 @@
|
||||
"edit_requires_storage": "Редактор отключен, поскольку конфигурация уже хранится в файле configuration.yaml.",
|
||||
"elevation": "Высота",
|
||||
"elevation_meters": "метров",
|
||||
"external_url": "URL-адрес для глобальной сети",
|
||||
"imperial_example": "Градус Фаренгейта, фунт",
|
||||
"internal_url": "URL-адрес для домашней сети",
|
||||
"latitude": "Широта",
|
||||
"location_name": "Название для Вашего Home Assistant",
|
||||
"longitude": "Долгота",
|
||||
@ -1215,7 +1230,7 @@
|
||||
},
|
||||
"create": "Создать автоматизацию",
|
||||
"no_automations": "Нет автоматизаций",
|
||||
"no_device_automations": "Создание сценария для этого устройства недоступно.",
|
||||
"no_device_automations": "Для этого устройства нет средств автоматизации.",
|
||||
"triggers": {
|
||||
"caption": "Сделать что-то, когда..."
|
||||
}
|
||||
@ -1235,6 +1250,7 @@
|
||||
},
|
||||
"delete": "Удалить",
|
||||
"description": "Управляйте подключенными устройствами",
|
||||
"device_info": "Устройство",
|
||||
"device_not_found": "Устройство не найдено",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Добавить объекты в Lovelace UI",
|
||||
@ -1264,20 +1280,20 @@
|
||||
"description": "Управляйте доступными объектами",
|
||||
"picker": {
|
||||
"disable_selected": {
|
||||
"button": "Отключить выбранные",
|
||||
"confirm_text": "Отключенные объекты не будут доступны в Home Assistant.",
|
||||
"confirm_title": "Вы уверены, что хотите отключить выбранные объекты? ({number})"
|
||||
"button": "Скрыть выбранные",
|
||||
"confirm_text": "Скрытые объекты не будут доступны в Home Assistant.",
|
||||
"confirm_title": "Вы уверены, что хотите скрыть {number} выбранных объектов?"
|
||||
},
|
||||
"enable_selected": {
|
||||
"button": "Включить выбранные",
|
||||
"confirm_text": "Если эти объекты ранее были отключены, они снова будут доступны в Home Assistant.",
|
||||
"confirm_title": "Вы уверены, что хотите включить выбранные объекты? ({number})"
|
||||
"button": "Отображать выбранные",
|
||||
"confirm_text": "Если эти объекты ранее были скрыты, они снова будут отображаться в Home Assistant.",
|
||||
"confirm_title": "Отображать {number} выбранных объектов?"
|
||||
},
|
||||
"filter": {
|
||||
"filter": "Фильтр",
|
||||
"show_disabled": "Показывать отключенные объекты",
|
||||
"show_readonly": "Показать объекты, доступные только для чтения",
|
||||
"show_unavailable": "Показывать недоступные объекты"
|
||||
"show_disabled": "Скрытые объекты",
|
||||
"show_readonly": "Объекты, доступные только для чтения",
|
||||
"show_unavailable": "Недоступные объекты"
|
||||
},
|
||||
"header": "Объекты",
|
||||
"headers": {
|
||||
@ -1297,7 +1313,7 @@
|
||||
},
|
||||
"selected": "Выбрано: {number}",
|
||||
"status": {
|
||||
"disabled": "Отключено",
|
||||
"disabled": "Скрыто",
|
||||
"ok": "Ok",
|
||||
"readonly": "Только для чтения",
|
||||
"restored": "Восстановлено",
|
||||
@ -1314,7 +1330,7 @@
|
||||
"caption": "Вспомогательное",
|
||||
"description": "Элементы, которые могут помочь в создании автоматизации.",
|
||||
"dialog": {
|
||||
"add_helper": "Добавить вспомогательный элемент",
|
||||
"add_helper": "Создание вспомогательного элемента",
|
||||
"add_platform": "Добавить \"{platform}\"",
|
||||
"create": "Создать"
|
||||
},
|
||||
@ -1397,6 +1413,8 @@
|
||||
"new": "Интеграции",
|
||||
"no_integrations": "Похоже, у Вас ещё нет настроенных интеграций. Нажмите на кнопку в правом нижнем углу, чтобы добавить свою первую интеграцию!",
|
||||
"none": "Пока ничего не настроено",
|
||||
"none_found": "Интеграции не найдены",
|
||||
"none_found_detail": "Измените критерии поиска",
|
||||
"note_about_integrations": "Пока что не все интеграции могут быть настроены через пользовательский интерфейс.",
|
||||
"note_about_website_reference": "Все доступные интеграции Вы можете найти на ",
|
||||
"rename_dialog": "Изменение названия интеграции",
|
||||
@ -2086,7 +2104,7 @@
|
||||
"name": "Освещение"
|
||||
},
|
||||
"map": {
|
||||
"dark_mode": "Ночной режим",
|
||||
"dark_mode": "Тёмная тема",
|
||||
"default_zoom": "Масштаб по умолчанию",
|
||||
"description": "Позволяет отображать объекты на карте.",
|
||||
"geo_location_sources": "Источники геолокации",
|
||||
@ -2260,8 +2278,8 @@
|
||||
},
|
||||
"views": {
|
||||
"confirm_delete": "Удалить эту вкладку?",
|
||||
"confirm_delete_existing_cards": "Удаляя эту вкладку, Вы также удалите находящиеся в ней карточки",
|
||||
"confirm_delete_existing_cards_text": "Вы уверены, что хотите удалить вкладку {name}? Эта вкладка содержит {number} карточек, которые также будут удалены. Удаление отменить будет невозможно.",
|
||||
"confirm_delete_existing_cards": "Удалить вкладку и находящиеся в ней карточки?",
|
||||
"confirm_delete_existing_cards_text": "Вы уверены, что хотите удалить вкладку \"{name}\"? Эта вкладка содержит {number} карточек, которые также будут удалены. Удаление отменить будет невозможно.",
|
||||
"confirm_delete_text": "Вы уверены, что хотите удалить вкладку {name}?"
|
||||
},
|
||||
"warning": {
|
||||
@ -2450,7 +2468,7 @@
|
||||
},
|
||||
"profile": {
|
||||
"advanced_mode": {
|
||||
"description": "Открывает дополнительные возможности для конфигурирования.",
|
||||
"description": "Открывает дополнительные возможности для настройки.",
|
||||
"link_promo": "Узнать больше",
|
||||
"title": "Расширенный режим"
|
||||
},
|
||||
|
@ -441,6 +441,7 @@
|
||||
"attributes": {
|
||||
"air_pressure": "Tlak vzduchu",
|
||||
"humidity": "Vlhkosť",
|
||||
"precipitation": "zrážky",
|
||||
"temperature": "Teplota",
|
||||
"visibility": "Viditeľnosť",
|
||||
"wind_speed": "Rýchlosť vetra"
|
||||
@ -468,12 +469,14 @@
|
||||
},
|
||||
"common": {
|
||||
"cancel": "Zrušiť",
|
||||
"close": "Zavrieť",
|
||||
"delete": "Odstrániť",
|
||||
"loading": "Načítava sa",
|
||||
"no": "Nie",
|
||||
"save": "Uložiť",
|
||||
"successfully_deleted": "Úspešne odstránené",
|
||||
"successfully_saved": "Úspešne uložené",
|
||||
"undo": "Vrátiť späť",
|
||||
"yes": "Áno"
|
||||
},
|
||||
"components": {
|
||||
@ -552,11 +555,13 @@
|
||||
"enabled_label": "Povoliť entitu",
|
||||
"entity_id": "Entity ID",
|
||||
"icon": "Zmeniť ikonu",
|
||||
"icon_error": "Ikony by mali byť vo formáte 'prefix:iconname', napr 'mdi:home'",
|
||||
"name": "Prepísať názov",
|
||||
"note": "Poznámka: toto nemusí zatiaľ fungovať so všetkými integráciami.",
|
||||
"unavailable": "Táto entita nie je momentálne k dispozícii.",
|
||||
"update": "AKTUALIZOVAŤ"
|
||||
},
|
||||
"no_unique_id": "Táto entita nemá jedinečné ID, preto jej nastavenia nemožno spravovať z používateľského rozhrania (UI).",
|
||||
"related": "Súvisiace",
|
||||
"settings": "Nastavenia"
|
||||
},
|
||||
@ -567,6 +572,10 @@
|
||||
"ok": "OK"
|
||||
},
|
||||
"helper_settings": {
|
||||
"generic": {
|
||||
"icon": "Ikona",
|
||||
"name": "Názov"
|
||||
},
|
||||
"input_datetime": {
|
||||
"date": "Dátum",
|
||||
"datetime": "Dátum a čas",
|
||||
@ -595,16 +604,20 @@
|
||||
"password": "Heslo",
|
||||
"pattern": "Vzor regexu na overenie na strane klienta",
|
||||
"text": "Text"
|
||||
}
|
||||
},
|
||||
"required_error_msg": "Toto pole je povinné"
|
||||
},
|
||||
"more_info_control": {
|
||||
"dismiss": "Zrušiť dialógové okno",
|
||||
"person": {
|
||||
"create_zone": "Vytvoriť zónu z aktuálnej polohy"
|
||||
},
|
||||
"restored": {
|
||||
"confirm_remove_text": "Naozaj chcete odstrániť túto entitu?",
|
||||
"confirm_remove_title": "Odstrániť entitu?",
|
||||
"not_provided": "Táto entita je momentálne nedostupná a je ojedinelou pre odstránenú, zmenenú alebo nefunkčnú integráciu alebo zariadenie."
|
||||
"not_provided": "Táto entita je momentálne nedostupná a je pozostatkom po odstránenej, zmenenej alebo nefunkčnej integrácii alebo zariadení.",
|
||||
"remove_action": "Odstrániť entitu",
|
||||
"remove_intro": "Ak sa entita už nepoužíva, môžete ju odstrániť."
|
||||
},
|
||||
"script": {
|
||||
"last_action": "Posledná akcia",
|
||||
@ -620,9 +633,26 @@
|
||||
"title": "Pokyny pre aktualizáciu"
|
||||
},
|
||||
"vacuum": {
|
||||
"status": "Stav"
|
||||
"commands": "Príkazy vysávača:",
|
||||
"fan_speed": "Rýchlosť ventilátora",
|
||||
"locate": "lokalizovať",
|
||||
"pause": "Pozastaviť",
|
||||
"return_home": "Návrat domov",
|
||||
"start": "Štart",
|
||||
"start_pause": "Štart/pauza",
|
||||
"status": "Stav",
|
||||
"stop": "Zastaviť"
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"deserialize": "Pokus interpretovať správy MQTT ako JSON",
|
||||
"entities": "Entity",
|
||||
"no_entities": "Žiadne entity",
|
||||
"recent_messages": "{n} naposledy prijaté správy",
|
||||
"show_as_yaml": "Zobraziť ako YAML",
|
||||
"title": "Informácie o ladení {device}",
|
||||
"triggers": "Spúšťače"
|
||||
},
|
||||
"options_flow": {
|
||||
"form": {
|
||||
"header": "Možnosti"
|
||||
@ -638,11 +668,14 @@
|
||||
"zha_device_info": {
|
||||
"buttons": {
|
||||
"add": "Pridať zariadenia",
|
||||
"reconfigure": "Prekonfigurovať zariadenie"
|
||||
"reconfigure": "Prekonfigurovať zariadenie",
|
||||
"remove": "Odstrániť zariadenie",
|
||||
"zigbee_information": "Informácie o Zigbee"
|
||||
},
|
||||
"confirmations": {
|
||||
"remove": "Naozaj chcete odstrániť zariadenie?"
|
||||
},
|
||||
"device_signature": "Podpis zariadenia Zigbee",
|
||||
"last_seen": "Naposledy videný",
|
||||
"manuf": "od {manufacturer}",
|
||||
"no_area": "Žiadna oblasť",
|
||||
@ -650,7 +683,8 @@
|
||||
"services": {
|
||||
"reconfigure": "Znovu nakonfigurujte ZHA zariadenie (opravte zariadenie). Použite, ak máte problémy so zariadením. Ak ide o zariadenie napájané z batérie, skontrolujte, či je pri používaní tejto služby hore a či prijíma príkazy.",
|
||||
"remove": "Odstráňte zariadenie zo siete Zigbee.",
|
||||
"updateDeviceName": "Nastaviť vlastný názov pre toto zariadenie v registri zariadení."
|
||||
"updateDeviceName": "Nastaviť vlastný názov pre toto zariadenie v registri zariadení.",
|
||||
"zigbee_information": "Zobraziť informácie o ZigBee pre zariadenie."
|
||||
},
|
||||
"unknown": "Neznámy",
|
||||
"zha_device_card": {
|
||||
@ -674,6 +708,7 @@
|
||||
},
|
||||
"notification_drawer": {
|
||||
"click_to_configure": "Kliknutím na tlačidlo nakonfigurujete {entity}",
|
||||
"close": "Zavrieť",
|
||||
"empty": "Žiadne upozornenia",
|
||||
"title": "Upozornenia"
|
||||
},
|
||||
@ -686,21 +721,28 @@
|
||||
"config": {
|
||||
"areas": {
|
||||
"caption": "Register oblastí",
|
||||
"data_table": {
|
||||
"area": "Oblasť",
|
||||
"devices": "Zariadenia"
|
||||
},
|
||||
"delete": {
|
||||
"confirmation_text": "Všetky zariadenia v tejto oblasti nebudú priradené.",
|
||||
"confirmation_text": "Všetky zariadenia v tejto oblasti ostanú nepriradené.",
|
||||
"confirmation_title": "Naozaj chcete odstrániť túto oblasť?"
|
||||
},
|
||||
"description": "Prehľad všetkých oblastí vo vašej domácnosti.",
|
||||
"editor": {
|
||||
"create": "VYTVORIŤ",
|
||||
"default_name": "Nová oblasť",
|
||||
"delete": "VYMAZAŤ",
|
||||
"update": "AKTUALIZOVAŤ"
|
||||
},
|
||||
"picker": {
|
||||
"create_area": "Vytvoriť oblasť",
|
||||
"header": "Register oblastí",
|
||||
"integrations_page": "Stránka Integrácie",
|
||||
"introduction": "Oblasti sa používajú na usporiadanie zariadení. Tieto informácie sa použijú v službe Home Assistant, aby vám pomohli pri organizovaní rozhrania, povolení a integrácií s inými systémami.",
|
||||
"introduction2": "Ak chcete umiestniť zariadenia do oblasti, pomocou odkazu nižšie prejdite na stránku integrácií a potom kliknite na nakonfigurovanú integráciu a prejdite na karty zariadení."
|
||||
"introduction2": "Ak chcete umiestniť zariadenia do oblasti, pomocou odkazu nižšie prejdite na stránku integrácií a potom kliknite na nakonfigurovanú integráciu a prejdite na karty zariadení.",
|
||||
"no_areas": "Vyzerá to, že ešte nemáte žiadne oblasti!"
|
||||
}
|
||||
},
|
||||
"automation": {
|
||||
@ -924,6 +966,9 @@
|
||||
"delete_confirm": "Naozaj chcete odstrániť túto automatizáciu?",
|
||||
"edit_automation": "Upraviť automatizáciu",
|
||||
"header": "Editor automatizácií",
|
||||
"headers": {
|
||||
"name": "Názov"
|
||||
},
|
||||
"introduction": "Editor automatizácií vám umožňuje vytvárať a upravovať automatizácie. Prečítajte si prosím [pokyny](https://home-assistant.io/docs/automation/editor/), aby ste sa uistili, že ste nakonfigurovali Home Assistant správne.",
|
||||
"learn_more": "Získajte viac informácií o automatizáciách",
|
||||
"no_automations": "Nepodarilo sa nájsť žiadne editovateľné automatizácie",
|
||||
@ -940,6 +985,7 @@
|
||||
"enable_state_reporting": "Povoliť hlásenie stavu",
|
||||
"info": "Vďaka integrácii Alexa pre Home Assistant Cloud budete môcť ovládať všetky svoje zariadenia Home Assistant pomocou akéhokoľvek zariadenia s podporou Alexa.",
|
||||
"info_state_reporting": "Ak povolíte hlásenie stavu, Home Assistant odošle všetky zmeny stavov vystavených entít do Amazonu. To vám umožní vždy vidieť najnovšie stavy v aplikácii Alexa a pomocou zmien stavov vytvárať rutiny.",
|
||||
"manage_entities": "Spravovať entity",
|
||||
"sync_entities": "Synchronizovať entity",
|
||||
"title": "Alexa"
|
||||
},
|
||||
@ -952,12 +998,14 @@
|
||||
"manage_entities": "Spravovať entity",
|
||||
"security_devices": "Zabezpečovacie zariadenia",
|
||||
"sync_entities": "Synchronizovať entity so službou Google",
|
||||
"sync_entities_404_message": "Nepodarilo sa synchronizovať entity so službou Google. Prikážte Googlu, aby synchronizoval vaše entity príkazom: 'Hey Google, sync my devices'.",
|
||||
"title": "Google Assistant"
|
||||
},
|
||||
"integrations": "Integrácie",
|
||||
"integrations_introduction": "Integrácia Home Assistant Cloud vám umožňuje pripojiť sa k službám v cloude bez toho, aby ste museli verejne publikovať inštanciu Home Assistant do internetu.",
|
||||
"integrations_introduction2": "Pozrite si webovú stránku ",
|
||||
"integrations_link_all_features": " všetky dostupné funkcie ",
|
||||
"manage_account": "Spravovať účet",
|
||||
"nabu_casa_account": "Účet Nabu Casa",
|
||||
"not_connected": "Nepripojené",
|
||||
"remote": {
|
||||
@ -986,6 +1034,9 @@
|
||||
},
|
||||
"alexa": {
|
||||
"banner": "Úprava týchto entít cez toto používateľské rozhranie je zakázaná, pretože ste nakonfigurovali filtre entít v súbore Configuration.yaml.",
|
||||
"expose": "Sprístupniť pre Alexa",
|
||||
"exposed_entities": "Sprístupnené entity",
|
||||
"not_exposed_entities": "Nezverejnené entity",
|
||||
"title": "Alexa"
|
||||
},
|
||||
"caption": "Home Assistant Cloud",
|
||||
@ -993,7 +1044,11 @@
|
||||
"description_login": "Prihlásený ako {email}",
|
||||
"description_not_login": "Neprihlásený",
|
||||
"dialog_certificate": {
|
||||
"fingerprint": "Odtlačok certifikátu:"
|
||||
"certificate_expiration_date": "Dátum vypršania platnosti certifikátu",
|
||||
"certificate_information": "Informácie o certifikáte",
|
||||
"close": "Zavrieť",
|
||||
"fingerprint": "Odtlačok certifikátu:",
|
||||
"will_be_auto_renewed": "Automaticky sa obnoví"
|
||||
},
|
||||
"dialog_cloudhook": {
|
||||
"available_at": "Webhook je k dispozícii na tejto webovej adrese:",
|
||||
@ -1008,6 +1063,8 @@
|
||||
},
|
||||
"forgot_password": {
|
||||
"check_your_email": "Pokyny na obnovenie hesla nájdete vo svojom e-maile.",
|
||||
"email": "Emailová adresa",
|
||||
"email_error_msg": "Neplatný email",
|
||||
"instructions": "Zadajte svoju e-mailovú adresu a my vám pošleme odkaz na obnovenie hesla.",
|
||||
"send_reset_email": "Poslať resetovací e-mail",
|
||||
"subtitle": "Zabudli ste heslo",
|
||||
@ -1015,28 +1072,52 @@
|
||||
},
|
||||
"google": {
|
||||
"banner": "Úprava týchto entít cez toto používateľské rozhranie je zakázaná, pretože ste nakonfigurovali filtre entít v súbore Configuration.yaml.",
|
||||
"expose": "Sprístupniť pre Google Assistant",
|
||||
"exposed_entities": "Zverejnené entity",
|
||||
"not_exposed_entities": "Nezverejnené entity",
|
||||
"sync_to_google": "Synchronizujú sa zmeny v službe Google.",
|
||||
"title": "Google Assistant"
|
||||
},
|
||||
"login": {
|
||||
"alert_email_confirm_necessary": "Pred prihlásením musíte potvrdiť svoj email.",
|
||||
"alert_password_change_required": "Pred prihlásením musíte zmeniť svoje heslo.",
|
||||
"dismiss": "Zrušiť",
|
||||
"email": "E-mail",
|
||||
"email_error_msg": "Neplatný email",
|
||||
"forgot_password": "zabudnuté heslo?",
|
||||
"introduction": "Home Assistant Cloud vám poskytuje zabezpečené vzdialené pripojenie k vašej inštancii. Umožňuje tiež pripojiť sa do cloudových služieb Amazon Alexa a Google Assistant.",
|
||||
"introduction2": "Túto službu poskytuje náš partner",
|
||||
"introduction2a": ", spoločnosť založená zakladateľmi Home Assistant a Hass.io.",
|
||||
"introduction3": "Cloud Home Assistant je predplatená služba s bezplatnou mesačnou skúšobnou verziou. Nie sú potrebné žiadne platobné informácie.",
|
||||
"learn_more_link": "Získajte viac informácií o Home Assistant Cloud",
|
||||
"password": "Heslo",
|
||||
"password_error_msg": "Heslá majú najmenej 8 znakov",
|
||||
"sign_in": "Prihlásiť sa",
|
||||
"start_trial": "Začnite bezplatnú 1-mesačnú skúšobnú verziu",
|
||||
"title": "Prihlásenie do cloudu",
|
||||
"trial_info": "Nie sú potrebné žiadne platobné informácie"
|
||||
},
|
||||
"register": {
|
||||
"account_created": "Účet vytvorený! Inštrukcie na jeho aktiváciu nájdete v e-maile.",
|
||||
"create_account": "Vytvoriť účet",
|
||||
"email_address": "Emailová adresa",
|
||||
"email_error_msg": "Neplatný email",
|
||||
"feature_amazon_alexa": "Integrácia s Amazon Alexa",
|
||||
"feature_google_home": "Integrácia s Google Assistant",
|
||||
"feature_remote_control": "Vzdialené ovládanie domáceho asistenta",
|
||||
"feature_webhook_apps": "Jednoduchá integrácia s webovými aplikáciami, ako napríklad OwnTracks",
|
||||
"headline": "Spusťte bezplatnú skúšobnú verziu",
|
||||
"information": "Vytvorte si účet a začnite bezplatnú mesačnú skúšobnú verziu s cloudom Home Assistant. Nie sú potrebné žiadne platobné informácie.",
|
||||
"information2": "Skúšobná verzia vám umožní prístup ku všetkým výhodám cloudu Home Assistant vrátane:",
|
||||
"information3": "Túto službu poskytuje náš partner",
|
||||
"information3a": ", spoločnosť založená zakladateľmi Home Assistant a Hass.io.",
|
||||
"information4": "Registráciou účtu súhlasíte s nasledujúcimi zmluvnými podmienkami.",
|
||||
"link_privacy_policy": "Zásady ochrany osobných údajov",
|
||||
"link_terms_conditions": "Zmluvné podmienky",
|
||||
"password": "Heslo",
|
||||
"password_error_msg": "Heslá majú najmenej 8 znakov",
|
||||
"resend_confirm_email": "Znova odoslať potvrdzovací e-mail",
|
||||
"start_trial": "Spustiť skúšobnú verziu",
|
||||
"title": "Registrovať účet"
|
||||
}
|
||||
},
|
||||
@ -1114,7 +1195,9 @@
|
||||
"delete": "Odstrániť",
|
||||
"description": "Spravovať pripojené zariadenia",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "Pridať do Lovelace"
|
||||
"add_entities_lovelace": "Pridať do Lovelace",
|
||||
"entities": "Entity",
|
||||
"none": "Toto zariadenie nemá žiadne entity"
|
||||
},
|
||||
"name": "Názov",
|
||||
"scene": {
|
||||
@ -1136,19 +1219,27 @@
|
||||
"description": "Prehľad všetkých známych entít.",
|
||||
"picker": {
|
||||
"disable_selected": {
|
||||
"button": "Zrušiť vybraté",
|
||||
"confirm_text": "Zakázané entity nebudú pridané do Home Assistanta",
|
||||
"confirm_title": "Chcete zakázať {number} entity?"
|
||||
},
|
||||
"enable_selected": {
|
||||
"button": "Povoliť vybrané",
|
||||
"confirm_text": "Ak sú teraz deaktivované, budú v Home Assistant opäť sprístupnené.",
|
||||
"confirm_title": "Chcete povoliť {number} entity?"
|
||||
},
|
||||
"filter": {
|
||||
"show_disabled": "Zobraziť zakázané entity"
|
||||
"filter": "Filter",
|
||||
"show_disabled": "Zobraziť zakázané entity",
|
||||
"show_readonly": "Zobraziť entity len na čítanie",
|
||||
"show_unavailable": "Zobraziť nedostupné entity"
|
||||
},
|
||||
"header": "Register entít",
|
||||
"headers": {
|
||||
"entity_id": "ID entity",
|
||||
"integration": "Integrácia",
|
||||
"name": "Názov"
|
||||
"name": "Názov",
|
||||
"status": "Stav"
|
||||
},
|
||||
"introduction": "Home Assistant vedie register všetkých subjektov, ktoré kedy videl a ktoré môžu byť jednoznačne identifikované. Každá z týchto entít bude mať pridelené ID, ktoré bude vyhradené len pre tento subjekt.",
|
||||
"introduction2": "Použite register entít na prepísanie mena, zmenu ID entity alebo odstránenie položky z Home Assistant. Poznámka: Odstránenie položky databázy entít neodstráni entitu. Postupujte podľa nižšie uvedeného odkazu a odstráňte ho z integračnej stránky.",
|
||||
@ -1157,11 +1248,16 @@
|
||||
"confirm_text": "Entity je možné odstrániť, iba ak ich integrácia už neposkytuje.",
|
||||
"confirm_title": "Chcete odstrániť {number} entity?"
|
||||
},
|
||||
"selected": "{number} vybrané",
|
||||
"status": {
|
||||
"ok": "Ok"
|
||||
"ok": "Ok",
|
||||
"readonly": "Len na čítanie"
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtering": {
|
||||
"filtering_by": "Filtrovanie podľa"
|
||||
},
|
||||
"header": "Konfigurovať Home Assistant",
|
||||
"helpers": {
|
||||
"caption": "Pomocníci",
|
||||
@ -1189,9 +1285,11 @@
|
||||
}
|
||||
},
|
||||
"integrations": {
|
||||
"add_integration": "Pridať integráciu",
|
||||
"caption": "Integrácie",
|
||||
"config_entry": {
|
||||
"area": "V {area}",
|
||||
"delete": "Odstrániť",
|
||||
"delete_button": "Odstrániť {integration}",
|
||||
"delete_confirm": "Naozaj chcete odstrániť túto integráciu?",
|
||||
"device_unavailable": "zariadenie nie je k dispozícii",
|
||||
@ -1202,8 +1300,11 @@
|
||||
"no_area": "Žiadna oblasť",
|
||||
"no_device": "Entity bez zariadení",
|
||||
"no_devices": "Táto integrácia nemá žiadne zariadenia.",
|
||||
"options": "Možnosti",
|
||||
"rename": "Premenovať",
|
||||
"restart_confirm": "Ak chcete dokončiť odstránenie tejto integrácie, reštartujte Home Assistant",
|
||||
"settings_button": "Upraviť nastavenia pre {integration}",
|
||||
"system_options": "Možnosti systému",
|
||||
"system_options_button": "Systémové možnosti pre {integration}"
|
||||
},
|
||||
"config_flow": {
|
||||
@ -1215,23 +1316,31 @@
|
||||
"open_site": "Otvoriť webovú stránku"
|
||||
},
|
||||
"finish": "Dokončiť",
|
||||
"loading_first_time": "Počkajte, kým sa inštaluje integrácia"
|
||||
"loading_first_time": "Počkajte, kým sa nainštaluje integrácia"
|
||||
},
|
||||
"configure": "Konfigurovať",
|
||||
"configured": "Nakonfigurovaný",
|
||||
"description": "Spravujte a nastavujte integrácie",
|
||||
"details": "Podrobnosti o integrácii",
|
||||
"discovered": "Objavené",
|
||||
"home_assistant_website": "Home Assistant webová stránka",
|
||||
"ignore": {
|
||||
"confirm_delete_ignore": "Potom, ako bude integrácia automaticky objavená (discovered), sa opäť ukáže medzi objavenými (discovered) integráciami. Môže to chvíľu trvať, alebo vyžadovať reštart.",
|
||||
"confirm_delete_ignore_title": "Prestať ignorovať {name} ?",
|
||||
"confirm_ignore": "Naozaj nechcete nastaviť túto integráciu? Túto akciu môžete vrátiť späť kliknutím na položku „Zobraziť ignorované integrácie“ v ponuke v pravom hornom rohu.",
|
||||
"confirm_ignore_title": "Ignorovať objav {name}?",
|
||||
"confirm_ignore_title": "Ignorovať objavenie (discovery) {name}?",
|
||||
"hide_ignored": "Skryť ignorované integrácie",
|
||||
"ignore": "Ignorovať",
|
||||
"ignored": "Ignorované",
|
||||
"show_ignored": "Zobraziť ignorované integrácie",
|
||||
"stop_ignore": "Zastaviť ignorovanie"
|
||||
},
|
||||
"integration": "Integrácia",
|
||||
"new": "Nastaviť novú integráciu",
|
||||
"no_integrations": "Vyzerá to, že ešte nemáte nakonfigurované žiadne integrácie. Kliknutím na tlačidlo nižšie pridáte svoju prvú integráciu!",
|
||||
"none": "Nič zatiaľ nebolo nakonfigurované",
|
||||
"none_found": "Nenašli sa žiadne integrácie",
|
||||
"none_found_detail": "Upravte kritériá vyhľadávania.",
|
||||
"note_about_integrations": "Nie všetky integrácie je možné nakonfigurovať pomocou používateľského rozhrania.",
|
||||
"note_about_website_reference": "Viac informácií je k dispozícii na"
|
||||
},
|
||||
@ -1317,9 +1426,11 @@
|
||||
"add_person": "Pridať osobu",
|
||||
"caption": "Osoby",
|
||||
"confirm_delete": "Naozaj chcete túto osobu odstrániť?",
|
||||
"confirm_delete2": "Všetky zariadenia patriace k tejto osobe sa stanú nepriradené.",
|
||||
"create_person": "Vytvoriť osobu",
|
||||
"description": "Spravujte osoby, ktoré Home Assistant sleduje.",
|
||||
"detail": {
|
||||
"create": "Vytvoriť",
|
||||
"delete": "Odstrániť",
|
||||
"device_tracker_intro": "Vyberte zariadenia, ktoré patria tejto osobe.",
|
||||
"device_tracker_pick": "Vyberte zariadenie na sledovanie",
|
||||
@ -1382,6 +1493,7 @@
|
||||
"caption": "Skripty",
|
||||
"description": "Vytvárajte a upravujte skripty",
|
||||
"editor": {
|
||||
"alias": "Názov",
|
||||
"default_name": "Nový skript",
|
||||
"delete_confirm": "Naozaj chcete odstrániť tento skript?",
|
||||
"delete_script": "Odstrániť skript",
|
||||
@ -1396,7 +1508,9 @@
|
||||
"add_script": "Pridať skript",
|
||||
"header": "Editor skriptov",
|
||||
"introduction": "Editor skriptov vám umožňuje vytvárať a upravovať skripty. Postupujte podľa odkazu nižšie a prečítajte si pokyny, aby ste sa uistili, že ste Home Assistant nakonfigurovali správne.",
|
||||
"learn_more": "Viac informácií o skriptoch"
|
||||
"learn_more": "Viac informácií o skriptoch",
|
||||
"no_scripts": "Nenašli sa žiadne editovateľné skripty",
|
||||
"show_info": "Zobraziť informácie o skripte"
|
||||
}
|
||||
},
|
||||
"server_control": {
|
||||
@ -1444,6 +1558,7 @@
|
||||
"editor": {
|
||||
"activate_user": "Aktivovať používateľa",
|
||||
"active": "Aktívny",
|
||||
"admin": "správca",
|
||||
"caption": "Zobraziť používateľa",
|
||||
"change_password": "Zmeniť heslo",
|
||||
"confirm_user_deletion": "Naozaj chcete odstrániť {name}?",
|
||||
@ -1453,6 +1568,7 @@
|
||||
"id": "ID",
|
||||
"owner": "Vlastník",
|
||||
"system_generated": "Systémom vytvorený",
|
||||
"system_generated_users_not_editable": "Nie je možné aktualizovať používateľov generovaných systémom.",
|
||||
"system_generated_users_not_removable": "Nie je možné odstrániť používateľov generovaných systémom.",
|
||||
"unnamed_user": "Nepomenovaný používateľ"
|
||||
}
|
||||
@ -1464,6 +1580,10 @@
|
||||
"search_again": "Hľadať znova",
|
||||
"spinner": "Vyhľadávanie ZHA Zigbee zariadení ..."
|
||||
},
|
||||
"add": {
|
||||
"caption": "Pridať zariadenia",
|
||||
"description": "Pridať zariadenia do siete ZigBee"
|
||||
},
|
||||
"caption": "ZHA",
|
||||
"cluster_attributes": {
|
||||
"attributes_of_cluster": "Atribúty vybraného klastra",
|
||||
@ -1483,12 +1603,16 @@
|
||||
"issue_zigbee_command": "Vydanie príkazu Zigbee"
|
||||
},
|
||||
"clusters": {
|
||||
"help_cluster_dropdown": "Vyberte klaster na zobrazenie atribútov a príkazov."
|
||||
"header": "Zoskupenia",
|
||||
"help_cluster_dropdown": "Vyberte klaster na zobrazenie atribútov a príkazov.",
|
||||
"introduction": "Zoskupenia (klastre) sú stavebnými kameňmi funkčnosti Zigbee. Rozdeľujú funkčnosť na logické jednotky. Existujú typy klientov a serverov, ktoré sa skladajú z atribútov a príkazov."
|
||||
},
|
||||
"common": {
|
||||
"add_devices": "Pridať zariadenia",
|
||||
"clusters": "Zoskupenia",
|
||||
"devices": "Zariadenia",
|
||||
"manufacturer_code_override": "Prepísanie kódu výrobcu"
|
||||
"manufacturer_code_override": "Prepísanie kódu výrobcu",
|
||||
"value": "Hodnota"
|
||||
},
|
||||
"description": "Správa siete Zigbee Home Automation",
|
||||
"devices": {
|
||||
@ -1499,13 +1623,39 @@
|
||||
"unbind_button_help": "Odpojte vybratú skupinu z vybratých zoskupení zariadení."
|
||||
},
|
||||
"groups": {
|
||||
"add_members": "Pridať členov",
|
||||
"adding_members": "Pridávanie členov",
|
||||
"caption": "Skupiny",
|
||||
"create": "Vytvoriť skupinu",
|
||||
"create_group": "Zigbee Home Automation - Vytvoriť skupinu",
|
||||
"create_group_details": "Zadajte požadované údaje na vytvorenie novej skupiny ZigBee",
|
||||
"creating_group": "Vytvorenie skupiny",
|
||||
"description": "Vytvorenie a úprava skupín ZigBee",
|
||||
"group_details": "Tu sú všetky podrobnosti o vybranej skupine Zigbee.",
|
||||
"group_id": "ID skupiny",
|
||||
"group_info": "Informácie o skupine",
|
||||
"group_name_placeholder": "Názov skupiny",
|
||||
"group_not_found": "Skupina sa nenašla!",
|
||||
"group-header": "Zigbee Home Automation - Podrobnosti o skupine",
|
||||
"groups": "Skupiny",
|
||||
"groups-header": "Zigbee Home Automation - Správa skupiny",
|
||||
"header": "Zigbee Home Automation - Správa skupiny"
|
||||
"header": "Zigbee Home Automation - Správa skupiny",
|
||||
"introduction": "Vytvorenie a úprava skupín ZigBee",
|
||||
"manage_groups": "Správa skupín ZigBee",
|
||||
"members": "členovia",
|
||||
"remove_groups": "Odstrániť skupiny",
|
||||
"remove_members": "Odstrániť členov",
|
||||
"removing_groups": "Odstránenie skupín",
|
||||
"removing_members": "Odstránenie členov"
|
||||
},
|
||||
"header": "Konfigurácia Zigbee Home Automation",
|
||||
"introduction": "Tu je možné nakonfigurovať komponent ZHA. Nie je možné všetko nakonfigurovať z používateľského rozhrania, ale pracujeme na tom.",
|
||||
"network_management": {
|
||||
"header": "Správa siete",
|
||||
"introduction": "Príkazy, ktoré ovplyvňujú celú sieť"
|
||||
},
|
||||
"node_management": {
|
||||
"header": "Správa Zariadenia",
|
||||
"help_node_dropdown": "Vyberte zariadenie na zobrazenie možností zariadenia.",
|
||||
"hint_battery_devices": "Poznámka: Spiace (napájané z batérie) zariadenia musia byť pri vykonávaní príkazov zobudené. Spiace zariadenie môžete zvyčajne prebudiť jeho spustením.",
|
||||
"hint_wakeup": "Niektoré zariadenia, ako sú senzory Xiaomi, majú tlačidlo budenia, ktoré môžete stlačiť v intervaloch približne 5 sekúnd, ktoré udržia zariadenia pri bdelosti, keď s nimi komunikujete.",
|
||||
@ -1702,6 +1852,7 @@
|
||||
},
|
||||
"lovelace": {
|
||||
"add_entities": {
|
||||
"generated_unsupported": "Túto funkciu môžete použiť, iba ak ste prevzali kontrolu nad používateľským rozhraním Lovelace.",
|
||||
"saving_failed": "Uloženie konfigurácie Lovelace UI zlyhalo.",
|
||||
"yaml_unsupported": "Túto funkciu nemôžete použiť, keď používate používateľské rozhranie Lovelace v režime YAML."
|
||||
},
|
||||
@ -1743,6 +1894,9 @@
|
||||
"alarm-panel": {
|
||||
"name": "Ovládací panel alarmu"
|
||||
},
|
||||
"button": {
|
||||
"name": "Tlačidlo"
|
||||
},
|
||||
"conditional": {
|
||||
"card": "Karta",
|
||||
"conditions": "Podmienky",
|
||||
@ -1760,7 +1914,21 @@
|
||||
"entity-filter": {
|
||||
"name": "Filter entít"
|
||||
},
|
||||
"entity": {
|
||||
"description": "Karta Entity vám poskytne rýchly prehľad o stave vašej entity.",
|
||||
"name": "Entita"
|
||||
},
|
||||
"gauge": {
|
||||
"severity": {
|
||||
"green": "zelená",
|
||||
"red": "červená",
|
||||
"yellow": "žltá"
|
||||
}
|
||||
},
|
||||
"generic": {
|
||||
"aspect_ratio": "Pomer strán",
|
||||
"attribute": "atribút",
|
||||
"camera_image": "Entita fotoaparátu",
|
||||
"camera_view": "Zobrazenie kamery",
|
||||
"entities": "Entity",
|
||||
"entity": "Entita",
|
||||
@ -1785,6 +1953,7 @@
|
||||
"url": "Url"
|
||||
},
|
||||
"glance": {
|
||||
"columns": "Stĺpce",
|
||||
"name": "Náhľad"
|
||||
},
|
||||
"history-graph": {
|
||||
@ -1861,6 +2030,10 @@
|
||||
"name": "Predpoveď počasia"
|
||||
}
|
||||
},
|
||||
"cardpicker": {
|
||||
"custom_card": "Vlastná karta",
|
||||
"no_description": "Popis nie je k dispozícii."
|
||||
},
|
||||
"edit_card": {
|
||||
"add": "Pridať kartu",
|
||||
"delete": "Odstrániť",
|
||||
@ -1905,6 +2078,7 @@
|
||||
"para_no_id": "Tento prvok nemá žiadne ID. Doplňte, prosím, ID pre tento prvok v súbore 'ui-lovelace.yaml'."
|
||||
},
|
||||
"raw_editor": {
|
||||
"confirm_remove_config_text": "Ak odstránite svoju konfiguráciu používateľského rozhrania Lovelace, automaticky vygenerujeme vaše zobrazenia používateľského rozhrania Lovelace s vašimi oblasťami a zariadeniami.",
|
||||
"confirm_remove_config_title": "Naozaj chcete odstrániť konfiguráciu používateľského rozhrania Lovelace? Vaše zobrazenia používateľské rozhranie Lovelace automaticky vygenerujeme s vašimi oblasťami a zariadeniami.",
|
||||
"confirm_unsaved_changes": "Máte neuložené zmeny. Naozaj chcete odísť?",
|
||||
"confirm_unsaved_comments": "Vaša konfigurácia obsahuje komentáre, ktoré sa neuložia. Chcete pokračovať?",
|
||||
@ -1930,7 +2104,8 @@
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Pridať do používateľského rozhrania Lovelace",
|
||||
"create_own": "Vyberte inú kartu"
|
||||
"create_own": "Vyberte inú kartu",
|
||||
"header": "Vytvorili sme pre vás návrh"
|
||||
},
|
||||
"view": {
|
||||
"panel_mode": {
|
||||
@ -1942,13 +2117,14 @@
|
||||
},
|
||||
"menu": {
|
||||
"configure_ui": "Konfigurovať používateľské rozhranie",
|
||||
"exit_edit_mode": "Skončiť režim úprav používateľského rozhrania",
|
||||
"help": "Pomoc",
|
||||
"refresh": "Obnoviť",
|
||||
"reload_resources": "Znovu načítať prostriedky"
|
||||
},
|
||||
"reload_lovelace": "Znovu načítať Lovelace",
|
||||
"reload_resources": {
|
||||
"refresh_body": "Ak chcete dokončiť načítanie, musíte stránku obnoviť. Chcete ju teraz obnoviť?",
|
||||
"refresh_body": "Ak chcete dokončiť načítanie, musíte stránku obnoviť. Chcete ju obnoviť teraz?",
|
||||
"refresh_header": "Chcete obnoviť?"
|
||||
},
|
||||
"unused_entities": {
|
||||
@ -1969,7 +2145,8 @@
|
||||
"warning": {
|
||||
"attribute_not_found": "Atribút {attribute} nie je k dispozícii v: {entity}",
|
||||
"entity_non_numeric": "Entita je nečíselná: {entity}",
|
||||
"entity_not_found": "Entita nie je k dispozícií {entity}"
|
||||
"entity_not_found": "Entita nie je k dispozícií {entity}",
|
||||
"entity_unavailable": "Entita momentálne nie je k dispozícií {entity}"
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Ustavljeno"
|
||||
},
|
||||
"default": {
|
||||
"off": "Izključen",
|
||||
"on": "Vključen",
|
||||
"unavailable": "Ni na voljo",
|
||||
"unknown": "Neznano"
|
||||
},
|
||||
@ -292,7 +294,7 @@
|
||||
"error": "Napaka",
|
||||
"idle": "V pripravljenosti",
|
||||
"off": "Izključen",
|
||||
"on": "Vključen",
|
||||
"on": "Vklopljen",
|
||||
"paused": "Zaustavljeno",
|
||||
"returning": "Vračam se na postajo"
|
||||
},
|
||||
@ -654,6 +656,17 @@
|
||||
"stop": "Ustavi"
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"deserialize": "Poskus razčlenitve sporočil MQTT kot JSON",
|
||||
"entities": "Entitete",
|
||||
"no_entities": "Brez entitet",
|
||||
"no_triggers": "Brez sprožilcev",
|
||||
"payload_display": "Payload display",
|
||||
"recent_messages": "{n} zadnjih prejetih sporočil",
|
||||
"show_as_yaml": "Pokaži kot YAML",
|
||||
"title": "{Device} debug info",
|
||||
"triggers": "Sprožilci"
|
||||
},
|
||||
"options_flow": {
|
||||
"form": {
|
||||
"header": "Možnosti"
|
||||
@ -826,6 +839,9 @@
|
||||
},
|
||||
"label": "Naprava"
|
||||
},
|
||||
"not": {
|
||||
"label": "Ne"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "Nad",
|
||||
"below": "Pod",
|
||||
@ -1294,6 +1310,10 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtering": {
|
||||
"clear": "Počisti",
|
||||
"filtering_by": "Filtriranje po"
|
||||
},
|
||||
"header": "Konfiguriraj Home Assistant",
|
||||
"helpers": {
|
||||
"caption": "Pomočniki",
|
||||
@ -1321,12 +1341,16 @@
|
||||
}
|
||||
},
|
||||
"integrations": {
|
||||
"add_integration": "Dodaj integracijo",
|
||||
"caption": "Integracije",
|
||||
"config_entry": {
|
||||
"area": "V {area}",
|
||||
"delete": "Izbriši",
|
||||
"delete_button": "Izbriši {integration}",
|
||||
"delete_confirm": "Ali ste prepričani, da želite izbrisati to integracijo?",
|
||||
"device_unavailable": "naprava ni na voljo",
|
||||
"devices": "{count} {count, plural,\n one {naprava}\n other {naprav}\n}",
|
||||
"entities": "{count} {count, plural,\n one {entiteta}\n other {entitet}\n}",
|
||||
"entity_unavailable": "entiteta ni na voljo",
|
||||
"firmware": "Firmware: {version}",
|
||||
"hub": "Povezan prek",
|
||||
@ -1334,8 +1358,11 @@
|
||||
"no_area": "Brez območja",
|
||||
"no_device": "Entitete brez naprav",
|
||||
"no_devices": "Ta integracija je brez naprav.",
|
||||
"options": "Možnosti",
|
||||
"rename": "Preimenujte",
|
||||
"restart_confirm": "Znova zaženite Home Assistant-a, da dokončate odstranitev te integracije",
|
||||
"settings_button": "Uredite nastavitve za {integration}",
|
||||
"system_options": "Sistemske možnosti",
|
||||
"system_options_button": "Sistemske možnosti za {integration}"
|
||||
},
|
||||
"config_flow": {
|
||||
@ -1370,11 +1397,17 @@
|
||||
"show_ignored": "Pokaži prezrte integracije",
|
||||
"stop_ignore": "Prenehajte ignorirati"
|
||||
},
|
||||
"integration": "integracija",
|
||||
"integration_not_found": "Integracije ni mogoče najti.",
|
||||
"new": "Nastavite novo integracijo",
|
||||
"no_integrations": "Zdi se, da še nimate nobenih konfiguracij. Kliknite na spodnji gumb, da dodate svojo prvo integracijo!",
|
||||
"none": "Nič še ni konfigurirano",
|
||||
"none_found": "Ni najdenih integracij",
|
||||
"none_found_detail": "Prilagodite iskalne kriterije.",
|
||||
"note_about_integrations": "Vseh integracij še ni mogoče konfigurirati prek uporabniškega vmesnika.",
|
||||
"note_about_website_reference": "Več jih je na voljo prek"
|
||||
"note_about_website_reference": "Več jih je na voljo prek",
|
||||
"rename_dialog": "Uredite ime tega vnosa konfiguracije",
|
||||
"rename_input_label": "Ime vnosa"
|
||||
},
|
||||
"introduction": "Tukaj je mogoče konfigurirati vaše komponente in Home Assistanta. Vsega ni mogoče konfigurirati iz uporabniškega vmesnika (vendar delamo na tem).",
|
||||
"lovelace": {
|
||||
@ -2190,12 +2223,12 @@
|
||||
"close": "Zapri",
|
||||
"empty_config": "Začnite s prazno nadzorno ploščo",
|
||||
"header": "Prevzemite nadzor nad lovelace vmesnikom",
|
||||
"para": "Home Assistant bo privzeto vzdrževal vaš uporabniški vmesnik in ga posodabljal, ko bodo na voljo novi subjekti ali komponente Lovelace UI. Če prevzamete nadzor, ne bomo več samodejno spreminjali sprememb za vas.",
|
||||
"para": "To nadzorno ploščo trenutno vzdržuje Home Assistant. Samodejno se posodobi, ko bodo na voljo novi subjekti ali komponente Lovelace UI. Če prevzamete nadzor, se ta nadzorna plošča ne bo več samodejno posodabljala. Vedno lahko ustvarite novo nadzorno ploščo v konfiguraciji, s katero se lahko igrate.",
|
||||
"para_sure": "Ali ste prepričani, da želite prevzeti nadzor nad vašim vmesnikom?",
|
||||
"save": "Prevzemite nadzor",
|
||||
"yaml_config": "Za pomoč pri zagonu je tukaj trenutna konfiguracija te nadzorne plošče:",
|
||||
"yaml_control": "Če želite prevzeti nadzor v načinu YAML, ustvarite datoteko YAML z imenom, ki ste ga določili v konfiguraciji za to nadzorno ploščo, ali privzeto 'ui-lovelace.yaml'.",
|
||||
"yaml_mode": "Uporabljate način YAML, kar pomeni, da ne morete spremeniti konfiguracije Lovelace iz uporabniškega vmesnika. Če želite spremeniti Lovelace iz uporabniškega vmesnika, iz konfiguracije Lovelace v 'config.yaml' odstranite 'mode: yaml'."
|
||||
"yaml_mode": "Za to nadzorno ploščo uporabljate način YAML, kar pomeni, da ne morete spremeniti konfiguracije Lovelace iz uporabniškega vmesnika. Če želite upravljati to nadzorno ploščo iz uporabniškega vmesnika, iz konfiguracije Lovelace v 'config.yaml.' Odstranite 'mode: yaml'."
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Dodaj v uporabniški vmesnik Lovelace",
|
||||
@ -2241,7 +2274,8 @@
|
||||
"warning": {
|
||||
"attribute_not_found": "Atribut {attribute} ni na voljo v: {entity}",
|
||||
"entity_non_numeric": "Entiteta je neštevilska: {entity}",
|
||||
"entity_not_found": "Entiteta ni na voljo: {entity}"
|
||||
"entity_not_found": "Entiteta ni na voljo: {entity}",
|
||||
"entity_unavailable": "{entity} trenutno ni na voljo"
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Stoppad"
|
||||
},
|
||||
"default": {
|
||||
"off": "Av",
|
||||
"on": "På",
|
||||
"unavailable": "Otillgänglig",
|
||||
"unknown": "Okänd"
|
||||
},
|
||||
@ -473,10 +475,13 @@
|
||||
"common": {
|
||||
"cancel": "Avbryt",
|
||||
"close": "Stäng",
|
||||
"delete": "Radera",
|
||||
"loading": "Läser in",
|
||||
"no": "Nej",
|
||||
"save": "Spara",
|
||||
"successfully_deleted": "Har raderats",
|
||||
"successfully_saved": "Inställningar sparades",
|
||||
"undo": "Ångra",
|
||||
"yes": "Ja"
|
||||
},
|
||||
"components": {
|
||||
@ -552,7 +557,7 @@
|
||||
"dismiss": "Avfärda",
|
||||
"editor": {
|
||||
"confirm_delete": "Är du säker på att du vill ta bort den här posten?",
|
||||
"delete": "RADERA",
|
||||
"delete": "Radera",
|
||||
"enabled_cause": "Inaktiverad på grund av {cause}.",
|
||||
"enabled_description": "Inaktiverade entiteter kommer inte att läggas till i Home Assistant.",
|
||||
"enabled_label": "Aktivera entitet",
|
||||
@ -562,9 +567,9 @@
|
||||
"name": "Skriv över namn",
|
||||
"note": "Obs: detta kanske inte fungerar ännu med alla integrationer.",
|
||||
"unavailable": "Den här entiteten är för närvarande inte tillgänglig.",
|
||||
"update": "UPPDATERA"
|
||||
"update": "Uppdatera"
|
||||
},
|
||||
"no_unique_id": "Den här entiteten har inget unikt ID, därför kan det inte hanteras från användargränssnittet.",
|
||||
"no_unique_id": "Den här entiteten har inget unikt ID, därför kan den inte hanteras från användargränssnittet.",
|
||||
"related": "Relaterade",
|
||||
"settings": "Inställningar"
|
||||
},
|
||||
@ -582,6 +587,7 @@
|
||||
"input_datetime": {
|
||||
"date": "Datum",
|
||||
"datetime": "Datum och tid",
|
||||
"mode": "Vad vill du mata in",
|
||||
"time": "Tid"
|
||||
},
|
||||
"input_number": {
|
||||
@ -589,6 +595,8 @@
|
||||
"max": "Maximalt värde",
|
||||
"min": "Minsta värde",
|
||||
"mode": "Visningsläge",
|
||||
"slider": "Glidreglage",
|
||||
"step": "Steglängd",
|
||||
"unit_of_measurement": "Måttenhet"
|
||||
},
|
||||
"input_select": {
|
||||
@ -649,7 +657,14 @@
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"entities": "Entiteter"
|
||||
"deserialize": "Försök att tolka MQTT-meddelanden som JSON",
|
||||
"entities": "Entiteter",
|
||||
"no_entities": "Inga entiteter",
|
||||
"no_triggers": "Inga utlösare",
|
||||
"recent_messages": "{n} senast mottagna meddelande(n)",
|
||||
"show_as_yaml": "Visa som YAML",
|
||||
"title": "{device} felsökningsinformation",
|
||||
"triggers": "Utlösare"
|
||||
},
|
||||
"options_flow": {
|
||||
"form": {
|
||||
@ -671,11 +686,13 @@
|
||||
"buttons": {
|
||||
"add": "Lägg till enheter",
|
||||
"reconfigure": "Konfigurera om enheten",
|
||||
"remove": "Ta bort enhet"
|
||||
"remove": "Ta bort enhet",
|
||||
"zigbee_information": "Zigbee-information"
|
||||
},
|
||||
"confirmations": {
|
||||
"remove": "Är du säker på att du vill ta bort enheten?"
|
||||
},
|
||||
"device_signature": "Zigbee-enhetens signatur",
|
||||
"last_seen": "Senast sedd",
|
||||
"manuf": "av {manufacturer}",
|
||||
"no_area": "Inget område",
|
||||
@ -684,7 +701,8 @@
|
||||
"services": {
|
||||
"reconfigure": "Konfigurera om ZHA-enheten (läk enheten). Använd det här om du har problem med enheten. Om den aktuella enheten är en batteridriven enhet, se till att den är påslagen och accepterar kommandon när du använder den här tjänsten.",
|
||||
"remove": "Ta bort en enhet från Zigbee-nätverket.",
|
||||
"updateDeviceName": "Ange ett anpassat namn för den här enheten i entitetsregistret"
|
||||
"updateDeviceName": "Ange ett anpassat namn för den här enheten i entitetsregistret",
|
||||
"zigbee_information": "Visa Zigbee-informationen för enheten."
|
||||
},
|
||||
"unknown": "Okänd",
|
||||
"zha_device_card": {
|
||||
@ -725,15 +743,23 @@
|
||||
},
|
||||
"areas": {
|
||||
"caption": "Områden",
|
||||
"data_table": {
|
||||
"area": "Område",
|
||||
"devices": "Enheter"
|
||||
},
|
||||
"delete": {
|
||||
"confirmation_text": "Alla enheter i denna zon kommer att bli utan tilldelning.",
|
||||
"confirmation_title": "Är du säker på att du vill ta bort den här zonen?"
|
||||
},
|
||||
"description": "Oversikt över alla områden i ditt hem",
|
||||
"editor": {
|
||||
"create": "SKAPA",
|
||||
"create": "Skapa",
|
||||
"default_name": "Nytt område",
|
||||
"delete": "RADERA",
|
||||
"update": "UPPDATERA"
|
||||
"delete": "Radera",
|
||||
"update": "Uppdatera"
|
||||
},
|
||||
"picker": {
|
||||
"create_area": "SKAPA OMRÅDE",
|
||||
"create_area": "Skapa område",
|
||||
"header": "Områden",
|
||||
"integrations_page": "Integrationssidan",
|
||||
"introduction": "Områden används för att organisera var enheter befinner sig. Denna information kommer att användas i hela Home Assistant för att hjälpa dig att organisera ditt gränssnitt, behörigheter och integreringar med andra system.",
|
||||
@ -962,6 +988,9 @@
|
||||
"delete_confirm": "Är du säker på att du vill radera denna automatiseringen?",
|
||||
"edit_automation": "Redigera automation",
|
||||
"header": "Automatiseringseditor",
|
||||
"headers": {
|
||||
"name": "Namn"
|
||||
},
|
||||
"introduction": "Automatiseringseditorn låter dig skapa och redigera automationer. Läs [instruktionerna](https://home-assistant.io/docs/automation/editor/) för att se till att du har konfigurerat Home Assistant korrekt.",
|
||||
"learn_more": "Lär dig mer om automatiseringar",
|
||||
"no_automations": "Vi kunde inte hitta några redigerbara automatiseringar",
|
||||
@ -1010,7 +1039,7 @@
|
||||
"integrations_introduction2": "Kontrollera webbplatsen för ",
|
||||
"integrations_link_all_features": " alla tillgängliga funktioner",
|
||||
"manage_account": "Hantera konto",
|
||||
"nabu_casa_account": "Nabu Casa konto",
|
||||
"nabu_casa_account": "Nabu Casa-konto",
|
||||
"not_connected": "Ej ansluten",
|
||||
"remote": {
|
||||
"access_is_being_prepared": "Fjärråtkomst förbereds. Vi meddelar dig när det är klart.",
|
||||
@ -1202,7 +1231,8 @@
|
||||
"device": "Enhet",
|
||||
"integration": "Integration",
|
||||
"manufacturer": "Tillverkare",
|
||||
"model": "Modell"
|
||||
"model": "Modell",
|
||||
"no_devices": "Inga enheter"
|
||||
},
|
||||
"delete": "Ta bort",
|
||||
"description": "Hantera anslutna enheter",
|
||||
@ -1213,6 +1243,7 @@
|
||||
"none": "Den här enheten har inga entiteter"
|
||||
},
|
||||
"name": "Namn",
|
||||
"no_devices": "Inga enheter",
|
||||
"scene": {
|
||||
"create": "Skapa scenario med enhet",
|
||||
"no_scenes": "Inga scenarier",
|
||||
@ -1260,6 +1291,7 @@
|
||||
"introduction2": "Använd entitetsregistret för att överskida namnet, ändra entitets-ID eller ta bort posten från Home Assistant.",
|
||||
"remove_selected": {
|
||||
"button": "Ta bort valda",
|
||||
"confirm_partly_title": "Endast {number} valda entiteter kan tas bort.",
|
||||
"confirm_text": "Entiteter kan endast tas bort när integrationen inte längre tillhandahåller entiteterna.",
|
||||
"confirm_title": "Vill du ta bort {number} entiteter?"
|
||||
},
|
||||
@ -1268,10 +1300,15 @@
|
||||
"disabled": "Inaktiverad",
|
||||
"ok": "Ok",
|
||||
"readonly": "Skrivskyddad",
|
||||
"restored": "Återställd",
|
||||
"unavailable": "Inte tillgänglig"
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtering": {
|
||||
"clear": "Rensa",
|
||||
"filtering_by": "Filtrera efter"
|
||||
},
|
||||
"header": "Konfigurera Home Assistant",
|
||||
"helpers": {
|
||||
"caption": "Hjälpare",
|
||||
@ -1285,6 +1322,7 @@
|
||||
"add_helper": "Lägg till hjälpare",
|
||||
"headers": {
|
||||
"editable": "Redigerbar",
|
||||
"entity_id": "Entitets-ID",
|
||||
"name": "Namn",
|
||||
"type": "Typ"
|
||||
}
|
||||
@ -1293,10 +1331,12 @@
|
||||
"input_boolean": "Växla",
|
||||
"input_datetime": "Datum och/eller tid",
|
||||
"input_number": "Nummer",
|
||||
"input_select": "Rullgardinsmenyn",
|
||||
"input_text": "Text"
|
||||
}
|
||||
},
|
||||
"integrations": {
|
||||
"add_integration": "Lägg till integration",
|
||||
"caption": "Integrationer",
|
||||
"config_entry": {
|
||||
"area": "I {area}",
|
||||
@ -1311,15 +1351,17 @@
|
||||
"no_area": "Inget område (\"area\")",
|
||||
"no_device": "Entitet utan enheter",
|
||||
"no_devices": "Denna integration har inga enheter.",
|
||||
"options": "Alternativ",
|
||||
"rename": "Döp om",
|
||||
"restart_confirm": "Starta om Home Assistant för att slutföra borttagningen av denna integration",
|
||||
"settings_button": "Redigera inställningar för {integration}",
|
||||
"system_options": "Systemalternativ",
|
||||
"system_options_button": "Systeminställningar för {integration}"
|
||||
},
|
||||
"config_flow": {
|
||||
"aborted": "Avbruten",
|
||||
"close": "Stäng",
|
||||
"created_config": "Skapad konfigurering för {name}.",
|
||||
"created_config": "Skapad konfiguration för {name}.",
|
||||
"dismiss": "Avfärda dialogrutan",
|
||||
"error_saving_area": "Fel vid sparande av område: {error}",
|
||||
"external_step": {
|
||||
@ -1327,6 +1369,7 @@
|
||||
"open_site": "Öppna webbplats"
|
||||
},
|
||||
"finish": "Slutför",
|
||||
"loading_first_time": "Vänligen vänta medan integrationen installeras",
|
||||
"not_all_required_fields": "Alla obligatoriska fält har inte fyllts i.",
|
||||
"submit": "Skicka"
|
||||
},
|
||||
@ -1347,16 +1390,23 @@
|
||||
"show_ignored": "Visa ignorerade integrationer",
|
||||
"stop_ignore": "Sluta ignorera"
|
||||
},
|
||||
"integration": "integration",
|
||||
"integration_not_found": "Integration hittades inte.",
|
||||
"new": "Skapa en ny integration",
|
||||
"no_integrations": "Verkar som att du inte har konfigurerat några integrationer. Klicka på knappen nedan för att lägga till din första integration!",
|
||||
"none": "Ingenting konfigurerat än",
|
||||
"none_found": "Inga integrationer hittades",
|
||||
"none_found_detail": "Justera dina sökkriterier.",
|
||||
"note_about_integrations": "Inte alla integrationer kan konfigureras via användargränssnittet ännu.",
|
||||
"note_about_website_reference": "Fler finns på "
|
||||
"note_about_website_reference": "Fler finns på ",
|
||||
"rename_dialog": "Redigera namnet på den här konfigurationsposten",
|
||||
"rename_input_label": "Ange namn"
|
||||
},
|
||||
"introduction": "Här går det att konfigurera dina komponenter och Home Assistant. Det är inte möjligt att ställa in allt från användargränssnittet ännu, men vi jobbar på det.",
|
||||
"lovelace": {
|
||||
"caption": "Lovelace kontrollpaneler",
|
||||
"dashboards": {
|
||||
"cant_edit_default": "Det går inte att redigera standardpanelen för Lovelace från användargränssnittet. Du kan dölja den genom att ange en annan instrumentpanel som standard.",
|
||||
"cant_edit_yaml": "Instrumentpaneler som definieras i YAML kan inte bli redigerade från användargränssnittet. Ändra dem i configuration.yaml.",
|
||||
"caption": "Kontrollpaneler",
|
||||
"conf_mode": {
|
||||
@ -1364,6 +1414,7 @@
|
||||
"yaml": "YAML-fil"
|
||||
},
|
||||
"confirm_delete": "Är du säker på att du vill radera denna instrumentpanel?",
|
||||
"default_dashboard": "Detta är standardpanelen",
|
||||
"detail": {
|
||||
"create": "Skapa",
|
||||
"delete": "Ta bort",
|
||||
@ -1371,9 +1422,12 @@
|
||||
"edit_dashboard": "Redigera instrumentpanel",
|
||||
"icon": "Ikon för sidofältet",
|
||||
"new_dashboard": "Lägg till instrumentpanel",
|
||||
"remove_default": "Ta bort som standard på den här enheten",
|
||||
"require_admin": "Endast admin",
|
||||
"set_default": "Ange som standard på den här enheten",
|
||||
"show_sidebar": "Visa i sidofältet",
|
||||
"title": "Sidofältets titel",
|
||||
"title_required": "Titel krävs.",
|
||||
"update": "Uppdatera",
|
||||
"url": "URL",
|
||||
"url_error_msg": "URL adressen ska innehålla ett '-' och kan inte innehålla mellanslag eller specialtecken, med undantag för '_ ' och '-'"
|
||||
@ -1382,12 +1436,13 @@
|
||||
"add_dashboard": "Lägg till instrumentpanel",
|
||||
"headers": {
|
||||
"conf_mode": "Konfigurationsmetod",
|
||||
"default": "Standard",
|
||||
"filename": "Filnamn",
|
||||
"require_admin": "Endast admin",
|
||||
"sidebar": "Visa i sidofältet",
|
||||
"title": "Titel"
|
||||
},
|
||||
"open": "Öppna instrumentpanel "
|
||||
"open": "Öppna"
|
||||
}
|
||||
},
|
||||
"description": "Konfigurera dina Lovelace kontrollpaneler",
|
||||
@ -1412,7 +1467,8 @@
|
||||
"headers": {
|
||||
"type": "Typ",
|
||||
"url": "URL"
|
||||
}
|
||||
},
|
||||
"no_resources": "Inga resurser"
|
||||
},
|
||||
"refresh_body": "Du behöver uppdatera sidan för att fortsätta med borttagningen, vill du uppdatera nu?",
|
||||
"refresh_header": "Vill du uppdatera?",
|
||||
@ -1483,6 +1539,9 @@
|
||||
"delete_scene": "Ta bort scenario",
|
||||
"edit_scene": "Redigera scenario",
|
||||
"header": "Scenarieredigerare",
|
||||
"headers": {
|
||||
"name": "Namn"
|
||||
},
|
||||
"introduction": "Scenarieredigeraren låter dig skapa och redigera scenario. Följ länken nedan för att läsa instruktionerna för att se till att du har konfigurerat Home Assistant korrekt.",
|
||||
"learn_more": "Läs dig mer om scenarier",
|
||||
"no_scenes": "Vi kunde inte hitta några redigerbara scenarier",
|
||||
@ -1510,9 +1569,13 @@
|
||||
"add_script": "Lägg till skript",
|
||||
"edit_script": "Redigera skript",
|
||||
"header": "Skript-redigerare",
|
||||
"headers": {
|
||||
"name": "Namn"
|
||||
},
|
||||
"introduction": "Skriptredigeraren låter dig skapa och redigera skript. Följ länken nedan för att läsa instruktionerna för att se till att du har konfigurerat Home Assistant korrekt.",
|
||||
"learn_more": "Lär dig mer om skript",
|
||||
"no_scripts": "Vi kunde inte hitta några redigerbara skript",
|
||||
"show_info": "Visa information om skript",
|
||||
"trigger_script": "Aktivera skript"
|
||||
}
|
||||
},
|
||||
@ -1561,6 +1624,7 @@
|
||||
"editor": {
|
||||
"activate_user": "Aktivera användare",
|
||||
"active": "Aktiva",
|
||||
"admin": "Administratör",
|
||||
"caption": "Visa användare",
|
||||
"change_password": "Ändra lösenord",
|
||||
"confirm_user_deletion": "Är du säker på att du vill ta bort {name} ?",
|
||||
@ -1568,10 +1632,20 @@
|
||||
"delete_user": "Ta bort användare",
|
||||
"group": "Grupp",
|
||||
"id": "ID",
|
||||
"name": "Namn",
|
||||
"owner": "Ägare",
|
||||
"system_generated": "Skapad av systemet",
|
||||
"system_generated_users_not_editable": "Det gick inte att uppdatera systemgenererade användare.",
|
||||
"system_generated_users_not_removable": "Det går inte att ta bort användare som skapats av systemet.",
|
||||
"unnamed_user": "Namnlös användare"
|
||||
"unnamed_user": "Namnlös användare",
|
||||
"update_user": "Uppdatera"
|
||||
},
|
||||
"picker": {
|
||||
"headers": {
|
||||
"group": "Grupp",
|
||||
"name": "Namn",
|
||||
"system": "System"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zha": {
|
||||
@ -1914,19 +1988,30 @@
|
||||
"card": {
|
||||
"alarm-panel": {
|
||||
"available_states": "Tillgängliga tillstånd",
|
||||
"description": "Med larmpanelkortet kan du aktivera och avaktivera integrering av larmkontrollpanelen.",
|
||||
"name": "Larmpanel"
|
||||
},
|
||||
"button": {
|
||||
"description": "Knappkortet låter dig lägga till knappar för att utföra uppgifter.",
|
||||
"name": "Knapp"
|
||||
},
|
||||
"conditional": {
|
||||
"name": "Villkorlig"
|
||||
"card": "Kort",
|
||||
"change_type": "Ändra typ",
|
||||
"condition_explanation": "Kortet kommer att visas när ALLA villkor nedan är uppfyllda.",
|
||||
"conditions": "Villkor",
|
||||
"current_state": "nuvarande",
|
||||
"description": "Villkorskortet visar ett annat kort baserat på entitetstillstånd.",
|
||||
"name": "Villkorlig",
|
||||
"state_equal": "Tillståndet är lika med",
|
||||
"state_not_equal": "Tillståndet är inte lika med"
|
||||
},
|
||||
"config": {
|
||||
"optional": "Valfri",
|
||||
"required": "Krävs"
|
||||
},
|
||||
"entities": {
|
||||
"description": "Entitetskortet är den vanligaste korttypen. Det grupperar objekt i listor.",
|
||||
"name": "Enheter",
|
||||
"show_header_toggle": "Visa rubrikväljare?",
|
||||
"toggle": "Växla entiteter."
|
||||
@ -1934,6 +2019,10 @@
|
||||
"entity-filter": {
|
||||
"name": "Enhetsfilter"
|
||||
},
|
||||
"entity": {
|
||||
"description": "Entitetskortet ger dig en snabb överblick över dina entiteters tillstånd.",
|
||||
"name": "Entitet"
|
||||
},
|
||||
"gauge": {
|
||||
"name": "Mätare",
|
||||
"severity": {
|
||||
@ -1948,6 +2037,7 @@
|
||||
"attribute": "Attribut",
|
||||
"camera_image": "Kameraentitet",
|
||||
"camera_view": "Kamerauppdatering",
|
||||
"double_tap_action": "Dubbeltrycksåtgärd",
|
||||
"entities": "Entiteter",
|
||||
"entity": "Entitet",
|
||||
"hold_action": "Händelse vid nedtryckt",
|
||||
@ -1959,10 +2049,12 @@
|
||||
"maximum": "",
|
||||
"minimum": "",
|
||||
"name": "Namn",
|
||||
"no_theme": "Inget tema",
|
||||
"refresh_interval": "Uppdateringsintervall",
|
||||
"show_icon": "Visa ikon?",
|
||||
"show_name": "Visa namn?",
|
||||
"show_state": "Visa tillstånd?",
|
||||
"state": "Tillstånd",
|
||||
"tap_action": "Händelse vid klick",
|
||||
"theme": "Tema",
|
||||
"title": "Rubrik",
|
||||
@ -1974,26 +2066,32 @@
|
||||
"name": "Blick"
|
||||
},
|
||||
"history-graph": {
|
||||
"description": "Historikdiagramkortet låter dig att visa en graf för varje listad enhet.",
|
||||
"name": "Historikdiagram"
|
||||
},
|
||||
"horizontal-stack": {
|
||||
"name": "Vågrät stapel"
|
||||
"name": "Vågrät trave"
|
||||
},
|
||||
"iframe": {
|
||||
"name": "iFrame"
|
||||
"description": "Webbsidakortet låter dig bädda in din favoritwebbplats direkt i Home Assistant.",
|
||||
"name": "Webbsida"
|
||||
},
|
||||
"light": {
|
||||
"description": "Med ljuskortet kan du ändra ljusets ljusstyrka.",
|
||||
"name": "Lampa"
|
||||
},
|
||||
"map": {
|
||||
"dark_mode": "Mörkt läge?",
|
||||
"default_zoom": "Standardzoom",
|
||||
"description": "Kartkortet som gör att du kan visa entiteter på en karta.",
|
||||
"geo_location_sources": "Geografiska källor",
|
||||
"hours_to_show": "Timmar att Visa",
|
||||
"name": "Karta",
|
||||
"source": "Källa"
|
||||
},
|
||||
"markdown": {
|
||||
"content": "Innehåll",
|
||||
"description": "Markdown-kortet används för att återge Markdown.",
|
||||
"name": "Markdown"
|
||||
},
|
||||
"media-control": {
|
||||
@ -2027,12 +2125,17 @@
|
||||
"name": "Termostat"
|
||||
},
|
||||
"vertical-stack": {
|
||||
"name": "Vertikaltrave"
|
||||
"name": "Vertikal trave"
|
||||
},
|
||||
"weather-forecast": {
|
||||
"description": "Kortet Väderprognos visar vädret. Mycket användbart att inkludera på gränssnitt som man visar på väggen.",
|
||||
"name": "Väderprognos"
|
||||
}
|
||||
},
|
||||
"cardpicker": {
|
||||
"custom_card": "Anpassad",
|
||||
"no_description": "Ingen beskrivning finns tillgänglig."
|
||||
},
|
||||
"edit_card": {
|
||||
"add": "Lägg till kort",
|
||||
"delete": "Ta bort kort",
|
||||
@ -2061,7 +2164,11 @@
|
||||
"move_left": "Flytta vyn åt vänster",
|
||||
"move_right": "Flytta vyn åt höger",
|
||||
"tab_badges": "Märken",
|
||||
"tab_settings": "Inställningar"
|
||||
"tab_settings": "Inställningar",
|
||||
"tab_visibility": "Synlighet",
|
||||
"visibility": {
|
||||
"select_users": "Välj vilka användare som ska se den här vyn i navigeringen"
|
||||
}
|
||||
},
|
||||
"header": "Ändra användargränssnittet",
|
||||
"menu": {
|
||||
@ -2079,7 +2186,7 @@
|
||||
"confirm_remove_config_title": "Är du säker på att du vill ta bort din Lovelace UI konfiguration? Vi kommer automatiskt att generera dina Lovelace UI-vyer med dina områden och enheter.",
|
||||
"confirm_unsaved_changes": "Du har osparade ändringar. Är du säker på att du vill avsluta?",
|
||||
"confirm_unsaved_comments": "Din konfiguration innehåller kommentarer, dessa sparas inte. Vill du fortsätta?",
|
||||
"error_invalid_config": "Din konfigurering är inte giltig: {error}",
|
||||
"error_invalid_config": "Din konfiguration är inte giltig: {error}",
|
||||
"error_parse_yaml": "Det går inte att analysera YAML: {error}",
|
||||
"error_remove": "Det går inte att ta bort konfigurationen: {error}",
|
||||
"error_save_yaml": "Det gick inte att spara YAML: {error}",
|
||||
@ -2092,6 +2199,7 @@
|
||||
"save_config": {
|
||||
"cancel": "Glöm det",
|
||||
"close": "Stäng",
|
||||
"empty_config": "Börja med en tom instrumentpanel",
|
||||
"header": "Ta kontroll över Lovelace UI",
|
||||
"para": "Home Assistant kommer som standard att behålla ditt användargränssnitt, uppdatera det när nya enheter eller Lovelace-komponenter blir tillgängliga. Om du tar kontroll kommer vi inte längre göra ändringar automatiskt för dig.",
|
||||
"para_sure": "Är du säker på att du vill ta kontroll över ditt användargränssnitt?",
|
||||
@ -2108,7 +2216,8 @@
|
||||
"view": {
|
||||
"panel_mode": {
|
||||
"description": "Detta gör att det första kortet utnyttjar hela bredden i denna vyn.",
|
||||
"title": "Panelläge?"
|
||||
"title": "Panelläge?",
|
||||
"warning_multiple_cards": "Den här vyn innehåller mer än ett kort, men en panelvy kan bara visa 1 kort."
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2117,9 +2226,14 @@
|
||||
"configure_ui": "Konfigurera användargränssnittet",
|
||||
"exit_edit_mode": "Avsluta UI-redigeringsläge",
|
||||
"help": "Hjälp",
|
||||
"refresh": "Uppdatera"
|
||||
"refresh": "Uppdatera",
|
||||
"reload_resources": "Ladda om resurser"
|
||||
},
|
||||
"reload_lovelace": "Ladda om användargränssnittet",
|
||||
"reload_resources": {
|
||||
"refresh_body": "Du måste uppdatera sidan för att slutföra omladdningen, vill du uppdatera nu?",
|
||||
"refresh_header": "Vill du uppdatera?"
|
||||
},
|
||||
"unused_entities": {
|
||||
"available_entities": "Det här är de enheter som du har tillgängliga, men som inte finns i ditt Lovelace-gränssnitt än.",
|
||||
"domain": "Domän",
|
||||
@ -2130,9 +2244,13 @@
|
||||
"title": "Oanvända enheter"
|
||||
},
|
||||
"views": {
|
||||
"confirm_delete": "Är du säker på att du vill ta bort den här vyn?"
|
||||
"confirm_delete": "Radera vyn?",
|
||||
"confirm_delete_existing_cards": "Om du tar bort den här vyn tas även korten bort",
|
||||
"confirm_delete_existing_cards_text": "Vill du ta bort vyn '{name}'? Vyn innehåller {number}-kort som ska tas bort. Det går inte att ångra den här åtgärden.",
|
||||
"confirm_delete_text": "Är du säker på att du vill ta bort vyn '{namn}'?"
|
||||
},
|
||||
"warning": {
|
||||
"attribute_not_found": "Attribut {attribute} inte tillgängligt i: {entity}",
|
||||
"entity_non_numeric": "Enheten är icke-numerisk: {entity}",
|
||||
"entity_not_found": "Enheten är ej tillgänglig: {entity}",
|
||||
"entity_unavailable": "{entity} är otillgänglig"
|
||||
@ -2330,6 +2448,11 @@
|
||||
"submit": "Skicka"
|
||||
},
|
||||
"current_user": "Du är inloggad som {fullName}.",
|
||||
"dashboard": {
|
||||
"description": "Välj en standardpanel för den här enheten.",
|
||||
"dropdown_label": "Instrumentpanel",
|
||||
"header": "Instrumentpanel"
|
||||
},
|
||||
"force_narrow": {
|
||||
"description": "Detta kommer att dölja sidofältet som standard, liknande mobilupplevelsen.",
|
||||
"header": "Göm alltid sidofältet"
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Durduruldu"
|
||||
},
|
||||
"default": {
|
||||
"off": "Kapalı",
|
||||
"on": "Açık",
|
||||
"unavailable": "Mevcut değil",
|
||||
"unknown": "Bilinmeyen"
|
||||
},
|
||||
@ -601,7 +603,9 @@
|
||||
"password": "Şifre",
|
||||
"text": "Metin"
|
||||
},
|
||||
"required_error_msg": "Bu alan gereklidir"
|
||||
"platform_not_loaded": "{platform} entegrasyonu yüklenmedi. Lütfen 'default_config:' veya '{platform}:' ekleyerek onu yapılandırmanıza dahil edin.",
|
||||
"required_error_msg": "Bu alan gereklidir",
|
||||
"yaml_not_editable": "Bu varlığın ayarları kullanıcı arayüzünden düzenlenemez. Yalnızca kullanıcı arayüzünden tanımlanan varlıklar kullanıcı arayüzünden yapılandırılabilir."
|
||||
},
|
||||
"more_info_control": {
|
||||
"dismiss": "İletişim kutusunu kapat",
|
||||
@ -1355,6 +1359,7 @@
|
||||
},
|
||||
"description": "Lovelace kontrol panellerinizi yapılandırın",
|
||||
"resources": {
|
||||
"cant_edit_yaml": "Lovelace'ı YAML modunda kullanıyorsunuz, bu nedenle kaynaklarınızı kullanıcı arayüzü üzerinden yönetemezsiniz. Onları configuration.yaml dosyasında yönetin.",
|
||||
"caption": "Kaynaklar",
|
||||
"confirm_delete": "Bu kaynağı silmek istediğinizden emin misiniz?",
|
||||
"detail": {
|
||||
@ -2007,7 +2012,8 @@
|
||||
"header": "Lovelace kullanıcı arayüzünü kontrolünüz altına alın",
|
||||
"para": "Home Assistant varsayılan olarak kullanıcı arayüzünüzü yönetecek, yeni Lovelace bileşenleri ya da varlıklar kullanıma sunulduğunda onu güncelleyecektir. Eğer bunu kontrolünüz altına almak istiyorsanız daha sonra biz sizin için bu değişiklikleri otomatik olarak gerçekleştiremeyeceğiz.",
|
||||
"para_sure": "Kullanıcı arayüzünüzü kontrol altına almak istediğinize emin misiniz?",
|
||||
"save": "Kontrol altına al"
|
||||
"save": "Kontrol altına al",
|
||||
"yaml_mode": "Bu gösterge tablosu için YAML modunu kullanıyorsunuz. Bunun anlamı, Lovelace yapılandırmanızı kullanıcı arayüzünden değiştiremezsiniz. Bu gösterge tablosunu kullanıcı arayüzünden yönetmek istiyorsanız, 'configuration: yaml' içindeki Lovelace yapılandırmanızdan 'mode: yaml' öğesini kaldırın."
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "Lovelace kullanıcı arayüzüne ekle",
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "Призупинено"
|
||||
},
|
||||
"default": {
|
||||
"off": "Вимкнено",
|
||||
"on": "Увімкнено",
|
||||
"unavailable": "Недоступний",
|
||||
"unknown": "Невідомо"
|
||||
},
|
||||
@ -439,6 +441,7 @@
|
||||
"attributes": {
|
||||
"air_pressure": "Тиск повітря",
|
||||
"humidity": "Вологість",
|
||||
"precipitation": "Опади",
|
||||
"temperature": "Температура",
|
||||
"visibility": "Видимість",
|
||||
"wind_speed": "Швидкість вітру"
|
||||
@ -461,7 +464,9 @@
|
||||
"wnw": "WNW",
|
||||
"wsw": "WSW"
|
||||
},
|
||||
"forecast": "Прогноз"
|
||||
"forecast": "Прогноз",
|
||||
"high": "Високий",
|
||||
"low": "Низький"
|
||||
}
|
||||
},
|
||||
"common": {
|
||||
@ -472,6 +477,7 @@
|
||||
"save": "Зберегти",
|
||||
"successfully_deleted": "Успішно видалено",
|
||||
"successfully_saved": "Успішно збережено",
|
||||
"undo": "Скасувати",
|
||||
"yes": "Так"
|
||||
},
|
||||
"components": {
|
||||
@ -552,6 +558,17 @@
|
||||
"stop": "Зупинити"
|
||||
}
|
||||
},
|
||||
"mqtt_device_debug_info": {
|
||||
"deserialize": "Розібрати MQTT повідомлення як JSON",
|
||||
"entities": "Об'єкти",
|
||||
"no_entities": "Немає об'єктів",
|
||||
"no_triggers": "Жодних тригерів",
|
||||
"payload_display": "Відображення корисного навантаження",
|
||||
"recent_messages": "{n} останніх отриманих повідомлень",
|
||||
"show_as_yaml": "Показати як YAML",
|
||||
"title": "інформація про налагодження {device}",
|
||||
"triggers": "Тригери"
|
||||
},
|
||||
"options_flow": {
|
||||
"form": {
|
||||
"header": "Параметри"
|
||||
@ -572,7 +589,8 @@
|
||||
"buttons": {
|
||||
"add": "Додати пристрої",
|
||||
"reconfigure": "Переналаштувати пристрій",
|
||||
"remove": "Видалити пристрій"
|
||||
"remove": "Видалити пристрій",
|
||||
"zigbee_information": "Інформація Zigbee"
|
||||
},
|
||||
"last_seen": "Останній раз",
|
||||
"manuf": "Виробник: {manufacturer}",
|
||||
@ -622,6 +640,10 @@
|
||||
},
|
||||
"areas": {
|
||||
"caption": "Реєстр приміщень",
|
||||
"data_table": {
|
||||
"area": "Приміщення",
|
||||
"devices": "Пристрої"
|
||||
},
|
||||
"delete": {
|
||||
"confirmation_text": "Усі пристрої в цій області стануть непризначеними.",
|
||||
"confirmation_title": "Ви дійсно бажаєте видалити цю область?"
|
||||
@ -860,6 +882,9 @@
|
||||
"delete_confirm": "Ви впевнені, що хочете видалити цю автоматизацію?",
|
||||
"edit_automation": "Редагувати автоматизацію",
|
||||
"header": "Редактор автоматизації",
|
||||
"headers": {
|
||||
"name": "Назва"
|
||||
},
|
||||
"introduction": "Редактор автоматизації дозволяє створювати та редагувати автоматизації. Будь ласка, прочитайте [інструкції] (https://home-assistant.io/docs/automation/editor/), щоб переконатися, що ви правильно налаштували Home Assistant.",
|
||||
"learn_more": "Докладніше про автоматизації",
|
||||
"no_automations": "Ми не знайшли автоматизації для редагування",
|
||||
@ -1095,6 +1120,7 @@
|
||||
"delete": "Видалити",
|
||||
"description": "Керування підключеними пристроями",
|
||||
"device_not_found": "Пристрій не знайдено",
|
||||
"no_devices": "Немає пристроїв",
|
||||
"scenes": "Сцени",
|
||||
"scripts": "Скрипти",
|
||||
"unknown_error": "Невідома помилка",
|
||||
@ -1123,11 +1149,17 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"filtering": {
|
||||
"clear": "Очистити",
|
||||
"filtering_by": "Фільтрування за"
|
||||
},
|
||||
"header": "Налаштуваня Home Assistant",
|
||||
"integrations": {
|
||||
"add_integration": "Додати інтеграцію",
|
||||
"caption": "Інтеграція",
|
||||
"config_entry": {
|
||||
"area": "У {area}",
|
||||
"delete": "Видалити",
|
||||
"delete_button": "Видалити {integration}",
|
||||
"delete_confirm": "Ви впевнені, що хочете видалити цю інтеграцію?",
|
||||
"device_unavailable": "пристрій недоступний",
|
||||
@ -1138,8 +1170,11 @@
|
||||
"no_area": "Приміщення не вказано",
|
||||
"no_device": "Об'єкти без пристроїв",
|
||||
"no_devices": "Ця інтеграція не має пристроїв.",
|
||||
"options": "Параметри",
|
||||
"rename": "Перейменувати",
|
||||
"restart_confirm": "Перезавантажте Home Assistant, щоб завершити видалення цієї інтеграції",
|
||||
"settings_button": "Редагувати налаштування для {integration}",
|
||||
"system_options": "Системні параметри",
|
||||
"system_options_button": "Системні параметри для {integration}"
|
||||
},
|
||||
"config_flow": {
|
||||
@ -1174,11 +1209,15 @@
|
||||
"show_ignored": "Показати ігноровані інтеграції",
|
||||
"stop_ignore": "Припинити ігнорування"
|
||||
},
|
||||
"integration": "інтеграція",
|
||||
"integration_not_found": "Інтеграція не знайдена.",
|
||||
"new": "Налаштуйте нову інтеграцію",
|
||||
"none": "Ще нічого не налаштовано",
|
||||
"none_found": "Інтеграції не знайдено",
|
||||
"none_found_detail": "Налаштуйте критерії пошуку.",
|
||||
"note_about_integrations": "Ще не всі інтеграції можна налаштувати через інтерфейс користувача.",
|
||||
"note_about_website_reference": "Більше можна знайти на"
|
||||
"note_about_website_reference": "Більше можна знайти на",
|
||||
"rename_input_label": "Ім'я запису"
|
||||
},
|
||||
"introduction": "Тут можна налаштувати свої компоненти та Home Assistant. Не все можна налаштувати з інтерфейсу користувача, але ми працюємо над цим.",
|
||||
"lovelace": {
|
||||
@ -1250,6 +1289,9 @@
|
||||
"delete_scene": "Видалити сцену",
|
||||
"edit_scene": "Редагувати сцену",
|
||||
"header": "Редактор сцен",
|
||||
"headers": {
|
||||
"name": "Назва"
|
||||
},
|
||||
"introduction": "Редактор скриптів дозволяє створювати та редагувати скрипти. Перейдіть за посиланням нижче, щоб прочитати вказівки, щоб переконатися, що ви правильно налаштували Home Assistant.",
|
||||
"learn_more": "Докладніше про сцени",
|
||||
"no_scenes": "Ми не змогли знайти жодної редагованої сцени",
|
||||
@ -1277,9 +1319,13 @@
|
||||
"add_script": "Додати скрипт",
|
||||
"edit_script": "Редагувати скрипт",
|
||||
"header": "Редактор скриптів ",
|
||||
"headers": {
|
||||
"name": "Назва"
|
||||
},
|
||||
"introduction": "Редактор скриптів дозволяє створювати та редагувати скрипти. Перейдіть за посиланням нижче, щоб прочитати вказівки, щоб переконатися, що ви правильно налаштували Home Assistant.",
|
||||
"learn_more": "Дізнатися більше про скрипти",
|
||||
"no_scripts": "Не вдалося знайти жодного скрипту для редагування",
|
||||
"show_info": "Показати інформацію про сценарій",
|
||||
"trigger_script": "Тригер скрипту"
|
||||
}
|
||||
},
|
||||
@ -1328,6 +1374,7 @@
|
||||
"editor": {
|
||||
"activate_user": "Активувати користувача",
|
||||
"active": "Активний",
|
||||
"admin": "Адміністратора",
|
||||
"caption": "Переглянути користувача",
|
||||
"change_password": "Змінити пароль",
|
||||
"confirm_user_deletion": "Справді видалити {name} ?",
|
||||
@ -1335,10 +1382,19 @@
|
||||
"delete_user": "Видалити користувача",
|
||||
"group": "Група",
|
||||
"id": "ID",
|
||||
"name": "Назва",
|
||||
"owner": "Власник",
|
||||
"system_generated": "Системний",
|
||||
"system_generated_users_not_removable": "Не вдається видалити користувачів, створених системою.",
|
||||
"unnamed_user": "Безіменний користувач"
|
||||
"unnamed_user": "Безіменний користувач",
|
||||
"update_user": "Оновити"
|
||||
},
|
||||
"picker": {
|
||||
"headers": {
|
||||
"group": "Група",
|
||||
"name": "Назва",
|
||||
"system": "Система"
|
||||
}
|
||||
}
|
||||
},
|
||||
"zha": {
|
||||
@ -1644,6 +1700,9 @@
|
||||
"entity-filter": {
|
||||
"name": "Фільтр об'єкта"
|
||||
},
|
||||
"entity": {
|
||||
"name": "Об'єкт"
|
||||
},
|
||||
"gauge": {
|
||||
"name": "Датчик",
|
||||
"severity": {
|
||||
@ -1655,8 +1714,10 @@
|
||||
},
|
||||
"generic": {
|
||||
"aspect_ratio": "Пропорції",
|
||||
"attribute": "Атрибут",
|
||||
"camera_image": "Сутність камери",
|
||||
"camera_view": "Перегляд камери",
|
||||
"double_tap_action": "Дія при подвійному дотику",
|
||||
"entities": "Об'єкти",
|
||||
"entity": "Об'єкт",
|
||||
"hold_action": "Дія при утримуванні",
|
||||
@ -1701,6 +1762,7 @@
|
||||
"default_zoom": "Масштабування за замовчуванням",
|
||||
"description": "Карта карти дозволяє відображати об'єкти на карті.",
|
||||
"geo_location_sources": "Джерела геолокації",
|
||||
"hours_to_show": "Годин, щоб показати",
|
||||
"name": "Мапа",
|
||||
"source": "Джерело"
|
||||
},
|
||||
@ -1748,6 +1810,10 @@
|
||||
"name": "Прогноз погоди"
|
||||
}
|
||||
},
|
||||
"cardpicker": {
|
||||
"custom_card": "Особлива",
|
||||
"no_description": "Опис відсутній."
|
||||
},
|
||||
"edit_card": {
|
||||
"add": "Додати картку",
|
||||
"delete": "Видалити",
|
||||
@ -1801,6 +1867,7 @@
|
||||
},
|
||||
"save_config": {
|
||||
"cancel": "Неважливо",
|
||||
"empty_config": "Почніть з порожньої панелі",
|
||||
"header": "Візьміть під свій контроль Lovelace UI",
|
||||
"para": "За замовчуванням Home Assistant буде підтримувати ваш інтерфейс, оновлюючи його, коли з'являться нові об'єкти або компоненти Lovelace. Якщо ви візьмете під контроль, ми більше не будемо автоматично вносити зміни для вас.",
|
||||
"para_sure": "Ви впевнені, що хочете взяти під свій контроль інтерфейс?",
|
||||
@ -1845,7 +1912,8 @@
|
||||
"warning": {
|
||||
"attribute_not_found": "Атрибут {attribute} недоступний у: {entity}",
|
||||
"entity_non_numeric": "Об'єкт не є числовим: {entity}",
|
||||
"entity_not_found": "Об'єкт не доступний: {entity}"
|
||||
"entity_not_found": "Об'єкт не доступний: {entity}",
|
||||
"entity_unavailable": "{entity} наразі недоступний."
|
||||
}
|
||||
},
|
||||
"mailbox": {
|
||||
@ -2039,6 +2107,10 @@
|
||||
"submit": "Відправити"
|
||||
},
|
||||
"current_user": "Ви ввійшли як {fullName}.",
|
||||
"dashboard": {
|
||||
"dropdown_label": "Панель",
|
||||
"header": "Панель"
|
||||
},
|
||||
"force_narrow": {
|
||||
"description": "Це дозволить приховати бічну панель за замовчуванням, як і для мобільних пристроїв.",
|
||||
"header": "Завжди приховувати бічну панель"
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "已停止"
|
||||
},
|
||||
"default": {
|
||||
"off": "关",
|
||||
"on": "开",
|
||||
"unavailable": "不可用",
|
||||
"unknown": "未知"
|
||||
},
|
||||
@ -471,11 +473,15 @@
|
||||
}
|
||||
},
|
||||
"common": {
|
||||
"and": "并且",
|
||||
"cancel": "取消",
|
||||
"close": "关闭",
|
||||
"delete": "删除",
|
||||
"loading": "加载中",
|
||||
"next": "下一步",
|
||||
"no": "否",
|
||||
"previous": "上一步",
|
||||
"refresh": "刷新",
|
||||
"save": "保存",
|
||||
"successfully_deleted": "已成功删除",
|
||||
"successfully_saved": "保存成功",
|
||||
@ -735,6 +741,10 @@
|
||||
"triggered": "已触发 {name}"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "我的日历",
|
||||
"today": "今天"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "缺少某些配置选项?请启用高级模式",
|
||||
@ -837,6 +847,9 @@
|
||||
},
|
||||
"label": "设备"
|
||||
},
|
||||
"not": {
|
||||
"label": "非"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "大于",
|
||||
"below": "小于",
|
||||
@ -1168,7 +1181,9 @@
|
||||
"edit_requires_storage": "编辑器已禁用,因为配置存储于 configuration.yaml。",
|
||||
"elevation": "海拔",
|
||||
"elevation_meters": "米",
|
||||
"external_url": "外部 URL",
|
||||
"imperial_example": "华氏、磅",
|
||||
"internal_url": "内部 URL",
|
||||
"latitude": "纬度",
|
||||
"location_name": "Home Assistant 安装的名称",
|
||||
"longitude": "经度",
|
||||
@ -1235,6 +1250,7 @@
|
||||
},
|
||||
"delete": "删除",
|
||||
"description": "管理已连接的设备",
|
||||
"device_info": "设备信息",
|
||||
"device_not_found": "未找到设备。",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "添加设备的所有实体到 Lovelace UI",
|
||||
@ -1397,6 +1413,8 @@
|
||||
"new": "设置新集成",
|
||||
"no_integrations": "您好像还没有配置任何集成。点击下面的按钮来添加第一个集成!",
|
||||
"none": "尚未配置任何集成",
|
||||
"none_found": "未找到集成",
|
||||
"none_found_detail": "请调整搜索条件。",
|
||||
"note_about_integrations": "并非所有集成都可以通过 UI 进行配置。",
|
||||
"note_about_website_reference": "更多可用信息,尽在 ",
|
||||
"rename_dialog": "编辑此配置项的名称",
|
||||
@ -2090,7 +2108,7 @@
|
||||
"default_zoom": "默认缩放",
|
||||
"description": "“地图”卡片用于在地图上显示实体。",
|
||||
"geo_location_sources": "地理位置来源",
|
||||
"hours_to_show": "显示时间",
|
||||
"hours_to_show": "显示指定小时数的路径",
|
||||
"name": "地图",
|
||||
"source": "位置来源"
|
||||
},
|
||||
@ -2216,12 +2234,12 @@
|
||||
"close": "关闭",
|
||||
"empty_config": "从空白仪表盘开始",
|
||||
"header": "自行编辑您的 Lovelace UI",
|
||||
"para": "默认情况下,Home Assistant 将维护您的用户界面,并在新的实体或 Lovelace 组件可用时更新它。如果您选择自行编辑,我们将不再自动为您进行更改。",
|
||||
"para": "该仪表盘目前由 Home Assistant 维护,当新的实体或 Lovelace 组件可用时会自动更新。如果您选择自行编辑,将不再自动更新仪表盘。您始终可以在配置中新建一个仪表盘用于试验。",
|
||||
"para_sure": "您确定要自行编辑用户界面吗?",
|
||||
"save": "自行编辑",
|
||||
"yaml_config": "为方便您开始,以下是此仪表盘的当前配置:",
|
||||
"yaml_control": "要以 YAML 模式下自行编辑,请创建 YAML 文件并命名为在配置中为此仪表盘指定的名称,或使用默认的 'ui-lovelace.yaml'。",
|
||||
"yaml_mode": "您正在使用 YAML 模式,因此无法从 UI 更改 Lovelace 配置。如果要从 UI 更改 Lovelace,请从 'configuration.yaml' 中的 Lovelace 配置中删除 'mode: yaml'。"
|
||||
"yaml_mode": "此仪表盘正在使用 YAML 模式,因此无法从 UI 更改 Lovelace 配置。若要从 UI 管理此仪表盘,请从 'configuration.yaml' 中的 Lovelace 配置中删除 'mode: yaml'。"
|
||||
},
|
||||
"suggest_card": {
|
||||
"add": "添加至 Lovelace UI",
|
||||
|
@ -206,6 +206,8 @@
|
||||
"stopped": "停止"
|
||||
},
|
||||
"default": {
|
||||
"off": "關閉",
|
||||
"on": "開啟",
|
||||
"unavailable": "不可用",
|
||||
"unknown": "未知"
|
||||
},
|
||||
@ -475,7 +477,10 @@
|
||||
"close": "關閉",
|
||||
"delete": "刪除",
|
||||
"loading": "讀取中",
|
||||
"next": "下一步",
|
||||
"no": "否",
|
||||
"previous": "上一步",
|
||||
"refresh": "更新",
|
||||
"save": "儲存",
|
||||
"successfully_deleted": "成功刪除",
|
||||
"successfully_saved": "成功儲存",
|
||||
@ -735,6 +740,10 @@
|
||||
"triggered": "觸發 {name}"
|
||||
},
|
||||
"panel": {
|
||||
"calendar": {
|
||||
"my_calendars": "我的行事曆",
|
||||
"today": "今天"
|
||||
},
|
||||
"config": {
|
||||
"advanced_mode": {
|
||||
"hint_enable": "找不到設定選項?開啟進階模式",
|
||||
@ -837,6 +846,9 @@
|
||||
},
|
||||
"label": "設備"
|
||||
},
|
||||
"not": {
|
||||
"label": "未"
|
||||
},
|
||||
"numeric_state": {
|
||||
"above": "在...之上",
|
||||
"below": "在...之下",
|
||||
@ -1235,6 +1247,7 @@
|
||||
},
|
||||
"delete": "刪除",
|
||||
"description": "管理已連線設備",
|
||||
"device_info": "設備資訊",
|
||||
"device_not_found": "未找到設備。",
|
||||
"entities": {
|
||||
"add_entities_lovelace": "新增至 Lovelace UI",
|
||||
@ -1344,8 +1357,8 @@
|
||||
"delete_button": "刪除 {integration}",
|
||||
"delete_confirm": "確定要刪除此整合?",
|
||||
"device_unavailable": "設備不可用",
|
||||
"devices": "{count} {count, plural,\n one {設備}\n other {設備}\n}",
|
||||
"entities": "{count} {count, plural,\n one {物件}\n other {物件}\n}",
|
||||
"devices": "{count} {count, plural,\n one {個設備}\n other {個設備}\n}",
|
||||
"entities": "{count} {count, plural,\n one {個物件}\n other {個物件}\n}",
|
||||
"entity_unavailable": "物件不可用",
|
||||
"firmware": "韌體:{version}",
|
||||
"hub": "連線:",
|
||||
@ -1397,6 +1410,8 @@
|
||||
"new": "設定新整合",
|
||||
"no_integrations": "目前似乎沒有設定任何整合。點選下方新增按鈕以新增第一個整合!",
|
||||
"none": "尚未設定",
|
||||
"none_found": "找不到相關整合。",
|
||||
"none_found_detail": "調整搜尋條件。",
|
||||
"note_about_integrations": "目前並非所有整合皆可以透過 UI 進行設定。",
|
||||
"note_about_website_reference": "更多資訊請參閱",
|
||||
"rename_dialog": "編輯設定物件名稱",
|
||||
|
Loading…
x
Reference in New Issue
Block a user