Skip to content

Instantly share code, notes, and snippets.

@mrdotb
Created February 3, 2021 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrdotb/085492f99e3a77f547b0971e66f6f9a8 to your computer and use it in GitHub Desktop.
Save mrdotb/085492f99e3a77f547b0971e66f6f9a8 to your computer and use it in GitHub Desktop.
gettext password-validator and zxcvbn-elixir
## From zxcvbn-elixir
msgid "Add another word or two. Uncommon words are better."
msgstr ""
msgid "Straight rows of keys are easy to guess"
msgstr ""
msgid "Short keyboard patterns are easy to guess"
msgstr ""
msgid "Use a longer keyboard pattern with more turns"
msgstr ""
msgid "Repeats like \"aaa\" are easy to guess"
msgstr ""
msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\""
msgstr ""
msgid "Avoid repeated words and characters"
msgstr ""
msgid "Sequences like abc or 6543 are easy to guess"
msgstr ""
msgid "Avoid sequences"
msgstr ""
msgid "Recent years are easy to guess"
msgstr ""
msgid "Avoid recent years"
msgstr ""
msgid "Avoid years that are associated with you"
msgstr ""
msgid "Dates are often easy to guess"
msgstr ""
msgid "Avoid dates and years that are associated with you"
msgstr ""
msgid "A word by itself is easy to guess"
msgstr ""
msgid "Names and surnames by themselves are easy to guess"
msgstr ""
msgid "Common names and surnames are easy to guess"
msgstr ""
msgid "This is a top-10 common password"
msgstr ""
msgid "This is a top-100 common password"
msgstr ""
msgid "This is a very common password"
msgstr ""
msgid "This is similar to a commonly used password"
msgstr ""
msgid "Capitalization doesn't help very much"
msgstr ""
msgid "All-uppercase is almost as easy to guess as all-lowercase"
msgstr ""
msgid "Reversed words aren't much harder to guess"
msgstr ""
msgid "Predictable substitutions like '@' instead of 'a' don't help very much"
msgstr ""
## From password-validator
msgid "Not enough %{character_set} characters (only %{count} instead of at least %{min})"
msgstr ""
msgid "Too many %{character_set} (%{count} but maximum is %{max})"
msgstr ""
msgid "Invalid character(s) found. (%{other_characters})"
msgstr ""
msgid "String is too short. Only %{length} characters instead of %{min}"
msgstr ""
msgid "String is too long. %{length} but maximum is %{max}"
msgstr ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment