diff --git a/src/translations/en.js b/src/translations/en.js index b5cd539..8a297fe 100644 --- a/src/translations/en.js +++ b/src/translations/en.js @@ -1,7 +1,7 @@ module.exports = { // The localised name for the language "language_name": "English", - + // These are the buttons on the top bar. "home_btn": "Home", "back_btn": "Back", @@ -128,17 +128,17 @@ module.exports = { // Transit Encrypt Page "transit_encrypt_title": "Transit Encrypt", - "transit_encrypt_suffix": " (encrypt)", + "transit_encrypt_suffix": " (encrypt)", "transit_encrypt_input_placeholder": "Plaintext or base64", - "transit_encrypt_already_encoded_checkbox": "Is the data already encoded in base64?", - "transit_encrypt_encrypt_btn": "Encrypt", - "transit_encrypt_encryption_result_modal_title": "Encryption Result", + "transit_encrypt_already_encoded_checkbox": "Is the data already encoded in base64?", + "transit_encrypt_encrypt_btn": "Encrypt", + "transit_encrypt_encryption_result_modal_title": "Encryption Result", // Transit decrypt Page "transit_decrypt_title": "Transit Decrypt", - "transit_decrypt_suffix": " (decrypt)", + "transit_decrypt_suffix": " (decrypt)", "transit_decrypt_input_placeholder": "Cyphertext", - "transit_decrypt_decode_checkbox": "Should the plaintext be base64 decoded?", - "transit_decrypt_decrypt_btn": "Decrypt", - "transit_decrypt_decryption_result_modal_title": "Decryption Result", + "transit_decrypt_decode_checkbox": "Should the plaintext be base64 decoded?", + "transit_decrypt_decrypt_btn": "Decrypt", + "transit_decrypt_decryption_result_modal_title": "Decryption Result", } \ No newline at end of file diff --git a/src/translations/fr.js b/src/translations/fr.js index 40cd76d..28e9a17 100644 --- a/src/translations/fr.js +++ b/src/translations/fr.js @@ -1,13 +1,24 @@ module.exports = { // The localised name for the language "language_name": "Français", - + // These are the buttons on the top bar. "home_btn": "Accueil", "back_btn": "Retour", "refresh_btn": "Rafraichir", "me_btn": "Profil/Paramètres", + // General Notification Messages + "notification_copy_success": "Copié dans le presse-papiers.", + + // Copyable Modal + "copy_modal_download_btn": "Télécharger", + "copy_modal_copy_btn": "Copier", + "copy_modal_close_btn": "Fermer", + + // Copyable Input Box + "copy_input_box_copy_icon_text": "Bouton Copier", + // Me Page "me_page_title": "Profil/Paramètres", "log_out_btn": "Déconnexion", @@ -102,5 +113,32 @@ module.exports = { "totp_new_key_input": "Clé", "totp_new_add_btn": "Ajouter clé TOTP", + // Transit View Page + "transit_view_title": "Fenêtre Transit", + "transit_view_none_here_text": "Vous semblez ne pas avoir de clés de transit ici, voulez-vous en créer une ?", + // Transit View Secret Page + "transit_view_secret_title": "Transit Secret", + "transit_view_encrypt_text": "Chiffrer", + "transit_view_encrypt_icon_text": "Icône chiffrement", + "transit_view_encrypt_description": "Chiffrer du texte brut ou données binaires encodées en base64.", + "transit_view_decrypt_text": "Déchiffrer", + "transit_view_decrypt_description": "Déchiffrer du texte chiffré.", + "transit_view_decrypt_icon_text": "Icône déchiffrement", + + // Transit Encrypt Page + "transit_encrypt_title": "Chiffrement Transit", + "transit_encrypt_suffix": " (chiffrer)", + "transit_encrypt_input_placeholder": "Texte brut ou base64", + "transit_encrypt_already_encoded_checkbox": "Les données sont-elles déjà encodées en base64 ?", + "transit_encrypt_encrypt_btn": "Chiffrer", + "transit_encrypt_encryption_result_modal_title": "Résultat chiffré", + + // Transit decrypt Page + "transit_decrypt_title": "Déchiffrement Transit", + "transit_decrypt_suffix": " (déchiffrer)", + "transit_decrypt_input_placeholder": "Message chiffré", + "transit_decrypt_decode_checkbox": "Est-ce que le texte brut doit être encodé en base64 ?", + "transit_decrypt_decrypt_btn": "Déchiffrer", + "transit_decrypt_decryption_result_modal_title": "Résultat déchiffré", } \ No newline at end of file