Skip to content

Commit

Permalink
Merge pull request #18 from sebadob/password-policy-default-translation
Browse files Browse the repository at this point in the history
default translation for PasswordPolicy component
  • Loading branch information
sebadob committed Aug 13, 2023
2 parents 1922d3c + d0947c9 commit 2f8a627
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion frontend/src/components/passwordReset/PasswordPolicy.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
<script>
export let t;
export let t = {
passwordPolicy: {
passwordPolicy: "Password Policy",
lengthMin: "Length min",
lengthMax: "Length max",
lowercaseMin: "Lowercase letters min",
uppercaseMin: "Uppercase letters min",
digitsMin: "Digits min",
specialMin: "Special characters min",
notRecent: "Not one of last recent passwords",
}
};
export let policy = {};
export let password = '';
export let accepted = false;
Expand Down

0 comments on commit 2f8a627

Please sign in to comment.