From 594eb45f0611728d26f60935f6aae2178dadd34b Mon Sep 17 00:00:00 2001 From: Adrien LUC Date: Sun, 4 Oct 2020 15:38:09 +0200 Subject: [PATCH 1/2] Add French translation --- README.md | 1 + src/localize.js | 2 ++ src/translations/fr.json | 38 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 src/translations/fr.json diff --git a/README.md b/README.md index 36bdec8..e9fb4fd 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,7 @@ This card supports translations. Please, help to add more translations and impro - English - Українська (Ukrainian) +- Français - [_Your language?_][add-translation] ## Supported models diff --git a/src/localize.js b/src/localize.js index 3ff86b4..ad68410 100644 --- a/src/localize.js +++ b/src/localize.js @@ -3,10 +3,12 @@ import * as en from './translations/en.json'; import * as uk from './translations/uk.json'; +import * as fr from './translations/fr.json'; var languages = { en, uk, + fr, }; const DEFAULT_LANG = 'en'; diff --git a/src/translations/fr.json b/src/translations/fr.json new file mode 100644 index 0000000..0a6808e --- /dev/null +++ b/src/translations/fr.json @@ -0,0 +1,38 @@ +{ + "common": { + "name": "Carte purificateur", + "description": "La carte purificateur vous permet de contrôler votre purificateur d'air intelligent.", + "not_available": "Le purificateur n'est pas disponible", + "toggle_power": "Allumer/éteindre" + }, + "state": { + "on": "Allumé", + "off": "Éteint" + }, + "speed": { + "Auto": "Auto", + "Silent": "Nuit", + "Favorite": "Favori", + "Fan": "Manuel" + }, + "error": { + "missing_entity": "Il est obligatoire de spécifier une entité!", + "xiaomi_miio_level_without_speed": "speed est obligatoire avec la propriété xiaomi_miio_favorite_level!" + }, + "editor": { + "entity": "Entité (obligatoire)", + "compact_view": "Vue compacte", + "compact_view_aria_label_on": "Activer la vue compacte", + "compact_view_aria_label_off": "Désactiver la vue compacte", + "show_name": "Afficher le nom", + "show_name_aria_label_on": "Activer affichage du nom", + "show_name_aria_label_off": "Désactiver affichage du nom", + "show_state": "Afficher l'état", + "show_state_aria_label_on": "Activer l'affichage de l'état", + "show_state_aria_label_off": "Désactiver l'affichage de l'état", + "show_toolbar": "Afficher la barre d'outils", + "show_toolbar_aria_label_on": "Activer l'affichage de la barre d'outils", + "show_toolbar_aria_label_off": "Désactiver l'affichage de la barre d'outils", + "code_only_note": "Remarque: Les options de réglage des actions et statistiques sont disponibles exclusivement en utilisant l'éditeur de code." + } +} From f54ac11a9b9b31a654d546a0064197d5709d37fc Mon Sep 17 00:00:00 2001 From: AdrinkBeer <39377916+AdrinkBeer@users.noreply.github.com> Date: Sun, 4 Oct 2020 16:09:13 +0200 Subject: [PATCH 2/2] Update README.md Co-authored-by: Denys Dovhan --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e9fb4fd..abe1127 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ This card supports translations. Please, help to add more translations and impro - English - Українська (Ukrainian) -- Français +- Français (French) - [_Your language?_][add-translation] ## Supported models