diff options
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/values-de/strings.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/xml/preference.xml | 5 |
3 files changed, 9 insertions, 0 deletions
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 561c9307..6b1161d1 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -171,6 +171,8 @@ <string name="refresh_list">Aktualisieren</string> <string name="show_password_pref_title">Zeige das Password</string> <string name="show_password_pref_summary">Soll das entschlüsselte Passwort sichtbar sein? Dies deaktiviert nicht das Kopieren.</string> + <string name="show_extra_content_pref_title">Zeige weiteren Inhalt</string> + <string name="show_extra_content_pref_summary">Soll weiterer Inhalt sichtbar sein?</string> <string name="toast_password_copied">Passwort befindet sich zum Einfügen in der Zwischenablage</string> <string name="pwd_generate_button">Generieren</string> <string name="category_string">"Kategorie: "</string> diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 8c5e2102..444bbf08 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -179,6 +179,8 @@ <string name="git_push">Push to remote</string> <string name="show_password_pref_title">Show the password</string> <string name="show_password_pref_summary">Control the visibility of the passwords once decrypted, this does not disable the password copy</string> + <string name="show_extra_content_pref_title">Show extra content</string> + <string name="show_extra_content_pref_summary">Control the visibility of the extra content once decrypted</string> <string name="toast_password_copied">Password copied into the clipboard</string> <string name="pwd_generate_button">Generate</string> <string name="category_string">"Category: "</string> diff --git a/app/src/main/res/xml/preference.xml b/app/src/main/res/xml/preference.xml index ec740836..cd072353 100644 --- a/app/src/main/res/xml/preference.xml +++ b/app/src/main/res/xml/preference.xml @@ -54,6 +54,11 @@ android:key="show_password" /> <CheckBoxPreference android:defaultValue="true" + android:title="@string/show_extra_content_pref_title" + android:summary="@string/show_extra_content_pref_summary" + android:key="show_extra_content" /> + <CheckBoxPreference + android:defaultValue="true" android:dialogTitle="@string/pref_copy_dialog_title" android:key="copy_on_decrypt" android:summary="@string/pref_copy_dialog_title" |