From 76874e1cbc17bd0f13f76ce524f5a2aacf832786 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 14 Mar 2018 19:47:31 -0700 Subject: [PATCH] Update translations --- .../.translations/de.json | 24 +++++++++++++++++ .../.translations/fi.json | 11 ++++++++ .../.translations/ko.json | 24 +++++++++++++++++ .../.translations/nl.json | 23 ++++++++++++++++ .../.translations/no.json | 24 +++++++++++++++++ .../.translations/pl.json | 24 +++++++++++++++++ .../.translations/ro.json | 15 +++++++++++ .../.translations/sl.json | 24 +++++++++++++++++ .../.translations/zh-Hans.json | 24 +++++++++++++++++ .../components/hue/.translations/de.json | 26 +++++++++++++++++++ .../components/hue/.translations/en.json | 2 +- .../components/hue/.translations/ko.json | 26 +++++++++++++++++++ .../components/hue/.translations/nl.json | 26 +++++++++++++++++++ .../components/hue/.translations/no.json | 26 +++++++++++++++++++ .../components/hue/.translations/pl.json | 26 +++++++++++++++++++ .../components/hue/.translations/ro.json | 18 +++++++++++++ .../components/hue/.translations/sl.json | 26 +++++++++++++++++++ .../components/hue/.translations/zh-Hans.json | 26 +++++++++++++++++++ .../sensor/.translations/season.cs.json | 8 ++++++ .../sensor/.translations/season.cy.json | 8 ++++++ .../sensor/.translations/season.de.json | 8 ++++++ .../sensor/.translations/season.es.json | 8 ++++++ .../sensor/.translations/season.fi.json | 8 ++++++ .../sensor/.translations/season.ja.json | 8 ++++++ .../sensor/.translations/season.ko.json | 8 ++++++ .../sensor/.translations/season.nl.json | 8 ++++++ .../sensor/.translations/season.no.json | 8 ++++++ .../sensor/.translations/season.pl.json | 8 ++++++ .../sensor/.translations/season.pt.json | 8 ++++++ .../sensor/.translations/season.ro.json | 8 ++++++ .../sensor/.translations/season.sl.json | 8 ++++++ .../sensor/.translations/season.sv.json | 8 ++++++ .../sensor/.translations/season.th.json | 8 ++++++ .../sensor/.translations/season.zh-Hans.json | 8 ++++++ .../sensor/.translations/season.zh-Hant.json | 8 ++++++ 35 files changed, 530 insertions(+), 1 deletion(-) create mode 100644 homeassistant/components/config_entry_example/.translations/de.json create mode 100644 homeassistant/components/config_entry_example/.translations/fi.json create mode 100644 homeassistant/components/config_entry_example/.translations/ko.json create mode 100644 homeassistant/components/config_entry_example/.translations/nl.json create mode 100644 homeassistant/components/config_entry_example/.translations/no.json create mode 100644 homeassistant/components/config_entry_example/.translations/pl.json create mode 100644 homeassistant/components/config_entry_example/.translations/ro.json create mode 100644 homeassistant/components/config_entry_example/.translations/sl.json create mode 100644 homeassistant/components/config_entry_example/.translations/zh-Hans.json create mode 100644 homeassistant/components/hue/.translations/de.json create mode 100644 homeassistant/components/hue/.translations/ko.json create mode 100644 homeassistant/components/hue/.translations/nl.json create mode 100644 homeassistant/components/hue/.translations/no.json create mode 100644 homeassistant/components/hue/.translations/pl.json create mode 100644 homeassistant/components/hue/.translations/ro.json create mode 100644 homeassistant/components/hue/.translations/sl.json create mode 100644 homeassistant/components/hue/.translations/zh-Hans.json create mode 100644 homeassistant/components/sensor/.translations/season.cs.json create mode 100644 homeassistant/components/sensor/.translations/season.cy.json create mode 100644 homeassistant/components/sensor/.translations/season.de.json create mode 100644 homeassistant/components/sensor/.translations/season.es.json create mode 100644 homeassistant/components/sensor/.translations/season.fi.json create mode 100644 homeassistant/components/sensor/.translations/season.ja.json create mode 100644 homeassistant/components/sensor/.translations/season.ko.json create mode 100644 homeassistant/components/sensor/.translations/season.nl.json create mode 100644 homeassistant/components/sensor/.translations/season.no.json create mode 100644 homeassistant/components/sensor/.translations/season.pl.json create mode 100644 homeassistant/components/sensor/.translations/season.pt.json create mode 100644 homeassistant/components/sensor/.translations/season.ro.json create mode 100644 homeassistant/components/sensor/.translations/season.sl.json create mode 100644 homeassistant/components/sensor/.translations/season.sv.json create mode 100644 homeassistant/components/sensor/.translations/season.th.json create mode 100644 homeassistant/components/sensor/.translations/season.zh-Hans.json create mode 100644 homeassistant/components/sensor/.translations/season.zh-Hant.json diff --git a/homeassistant/components/config_entry_example/.translations/de.json b/homeassistant/components/config_entry_example/.translations/de.json new file mode 100644 index 00000000000..75b88f2f822 --- /dev/null +++ b/homeassistant/components/config_entry_example/.translations/de.json @@ -0,0 +1,24 @@ +{ + "config": { + "error": { + "invalid_object_id": "Ung\u00fcltige Objekt-ID" + }, + "step": { + "init": { + "data": { + "object_id": "Objekt-ID" + }, + "description": "Bitte gib eine Objekt_ID f\u00fcr das Test-Entity ein.", + "title": "W\u00e4hle eine Objekt-ID" + }, + "name": { + "data": { + "name": "Name" + }, + "description": "Bitte gib einen Namen f\u00fcr das Test-Entity ein", + "title": "Name des Test-Entity" + } + }, + "title": "Beispiel Konfig-Eintrag" + } +} \ No newline at end of file diff --git a/homeassistant/components/config_entry_example/.translations/fi.json b/homeassistant/components/config_entry_example/.translations/fi.json new file mode 100644 index 00000000000..054a6f372bc --- /dev/null +++ b/homeassistant/components/config_entry_example/.translations/fi.json @@ -0,0 +1,11 @@ +{ + "config": { + "step": { + "name": { + "data": { + "name": "Nimi" + } + } + } + } +} \ No newline at end of file diff --git a/homeassistant/components/config_entry_example/.translations/ko.json b/homeassistant/components/config_entry_example/.translations/ko.json new file mode 100644 index 00000000000..f12e3fc52f1 --- /dev/null +++ b/homeassistant/components/config_entry_example/.translations/ko.json @@ -0,0 +1,24 @@ +{ + "config": { + "error": { + "invalid_object_id": "\uc624\ube0c\uc81d\ud2b8 ID\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4" + }, + "step": { + "init": { + "data": { + "object_id": "\uc624\ube0c\uc81d\ud2b8 ID" + }, + "description": "\ud14c\uc2a4\ud2b8 \uad6c\uc131\uc694\uc18c\uc758 \uc624\ube0c\uc81d\ud2b8 ID \ub97c \uc785\ub825\ud558\uc138\uc694", + "title": "\uc624\ube0c\uc81d\ud2b8 ID \uc120\ud0dd" + }, + "name": { + "data": { + "name": "\uc774\ub984" + }, + "description": "\ud14c\uc2a4\ud2b8 \uad6c\uc131\uc694\uc18c\uc758 \uc774\ub984\uc744 \uc785\ub825\ud558\uc138\uc694.", + "title": "\uad6c\uc131\uc694\uc18c \uc774\ub984" + } + }, + "title": "\uc785\ub825 \uc608\uc81c \uad6c\uc131" + } +} \ No newline at end of file diff --git a/homeassistant/components/config_entry_example/.translations/nl.json b/homeassistant/components/config_entry_example/.translations/nl.json new file mode 100644 index 00000000000..10469dd0804 --- /dev/null +++ b/homeassistant/components/config_entry_example/.translations/nl.json @@ -0,0 +1,23 @@ +{ + "config": { + "error": { + "invalid_object_id": "Ongeldig object ID" + }, + "step": { + "init": { + "data": { + "object_id": "Object ID" + }, + "description": "Voer een object_id in voor het testen van de entiteit.", + "title": "Kies object id" + }, + "name": { + "data": { + "name": "Naam" + }, + "description": "Voer een naam in voor het testen van de entiteit.", + "title": "Naam van de entiteit" + } + } + } +} \ No newline at end of file diff --git a/homeassistant/components/config_entry_example/.translations/no.json b/homeassistant/components/config_entry_example/.translations/no.json new file mode 100644 index 00000000000..380c539f8af --- /dev/null +++ b/homeassistant/components/config_entry_example/.translations/no.json @@ -0,0 +1,24 @@ +{ + "config": { + "error": { + "invalid_object_id": "Ugyldig objekt ID" + }, + "step": { + "init": { + "data": { + "object_id": "Objekt ID" + }, + "description": "Vennligst skriv inn en object_id for testenheten.", + "title": "Velg objekt ID" + }, + "name": { + "data": { + "name": "Navn" + }, + "description": "Vennligst skriv inn et navn for testenheten.", + "title": "Navn p\u00e5 enheten" + } + }, + "title": "Konfigureringseksempel" + } +} \ No newline at end of file diff --git a/homeassistant/components/config_entry_example/.translations/pl.json b/homeassistant/components/config_entry_example/.translations/pl.json new file mode 100644 index 00000000000..35cca168249 --- /dev/null +++ b/homeassistant/components/config_entry_example/.translations/pl.json @@ -0,0 +1,24 @@ +{ + "config": { + "error": { + "invalid_object_id": "Nieprawid\u0142owy identyfikator obiektu" + }, + "step": { + "init": { + "data": { + "object_id": "Identyfikator obiektu" + }, + "description": "Prosz\u0119 wprowadzi\u0107 identyfikator obiektu (object_id) dla jednostki testowej.", + "title": "Wybierz identyfikator obiektu" + }, + "name": { + "data": { + "name": "Nazwa" + }, + "description": "Prosz\u0119 wprowadzi\u0107 nazw\u0119 dla jednostki testowej.", + "title": "Nazwa jednostki" + } + }, + "title": "Przyk\u0142ad wpisu do konfiguracji" + } +} \ No newline at end of file diff --git a/homeassistant/components/config_entry_example/.translations/ro.json b/homeassistant/components/config_entry_example/.translations/ro.json new file mode 100644 index 00000000000..1a4cdd6bbb7 --- /dev/null +++ b/homeassistant/components/config_entry_example/.translations/ro.json @@ -0,0 +1,15 @@ +{ + "config": { + "step": { + "init": { + "description": "Introduce\u021bi un obiect_id pentru entitatea testat\u0103.", + "title": "Alege\u021bi id-ul obiectului" + }, + "name": { + "data": { + "name": "Nume" + } + } + } + } +} \ No newline at end of file diff --git a/homeassistant/components/config_entry_example/.translations/sl.json b/homeassistant/components/config_entry_example/.translations/sl.json new file mode 100644 index 00000000000..11d2d3f5e80 --- /dev/null +++ b/homeassistant/components/config_entry_example/.translations/sl.json @@ -0,0 +1,24 @@ +{ + "config": { + "error": { + "invalid_object_id": "Neveljaven ID objekta" + }, + "step": { + "init": { + "data": { + "object_id": "ID objekta" + }, + "description": "Prosimo, vnesite Id_objekta za testni subjekt.", + "title": "Izberite ID objekta" + }, + "name": { + "data": { + "name": "Ime" + }, + "description": "Vnesite ime za testni subjekt.", + "title": "Ime subjekta" + } + }, + "title": "Primer nastavitve" + } +} \ No newline at end of file diff --git a/homeassistant/components/config_entry_example/.translations/zh-Hans.json b/homeassistant/components/config_entry_example/.translations/zh-Hans.json new file mode 100644 index 00000000000..ee10e6d7b48 --- /dev/null +++ b/homeassistant/components/config_entry_example/.translations/zh-Hans.json @@ -0,0 +1,24 @@ +{ + "config": { + "error": { + "invalid_object_id": "\u65e0\u6548\u7684\u5bf9\u8c61 ID" + }, + "step": { + "init": { + "data": { + "object_id": "\u5bf9\u8c61 ID" + }, + "description": "\u8bf7\u4e3a\u6d4b\u8bd5\u8bbe\u5907\u8f93\u5165\u5bf9\u8c61 ID", + "title": "\u8bf7\u9009\u62e9\u5bf9\u8c61 ID" + }, + "name": { + "data": { + "name": "\u540d\u79f0" + }, + "description": "\u8bf7\u4e3a\u6d4b\u8bd5\u8bbe\u5907\u8f93\u5165\u540d\u79f0", + "title": "\u8bbe\u5907\u540d\u79f0" + } + }, + "title": "\u6837\u4f8b\u914d\u7f6e\u6761\u76ee" + } +} \ No newline at end of file diff --git a/homeassistant/components/hue/.translations/de.json b/homeassistant/components/hue/.translations/de.json new file mode 100644 index 00000000000..b7094d91528 --- /dev/null +++ b/homeassistant/components/hue/.translations/de.json @@ -0,0 +1,26 @@ +{ + "config": { + "abort": { + "all_configured": "Alle Philips Hue Bridges sind bereits konfiguriert", + "discover_timeout": "Nicht in der Lage Hue Bridges zu entdecken", + "no_bridges": "Philips Hue Bridges entdeckt" + }, + "error": { + "linking": "Unbekannte Link-Fehler aufgetreten.", + "register_failed": "Registrieren fehlgeschlagen, bitte versuche es erneut" + }, + "step": { + "init": { + "data": { + "host": "Host" + }, + "title": "W\u00e4hle eine Hue Bridge" + }, + "link": { + "description": "Dr\u00fccke den Knopf auf der Bridge, um Philips Hue mit Home Assistant zu registrieren.\n\n![Position des Buttons auf der Bridge](/static/images/config_philips_hue.jpg)", + "title": "Hub verbinden" + } + }, + "title": "Philips Hue Bridge" + } +} \ No newline at end of file diff --git a/homeassistant/components/hue/.translations/en.json b/homeassistant/components/hue/.translations/en.json index ee2e01fdb17..cbf63301da2 100644 --- a/homeassistant/components/hue/.translations/en.json +++ b/homeassistant/components/hue/.translations/en.json @@ -23,4 +23,4 @@ }, "title": "Philips Hue Bridge" } -} +} \ No newline at end of file diff --git a/homeassistant/components/hue/.translations/ko.json b/homeassistant/components/hue/.translations/ko.json new file mode 100644 index 00000000000..226ae8ba1f6 --- /dev/null +++ b/homeassistant/components/hue/.translations/ko.json @@ -0,0 +1,26 @@ +{ + "config": { + "abort": { + "all_configured": "\ubaa8\ub4e0 \ud544\ub9bd\uc2a4 Hue \ube0c\ub9bf\uc9c0\uac00 \uc774\ubbf8 \uc124\uc815\ub41c \uc0c1\ud0dc\uc785\ub2c8\ub2e4", + "discover_timeout": "Hue \ube0c\ub9bf\uc9c0\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4", + "no_bridges": "\ubc1c\uacac\ub41c \ud544\ub9bd\uc2a4 Hue \ube0c\ub9bf\uc9c0\uac00 \uc5c6\uc2b5\ub2c8\ub2e4" + }, + "error": { + "linking": "\uc54c \uc218\uc5c6\ub294 \uc5f0\uacb0 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.", + "register_failed": "\ub4f1\ub85d\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4. \ub2e4\uc2dc \uc2dc\ub3c4\ud574\ubcf4\uc138\uc694" + }, + "step": { + "init": { + "data": { + "host": "\ud638\uc2a4\ud2b8" + }, + "title": "Hue \ube0c\ub9bf\uc9c0 \uc120\ud0dd" + }, + "link": { + "description": "\ube0c\ub9bf\uc9c0\uc758 \ubc84\ud2bc\uc744 \ub20c\ub7ec \ud544\ub9bd\uc2a4 Hue\ub97c Home Assistant\uc5d0 \ub4f1\ub85d\ud558\uc138\uc694.\n\n![\ube0c\ub9bf\uc9c0 \ubc84\ud2bc \uc704\uce58](/static/images/config_philips_hue.jpg)", + "title": "\ud5c8\ube0c \uc5f0\uacb0" + } + }, + "title": "\ud544\ub9bd\uc2a4 Hue \ube0c\ub9bf\uc9c0" + } +} \ No newline at end of file diff --git a/homeassistant/components/hue/.translations/nl.json b/homeassistant/components/hue/.translations/nl.json new file mode 100644 index 00000000000..750ae39db12 --- /dev/null +++ b/homeassistant/components/hue/.translations/nl.json @@ -0,0 +1,26 @@ +{ + "config": { + "abort": { + "all_configured": "Alle Philips Hue bridges zijn al geconfigureerd", + "discover_timeout": "Hue bridges kunnen niet worden gevonden", + "no_bridges": "Geen Philips Hue bridges ontdekt" + }, + "error": { + "linking": "Er is een onbekende verbindingsfout opgetreden.", + "register_failed": "Registratie is mislukt, probeer het opnieuw" + }, + "step": { + "init": { + "data": { + "host": "Host" + }, + "title": "Kies Hue bridge" + }, + "link": { + "description": "Druk op de knop van de bridge om Philips Hue te registreren met de Home Assistant. ![Locatie van de knop op bridge] (/static/images/config_philips_hue.jpg)", + "title": "Link Hub" + } + }, + "title": "Philips Hue Bridge" + } +} \ No newline at end of file diff --git a/homeassistant/components/hue/.translations/no.json b/homeassistant/components/hue/.translations/no.json new file mode 100644 index 00000000000..604475d2ff2 --- /dev/null +++ b/homeassistant/components/hue/.translations/no.json @@ -0,0 +1,26 @@ +{ + "config": { + "abort": { + "all_configured": "Alle Philips Hue Bridger er allerede konfigurert", + "discover_timeout": "Kunne ikke oppdage Hue Bridger", + "no_bridges": "Ingen Philips Hue Bridger oppdaget" + }, + "error": { + "linking": "Ukjent koblingsfeil oppstod.", + "register_failed": "Registrering feilet, vennligst pr\u00f8v igjen" + }, + "step": { + "init": { + "data": { + "host": "Vert" + }, + "title": "Velg Hue Bridge" + }, + "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": "Link Hub" + } + }, + "title": "Philips Hue Bridge" + } +} \ No newline at end of file diff --git a/homeassistant/components/hue/.translations/pl.json b/homeassistant/components/hue/.translations/pl.json new file mode 100644 index 00000000000..cdd26a5b4b2 --- /dev/null +++ b/homeassistant/components/hue/.translations/pl.json @@ -0,0 +1,26 @@ +{ + "config": { + "abort": { + "all_configured": "Wszystkie mostki Hue s\u0105 ju\u017c skonfigurowane", + "discover_timeout": "Nie mo\u017cna wykry\u0107 \u017cadnych mostk\u00f3w Hue", + "no_bridges": "Nie wykryto \u017cadnych mostk\u00f3w Hue" + }, + "error": { + "linking": "Wyst\u0105pi\u0142 nieznany b\u0142\u0105d w trakcie \u0142\u0105czenia.", + "register_failed": "Nie uda\u0142o si\u0119 zarejestrowa\u0107. Prosz\u0119 spr\u00f3bowa\u0107 ponownie." + }, + "step": { + "init": { + "data": { + "host": "Host" + }, + "title": "Wybierz mostek Hue" + }, + "link": { + "description": "Naci\u015bnij przycisk na mostku, aby zarejestrowa\u0107 Philips Hue z Home Assistant. ", + "title": "Hub Link" + } + }, + "title": "Mostek Philips Hue" + } +} \ No newline at end of file diff --git a/homeassistant/components/hue/.translations/ro.json b/homeassistant/components/hue/.translations/ro.json new file mode 100644 index 00000000000..91541edcc7d --- /dev/null +++ b/homeassistant/components/hue/.translations/ro.json @@ -0,0 +1,18 @@ +{ + "config": { + "error": { + "linking": "A ap\u0103rut o eroare de leg\u0103tur\u0103 necunoscut\u0103.", + "register_failed": "Nu a reu\u0219it \u00eenregistrarea, \u00eencerca\u021bi din nou" + }, + "step": { + "init": { + "data": { + "host": "Gazd\u0103" + } + }, + "link": { + "description": "Ap\u0103sa\u021bi butonul de pe pod pentru a \u00eenregistra Philips Hue cu Home Assistant. \n\n ! [Loca\u021bia butonului pe pod] (/ static / images / config_philips_hue.jpg)" + } + } + } +} \ No newline at end of file diff --git a/homeassistant/components/hue/.translations/sl.json b/homeassistant/components/hue/.translations/sl.json new file mode 100644 index 00000000000..a6c858e0e40 --- /dev/null +++ b/homeassistant/components/hue/.translations/sl.json @@ -0,0 +1,26 @@ +{ + "config": { + "abort": { + "all_configured": "Vsi mostovi Philips Hue so \u017ee konfigurirani", + "discover_timeout": "Ni bilo mogo\u010de odkriti Hue mostov", + "no_bridges": "Ni odkritih mostov Philips Hue" + }, + "error": { + "linking": "Pri\u0161lo je do neznane napake pri povezavi.", + "register_failed": "Registracija ni uspela, poskusite znova" + }, + "step": { + "init": { + "data": { + "host": "Host" + }, + "title": "Izberite Hue most" + }, + "link": { + "description": "Pritisnite gumb na mostu, da registrirate Philips Hue s Home Assistentom. \n\n ! [Polo\u017eaj gumba na mostu] (/static/images/config_philips_hue.jpg)", + "title": "Link Hub" + } + }, + "title": "Philips Hue Bridge" + } +} \ No newline at end of file diff --git a/homeassistant/components/hue/.translations/zh-Hans.json b/homeassistant/components/hue/.translations/zh-Hans.json new file mode 100644 index 00000000000..5a94e084dd2 --- /dev/null +++ b/homeassistant/components/hue/.translations/zh-Hans.json @@ -0,0 +1,26 @@ +{ + "config": { + "abort": { + "all_configured": "\u5168\u90e8\u98de\u5229\u6d66 Hue \u6865\u63a5\u5668\u5df2\u914d\u7f6e", + "discover_timeout": "\u65e0\u6cd5\u55c5\u63a2 Hue \u6865\u63a5\u5668", + "no_bridges": "\u672a\u53d1\u73b0\u98de\u5229\u6d66 Hue Bridge" + }, + "error": { + "linking": "\u53d1\u751f\u672a\u77e5\u7684\u8fde\u63a5\u9519\u8bef\u3002", + "register_failed": "\u6ce8\u518c\u5931\u8d25\uff0c\u8bf7\u91cd\u8bd5" + }, + "step": { + "init": { + "data": { + "host": "\u4e3b\u673a" + }, + "title": "\u9009\u62e9 Hue Bridge" + }, + "link": { + "description": "\u8bf7\u6309\u4e0b\u6865\u63a5\u5668\u4e0a\u7684\u6309\u94ae\uff0c\u5728 Home Assistant \u4e0a\u6ce8\u518c\u98de\u5229\u6d66 Hue ![\u6865\u63a5\u5668\u6309\u94ae\u4f4d\u7f6e](/static/images/config_philips_hue.jpg)", + "title": "\u8fde\u63a5\u4e2d\u67a2" + } + }, + "title": "\u98de\u5229\u6d66 Hue Bridge" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.cs.json b/homeassistant/components/sensor/.translations/season.cs.json new file mode 100644 index 00000000000..e2d7e7919be --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.cs.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "Podzim", + "spring": "Jaro", + "summer": "L\u00e9to", + "winter": "Zima" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.cy.json b/homeassistant/components/sensor/.translations/season.cy.json new file mode 100644 index 00000000000..0d1553ac3ea --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.cy.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "Hydref", + "spring": "Gwanwyn", + "summer": "Haf", + "winter": "Gaeaf" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.de.json b/homeassistant/components/sensor/.translations/season.de.json new file mode 100644 index 00000000000..50d702340b9 --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.de.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "Herbst", + "spring": "Fr\u00fchling", + "summer": "Sommer", + "winter": "Winter" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.es.json b/homeassistant/components/sensor/.translations/season.es.json new file mode 100644 index 00000000000..65df6a58b10 --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.es.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "Oto\u00f1o", + "spring": "Primavera", + "summer": "Verano", + "winter": "Invierno" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.fi.json b/homeassistant/components/sensor/.translations/season.fi.json new file mode 100644 index 00000000000..f01f6451549 --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.fi.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "Syksy", + "spring": "Kev\u00e4t", + "summer": "Kes\u00e4", + "winter": "Talvi" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.ja.json b/homeassistant/components/sensor/.translations/season.ja.json new file mode 100644 index 00000000000..e441b1aa8ac --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.ja.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "\u79cb", + "spring": "\u6625", + "summer": "\u590f", + "winter": "\u51ac" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.ko.json b/homeassistant/components/sensor/.translations/season.ko.json new file mode 100644 index 00000000000..f2bf0a7bae5 --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.ko.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "\uac00\uc744", + "spring": "\ubd04", + "summer": "\uc5ec\ub984", + "winter": "\uaca8\uc6b8" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.nl.json b/homeassistant/components/sensor/.translations/season.nl.json new file mode 100644 index 00000000000..6054a8e2be5 --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.nl.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "Herfst", + "spring": "Lente", + "summer": "Zomer", + "winter": "Winter" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.no.json b/homeassistant/components/sensor/.translations/season.no.json new file mode 100644 index 00000000000..9d520dae6a5 --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.no.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "H\u00f8st", + "spring": "V\u00e5r", + "summer": "Sommer", + "winter": "Vinter" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.pl.json b/homeassistant/components/sensor/.translations/season.pl.json new file mode 100644 index 00000000000..f5a7da57e7f --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.pl.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "Jesie\u0144", + "spring": "Wiosna", + "summer": "Lato", + "winter": "Zima" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.pt.json b/homeassistant/components/sensor/.translations/season.pt.json new file mode 100644 index 00000000000..fde45ad6c8e --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.pt.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "Outono", + "spring": "Primavera", + "summer": "Ver\u00e3o", + "winter": "Inverno" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.ro.json b/homeassistant/components/sensor/.translations/season.ro.json new file mode 100644 index 00000000000..04f90318290 --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.ro.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "Toamn\u0103", + "spring": "Prim\u0103var\u0103", + "summer": "Var\u0103", + "winter": "Iarn\u0103" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.sl.json b/homeassistant/components/sensor/.translations/season.sl.json new file mode 100644 index 00000000000..f715a3ec13a --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.sl.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "Jesen", + "spring": "Pomlad", + "summer": "Poletje", + "winter": "Zima" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.sv.json b/homeassistant/components/sensor/.translations/season.sv.json new file mode 100644 index 00000000000..02332d76906 --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.sv.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "H\u00f6st", + "spring": "V\u00e5r", + "summer": "Sommar", + "winter": "Vinter" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.th.json b/homeassistant/components/sensor/.translations/season.th.json new file mode 100644 index 00000000000..09799730389 --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.th.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "\u0e24\u0e14\u0e39\u0e43\u0e1a\u0e44\u0e21\u0e49\u0e23\u0e48\u0e27\u0e07", + "spring": "\u0e24\u0e14\u0e39\u0e43\u0e1a\u0e44\u0e21\u0e49\u0e1c\u0e25\u0e34", + "summer": "\u0e24\u0e14\u0e39\u0e23\u0e49\u0e2d\u0e19", + "winter": "\u0e24\u0e14\u0e39\u0e2b\u0e19\u0e32\u0e27" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.zh-Hans.json b/homeassistant/components/sensor/.translations/season.zh-Hans.json new file mode 100644 index 00000000000..78801f4b1df --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.zh-Hans.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "\u79cb\u5b63", + "spring": "\u6625\u5b63", + "summer": "\u590f\u5b63", + "winter": "\u51ac\u5b63" + } +} \ No newline at end of file diff --git a/homeassistant/components/sensor/.translations/season.zh-Hant.json b/homeassistant/components/sensor/.translations/season.zh-Hant.json new file mode 100644 index 00000000000..78801f4b1df --- /dev/null +++ b/homeassistant/components/sensor/.translations/season.zh-Hant.json @@ -0,0 +1,8 @@ +{ + "state": { + "autumn": "\u79cb\u5b63", + "spring": "\u6625\u5b63", + "summer": "\u590f\u5b63", + "winter": "\u51ac\u5b63" + } +} \ No newline at end of file