diff options
author | glowinthedark <48893368+glowinthedark@users.noreply.github.com> | 2020-02-29 21:46:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-01 02:16:31 +0530 |
commit | 947e41105b3fdfb7ce9734fb25119c46695f7bba (patch) | |
tree | 74c63b130b262a06ea068e10ffc20c1dd69d4897 /app/src/main/res/values/strings.xml | |
parent | bea3cd5457e331f04a9aeb5c99267f14908f5eaa (diff) |
Add xkpasswd-style password generator (#633)
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/src/main/res/values/strings.xml')
-rw-r--r-- | app/src/main/res/values/strings.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index ae8ec622..b244a877 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -190,6 +190,25 @@ <string name="pwgen_no_chars_error">No characters included</string> <string name="pwgen_length_too_short_error">Length too short for selected criteria</string> + <!-- XKPWD password generator --> + <string name="xkpwgen_title">Xkpasswd Generator</string> + <string name="xkpwgen_length">Total words</string> + <string name="xkpwgen_separator">Separator</string> + <string name="xkpwgen_custom_dict_imported">Custom wordlist: %1$s</string> + <string name="xkpwgen_separator_character">separator character</string> + <string name="xkpwgen_numbers">numbers:</string> + <string name="xkpwgen_symbols">symbols:</string> + <string name="xkpwgen_builder_error">Selected dictionary does not contain enough words of given length %1$d..%2$d</string> + + <!-- XKPWD prefs --> + <string name="xkpwgen_pref_gentype_title">Password generator type</string> + <string name="xkpwgen_pref_custom_dict_title">Custom wordlist</string> + <string name="xkpwgen_pref_custom_dict_summary_on">Using custom wordlist file</string> + <string name="xkpwgen_pref_custom_dict_summary_off">Using built-in wordlist</string> + <string name="xkpwgen_pref_custom_dict_picker_title">Custom worldlist file</string> + <string name="xkpwgen_pref_custom_dict_picker_summary">Tap to pick a custom wordlist file containing one word per line</string> + + <!-- ssh keygen fragment --> <string name="ssh_keygen_length">Length</string> <string name="ssh_keygen_passphrase">Passphrase</string> @@ -285,4 +304,6 @@ <string name="pref_search_on_start_hint">Open search bar when app is launched</string> <string name="pref_search_from_root">Always search from root</string> <string name="pref_search_from_root_hint">Search from root of store regardless of currently open directory</string> + <string name="password_generator_category_title">Password Generator</string> + </resources> |