diff options
author | glowinthedark <48893368+glowinthedark@users.noreply.github.com> | 2020-08-17 12:40:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-17 16:10:03 +0530 |
commit | 82ae0a8629a42bc169b4b1993bc8257457703e3f (patch) | |
tree | bf70bdc580a44a3cdced36c4b0e0b4bd89895f1d /app/src/main/res/values/arrays.xml | |
parent | e2a372bc63eac1a68427dfc55e32cd83f0440219 (diff) |
Allow adding digits and symbols in XkPasswd generator using mask-like values (#1023)
* - XkPasswordGeneratorDialogFragment: add symbol/number mask to allow appending numbers+symbols via a mask such as `ddds` which would generate random.password123!; position of `d` and `s` is not currently considered; only the count is relevant
* - update CHANGELOG.md
* - update CHANGELOG.md
* - rename constants
* Update CHANGELOG.md
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
* - add missing marginTop
* - add missing marginTop
Co-authored-by: null <null>
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
Co-authored-by: glowinthedark <glowinthedark>
Co-authored-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to 'app/src/main/res/values/arrays.xml')
-rw-r--r-- | app/src/main/res/values/arrays.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/res/values/arrays.xml b/app/src/main/res/values/arrays.xml index 1ccdd5eb..6b5edf6c 100644 --- a/app/src/main/res/values/arrays.xml +++ b/app/src/main/res/values/arrays.xml @@ -18,7 +18,7 @@ <item>lowercase</item> <item>UPPERCASE</item> <item>TitleCase</item> - <item>Sentencecase</item> + <item>Sentence</item> </string-array> <string-array name="pwgen_provider_labels"> <item>Classic</item> |