diff options
author | Stéphane D'Alu <sdalu@sdalu.com> | 2017-01-02 19:32:36 +0100 |
---|---|---|
committer | Mohamed Zenadi <zeapo@users.noreply.github.com> | 2017-01-02 19:32:36 +0100 |
commit | 43cb468dd4af0b522d91d782ce61461d9d6c9d31 (patch) | |
tree | 9582f09eea852841601b31b118d72a9402999474 | |
parent | be7da472147794db8446d920e5be512ce691d12c (diff) |
Pref i18n (#258)
* preference i18n
* wrong key
-rw-r--r-- | app/src/main/res/values-fr/strings.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/xml/preference.xml | 6 |
3 files changed, 7 insertions, 3 deletions
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 74ba7288..8bcb8cca 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -118,6 +118,7 @@ <string name="ssh_key_error_dialog_text">Message : \n</string> <string name="pref_recursive_filter">Filtre récursif</string> <string name="pref_recursive_filter_hint">Cherche le mot de passe dans tous les sous-répertoires du répertoire actuel.</string> + <string name="pref_autofill_title">Saisie automatique</string> <string name="pref_autofill_enable_title">Saisie automatique</string> <string name="pref_autofill_enable_msg">Tapez OK pour aller dans les paramètres d\'Accessibilité. Puis, choisissez \"Password Store\" dans \"Services\", ensuite utilisez le boutton dans le coin supérieur droit pour activer/désactiver la saisie automatique.</string> <string name="pref_autofill_enable_msg2">Lorsque le service est activé une fenêtre de dialogue apparaitra lorsque vous cliquez sur un champ de type mot de passe.</string> @@ -127,6 +128,7 @@ <string name="pref_autofill_default_title">Correspondance automatique par défaut</string> <string name="pref_autofill_default_hint">Default to \"Automatically match\" for apps without custom settings. Otherwise, \"Never match.\"</string> <string name="pref_autofill_always_title">Toujours montrer la fenêtre de dialogue</string> + <string name="pref_misc_title">Divers</string> <string name="pref_clear_clipboard_title">Effacer le presse-papier 20 fois</string> <string name="pref_clear_clipboard_hint">Enregistre des informations absurdes dans le presse-papier 20 fois à la place d\'une seule. Utile sur les téléphones Samsung qui disposent d\'un historique du presse-papier.</string> <string name="pref_git_delete_repo_summary">Supprime le dépot local (caché)</string> diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index ba377a0b..1bc6d9cc 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -118,6 +118,7 @@ <string name="ssh_key_error_dialog_text">Message : \n</string> <string name="pref_recursive_filter">Recursive filtering</string> <string name="pref_recursive_filter_hint">Recursively find passwords of the current directory.</string> + <string name="pref_autofill_title">Autofill</string> <string name="pref_autofill_enable_title">Enable autofill</string> <string name="pref_autofill_enable_msg">Tap OK to go to Accessibility settings. There, tap Password Store under Services then tap the switch in the top right to turn it on or off.</string> <string name="pref_autofill_enable_msg2">Once the service is on, a dialog will appear when you click on a password field in an app if a matching password for the app exists.</string> @@ -127,6 +128,7 @@ <string name="pref_autofill_default_title">Automatically match by default</string> <string name="pref_autofill_default_hint">Default to \'Automatically match\' for apps without custom settings. Otherwise, \'Never match.\'</string> <string name="pref_autofill_always_title">Always show dialog</string> + <string name="pref_misc_title">Misc</string> <string name="pref_clear_clipboard_title">Clear clipboard 20 times</string> <string name="pref_clear_clipboard_hint">Store nonsense in the clipboard 20 times instead of just once. Useful on Samsung phones that feature clipboard history.</string> <string name="pref_git_delete_repo_summary">Deletes local (hidden) repository</string> diff --git a/app/src/main/res/xml/preference.xml b/app/src/main/res/xml/preference.xml index b605058c..09b026d1 100644 --- a/app/src/main/res/xml/preference.xml +++ b/app/src/main/res/xml/preference.xml @@ -62,7 +62,7 @@ android:title="@string/pref_recursive_filter" /> </PreferenceCategory> - <PreferenceCategory android:title="Autofill"> + <PreferenceCategory android:title="@string/pref_autofill_title"> <CheckBoxPreference android:defaultValue="true" android:key="autofill_enable" @@ -84,11 +84,11 @@ android:title="@string/pref_autofill_always_title"/> </PreferenceCategory> - <PreferenceCategory android:title="Misc"> + <PreferenceCategory android:title="@string/pref_misc_title"> <CheckBoxPreference android:defaultValue="false" android:key="clear_clipboard_20x" android:summary="@string/pref_clear_clipboard_hint" android:title="@string/pref_clear_clipboard_title" /> </PreferenceCategory> -</PreferenceScreen>
\ No newline at end of file +</PreferenceScreen> |