From 5c156fbc7f5dceab81ea42aefb478f003cbd95eb Mon Sep 17 00:00:00 2001 From: Vasile Labici Date: Mon, 12 Jul 2021 15:21:55 +0300 Subject: [PATCH] Add romanian language --- README.md | 1 + src/localize.js | 4 ++- src/translations/ro.json | 61 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 src/translations/ro.json diff --git a/README.md b/README.md index ca1e1ea9..24ecf590 100644 --- a/README.md +++ b/README.md @@ -171,6 +171,7 @@ This card supports translations. Please, help to add more translations and impro - 正體中文 (Traditional Chinese) - Việt Nam (Vietnamese) - Lietuvių (Lithuanian) +- Română (Romanian) - [_Your language?_][add-translation] ## Supported models diff --git a/src/localize.js b/src/localize.js index 52f1160c..574e04d9 100644 --- a/src/localize.js +++ b/src/localize.js @@ -23,6 +23,7 @@ import * as ca from './translations/ca.json'; import * as tw from './translations/tw.json'; import * as vi from './translations/vi.json'; import * as lt from './translations/lt.json'; +import * as ro from './translations/ro.json'; var languages = { en, @@ -46,7 +47,8 @@ var languages = { ca, tw, vi, - lt + lt, + ro }; const DEFAULT_LANG = 'en'; diff --git a/src/translations/ro.json b/src/translations/ro.json new file mode 100644 index 00000000..15341394 --- /dev/null +++ b/src/translations/ro.json @@ -0,0 +1,61 @@ +{ + "status": { + "cleaning": "Curățare", + "auto": "Curățare Automată", + "spot": "Curățare Punct", + "edge": "Curățare Margini", + "single_room": "Curățare o singură cameră", + "paused": "Repauz", + "idle": "Inactiv", + "stop": "Oprit", + "charging": "Încărcare", + "returning home": "Revenire Acasă", + "returning": "Revenire Acasă", + "docked": "Parcat", + "unknown": "Necunoscut", + "offline": "Deconectat", + "error": "Eroare" + }, + "source": { + "gentle": "Blând", + "silent": "Silențios", + "standard": "Standard", + "medium": "Mediu", + "turbo": "Turbo", + "normal": "Normal", + "high": "Ridicat" + }, + "common": { + "name": "Card de vid.", + "description": "Un card de vid vă permite să controlați vidul robotului.", + "start": "Curat", + "continue": "Continuă", + "pause": "Repauz", + "stop": "Stop", + "return_to_base": "Parchează", + "locate": "Găsește Aspirator", + "not_available": "Aspiratorul nu este disponibil" + }, + "error": { + "missing_entity": "Este necesară specificarea entității!" + }, + "editor": { + "entity": "Entitate (Necesar)", + "map": "Camera Harta (Optional)", + "image": "Imagine (Optional)", + "compact_view": "Vizualizare compactă", + "compact_view_aria_label_on": "Pornește vizualizare compactă", + "compact_view_aria_label_off": "Oprește vizualizare compactă compact view off", + "show_name": "Arată Nume", + "show_name_aria_label_on": "Pornește arată nume", + "show_name_aria_label_off": "Oprește arată nume", + "show_status": "Arată Status", + "show_status_aria_label_on": "Pornește arată status", + "show_status_aria_label_off": "Oprește arată status", + "show_toolbar": "Arată bara de instrumente", + "show_toolbar_aria_label_on": "Pornește arată bara de instrumente", + "show_toolbar_aria_label_off": "Oprește arată bara de instrumente", + "code_only_note": "Notă: Acțiunile de setare și opțiunile de statistici sunt disponibile exclusiv folosind Editorul de cod." + } + } + \ No newline at end of file