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 +}