diff --git a/homeassistant/components/accuweather/translations/ca.json b/homeassistant/components/accuweather/translations/ca.json index 46279c46f56..72eea7f65cc 100644 --- a/homeassistant/components/accuweather/translations/ca.json +++ b/homeassistant/components/accuweather/translations/ca.json @@ -5,12 +5,29 @@ }, "error": { "cannot_connect": "Ha fallat la connexi\u00f3", - "invalid_api_key": "Clau API inv\u00e0lida" + "invalid_api_key": "Clau API inv\u00e0lida", + "requests_exceeded": "S'ha superat el nombre m\u00e0xim de sol\u00b7licituds permeses a l'API d'AccuWeather. Has d'esperar-te o canviar la clau API." + }, + "step": { + "user": { + "data": { + "api_key": "Clau API", + "latitude": "Latitud", + "longitude": "Longitud", + "name": "Nom de la integraci\u00f3" + }, + "description": "Si necessites ajuda amb la configuraci\u00f3, consulta: https://www.home-assistant.io/integrations/accuweather/ \n\n La previsi\u00f3 meteorol\u00f2gica no est\u00e0 habilitada de manera predeterminada. Pots activar-la en les opcions de la integraci\u00f3.", + "title": "AccuWeather" + } } }, "options": { "step": { "user": { + "data": { + "forecast": "Previsi\u00f3 meteorol\u00f2gica" + }, + "description": "Per culpa de les limitacions de la versi\u00f3 gratu\u00efta l'API d'AccuWeather, quan habilitis la previsi\u00f3 meteorol\u00f2gica, les actualitzacions es realitzaran cada 64 minuts en comptes de 32.", "title": "Opcions d'AccuWeather" } } diff --git a/homeassistant/components/accuweather/translations/es.json b/homeassistant/components/accuweather/translations/es.json new file mode 100644 index 00000000000..88094786c51 --- /dev/null +++ b/homeassistant/components/accuweather/translations/es.json @@ -0,0 +1,32 @@ +{ + "config": { + "abort": { + "single_instance_allowed": "Ya est\u00e1 configurado. S\u00f3lo es posible una \u00fanica configuraci\u00f3n." + }, + "error": { + "cannot_connect": "No se pudo conectar", + "invalid_api_key": "Clave API no v\u00e1lida" + }, + "step": { + "user": { + "data": { + "api_key": "Clave API", + "latitude": "Latitud", + "longitude": "Longitud", + "name": "Nombre de la integraci\u00f3n" + }, + "title": "AccuWeather" + } + } + }, + "options": { + "step": { + "user": { + "data": { + "forecast": "Pron\u00f3stico del tiempo" + }, + "title": "Opciones de AccuWeather" + } + } + } +} \ No newline at end of file diff --git a/homeassistant/components/accuweather/translations/no.json b/homeassistant/components/accuweather/translations/no.json index e99a1d62746..e0197581db6 100644 --- a/homeassistant/components/accuweather/translations/no.json +++ b/homeassistant/components/accuweather/translations/no.json @@ -1,9 +1,29 @@ { "config": { + "error": { + "requests_exceeded": "Det tillatte antallet foresp\u00f8rsler til Accuweather API er overskredet. Du m\u00e5 vente eller endre API-n\u00f8kkel." + }, "step": { "user": { + "data": { + "latitude": "Breddegrad", + "longitude": "Lengdegrad", + "name": "Navn p\u00e5 integrasjon" + }, + "description": "Hvis du trenger hjelp med konfigurasjonen, kan du se her: https://www.home-assistant.io/integrations/accuweather/ \n\n V\u00e6rmelding er ikke aktivert som standard. Du kan aktivere det i integrasjonsalternativene.", "title": "" } } + }, + "options": { + "step": { + "user": { + "data": { + "forecast": "V\u00e6rmelding" + }, + "description": "P\u00e5 grunn av begrensningene i gratisversjonen av AccuWeather API-n\u00f8kkelen, n\u00e5r du aktiverer v\u00e6rmelding, vil dataoppdateringer bli utf\u00f8rt hvert 64. minutt i stedet for hvert 32. minutt.", + "title": "AccuWeather-alternativer" + } + } } } \ No newline at end of file diff --git a/homeassistant/components/azure_devops/translations/ca.json b/homeassistant/components/azure_devops/translations/ca.json index 289adf79d9a..df8fe8c04b3 100644 --- a/homeassistant/components/azure_devops/translations/ca.json +++ b/homeassistant/components/azure_devops/translations/ca.json @@ -4,12 +4,30 @@ "already_configured": "El compte ja ha estat configurat", "reauth_successful": "Token d'acc\u00e9s actualitzat correctament" }, + "error": { + "authorization_error": "Error d'autoritzaci\u00f3. Comprova que tens acc\u00e9s al projecte i tens les credencials correctes.", + "connection_error": "No s'ha pogut connectar a Azure DevOps.", + "project_error": "No s'ha pogut obtenir la informaci\u00f3 del projecte." + }, + "flow_title": "Azure DevOps: {project_url}", "step": { + "reauth": { + "data": { + "personal_access_token": "Token d'Acc\u00e9s Personal (PAT)" + }, + "description": "L'autenticaci\u00f3 de {project_url} ha fallat. Si us plau, introdueix les teves credencials actuals.", + "title": "Reautenticaci\u00f3" + }, "user": { "data": { - "organization": "Organitzaci\u00f3" - } + "organization": "Organitzaci\u00f3", + "personal_access_token": "Token d'Acc\u00e9s Personal (PAT)", + "project": "Projecte" + }, + "description": "Configura una inst\u00e0ncia d'Azure DevOps per accedir al teu projecte. El token d'acc\u00e9s personal nom\u00e9s \u00e9s necessari per a projectes privats.", + "title": "Afegeix un projecte Azure DevOps" } } - } + }, + "title": "Azure DevOps" } \ No newline at end of file diff --git a/homeassistant/components/azure_devops/translations/es.json b/homeassistant/components/azure_devops/translations/es.json new file mode 100644 index 00000000000..7fc78e8f88e --- /dev/null +++ b/homeassistant/components/azure_devops/translations/es.json @@ -0,0 +1,17 @@ +{ + "config": { + "step": { + "reauth": { + "title": "Reautenticaci\u00f3n" + }, + "user": { + "data": { + "organization": "Organizaci\u00f3n", + "project": "Proyecto" + }, + "title": "A\u00f1adir Proyecto Azure DevOps" + } + } + }, + "title": "Azure DevOps" +} \ No newline at end of file diff --git a/homeassistant/components/azure_devops/translations/no.json b/homeassistant/components/azure_devops/translations/no.json new file mode 100644 index 00000000000..2723f8e08c7 --- /dev/null +++ b/homeassistant/components/azure_devops/translations/no.json @@ -0,0 +1,32 @@ +{ + "config": { + "abort": { + "reauth_successful": "Tilgangstoken oppdatert" + }, + "error": { + "authorization_error": "Autoriseringsfeil. Sjekk at du har tilgang til prosjektet og har riktig legitimasjon.", + "connection_error": "Kunne ikke koble til Azure DevOps.", + "project_error": "Kunne ikke f\u00e5 prosjektinformasjon." + }, + "flow_title": "Azure DevOps: {project_url}", + "step": { + "reauth": { + "data": { + "personal_access_token": "Token for personlig tilgang (PAT)" + }, + "description": "Autentiseringen mislyktes for {project_url} . Vennligst skriv inn gjeldende legitimasjon.", + "title": "reautentisering" + }, + "user": { + "data": { + "organization": "Organisasjon", + "personal_access_token": "Token for personlig tilgang (PAT)", + "project": "Prosjekt" + }, + "description": "Sett opp en Azure DevOps-forekomst for \u00e5 f\u00e5 tilgang til prosjektet ditt. En personlig tilgangstoken er bare n\u00f8dvendig for et privat prosjekt.", + "title": "Legg til Azure DevOps Project" + } + } + }, + "title": "Azure DevOps" +} \ No newline at end of file diff --git a/homeassistant/components/azure_devops/translations/ru.json b/homeassistant/components/azure_devops/translations/ru.json new file mode 100644 index 00000000000..08e07d68560 --- /dev/null +++ b/homeassistant/components/azure_devops/translations/ru.json @@ -0,0 +1,33 @@ +{ + "config": { + "abort": { + "already_configured": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c \u0443\u0436\u0435 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430.", + "reauth_successful": "\u0422\u043e\u043a\u0435\u043d \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0443\u0441\u043f\u0435\u0448\u043d\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d." + }, + "error": { + "authorization_error": "\u041e\u0448\u0438\u0431\u043a\u0430 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0443 \u0412\u0430\u0441 \u0435\u0441\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043f\u0440\u043e\u0435\u043a\u0442\u0443, \u0430 \u0442\u0430\u043a \u0436\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0435 \u0443\u0447\u0451\u0442\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435.", + "connection_error": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0441\u044f \u043a Azure DevOps.", + "project_error": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0435." + }, + "flow_title": "Azure DevOps: {project_url}", + "step": { + "reauth": { + "data": { + "personal_access_token": "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0442\u043e\u043a\u0435\u043d \u0434\u043e\u0441\u0442\u0443\u043f\u0430 (PAT)" + }, + "description": "\u041e\u0448\u0438\u0431\u043a\u0430 \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u0438 {project_url}. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0435 \u0443\u0447\u0451\u0442\u043d\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435.", + "title": "\u041f\u043e\u0432\u0442\u043e\u0440\u043d\u0430\u044f \u0430\u0443\u0442\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f" + }, + "user": { + "data": { + "organization": "\u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f", + "personal_access_token": "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0442\u043e\u043a\u0435\u043d \u0434\u043e\u0441\u0442\u0443\u043f\u0430 (PAT)", + "project": "\u041f\u0440\u043e\u0435\u043a\u0442" + }, + "description": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u0442\u0435 Home Assistant \u0434\u043b\u044f \u0438\u043d\u0442\u0435\u0433\u0440\u0430\u0446\u0438\u0438 \u0441 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u043c Azure DevOps. \u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0442\u043e\u043a\u0435\u043d \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0430\u0441\u0442\u043d\u044b\u0445 \u043f\u0440\u043e\u0435\u043a\u0442\u043e\u0432.", + "title": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0435\u043a\u0442 Azure DevOps" + } + } + }, + "title": "Azure DevOps" +} \ No newline at end of file diff --git a/homeassistant/components/control4/translations/ca.json b/homeassistant/components/control4/translations/ca.json index 8e1b6c4788c..69702272d43 100644 --- a/homeassistant/components/control4/translations/ca.json +++ b/homeassistant/components/control4/translations/ca.json @@ -14,6 +14,16 @@ "host": "Adre\u00e7a IP", "password": "Contrasenya", "username": "Nom d'usuari" + }, + "description": "Introdueix els detalls del teu compte Control4 i l'adre\u00e7a IP del teu controlador local." + } + } + }, + "options": { + "step": { + "init": { + "data": { + "scan_interval": "Segons entre actualitzacions" } } } diff --git a/homeassistant/components/demo/translations/no.json b/homeassistant/components/demo/translations/no.json index e85f5b067a0..5003b9da568 100644 --- a/homeassistant/components/demo/translations/no.json +++ b/homeassistant/components/demo/translations/no.json @@ -4,6 +4,7 @@ "options_1": { "data": { "bool": "Valgfri boolean", + "constant": "Konstant", "int": "Numerisk inndata" } }, diff --git a/homeassistant/components/dexcom/translations/no.json b/homeassistant/components/dexcom/translations/no.json index bd32458f907..09ec0002470 100644 --- a/homeassistant/components/dexcom/translations/no.json +++ b/homeassistant/components/dexcom/translations/no.json @@ -4,6 +4,17 @@ "user": { "data": { "server": "" + }, + "description": "Angi Dexcom Share-legitimasjon", + "title": "Setup Dexcom integrasjon" + } + } + }, + "options": { + "step": { + "init": { + "data": { + "unit_of_measurement": "M\u00e5leenhet" } } } diff --git a/homeassistant/components/hue/translations/no.json b/homeassistant/components/hue/translations/no.json index 6e2b78a2ead..a632a0584da 100644 --- a/homeassistant/components/hue/translations/no.json +++ b/homeassistant/components/hue/translations/no.json @@ -24,6 +24,9 @@ "link": { "description": "Trykk p\u00e5 knappen p\u00e5 Bridgen for \u00e5 registrere Philips Hue med Home Assistant. \n\n ![Knappens plassering p\u00e5 Bridgen](/static/images/config_philips_hue.jpg)", "title": "" + }, + "manual": { + "title": "Manuell konfigurere en Hue-bro" } } }, @@ -53,7 +56,8 @@ "init": { "data": { "allow_how_groups": "Tillat Hue-grupper", - "allow_hue_groups": "Tillat Hue-grupper" + "allow_hue_groups": "Tillat Hue-grupper", + "allow_unreachable": "Tillat uoppn\u00e5elige p\u00e6rer \u00e5 rapportere sin tilstand riktig" } } } diff --git a/homeassistant/components/simplisafe/translations/ca.json b/homeassistant/components/simplisafe/translations/ca.json index 96dff658906..98727fe4c57 100644 --- a/homeassistant/components/simplisafe/translations/ca.json +++ b/homeassistant/components/simplisafe/translations/ca.json @@ -1,18 +1,26 @@ { "config": { "abort": { - "already_configured": "Aquest compte SimpliSafe ja est\u00e0 en \u00fas." + "already_configured": "Aquest compte SimpliSafe ja est\u00e0 en \u00fas.", + "reauth_successful": "Reautenticaci\u00f3 amb SimpliSafe exitosa." }, "error": { "identifier_exists": "Aquest compte ja est\u00e0 registrat", "invalid_credentials": "Credencials inv\u00e0lides", + "still_awaiting_mfa": "Esperant clic de l'enlla\u00e7 del correu MFA", "unknown": "Error inesperat" }, "step": { + "mfa": { + "description": "Consulta el correu i busca-hi un missatge amb un enlla\u00e7 de SimpliSafe. Despr\u00e9s de verificar l'enlla\u00e7, torneu aqu\u00ed per completar la instal\u00b7laci\u00f3 de la integraci\u00f3.", + "title": "Autenticaci\u00f3 multi-factor SimpliSafe" + }, "reauth_confirm": { "data": { "password": "Contrasenya" - } + }, + "description": "El token d'acc\u00e9s ha caducat o ha estat revocat. Introdueix la teva contrasenya per tornar a vincular el compte.", + "title": "Torna a vincular un compte SimpliSafe" }, "user": { "data": { diff --git a/homeassistant/components/simplisafe/translations/es.json b/homeassistant/components/simplisafe/translations/es.json index 7ed09529ccc..96badf7b10c 100644 --- a/homeassistant/components/simplisafe/translations/es.json +++ b/homeassistant/components/simplisafe/translations/es.json @@ -5,9 +5,15 @@ }, "error": { "identifier_exists": "Cuenta ya registrada", - "invalid_credentials": "Credenciales no v\u00e1lidas" + "invalid_credentials": "Credenciales no v\u00e1lidas", + "unknown": "Error inesperado" }, "step": { + "reauth_confirm": { + "data": { + "password": "Contrase\u00f1a" + } + }, "user": { "data": { "code": "C\u00f3digo (utilizado en el interfaz de usuario de Home Assistant)", diff --git a/homeassistant/components/simplisafe/translations/no.json b/homeassistant/components/simplisafe/translations/no.json index 3a253f2e5a1..6dd8ff68b5d 100644 --- a/homeassistant/components/simplisafe/translations/no.json +++ b/homeassistant/components/simplisafe/translations/no.json @@ -1,13 +1,23 @@ { "config": { "abort": { - "already_configured": "Denne SimpliSafe-kontoen er allerede i bruk." + "already_configured": "Denne SimpliSafe-kontoen er allerede i bruk.", + "reauth_successful": "SimpliSafe gjenautentisering er vellykket." }, "error": { "identifier_exists": "Konto er allerede registrert", - "invalid_credentials": "Ugyldig legitimasjon" + "invalid_credentials": "Ugyldig legitimasjon", + "still_awaiting_mfa": "Forventer fortsatt MFA-e-postklikk" }, "step": { + "mfa": { + "description": "Sjekk e-posten din for en lenke fra SimpliSafe. Etter \u00e5 ha bekreftet lenken, g\u00e5 tilbake hit for \u00e5 fullf\u00f8re installasjonen av integrasjonen.", + "title": "SimpliSafe Multi-Factor Autentisering" + }, + "reauth_confirm": { + "description": "Adgangstokenet ditt har utl\u00f8pt eller blitt opphevet. Skriv inn passordet ditt for \u00e5 koble kontoen din p\u00e5 nytt.", + "title": "Koble SimpliSafe-kontoen p\u00e5 nytt" + }, "user": { "data": { "code": "Kode (brukt i Home Assistant brukergrensesnittet)", diff --git a/homeassistant/components/smarthab/translations/no.json b/homeassistant/components/smarthab/translations/no.json new file mode 100644 index 00000000000..15e6962cbe0 --- /dev/null +++ b/homeassistant/components/smarthab/translations/no.json @@ -0,0 +1,13 @@ +{ + "config": { + "error": { + "service": "Feil under fors\u00f8k p\u00e5 \u00e5 n\u00e5 SmartHab. Tjenesten kan v\u00e6re nede. Sjekk tilkoblingen din." + }, + "step": { + "user": { + "description": "Av tekniske \u00e5rsaker m\u00e5 du s\u00f8rge for \u00e5 bruke en sekund\u00e6r konto som er spesifikk for oppsettet i Home Assistant. Du kan opprette en fra SmartHab-programmet.", + "title": "Oppsett av SmartHab" + } + } + } +} \ No newline at end of file diff --git a/homeassistant/components/syncthru/translations/no.json b/homeassistant/components/syncthru/translations/no.json index 01ea5b65fb1..f5d626c44ff 100644 --- a/homeassistant/components/syncthru/translations/no.json +++ b/homeassistant/components/syncthru/translations/no.json @@ -1,5 +1,11 @@ { "config": { + "error": { + "invalid_url": "Ugyldig URL-adresse", + "syncthru_not_supported": "Enheten st\u00f8tter ikke SyncThru", + "unknown_state": "Skrivertilstand ukjent, kontroller URL-adresse og nettverkstilkobling" + }, + "flow_title": "Samsung SyncThru-skriver: {name}", "step": { "user": { "data": { diff --git a/homeassistant/components/transmission/translations/no.json b/homeassistant/components/transmission/translations/no.json index a04c32f471a..89150467222 100644 --- a/homeassistant/components/transmission/translations/no.json +++ b/homeassistant/components/transmission/translations/no.json @@ -12,7 +12,9 @@ "user": { "data": { "host": "Vert", + "limit": "Grense", "name": "Navn", + "order": "Rekkef\u00f8lge", "password": "Passord", "port": "", "username": "Brukernavn" @@ -25,6 +27,8 @@ "step": { "init": { "data": { + "limit": "Grense", + "order": "Rekkef\u00f8lge", "scan_interval": "Oppdater frekvens" }, "title": "Konfigurer alternativer for Transmission" diff --git a/homeassistant/components/vizio/translations/no.json b/homeassistant/components/vizio/translations/no.json index ab585dcdcf3..d7e43f56bb1 100644 --- a/homeassistant/components/vizio/translations/no.json +++ b/homeassistant/components/vizio/translations/no.json @@ -17,9 +17,11 @@ "title": "Fullf\u00f8r sammenkoblingsprosess" }, "pairing_complete": { + "description": "VIZIO SmartCast-enhet er n\u00e5 koblet til Home Assistant.", "title": "Sammenkoblingen fullf\u00f8rt" }, "pairing_complete_import": { + "description": "Din VIZIO SmartCast-enhet er n\u00e5 koblet til VIZIO SmartCast-enhet . \n\n Tilgangstoken er '** {access_token} **'.", "title": "Sammenkoblingen fullf\u00f8rt" }, "user": { @@ -29,6 +31,7 @@ "host": "Vert", "name": "Navn" }, + "description": "En Tilgangstoken er bare n\u00f8dvendig for TV-er. Hvis du konfigurerer en TV og ikke har en Tilgangstoken enn\u00e5, la den st\u00e5 tom for \u00e5 g\u00e5 gjennom en sammenkoblingsprosess.", "title": "VIZIO SmartCast-enhet" } } @@ -41,7 +44,8 @@ "include_or_exclude": "Inkluder eller ekskludere apper?", "volume_step": "St\u00f8rrelse p\u00e5 volum trinn" }, - "description": "Hvis du har en Smart-TV, kan du eventuelt filtrere kildelisten ved \u00e5 velge hvilke apper som skal inkluderes eller utelates i kildelisten." + "description": "Hvis du har en Smart-TV, kan du eventuelt filtrere kildelisten ved \u00e5 velge hvilke apper som skal inkluderes eller utelates i kildelisten.", + "title": "Oppdater VIZIO SmartCast-enhet Alternativer" } } } diff --git a/homeassistant/components/volumio/translations/ca.json b/homeassistant/components/volumio/translations/ca.json new file mode 100644 index 00000000000..df63d99095d --- /dev/null +++ b/homeassistant/components/volumio/translations/ca.json @@ -0,0 +1,24 @@ +{ + "config": { + "abort": { + "already_configured": "El dispositiu ja est\u00e0 configurat", + "cannot_connect": "No es pot connectar amb el Volumio descobert" + }, + "error": { + "cannot_connect": "Ha fallat la connexi\u00f3", + "unknown": "Error inesperat" + }, + "step": { + "discovery_confirm": { + "description": "Vols afegir el Volumio (`{name}`) a Home Assistant?", + "title": "Volumio descobert" + }, + "user": { + "data": { + "host": "Amfitri\u00f3", + "port": "Port" + } + } + } + } +} \ No newline at end of file diff --git a/homeassistant/components/volumio/translations/en.json b/homeassistant/components/volumio/translations/en.json new file mode 100644 index 00000000000..5c70f8d4df8 --- /dev/null +++ b/homeassistant/components/volumio/translations/en.json @@ -0,0 +1,24 @@ +{ + "config": { + "abort": { + "already_configured": "Device is already configured", + "cannot_connect": "Cannot connect to discovered Volumio" + }, + "error": { + "cannot_connect": "Failed to connect", + "unknown": "Unexpected error" + }, + "step": { + "discovery_confirm": { + "description": "Do you want to add Volumio (`{name}`) to Home Assistant?", + "title": "Discovered Volumio" + }, + "user": { + "data": { + "host": "Host", + "port": "Port" + } + } + } + } +} \ No newline at end of file diff --git a/homeassistant/components/volumio/translations/es.json b/homeassistant/components/volumio/translations/es.json new file mode 100644 index 00000000000..8aa4a870a36 --- /dev/null +++ b/homeassistant/components/volumio/translations/es.json @@ -0,0 +1,24 @@ +{ + "config": { + "abort": { + "already_configured": "El dispositivo ya est\u00e1 configurado", + "cannot_connect": "No se puede conectar con el Volumio descubierto" + }, + "error": { + "cannot_connect": "No se pudo conectar", + "unknown": "Error inesperado" + }, + "step": { + "discovery_confirm": { + "description": "\u00bfQuieres a\u00f1adir Volumio (`{name}`) a Home Assistant?", + "title": "Volumio descubierto" + }, + "user": { + "data": { + "host": "Host", + "port": "Puerto" + } + } + } + } +} \ No newline at end of file diff --git a/homeassistant/components/volumio/translations/no.json b/homeassistant/components/volumio/translations/no.json new file mode 100644 index 00000000000..48c763af2b1 --- /dev/null +++ b/homeassistant/components/volumio/translations/no.json @@ -0,0 +1,13 @@ +{ + "config": { + "abort": { + "cannot_connect": "Kan ikke koble til oppdaget Volumio" + }, + "step": { + "discovery_confirm": { + "description": "Vil du legge Volumio (` {name} `) til Home Assistant?", + "title": "Oppdaget Volumio" + } + } + } +} \ No newline at end of file diff --git a/homeassistant/components/volumio/translations/ru.json b/homeassistant/components/volumio/translations/ru.json new file mode 100644 index 00000000000..82e8fd9c9d2 --- /dev/null +++ b/homeassistant/components/volumio/translations/ru.json @@ -0,0 +1,18 @@ +{ + "config": { + "abort": { + "already_configured": "\u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u0443\u0436\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u043e" + }, + "error": { + "cannot_connect": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0441\u044f", + "unknown": "\u041d\u0435\u043f\u0440\u0435\u0434\u0432\u0438\u0434\u0435\u043d\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430" + }, + "step": { + "user": { + "data": { + "port": "\u041f\u043e\u0440\u0442" + } + } + } + } +} \ No newline at end of file diff --git a/homeassistant/components/wolflink/translations/ca.json b/homeassistant/components/wolflink/translations/ca.json index ab0c791dbd9..80f8a793309 100644 --- a/homeassistant/components/wolflink/translations/ca.json +++ b/homeassistant/components/wolflink/translations/ca.json @@ -12,13 +12,15 @@ "device": { "data": { "device_name": "Dispositiu" - } + }, + "title": "Selecci\u00f3 de dispositiu WOLF" }, "user": { "data": { "password": "Contrasenya", "username": "Nom d'usuari" - } + }, + "title": "Connexi\u00f3 WOLF SmartSet" } } } diff --git a/homeassistant/components/wolflink/translations/no.json b/homeassistant/components/wolflink/translations/no.json new file mode 100644 index 00000000000..f6d1302012e --- /dev/null +++ b/homeassistant/components/wolflink/translations/no.json @@ -0,0 +1,9 @@ +{ + "config": { + "step": { + "user": { + "title": "WOLF SmartSet-tilkobling" + } + } + } +} \ No newline at end of file diff --git a/homeassistant/components/wolflink/translations/sensor.ca.json b/homeassistant/components/wolflink/translations/sensor.ca.json new file mode 100644 index 00000000000..a671f608879 --- /dev/null +++ b/homeassistant/components/wolflink/translations/sensor.ca.json @@ -0,0 +1,87 @@ +{ + "state": { + "wolflink__state": { + "1_x_warmwasser": "1 x ACS", + "abgasklappe": "Amortidor de gasos", + "absenkbetrieb": "Mode de retroc\u00e9s", + "absenkstop": "Retroc\u00e9s aturat", + "aktiviert": "Activat", + "antilegionellenfunktion": "Funci\u00f3 anti-legionel\u00b7la", + "at_abschaltung": "Aturada OT", + "at_frostschutz": "Protecci\u00f3 contra gelades OT", + "aus": "Desactivat", + "auto": "Autom\u00e0tic", + "auto_off_cool": "AutoOffCool", + "auto_on_cool": "AutoOnCool", + "automatik_aus": "Apagada autom\u00e0tica", + "automatik_ein": "Engegada autom\u00e0tica", + "bereit_keine_ladung": "Llest, no carregant-se", + "betrieb_ohne_brenner": "Funcionant sense cremador", + "cooling": "Refredant", + "deaktiviert": "Inactiu", + "dhw_prior": "DHWPrior", + "eco": "Eco", + "ein": "Habilitat", + "estrichtrocknung": "Assecant superf\u00edcie", + "externe_deaktivierung": "Desactivaci\u00f3 externa", + "fernschalter_ein": "Control remot activat", + "frost_heizkreis": "Congelaci\u00f3 circuit calentador", + "frost_warmwasser": "Congelaci\u00f3 ACS", + "frostschutz": "Protecci\u00f3 contra gelades", + "gasdruck": "Pressi\u00f3 del gas", + "glt_betrieb": "Mode BMS", + "gradienten_uberwachung": "Monitoritzaci\u00f3 de gradient", + "heizbetrieb": "Mode de calefacci\u00f3", + "heizgerat_mit_speicher": "Caldera amb cilindre", + "heizung": "Escalfant", + "initialisierung": "Inicialitzaci\u00f3", + "kalibration": "Calibraci\u00f3", + "kalibration_heizbetrieb": "Calibraci\u00f3 mode de calefacci\u00f3", + "kalibration_kombibetrieb": "Calibraci\u00f3 mode de combi", + "kalibration_warmwasserbetrieb": "Calibraci\u00f3 ACS", + "kaskadenbetrieb": "Funcionament en cascada", + "kombibetrieb": "Mode combi", + "kombigerat": "Caldera combi", + "kombigerat_mit_solareinbindung": "Caldera combi amb integraci\u00f3 solar", + "mindest_kombizeit": "Temps combi m\u00ednim", + "nachlauf_heizkreispumpe": "Bomba del circuit calentador en marxa", + "nachspulen": "Post-desc\u00e0rrega", + "nur_heizgerat": "Nom\u00e9s caldera", + "parallelbetrieb": "Mode paral\u00b7lel", + "partymodus": "Mode festa", + "perm_cooling": "PermCooling", + "permanent": "Permanent", + "permanentbetrieb": "Mode permanent", + "reduzierter_betrieb": "Mode limitat", + "rt_abschaltung": "Aturada RT", + "rt_frostschutz": "Protecci\u00f3 contra gelades RT", + "ruhekontakt": "Contacte de rep\u00f2s", + "schornsteinfeger": "Prova d'emissions", + "smart_grid": "SmartGrid", + "smart_home": "SmartHome", + "softstart": "Inici suau", + "solarbetrieb": "Mode solar", + "sparbetrieb": "Mode econ\u00f2mic", + "sparen": "Economia", + "spreizung_hoch": "dT massa ample", + "spreizung_kf": "Escampant KF", + "stabilisierung": "Estabilitzaci\u00f3", + "standby": "En espera", + "start": "Inici", + "storung": "Error", + "taktsperre": "Anti-cicle", + "telefonfernschalter": "Interruptor remot telef\u00f2nic", + "test": "Prova", + "tpw": "TPW", + "urlaubsmodus": "Mode de vacances", + "ventilprufung": "Test de v\u00e0lvula", + "vorspulen": "Entrada esbandit", + "warmwasser": "ACS", + "warmwasser_schnellstart": "Inici r\u00e0pid d'ACS", + "warmwasserbetrieb": "Mode ACS", + "warmwassernachlauf": "ACS en marxa", + "warmwasservorrang": "Prioritat ACS", + "zunden": "Ignici\u00f3" + } + } +} \ No newline at end of file diff --git a/homeassistant/components/wolflink/translations/sensor.no.json b/homeassistant/components/wolflink/translations/sensor.no.json new file mode 100644 index 00000000000..7a5692a28ff --- /dev/null +++ b/homeassistant/components/wolflink/translations/sensor.no.json @@ -0,0 +1,69 @@ +{ + "state": { + "wolflink__state": { + "1_x_warmwasser": "1 x DHW", + "abgasklappe": "R\u00f8ykgassspjeld", + "absenkbetrieb": "Tilbakeslag-modus", + "absenkstop": "Tilbakeslag stopp", + "aktiviert": "Aktivert", + "antilegionellenfunktion": "Anti-legionella-funksjon", + "at_abschaltung": "OT-avstengning", + "at_frostschutz": "OT frostbeskyttelse", + "aus": "Deaktivert", + "auto": "Auto", + "auto_off_cool": "AutoOffCool", + "auto_on_cool": "AutoOnCool", + "automatik_aus": "Automatisk AV", + "automatik_ein": "Automatisk P\u00c5", + "bereit_keine_ladung": "Klar, laster ikke", + "betrieb_ohne_brenner": "Arbeide uten brenner", + "cooling": "Kj\u00f8ling", + "deaktiviert": "inaktiv", + "dhw_prior": "DHWPrior", + "eco": "\u00d8ko", + "ein": "Aktivert", + "estrichtrocknung": "Screed t\u00f8rking", + "externe_deaktivierung": "Ekstern deaktivering", + "fernschalter_ein": "Fjernkontroll aktivert", + "frost_heizkreis": "Frost for varmekrets", + "frost_warmwasser": "DHW frost", + "frostschutz": "Frostbeskyttelse", + "gasdruck": "Gasstrykk", + "parallelbetrieb": "Parallell modus", + "partymodus": "Festmodus", + "perm_cooling": "PermKj\u00f8ling", + "permanent": "permament", + "permanentbetrieb": "Permanent modus", + "reduzierter_betrieb": "Begrenset modus", + "rt_abschaltung": "RT-avstengning", + "rt_frostschutz": "RT frostsikring", + "ruhekontakt": "Hvilekontakt", + "schornsteinfeger": "Utslippstest", + "smart_grid": "Smartgrid", + "smart_home": "SmartHome", + "softstart": "Myk start", + "solarbetrieb": "Solmodus", + "sparbetrieb": "\u00d8konomimodus", + "sparen": "\u00d8konomi", + "spreizung_hoch": "dT for bred", + "spreizung_kf": "Spre KF", + "stabilisierung": "Stablisering", + "standby": "Avventer", + "start": "Start", + "storung": "Feil", + "taktsperre": "Anti-syklus", + "telefonfernschalter": "Fjernkontroll for telefon", + "test": "Test", + "tpw": "TPW", + "urlaubsmodus": "Feriemodus", + "ventilprufung": "Ventiltest", + "vorspulen": "Inngangsskylling", + "warmwasser": "DHW", + "warmwasser_schnellstart": "DHW hurtigstart", + "warmwasserbetrieb": "DHW-modus", + "warmwassernachlauf": "DHW run-on", + "warmwasservorrang": "DHW-prioritet", + "zunden": "Tenning" + } + } +} \ No newline at end of file