diff --git a/README.md b/README.md index cab5a3d..160cdca 100644 --- a/README.md +++ b/README.md @@ -171,6 +171,7 @@ This card supports translations. Please, help to add more translations and impro - English - Українська (Ukrainian) - Türkçe (Turkish) +- Français (French) - [_Your language?_][add-translation] ## Supported models diff --git a/src/localize.js b/src/localize.js index f7c689f..414f2e9 100644 --- a/src/localize.js +++ b/src/localize.js @@ -4,10 +4,12 @@ import * as en from './translations/en.json'; import * as uk from './translations/uk.json'; import * as tr from './translations/tr.json'; +import * as fr from './translations/fr.json'; var languages = { en, uk, + fr, tr, }; 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." + } +}