Add word lists for spanish, portuguese and french

This commit is contained in:
Martin Kleinschrodt 2019-12-05 12:57:16 +01:00
parent 3734b96e26
commit 80d96ef4f7
6 changed files with 26437 additions and 3 deletions

View File

@ -28,6 +28,7 @@
"start": "npm run pwa:build && lerna run --scope '@padloc/{server,pwa}' --parallel start",
"dev": "lerna run --parallel dev",
"repl": "cd packages/server && npm run repl && cd ../..",
"test": "lerna run test"
"test": "lerna run test",
"locale:extract": "lerna run extract --scope '@padloc/locale'"
}
}

View File

@ -721,7 +721,7 @@
],
[
"Sign Up Now",
"Jetzt Anmelden"
"Jetzt Registrieren"
],
[
"Please enter a valid email address!",

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -29,5 +29,8 @@ export async function getWordList(lang: string): Promise<string[]> {
export const AVAILABLE_LANGUAGES = [
{ value: "en", toString: () => "English" },
{ value: "de", toString: () => "Deutsch" }
{ value: "de", toString: () => "Deutsch" },
{ value: "es", toString: () => "Español" },
{ value: "pt", toString: () => "Português" },
{ value: "fr", toString: () => "Français" }
];