Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit 43cb468

Browse files
sdaluzeapo
authored andcommitted
Pref i18n (#258)
* preference i18n * wrong key
1 parent be7da47 commit 43cb468

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

app/src/main/res/values-fr/strings.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@
118118
<string name="ssh_key_error_dialog_text">Message : \n</string>
119119
<string name="pref_recursive_filter">Filtre récursif</string>
120120
<string name="pref_recursive_filter_hint">Cherche le mot de passe dans tous les sous-répertoires du répertoire actuel.</string>
121+
<string name="pref_autofill_title">Saisie automatique</string>
121122
<string name="pref_autofill_enable_title">Saisie automatique</string>
122123
<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>
123124
<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 @@
127128
<string name="pref_autofill_default_title">Correspondance automatique par défaut</string>
128129
<string name="pref_autofill_default_hint">Default to \"Automatically match\" for apps without custom settings. Otherwise, \"Never match.\"</string>
129130
<string name="pref_autofill_always_title">Toujours montrer la fenêtre de dialogue</string>
131+
<string name="pref_misc_title">Divers</string>
130132
<string name="pref_clear_clipboard_title">Effacer le presse-papier 20 fois</string>
131133
<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>
132134
<string name="pref_git_delete_repo_summary">Supprime le dépot local (caché)</string>

app/src/main/res/values/strings.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@
118118
<string name="ssh_key_error_dialog_text">Message : \n</string>
119119
<string name="pref_recursive_filter">Recursive filtering</string>
120120
<string name="pref_recursive_filter_hint">Recursively find passwords of the current directory.</string>
121+
<string name="pref_autofill_title">Autofill</string>
121122
<string name="pref_autofill_enable_title">Enable autofill</string>
122123
<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>
123124
<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 @@
127128
<string name="pref_autofill_default_title">Automatically match by default</string>
128129
<string name="pref_autofill_default_hint">Default to \'Automatically match\' for apps without custom settings. Otherwise, \'Never match.\'</string>
129130
<string name="pref_autofill_always_title">Always show dialog</string>
131+
<string name="pref_misc_title">Misc</string>
130132
<string name="pref_clear_clipboard_title">Clear clipboard 20 times</string>
131133
<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>
132134
<string name="pref_git_delete_repo_summary">Deletes local (hidden) repository</string>

app/src/main/res/xml/preference.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
android:title="@string/pref_recursive_filter" />
6363
</PreferenceCategory>
6464

65-
<PreferenceCategory android:title="Autofill">
65+
<PreferenceCategory android:title="@string/pref_autofill_title">
6666
<CheckBoxPreference
6767
android:defaultValue="true"
6868
android:key="autofill_enable"
@@ -84,11 +84,11 @@
8484
android:title="@string/pref_autofill_always_title"/>
8585
</PreferenceCategory>
8686

87-
<PreferenceCategory android:title="Misc">
87+
<PreferenceCategory android:title="@string/pref_misc_title">
8888
<CheckBoxPreference
8989
android:defaultValue="false"
9090
android:key="clear_clipboard_20x"
9191
android:summary="@string/pref_clear_clipboard_hint"
9292
android:title="@string/pref_clear_clipboard_title" />
9393
</PreferenceCategory>
94-
</PreferenceScreen>
94+
</PreferenceScreen>

0 commit comments

Comments
 (0)