From c973b671f92743238d63f7f32246e242fa7f56ff Mon Sep 17 00:00:00 2001 From: xavier dutoit Date: Wed, 10 Feb 2021 11:29:15 +0100 Subject: [PATCH] Update to french side note: I highly recommend you weblate, they are awesome and offers free hosting for open source projects --- src/localization.ts | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/src/localization.ts b/src/localization.ts index 1acda6d..17ad2b9 100644 --- a/src/localization.ts +++ b/src/localization.ts @@ -45,6 +45,25 @@ const LANG_EN: Localization = { button_retry: "Retry", } +// French +const LANG_FR: Localization = { + text_init: "Chargement..", + + text_ready: "Verification Anti-Robot ", + button_start: "Cliquez ici pour vérifier", + + text_fetching: "Chargement du challenge", + + text_solving: "Vérification que vous êtes humain.", + text_completed: "Je suis humain", + + text_expired: "Verification échue", + button_restart: "Recommencer", + + text_error: "Echec de verification:", + button_retry: "Recommencer", +} + // German const LANG_DE: Localization = { text_init: "Initialisierung..", @@ -87,4 +106,4 @@ export const localizations = { en: LANG_EN, de: LANG_DE, nl: LANG_NL, -} \ No newline at end of file +}