diff --git a/.github/workflows/build-tauri.yml b/.github/workflows/build-tauri.yml index adb5ec66..a9801d3d 100644 --- a/.github/workflows/build-tauri.yml +++ b/.github/workflows/build-tauri.yml @@ -2,43 +2,43 @@ name: "Build And Publish Desktop Tauri Apps" on: [workflow_dispatch] jobs: - build_and_publish: - name: Build And Publish + build_and_publish: + name: Build And Publish - strategy: - fail-fast: false - matrix: - platform: [macos-latest, ubuntu-latest, windows-latest] + strategy: + fail-fast: false + matrix: + platform: [macos-latest, ubuntu-latest, windows-latest] - runs-on: ${{ matrix.platform }} - steps: - - uses: actions/checkout@v2 - - name: setup node - uses: actions/setup-node@v1 - with: - node-version: 12 - - name: install Rust stable - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - - name: install tauri bundler - run: cargo install tauri-bundler --force - - name: install webkit2gtk (ubuntu only) - if: matrix.platform == 'ubuntu-latest' - run: | - sudo apt-get update - sudo apt-get install -y webkit2gtk-4.0 - - name: install app dependencies and bootstrap packages - run: npm install - - uses: tauri-apps/tauri-action@v0 - env: - PL_SERVER_URL: https://api.padloc.app - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tagName: tauri-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version - releaseName: "Padloc (Tauri Edition) v__VERSION__" - body: "WARNING: The builds in this release are experimental. Use at your own risk!" - draft: true - prerelease: true - projectPath: packages/tauri - npmScript: build + runs-on: ${{ matrix.platform }} + steps: + - uses: actions/checkout@v2 + - name: setup node + uses: actions/setup-node@v1 + with: + node-version: 12 + - name: install Rust stable + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - name: install tauri bundler + run: cargo install tauri-bundler --force + - name: install webkit2gtk (ubuntu only) + if: matrix.platform == 'ubuntu-latest' + run: | + sudo apt-get update + sudo apt-get install -y webkit2gtk-4.0 + - name: install app dependencies and bootstrap packages + run: npm install + - uses: tauri-apps/tauri-action@v0 + env: + PL_SERVER_URL: https://api.padloc.app + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tagName: tauri-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version + releaseName: "Padloc (Tauri Edition) v__VERSION__" + body: "WARNING: The builds in this release are experimental. Use at your own risk!" + draft: true + prerelease: true + projectPath: packages/tauri + npmScript: build diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 8f84e96f..dcf330e8 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -3,18 +3,20 @@ name: Run Tests on: [push] jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - with: - node-version: 16.13.1 - - name: Install dependencies - run: npm ci - - name: Run pwa test build - run: npm run pwa:build - - name: Test starting zero-config server - run: npm run server:start-dry - #- name: Run tests - # run: npm test + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: 16.13.1 + - name: Install dependencies + run: npm ci + - name: Run prettier check + run: npm run prettier:check + - name: Run pwa test build + run: npm run pwa:build + - name: Test starting zero-config server + run: npm run server:start-dry + #- name: Run tests + # run: npm test diff --git a/.prettierignore b/.prettierignore index 6f6c4340..65211534 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1 +1,2 @@ app/src/core/*.js +package-lock.json diff --git a/.vscode/settings.json b/.vscode/settings.json index b1189b1e..d3127a9c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,8 +1,6 @@ { - "lit-plugin.globalAttributes": [ - "disabled" - ], + "lit-plugin.globalAttributes": ["disabled"], "files.associations": { "*.svg": "html" } -} \ No newline at end of file +} diff --git a/README.md b/README.md index 12af5a1a..12460f68 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,8 @@ For more configuration options, see [Configuration](#configuration) To add dependencies, you can use `scope=[scope-without-@padloc/] npm run add [package]` and to remove them, run `scope=[scope-without-@padloc/] npm run remove [package]`. +Use `npm run prettier` to make "prettify" all files. + ## Configuration | Environment Variable | Default | Description | diff --git a/assets/manifest.json b/assets/manifest.json index a99c6901..4f541ccb 100644 --- a/assets/manifest.json +++ b/assets/manifest.json @@ -7,4 +7,4 @@ "appId": "app.padloc", "scheme": "padloc", "author": "Martin Kleinschrodt " -} \ No newline at end of file +} diff --git a/karma.conf.js b/karma.conf.js index 121a8dd5..66c50a28 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -1,4 +1,4 @@ -module.exports = function(config) { +module.exports = function (config) { config.set({ frameworks: ["mocha", "chai"], files: ["test/tests.js"], @@ -9,6 +9,6 @@ module.exports = function(config) { browsers: ["ChromeHeadless"], autoWatch: false, // singleRun: false, // Karma captures browsers, runs the tests and exits - concurrency: Infinity + concurrency: Infinity, }); }; diff --git a/lerna.json b/lerna.json index 801ac1dd..654bcc87 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,5 @@ { - "packages": [ - "packages/*" - ], - "version": "4.0.0", - "exact": true + "packages": ["packages/*"], + "version": "4.0.0", + "exact": true } diff --git a/package-lock.json b/package-lock.json index 0a97ad3b..d25cdf16 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,6 +11,7 @@ "license": "GPL-3.0", "devDependencies": { "lerna": "4.0.0", + "prettier": "2.5.1", "ts-node": "10.0.0", "typescript": "4.4.3" }, @@ -5658,6 +5659,18 @@ "node": ">=8" } }, + "node_modules/prettier": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", + "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", @@ -12266,6 +12279,12 @@ "find-up": "^4.0.0" } }, + "prettier": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", + "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", + "dev": true + }, "process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", diff --git a/package.json b/package.json index 7f7978b9..d157dac4 100644 --- a/package.json +++ b/package.json @@ -1,40 +1,43 @@ { - "name": "padloc", - "private": true, - "version": "4.0.0", - "description": "A minimalist password manager", - "author": "Martin Kleinschrodt ", - "license": "GPL-3.0", - "homepage": "https://padlock.io/", - "repository": { - "type": "git", - "url": "git+https://github.com/maklesoft/padlock.git" - }, - "engines": { - "node": "16.13.1", - "npm": "8.2.0" - }, - "main": "main.js", - "devDependencies": { - "lerna": "4.0.0", - "ts-node": "10.0.0", - "typescript": "4.4.3" - }, - "scripts": { - "postinstall": "lerna bootstrap", - "bootstrap": "lerna bootstrap", - "pwa:build": "lerna run build --scope @padloc/pwa", - "pwa:start": "lerna run start --scope @padloc/pwa", - "server:start": "lerna run start --scope @padloc/server --stream", - "server:start-dry": "lerna run start-dry --stream --scope @padloc/server", - "electron:build": "cd packages/electron && npm run build && cd ../..", - "start": "npm run pwa:build && lerna run --scope '@padloc/{server,pwa}' --parallel start", - "dev": "lerna run --parallel --scope '@padloc/{server,pwa}' --parallel dev", - "tauri:dev": "lerna run --parallel --scope '@padloc/{server,tauri}' --parallel dev", - "repl": "cd packages/server && npm run repl && cd ../..", - "test": "lerna run test", - "locale:extract": "lerna run extract --scope '@padloc/locale'", - "add": "lerna add $1 --scope=@padloc/$scope", - "remove": "rm packages/$scope/package-lock.json && lerna exec \"npm uninstall $1\" --scope=@padloc/$scope" - } + "name": "padloc", + "private": true, + "version": "4.0.0", + "description": "A minimalist password manager", + "author": "Martin Kleinschrodt ", + "license": "GPL-3.0", + "homepage": "https://padloc.app/", + "repository": { + "type": "git", + "url": "git+https://github.com/padloc/padloc.git" + }, + "engines": { + "node": "16.13.1", + "npm": "8.2.0" + }, + "main": "main.js", + "devDependencies": { + "lerna": "4.0.0", + "prettier": "2.5.1", + "ts-node": "10.0.0", + "typescript": "4.4.3" + }, + "scripts": { + "postinstall": "lerna bootstrap", + "bootstrap": "lerna bootstrap", + "pwa:build": "lerna run build --scope @padloc/pwa", + "pwa:start": "lerna run start --scope @padloc/pwa", + "server:start": "lerna run start --scope @padloc/server --stream", + "server:start-dry": "lerna run start-dry --stream --scope @padloc/server", + "electron:build": "cd packages/electron && npm run build && cd ../..", + "start": "npm run pwa:build && lerna run --scope '@padloc/{server,pwa}' --parallel start", + "dev": "lerna run --parallel --scope '@padloc/{server,pwa}' --parallel dev", + "tauri:dev": "lerna run --parallel --scope '@padloc/{server,tauri}' --parallel dev", + "repl": "cd packages/server && npm run repl && cd ../..", + "test": "lerna run test", + "locale:extract": "lerna run extract --scope '@padloc/locale'", + "add": "lerna add $1 --scope=@padloc/$scope", + "remove": "rm packages/$scope/package-lock.json && lerna exec \"npm uninstall $1\" --scope=@padloc/$scope", + "prettier": "prettier --write .", + "prettier:check": "prettier --check ." + } } diff --git a/packages/app/package.json b/packages/app/package.json index 858c0477..3a9109e0 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -1,64 +1,64 @@ { - "name": "@padloc/app", - "version": "4.0.0", - "author": "Martin Kleinschrodt ", - "license": "GPL-3.0", - "private": true, - "files": [ - "src", - "assets", - "types", - "tsconfig.json" - ], - "repository": { - "type": "git", - "url": "https://github.com/padloc/padloc.git", - "directory": "packages/app" - }, - "engines": { - "node": "16.13.1", - "npm": "8.2.0" - }, - "dependencies": { - "@padloc/core": "4.0.0", - "@padloc/locale": "4.0.0", - "@simplewebauthn/browser": "4.0.0", - "@simplewebauthn/typescript-types": "4.0.0", - "@types/dompurify": "2.3.1", - "@types/marked": "3.0.1", - "@types/papaparse": "5.2.5", - "@types/qrcode": "1.4.1", - "@types/ua-parser-js": "0.7.36", - "@types/workbox-precaching": "4.3.1", - "@types/workbox-sw": "4.3.1", - "@types/workbox-window": "4.3.3", - "@types/zxcvbn": "4.4.1", - "@webcomponents/webcomponentsjs": "2.5.0", - "autosize": "5.0.0", - "date-fns": "2.22.1", - "dompurify": "2.3.3", - "event-target-shim": "6.0.2", - "http-server": "0.12.3", - "jsqr": "1.4.0", - "jszip": "3.7.1", - "lit": "2.0.0-rc.2", - "localforage": "1.9.0", - "marked": "3.0.4", - "papaparse": "5.3.1", - "qrcode": "1.4.4", - "reflect-metadata": "0.1.13", - "typescript": "4.4.3", - "ua-parser-js": "0.7.28", - "workbox-precaching": "6.2.0", - "workbox-sw": "6.1.5", - "workbox-window": "6.1.5", - "zxcvbn": "4.4.2" - }, - "devDependencies": { - "@types/chai": "4.2.18", - "@types/mocha": "8.2.2", - "chai": "4.3.4", - "mocha": "8.4.0" - }, - "description": "Padloc Web-Based UI package" + "name": "@padloc/app", + "version": "4.0.0", + "author": "Martin Kleinschrodt ", + "license": "GPL-3.0", + "private": true, + "files": [ + "src", + "assets", + "types", + "tsconfig.json" + ], + "repository": { + "type": "git", + "url": "https://github.com/padloc/padloc.git", + "directory": "packages/app" + }, + "engines": { + "node": "16.13.1", + "npm": "8.2.0" + }, + "dependencies": { + "@padloc/core": "4.0.0", + "@padloc/locale": "4.0.0", + "@simplewebauthn/browser": "4.0.0", + "@simplewebauthn/typescript-types": "4.0.0", + "@types/dompurify": "2.3.1", + "@types/marked": "3.0.1", + "@types/papaparse": "5.2.5", + "@types/qrcode": "1.4.1", + "@types/ua-parser-js": "0.7.36", + "@types/workbox-precaching": "4.3.1", + "@types/workbox-sw": "4.3.1", + "@types/workbox-window": "4.3.3", + "@types/zxcvbn": "4.4.1", + "@webcomponents/webcomponentsjs": "2.5.0", + "autosize": "5.0.0", + "date-fns": "2.22.1", + "dompurify": "2.3.3", + "event-target-shim": "6.0.2", + "http-server": "0.12.3", + "jsqr": "1.4.0", + "jszip": "3.7.1", + "lit": "2.0.0-rc.2", + "localforage": "1.9.0", + "marked": "3.0.4", + "papaparse": "5.3.1", + "qrcode": "1.4.4", + "reflect-metadata": "0.1.13", + "typescript": "4.4.3", + "ua-parser-js": "0.7.28", + "workbox-precaching": "6.2.0", + "workbox-sw": "6.1.5", + "workbox-window": "6.1.5", + "zxcvbn": "4.4.2" + }, + "devDependencies": { + "@types/chai": "4.2.18", + "@types/mocha": "8.2.2", + "chai": "4.3.4", + "mocha": "8.4.0" + }, + "description": "Padloc Web-Based UI package" } diff --git a/packages/app/src/elements/dialog.ts b/packages/app/src/elements/dialog.ts index d23c8217..4dc7c47b 100644 --- a/packages/app/src/elements/dialog.ts +++ b/packages/app/src/elements/dialog.ts @@ -45,7 +45,7 @@ export class Dialog extends LitElement { Dialog.openDialogs.delete(this); } - async show(_input: I = (undefined as any) as I) { + async show(_input: I = undefined as any as I) { Dialog.openDialogs.add(this); this.open = true; diff --git a/packages/app/src/elements/import-dialog.ts b/packages/app/src/elements/import-dialog.ts index a194deff..2a554769 100644 --- a/packages/app/src/elements/import-dialog.ts +++ b/packages/app/src/elements/import-dialog.ts @@ -15,7 +15,7 @@ import { stringToBytes } from "@padloc/core/src/encoding"; @customElement("pl-import-dialog") export class ImportDialog extends Dialog { @state() - private _rawData: null | string | ArrayBuffer = ""; + private _file: File; @state() private _items: VaultItem[] = []; @@ -71,19 +71,10 @@ export class ImportDialog extends Dialog { await this.updateComplete; const result = super.show(); - const reader = new FileReader(); - reader.onload = async () => { - this._rawData = reader.result; - this._formatSelect.value = (imp.guessFormat(file, this._rawData) || imp.CSV).value; - this._parseData(); - this._vaultSelect.value = app.mainVault!; - }; - - if (imp.doesFileRequireReadingAsBinary(file)) { - reader.readAsArrayBuffer(file); - } else { - reader.readAsText(file); - } + this._file = file; + this._formatSelect.value = ((await imp.guessFormat(file)) || imp.CSV).value; + await this._parseData(); + this._vaultSelect.value = app.mainVault!; return result; } @@ -100,7 +91,7 @@ Github,"work,coding",https://github.com,john.doe@gmail.com,129lskdf93`) } private async _parseData(): Promise { - const rawStr = this._rawData; + const file = this._file; switch (this._formatSelect.value) { case imp.PADLOCK_LEGACY.value: @@ -111,7 +102,7 @@ Github,"work,coding",https://github.com,john.doe@gmail.com,129lskdf93`) type: "password", validate: async (pwd: string) => { try { - this._items = await imp.asPadlockLegacy(rawStr as string, pwd); + this._items = await imp.asPadlockLegacy(file, pwd); } catch (e) { throw $l("Wrong Password"); } @@ -125,13 +116,13 @@ Github,"work,coding",https://github.com,john.doe@gmail.com,129lskdf93`) } break; case imp.LASTPASS.value: - this._items = await imp.asLastPass(rawStr as string); + this._items = await imp.asLastPass(file); break; case imp.CSV.value: - this._items = await imp.asCSV(rawStr as string); + this._items = await imp.asCSV(file); break; case imp.ONEPUX.value: - this._items = await imp.as1Pux(rawStr); + this._items = await imp.as1Pux(file); break; case imp.PBES2.value: this.open = false; @@ -141,7 +132,7 @@ Github,"work,coding",https://github.com,john.doe@gmail.com,129lskdf93`) type: "password", validate: async (pwd: string) => { try { - this._items = await imp.asPBES2Container(rawStr as string, pwd); + this._items = await imp.asPBES2Container(file, pwd); } catch (e) { throw $l("Wrong Password"); } diff --git a/packages/app/src/elements/popover.ts b/packages/app/src/elements/popover.ts index 939a1ecf..cf6d3556 100644 --- a/packages/app/src/elements/popover.ts +++ b/packages/app/src/elements/popover.ts @@ -173,9 +173,8 @@ export class Popover extends LitElement { } private _getAutoAlignment(): PopoverAlignment { - const preferred = (Array.isArray(this.preferAlignment) - ? [...this.preferAlignment] - : [this.preferAlignment] + const preferred = ( + Array.isArray(this.preferAlignment) ? [...this.preferAlignment] : [this.preferAlignment] ).reverse(); const alignments = [...ALIGNMENTS].sort((a, b) => preferred.indexOf(b) - preferred.indexOf(a)); return alignments.find((alignment) => this._isWithinBounds(this._getPosition(alignment))) || alignments[0]; diff --git a/packages/app/src/elements/settings-tools.ts b/packages/app/src/elements/settings-tools.ts index 2541546b..5db5c5c7 100644 --- a/packages/app/src/elements/settings-tools.ts +++ b/packages/app/src/elements/settings-tools.ts @@ -65,7 +65,12 @@ export class SettingsTools extends StateMixin(LitElement) { - this._importFile()} /> + this._importFile()} + /> `; } } diff --git a/packages/app/src/lib/1pux-parser.ts b/packages/app/src/lib/1pux-parser.ts index 851e4b79..59bdbdb4 100644 --- a/packages/app/src/lib/1pux-parser.ts +++ b/packages/app/src/lib/1pux-parser.ts @@ -1,308 +1,283 @@ -import { loadAsync } from 'jszip'; +import { loadAsync } from "jszip"; export type OnePuxItemDetailsLoginField = { - value: string; - id: string; - name: string; - fieldType: 'A' | 'B' | 'C' | 'E' | 'I' | 'N' | 'P' | 'R' | 'S' | 'T' | 'U'; - designation?: 'username' | 'password'; + value: string; + id: string; + name: string; + fieldType: "A" | "B" | "C" | "E" | "I" | "N" | "P" | "R" | "S" | "T" | "U"; + designation?: "username" | "password"; }; export type OnePuxItemDetailsSection = { - title: string; - name: string; - fields: [ - { - title: string; - id: string; - value: { - concealed?: string; - reference?: string; - string?: string; - email?: string; - phone?: string; - url?: string; - totp?: string; - gender?: string; - creditCardType?: string; - creditCardNumber?: string; - monthYear?: number; - date?: number; - }; - indexAtSource: number; - guarded: boolean; - multiline: boolean; - dontGenerate: boolean; - inputTraits: { - keyboard: string; - correction: string; - capitalization: string; - }; - }, - ]; + title: string; + name: string; + fields: [ + { + title: string; + id: string; + value: { + concealed?: string; + reference?: string; + string?: string; + email?: string; + phone?: string; + url?: string; + totp?: string; + gender?: string; + creditCardType?: string; + creditCardNumber?: string; + monthYear?: number; + date?: number; + }; + indexAtSource: number; + guarded: boolean; + multiline: boolean; + dontGenerate: boolean; + inputTraits: { + keyboard: string; + correction: string; + capitalization: string; + }; + } + ]; }; export type OnePuxItemDetailsPasswordHistory = { - value: string; - time: number; + value: string; + time: number; }; export type OnePuxItemOverviewUrl = { - label: string; - url: string; + label: string; + url: string; }; export type OnePuxItem = { - item?: { - uuid: string; - favIndex: number; - createdAt: number; - updatedAt: number; - trashed: boolean; - categoryUuid: string; - details: { - loginFields: OnePuxItemDetailsLoginField[]; - notesPlain?: string; - sections: OnePuxItemDetailsSection[]; - passwordHistory: OnePuxItemDetailsPasswordHistory[]; - documentAttributes?: { - fileName: string; - documentId: string; - decryptedSize: number; - }; + item?: { + uuid: string; + favIndex: number; + createdAt: number; + updatedAt: number; + trashed: boolean; + categoryUuid: string; + details: { + loginFields: OnePuxItemDetailsLoginField[]; + notesPlain?: string; + sections: OnePuxItemDetailsSection[]; + passwordHistory: OnePuxItemDetailsPasswordHistory[]; + documentAttributes?: { + fileName: string; + documentId: string; + decryptedSize: number; + }; + }; + overview: { + subtitle: string; + urls?: OnePuxItemOverviewUrl[]; + title: string; + url: string; + ps?: number; + pbe?: number; + pgrng?: boolean; + tags?: string[]; + }; }; - overview: { - subtitle: string; - urls?: OnePuxItemOverviewUrl[]; - title: string; - url: string; - ps?: number; - pbe?: number; - pgrng?: boolean; - tags?: string[]; + file?: { + attrs: { + uuid: string; + name: string; + type: string; + }; + path: string; }; - }; - file?: { - attrs: { - uuid: string; - name: string; - type: string; - }; - path: string; - }; }; export type OnePuxVault = { - attrs: { - uuid: string; - desc: string; - avatar: string; - name: string; - type: 'P' | 'E' | 'U'; - }; - items: OnePuxItem[]; + attrs: { + uuid: string; + desc: string; + avatar: string; + name: string; + type: "P" | "E" | "U"; + }; + items: OnePuxItem[]; }; export type OnePuxAccount = { - attrs: { - accountName: string; - name: string; - avatar: string; - email: string; - uuid: string; - domain: string; - }; - vaults: OnePuxVault[]; + attrs: { + accountName: string; + name: string; + avatar: string; + email: string; + uuid: string; + domain: string; + }; + vaults: OnePuxVault[]; }; export type OnePuxData = { - accounts: OnePuxAccount[]; + accounts: OnePuxAccount[]; }; export type OnePuxAttributes = { - version: number; - description: string; - createdAt: number; + version: number; + description: string; + createdAt: number; }; export type OnePuxExport = { - attributes: OnePuxAttributes; - data: OnePuxData; + attributes: OnePuxAttributes; + data: OnePuxData; }; -export const parse1PuxFile = async ( - fileContents: string | ArrayBuffer, -) => { - try { - const zip = await loadAsync(fileContents); +export async function parse1PuxFile(fileContents: ArrayBuffer): Promise { + try { + const zip = await loadAsync(fileContents); - const attributesContent = await zip - .file('export.attributes')! - .async('string'); - const attributes = JSON.parse(attributesContent); - const dataContent = await zip.file('export.data')!.async('string'); - const data = JSON.parse(dataContent); + const attributesContent = await zip.file("export.attributes")!.async("string"); + const attributes = JSON.parse(attributesContent); + const dataContent = await zip.file("export.data")!.async("string"); + const data = JSON.parse(dataContent); - return { - attributes, - data, - } as OnePuxExport; - } catch (error) { - console.error('Failed to parse .1pux file'); - throw error; - } -}; + return { + attributes, + data, + } as OnePuxExport; + } catch (error) { + console.error("Failed to parse .1pux file"); + throw error; + } +} type RowData = { - name: string; - tags: string; - url: string; - username: string; - password: string; - notes: string; - extraFields: ExtraField[]; + name: string; + tags: string; + url: string; + username: string; + password: string; + notes: string; + extraFields: ExtraField[]; }; type ExtraFieldType = - | 'username' - | 'password' - | 'url' - | 'email' - | 'date' - | 'month' - | 'credit' - | 'phone' - | 'totp' - | 'text'; + | "username" + | "password" + | "url" + | "email" + | "date" + | "month" + | "credit" + | "phone" + | "totp" + | "text"; type ExtraField = { name: string; value: string; type: ExtraFieldType }; -type ParseFieldTypeToExtraFieldType = ( - field: OnePuxItemDetailsLoginField, -) => ExtraFieldType; - -const parseFieldTypeToExtraFieldType: ParseFieldTypeToExtraFieldType = ( - field, -) => { - if (field.designation === 'username') { - return 'username'; - } else if (field.designation === 'password') { - return 'password'; - } else if (field.fieldType === 'E') { - return 'email'; - } else if (field.fieldType === 'U') { - return 'url'; - } - return 'text'; -}; - -export const parseToRowData = ( - item: OnePuxItem['item'], - defaultTags?: string[], -) => { - if (!item) { - return; - } - - const rowData: RowData = { - name: item.overview.title, - tags: [...(defaultTags || []), ...(item.overview.tags || [])].join(','), - url: item.overview.url || '', - username: '', - password: '', - notes: item.details.notesPlain || '', - extraFields: [], - }; - - // Skip documents - if ( - item.details.documentAttributes && - item.details.loginFields.length === 0 - ) { - return; - } - - // Extract username, password, and some extraFields - item.details.loginFields.forEach((field) => { - if (field.designation === 'username') { - rowData.username = field.value; - } else if (field.designation === 'password') { - rowData.password = field.value; - } else if ( - field.fieldType === 'I' || - field.fieldType === 'C' || - field.id.includes(';opid=__') || - field.value === '' - ) { - // Skip these noisy form-fields - return; - } else { - rowData.extraFields.push({ - name: field.name || field.id, - value: field.value, - type: parseFieldTypeToExtraFieldType(field), - }); +function parseFieldTypeToExtraFieldType(field: OnePuxItemDetailsLoginField): ExtraFieldType { + if (field.designation === "username") { + return "username"; + } else if (field.designation === "password") { + return "password"; + } else if (field.fieldType === "E") { + return "email"; + } else if (field.fieldType === "U") { + return "url"; } - }); + return "text"; +} - // Extract some more extraFields - item.details.sections.forEach((section) => { - section.fields.forEach((field) => { - let value = ''; - let type: ExtraFieldType = 'text'; +export function parseToRowData(item: OnePuxItem["item"], defaultTags?: string[]): RowData | undefined { + if (!item) { + return; + } - if (Object.prototype.hasOwnProperty.call(field.value, 'concealed')) { - value = field.value.concealed || ''; - } else if ( - Object.prototype.hasOwnProperty.call(field.value, 'reference') - ) { - value = field.value.reference || ''; - } else if (Object.prototype.hasOwnProperty.call(field.value, 'string')) { - value = field.value.string || ''; - } else if (Object.prototype.hasOwnProperty.call(field.value, 'email')) { - value = field.value.email || ''; - type = 'email'; - } else if (Object.prototype.hasOwnProperty.call(field.value, 'phone')) { - value = field.value.phone || ''; - type = 'phone'; - } else if (Object.prototype.hasOwnProperty.call(field.value, 'url')) { - value = field.value.url || ''; - type = 'url'; - } else if (Object.prototype.hasOwnProperty.call(field.value, 'totp')) { - value = field.value.totp || ''; - type = 'totp'; - } else if (Object.prototype.hasOwnProperty.call(field.value, 'gender')) { - value = field.value.gender || ''; - } else if ( - Object.prototype.hasOwnProperty.call(field.value, 'creditCardType') - ) { - value = field.value.creditCardType || ''; - } else if ( - Object.prototype.hasOwnProperty.call(field.value, 'creditCardNumber') - ) { - value = field.value.creditCardNumber || ''; - type = 'credit'; - } else if ( - Object.prototype.hasOwnProperty.call(field.value, 'monthYear') - ) { - value = - (field.value.monthYear && field.value.monthYear.toString()) || ''; - type = 'month'; - } else if (Object.prototype.hasOwnProperty.call(field.value, 'date')) { - value = (field.value.date && field.value.date.toString()) || ''; - type = 'date'; - } else { - // Default, so no data is lost when something new comes up - value = JSON.stringify(field.value); - } + const rowData: RowData = { + name: item.overview.title, + tags: [...(defaultTags || []), ...(item.overview.tags || [])].join(","), + url: item.overview.url || "", + username: "", + password: "", + notes: item.details.notesPlain || "", + extraFields: [], + }; - rowData.extraFields.push({ - name: field.title || field.id, - value, - type, - }); + // Skip documents + if (item.details.documentAttributes && item.details.loginFields.length === 0) { + return; + } + + // Extract username, password, and some extraFields + item.details.loginFields.forEach((field) => { + if (field.designation === "username") { + rowData.username = field.value; + } else if (field.designation === "password") { + rowData.password = field.value; + } else if ( + field.fieldType === "I" || + field.fieldType === "C" || + field.id.includes(";opid=__") || + field.value === "" + ) { + // Skip these noisy form-fields + return; + } else { + rowData.extraFields.push({ + name: field.name || field.id, + value: field.value, + type: parseFieldTypeToExtraFieldType(field), + }); + } }); - }); - return rowData; -}; + // Extract some more extraFields + item.details.sections.forEach((section) => { + section.fields.forEach((field) => { + let value = ""; + let type: ExtraFieldType = "text"; + + if (field.value.concealed) { + value = field.value.concealed || ""; + } else if (field.value.reference) { + value = field.value.reference || ""; + } else if (field.value.string) { + value = field.value.string || ""; + } else if (field.value.email) { + value = field.value.email || ""; + type = "email"; + } else if (field.value.phone) { + value = field.value.phone || ""; + type = "phone"; + } else if (field.value.url) { + value = field.value.url || ""; + type = "url"; + } else if (field.value.totp) { + value = field.value.totp || ""; + type = "totp"; + } else if (field.value.gender) { + value = field.value.gender || ""; + } else if (field.value.creditCardType) { + value = field.value.creditCardType || ""; + } else if (field.value.creditCardNumber) { + value = field.value.creditCardNumber || ""; + type = "credit"; + } else if (field.value.monthYear) { + value = (field.value.monthYear && field.value.monthYear.toString()) || ""; + type = "month"; + } else if (field.value.date) { + value = (field.value.date && field.value.date.toString()) || ""; + type = "date"; + } else { + // Default, so no data is lost when something new comes up + value = JSON.stringify(field.value); + } + + rowData.extraFields.push({ + name: field.title || field.id, + value, + type, + }); + }); + }); + + return rowData; +} diff --git a/packages/app/src/lib/animation.ts b/packages/app/src/lib/animation.ts index 01f38938..44b44eea 100644 --- a/packages/app/src/lib/animation.ts +++ b/packages/app/src/lib/animation.ts @@ -7,7 +7,7 @@ const defaults = { initialDelay: 0, fullDuration: 1000, clear: false, - direction: "normal" + direction: "normal", }; const clearAnimation = new Map(); @@ -20,10 +20,13 @@ export function animateElement(el: HTMLElement, opts = {}) { el.style.animation = `${animation} ${direction} ${duration}ms ${easing} ${delay}ms ${fill}`; if (clear) { const clearDelay = typeof clear === "number" ? clear : 0; - clearAnimation.set(el, window.setTimeout(() => (el.style.animation = ""), delay + duration + clearDelay)); + clearAnimation.set( + el, + window.setTimeout(() => (el.style.animation = ""), delay + duration + clearDelay) + ); } - return new Promise(resolve => setTimeout(resolve, delay + duration)); + return new Promise((resolve) => setTimeout(resolve, delay + duration)); } export function animateCascade(nodes: Iterable, opts = {}) { diff --git a/packages/app/src/lib/import.ts b/packages/app/src/lib/import.ts index 458639b4..eb93bd27 100644 --- a/packages/app/src/lib/import.ts +++ b/packages/app/src/lib/import.ts @@ -5,8 +5,9 @@ import { VaultItem, Field, createVaultItem, FieldType } from "@padloc/core/src/i import { Err, ErrorCode } from "@padloc/core/src/error"; import { uuid } from "@padloc/core/src/util"; import { translate as $l } from "@padloc/locale/src/translate"; +import { readFileAsText, readFileAsArrayBuffer } from "@padloc/core/src/attachment"; -import { parse1PuxFile, parseToRowData, OnePuxItem } from "./1pux-parser"; +import { OnePuxItem } from "./1pux-parser"; export interface ImportFormat { value: "csv" | "padlock-legacy" | "lastpass" | "padloc" | "1pux"; @@ -101,27 +102,27 @@ export async function isCSV(data: string): Promise { return papa.parse(data).errors.length === 0; } -export async function asCSV(data: string, nameColIndex?: number, tagsColIndex?: number): Promise { +export async function asCSV(file: File, nameColIndex?: number, tagsColIndex?: number): Promise { + const data = await readFileAsText(file); const papa = await loadPapa(); const parsed = papa.parse(data); if (parsed.errors.length) { - throw new Err(ErrorCode.INVALID_CSV); + throw new Err(ErrorCode.INVALID_CSV, "Failed to parse .csv file."); } return fromTable(parsed.data, nameColIndex, tagsColIndex); } -/** - * Checks if a given string represents a Padlock enrypted backup - */ -export function isPadlockV1(data: string): boolean { +export async function isPadlockV1(file: File): Promise { try { + const data = await readFileAsText(file); return validateLegacyContainer(unmarshal(data)); } catch (e) { return false; } } -export async function asPadlockLegacy(data: string, password: string): Promise { +export async function asPadlockLegacy(file: File, password: string): Promise { + const data = await readFileAsText(file); const container = parseLegacyContainer(unmarshal(data)); await container.unlock(password); return importLegacyContainer(container); @@ -146,16 +147,18 @@ export async function importLegacyContainer(container: PBES2Container) { return Promise.all(items); } -export function isPBES2Container(data: string) { +export async function isPBES2Container(file: File) { try { + const data = await readFileAsText(file); new PBES2Container().fromRaw(unmarshal(data)); return true; - } catch (e) { + } catch (error) { return false; } } -export async function asPBES2Container(data: string, password: string): Promise { +export async function asPBES2Container(file: File, password: string): Promise { + const data = await readFileAsText(file); const container = new PBES2Container().fromRaw(unmarshal(data)); await container.unlock(password); @@ -234,7 +237,8 @@ async function lpParseRow(row: string[]): Promise { return createVaultItem(row[nameIndex], fields, dir ? [dir] : []); } -export async function asLastPass(data: string): Promise { +export async function asLastPass(file: File): Promise { + const data = await readFileAsText(file); const papa = await loadPapa(); let items = papa .parse(data) @@ -247,22 +251,26 @@ export async function asLastPass(data: string): Promise { return Promise.all(items); } -/** - * Checks if a given string represents a LastPass CSV file - */ -export function isLastPass(data: string): boolean { +export async function isLastPass(file: File): Promise { try { + const data = await readFileAsText(file); return data.split("\n")[0] === "url,username,password,extra,name,grouping,fav"; } catch (error) { return false; } } -async function parse1PuxItem(accountName: string, vaultName: string, item: OnePuxItem['item']): Promise { +async function parse1PuxItem( + accountName: string, + vaultName: string, + item: OnePuxItem["item"] +): Promise { if (!item) { return; } + const { parseToRowData } = await import("./1pux-parser"); + const rowData = parseToRowData(item, [accountName, vaultName]); if (!rowData) { @@ -270,10 +278,10 @@ async function parse1PuxItem(accountName: string, vaultName: string, item: OnePu } const itemName = rowData.name; - const tags = rowData.tags.split(','); + const tags = rowData.tags.split(","); if (item.trashed) { - tags.push('trashed'); + tags.push("trashed"); } let fields: Field[] = [ @@ -287,10 +295,10 @@ async function parse1PuxItem(accountName: string, vaultName: string, item: OnePu } for (const extraField of rowData.extraFields) { - if (extraField.type === 'totp') { + if (extraField.type === "totp") { // Extract just the secret try { - const secret = new URL(extraField.value).searchParams.get('secret'); + const secret = new URL(extraField.value).searchParams.get("secret"); if (secret) { fields.push(new Field({ name: extraField.name, value: secret, type: FieldType.Totp })); } @@ -298,24 +306,23 @@ async function parse1PuxItem(accountName: string, vaultName: string, item: OnePu // Do nothing } } else { - fields.push(new Field({ name: extraField.name, value: extraField.value, type: extraField.type as FieldType })); + fields.push( + new Field({ name: extraField.name, value: extraField.value, type: extraField.type as FieldType }) + ); } - } return createVaultItem(itemName, fields, tags); } -export async function as1Pux(data: null | string | ArrayBuffer): Promise { - if (!data) { - throw new Err(ErrorCode.INVALID_1PUX); - } - +export async function as1Pux(file: File): Promise { try { + const { parse1PuxFile } = await import("./1pux-parser"); + const data = await readFileAsArrayBuffer(file); const dataExport = await parse1PuxFile(data); const items = []; - + for (const account of dataExport.data.accounts) { for (const vault of account.vaults) { for (const vaultItem of vault.items) { @@ -331,7 +338,7 @@ export async function as1Pux(data: null | string | ArrayBuffer): Promise { + // Try to guess sync first (won't need parsing) if (is1Pux(file)) { return ONEPUX; } - - return CSV; -} - -export function doesFileRequireReadingAsBinary(file: File): boolean { - if (is1Pux(file)) { - return true; + if (await isPBES2Container(file)) { + return PBES2; + } + if (await isPadlockV1(file)) { + return PADLOCK_LEGACY; + } + if (await isLastPass(file)) { + return LASTPASS; } - return false; + return CSV; } diff --git a/packages/app/test/index.html b/packages/app/test/index.html index 3b229024..26708593 100644 --- a/packages/app/test/index.html +++ b/packages/app/test/index.html @@ -1,7 +1,7 @@ - - + + lit-element tests @@ -9,7 +9,7 @@ diff --git a/packages/app/types/dom.d.ts b/packages/app/types/dom.d.ts index 1840001e..1665b23d 100644 --- a/packages/app/types/dom.d.ts +++ b/packages/app/types/dom.d.ts @@ -1,5 +1,5 @@ interface Navigator { - Backbutton: any + Backbutton: any; } interface Window { diff --git a/packages/cordova/package.json b/packages/cordova/package.json index 24c17916..01710c8f 100755 --- a/packages/cordova/package.json +++ b/packages/cordova/package.json @@ -1,82 +1,82 @@ { - "name": "app.padloc", - "version": "4.0.0", - "displayName": "Padloc", - "private": true, - "engines": { - "node": "16.13.1", - "npm": "8.2.0" - }, - "cordova": { - "platforms": [ - "ios", - "android" - ], - "plugins": { - "cordova-plugin-app-version": {}, - "cordova-plugin-backbutton": {}, - "ionic-plugin-keyboard": {}, - "cordova-plugin-statusbar": {}, - "cordova-clipboard": {}, - "cordova-plugin-qrscanner": {}, - "cordova-plugin-device": {}, - "cordova-plugin-x-socialsharing": { - "ANDROID_SUPPORT_V4_VERSION": "24.1.1+", - "PHOTO_LIBRARY_ADD_USAGE_DESCRIPTION": "This app requires photo library access to function properly.", - "PHOTO_LIBRARY_USAGE_DESCRIPTION": "This app requires photo library access to function properly." - }, - "cordova-plugin-splashscreen": {}, - "cordova-plugin-ionic-webview": { - "ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+" - }, - "cordova-plugin-fingerprint-aio": { - "FACEID_USAGE_DESCRIPTION": " " - }, - "cordova-plugin-privacyscreen": {}, - "cordova-plugin-inappbrowser": {}, - "cordova-plugin-androidx-adapter": {} + "name": "app.padloc", + "version": "4.0.0", + "displayName": "Padloc", + "private": true, + "engines": { + "node": "16.13.1", + "npm": "8.2.0" + }, + "cordova": { + "platforms": [ + "ios", + "android" + ], + "plugins": { + "cordova-plugin-app-version": {}, + "cordova-plugin-backbutton": {}, + "ionic-plugin-keyboard": {}, + "cordova-plugin-statusbar": {}, + "cordova-clipboard": {}, + "cordova-plugin-qrscanner": {}, + "cordova-plugin-device": {}, + "cordova-plugin-x-socialsharing": { + "ANDROID_SUPPORT_V4_VERSION": "24.1.1+", + "PHOTO_LIBRARY_ADD_USAGE_DESCRIPTION": "This app requires photo library access to function properly.", + "PHOTO_LIBRARY_USAGE_DESCRIPTION": "This app requires photo library access to function properly." + }, + "cordova-plugin-splashscreen": {}, + "cordova-plugin-ionic-webview": { + "ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+" + }, + "cordova-plugin-fingerprint-aio": { + "FACEID_USAGE_DESCRIPTION": " " + }, + "cordova-plugin-privacyscreen": {}, + "cordova-plugin-inappbrowser": {}, + "cordova-plugin-androidx-adapter": {} + } + }, + "dependencies": { + "@padloc/app": "4.0.0", + "@padloc/core": "4.0.0", + "cordova-clipboard": "1.3.0", + "cordova-ios": "6.2.0", + "cordova-plugin-add-swift-support": "2.0.2", + "cordova-plugin-app-version": "~0.1.12", + "cordova-plugin-backbutton": "~0.3.0", + "cordova-plugin-device": "2.0.3", + "cordova-plugin-inappbrowser": "5.0.0", + "cordova-plugin-ionic-webview": "5.0.0", + "cordova-plugin-privacyscreen": "0.4.0", + "cordova-plugin-qrscanner": "3.0.1", + "cordova-plugin-splashscreen": "6.0.0", + "cordova-plugin-statusbar": "2.4.3", + "cordova-plugin-x-socialsharing": "6.0.3", + "cordova-plugin-androidx-adapter": "1.1.3", + "cordova-plugin-fingerprint-aio": "4.0.2", + "es6-promise-plugin": "4.2.2", + "ionic-plugin-keyboard": "~2.2.1", + "typescript": "4.4.3" + }, + "devDependencies": { + "@types/cordova-plugin-qrscanner": "1.0.31", + "clean-webpack-plugin": "3.0.0", + "cordova": "10.0.0", + "cordova-android": "10.1.0", + "css-loader": "5.2.6", + "file-loader": "6.2.0", + "html-webpack-plugin": "5.3.1", + "style-loader": "2.0.0", + "ts-loader": "9.2.2", + "ts-node": "10.0.0", + "webpack": "5.38.1", + "webpack-cli": "4.7.0", + "sharp": "0.29.1", + "raw-loader": "4.0.2" + }, + "scripts": { + "build": "webpack", + "start": "npm run build && cordova run" } - }, - "dependencies": { - "@padloc/app": "4.0.0", - "@padloc/core": "4.0.0", - "cordova-clipboard": "1.3.0", - "cordova-ios": "6.2.0", - "cordova-plugin-add-swift-support": "2.0.2", - "cordova-plugin-app-version": "~0.1.12", - "cordova-plugin-backbutton": "~0.3.0", - "cordova-plugin-device": "2.0.3", - "cordova-plugin-inappbrowser": "5.0.0", - "cordova-plugin-ionic-webview": "5.0.0", - "cordova-plugin-privacyscreen": "0.4.0", - "cordova-plugin-qrscanner": "3.0.1", - "cordova-plugin-splashscreen": "6.0.0", - "cordova-plugin-statusbar": "2.4.3", - "cordova-plugin-x-socialsharing": "6.0.3", - "cordova-plugin-androidx-adapter": "1.1.3", - "cordova-plugin-fingerprint-aio": "4.0.2", - "es6-promise-plugin": "4.2.2", - "ionic-plugin-keyboard": "~2.2.1", - "typescript": "4.4.3" - }, - "devDependencies": { - "@types/cordova-plugin-qrscanner": "1.0.31", - "clean-webpack-plugin": "3.0.0", - "cordova": "10.0.0", - "cordova-android": "10.1.0", - "css-loader": "5.2.6", - "file-loader": "6.2.0", - "html-webpack-plugin": "5.3.1", - "style-loader": "2.0.0", - "ts-loader": "9.2.2", - "ts-node": "10.0.0", - "webpack": "5.38.1", - "webpack-cli": "4.7.0", - "sharp": "0.29.1", - "raw-loader": "4.0.2" - }, - "scripts": { - "build": "webpack", - "start": "npm run build && cordova run" - } } diff --git a/packages/cordova/tsconfig.json b/packages/cordova/tsconfig.json index 954e006c..ab4fff07 100644 --- a/packages/cordova/tsconfig.json +++ b/packages/cordova/tsconfig.json @@ -13,4 +13,3 @@ "include": ["src/**/*.ts", "../app/types/*.ts"], "exclude": ["node_modules/**/*.ts"] } - diff --git a/packages/cordova/webpack.config.js b/packages/cordova/webpack.config.js index 5587ee5e..cf5f889c 100644 --- a/packages/cordova/webpack.config.js +++ b/packages/cordova/webpack.config.js @@ -105,24 +105,7 @@ module.exports = { .toBuffer(); const iosIconSizes = [ - 20, - 29, - 40, - 50, - 57, - 58, - 60, - 72, - 76, - 80, - 87, - 100, - 114, - 120, - 144, - 152, - 167, - 180, + 20, 29, 40, 50, 57, 58, 60, 72, 76, 80, 87, 100, 114, 120, 144, 152, 167, 180, ]; const androidIconSizes = [36, 48, 72, 96, 144, 192]; diff --git a/packages/core/package.json b/packages/core/package.json index 528f4617..acf9e9a7 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,38 +1,38 @@ { - "name": "@padloc/core", - "version": "4.0.0", - "description": "padloc core module", - "main": "index.js", - "author": "Martin Kleinschrodt ", - "license": "GPLv3", - "files": [ - "src", - "vendor", - "tsconfig.json" - ], - "dependencies": { - "@padloc/locale": "4.0.0", - "typescript": "4.4.3" - }, - "devDependencies": { - "@types/chai": "4.2.18", - "@types/mocha": "8.2.2", - "chai": "4.3.4", - "mocha": "8.4.0", - "ts-node": "10.0.0", - "typedoc": "0.22.4" - }, - "scripts": { - "test": "cd test && mocha -r ts-node/register *.ts", - "docs": "typedoc --mode modules --out docs" - }, - "repository": { - "type": "git", - "url": "https://github.com/padloc/padloc.git", - "directory": "packages/core" - }, - "engines": { - "node": "16.13.1", - "npm": "8.2.0" - } + "name": "@padloc/core", + "version": "4.0.0", + "description": "padloc core module", + "main": "index.js", + "author": "Martin Kleinschrodt ", + "license": "GPLv3", + "files": [ + "src", + "vendor", + "tsconfig.json" + ], + "dependencies": { + "@padloc/locale": "4.0.0", + "typescript": "4.4.3" + }, + "devDependencies": { + "@types/chai": "4.2.18", + "@types/mocha": "8.2.2", + "chai": "4.3.4", + "mocha": "8.4.0", + "ts-node": "10.0.0", + "typedoc": "0.22.4" + }, + "scripts": { + "test": "cd test && mocha -r ts-node/register *.ts", + "docs": "typedoc --mode modules --out docs" + }, + "repository": { + "type": "git", + "url": "https://github.com/padloc/padloc.git", + "directory": "packages/core" + }, + "engines": { + "node": "16.13.1", + "npm": "8.2.0" + } } diff --git a/packages/core/src/attachment.ts b/packages/core/src/attachment.ts index 881dbbc6..f8e38361 100644 --- a/packages/core/src/attachment.ts +++ b/packages/core/src/attachment.ts @@ -6,7 +6,7 @@ import { getCryptoProvider as getProvider } from "./platform"; import { Err, ErrorCode } from "./error"; import { RequestProgress } from "./transport"; -function readFile(blob: File): Promise { +export async function readFileAsUint8Array(blob: File): Promise { return new Promise((resolve, reject) => { const reader = new FileReader(); @@ -15,16 +15,33 @@ function readFile(blob: File): Promise { resolve(result); }; - reader.onerror = e => { + reader.onerror = (error) => { reader.abort(); - reject(e); + reject(error); }; reader.readAsArrayBuffer(blob); }); } -function readAsText(blob: File): Promise { +export async function readFileAsArrayBuffer(blob: File): Promise { + return new Promise((resolve, reject) => { + const reader = new FileReader(); + + reader.onload = () => { + resolve(reader.result as ArrayBuffer); + }; + + reader.onerror = (error) => { + reader.abort(); + reject(error); + }; + + reader.readAsArrayBuffer(blob); + }); +} + +export async function readFileAsText(blob: File): Promise { return new Promise((resolve, reject) => { const reader = new FileReader(); @@ -32,9 +49,9 @@ function readAsText(blob: File): Promise { resolve(reader.result as string); }; - reader.onerror = e => { + reader.onerror = (error) => { reader.abort(); - reject(e); + reject(error); }; reader.readAsText(blob); @@ -49,7 +66,7 @@ function readFileAsDataURL(blob: File): Promise { resolve(reader.result as string); }; - reader.onerror = e => { + reader.onerror = (e) => { reader.abort(); reject(e); }; @@ -89,7 +106,7 @@ export class Attachment extends SimpleContainer { super(); Object.assign(this, { _key: key, - ...info + ...info, }); } @@ -100,7 +117,7 @@ export class Attachment extends SimpleContainer { name: this.name, type: this.type, size: this.size, - key: this._key + key: this._key, }); } @@ -113,11 +130,11 @@ export class Attachment extends SimpleContainer { this.size = file.size; this.name = file.name; - const data = await readFile(file); + const data = await readFileAsUint8Array(file); this._key = await getProvider().generateKey({ algorithm: "AES", - keySize: this.encryptionParams.keySize + keySize: this.encryptionParams.keySize, } as AESKeyParams); await this.setData(data); @@ -141,7 +158,7 @@ export class Attachment extends SimpleContainer { async toText(): Promise { const file = await this.toFile(); - return readAsText(file); + return readFileAsText(file); } validate() { diff --git a/packages/core/src/billing.ts b/packages/core/src/billing.ts index 09b5ae4e..33aaa9f0 100644 --- a/packages/core/src/billing.ts +++ b/packages/core/src/billing.ts @@ -7,7 +7,7 @@ export enum PlanType { Premium, Family, Team, - Business + Business, } export class Plan extends Serializable { @@ -37,7 +37,7 @@ export enum SubscriptionStatus { Trialing = "trialing", Active = "active", Inactive = "inactive", - Canceled = "canceled" + Canceled = "canceled", } export class Subscription extends Serializable { diff --git a/packages/core/src/client.ts b/packages/core/src/client.ts index 15619293..39fef931 100644 --- a/packages/core/src/client.ts +++ b/packages/core/src/client.ts @@ -41,10 +41,10 @@ export class Client extends API { method, typeof input === "undefined" ? [] : [input instanceof Serializable ? input.toRaw() : input], progress - ).then(res => { + ).then((res) => { return output ? Array.isArray(res.result) - ? res.result.map(each => new output().fromRaw(each)) + ? res.result.map((each) => new output().fromRaw(each)) : new output().fromRaw(res.result) : res.result; }) as PromiseWithProgress; @@ -85,7 +85,7 @@ export class Client extends API { } if (res.error) { - const err = new Err((res.error.code as any) as ErrorCode, res.error.message); + const err = new Err(res.error.code as any as ErrorCode, res.error.message); if (progress) { progress.error = err; } diff --git a/packages/core/src/collection.ts b/packages/core/src/collection.ts index 0a141cb1..6892ea5a 100644 --- a/packages/core/src/collection.ts +++ b/packages/core/src/collection.ts @@ -31,7 +31,7 @@ export class VaultItemCollection extends Serializable implements Iterable [item.id, item] as [string, VaultItem])); + this._items = new Map(items.map((item) => [item.id, item] as [string, VaultItem])); } /** Get an item with a given `id` */ @@ -91,8 +91,8 @@ export class VaultItemCollection extends Serializable implements Iterable item.toRaw(version)), - changes: [...this._changes] + items: Array.from(this).map((item) => item.toRaw(version)), + changes: [...this._changes], }; } diff --git a/packages/core/src/legacy.ts b/packages/core/src/legacy.ts index 4ef200c1..e2257892 100644 --- a/packages/core/src/legacy.ts +++ b/packages/core/src/legacy.ts @@ -65,15 +65,15 @@ export function parseLegacyContainer(raw: LegacyContainer): PBES2Container { tagSize: raw.ts, keySize: raw.keySize, iv: raw.iv, - additionalData: raw.adata + additionalData: raw.adata, }, keyParams: { algorithm: "PBKDF2", hash: "SHA-256", keySize: raw.keySize, iterations: raw.iter, - salt: raw.salt + salt: raw.salt, }, - encryptedData: raw.ct + encryptedData: raw.ct, }); } diff --git a/packages/core/src/migrations.ts b/packages/core/src/migrations.ts index c27a8ab6..7d049268 100644 --- a/packages/core/src/migrations.ts +++ b/packages/core/src/migrations.ts @@ -20,22 +20,22 @@ export const MIGRATIONS: Migration[] = [ up: ({ mainVault, orgs, ...rest }: any) => ({ mainVault: { id: mainVault }, orgs: orgs.map((org: any) => ({ - id: org + id: org, })), - ...rest + ...rest, }), down: ({ mainVault, orgs, ...rest }: any) => ({ mainVault: mainVault.id, orgs: orgs.map((org: any) => org.id), - ...rest - }) + ...rest, + }), }, all: { up: (raw: any, kind?: string) => ({ kind, ...raw }), - down: ({ kind, ...rest }) => rest - } - } - } + down: ({ kind, ...rest }) => rest, + }, + }, + }, ]; export const EARLIEST_VERSION = MIGRATIONS[0].from; @@ -44,7 +44,7 @@ export const LATEST_VERSION = MIGRATIONS[MIGRATIONS.length - 1].to; function norm(version: string = EARLIEST_VERSION): string { return version .split(".") - .map(part => part.padStart(3, "0")) + .map((part) => part.padStart(3, "0")) .join(); } @@ -58,7 +58,7 @@ export function upgrade(kind: string, raw: any, version: string = LATEST_VERSION } const migration = MIGRATIONS.find( - m => norm(m.from) >= norm(raw.version || EARLIEST_VERSION) && norm(m.to) <= norm(version) + (m) => norm(m.from) >= norm(raw.version || EARLIEST_VERSION) && norm(m.to) <= norm(version) ); if (migration) { @@ -76,7 +76,7 @@ export function upgrade(kind: string, raw: any, version: string = LATEST_VERSION export function downgrade(kind: string, raw: any, version: string = LATEST_VERSION): any { const migration = MIGRATIONS.reverse().find( - m => norm(m.to) <= norm(raw.version || LATEST_VERSION) && norm(m.from) >= norm(version) + (m) => norm(m.to) <= norm(raw.version || LATEST_VERSION) && norm(m.from) >= norm(version) ); if (migration) { diff --git a/packages/core/src/platform.ts b/packages/core/src/platform.ts index 2b26c007..9defccf1 100644 --- a/packages/core/src/platform.ts +++ b/packages/core/src/platform.ts @@ -115,9 +115,7 @@ export interface Platform { authenticatorIndex?: number; }): Promise; - completeAuthRequest( - req: StartAuthRequestResponse - ): Promise<{ + completeAuthRequest(req: StartAuthRequestResponse): Promise<{ token: string; accountStatus: AccountStatus; deviceTrusted: boolean; @@ -193,9 +191,7 @@ export class StubPlatform implements Platform { throw new Error("Method not implemented."); } - async completeAuthRequest( - _req: StartAuthRequestResponse - ): Promise<{ + async completeAuthRequest(_req: StartAuthRequestResponse): Promise<{ token: string; accountStatus: AccountStatus; deviceTrusted: boolean; @@ -293,9 +289,7 @@ export function startAuthRequest(opts: { return platform.startAuthRequest(opts); } -export function completeAuthRequest( - req: StartAuthRequestResponse -): Promise<{ +export function completeAuthRequest(req: StartAuthRequestResponse): Promise<{ token: string; accountStatus: AccountStatus; deviceTrusted: boolean; diff --git a/packages/core/src/randomart.ts b/packages/core/src/randomart.ts index 9eafea45..8dbf850f 100644 --- a/packages/core/src/randomart.ts +++ b/packages/core/src/randomart.ts @@ -30,7 +30,7 @@ type Position = [number, number]; export const defaults: Options = { height: 9, width: 17, - symbols: [" ", ".", "o", "+", "=", "*", "B", "O", "X", "@", "%", "&", "#", "/", "^", "S", "E"] + symbols: [" ", ".", "o", "+", "=", "*", "B", "O", "X", "@", "%", "&", "#", "/", "^", "S", "E"], }; // Converts a buffer to a binary moves array @@ -120,6 +120,6 @@ export function randomArt(fingerprint: Uint8Array, opts: Partial = {}): width: options.width, height: options.height, values: vals, - symbols: vals.map(line => line.map(val => symbols[val])) + symbols: vals.map((line) => line.map((val) => symbols[val])), }; } diff --git a/packages/core/src/sjcl.ts b/packages/core/src/sjcl.ts index c548277d..4936eff9 100644 --- a/packages/core/src/sjcl.ts +++ b/packages/core/src/sjcl.ts @@ -75,7 +75,7 @@ const SJCLProvider = { } catch (e) { throw new Err(ErrorCode.ENCRYPTION_FAILED); } - } + }, }; export default SJCLProvider; diff --git a/packages/core/src/spec/app.ts b/packages/core/src/spec/app.ts index c8f6130f..4d42bc7e 100644 --- a/packages/core/src/spec/app.ts +++ b/packages/core/src/spec/app.ts @@ -29,12 +29,12 @@ export function appSpec(): Spec { const user = { email: "lengden@olga.com", name: "Lengden Olga", - password: "correct battery horse staple" + password: "correct battery horse staple", }; const otherUser = { email: "max@mustermann.com", name: "Max Mustermann", - password: "password" + password: "password", }; let sharedVaultID = ""; // let otherVaultID = ""; @@ -191,7 +191,7 @@ export function appSpec(): Spec { test("Simulataneous Edit", async () => { const [item1, item2] = await Promise.all([ app.createItem("Added Item 1", { id: sharedVaultID }), - otherApp.createItem("Added Item 2", { id: sharedVaultID }) + otherApp.createItem("Added Item 2", { id: sharedVaultID }), ]); await Promise.all([app.syncVault({ id: sharedVaultID }), otherApp.syncVault({ id: sharedVaultID })]); diff --git a/packages/core/src/spec/crypto.ts b/packages/core/src/spec/crypto.ts index 2e49d645..194822b7 100644 --- a/packages/core/src/spec/crypto.ts +++ b/packages/core/src/spec/crypto.ts @@ -7,7 +7,7 @@ import { HMACKeyParams, PBKDF2Params, RSASigningParams, - RSAEncryptionParams + RSAEncryptionParams, } from "../crypto"; import { Spec } from "./spec"; @@ -26,7 +26,7 @@ const fixtures = { plain: stringToBytes("Hello World!"), encrypted: base64ToBytes( "eAJDfWUdgL4Wl0UDsA0WsmHE29MNAnTvSjus3N0BP6foD0fFZBlrfmRbF-KjY_2zYhgaqn7E4pEKMB20tPDC-JYcAJO8PMWOR6PdLBsBCUTbdYy062iwFWgWfzSFV2LDy-G2t9HL2CbDoDAdsh1fNGIm81nY9sXbB0kKM4uNXKTdVl49Cwf30jiRRpABV_tSPmQjkHDVWOphVEY5ex0hhveRC6vfO1YZ21-CuoTa1gRq-ab21V-Pl5rfQ0RHsDgtvvSJ8_3ihzCkOTjd2Anj0GiKEsCeV0NaEgT-e5WyDj2zYNIsVOoMmB65UUkXX002Ycc2cGuoYw2uudZQSaAlqg" - ) + ), }, aes: { key: base64ToBytes("fe8Chv8F4je2wW3u67H6KFVtlRuH4VWBgN1FXPoOKAw"), @@ -34,8 +34,8 @@ const fixtures = { iv: base64ToBytes("Tg9aODkCqoBQDktZAXLEhw"), additionalData: base64ToBytes("dJvkr9MnycfsAHiqZStEOg"), plain: stringToBytes("Hello World!"), - encrypted: base64ToBytes("A4ODqQsZrMQ4hXxV-RyYVDhdjTvk1MQ7MG8j_A") - } + encrypted: base64ToBytes("A4ODqQsZrMQ4hXxV-RyYVDhdjTvk1MQ7MG8j_A"), + }, }; export function cryptoProviderSpec(provider: CryptoProvider): Spec { @@ -59,7 +59,7 @@ export function cryptoProviderSpec(provider: CryptoProvider): Spec { let err; try { - await provider.hash(input, ({ algorithm: "BLAH" } as any) as HashParams); + await provider.hash(input, { algorithm: "BLAH" } as any as HashParams); } catch (e) { err = e; } diff --git a/packages/core/src/stub-crypto-provider.ts b/packages/core/src/stub-crypto-provider.ts index 254e6044..d336455b 100644 --- a/packages/core/src/stub-crypto-provider.ts +++ b/packages/core/src/stub-crypto-provider.ts @@ -13,7 +13,7 @@ import { AESEncryptionParams, RSAEncryptionParams, HashParams, - RSASigningParams + RSASigningParams, } from "./crypto"; import { concatBytes as concat, equalBytes as equal } from "./encoding"; import { Err, ErrorCode } from "./error"; @@ -50,7 +50,7 @@ export class StubCryptoProvider implements CryptoProvider { const key = await this.randomBytes(32); return { publicKey: key, - privateKey: key + privateKey: key, }; } } diff --git a/packages/core/vendor/jsbn.d.ts b/packages/core/vendor/jsbn.d.ts index b6e5f52a..1850df32 100644 --- a/packages/core/vendor/jsbn.d.ts +++ b/packages/core/vendor/jsbn.d.ts @@ -172,10 +172,10 @@ export class BigInteger { setBit(n: number): BigInteger; // (public) this & ~(1<>> 24) | ((v >>> 8) & m) | ((v & m) << 8) | (v << 24); } return a; - } + }, }; /** @fileOverview Bit array codec implementations. * @@ -578,7 +581,7 @@ sjcl.bitArray = { */ sjcl.codec.utf8String = { /** Convert from a bitArray to a UTF-8 string. */ - fromBits: function(arr) { + fromBits: function (arr) { var out = "", bl = sjcl.bitArray.bitLength(arr), i, @@ -594,7 +597,7 @@ sjcl.codec.utf8String = { }, /** Convert from a UTF-8 string to a bitArray. */ - toBits: function(str) { + toBits: function (str) { str = unescape(encodeURIComponent(str)); var out = [], i, @@ -610,7 +613,7 @@ sjcl.codec.utf8String = { out.push(sjcl.bitArray.partial(8 * (i & 3), tmp)); } return out; - } + }, }; /** @fileOverview Bit array codec implementations. * @@ -625,7 +628,7 @@ sjcl.codec.utf8String = { */ sjcl.codec.bytes = { /** Convert from a bitArray to an array of bytes. */ - fromBits: function(arr) { + fromBits: function (arr) { var out = [], bl = sjcl.bitArray.bitLength(arr), i, @@ -640,7 +643,7 @@ sjcl.codec.bytes = { return out; }, /** Convert from an array of bytes to a bitArray. */ - toBits: function(bytes) { + toBits: function (bytes) { var out = [], i, tmp = 0; @@ -655,7 +658,7 @@ sjcl.codec.bytes = { out.push(sjcl.bitArray.partial(8 * (i & 3), tmp)); } return out; - } + }, }; /** @fileOverview CCM mode implementation. * @@ -679,18 +682,18 @@ sjcl.mode.ccm = { _progressListeners: [], - listenProgress: function(cb) { + listenProgress: function (cb) { sjcl.mode.ccm._progressListeners.push(cb); }, - unListenProgress: function(cb) { + unListenProgress: function (cb) { var index = sjcl.mode.ccm._progressListeners.indexOf(cb); if (index > -1) { sjcl.mode.ccm._progressListeners.splice(index, 1); } }, - _callProgressListener: function(val) { + _callProgressListener: function (val) { var p = sjcl.mode.ccm._progressListeners.slice(), i; @@ -708,7 +711,7 @@ sjcl.mode.ccm = { * @param {Number} [tlen=64] the desired tag length, in bits. * @return {bitArray} The encrypted data, an array of bytes. */ - encrypt: function(prf, plaintext, iv, adata, tlen) { + encrypt: function (prf, plaintext, iv, adata, tlen) { var L, out = plaintext.slice(0), tag, @@ -747,7 +750,7 @@ sjcl.mode.ccm = { * @param {Number} [tlen=64] tlen the desired tag length, in bits. * @return {bitArray} The decrypted data. */ - decrypt: function(prf, ciphertext, iv, adata, tlen) { + decrypt: function (prf, ciphertext, iv, adata, tlen) { tlen = tlen || 64; adata = adata || []; var L, @@ -783,7 +786,7 @@ sjcl.mode.ccm = { return out.data; }, - _macAdditionalData: function(prf, adata, iv, tlen, ol, L) { + _macAdditionalData: function (prf, adata, iv, tlen, ol, L) { var mac, tmp, i, @@ -827,7 +830,7 @@ sjcl.mode.ccm = { * @return {bitArray} The tag, but not yet encrypted. * @private */ - _computeTag: function(prf, plaintext, iv, adata, tlen, L) { + _computeTag: function (prf, plaintext, iv, adata, tlen, L) { // compute B[0] var mac, i, @@ -868,7 +871,7 @@ sjcl.mode.ccm = { * @return {Object} An object with data and tag, the en/decryption of data and tag values. * @private */ - _ctrMode: function(prf, data, iv, tag, tlen, L) { + _ctrMode: function (prf, data, iv, tag, tlen, L) { var enc, i, w = sjcl.bitArray, @@ -906,7 +909,7 @@ sjcl.mode.ccm = { data[i + 3] ^= enc[3]; } return { tag: tag, data: w.clamp(data, bl) }; - } + }, }; export { sjcl }; diff --git a/packages/electron/package.json b/packages/electron/package.json index d2284e72..2ddefc57 100644 --- a/packages/electron/package.json +++ b/packages/electron/package.json @@ -1,43 +1,43 @@ { - "name": "@padloc/electron", - "version": "4.0.0", - "description": "Electron Wrapper for Padloc app", - "main": "main.js", - "private": true, - "repository": { - "type": "git", - "url": "https://github.com/padloc/padloc.git" - }, - "engines": { - "node": "16.13.1", - "npm": "8.2.0" - }, - "scripts": { - "build": "rm -rf app && webpack && node ./prepare-build.js && electron-builder --config build/build.json", - "start": "webpack && electron app/main.js" - }, - "author": "MaKleSoft UG", - "license": "GPL-3.0", - "dependencies": { - "@padloc/app": "4.0.0", - "@padloc/core": "4.0.0", - "electron-store": "8.0.0", - "electron-updater": "4.3.9" - }, - "devDependencies": { - "clean-webpack-plugin": "3.0.0", - "css-loader": "5.2.6", - "electron": "14.1.1", - "electron-builder": "22.13.1", - "electron-notarize": "1.1.1", - "file-loader": "6.2.0", - "html-webpack-plugin": "5.3.2", - "style-loader": "2.0.0", - "ts-loader": "9.2.5", - "webpack": "5.52.1", - "webpack-cli": "4.8.0", - "typescript": "4.4.3", - "raw-loader": "4.0.2", - "sharp": "0.29.1" - } + "name": "@padloc/electron", + "version": "4.0.0", + "description": "Electron Wrapper for Padloc app", + "main": "main.js", + "private": true, + "repository": { + "type": "git", + "url": "https://github.com/padloc/padloc.git" + }, + "engines": { + "node": "16.13.1", + "npm": "8.2.0" + }, + "scripts": { + "build": "rm -rf app && webpack && node ./prepare-build.js && electron-builder --config build/build.json", + "start": "webpack && electron app/main.js" + }, + "author": "MaKleSoft UG", + "license": "GPL-3.0", + "dependencies": { + "@padloc/app": "4.0.0", + "@padloc/core": "4.0.0", + "electron-store": "8.0.0", + "electron-updater": "4.3.9" + }, + "devDependencies": { + "clean-webpack-plugin": "3.0.0", + "css-loader": "5.2.6", + "electron": "14.1.1", + "electron-builder": "22.13.1", + "electron-notarize": "1.1.1", + "file-loader": "6.2.0", + "html-webpack-plugin": "5.3.2", + "style-loader": "2.0.0", + "ts-loader": "9.2.5", + "webpack": "5.52.1", + "webpack-cli": "4.8.0", + "typescript": "4.4.3", + "raw-loader": "4.0.2", + "sharp": "0.29.1" + } } diff --git a/packages/electron/scripts/sign-win.js b/packages/electron/scripts/sign-win.js index be066281..8ed6c232 100644 --- a/packages/electron/scripts/sign-win.js +++ b/packages/electron/scripts/sign-win.js @@ -3,7 +3,7 @@ const { execSync } = require("child_process"); const { tmpdir } = require("os"); const { writeFileSync, unlinkSync } = require("fs"); -exports.default = async function(opts) { +exports.default = async function (opts) { const jsign = path.resolve(__dirname, "jsign-2.1.jar"); const pass = process.env.PL_WIN_SIGN_PASS; const lib = path.resolve(__dirname, "crypto3PKCS.dylib"); @@ -18,9 +18,7 @@ slotListIndex=0` ); execSync( - `java -jar ${jsign} --keystore ${keystore} --storepass ${pass} --storetype PKCS11 -t http://time.certum.pl/ -a "${ - opts.options.publisherName - }" "${opts.path}"` + `java -jar ${jsign} --keystore ${keystore} --storepass ${pass} --storetype PKCS11 -t http://time.certum.pl/ -a "${opts.options.publisherName}" "${opts.path}"` ); unlinkSync(keystore); diff --git a/packages/electron/tsconfig.json b/packages/electron/tsconfig.json index 5dcf295f..39fec57e 100644 --- a/packages/electron/tsconfig.json +++ b/packages/electron/tsconfig.json @@ -1,3 +1,3 @@ { "extends": "../app/tsconfig.json" -} \ No newline at end of file +} diff --git a/packages/extension/package.json b/packages/extension/package.json index 69e09bf1..41e196d4 100644 --- a/packages/extension/package.json +++ b/packages/extension/package.json @@ -1,47 +1,47 @@ { - "name": "@padloc/extension", - "version": "4.0.0", - "description": "Padloc Progressive Web App", - "author": "Martin Kleinschrodt ", - "license": "GPL-3.0", - "private": true, - "files": [ - "src", - "assets", - "tsconfig.json" - ], - "repository": { - "type": "git", - "url": "https://github.com/padloc/padloc.git", - "directory": "packages/pwa" - }, - "engines": { - "node": "16.13.1", - "npm": "8.2.0" - }, - "dependencies": { - "@padloc/app": "4.0.0", - "@padloc/core": "4.0.0", - "@webcomponents/webcomponentsjs": "2.5.0", - "webextension-polyfill-ts": "0.25.0" - }, - "devDependencies": { - "clean-webpack-plugin": "3.0.0", - "css-loader": "5.2.6", - "favicons-webpack-plugin": "5.0.2", - "file-loader": "6.2.0", - "html-webpack-plugin": "5.3.1", - "http-server": "0.12.3", - "raw-loader": "4.0.2", - "sharp": "0.29.1", - "style-loader": "2.0.0", - "ts-loader": "9.2.2", - "ts-node": "10.0.0", - "typescript": "4.4.3", - "webpack": "5.38.1", - "webpack-cli": "4.7.0" - }, - "scripts": { - "build": "webpack" - } + "name": "@padloc/extension", + "version": "4.0.0", + "description": "Padloc Progressive Web App", + "author": "Martin Kleinschrodt ", + "license": "GPL-3.0", + "private": true, + "files": [ + "src", + "assets", + "tsconfig.json" + ], + "repository": { + "type": "git", + "url": "https://github.com/padloc/padloc.git", + "directory": "packages/pwa" + }, + "engines": { + "node": "16.13.1", + "npm": "8.2.0" + }, + "dependencies": { + "@padloc/app": "4.0.0", + "@padloc/core": "4.0.0", + "@webcomponents/webcomponentsjs": "2.5.0", + "webextension-polyfill-ts": "0.25.0" + }, + "devDependencies": { + "clean-webpack-plugin": "3.0.0", + "css-loader": "5.2.6", + "favicons-webpack-plugin": "5.0.2", + "file-loader": "6.2.0", + "html-webpack-plugin": "5.3.1", + "http-server": "0.12.3", + "raw-loader": "4.0.2", + "sharp": "0.29.1", + "style-loader": "2.0.0", + "ts-loader": "9.2.2", + "ts-node": "10.0.0", + "typescript": "4.4.3", + "webpack": "5.38.1", + "webpack-cli": "4.7.0" + }, + "scripts": { + "build": "webpack" + } } diff --git a/packages/extension/src/content.ts b/packages/extension/src/content.ts index a30a6ed3..9d67d49d 100644 --- a/packages/extension/src/content.ts +++ b/packages/extension/src/content.ts @@ -183,19 +183,19 @@ class ExtensionContent { input.dispatchEvent( new KeyboardEvent("keydown", { bubbles: true, - key: "" + key: "", }) ); input.dispatchEvent( new KeyboardEvent("keyup", { bubbles: true, - key: "" + key: "", }) ); input.dispatchEvent( new KeyboardEvent("keypress", { bubbles: true, - key: "" + key: "", }) ); input.dispatchEvent(new Event("input", { bubbles: true })); diff --git a/packages/extension/src/manifest.json b/packages/extension/src/manifest.json index dbaa48e5..96f4cc4e 100644 --- a/packages/extension/src/manifest.json +++ b/packages/extension/src/manifest.json @@ -4,22 +4,14 @@ "128": "icon.png" }, "background": { - "scripts": [ - "background.js" - ], + "scripts": ["background.js"], "persistent": true }, "browser_action": { "default_popup": "popup.html", "default_icon": "icon.png" }, - "permissions": [ - "storage", - "unlimitedStorage", - "tabs", - "activeTab", - "contextMenus" - ], + "permissions": ["storage", "unlimitedStorage", "tabs", "activeTab", "contextMenus"], "commands": { "_execute_browser_action": { "suggested_key": { @@ -42,4 +34,4 @@ "description": "Open Previous Vault Item" } } -} \ No newline at end of file +} diff --git a/packages/locale/package.json b/packages/locale/package.json index 55e0c707..2fb6720a 100644 --- a/packages/locale/package.json +++ b/packages/locale/package.json @@ -1,28 +1,28 @@ { - "name": "@padloc/locale", - "version": "4.0.0", - "description": "Package containing translations and wordlists for Padloc as well as various other localization tools", - "main": "src/index.js", - "files": [ - "src", - "res" - ], - "scripts": { - "extract": "ts-node src/extract.ts ../*/src/{**,.}/*.ts" - }, - "author": "Martin Kleinschrodt ", - "license": "GPLv3", - "devDependencies": { - "ts-node": "10.0.0", - "typescript": "4.4.3" - }, - "repository": { - "type": "git", - "url": "https://github.com/padloc/padloc.git", - "directory": "packages/locale" - }, - "engines": { - "node": "16.13.1", - "npm": "8.2.0" - } + "name": "@padloc/locale", + "version": "4.0.0", + "description": "Package containing translations and wordlists for Padloc as well as various other localization tools", + "main": "src/index.js", + "files": [ + "src", + "res" + ], + "scripts": { + "extract": "ts-node src/extract.ts ../*/src/{**,.}/*.ts" + }, + "author": "Martin Kleinschrodt ", + "license": "GPLv3", + "devDependencies": { + "ts-node": "10.0.0", + "typescript": "4.4.3" + }, + "repository": { + "type": "git", + "url": "https://github.com/padloc/padloc.git", + "directory": "packages/locale" + }, + "engines": { + "node": "16.13.1", + "npm": "8.2.0" + } } diff --git a/packages/locale/res/translations/_template.json b/packages/locale/res/translations/_template.json index 6860f3c3..f6c7ad7f 100644 --- a/packages/locale/res/translations/_template.json +++ b/packages/locale/res/translations/_template.json @@ -1,1574 +1,467 @@ [ - [ - "OK", - "" - ], - [ - "o f f l i n e", - "" - ], - [ - "Could not find invite! Did you use the correct link?", - "" - ], - [ - "Get Premium", - "" - ], - [ - "Cancel", - "" - ], - [ - "It looks like the app cannot connect to the Padloc servers right now, probably due to a missing internet connection. You can still access your vaults and even create or edit Vault Items but your changes won't be synchronized until you're back online.", - "" - ], - [ - "You're Offline", - "" - ], - [ - "Do you want to enable biometric unlock for this device?", - "" - ], - [ - "Setup", - "" - ], - [ - "Biometric Unlock", - "" - ], - [ - "Biometric authentication failed! Canceling Setup.", - "" - ], - [ - "Setup Failed", - "" - ], - [ - "Biometric unlock failed! Canceling Setup. (Reason: {0})", - "" - ], - [ - "Please enter your master password!", - "" - ], - [ - "Enter Master Password", - "" - ], - [ - "Wrong password! Please try again!", - "" - ], - [ - "Biometric unlock activated successfully!", - "" - ], - [ - "Are you sure you want to delete this attachment?", - "" - ], - [ - "Delete", - "" - ], - [ - "Delete Attachment", - "" - ], - [ - "Download failed!", - "" - ], - [ - "Do you want to save this file to your disk? WARNING: Doing this will leave the file exposed and unprotected on your harddrive!", - "" - ], - [ - "Save", - "" - ], - [ - "Save To Disk", - "" - ], - [ - "Edit Name", - "" - ], - [ - "Attachment Name", - "" - ], - [ - "Please enter an attachment name!", - "" - ], - [ - "Unknown File Type", - "" - ], - [ - "downloading... {0}/{1}", - "" - ], - [ - "Unnamed", - "" - ], - [ - "uploading... {0}/{1}", - "" - ], - [ - "Failed to upload!", - "" - ], - [ - "Failed to download! Click to try again.", - "" - ], - [ - "Update Billing Info", - "" - ], - [ - "Select A Country", - "" - ], - [ - "To update your billing info and payment method, please log in through our website (found under \"Settings\") or contact us at ", - "" - ], - [ - "Payment Details", - "" - ], - [ - "Billing Address", - "" - ], - [ - "Billing Email", - "" - ], - [ - "Name", - "" - ], - [ - "Address", - "" - ], - [ - "Postal Code", - "" - ], - [ - "City", - "" - ], - [ - "Tax Info", - "" - ], - [ - "This is a business", - "" - ], - [ - "Tax ID", - "" - ], - [ - "Coupon Code", - "" - ], - [ - "Add Later", - "" - ], - [ - "Something went wrong. Please try again later!", - "" - ], - [ - "Add Payment Method", - "" - ], - [ - "per user / month", - "" - ], - [ - "USD, billed annually", - "" - ], - [ - "Try For Free", - "" - ], - [ - "Please enter at least one email address!", - "" - ], - [ - "You have entered too many email addresses! Please delete some before submitting!", - "" - ], - [ - "Some of the emails you entered appear to be invalid!", - "" - ], - [ - "Something went wrong! Please try again later!", - "" - ], - [ - "Invite New Members", - "" - ], - [ - "Please enter up to {0} email addresses of the persons you would like to invite, separated by spaces or commas!", - "" - ], - [ - "Enter Email Address", - "" - ], - [ - "Submit", - "" - ], - [ - "New Vault Item", - "" - ], - [ - "Item Name", - "" - ], - [ - "Template", - "" - ], - [ - "Vault", - "" - ], - [ - "Create & Edit", - "" - ], - [ - "You have reached the maximum number of items for this account. Upgrade to Premium to get unlimited items for your private vault!", - "" - ], - [ - "You have reached the maximum number of items for this account!", - "" - ], - [ - "Please enter an organization name!", - "" - ], - [ - "Free For {0} Days", - "" - ], - [ - "then", - "" - ], - [ - "per month", - "" - ], - [ - "{0} min", - "" - ], - [ - "{0} max", - "" - ], - [ - "Seats", - "" - ], - [ - "Add Billing Info", - "" - ], - [ - "Create Organization", - "" - ], - [ - "Organization Name", - "" - ], - [ - "Create", - "" - ], - [ - "Export Data", - "" - ], - [ - "Target Vault", - "" - ], - [ - "Format", - "" - ], - [ - "WARNING: Exporting to CSV format will save your data without encyryption of any kind which means it can be read by anyone. We strongly recommend exporting your data as a secure, encrypted file, instead!", - "" - ], - [ - "Export {0} Items", - "" - ], - [ - "Please choose a password to protect this backup with!", - "" - ], - [ - "Choose Password", - "" - ], - [ - "Please choose a password!", - "" - ], - [ - "Please repeat the password!", - "" - ], - [ - "Password not repeated correctly!", - "" - ], - [ - "Choose A Field Type", - "" - ], - [ - "What kind of field you would like to add?", - "" - ], - [ - "Enter Notes Here", - "" - ], - [ - "Enter Secret", - "" - ], - [ - "Enter Password", - "" - ], - [ - "Enter Value Here", - "" - ], - [ - "Enter Field Name", - "" - ], - [ - "Dash", - "" - ], - [ - "Underscore", - "" - ], - [ - "Slash", - "" - ], - [ - "Space", - "" - ], - [ - "Generate Password", - "" - ], - [ - "passphrase", - "" - ], - [ - "random string", - "" - ], - [ - "Word Separator", - "" - ], - [ - "Language", - "" - ], - [ - "words", - "" - ], - [ - "length", - "" - ], - [ - "Use", - "" - ], - [ - "Discard", - "" - ], - [ - "Are you sure you want to delete this group?", - "" - ], - [ - "Delete Group", - "" - ], - [ - "Type 'DELETE' to confirm", - "" - ], - [ - "Enter Group Name", - "" - ], - [ - "Search...", - "" - ], - [ - "Import Data", - "" - ], - [ - "IMPORTANT: Before importing, please make sure that your CSV data is structured according to Padlocks specific requirements!", - "" - ], - [ - "Learn More", - "" - ], - [ - "Import {0} Items", - "" - ], - [ - "This file is protected by a password.", - "" - ], - [ - "Wrong Password", - "" - ], - [ - "The number of imported items exceeds your remaining quota. Upgrade to Premium to get unlimited items for your private vault!", - "" - ], - [ - "The number of imported items exceeds your remaining quota.", - "" - ], - [ - "Successfully imported {0} items.", - "" - ], - [ - "This invite has expired", - "" - ], - [ - "Accepted", - "" - ], - [ - "expires {0}", - "" - ], - [ - "Confirm Membership", - "" - ], - [ - "Organization Invite", - "" - ], - [ - "Please wait for an admin to complete the process. You will be notified as soon as you receive access.", - "" - ], - [ - "Enter Confirmation Code", - "" - ], - [ - "If you haven't received the confirmation code yet, please ask the organization owner to provide it to you!", - "" - ], - [ - "They will also need the following confirmation code, which you should communicate to them separately:", - "" - ], - [ - "Resend", - "" - ], - [ - "Please enter a confirmation code!", - "" - ], - [ - "You have successfully accepted the invite. You'll be notified once you've been granted access.", - "" - ], - [ - "Wrong confirmation code. Please try again!", - "" - ], - [ - "expired", - "" - ], - [ - "accepted", - "" - ], - [ - "{0}", - "" - ], - [ - "Confirm", - "" - ], - [ - "Confirmation Code:", - "" - ], - [ - "Upgrade to Premium now and get 1GB of encrypted file storage!", - "" - ], - [ - "Enter Item Name", - "" - ], - [ - "Field", - "" - ], - [ - "Attachment", - "" - ], - [ - "Move", - "" - ], - [ - "by {0}", - "" - ], - [ - "Are you sure you want to delete this item?", - "" - ], - [ - "Items with attachments cannot be moved!", - "" - ], - [ - "The selected file is too large! Only files of up to 5 MB are supported.", - "" - ], - [ - "File uploaded successfully!", - "" - ], - [ - "Favorites", - "" - ], - [ - "Recently Used", - "" - ], - [ - "Attachments", - "" - ], - [ - "All Items", - "" - ], - [ - "My Vault", - "" - ], - [ - "Tags", - "" - ], - [ - "You don't have any tags yet.", - "" - ], - [ - "Your search did not match any items.", - "" - ], - [ - "This vault does not have any items yet.", - "" - ], - [ - "You don't have any attachments yet.", - "" - ], - [ - "You don't have any favorites yet.", - "" - ], - [ - "You don't have any recently used items!", - "" - ], - [ - "You don't have any items yet.", - "" - ], - [ - "Type To Search", - "" - ], - [ - "{0} items selected", - "" - ], - [ - "Some items in your selection are from Vaults you don't have write access to and cannot be deleted. Do you want to proceed deleting the other items?", - "" - ], - [ - "Yes", - "" - ], - [ - "No", - "" - ], - [ - "Are you sure you want to delete these items? This action can not be undone!", - "" - ], - [ - "Delete {0} Items", - "" - ], - [ - "Some items in your selection have attachments and cannot be moved. Do you want to proceed moving the other items?", - "" - ], - [ - "Some items in your selection are from Vaults you don't have write access to and cannot be moved. Do you want to proceed moving the other items?", - "" - ], - [ - "No Name", - "" - ], - [ - "copied", - "" - ], - [ - "No Fields", - "" - ], - [ - "This item has no fields.", - "" - ], - [ - "Email Address", - "" - ], - [ - "Master Password", - "" - ], - [ - "Login", - "" - ], - [ - "New to Padloc?", - "" - ], - [ - "Sign Up Now", - "" - ], - [ - "Please enter a valid email address!", - "" - ], - [ - "Please enter the confirmation code sent to your email address to proceed!", - "" - ], - [ - "One Last Step!", - "" - ], - [ - "Enter Verification Code", - "" - ], - [ - "Maximum number of tries exceeded! Please resubmit and try again!", - "" - ], - [ - "Wrong username or password. Please try again!", - "" - ], - [ - "Can't remember your master password?", - "" - ], - [ - "Recover Account", - "" - ], - [ - "Try Again", - "" - ], - [ - "An account with this email address does not exist!", - "" - ], - [ - "Sign Up", - "" - ], - [ - "Remove", - "" - ], - [ - "Suspend", - "" - ], - [ - "Remove Admin", - "" - ], - [ - "Make Admin", - "" - ], - [ - "Are you sure you want to remove this member from this organization?", - "" - ], - [ - "Remove Member", - "" - ], - [ - "Are you sure you want to make this member an admin? Admins can manage vaults, groups and permissions.", - "" - ], - [ - "Are you sure you want to remove this member as admin?", - "" - ], - [ - "Are you sure you want to suspend this member?", - "" - ], - [ - "Suspend Member", - "" - ], - [ - "Groups", - "" - ], - [ - "Vaults", - "" - ], - [ - "read", - "" - ], - [ - "write", - "" - ], - [ - "Owner", - "" - ], - [ - "Admin", - "" - ], - [ - "Suspended", - "" - ], - [ - "Items", - "" - ], - [ - "Orgs & Teams", - "" - ], - [ - "New Organization", - "" - ], - [ - "Settings", - "" - ], - [ - "{0} Items", - "" - ], - [ - "Move {0} To", - "" - ], - [ - "No target vaults available!", - "" - ], - [ - "Move Item", - "" - ], - [ - "Move Items", - "" - ], - [ - "Successfully created {0} invites!", - "" - ], - [ - "Unsuspend", - "" - ], - [ - "Are you sure you want to delete this organization? All associated vaults and the data within them will be lost! This action can not be undone.", - "" - ], - [ - "Delete Organization", - "" - ], - [ - "Rename Organization", - "" - ], - [ - "Company Name", - "" - ], - [ - "Please enter a name!", - "" - ], - [ - "Do you want to rotate this organizations cryptographic keys? All organization memberships will have to be reconfirmed but no data will be lost.", - "" - ], - [ - "The organizations cryptographic keys have been rotated successfully and membership confirmation requests for all members have been sent out.", - "" - ], - [ - "Members", - "" - ], - [ - "This organization currently does not have an active subscription and has been put in \"frozen\" state as a result. While in this state, you won't be able to make any changes to members, groups or vaults of this organization.", - "" - ], - [ - "Update Subscription", - "" - ], - [ - "New Group", - "" - ], - [ - "New Vault", - "" - ], - [ - "Subscription", - "" - ], - [ - "Billing Info", - "" - ], - [ - "Security", - "" - ], - [ - "Rotate Cryptographic Keys", - "" - ], - [ - "General", - "" - ], - [ - "Change Organization Name", - "" - ], - [ - "Organizations allow you to securely share passwords, documents and other data within your family, team or any other kind of group!", - "" - ], - [ - "Start Trial", - "" - ], - [ - "Scan QR Code", - "" - ], - [ - "Failed to scan QR code. Error: ", - "" - ], - [ - "Please enter your email address and new master password.", - "" - ], - [ - "New Master Password", - "" - ], - [ - "WARNING: Weak Password!", - "" - ], - [ - "Repeat Master Password", - "" - ], - [ - "IMPORTANT, READ CAREFULLY: Padloc is designed in a way that makes it impossible for us to access the data encrypted in any of your vaults even if we wanted to. While this is essential to ensuring the security of your data, it also has the following implications:", - "" - ], - [ - "Any data stored in your private vault can not be recovered and will be permantently lost.", - "" - ], - [ - "All your organization memberships will be suspended temporarily until confirmed by the organization owner.", - "" - ], - [ - "All members of organizations you own will be suspended temporarily until confirmed by you.", - "" - ], - [ - "Please enter a master password!", - "" - ], - [ - "You didn't repeat your master password correctly. Try again!", - "" - ], - [ - "The password you entered is weak which makes it easier for attackers to break the encryption used to protect your data. Try to use a longer password or include a variation of uppercase, lowercase and special characters as well as numbers!", - "" - ], - [ - "Choose Different Password", - "" - ], - [ - "Use Anyway", - "" - ], - [ - "WARNING: Weak Password", - "" - ], - [ - "To complete the account recovery process, please enter the confirmation code sent to your email address!", - "" - ], - [ - "Account recovery successful!", - "" - ], - [ - "Report Errors", - "" - ], - [ - "{0} Errors Detected", - "" - ], - [ - "Padloc has registered {0} errors during your use of the app. These errors may not have any impact on functionality and can often be ignored, but reporting them may help us diagnose problems, identify possible failure modes and generally improve the stability of the app.", - "" - ], - [ - "Profile", - "" - ], - [ - "Log Out", - "" - ], - [ - "Change Master Password", - "" - ], - [ - "Auto Lock", - "" - ], - [ - "Lock Automatically", - "" - ], - [ - " min", - "" - ], - [ - "After", - "" - ], - [ - "Enable Biometric Unlock", - "" - ], - [ - "Import / Export", - "" - ], - [ - "Import...", - "" - ], - [ - "Export...", - "" - ], - [ - "Support", - "" - ], - [ - "Website", - "" - ], - [ - "Contact Support", - "" - ], - [ - "Danger Zone", - "" - ], - [ - "Delete Account", - "" - ], - [ - "Edit Profile", - "" - ], - [ - "Do you really want to log out?", - "" - ], - [ - "Please enter your current password!", - "" - ], - [ - "Enter Current Password", - "" - ], - [ - "Now choose a new master password!", - "" - ], - [ - "Enter New Password", - "" - ], - [ - "Please enter a password!", - "" - ], - [ - "Please confirm your new password!", - "" - ], - [ - "Repeat New Password", - "" - ], - [ - "Master password changed successfully.", - "" - ], - [ - "Please enter your master password to proceed.", - "" - ], - [ - "Are you sure you want to delete this account? All associated vaults and the data within them will be lost and any active subscriptions will be canceled immediately. This action can not be undone!", - "" - ], - [ - "Are you sure you want to disable biometric unlock?", - "" - ], - [ - "Welcome to Padloc! Let's get you started by creating an account for you.", - "" - ], - [ - "Your email address serves as your username and allows us to get in touch with you. Don't worry, we would never send you any spam!", - "" - ], - [ - "Your Name", - "" - ], - [ - "What should we call you?", - "" - ], - [ - "Continue", - "" - ], - [ - "Already have an account?", - "" - ], - [ - "Sign In", - "" - ], - [ - "You've Got Mail!", - "" - ], - [ - "To verify your email address, please enter the confirmation code we sent to {0}.", - "" - ], - [ - "Confirmation Code", - "" - ], - [ - "Say hello to your", - "" - ], - [ - "It's the last password you'll ever have to remember! Please memorize it and never reveal it to anyone (not even us)! We recommend writing it down on a piece of paper and storing it somewhere safe, at least until you have it safely memorized.", - "" - ], - [ - "[Tap To Reveal]", - "" - ], - [ - "[Hover To Reveal]", - "" - ], - [ - "This random passphrase was generated just for you and is designed to be both secure and easy to remember. Don't like it?", - "" - ], - [ - "Try Another One", - "" - ], - [ - "Choose Your Own", - "" - ], - [ - "An account with this email address already exists!", - "" - ], - [ - "Change Email", - "" - ], - [ - "We recommend using a randomly generated password that is both strong and easy to remember.", - "" - ], - [ - "Keep This One", - "" - ], - [ - "Generate Another", - "" - ], - [ - "Choose My Own", - "" - ], - [ - "Want A Different Master Password?", - "" - ], - [ - "Choose Own Master Password", - "" - ], - [ - "Resume Subscription", - "" - ], - [ - "Cancel Subscription", - "" - ], - [ - "Update Plan", - "" - ], - [ - "Are you sure you want to downgrade to the Free Plan?", - "" - ], - [ - "Downgrade", - "" - ], - [ - "No Plan Selected", - "" - ], - [ - "Unlimited", - "" - ], - [ - "{0} / Year", - "" - ], - [ - "Canceled ({0} days left)", - "" - ], - [ - "Authentication Required", - "" - ], - [ - "Inactive", - "" - ], - [ - "Trialing ({0} days left)", - "" - ], - [ - "Choose Plan", - "" - ], - [ - "Complete Payment", - "" - ], - [ - "Downgrade To Free Plan", - "" - ], - [ - "Add Tag", - "" - ], - [ - "Choose A Template", - "" - ], - [ - "What kind of item you would like to add?", - "" - ], - [ - "Invalid Code", - "" - ], - [ - "Logged In As", - "" - ], - [ - "Unlock", - "" - ], - [ - "Wrong password! Please try again.", - "" - ], - [ - "Logout / Switch Account", - "" - ], - [ - "Forgot Password", - "" - ], - [ - "Are you sure you want to log out of this account?", - "" - ], - [ - "Biometric unlock expired. Complete setup to reeneable.", - "" - ], - [ - "Biometric unlock failed! Reason: {0}", - "" - ], - [ - "Failed To Unlock", - "" - ], - [ - "Update", - "" - ], - [ - "Storage limit exceeded!", - "" - ], - [ - "Upload failed! Please try again!", - "" - ], - [ - "Upload Attachment", - "" - ], - [ - "Unkown File Type", - "" - ], - [ - "Retry Upload", - "" - ], - [ - "Upload", - "" - ], - [ - "Are you sure you want to delete this vault? All the data stored in it will be lost! This action can not be undone.", - "" - ], - [ - "Delete Vault", - "" - ], - [ - "Enter Vault Name", - "" - ], - [ - "Username", - "" - ], - [ - "Password", - "" - ], - [ - "URL", - "" - ], - [ - "Notes", - "" - ], - [ - "Your session has expired. Please log in again!", - "" - ], - [ - "A new update is ready to install! Do you want to install it now?", - "" - ], - [ - "Install & Reload", - "" - ], - [ - "Later", - "" - ], - [ - "Date", - "" - ], - [ - "Month", - "" - ], - [ - "Credit Card Number", - "" - ], - [ - "Phone Number", - "" - ], - [ - "PIN", - "" - ], - [ - "Two-Factor Token", - "" - ], - [ - "Note", - "" - ], - [ - "Other", - "" - ], - [ - "Credit Card", - "" - ], - [ - "Card Number", - "" - ], - [ - "Card Owner", - "" - ], - [ - "Valid Until", - "" - ], - [ - "CVC", - "" - ], - [ - "Bank Account", - "" - ], - [ - "Account Owner", - "" - ], - [ - "IBAN", - "" - ], - [ - "BIC", - "" - ], - [ - "Card PIN", - "" - ], - [ - "WIFI Password", - "" - ], - [ - "Passport", - "" - ], - [ - "Full Name", - "" - ], - [ - "Passport Number", - "" - ], - [ - "Country", - "" - ], - [ - "Birthdate", - "" - ], - [ - "Birthplace", - "" - ], - [ - "Issued On", - "" - ], - [ - "Expires", - "" - ], - [ - "Document", - "" - ], - [ - "Custom", - "" - ], - [ - "{0} on {1}", - "" - ], - [ - "{0} Device", - "" - ] -] \ No newline at end of file + ["OK", ""], + ["o f f l i n e", ""], + ["Could not find invite! Did you use the correct link?", ""], + ["Get Premium", ""], + ["Cancel", ""], + [ + "It looks like the app cannot connect to the Padloc servers right now, probably due to a missing internet connection. You can still access your vaults and even create or edit Vault Items but your changes won't be synchronized until you're back online.", + "" + ], + ["You're Offline", ""], + ["Do you want to enable biometric unlock for this device?", ""], + ["Setup", ""], + ["Biometric Unlock", ""], + ["Biometric authentication failed! Canceling Setup.", ""], + ["Setup Failed", ""], + ["Biometric unlock failed! Canceling Setup. (Reason: {0})", ""], + ["Please enter your master password!", ""], + ["Enter Master Password", ""], + ["Wrong password! Please try again!", ""], + ["Biometric unlock activated successfully!", ""], + ["Are you sure you want to delete this attachment?", ""], + ["Delete", ""], + ["Delete Attachment", ""], + ["Download failed!", ""], + [ + "Do you want to save this file to your disk? WARNING: Doing this will leave the file exposed and unprotected on your harddrive!", + "" + ], + ["Save", ""], + ["Save To Disk", ""], + ["Edit Name", ""], + ["Attachment Name", ""], + ["Please enter an attachment name!", ""], + ["Unknown File Type", ""], + ["downloading... {0}/{1}", ""], + ["Unnamed", ""], + ["uploading... {0}/{1}", ""], + ["Failed to upload!", ""], + ["Failed to download! Click to try again.", ""], + ["Update Billing Info", ""], + ["Select A Country", ""], + [ + "To update your billing info and payment method, please log in through our website (found under \"Settings\") or contact us at ", + "" + ], + ["Payment Details", ""], + ["Billing Address", ""], + ["Billing Email", ""], + ["Name", ""], + ["Address", ""], + ["Postal Code", ""], + ["City", ""], + ["Tax Info", ""], + ["This is a business", ""], + ["Tax ID", ""], + ["Coupon Code", ""], + ["Add Later", ""], + ["Something went wrong. Please try again later!", ""], + ["Add Payment Method", ""], + ["per user / month", ""], + ["USD, billed annually", ""], + ["Try For Free", ""], + ["Please enter at least one email address!", ""], + ["You have entered too many email addresses! Please delete some before submitting!", ""], + ["Some of the emails you entered appear to be invalid!", ""], + ["Something went wrong! Please try again later!", ""], + ["Invite New Members", ""], + [ + "Please enter up to {0} email addresses of the persons you would like to invite, separated by spaces or commas!", + "" + ], + ["Enter Email Address", ""], + ["Submit", ""], + ["New Vault Item", ""], + ["Item Name", ""], + ["Template", ""], + ["Vault", ""], + ["Create & Edit", ""], + [ + "You have reached the maximum number of items for this account. Upgrade to Premium to get unlimited items for your private vault!", + "" + ], + ["You have reached the maximum number of items for this account!", ""], + ["Please enter an organization name!", ""], + ["Free For {0} Days", ""], + ["then", ""], + ["per month", ""], + ["{0} min", ""], + ["{0} max", ""], + ["Seats", ""], + ["Add Billing Info", ""], + ["Create Organization", ""], + ["Organization Name", ""], + ["Create", ""], + ["Export Data", ""], + ["Target Vault", ""], + ["Format", ""], + [ + "WARNING: Exporting to CSV format will save your data without encyryption of any kind which means it can be read by anyone. We strongly recommend exporting your data as a secure, encrypted file, instead!", + "" + ], + ["Export {0} Items", ""], + ["Please choose a password to protect this backup with!", ""], + ["Choose Password", ""], + ["Please choose a password!", ""], + ["Please repeat the password!", ""], + ["Password not repeated correctly!", ""], + ["Choose A Field Type", ""], + ["What kind of field you would like to add?", ""], + ["Enter Notes Here", ""], + ["Enter Secret", ""], + ["Enter Password", ""], + ["Enter Value Here", ""], + ["Enter Field Name", ""], + ["Dash", ""], + ["Underscore", ""], + ["Slash", ""], + ["Space", ""], + ["Generate Password", ""], + ["passphrase", ""], + ["random string", ""], + ["Word Separator", ""], + ["Language", ""], + ["words", ""], + ["length", ""], + ["Use", ""], + ["Discard", ""], + ["Are you sure you want to delete this group?", ""], + ["Delete Group", ""], + ["Type 'DELETE' to confirm", ""], + ["Enter Group Name", ""], + ["Search...", ""], + ["Import Data", ""], + [ + "IMPORTANT: Before importing, please make sure that your CSV data is structured according to Padlocks specific requirements!", + "" + ], + ["Learn More", ""], + ["Import {0} Items", ""], + ["This file is protected by a password.", ""], + ["Wrong Password", ""], + [ + "The number of imported items exceeds your remaining quota. Upgrade to Premium to get unlimited items for your private vault!", + "" + ], + ["The number of imported items exceeds your remaining quota.", ""], + ["Successfully imported {0} items.", ""], + ["This invite has expired", ""], + ["Accepted", ""], + ["expires {0}", ""], + ["Confirm Membership", ""], + ["Organization Invite", ""], + ["Please wait for an admin to complete the process. You will be notified as soon as you receive access.", ""], + ["Enter Confirmation Code", ""], + ["If you haven't received the confirmation code yet, please ask the organization owner to provide it to you!", ""], + ["They will also need the following confirmation code, which you should communicate to them separately:", ""], + ["Resend", ""], + ["Please enter a confirmation code!", ""], + ["You have successfully accepted the invite. You'll be notified once you've been granted access.", ""], + ["Wrong confirmation code. Please try again!", ""], + ["expired", ""], + ["accepted", ""], + ["{0}", ""], + ["Confirm", ""], + ["Confirmation Code:", ""], + ["Upgrade to Premium now and get 1GB of encrypted file storage!", ""], + ["Enter Item Name", ""], + ["Field", ""], + ["Attachment", ""], + ["Move", ""], + ["by {0}", ""], + ["Are you sure you want to delete this item?", ""], + ["Items with attachments cannot be moved!", ""], + ["The selected file is too large! Only files of up to 5 MB are supported.", ""], + ["File uploaded successfully!", ""], + ["Favorites", ""], + ["Recently Used", ""], + ["Attachments", ""], + ["All Items", ""], + ["My Vault", ""], + ["Tags", ""], + ["You don't have any tags yet.", ""], + ["Your search did not match any items.", ""], + ["This vault does not have any items yet.", ""], + ["You don't have any attachments yet.", ""], + ["You don't have any favorites yet.", ""], + ["You don't have any recently used items!", ""], + ["You don't have any items yet.", ""], + ["Type To Search", ""], + ["{0} items selected", ""], + [ + "Some items in your selection are from Vaults you don't have write access to and cannot be deleted. Do you want to proceed deleting the other items?", + "" + ], + ["Yes", ""], + ["No", ""], + ["Are you sure you want to delete these items? This action can not be undone!", ""], + ["Delete {0} Items", ""], + [ + "Some items in your selection have attachments and cannot be moved. Do you want to proceed moving the other items?", + "" + ], + [ + "Some items in your selection are from Vaults you don't have write access to and cannot be moved. Do you want to proceed moving the other items?", + "" + ], + ["No Name", ""], + ["copied", ""], + ["No Fields", ""], + ["This item has no fields.", ""], + ["Email Address", ""], + ["Master Password", ""], + ["Login", ""], + ["New to Padloc?", ""], + ["Sign Up Now", ""], + ["Please enter a valid email address!", ""], + ["Please enter the confirmation code sent to your email address to proceed!", ""], + ["One Last Step!", ""], + ["Enter Verification Code", ""], + ["Maximum number of tries exceeded! Please resubmit and try again!", ""], + ["Wrong username or password. Please try again!", ""], + ["Can't remember your master password?", ""], + ["Recover Account", ""], + ["Try Again", ""], + ["An account with this email address does not exist!", ""], + ["Sign Up", ""], + ["Remove", ""], + ["Suspend", ""], + ["Remove Admin", ""], + ["Make Admin", ""], + ["Are you sure you want to remove this member from this organization?", ""], + ["Remove Member", ""], + ["Are you sure you want to make this member an admin? Admins can manage vaults, groups and permissions.", ""], + ["Are you sure you want to remove this member as admin?", ""], + ["Are you sure you want to suspend this member?", ""], + ["Suspend Member", ""], + ["Groups", ""], + ["Vaults", ""], + ["read", ""], + ["write", ""], + ["Owner", ""], + ["Admin", ""], + ["Suspended", ""], + ["Items", ""], + ["Orgs & Teams", ""], + ["New Organization", ""], + ["Settings", ""], + ["{0} Items", ""], + ["Move {0} To", ""], + ["No target vaults available!", ""], + ["Move Item", ""], + ["Move Items", ""], + ["Successfully created {0} invites!", ""], + ["Unsuspend", ""], + [ + "Are you sure you want to delete this organization? All associated vaults and the data within them will be lost! This action can not be undone.", + "" + ], + ["Delete Organization", ""], + ["Rename Organization", ""], + ["Company Name", ""], + ["Please enter a name!", ""], + [ + "Do you want to rotate this organizations cryptographic keys? All organization memberships will have to be reconfirmed but no data will be lost.", + "" + ], + [ + "The organizations cryptographic keys have been rotated successfully and membership confirmation requests for all members have been sent out.", + "" + ], + ["Members", ""], + [ + "This organization currently does not have an active subscription and has been put in \"frozen\" state as a result. While in this state, you won't be able to make any changes to members, groups or vaults of this organization.", + "" + ], + ["Update Subscription", ""], + ["New Group", ""], + ["New Vault", ""], + ["Subscription", ""], + ["Billing Info", ""], + ["Security", ""], + ["Rotate Cryptographic Keys", ""], + ["General", ""], + ["Change Organization Name", ""], + [ + "Organizations allow you to securely share passwords, documents and other data within your family, team or any other kind of group!", + "" + ], + ["Start Trial", ""], + ["Scan QR Code", ""], + ["Failed to scan QR code. Error: ", ""], + ["Please enter your email address and new master password.", ""], + ["New Master Password", ""], + ["WARNING: Weak Password!", ""], + ["Repeat Master Password", ""], + [ + "IMPORTANT, READ CAREFULLY: Padloc is designed in a way that makes it impossible for us to access the data encrypted in any of your vaults even if we wanted to. While this is essential to ensuring the security of your data, it also has the following implications:", + "" + ], + ["Any data stored in your private vault can not be recovered and will be permantently lost.", ""], + ["All your organization memberships will be suspended temporarily until confirmed by the organization owner.", ""], + ["All members of organizations you own will be suspended temporarily until confirmed by you.", ""], + ["Please enter a master password!", ""], + ["You didn't repeat your master password correctly. Try again!", ""], + [ + "The password you entered is weak which makes it easier for attackers to break the encryption used to protect your data. Try to use a longer password or include a variation of uppercase, lowercase and special characters as well as numbers!", + "" + ], + ["Choose Different Password", ""], + ["Use Anyway", ""], + ["WARNING: Weak Password", ""], + ["To complete the account recovery process, please enter the confirmation code sent to your email address!", ""], + ["Account recovery successful!", ""], + ["Report Errors", ""], + ["{0} Errors Detected", ""], + [ + "Padloc has registered {0} errors during your use of the app. These errors may not have any impact on functionality and can often be ignored, but reporting them may help us diagnose problems, identify possible failure modes and generally improve the stability of the app.", + "" + ], + ["Profile", ""], + ["Log Out", ""], + ["Change Master Password", ""], + ["Auto Lock", ""], + ["Lock Automatically", ""], + [" min", ""], + ["After", ""], + ["Enable Biometric Unlock", ""], + ["Import / Export", ""], + ["Import...", ""], + ["Export...", ""], + ["Support", ""], + ["Website", ""], + ["Contact Support", ""], + ["Danger Zone", ""], + ["Delete Account", ""], + ["Edit Profile", ""], + ["Do you really want to log out?", ""], + ["Please enter your current password!", ""], + ["Enter Current Password", ""], + ["Now choose a new master password!", ""], + ["Enter New Password", ""], + ["Please enter a password!", ""], + ["Please confirm your new password!", ""], + ["Repeat New Password", ""], + ["Master password changed successfully.", ""], + ["Please enter your master password to proceed.", ""], + [ + "Are you sure you want to delete this account? All associated vaults and the data within them will be lost and any active subscriptions will be canceled immediately. This action can not be undone!", + "" + ], + ["Are you sure you want to disable biometric unlock?", ""], + ["Welcome to Padloc! Let's get you started by creating an account for you.", ""], + [ + "Your email address serves as your username and allows us to get in touch with you. Don't worry, we would never send you any spam!", + "" + ], + ["Your Name", ""], + ["What should we call you?", ""], + ["Continue", ""], + ["Already have an account?", ""], + ["Sign In", ""], + ["You've Got Mail!", ""], + ["To verify your email address, please enter the confirmation code we sent to {0}.", ""], + ["Confirmation Code", ""], + ["Say hello to your", ""], + [ + "It's the last password you'll ever have to remember! Please memorize it and never reveal it to anyone (not even us)! We recommend writing it down on a piece of paper and storing it somewhere safe, at least until you have it safely memorized.", + "" + ], + ["[Tap To Reveal]", ""], + ["[Hover To Reveal]", ""], + [ + "This random passphrase was generated just for you and is designed to be both secure and easy to remember. Don't like it?", + "" + ], + ["Try Another One", ""], + ["Choose Your Own", ""], + ["An account with this email address already exists!", ""], + ["Change Email", ""], + ["We recommend using a randomly generated password that is both strong and easy to remember.", ""], + ["Keep This One", ""], + ["Generate Another", ""], + ["Choose My Own", ""], + ["Want A Different Master Password?", ""], + ["Choose Own Master Password", ""], + ["Resume Subscription", ""], + ["Cancel Subscription", ""], + ["Update Plan", ""], + ["Are you sure you want to downgrade to the Free Plan?", ""], + ["Downgrade", ""], + ["No Plan Selected", ""], + ["Unlimited", ""], + ["{0} / Year", ""], + ["Canceled ({0} days left)", ""], + ["Authentication Required", ""], + ["Inactive", ""], + ["Trialing ({0} days left)", ""], + ["Choose Plan", ""], + ["Complete Payment", ""], + ["Downgrade To Free Plan", ""], + ["Add Tag", ""], + ["Choose A Template", ""], + ["What kind of item you would like to add?", ""], + ["Invalid Code", ""], + ["Logged In As", ""], + ["Unlock", ""], + ["Wrong password! Please try again.", ""], + ["Logout / Switch Account", ""], + ["Forgot Password", ""], + ["Are you sure you want to log out of this account?", ""], + ["Biometric unlock expired. Complete setup to reeneable.", ""], + ["Biometric unlock failed! Reason: {0}", ""], + ["Failed To Unlock", ""], + ["Update", ""], + ["Storage limit exceeded!", ""], + ["Upload failed! Please try again!", ""], + ["Upload Attachment", ""], + ["Unkown File Type", ""], + ["Retry Upload", ""], + ["Upload", ""], + [ + "Are you sure you want to delete this vault? All the data stored in it will be lost! This action can not be undone.", + "" + ], + ["Delete Vault", ""], + ["Enter Vault Name", ""], + ["Username", ""], + ["Password", ""], + ["URL", ""], + ["Notes", ""], + ["Your session has expired. Please log in again!", ""], + ["A new update is ready to install! Do you want to install it now?", ""], + ["Install & Reload", ""], + ["Later", ""], + ["Date", ""], + ["Month", ""], + ["Credit Card Number", ""], + ["Phone Number", ""], + ["PIN", ""], + ["Two-Factor Token", ""], + ["Note", ""], + ["Other", ""], + ["Credit Card", ""], + ["Card Number", ""], + ["Card Owner", ""], + ["Valid Until", ""], + ["CVC", ""], + ["Bank Account", ""], + ["Account Owner", ""], + ["IBAN", ""], + ["BIC", ""], + ["Card PIN", ""], + ["WIFI Password", ""], + ["Passport", ""], + ["Full Name", ""], + ["Passport Number", ""], + ["Country", ""], + ["Birthdate", ""], + ["Birthplace", ""], + ["Issued On", ""], + ["Expires", ""], + ["Document", ""], + ["Custom", ""], + ["{0} on {1}", ""], + ["{0} Device", ""] +] diff --git a/packages/locale/res/translations/de.json b/packages/locale/res/translations/de.json index be5132c7..cda98eae 100644 --- a/packages/locale/res/translations/de.json +++ b/packages/locale/res/translations/de.json @@ -1,1574 +1,578 @@ [ - [ - "OK", - "OK" - ], - [ - "o f f l i n e", - "o f f l i n e" - ], - [ - "Could not find invite! Did you use the correct link?", - "Einladung nicht gefunden! Bitte stelle sicher, dass du die richtige URL verwendet hast!" - ], - [ - "Get Premium", - "Premium Kaufen" - ], - [ - "Cancel", - "Abbrechen" - ], - [ - "It looks like the app cannot connect to the Padloc servers right now, probably due to a missing internet connection. You can still access your vaults and even create or edit Vault Items but your changes won't be synchronized until you're back online.", - "Die App kann sich gerade nicht mit den Padloc Servern verbinden, vermutlich aufgrund einer fehlenden Internetverbindung. Du kannst weiterhin auf deine Tresore zugreifen und Einträge ändern oder erstellen aber deine Änderungen werden erst synchronisiert sobald du wieder online bist." - ], - [ - "You're Offline", - "Du Bist Offline" - ], - [ - "Do you want to enable biometric unlock for this device?", - "Willst du biometrisches Entsperren für dieses Gerät aktivieren?" - ], - [ - "Setup", - "Einrichten" - ], - [ - "Biometric Unlock", - "Biometrisches Entsperren" - ], - [ - "Biometric authentication failed! Canceling Setup.", - "Biometrische Authentifizierung fehlgeschlagen! Vorgang wird abgebrochen." - ], - [ - "Setup Failed", - "Einrichtung Fehlgeschlagen" - ], - [ - "Biometric unlock failed! Canceling Setup. (Reason: {0})", - "Biometrisches Entsperren fehlgeschlagen. Vorgang wird abgebrochen. (Grund: {0})" - ], - [ - "Please enter your master password!", - "Bitte geben Sie Ihr Master Passwort ein!" - ], - [ - "Enter Master Password", - "Master Passwort Eingeben" - ], - [ - "Wrong password! Please try again!", - "Falsches Passwort! Bitte versuchen Sie es erneut!" - ], - [ - "Biometric unlock activated successfully!", - "Biometrisches Entsperren wurde erfolgreich aktiviert!" - ], - [ - "Are you sure you want to delete this attachment?", - "Sind Sie sicher dass Sie diesen Anhang entfernen möchten?" - ], - [ - "Delete", - "Löschen" - ], - [ - "Delete Attachment", - "Anhang Löschen" - ], - [ - "Download failed!", - "Download fehlgeschlagen!" - ], - [ - "Do you want to save this file to your disk? WARNING: Doing this will leave the file exposed and unprotected on your harddrive!", - "Wist du diese Datei wirklich lokal speichern? WARNUNG: Die Datei liegt dann unverschlüsselt auf deiner Festplatte und kann potentiell von anderen geöffnet werden!" - ], - [ - "Save", - "Speichern" - ], - [ - "Save To Disk", - "Auf Festplatte Speichern" - ], - [ - "Edit Name", - "Namen Bearbeiten" - ], - [ - "Attachment Name", - "Name des Anhangs" - ], - [ - "Please enter an attachment name!", - "Bitten gib einen Name für diesen Anhang ein!" - ], - [ - "Unknown File Type", - "Unbekannter Dateityp" - ], - [ - "downloading... {0}/{1}", - "wird heruntergeladen... {0}/{1}" - ], - [ - "Unnamed", - "Unbenannt" - ], - [ - "uploading... {0}/{1}", - "wird hochgeladen {0}/{1}" - ], - [ - "Failed to upload!", - "Upload Fehlgeschlagen!" - ], - [ - "Failed to download! Click to try again.", - "Download Fehlgeschlagen! Bitte versuch es noch einmal." - ], - [ - "Update Billing Info", - "Rechnungsdaten Updaten" - ], - [ - "Select A Country", - "Wähle Ein Land" - ], - [ - "To update your billing info and payment method, please log in through our website (found under \"Settings\") or contact us at ", - "" - ], - [ - "Payment Details", - "Zahlungsdetails" - ], - [ - "Billing Address", - "Rechnungsadresse" - ], - [ - "Billing Email", - "Rechnungsemail" - ], - [ - "Name", - "Name" - ], - [ - "Address", - "Adresse" - ], - [ - "Postal Code", - "Postleitzahl" - ], - [ - "City", - "Stadt" - ], - [ - "Tax Info", - "Steuer" - ], - [ - "This is a business", - "Dies ist ein Unternehmen" - ], - [ - "Tax ID", - "Steuernummer" - ], - [ - "Coupon Code", - "Gutscheincode" - ], - [ - "Add Later", - "Später Hinzufügen" - ], - [ - "Something went wrong. Please try again later!", - "Es ist ein Fehler aufgetreten. Bitte versuche es später noch einmal!" - ], - [ - "Add Payment Method", - "Zahlungsmittel Hinzufügen" - ], - [ - "per user / month", - "pro Nutzer / Monat" - ], - [ - "USD, billed annually", - "USD, jährlich abgerechnet" - ], - [ - "Try For Free", - "Kostenlos Testen" - ], - [ - "Please enter at least one email address!", - "Bitten gib deine Emailadresse ein!" - ], - [ - "You have entered too many email addresses! Please delete some before submitting!", - "Du hast zu viele Emailadressen eingegeben! Bitte lösche einige before vor dem Abschicken!" - ], - [ - "Some of the emails you entered appear to be invalid!", - "Einige der eingegebenen Emailadressen scheinen ungültig zu sein!" - ], - [ - "Something went wrong! Please try again later!", - "Es ist ein Fehler aufgetreten. Bitte versuch es später noch einmal!" - ], - [ - "Invite New Members", - "Neue Nutzer Einladen" - ], - [ - "Please enter up to {0} email addresses of the persons you would like to invite, separated by spaces or commas!", - "Bitte gib bis zu {0} Emailadressen ein für die Personen die du einladen möchtest, getrennt durch Leerzeichen oder Kommas." - ], - [ - "Enter Email Address", - "Emailadresse Eingeben" - ], - [ - "Submit", - "Abschicken" - ], - [ - "New Vault Item", - "Neuer Tresoreintrag" - ], - [ - "Item Name", - "Name" - ], - [ - "Template", - "Vorlage" - ], - [ - "Vault", - "Tresor" - ], - [ - "Create & Edit", - "Erstellen & Bearbeiten" - ], - [ - "You have reached the maximum number of items for this account. Upgrade to Premium to get unlimited items for your private vault!", - "Du hast die maximale Anzahl and Einträgen für diesen Account erreicht. Bitte upgrade auf Premium um unbegrenzte Einträge für deinen persönlichen Tresor freizuschalten!" - ], - [ - "You have reached the maximum number of items for this account!", - "Du hast die maximale Anzahl and Einträgen für diesen Account erreicht!" - ], - [ - "Please enter an organization name!", - "Bitten geben einen Organisationsnamen ein!" - ], - [ - "Free For {0} Days", - "{0} Tage Kostenlos" - ], - [ - "then", - "dann" - ], - [ - "per month", - "pro Monat" - ], - [ - "{0} min", - "{0} min" - ], - [ - "{0} max", - "{0} max" - ], - [ - "Seats", - "Nutzer" - ], - [ - "Add Billing Info", - "Zahlungsdaten Hinzufügen" - ], - [ - "Create Organization", - "Organisation Erstellen" - ], - [ - "Organization Name", - "Organisationsname" - ], - [ - "Create", - "Erstellen" - ], - [ - "Export Data", - "Daten Exportieren" - ], - [ - "Target Vault", - "Zieltresor" - ], - [ - "Format", - "Format" - ], - [ - "WARNING: Exporting to CSV format will save your data without encyryption of any kind which means it can be read by anyone. We strongly recommend exporting your data as a secure, encrypted file, instead!", - "WARNUNG: Beim Export im CSV-Format werden deine Daten unverschlüsselt gespeichert und können potentiell von jedem gelesen werden. Wir empfehlen deshalb Ihre Daten nur als verschlüsselte Datei zu exportieren!" - ], - [ - "Export {0} Items", - "{0} Einträge Exportieren" - ], - [ - "Please choose a password to protect this backup with!", - "Bitten wähle ein Passwort zum Sichern des Backups!" - ], - [ - "Choose Password", - "Password Wählen" - ], - [ - "Please choose a password!", - "Bitte wähle ein Passwort!" - ], - [ - "Please repeat the password!", - "Bitte wiederholen Sie das Passwort!" - ], - [ - "Password not repeated correctly!", - "Passwort nicht richtig wiederholt!" - ], - [ - "Choose A Field Type", - "Wählen Sie einen Feldart" - ], - [ - "What kind of field you would like to add?", - "Welche Art von Feld möchten Sie hinzufügen?" - ], - [ - "Enter Notes Here", - "Hier kannst du deine Notizen eingeben." - ], - [ - "Enter Secret", - "Code Eingeben" - ], - [ - "Enter Password", - "Password Eingeben" - ], - [ - "Enter Value Here", - "Wert Eingeben" - ], - [ - "Enter Field Name", - "Feldname" - ], - [ - "Dash", - "Bindestrich" - ], - [ - "Underscore", - "Unterstrich" - ], - [ - "Slash", - "Querstrich" - ], - [ - "Space", - "Leerzeichen" - ], - [ - "Generate Password", - "Passwort Generieren" - ], - [ - "passphrase", - "Zufällige Wörter" - ], - [ - "random string", - "Zufällige Zeichen" - ], - [ - "Word Separator", - "Worttrenner" - ], - [ - "Language", - "Sprache" - ], - [ - "words", - "Wörter" - ], - [ - "length", - "Länge" - ], - [ - "Use", - "Anwenden" - ], - [ - "Discard", - "Verwerfen" - ], - [ - "Are you sure you want to delete this group?", - "Bist du sicher dass du diese Gruppe löschen möchtest?" - ], - [ - "Delete Group", - "Gruppe Löschen" - ], - [ - "Type 'DELETE' to confirm", - "Geben sie das Wort 'DELETE' ein." - ], - [ - "Enter Group Name", - "Gruppennamen Eingeben" - ], - [ - "Search...", - "Suche..." - ], - [ - "Import Data", - "Daten Importieren" - ], - [ - "IMPORTANT: Before importing, please make sure that your CSV data is structured according to Padlocks specific requirements!", - "WICHTIG: Bevor du die CSV-Datei importierst, stelle bitte sicher dass sie den Anforderungen entspricht!" - ], - [ - "Learn More", - "Mehr Erfahren" - ], - [ - "Import {0} Items", - "{0} Einträge Importieren" - ], - [ - "This file is protected by a password.", - "Diese Datei ist Passwortgeschützt." - ], - [ - "Wrong Password", - "Falsches Passwort" - ], - [ - "The number of imported items exceeds your remaining quota. Upgrade to Premium to get unlimited items for your private vault!", - "Du hast die maximale Anzahl an Einträgen überschritten. Bitte upgrade auf Premium um unbegrenzte Einträge zu erhalten!" - ], - [ - "The number of imported items exceeds your remaining quota.", - "Die Anzahl der importierten Einträge überschreitet die maximale Anzahl an Einträgen." - ], - [ - "Successfully imported {0} items.", - "{0} Einträge wurden erfolgreich importiert." - ], - [ - "This invite has expired", - "Diese Einladung ist abgelaufen." - ], - [ - "Accepted", - "Angenommen" - ], - [ - "expires {0}", - "läuft ab {0}" - ], - [ - "Confirm Membership", - "Mitgliedschaft Bestätigen" - ], - [ - "Organization Invite", - "Einladung" - ], - [ - "Please wait for an admin to complete the process. You will be notified as soon as you receive access.", - "Bitte warte darauf dass ein Administrator deine Mitgliedschaft bestätigt. Die wirst benachrichtigt sobald du Zugriff erhältst." - ], - [ - "Enter Confirmation Code", - "Bestätigungscode Eingeben" - ], - [ - "If you haven't received the confirmation code yet, please ask the organization owner to provide it to you!", - "Falls du den Bestätigungscode noch nicht erhalten hast, erfrage ihn von der Besitzer der Organisation!" - ], - [ - "They will also need the following confirmation code, which you should communicate to them separately:", - "Der folgende Bestätigungscode ist für die Annahme der Einladung erforderlich und sollte der Person separat mitgeteilt werden:" - ], - [ - "Resend", - "Erneut Versenden" - ], - [ - "Please enter a confirmation code!", - "Bitten gib den Bestätigungscode ein!" - ], - [ - "You have successfully accepted the invite. You'll be notified once you've been granted access.", - "Du hast die Einladung erfolgreich angenommen und wirst benachrichtigt, sobald deine Mitgliedschaft bestätigt ist." - ], - [ - "Wrong confirmation code. Please try again!", - "Falscher Bestätigungscode. Bitte versuche es noch einmal!" - ], - [ - "expired", - "abgelaufen" - ], - [ - "accepted", - "angenommen" - ], - [ - "{0}", - "{0}" - ], - [ - "Confirm", - "Bestätigen" - ], - [ - "Confirmation Code:", - "Bestätigungscode:" - ], - [ - "Upgrade to Premium now and get 1GB of encrypted file storage!", - "Jetzt auf Premium upgraden und 1GB verschlüsselten Datenspeicher freischalten!" - ], - [ - "Enter Item Name", - "Name des Eintrags" - ], - [ - "Field", - "Feld" - ], - [ - "Attachment", - "Anhang" - ], - [ - "Move", - "Verschieben" - ], - [ - "by {0}", - "von {0}" - ], - [ - "Are you sure you want to delete this item?", - "Bist du sicher dass du diesen Eintrag löschen möchtest?" - ], - [ - "Items with attachments cannot be moved!", - "Einträge mit Anhängen können nicht verschoben werden!" - ], - [ - "The selected file is too large! Only files of up to 5 MB are supported.", - "Diese Datei ist zu groß! Das Maximum ist 5 MB." - ], - [ - "File uploaded successfully!", - "Datei erfolgreich hochgeladen!" - ], - [ - "Favorites", - "Favoriten" - ], - [ - "Recently Used", - "Kürzlich Benutzt" - ], - [ - "Attachments", - "Anhänge" - ], - [ - "All Items", - "Alle Einträge" - ], - [ - "My Vault", - "Mein Tresor" - ], - [ - "Tags", - "Tags" - ], - [ - "You don't have any tags yet.", - "Du hast noch keine Tags." - ], - [ - "Your search did not match any items.", - "Deine Suche hat keine Treffer ergeben." - ], - [ - "This vault does not have any items yet.", - "Dieser Tresor enthält noch keine Einträge." - ], - [ - "You don't have any attachments yet.", - "Du hast noch keine Anhänge." - ], - [ - "You don't have any favorites yet.", - "Du hast noch keine Favoriten." - ], - [ - "You don't have any recently used items!", - "Du hast noch keine kürzlich benutzten Einträge!" - ], - [ - "You don't have any items yet.", - "Du hast noch keine Einträge." - ], - [ - "Type To Search", - "Suchen..." - ], - [ - "{0} items selected", - "{0} Einträge selektiert" - ], - [ - "Some items in your selection are from Vaults you don't have write access to and cannot be deleted. Do you want to proceed deleting the other items?", - "Einige der selektierten Einträge sind aus Tresoren auf die du keinen Schreibzugriff hast und können nicht gelöscht werden. Möchtest du die restlichen Einträge trotzdem löschen?" - ], - [ - "Yes", - "Ja" - ], - [ - "No", - "Nein" - ], - [ - "Are you sure you want to delete these items? This action can not be undone!", - "Bist du sicher dass du die Einträge löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden!" - ], - [ - "Delete {0} Items", - "{0} Einträge Löschen" - ], - [ - "Some items in your selection have attachments and cannot be moved. Do you want to proceed moving the other items?", - "Einige der selektierten Einträge haben Anhänge und können nicht verschoben werden. Möchtest du die restlichen Einträge trotzdem verschieben? " - ], - [ - "Some items in your selection are from Vaults you don't have write access to and cannot be moved. Do you want to proceed moving the other items?", - "Einige der selektierten Einträge sind aus Tresoren auf die du keinen Schreibzugriff hast und können nicht verschoben werden. Möchtest du die restlichen Einträge trotzdem verschieben?" - ], - [ - "No Name", - "Kein Name" - ], - [ - "copied", - "kopiert" - ], - [ - "No Fields", - "Keine Felder" - ], - [ - "This item has no fields.", - "Dieser Eintrag hat keine Felder" - ], - [ - "Email Address", - "Emailadresse" - ], - [ - "Master Password", - "Masterpasswort" - ], - [ - "Login", - "Einloggen" - ], - [ - "New to Padloc?", - "Neu bei Padloc?" - ], - [ - "Sign Up Now", - "Jetzt Registrieren" - ], - [ - "Please enter a valid email address!", - "Bitte gib eine gültige Emailadresse ein!" - ], - [ - "Please enter the confirmation code sent to your email address to proceed!", - "Bitte gib den Bestätigungscode ein, der an deine Emailadresse versandt wurde!" - ], - [ - "One Last Step!", - "Ein Letzter Schritt!" - ], - [ - "Enter Verification Code", - "Bestätigungscode Eingeben" - ], - [ - "Maximum number of tries exceeded! Please resubmit and try again!", - "Maximale Anzahl an Versuchen überschritten! Bitte versuche es später erneut!" - ], - [ - "Wrong username or password. Please try again!", - "Falscher Benutzername oder Password. Bitte versuche es erneut!" - ], - [ - "Can't remember your master password?", - "Du kannst dich nicht an dein Masterpasswort erinnern?" - ], - [ - "Recover Account", - "Account Wiederherstellen" - ], - [ - "Try Again", - "Erneut Versuchen" - ], - [ - "An account with this email address does not exist!", - "Es existiert kein Account mit dieser Emailadresse!" - ], - [ - "Sign Up", - "Anmelden" - ], - [ - "Remove", - "Entfernen" - ], - [ - "Suspend", - "Sperren" - ], - [ - "Remove Admin", - "Als Admin Entfernen" - ], - [ - "Make Admin", - "Zum Admin Machen" - ], - [ - "Are you sure you want to remove this member from this organization?", - "Bist du sicher dass du diesen Nutzer von der Organisation entfernen möchtest?" - ], - [ - "Remove Member", - "Nutzer Entfernen" - ], - [ - "Are you sure you want to make this member an admin? Admins can manage vaults, groups and permissions.", - "Bist du sicher dass du diesen Nutzer zum Admin machen möchtest? Admins können Tresore, Gruppen und Zugriffsberechtigungen verwalten." - ], - [ - "Are you sure you want to remove this member as admin?", - "Bist du sicher dass du diesen Nutzer als Admin entfernen möchtest?" - ], - [ - "Are you sure you want to suspend this member?", - "Bist du sicher dass du diesen Nutzer vorübergehend sperren möchtest?" - ], - [ - "Suspend Member", - "Nutzer Vorübergehend Sperren" - ], - [ - "Groups", - "Gruppen" - ], - [ - "Vaults", - "Tresore" - ], - [ - "read", - "lesen" - ], - [ - "write", - "schreiben" - ], - [ - "Owner", - "Besitzer" - ], - [ - "Admin", - "Admin" - ], - [ - "Suspended", - "Gesperrt" - ], - [ - "Items", - "Einträge" - ], - [ - "Orgs & Teams", - "Orgs & Teams" - ], - [ - "New Organization", - "Neue Organisation" - ], - [ - "Settings", - "Einstellungen" - ], - [ - "{0} Items", - "{0} Einträge" - ], - [ - "Move {0} To", - "{0} Verschieben Nach" - ], - [ - "No target vaults available!", - "Keine anderen Tresore verfügbar!" - ], - [ - "Move Item", - "Eintrag Verschieben" - ], - [ - "Move Items", - "Einträge Verschieben" - ], - [ - "Successfully created {0} invites!", - "Es wurden {0} Einladungen erfolgreich versendet!" - ], - [ - "Unsuspend", - "Entsperren" - ], - [ - "Are you sure you want to delete this organization? All associated vaults and the data within them will be lost! This action can not be undone.", - "Bist du sicher dass du diese Organisation löschen möchtest? Alle verknüpften Tresore und die darin enthaltenen Daten gehen dabei verloren und können nicht wiederhergestellt werden!" - ], - [ - "Delete Organization", - "Organisation Löschen" - ], - [ - "Rename Organization", - "Organisation Umbenennen" - ], - [ - "Company Name", - "Organisationsname" - ], - [ - "Please enter a name!", - "Bitte gib einen Namen ein!" - ], - [ - "Do you want to rotate this organizations cryptographic keys? All organization memberships will have to be reconfirmed but no data will be lost.", - "Willst du die kryptographischen Schlüssel für diese Organisation durchwechseln? Dies erfordert zwar die erneute Bestätigung aller Mitgliedschaften führt aber zu keinen Datenverlust." - ], - [ - "The organizations cryptographic keys have been rotated successfully and membership confirmation requests for all members have been sent out.", - "Die kryptographischen Schlüssel der Organisation wurden erfolgreich durchgewechselt und Anfragen zur Bestätigung der Mitgliedschaft an alle Mitglieder versandt." - ], - [ - "Members", - "Mitglieder" - ], - [ - "This organization currently does not have an active subscription and has been put in \"frozen\" state as a result. While in this state, you won't be able to make any changes to members, groups or vaults of this organization.", - "Diese Organisation hat momentan kein aktives Abonnement und wurde deshalb eingefroren. Du kannst also momentan keine Änderungen an Mitgliedschaften, Gruppen oder Tresoren dieser Organisation machen." - ], - [ - "Update Subscription", - "Abonnement Anpassen" - ], - [ - "New Group", - "Neue Gruppe" - ], - [ - "New Vault", - "Neuer Tresor" - ], - [ - "Subscription", - "Abonnement" - ], - [ - "Billing Info", - "Zahlungsdetails" - ], - [ - "Security", - "Sicherheit" - ], - [ - "Rotate Cryptographic Keys", - "Kryptgraphische Schlüssel Durchwechseln" - ], - [ - "General", - "Allgemein" - ], - [ - "Change Organization Name", - "Organisationsnamen Ändern" - ], - [ - "Organizations allow you to securely share passwords, documents and other data within your family, team or any other kind of group!", - "Organisationen ermöglichen das sichere teilen von Passwörtern, Dokumenten und anderen Daten mit deiner Familie, Team oder anderen Gruppen!" - ], - [ - "Start Trial", - "Testphase Starten" - ], - [ - "Scan QR Code", - "QR-Code Scannen" - ], - [ - "Failed to scan QR code. Error: ", - "QR-Code wurde nicht erkannt. Fehler: " - ], - [ - "Please enter your email address and new master password.", - "Bitte gib deine Emailadresse und ein neues Masterpasswort ein." - ], - [ - "New Master Password", - "Neues Master Passwort" - ], - [ - "WARNING: Weak Password!", - "WARNUNG: Schwaches Passwort!" - ], - [ - "Repeat Master Password", - "Passwort Wiederholen" - ], - [ - "IMPORTANT, READ CAREFULLY: Padloc is designed in a way that makes it impossible for us to access the data encrypted in any of your vaults even if we wanted to. While this is essential to ensuring the security of your data, it also has the following implications:", - "WICHTIG, BITTE SORGFÄLTIG LESEN: Um die Sicherheit deiner Daten zu gewährleisten wurde Padloc so entworfen dass es für uns unmöglich ist auf die verschlüsselten Daten in deinen Tresoren zuzugreifen. Dies hat folgende Auswirkungen:" - ], - [ - "Any data stored in your private vault can not be recovered and will be permantently lost.", - "Alle Daten in deinem persönlichen Tresor können nicht wiederhergestellt werden und gehen verloren." - ], - [ - "All your organization memberships will be suspended temporarily until confirmed by the organization owner.", - "Alle Organisationsmitgliedschaften werden vorübergehend gesperrt und müssen vom Organsiationsbesitzer erneut bestätigt werden." - ], - [ - "All members of organizations you own will be suspended temporarily until confirmed by you.", - "Alle Mitglieder von Organisation die du erstellt hast werden vorübergehen gesperrt und müssen von dir erneut bestätigt werden." - ], - [ - "Please enter a master password!", - "Bitte gib ein Masterpasswort ein!" - ], - [ - "You didn't repeat your master password correctly. Try again!", - "Du hast dein Masterpasswort nicht richtig wiederholt. Bitte versuche es erneut!" - ], - [ - "The password you entered is weak which makes it easier for attackers to break the encryption used to protect your data. Try to use a longer password or include a variation of uppercase, lowercase and special characters as well as numbers!", - "Das Passwort, dass du gewählt hast ist schwach und stellt womöglich einen unzureichenden Schutz für deine Daten dar. Versuche es mit einem längeren Passwort und verwende eine Mischung aus Groß- und Kleinbuchstaben, Sonderzeichen und Zahlen!" - ], - [ - "Choose Different Password", - "Anderes Passwort Wählen" - ], - [ - "Use Anyway", - "Trotzdem Verwenden" - ], - [ - "WARNING: Weak Password", - "WARNUNG: Schwaches Passwort" - ], - [ - "To complete the account recovery process, please enter the confirmation code sent to your email address!", - "Um die Wiederherstellung deines Accounts abzuschließen gib bitte den Bestätigungscode ein der an deine Emailadresse verschickt wurde!" - ], - [ - "Account recovery successful!", - "Account erfolgreich wiederhergestellt!" - ], - [ - "Report Errors", - "Fehler Melden" - ], - [ - "{0} Errors Detected", - "{0} Fehler Erkannt" - ], - [ - "Padloc has registered {0} errors during your use of the app. These errors may not have any impact on functionality and can often be ignored, but reporting them may help us diagnose problems, identify possible failure modes and generally improve the stability of the app.", - "Padloc hat {0} Fehler beim Ausführen der App erkannt. Diese Fehler haben womöglich keinen Einfluss auf die Funktionalität der App und können oft ignoriert werden. Das Melden der Fehler kann uns jedoch dabei helfen, mögliche Probleme zu identifizieren und die Stabilität der App zu verbessern." - ], - [ - "Profile", - "Profil" - ], - [ - "Log Out", - "Abmelden" - ], - [ - "Change Master Password", - "Masterpasswort Ändern" - ], - [ - "Auto Lock", - "Automatische Sperrung" - ], - [ - "Lock Automatically", - "Automatisch Sperren" - ], - [ - " min", - " min" - ], - [ - "After", - "Nach" - ], - [ - "Enable Biometric Unlock", - "Biometrisches Entsperren Aktivieren" - ], - [ - "Import / Export", - "Import / Export" - ], - [ - "Import...", - "Importieren..." - ], - [ - "Export...", - "Exportieren..." - ], - [ - "Support", - "Hilfe" - ], - [ - "Website", - "Webseite" - ], - [ - "Contact Support", - "Support Kontaktieren" - ], - [ - "Danger Zone", - "Gefahrenzone" - ], - [ - "Delete Account", - "Account Löschen" - ], - [ - "Edit Profile", - "Profil Bearbeiten" - ], - [ - "Do you really want to log out?", - "Bist du sicher dass du dich abmelden möchtest?" - ], - [ - "Please enter your current password!", - "Bitte gib dein aktuelles Passwort ein!" - ], - [ - "Enter Current Password", - "Aktuelles Passwort Eingeben" - ], - [ - "Now choose a new master password!", - "Wähle nun ein neues Masterpasswort!" - ], - [ - "Enter New Password", - "Neues Passwort Eingeben" - ], - [ - "Please enter a password!", - "Bitte gibt ein Passwort ein!" - ], - [ - "Please confirm your new password!", - "Bitte bestätige dein neues Passwort!" - ], - [ - "Repeat New Password", - "Neues Passwort Wiederholen" - ], - [ - "Master password changed successfully.", - "Masterpasswort erfolgreich geändert." - ], - [ - "Please enter your master password to proceed.", - "Bitte gib dein Masterpasswort ein um fortzufahren." - ], - [ - "Are you sure you want to delete this account? All associated vaults and the data within them will be lost and any active subscriptions will be canceled immediately. This action can not be undone!", - "Bist du sicher, dass du diesen Account löschen möchtest? Alle verknüpften Tresore und die darin enthaltenen Daten gehen dabei verloren und dein aktuelles Abonnement wird unmittelbar gekündigt. Diese Aktion kann nicht rückgängig gemacht werden!" - ], - [ - "Are you sure you want to disable biometric unlock?", - "Bist du sicher dass du biometrisches Entsperren deaktivieren möchtest?" - ], - [ - "Welcome to Padloc! Let's get you started by creating an account for you.", - "Willkommen bei Padloc! Bevor du loslegen kannst müssen wir zunächst einen Account für dich erstellen." - ], - [ - "Your email address serves as your username and allows us to get in touch with you. Don't worry, we would never send you any spam!", - "Deine Emailadresse dient als Benutzername und als Mittel der Kontaktaufnahme. Keine Sorge, wir werden niemals Spam and dich versenden!" - ], - [ - "Your Name", - "Dein Name" - ], - [ - "What should we call you?", - "Wie sollen wir dich nennen?" - ], - [ - "Continue", - "Weiter" - ], - [ - "Already have an account?", - "Du hast bereits einen Account?" - ], - [ - "Sign In", - "Einloggen" - ], - [ - "You've Got Mail!", - "Sie haben Post!" - ], - [ - "To verify your email address, please enter the confirmation code we sent to {0}.", - "Um Ihre Emailadresse zu verifizieren, geben Sie bitte den Bestätigungscode ein, den wir an {0} gesendet haben." - ], - [ - "Confirmation Code", - "Bestätigungscode" - ], - [ - "Say hello to your", - "Sag Hallo zu deinem" - ], - [ - "It's the last password you'll ever have to remember! Please memorize it and never reveal it to anyone (not even us)! We recommend writing it down on a piece of paper and storing it somewhere safe, at least until you have it safely memorized.", - "Das letzte Passwort dass du dir je merken musst! Merke es dir gut und verrate es niemandem (auch nicht uns)! Wir empfehlen es auf ein Blatt Papier zu schreiben und an einem sicheren Ort zu verfahren, zumindest so lange bis du es sicher im Gedächtnis hast!" - ], - [ - "[Tap To Reveal]", - "[Zum Anzeigen Antippen]" - ], - [ - "[Hover To Reveal]", - "[Zum Anzeigen Maus Hier Bewegen]" - ], - [ - "This random passphrase was generated just for you and is designed to be both secure and easy to remember. Don't like it?", - "Diese zufällige Wortfolge wurde für speziell für dich generiert und ist so gewählt dass sie sowohl sicher als auch leicht zu merken ist. Gefällt dir nicht?" - ], - [ - "Try Another One", - "Neu Generieren" - ], - [ - "Choose Your Own", - "Eigenes Wählen" - ], - [ - "An account with this email address already exists!", - "Ein Account mit dieser Emailadresse existiert bereits!" - ], - [ - "Change Email", - "Emailadresse Ändern" - ], - [ - "We recommend using a randomly generated password that is both strong and easy to remember.", - "Wir empfehlen ein zufällig generiertes Passwort zu wählen das sowohl sicher als auch leicht zu merken ist." - ], - [ - "Keep This One", - "Passwort Beibehalten" - ], - [ - "Generate Another", - "Anderes Generieren" - ], - [ - "Choose My Own", - "Eigenes Passwort Wählen" - ], - [ - "Want A Different Master Password?", - "Du willst ein anderes Masterpasswort?" - ], - [ - "Choose Own Master Password", - "Eigenes Masterpasswort Wählen" - ], - [ - "Resume Subscription", - "Abonnement Wiederaufnehmen" - ], - [ - "Cancel Subscription", - "Abonnement Kündigen" - ], - [ - "Update Plan", - "Packet Ändern" - ], - [ - "Are you sure you want to downgrade to the Free Plan?", - "Bist du sicher dass du auf das Kostenlos Packet downgraden möchtest?" - ], - [ - "Downgrade", - "Downgraden" - ], - [ - "No Plan Selected", - "Kein Packet Gewählt" - ], - [ - "Unlimited", - "Unbegrenzt" - ], - [ - "{0} / Year", - "{0} / Jahr" - ], - [ - "Canceled ({0} days left)", - "Gekündigt ({0} Tage übrig)" - ], - [ - "Authentication Required", - "Authentifizierung Benötigt" - ], - [ - "Inactive", - "Pausiert" - ], - [ - "Trialing ({0} days left)", - "Testphase ({0} Tage übrig)" - ], - [ - "Choose Plan", - "Packet Wählen" - ], - [ - "Complete Payment", - "Zahlung Abschließen" - ], - [ - "Downgrade To Free Plan", - "Packet Downgraden" - ], - [ - "Add Tag", - "Tag Hinzuf." - ], - [ - "Choose A Template", - "Wähle Eine Vorlage" - ], - [ - "What kind of item you would like to add?", - "Welche Art von Eintrag möchtest du erstellen?" - ], - [ - "Invalid Code", - "Ungültiger Code" - ], - [ - "Logged In As", - "Eingeloggt Als" - ], - [ - "Unlock", - "Entsperren" - ], - [ - "Wrong password! Please try again.", - "Falsches Passwort! Bitte versuche es erneut." - ], - [ - "Logout / Switch Account", - "Abmelden / Account Wechseln" - ], - [ - "Forgot Password", - "Passwort Vergessen" - ], - [ - "Are you sure you want to log out of this account?", - "Bist du sicher dass du dich von diesem Account abmelden möchtest?" - ], - [ - "Biometric unlock expired. Complete setup to reeneable.", - "Biometrisches Entsperren Abgelaufen. Bitte richte es erneut ein." - ], - [ - "Biometric unlock failed! Reason: {0}", - "Biometrisches Entsperren fehlgeschlagen! Grund: {0}" - ], - [ - "Failed To Unlock", - "Entsperren Fehlgeschlagen" - ], - [ - "Update", - "Updaten" - ], - [ - "Storage limit exceeded!", - "Speicherlimit überschritten!" - ], - [ - "Upload failed! Please try again!", - "Upload fehlgeschlagen! Bitte versuche es erneut!" - ], - [ - "Upload Attachment", - "Anhang Hochladen" - ], - [ - "Unkown File Type", - "Unbekannter Dateityp" - ], - [ - "Retry Upload", - "Erneut Versuchen" - ], - [ - "Upload", - "Upload" - ], - [ - "Are you sure you want to delete this vault? All the data stored in it will be lost! This action can not be undone.", - "Bist du sicher dass du diesen Tresor löschen möchtest? Alle darin gespeicherten Daten gehen dabei verloren! Diese Aktion kann nicht rückgängig gemacht werden!" - ], - [ - "Delete Vault", - "Tresor Löschen" - ], - [ - "Enter Vault Name", - "Tresornamen Eingeben" - ], - [ - "Username", - "Benutzername" - ], - [ - "Password", - "Passwort" - ], - [ - "URL", - "URL" - ], - [ - "Notes", - "Notizen" - ], - [ - "Your session has expired. Please log in again!", - "Deine Sitzung ist abgelaufen. Bitte melde dich erneut an!" - ], - [ - "A new update is ready to install! Do you want to install it now?", - "Eine neue Version ist verfügbar! Willst du diese jetzt installieren?" - ], - [ - "Install & Reload", - "Installieren" - ], - [ - "Later", - "Später" - ], - [ - "Date", - "Datum" - ], - [ - "Month", - "Monat" - ], - [ - "Credit Card Number", - "Kreditkartennummer" - ], - [ - "Phone Number", - "Telefonnummer" - ], - [ - "PIN", - "PIN" - ], - [ - "2FA Token", - "2FA-Code" - ], - [ - "Note", - "Notiz" - ], - [ - "Other", - "Sonstiges" - ], - [ - "Credit Card", - "Kreditkarte" - ], - [ - "Card Number", - "Kartennummer" - ], - [ - "Card Owner", - "Karteninhaber" - ], - [ - "Valid Until", - "Gültig Bis" - ], - [ - "CVC", - "Sicherheitscode" - ], - [ - "Bank Account", - "Bankkonto" - ], - [ - "Account Owner", - "Kontoinhaber" - ], - [ - "IBAN", - "IBAN" - ], - [ - "BIC", - "BIC" - ], - [ - "Card PIN", - "Karten-PIN" - ], - [ - "WIFI Password", - "WLAN-Passwort" - ], - [ - "Passport", - "Reisepass" - ], - [ - "Full Name", - "Vor- und Zuname" - ], - [ - "Passport Number", - "Reisepassnummer" - ], - [ - "Country", - "Land" - ], - [ - "Birthdate", - "Geburtstag" - ], - [ - "Birthplace", - "Geburtsort" - ], - [ - "Issued On", - "Ausstellungsdatum" - ], - [ - "Expires", - "Verfallsdatum" - ], - [ - "Document", - "Dokument" - ], - [ - "Custom", - "Benutzerdefiniert" - ], - [ - "{0} on {1}", - "{0} am {1}" - ], - [ - "{0} Device", - "{0} Gerät" - ] + ["OK", "OK"], + ["o f f l i n e", "o f f l i n e"], + [ + "Could not find invite! Did you use the correct link?", + "Einladung nicht gefunden! Bitte stelle sicher, dass du die richtige URL verwendet hast!" + ], + ["Get Premium", "Premium Kaufen"], + ["Cancel", "Abbrechen"], + [ + "It looks like the app cannot connect to the Padloc servers right now, probably due to a missing internet connection. You can still access your vaults and even create or edit Vault Items but your changes won't be synchronized until you're back online.", + "Die App kann sich gerade nicht mit den Padloc Servern verbinden, vermutlich aufgrund einer fehlenden Internetverbindung. Du kannst weiterhin auf deine Tresore zugreifen und Einträge ändern oder erstellen aber deine Änderungen werden erst synchronisiert sobald du wieder online bist." + ], + ["You're Offline", "Du Bist Offline"], + [ + "Do you want to enable biometric unlock for this device?", + "Willst du biometrisches Entsperren für dieses Gerät aktivieren?" + ], + ["Setup", "Einrichten"], + ["Biometric Unlock", "Biometrisches Entsperren"], + [ + "Biometric authentication failed! Canceling Setup.", + "Biometrische Authentifizierung fehlgeschlagen! Vorgang wird abgebrochen." + ], + ["Setup Failed", "Einrichtung Fehlgeschlagen"], + [ + "Biometric unlock failed! Canceling Setup. (Reason: {0})", + "Biometrisches Entsperren fehlgeschlagen. Vorgang wird abgebrochen. (Grund: {0})" + ], + ["Please enter your master password!", "Bitte geben Sie Ihr Master Passwort ein!"], + ["Enter Master Password", "Master Passwort Eingeben"], + ["Wrong password! Please try again!", "Falsches Passwort! Bitte versuchen Sie es erneut!"], + ["Biometric unlock activated successfully!", "Biometrisches Entsperren wurde erfolgreich aktiviert!"], + ["Are you sure you want to delete this attachment?", "Sind Sie sicher dass Sie diesen Anhang entfernen möchten?"], + ["Delete", "Löschen"], + ["Delete Attachment", "Anhang Löschen"], + ["Download failed!", "Download fehlgeschlagen!"], + [ + "Do you want to save this file to your disk? WARNING: Doing this will leave the file exposed and unprotected on your harddrive!", + "Wist du diese Datei wirklich lokal speichern? WARNUNG: Die Datei liegt dann unverschlüsselt auf deiner Festplatte und kann potentiell von anderen geöffnet werden!" + ], + ["Save", "Speichern"], + ["Save To Disk", "Auf Festplatte Speichern"], + ["Edit Name", "Namen Bearbeiten"], + ["Attachment Name", "Name des Anhangs"], + ["Please enter an attachment name!", "Bitten gib einen Name für diesen Anhang ein!"], + ["Unknown File Type", "Unbekannter Dateityp"], + ["downloading... {0}/{1}", "wird heruntergeladen... {0}/{1}"], + ["Unnamed", "Unbenannt"], + ["uploading... {0}/{1}", "wird hochgeladen {0}/{1}"], + ["Failed to upload!", "Upload Fehlgeschlagen!"], + ["Failed to download! Click to try again.", "Download Fehlgeschlagen! Bitte versuch es noch einmal."], + ["Update Billing Info", "Rechnungsdaten Updaten"], + ["Select A Country", "Wähle Ein Land"], + [ + "To update your billing info and payment method, please log in through our website (found under \"Settings\") or contact us at ", + "" + ], + ["Payment Details", "Zahlungsdetails"], + ["Billing Address", "Rechnungsadresse"], + ["Billing Email", "Rechnungsemail"], + ["Name", "Name"], + ["Address", "Adresse"], + ["Postal Code", "Postleitzahl"], + ["City", "Stadt"], + ["Tax Info", "Steuer"], + ["This is a business", "Dies ist ein Unternehmen"], + ["Tax ID", "Steuernummer"], + ["Coupon Code", "Gutscheincode"], + ["Add Later", "Später Hinzufügen"], + [ + "Something went wrong. Please try again later!", + "Es ist ein Fehler aufgetreten. Bitte versuche es später noch einmal!" + ], + ["Add Payment Method", "Zahlungsmittel Hinzufügen"], + ["per user / month", "pro Nutzer / Monat"], + ["USD, billed annually", "USD, jährlich abgerechnet"], + ["Try For Free", "Kostenlos Testen"], + ["Please enter at least one email address!", "Bitten gib deine Emailadresse ein!"], + [ + "You have entered too many email addresses! Please delete some before submitting!", + "Du hast zu viele Emailadressen eingegeben! Bitte lösche einige before vor dem Abschicken!" + ], + [ + "Some of the emails you entered appear to be invalid!", + "Einige der eingegebenen Emailadressen scheinen ungültig zu sein!" + ], + [ + "Something went wrong! Please try again later!", + "Es ist ein Fehler aufgetreten. Bitte versuch es später noch einmal!" + ], + ["Invite New Members", "Neue Nutzer Einladen"], + [ + "Please enter up to {0} email addresses of the persons you would like to invite, separated by spaces or commas!", + "Bitte gib bis zu {0} Emailadressen ein für die Personen die du einladen möchtest, getrennt durch Leerzeichen oder Kommas." + ], + ["Enter Email Address", "Emailadresse Eingeben"], + ["Submit", "Abschicken"], + ["New Vault Item", "Neuer Tresoreintrag"], + ["Item Name", "Name"], + ["Template", "Vorlage"], + ["Vault", "Tresor"], + ["Create & Edit", "Erstellen & Bearbeiten"], + [ + "You have reached the maximum number of items for this account. Upgrade to Premium to get unlimited items for your private vault!", + "Du hast die maximale Anzahl and Einträgen für diesen Account erreicht. Bitte upgrade auf Premium um unbegrenzte Einträge für deinen persönlichen Tresor freizuschalten!" + ], + [ + "You have reached the maximum number of items for this account!", + "Du hast die maximale Anzahl and Einträgen für diesen Account erreicht!" + ], + ["Please enter an organization name!", "Bitten geben einen Organisationsnamen ein!"], + ["Free For {0} Days", "{0} Tage Kostenlos"], + ["then", "dann"], + ["per month", "pro Monat"], + ["{0} min", "{0} min"], + ["{0} max", "{0} max"], + ["Seats", "Nutzer"], + ["Add Billing Info", "Zahlungsdaten Hinzufügen"], + ["Create Organization", "Organisation Erstellen"], + ["Organization Name", "Organisationsname"], + ["Create", "Erstellen"], + ["Export Data", "Daten Exportieren"], + ["Target Vault", "Zieltresor"], + ["Format", "Format"], + [ + "WARNING: Exporting to CSV format will save your data without encyryption of any kind which means it can be read by anyone. We strongly recommend exporting your data as a secure, encrypted file, instead!", + "WARNUNG: Beim Export im CSV-Format werden deine Daten unverschlüsselt gespeichert und können potentiell von jedem gelesen werden. Wir empfehlen deshalb Ihre Daten nur als verschlüsselte Datei zu exportieren!" + ], + ["Export {0} Items", "{0} Einträge Exportieren"], + ["Please choose a password to protect this backup with!", "Bitten wähle ein Passwort zum Sichern des Backups!"], + ["Choose Password", "Password Wählen"], + ["Please choose a password!", "Bitte wähle ein Passwort!"], + ["Please repeat the password!", "Bitte wiederholen Sie das Passwort!"], + ["Password not repeated correctly!", "Passwort nicht richtig wiederholt!"], + ["Choose A Field Type", "Wählen Sie einen Feldart"], + ["What kind of field you would like to add?", "Welche Art von Feld möchten Sie hinzufügen?"], + ["Enter Notes Here", "Hier kannst du deine Notizen eingeben."], + ["Enter Secret", "Code Eingeben"], + ["Enter Password", "Password Eingeben"], + ["Enter Value Here", "Wert Eingeben"], + ["Enter Field Name", "Feldname"], + ["Dash", "Bindestrich"], + ["Underscore", "Unterstrich"], + ["Slash", "Querstrich"], + ["Space", "Leerzeichen"], + ["Generate Password", "Passwort Generieren"], + ["passphrase", "Zufällige Wörter"], + ["random string", "Zufällige Zeichen"], + ["Word Separator", "Worttrenner"], + ["Language", "Sprache"], + ["words", "Wörter"], + ["length", "Länge"], + ["Use", "Anwenden"], + ["Discard", "Verwerfen"], + ["Are you sure you want to delete this group?", "Bist du sicher dass du diese Gruppe löschen möchtest?"], + ["Delete Group", "Gruppe Löschen"], + ["Type 'DELETE' to confirm", "Geben sie das Wort 'DELETE' ein."], + ["Enter Group Name", "Gruppennamen Eingeben"], + ["Search...", "Suche..."], + ["Import Data", "Daten Importieren"], + [ + "IMPORTANT: Before importing, please make sure that your CSV data is structured according to Padlocks specific requirements!", + "WICHTIG: Bevor du die CSV-Datei importierst, stelle bitte sicher dass sie den Anforderungen entspricht!" + ], + ["Learn More", "Mehr Erfahren"], + ["Import {0} Items", "{0} Einträge Importieren"], + ["This file is protected by a password.", "Diese Datei ist Passwortgeschützt."], + ["Wrong Password", "Falsches Passwort"], + [ + "The number of imported items exceeds your remaining quota. Upgrade to Premium to get unlimited items for your private vault!", + "Du hast die maximale Anzahl an Einträgen überschritten. Bitte upgrade auf Premium um unbegrenzte Einträge zu erhalten!" + ], + [ + "The number of imported items exceeds your remaining quota.", + "Die Anzahl der importierten Einträge überschreitet die maximale Anzahl an Einträgen." + ], + ["Successfully imported {0} items.", "{0} Einträge wurden erfolgreich importiert."], + ["This invite has expired", "Diese Einladung ist abgelaufen."], + ["Accepted", "Angenommen"], + ["expires {0}", "läuft ab {0}"], + ["Confirm Membership", "Mitgliedschaft Bestätigen"], + ["Organization Invite", "Einladung"], + [ + "Please wait for an admin to complete the process. You will be notified as soon as you receive access.", + "Bitte warte darauf dass ein Administrator deine Mitgliedschaft bestätigt. Die wirst benachrichtigt sobald du Zugriff erhältst." + ], + ["Enter Confirmation Code", "Bestätigungscode Eingeben"], + [ + "If you haven't received the confirmation code yet, please ask the organization owner to provide it to you!", + "Falls du den Bestätigungscode noch nicht erhalten hast, erfrage ihn von der Besitzer der Organisation!" + ], + [ + "They will also need the following confirmation code, which you should communicate to them separately:", + "Der folgende Bestätigungscode ist für die Annahme der Einladung erforderlich und sollte der Person separat mitgeteilt werden:" + ], + ["Resend", "Erneut Versenden"], + ["Please enter a confirmation code!", "Bitten gib den Bestätigungscode ein!"], + [ + "You have successfully accepted the invite. You'll be notified once you've been granted access.", + "Du hast die Einladung erfolgreich angenommen und wirst benachrichtigt, sobald deine Mitgliedschaft bestätigt ist." + ], + ["Wrong confirmation code. Please try again!", "Falscher Bestätigungscode. Bitte versuche es noch einmal!"], + ["expired", "abgelaufen"], + ["accepted", "angenommen"], + ["{0}", "{0}"], + ["Confirm", "Bestätigen"], + ["Confirmation Code:", "Bestätigungscode:"], + [ + "Upgrade to Premium now and get 1GB of encrypted file storage!", + "Jetzt auf Premium upgraden und 1GB verschlüsselten Datenspeicher freischalten!" + ], + ["Enter Item Name", "Name des Eintrags"], + ["Field", "Feld"], + ["Attachment", "Anhang"], + ["Move", "Verschieben"], + ["by {0}", "von {0}"], + ["Are you sure you want to delete this item?", "Bist du sicher dass du diesen Eintrag löschen möchtest?"], + ["Items with attachments cannot be moved!", "Einträge mit Anhängen können nicht verschoben werden!"], + [ + "The selected file is too large! Only files of up to 5 MB are supported.", + "Diese Datei ist zu groß! Das Maximum ist 5 MB." + ], + ["File uploaded successfully!", "Datei erfolgreich hochgeladen!"], + ["Favorites", "Favoriten"], + ["Recently Used", "Kürzlich Benutzt"], + ["Attachments", "Anhänge"], + ["All Items", "Alle Einträge"], + ["My Vault", "Mein Tresor"], + ["Tags", "Tags"], + ["You don't have any tags yet.", "Du hast noch keine Tags."], + ["Your search did not match any items.", "Deine Suche hat keine Treffer ergeben."], + ["This vault does not have any items yet.", "Dieser Tresor enthält noch keine Einträge."], + ["You don't have any attachments yet.", "Du hast noch keine Anhänge."], + ["You don't have any favorites yet.", "Du hast noch keine Favoriten."], + ["You don't have any recently used items!", "Du hast noch keine kürzlich benutzten Einträge!"], + ["You don't have any items yet.", "Du hast noch keine Einträge."], + ["Type To Search", "Suchen..."], + ["{0} items selected", "{0} Einträge selektiert"], + [ + "Some items in your selection are from Vaults you don't have write access to and cannot be deleted. Do you want to proceed deleting the other items?", + "Einige der selektierten Einträge sind aus Tresoren auf die du keinen Schreibzugriff hast und können nicht gelöscht werden. Möchtest du die restlichen Einträge trotzdem löschen?" + ], + ["Yes", "Ja"], + ["No", "Nein"], + [ + "Are you sure you want to delete these items? This action can not be undone!", + "Bist du sicher dass du die Einträge löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden!" + ], + ["Delete {0} Items", "{0} Einträge Löschen"], + [ + "Some items in your selection have attachments and cannot be moved. Do you want to proceed moving the other items?", + "Einige der selektierten Einträge haben Anhänge und können nicht verschoben werden. Möchtest du die restlichen Einträge trotzdem verschieben? " + ], + [ + "Some items in your selection are from Vaults you don't have write access to and cannot be moved. Do you want to proceed moving the other items?", + "Einige der selektierten Einträge sind aus Tresoren auf die du keinen Schreibzugriff hast und können nicht verschoben werden. Möchtest du die restlichen Einträge trotzdem verschieben?" + ], + ["No Name", "Kein Name"], + ["copied", "kopiert"], + ["No Fields", "Keine Felder"], + ["This item has no fields.", "Dieser Eintrag hat keine Felder"], + ["Email Address", "Emailadresse"], + ["Master Password", "Masterpasswort"], + ["Login", "Einloggen"], + ["New to Padloc?", "Neu bei Padloc?"], + ["Sign Up Now", "Jetzt Registrieren"], + ["Please enter a valid email address!", "Bitte gib eine gültige Emailadresse ein!"], + [ + "Please enter the confirmation code sent to your email address to proceed!", + "Bitte gib den Bestätigungscode ein, der an deine Emailadresse versandt wurde!" + ], + ["One Last Step!", "Ein Letzter Schritt!"], + ["Enter Verification Code", "Bestätigungscode Eingeben"], + [ + "Maximum number of tries exceeded! Please resubmit and try again!", + "Maximale Anzahl an Versuchen überschritten! Bitte versuche es später erneut!" + ], + ["Wrong username or password. Please try again!", "Falscher Benutzername oder Password. Bitte versuche es erneut!"], + ["Can't remember your master password?", "Du kannst dich nicht an dein Masterpasswort erinnern?"], + ["Recover Account", "Account Wiederherstellen"], + ["Try Again", "Erneut Versuchen"], + ["An account with this email address does not exist!", "Es existiert kein Account mit dieser Emailadresse!"], + ["Sign Up", "Anmelden"], + ["Remove", "Entfernen"], + ["Suspend", "Sperren"], + ["Remove Admin", "Als Admin Entfernen"], + ["Make Admin", "Zum Admin Machen"], + [ + "Are you sure you want to remove this member from this organization?", + "Bist du sicher dass du diesen Nutzer von der Organisation entfernen möchtest?" + ], + ["Remove Member", "Nutzer Entfernen"], + [ + "Are you sure you want to make this member an admin? Admins can manage vaults, groups and permissions.", + "Bist du sicher dass du diesen Nutzer zum Admin machen möchtest? Admins können Tresore, Gruppen und Zugriffsberechtigungen verwalten." + ], + [ + "Are you sure you want to remove this member as admin?", + "Bist du sicher dass du diesen Nutzer als Admin entfernen möchtest?" + ], + [ + "Are you sure you want to suspend this member?", + "Bist du sicher dass du diesen Nutzer vorübergehend sperren möchtest?" + ], + ["Suspend Member", "Nutzer Vorübergehend Sperren"], + ["Groups", "Gruppen"], + ["Vaults", "Tresore"], + ["read", "lesen"], + ["write", "schreiben"], + ["Owner", "Besitzer"], + ["Admin", "Admin"], + ["Suspended", "Gesperrt"], + ["Items", "Einträge"], + ["Orgs & Teams", "Orgs & Teams"], + ["New Organization", "Neue Organisation"], + ["Settings", "Einstellungen"], + ["{0} Items", "{0} Einträge"], + ["Move {0} To", "{0} Verschieben Nach"], + ["No target vaults available!", "Keine anderen Tresore verfügbar!"], + ["Move Item", "Eintrag Verschieben"], + ["Move Items", "Einträge Verschieben"], + ["Successfully created {0} invites!", "Es wurden {0} Einladungen erfolgreich versendet!"], + ["Unsuspend", "Entsperren"], + [ + "Are you sure you want to delete this organization? All associated vaults and the data within them will be lost! This action can not be undone.", + "Bist du sicher dass du diese Organisation löschen möchtest? Alle verknüpften Tresore und die darin enthaltenen Daten gehen dabei verloren und können nicht wiederhergestellt werden!" + ], + ["Delete Organization", "Organisation Löschen"], + ["Rename Organization", "Organisation Umbenennen"], + ["Company Name", "Organisationsname"], + ["Please enter a name!", "Bitte gib einen Namen ein!"], + [ + "Do you want to rotate this organizations cryptographic keys? All organization memberships will have to be reconfirmed but no data will be lost.", + "Willst du die kryptographischen Schlüssel für diese Organisation durchwechseln? Dies erfordert zwar die erneute Bestätigung aller Mitgliedschaften führt aber zu keinen Datenverlust." + ], + [ + "The organizations cryptographic keys have been rotated successfully and membership confirmation requests for all members have been sent out.", + "Die kryptographischen Schlüssel der Organisation wurden erfolgreich durchgewechselt und Anfragen zur Bestätigung der Mitgliedschaft an alle Mitglieder versandt." + ], + ["Members", "Mitglieder"], + [ + "This organization currently does not have an active subscription and has been put in \"frozen\" state as a result. While in this state, you won't be able to make any changes to members, groups or vaults of this organization.", + "Diese Organisation hat momentan kein aktives Abonnement und wurde deshalb eingefroren. Du kannst also momentan keine Änderungen an Mitgliedschaften, Gruppen oder Tresoren dieser Organisation machen." + ], + ["Update Subscription", "Abonnement Anpassen"], + ["New Group", "Neue Gruppe"], + ["New Vault", "Neuer Tresor"], + ["Subscription", "Abonnement"], + ["Billing Info", "Zahlungsdetails"], + ["Security", "Sicherheit"], + ["Rotate Cryptographic Keys", "Kryptgraphische Schlüssel Durchwechseln"], + ["General", "Allgemein"], + ["Change Organization Name", "Organisationsnamen Ändern"], + [ + "Organizations allow you to securely share passwords, documents and other data within your family, team or any other kind of group!", + "Organisationen ermöglichen das sichere teilen von Passwörtern, Dokumenten und anderen Daten mit deiner Familie, Team oder anderen Gruppen!" + ], + ["Start Trial", "Testphase Starten"], + ["Scan QR Code", "QR-Code Scannen"], + ["Failed to scan QR code. Error: ", "QR-Code wurde nicht erkannt. Fehler: "], + [ + "Please enter your email address and new master password.", + "Bitte gib deine Emailadresse und ein neues Masterpasswort ein." + ], + ["New Master Password", "Neues Master Passwort"], + ["WARNING: Weak Password!", "WARNUNG: Schwaches Passwort!"], + ["Repeat Master Password", "Passwort Wiederholen"], + [ + "IMPORTANT, READ CAREFULLY: Padloc is designed in a way that makes it impossible for us to access the data encrypted in any of your vaults even if we wanted to. While this is essential to ensuring the security of your data, it also has the following implications:", + "WICHTIG, BITTE SORGFÄLTIG LESEN: Um die Sicherheit deiner Daten zu gewährleisten wurde Padloc so entworfen dass es für uns unmöglich ist auf die verschlüsselten Daten in deinen Tresoren zuzugreifen. Dies hat folgende Auswirkungen:" + ], + [ + "Any data stored in your private vault can not be recovered and will be permantently lost.", + "Alle Daten in deinem persönlichen Tresor können nicht wiederhergestellt werden und gehen verloren." + ], + [ + "All your organization memberships will be suspended temporarily until confirmed by the organization owner.", + "Alle Organisationsmitgliedschaften werden vorübergehend gesperrt und müssen vom Organsiationsbesitzer erneut bestätigt werden." + ], + [ + "All members of organizations you own will be suspended temporarily until confirmed by you.", + "Alle Mitglieder von Organisation die du erstellt hast werden vorübergehen gesperrt und müssen von dir erneut bestätigt werden." + ], + ["Please enter a master password!", "Bitte gib ein Masterpasswort ein!"], + [ + "You didn't repeat your master password correctly. Try again!", + "Du hast dein Masterpasswort nicht richtig wiederholt. Bitte versuche es erneut!" + ], + [ + "The password you entered is weak which makes it easier for attackers to break the encryption used to protect your data. Try to use a longer password or include a variation of uppercase, lowercase and special characters as well as numbers!", + "Das Passwort, dass du gewählt hast ist schwach und stellt womöglich einen unzureichenden Schutz für deine Daten dar. Versuche es mit einem längeren Passwort und verwende eine Mischung aus Groß- und Kleinbuchstaben, Sonderzeichen und Zahlen!" + ], + ["Choose Different Password", "Anderes Passwort Wählen"], + ["Use Anyway", "Trotzdem Verwenden"], + ["WARNING: Weak Password", "WARNUNG: Schwaches Passwort"], + [ + "To complete the account recovery process, please enter the confirmation code sent to your email address!", + "Um die Wiederherstellung deines Accounts abzuschließen gib bitte den Bestätigungscode ein der an deine Emailadresse verschickt wurde!" + ], + ["Account recovery successful!", "Account erfolgreich wiederhergestellt!"], + ["Report Errors", "Fehler Melden"], + ["{0} Errors Detected", "{0} Fehler Erkannt"], + [ + "Padloc has registered {0} errors during your use of the app. These errors may not have any impact on functionality and can often be ignored, but reporting them may help us diagnose problems, identify possible failure modes and generally improve the stability of the app.", + "Padloc hat {0} Fehler beim Ausführen der App erkannt. Diese Fehler haben womöglich keinen Einfluss auf die Funktionalität der App und können oft ignoriert werden. Das Melden der Fehler kann uns jedoch dabei helfen, mögliche Probleme zu identifizieren und die Stabilität der App zu verbessern." + ], + ["Profile", "Profil"], + ["Log Out", "Abmelden"], + ["Change Master Password", "Masterpasswort Ändern"], + ["Auto Lock", "Automatische Sperrung"], + ["Lock Automatically", "Automatisch Sperren"], + [" min", " min"], + ["After", "Nach"], + ["Enable Biometric Unlock", "Biometrisches Entsperren Aktivieren"], + ["Import / Export", "Import / Export"], + ["Import...", "Importieren..."], + ["Export...", "Exportieren..."], + ["Support", "Hilfe"], + ["Website", "Webseite"], + ["Contact Support", "Support Kontaktieren"], + ["Danger Zone", "Gefahrenzone"], + ["Delete Account", "Account Löschen"], + ["Edit Profile", "Profil Bearbeiten"], + ["Do you really want to log out?", "Bist du sicher dass du dich abmelden möchtest?"], + ["Please enter your current password!", "Bitte gib dein aktuelles Passwort ein!"], + ["Enter Current Password", "Aktuelles Passwort Eingeben"], + ["Now choose a new master password!", "Wähle nun ein neues Masterpasswort!"], + ["Enter New Password", "Neues Passwort Eingeben"], + ["Please enter a password!", "Bitte gibt ein Passwort ein!"], + ["Please confirm your new password!", "Bitte bestätige dein neues Passwort!"], + ["Repeat New Password", "Neues Passwort Wiederholen"], + ["Master password changed successfully.", "Masterpasswort erfolgreich geändert."], + ["Please enter your master password to proceed.", "Bitte gib dein Masterpasswort ein um fortzufahren."], + [ + "Are you sure you want to delete this account? All associated vaults and the data within them will be lost and any active subscriptions will be canceled immediately. This action can not be undone!", + "Bist du sicher, dass du diesen Account löschen möchtest? Alle verknüpften Tresore und die darin enthaltenen Daten gehen dabei verloren und dein aktuelles Abonnement wird unmittelbar gekündigt. Diese Aktion kann nicht rückgängig gemacht werden!" + ], + [ + "Are you sure you want to disable biometric unlock?", + "Bist du sicher dass du biometrisches Entsperren deaktivieren möchtest?" + ], + [ + "Welcome to Padloc! Let's get you started by creating an account for you.", + "Willkommen bei Padloc! Bevor du loslegen kannst müssen wir zunächst einen Account für dich erstellen." + ], + [ + "Your email address serves as your username and allows us to get in touch with you. Don't worry, we would never send you any spam!", + "Deine Emailadresse dient als Benutzername und als Mittel der Kontaktaufnahme. Keine Sorge, wir werden niemals Spam and dich versenden!" + ], + ["Your Name", "Dein Name"], + ["What should we call you?", "Wie sollen wir dich nennen?"], + ["Continue", "Weiter"], + ["Already have an account?", "Du hast bereits einen Account?"], + ["Sign In", "Einloggen"], + ["You've Got Mail!", "Sie haben Post!"], + [ + "To verify your email address, please enter the confirmation code we sent to {0}.", + "Um Ihre Emailadresse zu verifizieren, geben Sie bitte den Bestätigungscode ein, den wir an {0} gesendet haben." + ], + ["Confirmation Code", "Bestätigungscode"], + ["Say hello to your", "Sag Hallo zu deinem"], + [ + "It's the last password you'll ever have to remember! Please memorize it and never reveal it to anyone (not even us)! We recommend writing it down on a piece of paper and storing it somewhere safe, at least until you have it safely memorized.", + "Das letzte Passwort dass du dir je merken musst! Merke es dir gut und verrate es niemandem (auch nicht uns)! Wir empfehlen es auf ein Blatt Papier zu schreiben und an einem sicheren Ort zu verfahren, zumindest so lange bis du es sicher im Gedächtnis hast!" + ], + ["[Tap To Reveal]", "[Zum Anzeigen Antippen]"], + ["[Hover To Reveal]", "[Zum Anzeigen Maus Hier Bewegen]"], + [ + "This random passphrase was generated just for you and is designed to be both secure and easy to remember. Don't like it?", + "Diese zufällige Wortfolge wurde für speziell für dich generiert und ist so gewählt dass sie sowohl sicher als auch leicht zu merken ist. Gefällt dir nicht?" + ], + ["Try Another One", "Neu Generieren"], + ["Choose Your Own", "Eigenes Wählen"], + ["An account with this email address already exists!", "Ein Account mit dieser Emailadresse existiert bereits!"], + ["Change Email", "Emailadresse Ändern"], + [ + "We recommend using a randomly generated password that is both strong and easy to remember.", + "Wir empfehlen ein zufällig generiertes Passwort zu wählen das sowohl sicher als auch leicht zu merken ist." + ], + ["Keep This One", "Passwort Beibehalten"], + ["Generate Another", "Anderes Generieren"], + ["Choose My Own", "Eigenes Passwort Wählen"], + ["Want A Different Master Password?", "Du willst ein anderes Masterpasswort?"], + ["Choose Own Master Password", "Eigenes Masterpasswort Wählen"], + ["Resume Subscription", "Abonnement Wiederaufnehmen"], + ["Cancel Subscription", "Abonnement Kündigen"], + ["Update Plan", "Packet Ändern"], + [ + "Are you sure you want to downgrade to the Free Plan?", + "Bist du sicher dass du auf das Kostenlos Packet downgraden möchtest?" + ], + ["Downgrade", "Downgraden"], + ["No Plan Selected", "Kein Packet Gewählt"], + ["Unlimited", "Unbegrenzt"], + ["{0} / Year", "{0} / Jahr"], + ["Canceled ({0} days left)", "Gekündigt ({0} Tage übrig)"], + ["Authentication Required", "Authentifizierung Benötigt"], + ["Inactive", "Pausiert"], + ["Trialing ({0} days left)", "Testphase ({0} Tage übrig)"], + ["Choose Plan", "Packet Wählen"], + ["Complete Payment", "Zahlung Abschließen"], + ["Downgrade To Free Plan", "Packet Downgraden"], + ["Add Tag", "Tag Hinzuf."], + ["Choose A Template", "Wähle Eine Vorlage"], + ["What kind of item you would like to add?", "Welche Art von Eintrag möchtest du erstellen?"], + ["Invalid Code", "Ungültiger Code"], + ["Logged In As", "Eingeloggt Als"], + ["Unlock", "Entsperren"], + ["Wrong password! Please try again.", "Falsches Passwort! Bitte versuche es erneut."], + ["Logout / Switch Account", "Abmelden / Account Wechseln"], + ["Forgot Password", "Passwort Vergessen"], + [ + "Are you sure you want to log out of this account?", + "Bist du sicher dass du dich von diesem Account abmelden möchtest?" + ], + [ + "Biometric unlock expired. Complete setup to reeneable.", + "Biometrisches Entsperren Abgelaufen. Bitte richte es erneut ein." + ], + ["Biometric unlock failed! Reason: {0}", "Biometrisches Entsperren fehlgeschlagen! Grund: {0}"], + ["Failed To Unlock", "Entsperren Fehlgeschlagen"], + ["Update", "Updaten"], + ["Storage limit exceeded!", "Speicherlimit überschritten!"], + ["Upload failed! Please try again!", "Upload fehlgeschlagen! Bitte versuche es erneut!"], + ["Upload Attachment", "Anhang Hochladen"], + ["Unkown File Type", "Unbekannter Dateityp"], + ["Retry Upload", "Erneut Versuchen"], + ["Upload", "Upload"], + [ + "Are you sure you want to delete this vault? All the data stored in it will be lost! This action can not be undone.", + "Bist du sicher dass du diesen Tresor löschen möchtest? Alle darin gespeicherten Daten gehen dabei verloren! Diese Aktion kann nicht rückgängig gemacht werden!" + ], + ["Delete Vault", "Tresor Löschen"], + ["Enter Vault Name", "Tresornamen Eingeben"], + ["Username", "Benutzername"], + ["Password", "Passwort"], + ["URL", "URL"], + ["Notes", "Notizen"], + ["Your session has expired. Please log in again!", "Deine Sitzung ist abgelaufen. Bitte melde dich erneut an!"], + [ + "A new update is ready to install! Do you want to install it now?", + "Eine neue Version ist verfügbar! Willst du diese jetzt installieren?" + ], + ["Install & Reload", "Installieren"], + ["Later", "Später"], + ["Date", "Datum"], + ["Month", "Monat"], + ["Credit Card Number", "Kreditkartennummer"], + ["Phone Number", "Telefonnummer"], + ["PIN", "PIN"], + ["2FA Token", "2FA-Code"], + ["Note", "Notiz"], + ["Other", "Sonstiges"], + ["Credit Card", "Kreditkarte"], + ["Card Number", "Kartennummer"], + ["Card Owner", "Karteninhaber"], + ["Valid Until", "Gültig Bis"], + ["CVC", "Sicherheitscode"], + ["Bank Account", "Bankkonto"], + ["Account Owner", "Kontoinhaber"], + ["IBAN", "IBAN"], + ["BIC", "BIC"], + ["Card PIN", "Karten-PIN"], + ["WIFI Password", "WLAN-Passwort"], + ["Passport", "Reisepass"], + ["Full Name", "Vor- und Zuname"], + ["Passport Number", "Reisepassnummer"], + ["Country", "Land"], + ["Birthdate", "Geburtstag"], + ["Birthplace", "Geburtsort"], + ["Issued On", "Ausstellungsdatum"], + ["Expires", "Verfallsdatum"], + ["Document", "Dokument"], + ["Custom", "Benutzerdefiniert"], + ["{0} on {1}", "{0} am {1}"], + ["{0} Device", "{0} Gerät"] ] diff --git a/packages/locale/res/translations/es.json b/packages/locale/res/translations/es.json index ec5cf641..45f38953 100644 --- a/packages/locale/res/translations/es.json +++ b/packages/locale/res/translations/es.json @@ -1,1574 +1,575 @@ [ - [ - "OK", - "OK" - ], - [ - "o f f l i n e", - "o f f l i n e" - ], - [ - "Could not find invite! Did you use the correct link?", - "¡No se econtró la invitación! ¿Usaste el link correcto?" - ], - [ - "Get Premium", - "Obtén Premium" - ], - [ - "Cancel", - "Cancelar" - ], - [ - "It looks like the app cannot connect to the Padloc servers right now, probably due to a missing internet connection. You can still access your vaults and even create or edit Vault Items but your changes won't be synchronized until you're back online.", - "Parece que la aplicaión no puede conectar con los servidores de Padloc en este momento, probablemente debido a que no hay conexión a internet. Aún puedes acceder a tus alamacenes e incluso crear o editar sus elementos pero tus cambios no serán sincronizados hasta que vuelvas a tener conexión." - ], - [ - "You're Offline", - "Estás Offline" - ], - [ - "Do you want to enable biometric unlock for this device?", - "¿Quieres habilitar el desbloqueo biométrico para este dispositivo?" - ], - [ - "Setup", - "Configurar" - ], - [ - "Biometric Unlock", - "Desbloqueo Biométrico" - ], - [ - "Biometric authentication failed! Canceling Setup.", - "¡Autenticación Biométrica fallida! Cancelando Configuración." - ], - [ - "Setup Failed", - "Configuración Fallida" - ], - [ - "Biometric unlock failed! Canceling Setup. (Reason: {0})", - "¡Desbloqueo Biométrico fallido! Cancelando Configuración. (Motivo: {0})" - ], - [ - "Please enter your master password!", - "¡Por favor, introduce tu contraseña maestra!" - ], - [ - "Enter Master Password", - "Introduce tu Contraseña Maestra" - ], - [ - "Wrong password! Please try again!", - "¡Contraseña errónea! ¡Por favor, inténtalo de nuevo!" - ], - [ - "Biometric unlock activated successfully!", - "!Desbloqueo biométrico activado correctamente!" - ], - [ - "Are you sure you want to delete this attachment?", - "¿Estás seguro de que quieres eliminar este adjunto?" - ], - [ - "Delete", - "Eliminar" - ], - [ - "Delete Attachment", - "Eliminar adjunto" - ], - [ - "Download failed!", - "¡Descarga fallida!" - ], - [ - "Do you want to save this file to your disk? WARNING: Doing this will leave the file exposed and unprotected on your harddrive!", - "¿Quieres guardar este archivo en tu disco? AVISO: ¡Hacer esto deja el archivo expuesto y desprotegido en tu disco duro!" - ], - [ - "Save", - "Guardar" - ], - [ - "Save To Disk", - "Guardar En Disco" - ], - [ - "Edit Name", - "Editar Nombre" - ], - [ - "Attachment Name", - "Nombre de Adjunto" - ], - [ - "Please enter an attachment name!", - "¡Por favor, introduce un nombre para el adjunto!" - ], - [ - "Unknown File Type", - "Tipo de Archivo Desconocido" - ], - [ - "downloading... {0}/{1}", - "descargando... {0}/{1}" - ], - [ - "Unnamed", - "Sin nombre" - ], - [ - "uploading... {0}/{1}", - "cargando... {0}/{1}" - ], - [ - "Failed to upload!", - "¡Carga fallida!" - ], - [ - "Failed to download! Click to try again.", - "¡Fallo en la descarga! Click para intentarlo de nuevo" - ], - [ - "Update Billing Info", - "Actualizar Información de Facturación" - ], - [ - "Select A Country", - "Selecciona Un País" - ], - [ - "To update your billing info and payment method, please log in through our website (found under \"Settings\") or contact us at ", - "" - ], - [ - "Payment Details", - "Detalles de Pago" - ], - [ - "Billing Address", - "Dirección de Facturación" - ], - [ - "Billing Email", - "Email de Facturación" - ], - [ - "Name", - "Nombre" - ], - [ - "Address", - "Dirección" - ], - [ - "Postal Code", - "Código Postal" - ], - [ - "City", - "Ciudad" - ], - [ - "Tax Info", - "Información de Tasas" - ], - [ - "This is a business", - "Esto es un negocio" - ], - [ - "Tax ID", - "ID de Tasa" - ], - [ - "Coupon Code", - "Código de Cupón" - ], - [ - "Add Later", - "Añadir Después" - ], - [ - "Something went wrong. Please try again later!", - "Algo salió mal. ¡Por favor, inténtalo de nuevo!" - ], - [ - "Add Payment Method", - "Añadir Método de Pago" - ], - [ - "per user / month", - "por usuario / mes" - ], - [ - "USD, billed annually", - "USD, cargado anualmente" - ], - [ - "Try For Free", - "Prueba Gratuita" - ], - [ - "Please enter at least one email address!", - "¡Por favor, introduce al menos una dirección de email!" - ], - [ - "You have entered too many email addresses! Please delete some before submitting!", - "¡Has introducido demasiadas direcciones de email! ¡Por favor, elimina algunas antes de enviar!" - ], - [ - "Some of the emails you entered appear to be invalid!", - "!Parece que algunos emails que has introducido no son válidos!" - ], - [ - "Something went wrong! Please try again later!", - "¡Algo salió mal! ¡Por favor, inténtalo de nuevo más tarde!" - ], - [ - "Invite New Members", - "Invitar A Nuevos Miembros" - ], - [ - "Please enter up to {0} email addresses of the persons you would like to invite, separated by spaces or commas!", - "¡Por favor, introduce hasta {0} direcciones de email de personas a las que quieres invitar, separadas por espacios o comas!" - ], - [ - "Enter Email Address", - "Introduce Email" - ], - [ - "Submit", - "Enviar" - ], - [ - "New Vault Item", - "Nuevo Elemento de Almacén" - ], - [ - "Item Name", - "Nombre del Elemento" - ], - [ - "Template", - "Plantilla" - ], - [ - "Vault", - "Almacén" - ], - [ - "Create & Edit", - "Crear & Editar" - ], - [ - "You have reached the maximum number of items for this account. Upgrade to Premium to get unlimited items for your private vault!", - "Has alcanzado el número máximo de elementos para esta cuenta. ¡Actualiza a Premium para obtener un número ilimidado de elementos para tu almacén privado!" - ], - [ - "You have reached the maximum number of items for this account!", - "¡Has alcanzado el número máximo de elementos para esta cuenta!" - ], - [ - "Please enter an organization name!", - "¡Por favor, introduce un nombre de organización!" - ], - [ - "Free For {0} Days", - "Gratis Durante {0} Días" - ], - [ - "then", - "entonces" - ], - [ - "per month", - "por mes" - ], - [ - "{0} min", - "{0} min" - ], - [ - "{0} max", - "{0} max" - ], - [ - "Seats", - "Plazas" - ], - [ - "Add Billing Info", - "Añadir Información de Facturación" - ], - [ - "Create Organization", - "Crear Organización" - ], - [ - "Organization Name", - "Nombre de Organización" - ], - [ - "Create", - "Crear" - ], - [ - "Export Data", - "Exportar Datos" - ], - [ - "Target Vault", - "Almacén de Destino" - ], - [ - "Format", - "Formato" - ], - [ - "WARNING: Exporting to CSV format will save your data without encyryption of any kind which means it can be read by anyone. We strongly recommend exporting your data as a secure, encrypted file, instead!", - "AVISO: Exportar con formato CSV guardará tus datos sin ninguna encriptación, lo que significa que podrán ser leidos por cualquiera. !Te recomentados que exportes tus datos como un archivo encriptado seguro en su lugar!" - ], - [ - "Export {0} Items", - "Exportar {0} Elementos" - ], - [ - "Please choose a password to protect this backup with!", - "!Por favor, elige una contraseña para proteger este backup!" - ], - [ - "Choose Password", - "Elige Contraseña" - ], - [ - "Please choose a password!", - "¡Por favor, introduce una contraseña!" - ], - [ - "Please repeat the password!", - "¡Por favor, repite la contraseña!" - ], - [ - "Password not repeated correctly!", - "¡Contraseña repetida incorrecta!" - ], - [ - "Choose A Field Type", - "Elige Un Tipo de Campo" - ], - [ - "What kind of field you would like to add?", - "¿Que tipo de campo quieres añadir?" - ], - [ - "Enter Notes Here", - "Introduce Notas Aquí" - ], - [ - "Enter Secret", - "Introduce Secreto" - ], - [ - "Enter Password", - "Introduce Contraseña" - ], - [ - "Enter Value Here", - "Introduce Valor Aquí" - ], - [ - "Enter Field Name", - "Introduce Nombre de Campo" - ], - [ - "Dash", - "Guión" - ], - [ - "Underscore", - "Guión Bajo" - ], - [ - "Slash", - "Barra Oblícua" - ], - [ - "Space", - "Espacio" - ], - [ - "Generate Password", - "Generar Contraseña" - ], - [ - "passphrase", - "frase de contraseña" - ], - [ - "random string", - "cadena de texto aleatoria" - ], - [ - "Word Separator", - "Separador de Palabra" - ], - [ - "Language", - "Idioma" - ], - [ - "words", - "palabras" - ], - [ - "length", - "longitud" - ], - [ - "Use", - "Usar" - ], - [ - "Discard", - "Descartar" - ], - [ - "Are you sure you want to delete this group?", - "¿Estás seguro/a de que quieres eliminar este grupo?" - ], - [ - "Delete Group", - "Eliminar Groupo" - ], - [ - "Type 'DELETE' to confirm", - "Escribe 'DELETE' para confirmar" - ], - [ - "Enter Group Name", - "Introduce Nombre de Grupo" - ], - [ - "Search...", - "Buscar..." - ], - [ - "Import Data", - "Importar Datos" - ], - [ - "IMPORTANT: Before importing, please make sure that your CSV data is structured according to Padlocks specific requirements!", - "IMPORTANTE: !Antes de importar, por favor, asegurate de que tus CSV está estructurado de acuerdo con los requerimientos específicos de Padlock!" - ], - [ - "Learn More", - "Aprender Más" - ], - [ - "Import {0} Items", - "Importar {0} Elementos" - ], - [ - "This file is protected by a password.", - "Este archivo está protegido mediante una contraseña." - ], - [ - "Wrong Password", - "Contraseña Incorrecta" - ], - [ - "The number of imported items exceeds your remaining quota. Upgrade to Premium to get unlimited items for your private vault!", - "El número de elementos importados supera tu quota restante. ¡Actualiza a Premium para obtener un número ilimitado de elementos para tu almacén privado!" - ], - [ - "The number of imported items exceeds your remaining quota.", - "El número de elementos importados supera tu quota restante." - ], - [ - "Successfully imported {0} items.", - "{0} elementos importados correctamente" - ], - [ - "This invite has expired", - "Esta invitación ha expirado" - ], - [ - "Accepted", - "Aceptado" - ], - [ - "expires {0}", - "expira {0}" - ], - [ - "Confirm Membership", - "Confirmar Membresía" - ], - [ - "Organization Invite", - "Invitación de Organización" - ], - [ - "Please wait for an admin to complete the process. You will be notified as soon as you receive access.", - "Por favor, espera a que un administrador complete el proceso. Serás notificado/a tan pronto como recibas acceso." - ], - [ - "Enter Confirmation Code", - "Introduce Código de Confirmación" - ], - [ - "If you haven't received the confirmation code yet, please ask the organization owner to provide it to you!", - "¡Si aún no has recibido el código de confirmación, por favor, pídeselo al dueño/a de la organización!" - ], - [ - "They will also need the following confirmation code, which you should communicate to them separately:", - "También necesitarán el siguiente código de confirmación, el cual deberás comunicarles de forma separada:" - ], - [ - "Resend", - "Reenviar" - ], - [ - "Please enter a confirmation code!", - "¡Por favor, introduce un código de confirmación!" - ], - [ - "You have successfully accepted the invite. You'll be notified once you've been granted access.", - "Has aceptado la invitación correctamente. Serás notificado/a una vez que se te haya concedido acceso." - ], - [ - "Wrong confirmation code. Please try again!", - "Código de confirmación incorrecto. ¡Por favor, intentalo de nuevo!" - ], - [ - "expired", - "expirado" - ], - [ - "accepted", - "aceptado" - ], - [ - "{0}", - "{0}" - ], - [ - "Confirm", - "Confirmar" - ], - [ - "Confirmation Code:", - "Código de Confirmación:" - ], - [ - "Upgrade to Premium now and get 1GB of encrypted file storage!", - "¡Actualiza a Premium ahora y obtén 1GB de espacio encriptado!" - ], - [ - "Enter Item Name", - "Introduce Nombre de Elemento" - ], - [ - "Field", - "Campo" - ], - [ - "Attachment", - "Adjunto" - ], - [ - "Move", - "Mover" - ], - [ - "by {0}", - "por {0}" - ], - [ - "Are you sure you want to delete this item?", - "¿Estás seguro/a de que quieres eliminar este elemento?" - ], - [ - "Items with attachments cannot be moved!", - "¡Elementos con adjuntos no se pueden mover!" - ], - [ - "The selected file is too large! Only files of up to 5 MB are supported.", - "¡El archivo seleccionado es demasiado grande! Sólo archivos de hasta 5 MB son soportados." - ], - [ - "File uploaded successfully!", - "¡Archivo cargado correctamente!" - ], - [ - "Favorites", - "Favoritos" - ], - [ - "Recently Used", - "Usados Recientemente" - ], - [ - "Attachments", - "Adjuntos" - ], - [ - "All Items", - "Todos los Elementos" - ], - [ - "My Vault", - "Mi Almacén" - ], - [ - "Tags", - "Etiquetas" - ], - [ - "You don't have any tags yet.", - "Aún no tienes etiquetas." - ], - [ - "Your search did not match any items.", - "Tu búsqueda no encontró ningún elemento." - ], - [ - "This vault does not have any items yet.", - "Este almacén aún no tiene elementos." - ], - [ - "You don't have any attachments yet.", - "Aún no tienes adjuntos." - ], - [ - "You don't have any favorites yet.", - "Aún no tienes favoritos." - ], - [ - "You don't have any recently used items!", - "¡No tienes ningún elemento usado recientemente!" - ], - [ - "You don't have any items yet.", - "Aún no tienes elementos." - ], - [ - "Type To Search", - "Escribe Para Buscar" - ], - [ - "{0} items selected", - "{0} elementos seleccionados" - ], - [ - "Some items in your selection are from Vaults you don't have write access to and cannot be deleted. Do you want to proceed deleting the other items?", - "Algunos elementos en tu selección son de Almacénes sobre los que no tienes permiso de escritura y no se pueden eliminar. ¿Quieres proceder a eliminar el resto de elementos?" - ], - [ - "Yes", - "Sí" - ], - [ - "No", - "No" - ], - [ - "Are you sure you want to delete these items? This action can not be undone!", - "¿Estás seguro/a de que quieres eliminar estos elementos? ¡Esta acción no se puede deshacer!" - ], - [ - "Delete {0} Items", - "Eliminar {0} Elementos" - ], - [ - "Some items in your selection have attachments and cannot be moved. Do you want to proceed moving the other items?", - "Algunos elementos en tu selección tienen adjuntos y no se pueden mover. ¿Quieres proceder a mover el resto de elementos?" - ], - [ - "Some items in your selection are from Vaults you don't have write access to and cannot be moved. Do you want to proceed moving the other items?", - "Algunos elementos en tu selección son de Almacénes sobre los que no tienes premiso de escritura y no se pueden mover. ¿Quieres proceder a mover el resto de elementos?" - ], - [ - "No Name", - "Sin Nombre" - ], - [ - "copied", - "copiado" - ], - [ - "No Fields", - "Sin Campos" - ], - [ - "This item has no fields.", - "Este elemento no tiene campos." - ], - [ - "Email Address", - "Dirección Email" - ], - [ - "Master Password", - "Contraseña Maestra" - ], - [ - "Login", - "Iniciar Sesión" - ], - [ - "New to Padloc?", - "¿Nuevo/a en Padloc?" - ], - [ - "Sign Up Now", - "Regístrate Ahora" - ], - [ - "Please enter a valid email address!", - "¡Por favor, introduce una dirección email válida!" - ], - [ - "Please enter the confirmation code sent to your email address to proceed!", - "¡Por favor, introduce el código de confirmación enviado a tu dirección email para continuar!" - ], - [ - "One Last Step!", - "¡Un Último Paso!" - ], - [ - "Enter Verification Code", - "Introduce el Código de Verificación" - ], - [ - "Maximum number of tries exceeded! Please resubmit and try again!", - "¡Número máximo de intentos sobrepasado! ¡Por favor, reenvía e inténtalo de nuevo!" - ], - [ - "Wrong username or password. Please try again!", - "usuario o contraseña incorrectos. ¡Por favor, inténtalo de nuevo!" - ], - [ - "Can't remember your master password?", - "¿No puedes recordar tu contraseña maestra?" - ], - [ - "Recover Account", - "Recuperar Cuenta" - ], - [ - "Try Again", - "Inténtalo de Nuevo" - ], - [ - "An account with this email address does not exist!", - "¡No existe una cuenta con esta dirección de email!" - ], - [ - "Sign Up", - "Regístrate" - ], - [ - "Remove", - "Eliminar" - ], - [ - "Suspend", - "Suspender" - ], - [ - "Remove Admin", - "Eliminar Administrador" - ], - [ - "Make Admin", - "Crear Administrador" - ], - [ - "Are you sure you want to remove this member from this organization?", - "¿Estás seguro/a de que quieres eliminar este miembro de la organización?" - ], - [ - "Remove Member", - "Eliminar Miembro" - ], - [ - "Are you sure you want to make this member an admin? Admins can manage vaults, groups and permissions.", - "¿Estas seguro/a de que quieres hacer a este miembro un administrador? Los administradores pueden gestionar alamcenes, grupos y permisos" - ], - [ - "Are you sure you want to remove this member as admin?", - "¿Estás seguro/a de que quieres eliminar a este miembro como administrador?" - ], - [ - "Are you sure you want to suspend this member?", - "¿Estás seguro/a de que quieres suspender a este miembro?" - ], - [ - "Suspend Member", - "Suspender Miembro" - ], - [ - "Groups", - "Grupos" - ], - [ - "Vaults", - "Almacénes" - ], - [ - "read", - "leer" - ], - [ - "write", - "escribir" - ], - [ - "Owner", - "Dueño/a" - ], - [ - "Admin", - "Administrador" - ], - [ - "Suspended", - "Suspendido" - ], - [ - "Items", - "Elementos" - ], - [ - "Orgs & Teams", - "Orgs & Equipos" - ], - [ - "New Organization", - "Nueva Organización" - ], - [ - "Settings", - "Ajustes" - ], - [ - "{0} Items", - "{0} Elementos" - ], - [ - "Move {0} To", - "Mover {0} A" - ], - [ - "No target vaults available!", - "¡No hay almacénes de destino disponibles!" - ], - [ - "Move Item", - "Mover Elemento" - ], - [ - "Move Items", - "Mover Elementos" - ], - [ - "Successfully created {0} invites!", - "¡{0} invitaciones creadas correctamente!" - ], - [ - "Unsuspend", - "Reactivar" - ], - [ - "Are you sure you want to delete this organization? All associated vaults and the data within them will be lost! This action can not be undone.", - "¿Estás seguro/a de que quieres eliminar esta organización? ¡Todos los almacénes asociados y sus datos se perderán! Esta acción no se puede deshacer." - ], - [ - "Delete Organization", - "Eliminar Organización" - ], - [ - "Rename Organization", - "Renombrar Organización" - ], - [ - "Company Name", - "Nombre de Compañía" - ], - [ - "Please enter a name!", - "¡Por favor, introduce un nombre!" - ], - [ - "Do you want to rotate this organizations cryptographic keys? All organization memberships will have to be reconfirmed but no data will be lost.", - "¿Quieres rotar las claves criptográficas de estas organizaciones? Todas las membresías de organización tendran que ser reconfirmadas, pero no se perderá ningún dato." - ], - [ - "The organizations cryptographic keys have been rotated successfully and membership confirmation requests for all members have been sent out.", - "Las claves criptográficas de las organizaciones se han rotado correctamente y las peticiones de confirmación de membresía para todos los miembros han sido enviadas." - ], - [ - "Members", - "Miembros" - ], - [ - "This organization currently does not have an active subscription and has been put in \"frozen\" state as a result. While in this state, you won't be able to make any changes to members, groups or vaults of this organization.", - "Esta organización no tiene una subscripción activa actualmente y ha sido puesta en estado \"congelado\" como resultado. Mientras esté en este estado, no podrás hacer ningún cambio en los miembros, grupos o almacénes de esta organización." - ], - [ - "Update Subscription", - "Actualizar Subscripción" - ], - [ - "New Group", - "Nuevo Grupo" - ], - [ - "New Vault", - "Nuevo Almacén" - ], - [ - "Subscription", - "Nueva Suscripción" - ], - [ - "Billing Info", - "Información de Facturación" - ], - [ - "Security", - "Seguridad" - ], - [ - "Rotate Cryptographic Keys", - "Rotar Claves Criptográficas" - ], - [ - "General", - "General" - ], - [ - "Change Organization Name", - "Cambiar Nombre de Organización" - ], - [ - "Organizations allow you to securely share passwords, documents and other data within your family, team or any other kind of group!", - "!Las Organizaciones te permiten compartir contraseñas, documentos y otros datos de forma segura entre tu familia, equipo o cualquier otro tipo de grupo!" - ], - [ - "Start Trial", - "Empezar Prueba" - ], - [ - "Scan QR Code", - "Escanear Código QR" - ], - [ - "Failed to scan QR code. Error: ", - "Escaneo QR fallido: Error: " - ], - [ - "Please enter your email address and new master password.", - "Por favor, introduce tu dirección email y una nueva contraseña maestra" - ], - [ - "New Master Password", - "Nueva Contraseña Maestra" - ], - [ - "WARNING: Weak Password!", - "AVISO: ¡Contraseña Débil!" - ], - [ - "Repeat Master Password", - "Repite la Contraseña Maestra" - ], - [ - "IMPORTANT, READ CAREFULLY: Padloc is designed in a way that makes it impossible for us to access the data encrypted in any of your vaults even if we wanted to. While this is essential to ensuring the security of your data, it also has the following implications:", - "IMPORTANTE, LEE ATENTAMENTE: Padloc está diseñado de una forma que hace imposible para nosotros acceder a la información encriptada de tus almacénes, incluso aunque quisieramos. Mientras que esto es esencial para asegurar la seguridad de tus datos, también tiene las siguientes implicaciones:" - ], - [ - "Any data stored in your private vault can not be recovered and will be permantently lost.", - "Cualquier dato guardado en tu almacén privado no puede ser recuperado y estará perdido permanentemente" - ], - [ - "All your organization memberships will be suspended temporarily until confirmed by the organization owner.", - "Todas tus membresías de organización serán suspendidas temporalmente hasta que el dueño/a de la organización lo confirme." - ], - [ - "All members of organizations you own will be suspended temporarily until confirmed by you.", - "Todos los miembros de organizaciones de las que seas dueño/a serán temporalmente suspendidas hasta que las confirmes." - ], - [ - "Please enter a master password!", - "¡Por favor, introduce una contraseña maestra!" - ], - [ - "You didn't repeat your master password correctly. Try again!", - "No repetiste tu contraseña maestra correctamente. ¡Inténtalo de nuevo!" - ], - [ - "The password you entered is weak which makes it easier for attackers to break the encryption used to protect your data. Try to use a longer password or include a variation of uppercase, lowercase and special characters as well as numbers!", - "La contraseña que has introducido es débil, lo que hace más fácil a atacantes romper la encriptación usada para proteger tus datos. Intenta usar una contraseña más larga o incluir alguna variación en mayúsculas, minúsculas o caracteres especiales así como números." - ], - [ - "Choose Different Password", - "Elige una Contraseña Diferente" - ], - [ - "Use Anyway", - "Usar de todos modos" - ], - [ - "WARNING: Weak Password", - "AVISO: Contraseña Débil" - ], - [ - "To complete the account recovery process, please enter the confirmation code sent to your email address!", - "¡Para completar el proceso de recuperación de cuenta, por favor, inserta el código de confirmación enviado a tu dirección de email!" - ], - [ - "Account recovery successful!", - "¡Recuperación de contraseña correcta!" - ], - [ - "Report Errors", - "Reportar Errores" - ], - [ - "{0} Errors Detected", - "{0} Errores Detectados" - ], - [ - "Padloc has registered {0} errors during your use of the app. These errors may not have any impact on functionality and can often be ignored, but reporting them may help us diagnose problems, identify possible failure modes and generally improve the stability of the app.", - "Padloc ha registrado {0} errores durante tu uso de la aplicación. Estos errores pueden no tener ningún impacto en la fucionalidad y normalmente pueden ser ignorados, pero reportarlos puede ayudarnos a diagnosticar futuros problemas, identificar posibles fallos y de manera general, mejorar la estabilidad de la aplicación." - ], - [ - "Profile", - "Perfil" - ], - [ - "Log Out", - "Cerrar Sesión" - ], - [ - "Change Master Password", - "Cambiar Contraseña Maestra" - ], - [ - "Auto Lock", - "Bloqueo Automático" - ], - [ - "Lock Automatically", - "Bloquear Automáticamente" - ], - [ - " min", - " min" - ], - [ - "After", - "Después" - ], - [ - "Enable Biometric Unlock", - "Habilitar Desbloqueo Biométrico" - ], - [ - "Import / Export", - "Importar / Exportar" - ], - [ - "Import...", - "Importar..." - ], - [ - "Export...", - "Exportar..." - ], - [ - "Support", - "Soporte" - ], - [ - "Website", - "Sitio Web" - ], - [ - "Contact Support", - "Concactar Soporte" - ], - [ - "Danger Zone", - "Zona de Peligro" - ], - [ - "Delete Account", - "Eliminar Cuenta" - ], - [ - "Edit Profile", - "Editar Perfil" - ], - [ - "Do you really want to log out?", - "¿Seguro que quieres cerrar sesión?" - ], - [ - "Please enter your current password!", - "¡Por favor, inserta tu contraseña actual!" - ], - [ - "Enter Current Password", - "Instar Contraseña Actual" - ], - [ - "Now choose a new master password!", - "¡Ahora elige una contraseña maestra nueva!" - ], - [ - "Enter New Password", - "Insertar Nueva Contraseña" - ], - [ - "Please enter a password!", - "¡Por favor, inserta una contraseña!" - ], - [ - "Please confirm your new password!", - "¡Por favor, confirma tu nueva contraseña!" - ], - [ - "Repeat New Password", - "Repetir Nueva Contraseña" - ], - [ - "Master password changed successfully.", - "Contraseña maestra cambiada correctamente" - ], - [ - "Please enter your master password to proceed.", - "Por favor, inserta tu contraseña maestra para continuar." - ], - [ - "Are you sure you want to delete this account? All associated vaults and the data within them will be lost and any active subscriptions will be canceled immediately. This action can not be undone!", - "¿Estás seguro/a de borrar esta cuenta? Todos los almacénes asociados y sus datos se perderán, y cualquier subscripción activa será cancelada inmediatamente. ¡Esta acción no puede deshacerse!" - ], - [ - "Are you sure you want to disable biometric unlock?", - "¿Estás seguro/a de que quieres deshabilitar el desbloqueo automático?" - ], - [ - "Welcome to Padloc! Let's get you started by creating an account for you.", - "¡Bienveinod a Padloc! Empecemos por crearte una cuenta." - ], - [ - "Your email address serves as your username and allows us to get in touch with you. Don't worry, we would never send you any spam!", - "Tu dirección email sirve como tu nombre de usuario y nos permite ponernos end contacto contigo. ¡No te preocupes, nunca te enviaremos spam!" - ], - [ - "Your Name", - "Tu Nombre" - ], - [ - "What should we call you?", - "¿Cómo debemos llamarte?" - ], - [ - "Continue", - "Continuar" - ], - [ - "Already have an account?", - "¿Ya tienes una cuenta?" - ], - [ - "Sign In", - "Iniciar Sesión" - ], - [ - "You've Got Mail!", - "¡Tienes Correo!" - ], - [ - "To verify your email address, please enter the confirmation code we sent to {0}.", - "Para verificar tu dirección de correo electrónico, introduzca el código de confirmación que enviamos a {0}." - ], - [ - "Confirmation Code", - "Código de Confirmación" - ], - [ - "Say hello to your", - "Di hola a tu" - ], - [ - "It's the last password you'll ever have to remember! Please memorize it and never reveal it to anyone (not even us)! We recommend writing it down on a piece of paper and storing it somewhere safe, at least until you have it safely memorized.", - "¡Esta es la última contraseña que tendras que recordar! ¡Por favor, memorizala y nunca la reveles a nadie (ni tan siquiera a nosotros)! Te recomendamos que la escribas en papel y la guardes en algún lugar seguro, al menos hasta que la hayas memorizado de forma segura." - ], - [ - "[Tap To Reveal]", - "[Pulsa para Mostrar]" - ], - [ - "[Hover To Reveal]", - "[Pasa por encima para Mostrar]" - ], - [ - "This random passphrase was generated just for you and is designed to be both secure and easy to remember. Don't like it?", - "Esta frase de contraseña aleatoria fue generada sólo para tí, y está diseñada para ser a la vez segura y fácil de recordar. ¿No te gusta?" - ], - [ - "Try Another One", - "Intenta una nueva" - ], - [ - "Choose Your Own", - "Elige la tuya" - ], - [ - "An account with this email address already exists!", - "¡Una cuenta con esta dirección email ya existe!" - ], - [ - "Change Email", - "Cambiar Email" - ], - [ - "We recommend using a randomly generated password that is both strong and easy to remember.", - "Te recomendamos usar una contraseña generada aleatoriamente que sea a la vez fuerte y fácil de recordar." - ], - [ - "Keep This One", - "Mantener Esta" - ], - [ - "Generate Another", - "Generar Otra" - ], - [ - "Choose My Own", - "Elegir Una Propia" - ], - [ - "Want A Different Master Password?", - "¿Quieres Una Contraseña Maestra Diferente?" - ], - [ - "Choose Own Master Password", - "Elegir Una Contraseña Maestra Propia" - ], - [ - "Resume Subscription", - "Reactivar Subscripción" - ], - [ - "Cancel Subscription", - "Cancelar Subscripción" - ], - [ - "Update Plan", - "Actualizar Plan" - ], - [ - "Are you sure you want to downgrade to the Free Plan?", - "¿Estás seguro/a de que quieres degradar al Plan Gratuito?" - ], - [ - "Downgrade", - "Degradar" - ], - [ - "No Plan Selected", - "Sin Plan Seleccionado" - ], - [ - "Unlimited", - "Ilimitado" - ], - [ - "{0} / Year", - "{0} / Año" - ], - [ - "Canceled ({0} days left)", - "Cancelado (quedan {0} días)" - ], - [ - "Authentication Required", - "Autenticación Requerida" - ], - [ - "Inactive", - "Inactivo" - ], - [ - "Trialing ({0} days left)", - "Prueba (quedan {0} días)" - ], - [ - "Choose Plan", - "Elegir Plan" - ], - [ - "Complete Payment", - "Completar Pago" - ], - [ - "Downgrade To Free Plan", - "Degradar al Plan Gratuito" - ], - [ - "Add Tag", - "Añadir Etiqueta" - ], - [ - "Choose A Template", - "Elige una Etiqueta" - ], - [ - "What kind of item you would like to add?", - "¿Qué tipo de elemento te gustaría añadir?" - ], - [ - "Invalid Code", - "Código Invalido" - ], - [ - "Logged In As", - "Sesión Iniciada Como" - ], - [ - "Unlock", - "Desbloquear" - ], - [ - "Wrong password! Please try again.", - "¡Contraseña incorrecta! Por favor, inténtalo de nuevo." - ], - [ - "Logout / Switch Account", - "Cerrar Sesión / Cambiar Cuenta" - ], - [ - "Forgot Password", - "Olvidé mi Contraseña" - ], - [ - "Are you sure you want to log out of this account?", - "¿Estás seguro/a de que quieres cerrar la sesión de esta cuenta?" - ], - [ - "Biometric unlock expired. Complete setup to reeneable.", - "Desbloqueo Biométrico expirado. Completa la configuración para rehabilitarlo." - ], - [ - "Biometric unlock failed! Reason: {0}", - "¡Desbloqueo Biométrico fallido! Motivo: {0}" - ], - [ - "Failed To Unlock", - "Fallo al Desbloquear" - ], - [ - "Update", - "Actualizar" - ], - [ - "Storage limit exceeded!", - "¡Límite de Almacénamiento superado!" - ], - [ - "Upload failed! Please try again!", - "¡Carga fallida! ¡Por favor, inténtalo de nuevo!" - ], - [ - "Upload Attachment", - "Cargar Adjunto" - ], - [ - "Unkown File Type", - "Tipo de Fichero Desconocido" - ], - [ - "Retry Upload", - "Reintentar Carga" - ], - [ - "Upload", - "Cargar" - ], - [ - "Are you sure you want to delete this vault? All the data stored in it will be lost! This action can not be undone.", - "¿Estás seguro/a de que quieres eliminar este almacén? ¡Todos los datos guardados en el mismo se perderán! Esta acción no se puede deshacer." - ], - [ - "Delete Vault", - "Eliminar Almacén" - ], - [ - "Enter Vault Name", - "Insertar Nombre de Almacén" - ], - [ - "Username", - "Nombre de Usuario" - ], - [ - "Password", - "Contraseña" - ], - [ - "URL", - "URL" - ], - [ - "Notes", - "Notas" - ], - [ - "Your session has expired. Please log in again!", - "Tu sesión ha expirado. ¡Por favor, Inicia sesión de nuevo!" - ], - [ - "A new update is ready to install! Do you want to install it now?", - "¡Una nueva actualización está lista para ser instalada! ¿Quieres instalarla ahora?" - ], - [ - "Install & Reload", - "Instalar & Recargar" - ], - [ - "Later", - "Después" - ], - [ - "Date", - "Fecha" - ], - [ - "Month", - "Mes" - ], - [ - "Credit Card Number", - "Número de Tarjeta de Crédito" - ], - [ - "Phone Number", - "Número de Teléfono" - ], - [ - "PIN", - "PIN" - ], - [ - "2FA Token", - "Token de 2FA" - ], - [ - "Note", - "Nota" - ], - [ - "Other", - "Otro" - ], - [ - "Credit Card", - "Tarjeta de Crédito" - ], - [ - "Card Number", - "Número de Tarjeta" - ], - [ - "Card Owner", - "Dueño de la Tarjeta" - ], - [ - "Valid Until", - "Válido Hasta" - ], - [ - "CVC", - "CVC" - ], - [ - "Bank Account", - "Número De Cuenta" - ], - [ - "Account Owner", - "Dueño de la Cuenta" - ], - [ - "IBAN", - "IBAN" - ], - [ - "BIC", - "BIC" - ], - [ - "Card PIN", - "PIN de la Tarjeta" - ], - [ - "WIFI Password", - "Contraseña WIFI" - ], - [ - "Passport", - "Pasaporte" - ], - [ - "Full Name", - "Nombre Completo" - ], - [ - "Passport Number", - "Número de Pasaporte" - ], - [ - "Country", - "País" - ], - [ - "Birthdate", - "Fecha de Nacimiento" - ], - [ - "Birthplace", - "Lugar de Nacimiento" - ], - [ - "Issued On", - "Emitido en" - ], - [ - "Expires", - "Expira" - ], - [ - "Document", - "Documento" - ], - [ - "Custom", - "Personalizado" - ], - [ - "{0} on {1}", - "{0} de {1}" - ], - [ - "{0} Device", - "{0} Dispositivo" - ] + ["OK", "OK"], + ["o f f l i n e", "o f f l i n e"], + ["Could not find invite! Did you use the correct link?", "¡No se econtró la invitación! ¿Usaste el link correcto?"], + ["Get Premium", "Obtén Premium"], + ["Cancel", "Cancelar"], + [ + "It looks like the app cannot connect to the Padloc servers right now, probably due to a missing internet connection. You can still access your vaults and even create or edit Vault Items but your changes won't be synchronized until you're back online.", + "Parece que la aplicaión no puede conectar con los servidores de Padloc en este momento, probablemente debido a que no hay conexión a internet. Aún puedes acceder a tus alamacenes e incluso crear o editar sus elementos pero tus cambios no serán sincronizados hasta que vuelvas a tener conexión." + ], + ["You're Offline", "Estás Offline"], + [ + "Do you want to enable biometric unlock for this device?", + "¿Quieres habilitar el desbloqueo biométrico para este dispositivo?" + ], + ["Setup", "Configurar"], + ["Biometric Unlock", "Desbloqueo Biométrico"], + [ + "Biometric authentication failed! Canceling Setup.", + "¡Autenticación Biométrica fallida! Cancelando Configuración." + ], + ["Setup Failed", "Configuración Fallida"], + [ + "Biometric unlock failed! Canceling Setup. (Reason: {0})", + "¡Desbloqueo Biométrico fallido! Cancelando Configuración. (Motivo: {0})" + ], + ["Please enter your master password!", "¡Por favor, introduce tu contraseña maestra!"], + ["Enter Master Password", "Introduce tu Contraseña Maestra"], + ["Wrong password! Please try again!", "¡Contraseña errónea! ¡Por favor, inténtalo de nuevo!"], + ["Biometric unlock activated successfully!", "!Desbloqueo biométrico activado correctamente!"], + ["Are you sure you want to delete this attachment?", "¿Estás seguro de que quieres eliminar este adjunto?"], + ["Delete", "Eliminar"], + ["Delete Attachment", "Eliminar adjunto"], + ["Download failed!", "¡Descarga fallida!"], + [ + "Do you want to save this file to your disk? WARNING: Doing this will leave the file exposed and unprotected on your harddrive!", + "¿Quieres guardar este archivo en tu disco? AVISO: ¡Hacer esto deja el archivo expuesto y desprotegido en tu disco duro!" + ], + ["Save", "Guardar"], + ["Save To Disk", "Guardar En Disco"], + ["Edit Name", "Editar Nombre"], + ["Attachment Name", "Nombre de Adjunto"], + ["Please enter an attachment name!", "¡Por favor, introduce un nombre para el adjunto!"], + ["Unknown File Type", "Tipo de Archivo Desconocido"], + ["downloading... {0}/{1}", "descargando... {0}/{1}"], + ["Unnamed", "Sin nombre"], + ["uploading... {0}/{1}", "cargando... {0}/{1}"], + ["Failed to upload!", "¡Carga fallida!"], + ["Failed to download! Click to try again.", "¡Fallo en la descarga! Click para intentarlo de nuevo"], + ["Update Billing Info", "Actualizar Información de Facturación"], + ["Select A Country", "Selecciona Un País"], + [ + "To update your billing info and payment method, please log in through our website (found under \"Settings\") or contact us at ", + "" + ], + ["Payment Details", "Detalles de Pago"], + ["Billing Address", "Dirección de Facturación"], + ["Billing Email", "Email de Facturación"], + ["Name", "Nombre"], + ["Address", "Dirección"], + ["Postal Code", "Código Postal"], + ["City", "Ciudad"], + ["Tax Info", "Información de Tasas"], + ["This is a business", "Esto es un negocio"], + ["Tax ID", "ID de Tasa"], + ["Coupon Code", "Código de Cupón"], + ["Add Later", "Añadir Después"], + ["Something went wrong. Please try again later!", "Algo salió mal. ¡Por favor, inténtalo de nuevo!"], + ["Add Payment Method", "Añadir Método de Pago"], + ["per user / month", "por usuario / mes"], + ["USD, billed annually", "USD, cargado anualmente"], + ["Try For Free", "Prueba Gratuita"], + ["Please enter at least one email address!", "¡Por favor, introduce al menos una dirección de email!"], + [ + "You have entered too many email addresses! Please delete some before submitting!", + "¡Has introducido demasiadas direcciones de email! ¡Por favor, elimina algunas antes de enviar!" + ], + [ + "Some of the emails you entered appear to be invalid!", + "!Parece que algunos emails que has introducido no son válidos!" + ], + ["Something went wrong! Please try again later!", "¡Algo salió mal! ¡Por favor, inténtalo de nuevo más tarde!"], + ["Invite New Members", "Invitar A Nuevos Miembros"], + [ + "Please enter up to {0} email addresses of the persons you would like to invite, separated by spaces or commas!", + "¡Por favor, introduce hasta {0} direcciones de email de personas a las que quieres invitar, separadas por espacios o comas!" + ], + ["Enter Email Address", "Introduce Email"], + ["Submit", "Enviar"], + ["New Vault Item", "Nuevo Elemento de Almacén"], + ["Item Name", "Nombre del Elemento"], + ["Template", "Plantilla"], + ["Vault", "Almacén"], + ["Create & Edit", "Crear & Editar"], + [ + "You have reached the maximum number of items for this account. Upgrade to Premium to get unlimited items for your private vault!", + "Has alcanzado el número máximo de elementos para esta cuenta. ¡Actualiza a Premium para obtener un número ilimidado de elementos para tu almacén privado!" + ], + [ + "You have reached the maximum number of items for this account!", + "¡Has alcanzado el número máximo de elementos para esta cuenta!" + ], + ["Please enter an organization name!", "¡Por favor, introduce un nombre de organización!"], + ["Free For {0} Days", "Gratis Durante {0} Días"], + ["then", "entonces"], + ["per month", "por mes"], + ["{0} min", "{0} min"], + ["{0} max", "{0} max"], + ["Seats", "Plazas"], + ["Add Billing Info", "Añadir Información de Facturación"], + ["Create Organization", "Crear Organización"], + ["Organization Name", "Nombre de Organización"], + ["Create", "Crear"], + ["Export Data", "Exportar Datos"], + ["Target Vault", "Almacén de Destino"], + ["Format", "Formato"], + [ + "WARNING: Exporting to CSV format will save your data without encyryption of any kind which means it can be read by anyone. We strongly recommend exporting your data as a secure, encrypted file, instead!", + "AVISO: Exportar con formato CSV guardará tus datos sin ninguna encriptación, lo que significa que podrán ser leidos por cualquiera. !Te recomentados que exportes tus datos como un archivo encriptado seguro en su lugar!" + ], + ["Export {0} Items", "Exportar {0} Elementos"], + [ + "Please choose a password to protect this backup with!", + "!Por favor, elige una contraseña para proteger este backup!" + ], + ["Choose Password", "Elige Contraseña"], + ["Please choose a password!", "¡Por favor, introduce una contraseña!"], + ["Please repeat the password!", "¡Por favor, repite la contraseña!"], + ["Password not repeated correctly!", "¡Contraseña repetida incorrecta!"], + ["Choose A Field Type", "Elige Un Tipo de Campo"], + ["What kind of field you would like to add?", "¿Que tipo de campo quieres añadir?"], + ["Enter Notes Here", "Introduce Notas Aquí"], + ["Enter Secret", "Introduce Secreto"], + ["Enter Password", "Introduce Contraseña"], + ["Enter Value Here", "Introduce Valor Aquí"], + ["Enter Field Name", "Introduce Nombre de Campo"], + ["Dash", "Guión"], + ["Underscore", "Guión Bajo"], + ["Slash", "Barra Oblícua"], + ["Space", "Espacio"], + ["Generate Password", "Generar Contraseña"], + ["passphrase", "frase de contraseña"], + ["random string", "cadena de texto aleatoria"], + ["Word Separator", "Separador de Palabra"], + ["Language", "Idioma"], + ["words", "palabras"], + ["length", "longitud"], + ["Use", "Usar"], + ["Discard", "Descartar"], + ["Are you sure you want to delete this group?", "¿Estás seguro/a de que quieres eliminar este grupo?"], + ["Delete Group", "Eliminar Groupo"], + ["Type 'DELETE' to confirm", "Escribe 'DELETE' para confirmar"], + ["Enter Group Name", "Introduce Nombre de Grupo"], + ["Search...", "Buscar..."], + ["Import Data", "Importar Datos"], + [ + "IMPORTANT: Before importing, please make sure that your CSV data is structured according to Padlocks specific requirements!", + "IMPORTANTE: !Antes de importar, por favor, asegurate de que tus CSV está estructurado de acuerdo con los requerimientos específicos de Padlock!" + ], + ["Learn More", "Aprender Más"], + ["Import {0} Items", "Importar {0} Elementos"], + ["This file is protected by a password.", "Este archivo está protegido mediante una contraseña."], + ["Wrong Password", "Contraseña Incorrecta"], + [ + "The number of imported items exceeds your remaining quota. Upgrade to Premium to get unlimited items for your private vault!", + "El número de elementos importados supera tu quota restante. ¡Actualiza a Premium para obtener un número ilimitado de elementos para tu almacén privado!" + ], + [ + "The number of imported items exceeds your remaining quota.", + "El número de elementos importados supera tu quota restante." + ], + ["Successfully imported {0} items.", "{0} elementos importados correctamente"], + ["This invite has expired", "Esta invitación ha expirado"], + ["Accepted", "Aceptado"], + ["expires {0}", "expira {0}"], + ["Confirm Membership", "Confirmar Membresía"], + ["Organization Invite", "Invitación de Organización"], + [ + "Please wait for an admin to complete the process. You will be notified as soon as you receive access.", + "Por favor, espera a que un administrador complete el proceso. Serás notificado/a tan pronto como recibas acceso." + ], + ["Enter Confirmation Code", "Introduce Código de Confirmación"], + [ + "If you haven't received the confirmation code yet, please ask the organization owner to provide it to you!", + "¡Si aún no has recibido el código de confirmación, por favor, pídeselo al dueño/a de la organización!" + ], + [ + "They will also need the following confirmation code, which you should communicate to them separately:", + "También necesitarán el siguiente código de confirmación, el cual deberás comunicarles de forma separada:" + ], + ["Resend", "Reenviar"], + ["Please enter a confirmation code!", "¡Por favor, introduce un código de confirmación!"], + [ + "You have successfully accepted the invite. You'll be notified once you've been granted access.", + "Has aceptado la invitación correctamente. Serás notificado/a una vez que se te haya concedido acceso." + ], + [ + "Wrong confirmation code. Please try again!", + "Código de confirmación incorrecto. ¡Por favor, intentalo de nuevo!" + ], + ["expired", "expirado"], + ["accepted", "aceptado"], + ["{0}", "{0}"], + ["Confirm", "Confirmar"], + ["Confirmation Code:", "Código de Confirmación:"], + [ + "Upgrade to Premium now and get 1GB of encrypted file storage!", + "¡Actualiza a Premium ahora y obtén 1GB de espacio encriptado!" + ], + ["Enter Item Name", "Introduce Nombre de Elemento"], + ["Field", "Campo"], + ["Attachment", "Adjunto"], + ["Move", "Mover"], + ["by {0}", "por {0}"], + ["Are you sure you want to delete this item?", "¿Estás seguro/a de que quieres eliminar este elemento?"], + ["Items with attachments cannot be moved!", "¡Elementos con adjuntos no se pueden mover!"], + [ + "The selected file is too large! Only files of up to 5 MB are supported.", + "¡El archivo seleccionado es demasiado grande! Sólo archivos de hasta 5 MB son soportados." + ], + ["File uploaded successfully!", "¡Archivo cargado correctamente!"], + ["Favorites", "Favoritos"], + ["Recently Used", "Usados Recientemente"], + ["Attachments", "Adjuntos"], + ["All Items", "Todos los Elementos"], + ["My Vault", "Mi Almacén"], + ["Tags", "Etiquetas"], + ["You don't have any tags yet.", "Aún no tienes etiquetas."], + ["Your search did not match any items.", "Tu búsqueda no encontró ningún elemento."], + ["This vault does not have any items yet.", "Este almacén aún no tiene elementos."], + ["You don't have any attachments yet.", "Aún no tienes adjuntos."], + ["You don't have any favorites yet.", "Aún no tienes favoritos."], + ["You don't have any recently used items!", "¡No tienes ningún elemento usado recientemente!"], + ["You don't have any items yet.", "Aún no tienes elementos."], + ["Type To Search", "Escribe Para Buscar"], + ["{0} items selected", "{0} elementos seleccionados"], + [ + "Some items in your selection are from Vaults you don't have write access to and cannot be deleted. Do you want to proceed deleting the other items?", + "Algunos elementos en tu selección son de Almacénes sobre los que no tienes permiso de escritura y no se pueden eliminar. ¿Quieres proceder a eliminar el resto de elementos?" + ], + ["Yes", "Sí"], + ["No", "No"], + [ + "Are you sure you want to delete these items? This action can not be undone!", + "¿Estás seguro/a de que quieres eliminar estos elementos? ¡Esta acción no se puede deshacer!" + ], + ["Delete {0} Items", "Eliminar {0} Elementos"], + [ + "Some items in your selection have attachments and cannot be moved. Do you want to proceed moving the other items?", + "Algunos elementos en tu selección tienen adjuntos y no se pueden mover. ¿Quieres proceder a mover el resto de elementos?" + ], + [ + "Some items in your selection are from Vaults you don't have write access to and cannot be moved. Do you want to proceed moving the other items?", + "Algunos elementos en tu selección son de Almacénes sobre los que no tienes premiso de escritura y no se pueden mover. ¿Quieres proceder a mover el resto de elementos?" + ], + ["No Name", "Sin Nombre"], + ["copied", "copiado"], + ["No Fields", "Sin Campos"], + ["This item has no fields.", "Este elemento no tiene campos."], + ["Email Address", "Dirección Email"], + ["Master Password", "Contraseña Maestra"], + ["Login", "Iniciar Sesión"], + ["New to Padloc?", "¿Nuevo/a en Padloc?"], + ["Sign Up Now", "Regístrate Ahora"], + ["Please enter a valid email address!", "¡Por favor, introduce una dirección email válida!"], + [ + "Please enter the confirmation code sent to your email address to proceed!", + "¡Por favor, introduce el código de confirmación enviado a tu dirección email para continuar!" + ], + ["One Last Step!", "¡Un Último Paso!"], + ["Enter Verification Code", "Introduce el Código de Verificación"], + [ + "Maximum number of tries exceeded! Please resubmit and try again!", + "¡Número máximo de intentos sobrepasado! ¡Por favor, reenvía e inténtalo de nuevo!" + ], + [ + "Wrong username or password. Please try again!", + "usuario o contraseña incorrectos. ¡Por favor, inténtalo de nuevo!" + ], + ["Can't remember your master password?", "¿No puedes recordar tu contraseña maestra?"], + ["Recover Account", "Recuperar Cuenta"], + ["Try Again", "Inténtalo de Nuevo"], + ["An account with this email address does not exist!", "¡No existe una cuenta con esta dirección de email!"], + ["Sign Up", "Regístrate"], + ["Remove", "Eliminar"], + ["Suspend", "Suspender"], + ["Remove Admin", "Eliminar Administrador"], + ["Make Admin", "Crear Administrador"], + [ + "Are you sure you want to remove this member from this organization?", + "¿Estás seguro/a de que quieres eliminar este miembro de la organización?" + ], + ["Remove Member", "Eliminar Miembro"], + [ + "Are you sure you want to make this member an admin? Admins can manage vaults, groups and permissions.", + "¿Estas seguro/a de que quieres hacer a este miembro un administrador? Los administradores pueden gestionar alamcenes, grupos y permisos" + ], + [ + "Are you sure you want to remove this member as admin?", + "¿Estás seguro/a de que quieres eliminar a este miembro como administrador?" + ], + ["Are you sure you want to suspend this member?", "¿Estás seguro/a de que quieres suspender a este miembro?"], + ["Suspend Member", "Suspender Miembro"], + ["Groups", "Grupos"], + ["Vaults", "Almacénes"], + ["read", "leer"], + ["write", "escribir"], + ["Owner", "Dueño/a"], + ["Admin", "Administrador"], + ["Suspended", "Suspendido"], + ["Items", "Elementos"], + ["Orgs & Teams", "Orgs & Equipos"], + ["New Organization", "Nueva Organización"], + ["Settings", "Ajustes"], + ["{0} Items", "{0} Elementos"], + ["Move {0} To", "Mover {0} A"], + ["No target vaults available!", "¡No hay almacénes de destino disponibles!"], + ["Move Item", "Mover Elemento"], + ["Move Items", "Mover Elementos"], + ["Successfully created {0} invites!", "¡{0} invitaciones creadas correctamente!"], + ["Unsuspend", "Reactivar"], + [ + "Are you sure you want to delete this organization? All associated vaults and the data within them will be lost! This action can not be undone.", + "¿Estás seguro/a de que quieres eliminar esta organización? ¡Todos los almacénes asociados y sus datos se perderán! Esta acción no se puede deshacer." + ], + ["Delete Organization", "Eliminar Organización"], + ["Rename Organization", "Renombrar Organización"], + ["Company Name", "Nombre de Compañía"], + ["Please enter a name!", "¡Por favor, introduce un nombre!"], + [ + "Do you want to rotate this organizations cryptographic keys? All organization memberships will have to be reconfirmed but no data will be lost.", + "¿Quieres rotar las claves criptográficas de estas organizaciones? Todas las membresías de organización tendran que ser reconfirmadas, pero no se perderá ningún dato." + ], + [ + "The organizations cryptographic keys have been rotated successfully and membership confirmation requests for all members have been sent out.", + "Las claves criptográficas de las organizaciones se han rotado correctamente y las peticiones de confirmación de membresía para todos los miembros han sido enviadas." + ], + ["Members", "Miembros"], + [ + "This organization currently does not have an active subscription and has been put in \"frozen\" state as a result. While in this state, you won't be able to make any changes to members, groups or vaults of this organization.", + "Esta organización no tiene una subscripción activa actualmente y ha sido puesta en estado \"congelado\" como resultado. Mientras esté en este estado, no podrás hacer ningún cambio en los miembros, grupos o almacénes de esta organización." + ], + ["Update Subscription", "Actualizar Subscripción"], + ["New Group", "Nuevo Grupo"], + ["New Vault", "Nuevo Almacén"], + ["Subscription", "Nueva Suscripción"], + ["Billing Info", "Información de Facturación"], + ["Security", "Seguridad"], + ["Rotate Cryptographic Keys", "Rotar Claves Criptográficas"], + ["General", "General"], + ["Change Organization Name", "Cambiar Nombre de Organización"], + [ + "Organizations allow you to securely share passwords, documents and other data within your family, team or any other kind of group!", + "!Las Organizaciones te permiten compartir contraseñas, documentos y otros datos de forma segura entre tu familia, equipo o cualquier otro tipo de grupo!" + ], + ["Start Trial", "Empezar Prueba"], + ["Scan QR Code", "Escanear Código QR"], + ["Failed to scan QR code. Error: ", "Escaneo QR fallido: Error: "], + [ + "Please enter your email address and new master password.", + "Por favor, introduce tu dirección email y una nueva contraseña maestra" + ], + ["New Master Password", "Nueva Contraseña Maestra"], + ["WARNING: Weak Password!", "AVISO: ¡Contraseña Débil!"], + ["Repeat Master Password", "Repite la Contraseña Maestra"], + [ + "IMPORTANT, READ CAREFULLY: Padloc is designed in a way that makes it impossible for us to access the data encrypted in any of your vaults even if we wanted to. While this is essential to ensuring the security of your data, it also has the following implications:", + "IMPORTANTE, LEE ATENTAMENTE: Padloc está diseñado de una forma que hace imposible para nosotros acceder a la información encriptada de tus almacénes, incluso aunque quisieramos. Mientras que esto es esencial para asegurar la seguridad de tus datos, también tiene las siguientes implicaciones:" + ], + [ + "Any data stored in your private vault can not be recovered and will be permantently lost.", + "Cualquier dato guardado en tu almacén privado no puede ser recuperado y estará perdido permanentemente" + ], + [ + "All your organization memberships will be suspended temporarily until confirmed by the organization owner.", + "Todas tus membresías de organización serán suspendidas temporalmente hasta que el dueño/a de la organización lo confirme." + ], + [ + "All members of organizations you own will be suspended temporarily until confirmed by you.", + "Todos los miembros de organizaciones de las que seas dueño/a serán temporalmente suspendidas hasta que las confirmes." + ], + ["Please enter a master password!", "¡Por favor, introduce una contraseña maestra!"], + [ + "You didn't repeat your master password correctly. Try again!", + "No repetiste tu contraseña maestra correctamente. ¡Inténtalo de nuevo!" + ], + [ + "The password you entered is weak which makes it easier for attackers to break the encryption used to protect your data. Try to use a longer password or include a variation of uppercase, lowercase and special characters as well as numbers!", + "La contraseña que has introducido es débil, lo que hace más fácil a atacantes romper la encriptación usada para proteger tus datos. Intenta usar una contraseña más larga o incluir alguna variación en mayúsculas, minúsculas o caracteres especiales así como números." + ], + ["Choose Different Password", "Elige una Contraseña Diferente"], + ["Use Anyway", "Usar de todos modos"], + ["WARNING: Weak Password", "AVISO: Contraseña Débil"], + [ + "To complete the account recovery process, please enter the confirmation code sent to your email address!", + "¡Para completar el proceso de recuperación de cuenta, por favor, inserta el código de confirmación enviado a tu dirección de email!" + ], + ["Account recovery successful!", "¡Recuperación de contraseña correcta!"], + ["Report Errors", "Reportar Errores"], + ["{0} Errors Detected", "{0} Errores Detectados"], + [ + "Padloc has registered {0} errors during your use of the app. These errors may not have any impact on functionality and can often be ignored, but reporting them may help us diagnose problems, identify possible failure modes and generally improve the stability of the app.", + "Padloc ha registrado {0} errores durante tu uso de la aplicación. Estos errores pueden no tener ningún impacto en la fucionalidad y normalmente pueden ser ignorados, pero reportarlos puede ayudarnos a diagnosticar futuros problemas, identificar posibles fallos y de manera general, mejorar la estabilidad de la aplicación." + ], + ["Profile", "Perfil"], + ["Log Out", "Cerrar Sesión"], + ["Change Master Password", "Cambiar Contraseña Maestra"], + ["Auto Lock", "Bloqueo Automático"], + ["Lock Automatically", "Bloquear Automáticamente"], + [" min", " min"], + ["After", "Después"], + ["Enable Biometric Unlock", "Habilitar Desbloqueo Biométrico"], + ["Import / Export", "Importar / Exportar"], + ["Import...", "Importar..."], + ["Export...", "Exportar..."], + ["Support", "Soporte"], + ["Website", "Sitio Web"], + ["Contact Support", "Concactar Soporte"], + ["Danger Zone", "Zona de Peligro"], + ["Delete Account", "Eliminar Cuenta"], + ["Edit Profile", "Editar Perfil"], + ["Do you really want to log out?", "¿Seguro que quieres cerrar sesión?"], + ["Please enter your current password!", "¡Por favor, inserta tu contraseña actual!"], + ["Enter Current Password", "Instar Contraseña Actual"], + ["Now choose a new master password!", "¡Ahora elige una contraseña maestra nueva!"], + ["Enter New Password", "Insertar Nueva Contraseña"], + ["Please enter a password!", "¡Por favor, inserta una contraseña!"], + ["Please confirm your new password!", "¡Por favor, confirma tu nueva contraseña!"], + ["Repeat New Password", "Repetir Nueva Contraseña"], + ["Master password changed successfully.", "Contraseña maestra cambiada correctamente"], + ["Please enter your master password to proceed.", "Por favor, inserta tu contraseña maestra para continuar."], + [ + "Are you sure you want to delete this account? All associated vaults and the data within them will be lost and any active subscriptions will be canceled immediately. This action can not be undone!", + "¿Estás seguro/a de borrar esta cuenta? Todos los almacénes asociados y sus datos se perderán, y cualquier subscripción activa será cancelada inmediatamente. ¡Esta acción no puede deshacerse!" + ], + [ + "Are you sure you want to disable biometric unlock?", + "¿Estás seguro/a de que quieres deshabilitar el desbloqueo automático?" + ], + [ + "Welcome to Padloc! Let's get you started by creating an account for you.", + "¡Bienveinod a Padloc! Empecemos por crearte una cuenta." + ], + [ + "Your email address serves as your username and allows us to get in touch with you. Don't worry, we would never send you any spam!", + "Tu dirección email sirve como tu nombre de usuario y nos permite ponernos end contacto contigo. ¡No te preocupes, nunca te enviaremos spam!" + ], + ["Your Name", "Tu Nombre"], + ["What should we call you?", "¿Cómo debemos llamarte?"], + ["Continue", "Continuar"], + ["Already have an account?", "¿Ya tienes una cuenta?"], + ["Sign In", "Iniciar Sesión"], + ["You've Got Mail!", "¡Tienes Correo!"], + [ + "To verify your email address, please enter the confirmation code we sent to {0}.", + "Para verificar tu dirección de correo electrónico, introduzca el código de confirmación que enviamos a {0}." + ], + ["Confirmation Code", "Código de Confirmación"], + ["Say hello to your", "Di hola a tu"], + [ + "It's the last password you'll ever have to remember! Please memorize it and never reveal it to anyone (not even us)! We recommend writing it down on a piece of paper and storing it somewhere safe, at least until you have it safely memorized.", + "¡Esta es la última contraseña que tendras que recordar! ¡Por favor, memorizala y nunca la reveles a nadie (ni tan siquiera a nosotros)! Te recomendamos que la escribas en papel y la guardes en algún lugar seguro, al menos hasta que la hayas memorizado de forma segura." + ], + ["[Tap To Reveal]", "[Pulsa para Mostrar]"], + ["[Hover To Reveal]", "[Pasa por encima para Mostrar]"], + [ + "This random passphrase was generated just for you and is designed to be both secure and easy to remember. Don't like it?", + "Esta frase de contraseña aleatoria fue generada sólo para tí, y está diseñada para ser a la vez segura y fácil de recordar. ¿No te gusta?" + ], + ["Try Another One", "Intenta una nueva"], + ["Choose Your Own", "Elige la tuya"], + ["An account with this email address already exists!", "¡Una cuenta con esta dirección email ya existe!"], + ["Change Email", "Cambiar Email"], + [ + "We recommend using a randomly generated password that is both strong and easy to remember.", + "Te recomendamos usar una contraseña generada aleatoriamente que sea a la vez fuerte y fácil de recordar." + ], + ["Keep This One", "Mantener Esta"], + ["Generate Another", "Generar Otra"], + ["Choose My Own", "Elegir Una Propia"], + ["Want A Different Master Password?", "¿Quieres Una Contraseña Maestra Diferente?"], + ["Choose Own Master Password", "Elegir Una Contraseña Maestra Propia"], + ["Resume Subscription", "Reactivar Subscripción"], + ["Cancel Subscription", "Cancelar Subscripción"], + ["Update Plan", "Actualizar Plan"], + [ + "Are you sure you want to downgrade to the Free Plan?", + "¿Estás seguro/a de que quieres degradar al Plan Gratuito?" + ], + ["Downgrade", "Degradar"], + ["No Plan Selected", "Sin Plan Seleccionado"], + ["Unlimited", "Ilimitado"], + ["{0} / Year", "{0} / Año"], + ["Canceled ({0} days left)", "Cancelado (quedan {0} días)"], + ["Authentication Required", "Autenticación Requerida"], + ["Inactive", "Inactivo"], + ["Trialing ({0} days left)", "Prueba (quedan {0} días)"], + ["Choose Plan", "Elegir Plan"], + ["Complete Payment", "Completar Pago"], + ["Downgrade To Free Plan", "Degradar al Plan Gratuito"], + ["Add Tag", "Añadir Etiqueta"], + ["Choose A Template", "Elige una Etiqueta"], + ["What kind of item you would like to add?", "¿Qué tipo de elemento te gustaría añadir?"], + ["Invalid Code", "Código Invalido"], + ["Logged In As", "Sesión Iniciada Como"], + ["Unlock", "Desbloquear"], + ["Wrong password! Please try again.", "¡Contraseña incorrecta! Por favor, inténtalo de nuevo."], + ["Logout / Switch Account", "Cerrar Sesión / Cambiar Cuenta"], + ["Forgot Password", "Olvidé mi Contraseña"], + [ + "Are you sure you want to log out of this account?", + "¿Estás seguro/a de que quieres cerrar la sesión de esta cuenta?" + ], + [ + "Biometric unlock expired. Complete setup to reeneable.", + "Desbloqueo Biométrico expirado. Completa la configuración para rehabilitarlo." + ], + ["Biometric unlock failed! Reason: {0}", "¡Desbloqueo Biométrico fallido! Motivo: {0}"], + ["Failed To Unlock", "Fallo al Desbloquear"], + ["Update", "Actualizar"], + ["Storage limit exceeded!", "¡Límite de Almacénamiento superado!"], + ["Upload failed! Please try again!", "¡Carga fallida! ¡Por favor, inténtalo de nuevo!"], + ["Upload Attachment", "Cargar Adjunto"], + ["Unkown File Type", "Tipo de Fichero Desconocido"], + ["Retry Upload", "Reintentar Carga"], + ["Upload", "Cargar"], + [ + "Are you sure you want to delete this vault? All the data stored in it will be lost! This action can not be undone.", + "¿Estás seguro/a de que quieres eliminar este almacén? ¡Todos los datos guardados en el mismo se perderán! Esta acción no se puede deshacer." + ], + ["Delete Vault", "Eliminar Almacén"], + ["Enter Vault Name", "Insertar Nombre de Almacén"], + ["Username", "Nombre de Usuario"], + ["Password", "Contraseña"], + ["URL", "URL"], + ["Notes", "Notas"], + ["Your session has expired. Please log in again!", "Tu sesión ha expirado. ¡Por favor, Inicia sesión de nuevo!"], + [ + "A new update is ready to install! Do you want to install it now?", + "¡Una nueva actualización está lista para ser instalada! ¿Quieres instalarla ahora?" + ], + ["Install & Reload", "Instalar & Recargar"], + ["Later", "Después"], + ["Date", "Fecha"], + ["Month", "Mes"], + ["Credit Card Number", "Número de Tarjeta de Crédito"], + ["Phone Number", "Número de Teléfono"], + ["PIN", "PIN"], + ["2FA Token", "Token de 2FA"], + ["Note", "Nota"], + ["Other", "Otro"], + ["Credit Card", "Tarjeta de Crédito"], + ["Card Number", "Número de Tarjeta"], + ["Card Owner", "Dueño de la Tarjeta"], + ["Valid Until", "Válido Hasta"], + ["CVC", "CVC"], + ["Bank Account", "Número De Cuenta"], + ["Account Owner", "Dueño de la Cuenta"], + ["IBAN", "IBAN"], + ["BIC", "BIC"], + ["Card PIN", "PIN de la Tarjeta"], + ["WIFI Password", "Contraseña WIFI"], + ["Passport", "Pasaporte"], + ["Full Name", "Nombre Completo"], + ["Passport Number", "Número de Pasaporte"], + ["Country", "País"], + ["Birthdate", "Fecha de Nacimiento"], + ["Birthplace", "Lugar de Nacimiento"], + ["Issued On", "Emitido en"], + ["Expires", "Expira"], + ["Document", "Documento"], + ["Custom", "Personalizado"], + ["{0} on {1}", "{0} de {1}"], + ["{0} Device", "{0} Dispositivo"] ] diff --git a/packages/locale/res/translations/fr.json b/packages/locale/res/translations/fr.json index fe10cb0e..a22be6f8 100644 --- a/packages/locale/res/translations/fr.json +++ b/packages/locale/res/translations/fr.json @@ -1,1574 +1,569 @@ [ - [ - "OK", - "OK" - ], - [ - "o f f l i n e", - "hors ligne" - ], - [ - "Could not find invite! Did you use the correct link?", - "Impossible de trouver une invitation ! Avez-vous utilisé le bon lien ?" - ], - [ - "Get Premium", - "Devenir Premium" - ], - [ - "Cancel", - "Annuler" - ], - [ - "It looks like the app cannot connect to the Padloc servers right now, probably due to a missing internet connection. You can still access your vaults and even create or edit Vault Items but your changes won't be synchronized until you're back online.", - "Il semble que l'application ne puisse pas se connecter aux serveurs de Padloc pour le moment, probablement en raison d'un problème de connexion Internet. Vous pouvez toujours accéder à vos coffres-forts et même créer ou modifier des éléments des coffres-forts, mais vos modifications ne seront pas synchronisées tant que vous ne serez pas à nouveau connecté à Internet." - ], - [ - "You're Offline", - "Vous êtes hors ligne" - ], - [ - "Do you want to enable biometric unlock for this device?", - "Souhaitez-vous activer le déverrouillage biométrique pour cet appareil ?" - ], - [ - "Setup", - "Configuration" - ], - [ - "Biometric Unlock", - "Déverrouillage biométrique" - ], - [ - "Biometric authentication failed! Canceling Setup.", - "L'authentification biométrique a échoué ! Annulation de la configuration." - ], - [ - "Setup Failed", - "Échec de la configuration" - ], - [ - "Biometric unlock failed! Canceling Setup. (Reason: {0})", - "Le déverrouillage biométrique a échoué ! Annulation de la configuration. (Raison: {0})" - ], - [ - "Please enter your master password!", - "Veuillez entrer votre mot de passe principal !" - ], - [ - "Enter Master Password", - "Entrez le mot de passe principal" - ], - [ - "Wrong password! Please try again!", - "Mauvais mot de passe ! Veuillez réessayer !" - ], - [ - "Biometric unlock activated successfully!", - "Déverrouillage biométrique activé avec succès !" - ], - [ - "Are you sure you want to delete this attachment?", - "Êtes-vous sûr de vouloir supprimer cette pièce jointe ?" - ], - [ - "Delete", - "Supprimer" - ], - [ - "Delete Attachment", - "Supprimer la pièce jointe" - ], - [ - "Download failed!", - "Le téléchargement a échoué !" - ], - [ - "Do you want to save this file to your disk? WARNING: Doing this will leave the file exposed and unprotected on your harddrive!", - "Voulez-vous enregistrer ce fichier sur votre disque ? ATTENTION: En faisant cela, le fichier sera exposé et non protégé sur votre disque dur !" - ], - [ - "Save", - "Sauvegarder" - ], - [ - "Save To Disk", - "Sauvegarder sur le disque" - ], - [ - "Edit Name", - "Modifier le nom" - ], - [ - "Attachment Name", - "Nom de la pièce jointe" - ], - [ - "Please enter an attachment name!", - "Veuillez entrer un nom de pièce jointe !" - ], - [ - "Unknown File Type", - "Type de fichier inconnu" - ], - [ - "downloading... {0}/{1}", - "téléchargement... {0}/{1}" - ], - [ - "Unnamed", - "Sans nom" - ], - [ - "uploading... {0}/{1}", - "uploading... {0}/{1}" - ], - [ - "Failed to upload!", - "Echec de l'upload!" - ], - [ - "Failed to download! Click to try again.", - "Le téléchargement n'a pas réussi ! Cliquez pour réessayer." - ], - [ - "Update Billing Info", - "Mise à jour des informations de facturation" - ], - [ - "Select A Country", - "Sélectionnez un pays" - ], - [ - "To update your billing info and payment method, please log in through our website (found under \"Settings\") or contact us at ", - "Pour mettre à jour vos informations de facturation et votre mode de paiement, veuillez vous connecter sur notre site web (dans la section \"Paramètres\") ou nous contacter à l'adresse suivante " - ], - [ - "Payment Details", - "Détails du paiement" - ], - [ - "Billing Address", - "Adresse de facturation" - ], - [ - "Billing Email", - "E-mail de facturation" - ], - [ - "Name", - "Nom" - ], - [ - "Address", - "Adresse" - ], - [ - "Postal Code", - "Code postal" - ], - [ - "City", - "Ville" - ], - [ - "Tax Info", - "Informations fiscales" - ], - [ - "This is a business", - "Il s'agit d'une entreprise" - ], - [ - "Tax ID", - "ID fiscal" - ], - [ - "Coupon Code", - "Code promo" - ], - [ - "Add Later", - "Ajouter plus tard" - ], - [ - "Something went wrong. Please try again later!", - "Quelque chose s'est mal passé. Veuillez réessayer plus tard !" - ], - [ - "Add Payment Method", - "Ajouter un mode de paiement" - ], - [ - "per user / month", - "par utilisateur / mois" - ], - [ - "USD, billed annually", - "USD, facturé annuellement" - ], - [ - "Try For Free", - "Essayez gratuitement" - ], - [ - "Please enter at least one email address!", - "Veuillez saisir au moins une adresse e-mail !" - ], - [ - "You have entered too many email addresses! Please delete some before submitting!", - "Vous avez saisi trop d'adresses e-mail ! Veuillez en effacer quelques-unes avant de les soumettre !" - ], - [ - "Some of the emails you entered appear to be invalid!", - "Certains des e-mails que vous avez saisis semblent être invalides !" - ], - [ - "Something went wrong! Please try again later!", - "Quelque chose s'est mal passé. Veuillez réessayer plus tard !" - ], - [ - "Invite New Members", - "Invitez de nouveaux membres" - ], - [ - "Please enter up to {0} email addresses of the persons you would like to invite, separated by spaces or commas!", - "Veuillez saisir jusqu'à {0} adresses email des personnes que vous souhaitez inviter, séparées les par des espaces ou des virgules !" - ], - [ - "Enter Email Address", - "Entrez les adresses e-mail" - ], - [ - "Submit", - "Envoyer" - ], - [ - "New Vault Item", - "Nouvel élément du coffre-fort" - ], - [ - "Item Name", - "Nom de l'élément" - ], - [ - "Template", - "Modèle" - ], - [ - "Vault", - "Coffre-fort" - ], - [ - "Create & Edit", - "Créer et Éditer" - ], - [ - "You have reached the maximum number of items for this account. Upgrade to Premium to get unlimited items for your private vault!", - "Vous avez atteint le nombre maximum d'élément pour ce compte. Passez à la version Premium pour obtenir un nombre illimité d'éléments dans votre coffre-fort privé !" - ], - [ - "You have reached the maximum number of items for this account!", - "Vous avez atteint le nombre maximum d'éléments pour ce compte !" - ], - [ - "Please enter an organization name!", - "Veuillez entrer un nom d'organisation !" - ], - [ - "Free For {0} Days", - "Gratuit pendant {0} jours" - ], - [ - "then", - "alors" - ], - [ - "per month", - "par mois" - ], - [ - "{0} min", - "{0} min" - ], - [ - "{0} max", - "{0} max" - ], - [ - "Seats", - "Places" - ], - [ - "Add Billing Info", - "Ajouter des informations de facturation" - ], - [ - "Create Organization", - "Créer une organisation" - ], - [ - "Organization Name", - "Nom de l'organisation" - ], - [ - "Create", - "Créez" - ], - [ - "Export Data", - "Exporter les données" - ], - [ - "Target Vault", - "Coffre-fort sélectionné" - ], - [ - "Format", - "Format" - ], - [ - "WARNING: Exporting to CSV format will save your data without encyryption of any kind which means it can be read by anyone. We strongly recommend exporting your data as a secure, encrypted file, instead!", - "AVERTISSEMENT: l'exportation au format CSV permet de sauvegarder vos données sans aucun chiffrement, ce qui signifie qu'elles peuvent être lues par n'importe qui. Nous vous recommandons vivement d'exporter vos données sous forme de fichier chiffré et sécurisé !" - ], - [ - "Export {0} Items", - "Exporter {0} éléments" - ], - [ - "Please choose a password to protect this backup with!", - "Veuillez choisir un mot de passe pour protéger cette sauvegarde !" - ], - [ - "Choose Password", - "Choisissez un mot de passe" - ], - [ - "Please choose a password!", - "Veuillez choisir un mot de passe !" - ], - [ - "Please repeat the password!", - "Veuillez répéter le mot de passe !" - ], - [ - "Password not repeated correctly!", - "Le mot de passe n'est pas répété correctement !" - ], - [ - "Choose A Field Type", - "Choisissez un type de champ" - ], - [ - "What kind of field you would like to add?", - "Quel type de champ souhaitez-vous ajouter ?" - ], - [ - "Enter Notes Here", - "Entrez vos notes ici" - ], - [ - "Enter Secret", - "Entrez le secret" - ], - [ - "Enter Password", - "Entrez le mot de passe" - ], - [ - "Enter Value Here", - "Entrez la valeur ici" - ], - [ - "Enter Field Name", - "Entrez le nom du champ" - ], - [ - "Dash", - "Tiret" - ], - [ - "Underscore", - "Tiret du bas" - ], - [ - "Slash", - "Slash" - ], - [ - "Space", - "Espace" - ], - [ - "Generate Password", - "Générer un mot de passe" - ], - [ - "passphrase", - "phrase de mot de passe" - ], - [ - "random string", - "chaîne de caractères aléatoire" - ], - [ - "Word Separator", - "Séparateur de mots" - ], - [ - "Language", - "Langue" - ], - [ - "words", - "mots" - ], - [ - "length", - "longueur" - ], - [ - "Use", - "Utiliser" - ], - [ - "Discard", - "Jeter" - ], - [ - "Are you sure you want to delete this group?", - "Êtes-vous sûr de vouloir supprimer ce groupe ?" - ], - [ - "Delete Group", - "Supprimer le groupe" - ], - [ - "Type 'DELETE' to confirm", - "Tapez 'DELETE' pour confirmer" - ], - [ - "Enter Group Name", - "Entrez le nom du groupe" - ], - [ - "Search...", - "Recherche..." - ], - [ - "Import Data", - "Importer des données" - ], - [ - "IMPORTANT: Before importing, please make sure that your CSV data is structured according to Padlocks specific requirements!", - "IMPORTANT: Avant d'importer, veuillez vous assurer que vos données CSV sont structurées selon les exigences spécifiques à Padloc !" - ], - [ - "Learn More", - "En savoir plus" - ], - [ - "Import {0} Items", - "Importation de {0} éléments" - ], - [ - "This file is protected by a password.", - "Ce fichier est protégé par un mot de passe." - ], - [ - "Wrong Password", - "Mauvais mot de passe" - ], - [ - "The number of imported items exceeds your remaining quota. Upgrade to Premium to get unlimited items for your private vault!", - "Le nombre d'éléments importés dépasse votre quota restant. Passez à la version Premium pour obtenir un nombre illimité d'éléments dans votre coffre-fort privé !" - ], - [ - "The number of imported items exceeds your remaining quota.", - "Le nombre d'éléments importés dépasse votre quota restant." - ], - [ - "Successfully imported {0} items.", - "Importation de {0} éléments réussie." - ], - [ - "This invite has expired", - "Cette invitation a expiré" - ], - [ - "Accepted", - "Accepté" - ], - [ - "expires {0}", - "expire {0}" - ], - [ - "Confirm Membership", - "Confirmation de l'adhésion" - ], - [ - "Organization Invite", - "Invitation d'un Organisation" - ], - [ - "Please wait for an admin to complete the process. You will be notified as soon as you receive access.", - "Veuillez attendre qu'un administrateur termine la procédure. Vous serez informé dès que vous aurez reçu l'accès." - ], - [ - "Enter Confirmation Code", - "Entrez le code de confirmation" - ], - [ - "If you haven't received the confirmation code yet, please ask the organization owner to provide it to you!", - "Si vous n'avez pas encore reçu le code de confirmation, veuillez demander au propriétaire de l'organisation de vous le fournir !" - ], - [ - "They will also need the following confirmation code, which you should communicate to them separately:", - "Ils auront également besoin du code de confirmation suivant, que vous devez leur communiquer séparément:" - ], - [ - "Resend", - "Renvoyer" - ], - [ - "Please enter a confirmation code!", - "Veuillez entrer un code de confirmation !" - ], - [ - "You have successfully accepted the invite. You'll be notified once you've been granted access.", - "Vous avez accepté l'invitation avec succès. Vous serez informé dès que l'accès vous sera accordé." - ], - [ - "Wrong confirmation code. Please try again!", - "Code de confirmation incorrect. Veuillez réessayer !" - ], - [ - "expired", - "expiré" - ], - [ - "accepted", - "accepté" - ], - [ - "{0}", - "{0}" - ], - [ - "Confirm", - "Confirmer" - ], - [ - "Confirmation Code:", - "Code de confirmation:" - ], - [ - "Upgrade to Premium now and get 1GB of encrypted file storage!", - "Passez à la version Premium dès maintenant et obtenez 1 Go de stockage de fichiers chiffré !" - ], - [ - "Enter Item Name", - "Entrez le nom de l'élément" - ], - [ - "Field", - "Champ" - ], - [ - "Attachment", - "Pièce jointe" - ], - [ - "Move", - "Déplacer" - ], - [ - "by {0}", - "par {0}" - ], - [ - "Are you sure you want to delete this item?", - "Êtes-vous sûr de vouloir supprimer cet élément ?" - ], - [ - "Items with attachments cannot be moved!", - "Les éléments avec des pièces jointes ne peuvent pas être déplacés !" - ], - [ - "The selected file is too large! Only files of up to 5 MB are supported.", - "Le fichier sélectionné est trop volumineux ! Seuls les fichiers de moins de 5 Mo sont pris en charge." - ], - [ - "File uploaded successfully!", - "Fichier téléchargé avec succès !" - ], - [ - "Favorites", - "Favoris" - ], - [ - "Recently Used", - "Récemment utilisé" - ], - [ - "Attachments", - "Pièces jointes" - ], - [ - "All Items", - "Tous les éléments" - ], - [ - "My Vault", - "Mon coffre-fort" - ], - [ - "Tags", - "Étiquettes" - ], - [ - "You don't have any tags yet.", - "Vous n'avez pas encore d'étiquettes." - ], - [ - "Your search did not match any items.", - "Votre recherche n'a donné aucun résultat." - ], - [ - "This vault does not have any items yet.", - "Ce coffre-fort n'a pas encore de contenu." - ], - [ - "You don't have any attachments yet.", - "Vous n'avez pas encore de pièces jointes." - ], - [ - "You don't have any favorites yet.", - "Vous n'avez pas encore de favoris." - ], - [ - "You don't have any recently used items!", - "Vous n'avez pas d'éléments récemment utilisés !" - ], - [ - "You don't have any items yet.", - "Vous n'avez pas encore d'éléments." - ], - [ - "Type To Search", - "Tapez pour faire une rechercher" - ], - [ - "{0} items selected", - "{0} éléments sélectionnés" - ], - [ - "Some items in your selection are from Vaults you don't have write access to and cannot be deleted. Do you want to proceed deleting the other items?", - "Certains éléments de votre sélection proviennent de coffres-forts auxquels vous n'avez pas accès en écriture et qui ne peuvent donc pas être supprimés. Souhaitez-vous supprimer les autres éléments ?" - ], - [ - "Yes", - "Oui" - ], - [ - "No", - "Non" - ], - [ - "Are you sure you want to delete these items? This action can not be undone!", - "Êtes-vous sûr de vouloir supprimer ces éléments ? Cette action ne peut pas être annulée !" - ], - [ - "Delete {0} Items", - "Supprimer {0} éléments" - ], - [ - "Some items in your selection have attachments and cannot be moved. Do you want to proceed moving the other items?", - "Certains éléments de votre sélection ont des pièces jointes et ne peuvent pas être déplacés. Souhaitez-vous déplacer les autres objets ?" - ], - [ - "Some items in your selection are from Vaults you don't have write access to and cannot be moved. Do you want to proceed moving the other items?", - "Certains éléments de votre sélection proviennent de coffres-forts auxquels vous n'avez pas accès en écriture et qui ne peuvent donc pas être déplacés. Souhaitez-vous déplacer les autres objets ?" - ], - [ - "No Name", - "Pas de nom" - ], - [ - "copied", - "copié" - ], - [ - "No Fields", - "Pas de champs" - ], - [ - "This item has no fields.", - "Cet élément n'a pas de champs." - ], - [ - "Email Address", - "Adresse e-mail" - ], - [ - "Master Password", - "Mot de passe principal" - ], - [ - "Login", - "Connexion" - ], - [ - "New to Padloc?", - "Nouveau sur Padloc ?" - ], - [ - "Sign Up Now", - "S'inscrire maintenant" - ], - [ - "Please enter a valid email address!", - "Veuillez entrer une adresse e-mail valide !" - ], - [ - "Please enter the confirmation code sent to your email address to proceed!", - "Veuillez saisir le code de confirmation envoyé à votre adresse e-mail pour continuer !" - ], - [ - "One Last Step!", - "Une dernière étape !" - ], - [ - "Enter Verification Code", - "Entrez le code de vérification" - ], - [ - "Maximum number of tries exceeded! Please resubmit and try again!", - "Nombre maximum d'essais dépassé ! Veuillez soumettre à nouveau et réessayer !" - ], - [ - "Wrong username or password. Please try again!", - "Nom d'utilisateur ou mot de passe incorrect. Veuillez réessayer !" - ], - [ - "Can't remember your master password?", - "Vous ne vous souvenez pas de votre mot de passe principal ?" - ], - [ - "Recover Account", - "Récupérer votre compte" - ], - [ - "Try Again", - "Essayer à nouveau" - ], - [ - "An account with this email address does not exist!", - "Un compte avec cette adresse e-mail n'existe pas !" - ], - [ - "Sign Up", - "S'inscrire" - ], - [ - "Remove", - "Supprimer" - ], - [ - "Suspend", - "Suspendre" - ], - [ - "Remove Admin", - "Supprimer l'administration" - ], - [ - "Make Admin", - "Passer administrateur" - ], - [ - "Are you sure you want to remove this member from this organization?", - "Êtes-vous sûr de vouloir supprimer ce membre de cette organisation ?" - ], - [ - "Remove Member", - "Supprimer un membre" - ], - [ - "Are you sure you want to make this member an admin? Admins can manage vaults, groups and permissions.", - "Êtes-vous sûr de vouloir faire de ce membre un administrateur ? Les administrateurs peuvent gérer les coffres-forts, les groupes et les autorisations." - ], - [ - "Are you sure you want to remove this member as admin?", - "Êtes-vous sûr de vouloir supprimer ce membre des administrateur ?" - ], - [ - "Are you sure you want to suspend this member?", - "Êtes-vous sûr de vouloir suspendre ce membre ?" - ], - [ - "Suspend Member", - "Suspendre un membre" - ], - [ - "Groups", - "Groupes" - ], - [ - "Vaults", - "Coffres-forts" - ], - [ - "read", - "lire" - ], - [ - "write", - "écrire" - ], - [ - "Owner", - "Propriétaire" - ], - [ - "Admin", - "Administrateur" - ], - [ - "Suspended", - "Suspendu" - ], - [ - "Items", - "Éléments" - ], - [ - "Orgs & Teams", - "Organisations et Équipes" - ], - [ - "New Organization", - "Nouvelle Organisation" - ], - [ - "Settings", - "Paramètres" - ], - [ - "{0} Items", - "{0} éléments" - ], - [ - "Move {0} To", - "Déplacer {0} vers" - ], - [ - "No target vaults available!", - "Aucun coffre-fort cible disponible !" - ], - [ - "Move Item", - "Déplacer un élément" - ], - [ - "Move Items", - "Déplacer des éléments" - ], - [ - "Successfully created {0} invites!", - "{0} invitations créées avec succès !" - ], - [ - "Unsuspend", - "Ne plus suspendre" - ], - [ - "Are you sure you want to delete this organization? All associated vaults and the data within them will be lost! This action can not be undone.", - "Êtes-vous sûr de vouloir supprimer cette organisation ? Tous les coffres-forts associés et les données qu'ils contiennent seront perdus ! Cette action ne peut pas être annulée." - ], - [ - "Delete Organization", - "Supprimer l'organisation" - ], - [ - "Rename Organization", - "Renommer l'organisation" - ], - [ - "Company Name", - "Nom de la société" - ], - [ - "Please enter a name!", - "Veuillez entrer un nom !" - ], - [ - "Do you want to rotate this organizations cryptographic keys? All organization memberships will have to be reconfirmed but no data will be lost.", - "Voulez-vous faire une rotation des clés de chiffrement de cette organisation ? Toutes les adhésions à l'organisation devront être reconfirmées mais aucune donnée ne sera perdue." - ], - [ - "The organizations cryptographic keys have been rotated successfully and membership confirmation requests for all members have been sent out.", - "La rotation des clés de chiffrement des organisations a été effectuée avec succès et les demandes de confirmation d'adhésion pour tous les membres ont été envoyées." - ], - [ - "Members", - "Membres" - ], - [ - "This organization currently does not have an active subscription and has been put in \"frozen\" state as a result. While in this state, you won't be able to make any changes to members, groups or vaults of this organization.", - "Cette organisation n'a actuellement pas d'abonnement actif et a donc été mise en état \"gelé\". Tant que cet état sera maintenu, vous ne pourrez pas apporter de modifications aux membres, aux groupes ou aux coffres-forts de cette organisation." - ], - [ - "Update Subscription", - "Abonnement aux mises à jour" - ], - [ - "New Group", - "Nouveau Groupe" - ], - [ - "New Vault", - "Nouveau Coffre-fort" - ], - [ - "Subscription", - "Abonnement" - ], - [ - "Billing Info", - "Informations de facturation" - ], - [ - "Security", - "Securité" - ], - [ - "Rotate Cryptographic Keys", - "Rotation des clés de chiffrement" - ], - [ - "General", - "Général" - ], - [ - "Change Organization Name", - "Changer le nom de l'organisation" - ], - [ - "Organizations allow you to securely share passwords, documents and other data within your family, team or any other kind of group!", - "Les organisations vous permettent de partager en toute sécurité des mots de passe, des documents et d'autres données au sein de votre famille, de votre équipe ou de tout autre type de groupe !" - ], - [ - "Start Trial", - "Commencer l'essaie" - ], - [ - "Scan QR Code", - "Scannez le QR code" - ], - [ - "Failed to scan QR code. Error: ", - "Impossible de scanner le QR code. Erreur: " - ], - [ - "Please enter your email address and new master password.", - "Veuillez saisir votre adresse e-mail et votre nouveau mot de passe principal." - ], - [ - "New Master Password", - "Nouveau mot de passe principal" - ], - [ - "WARNING: Weak Password!", - "AVERTISSEMENT: mot de passe faible !" - ], - [ - "Repeat Master Password", - "Répéter le mot de passe principal" - ], - [ - "IMPORTANT, READ CAREFULLY: Padloc is designed in a way that makes it impossible for us to access the data encrypted in any of your vaults even if we wanted to. While this is essential to ensuring the security of your data, it also has the following implications:", - "IMPORTANT, A LIRE ATTENTIVEMENT: Padloc est conçu de telle manière qu'il nous est impossible d'accéder aux données chiffré dans l'un de vos coffre-fort, même si nous le voulions. Bien que cela soit essentiel pour garantir la sécurité de vos données, cela a également les implications suivantes:" - ], - [ - "Any data stored in your private vault can not be recovered and will be permantently lost.", - "Toute donnée stockée dans votre coffre-fort privé ne peut être récupérée et sera perdue de façon permanente." - ], - [ - "All your organization memberships will be suspended temporarily until confirmed by the organization owner.", - "Toutes les adhésions à votre organisation seront temporairement suspendues jusqu'à ce qu'elles soient confirmées par le propriétaire de l'organisation." - ], - [ - "All members of organizations you own will be suspended temporarily until confirmed by you.", - "Tous les membres des organisations que vous possédez seront temporairement suspendus jusqu'à ce que vous les confirmiez." - ], - [ - "Please enter a master password!", - "Veuillez entrer un mot de passe principal !" - ], - [ - "You didn't repeat your master password correctly. Try again!", - "Vous n'avez pas répété correctement votre mot de passe principal. Essayez à nouveau !" - ], - [ - "The password you entered is weak which makes it easier for attackers to break the encryption used to protect your data. Try to use a longer password or include a variation of uppercase, lowercase and special characters as well as numbers!", - "Le mot de passe que vous avez saisi est faible, ce qui permet aux attaquants de casser plus facilement le cryptage utilisé pour protéger vos données. Essayez d'utiliser un mot de passe plus long ou d'inclure une variation de majuscules, de minuscules et de caractères spéciaux ainsi que des chiffres !" - ], - [ - "Choose Different Password", - "Choisissez un autre mot de passe" - ], - [ - "Use Anyway", - "Utiliser quand même" - ], - [ - "WARNING: Weak Password", - "AVERTISSEMENT: mot de passe faible" - ], - [ - "To complete the account recovery process, please enter the confirmation code sent to your email address!", - "Pour terminer le processus de récupération du compte, veuillez saisir le code de confirmation envoyé à votre adresse électronique !" - ], - [ - "Account recovery successful!", - "Récupération de compte réussie !" - ], - [ - "Report Errors", - "Signaler les erreurs" - ], - [ - "{0} Errors Detected", - "{0} erreurs détectées" - ], - [ - "Padloc has registered {0} errors during your use of the app. These errors may not have any impact on functionality and can often be ignored, but reporting them may help us diagnose problems, identify possible failure modes and generally improve the stability of the app.", - "Padloc a enregistré {0} erreurs lors de votre utilisation de l'application. Ces erreurs peuvent ne pas avoir d'impact sur les fonctionnalités et peuvent souvent être ignorées, mais les signaler peut nous aider à diagnostiquer les problèmes, à identifier les modes de défaillance possibles et, de manière générale, à améliorer la stabilité de l'application." - ], - [ - "Profile", - "Profil" - ], - [ - "Log Out", - "Déconnexion" - ], - [ - "Change Master Password", - "Changer le mot de passe principal" - ], - [ - "Auto Lock", - "Verrouillage automatique" - ], - [ - "Lock Automatically", - "Verrouillage automatique" - ], - [ - " min", - " min" - ], - [ - "After", - "Après" - ], - [ - "Enable Biometric Unlock", - "Activer le déverrouillage biométrique" - ], - [ - "Import / Export", - "Importer / Exporter" - ], - [ - "Import...", - "Importation..." - ], - [ - "Export...", - "Exportation..." - ], - [ - "Support", - "Support" - ], - [ - "Website", - "Site web" - ], - [ - "Contact Support", - "Contact Support" - ], - [ - "Danger Zone", - "Zone dangereuse" - ], - [ - "Delete Account", - "Supprimer le compte" - ], - [ - "Edit Profile", - "Modifier le profil" - ], - [ - "Do you really want to log out?", - "Vous voulez vraiment vous déconnecter ?" - ], - [ - "Please enter your current password!", - "Veuillez entrer votre mot de passe actuel !" - ], - [ - "Enter Current Password", - "Entrez le mot de passe actuel" - ], - [ - "Now choose a new master password!", - "Maintenant choisissez un nouveau mot de passe principal !" - ], - [ - "Enter New Password", - "Entrez un nouveau mot de passe" - ], - [ - "Please enter a password!", - "Veuillez entrer un mot de passe !" - ], - [ - "Please confirm your new password!", - "Veuillez confirmer votre nouveau mot de passe !" - ], - [ - "Repeat New Password", - "Répétez le nouveau mot de passe" - ], - [ - "Master password changed successfully.", - "Le mot de passe principal a été modifié avec succès." - ], - [ - "Please enter your master password to proceed.", - "Veuillez entrer votre mot de passe principal pour continuer." - ], - [ - "Are you sure you want to delete this account? All associated vaults and the data within them will be lost and any active subscriptions will be canceled immediately. This action can not be undone!", - "Êtes-vous sûr de vouloir supprimer ce compte ? Tous les coffres-forts associées et les données qu'ils contiennent seront perdues et tout abonnement actif sera immédiatement annulé. Cette action ne peut pas être annulée !" - ], - [ - "Are you sure you want to disable biometric unlock?", - "Vous êtes sûr de vouloir désactiver le déverrouillage biométrique ?" - ], - [ - "Welcome to Padloc! Let's get you started by creating an account for you.", - "Bienvenue sur Padloc ! Commençons par vous créer un compte." - ], - [ - "Your email address serves as your username and allows us to get in touch with you. Don't worry, we would never send you any spam!", - "Votre adresse e-mail vous sert de nom d'utilisateur et nous permet de vous contacter. Ne vous inquiétez pas, nous ne vous enverrons jamais de spam !" - ], - [ - "Your Name", - "Votre nom" - ], - [ - "What should we call you?", - "Comment devrions-nous vous appeler ?" - ], - [ - "Continue", - "Continuer" - ], - [ - "Already have an account?", - "Vous avez déjà un compte ?" - ], - [ - "Sign In", - "Connexion" - ], - [ - "You've Got Mail!", - "Vous avez du courrier !" - ], - [ - "To verify your email address, please enter the confirmation code we sent to {0}.", - "Pour vérifier votre adresse e-mail, veuillez entrer le code de confirmation que nous avons envoyé à {0}." - ], - [ - "Confirmation Code", - "Code de confirmation" - ], - [ - "Say hello to your", - "Dites bonjour à votre" - ], - [ - "It's the last password you'll ever have to remember! Please memorize it and never reveal it to anyone (not even us)! We recommend writing it down on a piece of paper and storing it somewhere safe, at least until you have it safely memorized.", - "C'est le dernier mot de passe dont vous devrez vous souvenir ! Veuillez le mémoriser et ne le révélez jamais à personne (même pas à nous) ! Nous vous recommandons de le noter sur un morceau de papier et de le conserver dans un endroit sûr, au moins jusqu'à ce que vous l'ayez mémorisé." - ], - [ - "[Tap To Reveal]", - "[Tapez pour révéler]" - ], - [ - "[Hover To Reveal]", - "[Survolez pour révéler]" - ], - [ - "This random passphrase was generated just for you and is designed to be both secure and easy to remember. Don't like it?", - "Cette phrase de mot de passe passe aléatoire a été générée juste pour vous et est conçue pour être à la fois sûre et facile à retenir. Vous ne l'aimez pas ?" - ], - [ - "Try Another One", - "En essayer une autre" - ], - [ - "Choose Your Own", - "Choisissez la vôtre" - ], - [ - "An account with this email address already exists!", - "Un compte avec cette adresse e-mail existe déjà !" - ], - [ - "Change Email", - "Changer d'adresse e-mail" - ], - [ - "We recommend using a randomly generated password that is both strong and easy to remember.", - "Nous recommandons d'utiliser un mot de passe généré de manière aléatoire qui soit à la fois solide et facile à retenir." - ], - [ - "Keep This One", - "Garder celui-ci" - ], - [ - "Generate Another", - "Générer un autre" - ], - [ - "Choose My Own", - "Choisir le mien" - ], - [ - "Want A Different Master Password?", - "Vous voulez un autre mot de passe principal ?" - ], - [ - "Choose Own Master Password", - "Choisissez votre propre mot de passe principal" - ], - [ - "Resume Subscription", - "Résumé de l'abonnement" - ], - [ - "Cancel Subscription", - "Annuler l'abonnement" - ], - [ - "Update Plan", - "Mettre à jour le Plan" - ], - [ - "Are you sure you want to downgrade to the Free Plan?", - "Vous êtes sûr de vouloir passer au plan gratuit ?" - ], - [ - "Downgrade", - "Downgrade" - ], - [ - "No Plan Selected", - "Aucun plan sélectionné" - ], - [ - "Unlimited", - "Illimité" - ], - [ - "{0} / Year", - "{0} / An" - ], - [ - "Canceled ({0} days left)", - "Annulé ({0} jours restants)" - ], - [ - "Authentication Required", - "Authentification requise" - ], - [ - "Inactive", - "Inactif" - ], - [ - "Trialing ({0} days left)", - "Essai ({0} jours restants)" - ], - [ - "Choose Plan", - "Choisir un plan" - ], - [ - "Complete Payment", - "Paiement complet" - ], - [ - "Downgrade To Free Plan", - "Passager au plan gratuit" - ], - [ - "Add Tag", - "Ajouter une étiquette" - ], - [ - "Choose A Template", - "Choisissez un modèle" - ], - [ - "What kind of item you would like to add?", - "Quel type d'élément souhaitez-vous ajouter ?" - ], - [ - "Invalid Code", - "Code invalide" - ], - [ - "Logged In As", - "Connexion en tant que" - ], - [ - "Unlock", - "Déverrouiller" - ], - [ - "Wrong password! Please try again.", - "Mot de passe incorrect ! Veuillez réessayer." - ], - [ - "Logout / Switch Account", - "Déconnexion / Changement de compte" - ], - [ - "Forgot Password", - "Mot de passe oublié" - ], - [ - "Are you sure you want to log out of this account?", - "Êtes-vous sûr de vouloir vous déconnecter de ce compte ?" - ], - [ - "Biometric unlock expired. Complete setup to reeneable.", - "Le déverrouillage biométrique a expiré. Configuration complète pour réactiver." - ], - [ - "Biometric unlock failed! Reason: {0}", - "Le déverrouillage biométrique a échoué ! La raison: " - ], - [ - "Failed To Unlock", - "Échec du déverrouillage" - ], - [ - "Update", - "Mise à jour" - ], - [ - "Storage limit exceeded!", - "Limite de stockage dépassée !" - ], - [ - "Upload failed! Please try again!", - "L'upload a échoué ! Veuillez réessayer !" - ], - [ - "Upload Attachment", - "Upload la pièce jointe" - ], - [ - "Unkown File Type", - "Type de fichier inconnu" - ], - [ - "Retry Upload", - "Réessayer l'upload" - ], - [ - "Upload", - "Upload" - ], - [ - "Are you sure you want to delete this vault? All the data stored in it will be lost! This action can not be undone.", - "Êtes-vous sûr de vouloir supprimer ce coffre-fort ? Toutes les données qui y sont stockées seront perdues ! Cette action ne peut pas être annulée." - ], - [ - "Delete Vault", - "Supprimer ce coffre-fort" - ], - [ - "Enter Vault Name", - "Entrez le nom du coffre-fort" - ], - [ - "Username", - "Nom d'utilisateur" - ], - [ - "Password", - "Mot de passe" - ], - [ - "URL", - "URL" - ], - [ - "Notes", - "Notes" - ], - [ - "Your session has expired. Please log in again!", - "Votre session est terminée. Veuillez vous reconnecter !" - ], - [ - "A new update is ready to install! Do you want to install it now?", - "Une nouvelle mise à jour est prête à être installée ! Voulez vous l'installer maintenant ?" - ], - [ - "Install & Reload", - "Installer et recharger" - ], - [ - "Later", - "Plus tard" - ], - [ - "Date", - "Date" - ], - [ - "Month", - "Mois" - ], - [ - "Credit Card Number", - "Numéro de la carte de crédit" - ], - [ - "Phone Number", - "Numéro de téléphone" - ], - [ - "PIN", - "PIN" - ], - [ - "Two-Factor Token", - "Jeton à deux facteurs" - ], - [ - "Note", - "Note" - ], - [ - "Other", - "Autre" - ], - [ - "Credit Card", - "Carte de crédit" - ], - [ - "Card Number", - "Numéro de carte" - ], - [ - "Card Owner", - "Propriétaire de la carte" - ], - [ - "Valid Until", - "Valable jusqu'au" - ], - [ - "CVC", - "CVV" - ], - [ - "Bank Account", - "Compte bancaire" - ], - [ - "Account Owner", - "Propriétaire du compte" - ], - [ - "IBAN", - "IBAN" - ], - [ - "BIC", - "BIC" - ], - [ - "Card PIN", - "Code PIN de la carte" - ], - [ - "WIFI Password", - "Mot de passe WIFI" - ], - [ - "Passport", - "Passeport" - ], - [ - "Full Name", - "Nom complet" - ], - [ - "Passport Number", - "Numéro de passeport" - ], - [ - "Country", - "Pays" - ], - [ - "Birthdate", - "Date de naissance" - ], - [ - "Birthplace", - "Lieu de naissance" - ], - [ - "Issued On", - "Publié le" - ], - [ - "Expires", - "Expire" - ], - [ - "Document", - "Document" - ], - [ - "Custom", - "Personnalisé" - ], - [ - "{0} on {1}", - "{0} sur {1}" - ], - [ - "{0} Device", - "{0} Appareil" - ] + ["OK", "OK"], + ["o f f l i n e", "hors ligne"], + [ + "Could not find invite! Did you use the correct link?", + "Impossible de trouver une invitation ! Avez-vous utilisé le bon lien ?" + ], + ["Get Premium", "Devenir Premium"], + ["Cancel", "Annuler"], + [ + "It looks like the app cannot connect to the Padloc servers right now, probably due to a missing internet connection. You can still access your vaults and even create or edit Vault Items but your changes won't be synchronized until you're back online.", + "Il semble que l'application ne puisse pas se connecter aux serveurs de Padloc pour le moment, probablement en raison d'un problème de connexion Internet. Vous pouvez toujours accéder à vos coffres-forts et même créer ou modifier des éléments des coffres-forts, mais vos modifications ne seront pas synchronisées tant que vous ne serez pas à nouveau connecté à Internet." + ], + ["You're Offline", "Vous êtes hors ligne"], + [ + "Do you want to enable biometric unlock for this device?", + "Souhaitez-vous activer le déverrouillage biométrique pour cet appareil ?" + ], + ["Setup", "Configuration"], + ["Biometric Unlock", "Déverrouillage biométrique"], + [ + "Biometric authentication failed! Canceling Setup.", + "L'authentification biométrique a échoué ! Annulation de la configuration." + ], + ["Setup Failed", "Échec de la configuration"], + [ + "Biometric unlock failed! Canceling Setup. (Reason: {0})", + "Le déverrouillage biométrique a échoué ! Annulation de la configuration. (Raison: {0})" + ], + ["Please enter your master password!", "Veuillez entrer votre mot de passe principal !"], + ["Enter Master Password", "Entrez le mot de passe principal"], + ["Wrong password! Please try again!", "Mauvais mot de passe ! Veuillez réessayer !"], + ["Biometric unlock activated successfully!", "Déverrouillage biométrique activé avec succès !"], + ["Are you sure you want to delete this attachment?", "Êtes-vous sûr de vouloir supprimer cette pièce jointe ?"], + ["Delete", "Supprimer"], + ["Delete Attachment", "Supprimer la pièce jointe"], + ["Download failed!", "Le téléchargement a échoué !"], + [ + "Do you want to save this file to your disk? WARNING: Doing this will leave the file exposed and unprotected on your harddrive!", + "Voulez-vous enregistrer ce fichier sur votre disque ? ATTENTION: En faisant cela, le fichier sera exposé et non protégé sur votre disque dur !" + ], + ["Save", "Sauvegarder"], + ["Save To Disk", "Sauvegarder sur le disque"], + ["Edit Name", "Modifier le nom"], + ["Attachment Name", "Nom de la pièce jointe"], + ["Please enter an attachment name!", "Veuillez entrer un nom de pièce jointe !"], + ["Unknown File Type", "Type de fichier inconnu"], + ["downloading... {0}/{1}", "téléchargement... {0}/{1}"], + ["Unnamed", "Sans nom"], + ["uploading... {0}/{1}", "uploading... {0}/{1}"], + ["Failed to upload!", "Echec de l'upload!"], + ["Failed to download! Click to try again.", "Le téléchargement n'a pas réussi ! Cliquez pour réessayer."], + ["Update Billing Info", "Mise à jour des informations de facturation"], + ["Select A Country", "Sélectionnez un pays"], + [ + "To update your billing info and payment method, please log in through our website (found under \"Settings\") or contact us at ", + "Pour mettre à jour vos informations de facturation et votre mode de paiement, veuillez vous connecter sur notre site web (dans la section \"Paramètres\") ou nous contacter à l'adresse suivante " + ], + ["Payment Details", "Détails du paiement"], + ["Billing Address", "Adresse de facturation"], + ["Billing Email", "E-mail de facturation"], + ["Name", "Nom"], + ["Address", "Adresse"], + ["Postal Code", "Code postal"], + ["City", "Ville"], + ["Tax Info", "Informations fiscales"], + ["This is a business", "Il s'agit d'une entreprise"], + ["Tax ID", "ID fiscal"], + ["Coupon Code", "Code promo"], + ["Add Later", "Ajouter plus tard"], + ["Something went wrong. Please try again later!", "Quelque chose s'est mal passé. Veuillez réessayer plus tard !"], + ["Add Payment Method", "Ajouter un mode de paiement"], + ["per user / month", "par utilisateur / mois"], + ["USD, billed annually", "USD, facturé annuellement"], + ["Try For Free", "Essayez gratuitement"], + ["Please enter at least one email address!", "Veuillez saisir au moins une adresse e-mail !"], + [ + "You have entered too many email addresses! Please delete some before submitting!", + "Vous avez saisi trop d'adresses e-mail ! Veuillez en effacer quelques-unes avant de les soumettre !" + ], + [ + "Some of the emails you entered appear to be invalid!", + "Certains des e-mails que vous avez saisis semblent être invalides !" + ], + ["Something went wrong! Please try again later!", "Quelque chose s'est mal passé. Veuillez réessayer plus tard !"], + ["Invite New Members", "Invitez de nouveaux membres"], + [ + "Please enter up to {0} email addresses of the persons you would like to invite, separated by spaces or commas!", + "Veuillez saisir jusqu'à {0} adresses email des personnes que vous souhaitez inviter, séparées les par des espaces ou des virgules !" + ], + ["Enter Email Address", "Entrez les adresses e-mail"], + ["Submit", "Envoyer"], + ["New Vault Item", "Nouvel élément du coffre-fort"], + ["Item Name", "Nom de l'élément"], + ["Template", "Modèle"], + ["Vault", "Coffre-fort"], + ["Create & Edit", "Créer et Éditer"], + [ + "You have reached the maximum number of items for this account. Upgrade to Premium to get unlimited items for your private vault!", + "Vous avez atteint le nombre maximum d'élément pour ce compte. Passez à la version Premium pour obtenir un nombre illimité d'éléments dans votre coffre-fort privé !" + ], + [ + "You have reached the maximum number of items for this account!", + "Vous avez atteint le nombre maximum d'éléments pour ce compte !" + ], + ["Please enter an organization name!", "Veuillez entrer un nom d'organisation !"], + ["Free For {0} Days", "Gratuit pendant {0} jours"], + ["then", "alors"], + ["per month", "par mois"], + ["{0} min", "{0} min"], + ["{0} max", "{0} max"], + ["Seats", "Places"], + ["Add Billing Info", "Ajouter des informations de facturation"], + ["Create Organization", "Créer une organisation"], + ["Organization Name", "Nom de l'organisation"], + ["Create", "Créez"], + ["Export Data", "Exporter les données"], + ["Target Vault", "Coffre-fort sélectionné"], + ["Format", "Format"], + [ + "WARNING: Exporting to CSV format will save your data without encyryption of any kind which means it can be read by anyone. We strongly recommend exporting your data as a secure, encrypted file, instead!", + "AVERTISSEMENT: l'exportation au format CSV permet de sauvegarder vos données sans aucun chiffrement, ce qui signifie qu'elles peuvent être lues par n'importe qui. Nous vous recommandons vivement d'exporter vos données sous forme de fichier chiffré et sécurisé !" + ], + ["Export {0} Items", "Exporter {0} éléments"], + [ + "Please choose a password to protect this backup with!", + "Veuillez choisir un mot de passe pour protéger cette sauvegarde !" + ], + ["Choose Password", "Choisissez un mot de passe"], + ["Please choose a password!", "Veuillez choisir un mot de passe !"], + ["Please repeat the password!", "Veuillez répéter le mot de passe !"], + ["Password not repeated correctly!", "Le mot de passe n'est pas répété correctement !"], + ["Choose A Field Type", "Choisissez un type de champ"], + ["What kind of field you would like to add?", "Quel type de champ souhaitez-vous ajouter ?"], + ["Enter Notes Here", "Entrez vos notes ici"], + ["Enter Secret", "Entrez le secret"], + ["Enter Password", "Entrez le mot de passe"], + ["Enter Value Here", "Entrez la valeur ici"], + ["Enter Field Name", "Entrez le nom du champ"], + ["Dash", "Tiret"], + ["Underscore", "Tiret du bas"], + ["Slash", "Slash"], + ["Space", "Espace"], + ["Generate Password", "Générer un mot de passe"], + ["passphrase", "phrase de mot de passe"], + ["random string", "chaîne de caractères aléatoire"], + ["Word Separator", "Séparateur de mots"], + ["Language", "Langue"], + ["words", "mots"], + ["length", "longueur"], + ["Use", "Utiliser"], + ["Discard", "Jeter"], + ["Are you sure you want to delete this group?", "Êtes-vous sûr de vouloir supprimer ce groupe ?"], + ["Delete Group", "Supprimer le groupe"], + ["Type 'DELETE' to confirm", "Tapez 'DELETE' pour confirmer"], + ["Enter Group Name", "Entrez le nom du groupe"], + ["Search...", "Recherche..."], + ["Import Data", "Importer des données"], + [ + "IMPORTANT: Before importing, please make sure that your CSV data is structured according to Padlocks specific requirements!", + "IMPORTANT: Avant d'importer, veuillez vous assurer que vos données CSV sont structurées selon les exigences spécifiques à Padloc !" + ], + ["Learn More", "En savoir plus"], + ["Import {0} Items", "Importation de {0} éléments"], + ["This file is protected by a password.", "Ce fichier est protégé par un mot de passe."], + ["Wrong Password", "Mauvais mot de passe"], + [ + "The number of imported items exceeds your remaining quota. Upgrade to Premium to get unlimited items for your private vault!", + "Le nombre d'éléments importés dépasse votre quota restant. Passez à la version Premium pour obtenir un nombre illimité d'éléments dans votre coffre-fort privé !" + ], + [ + "The number of imported items exceeds your remaining quota.", + "Le nombre d'éléments importés dépasse votre quota restant." + ], + ["Successfully imported {0} items.", "Importation de {0} éléments réussie."], + ["This invite has expired", "Cette invitation a expiré"], + ["Accepted", "Accepté"], + ["expires {0}", "expire {0}"], + ["Confirm Membership", "Confirmation de l'adhésion"], + ["Organization Invite", "Invitation d'un Organisation"], + [ + "Please wait for an admin to complete the process. You will be notified as soon as you receive access.", + "Veuillez attendre qu'un administrateur termine la procédure. Vous serez informé dès que vous aurez reçu l'accès." + ], + ["Enter Confirmation Code", "Entrez le code de confirmation"], + [ + "If you haven't received the confirmation code yet, please ask the organization owner to provide it to you!", + "Si vous n'avez pas encore reçu le code de confirmation, veuillez demander au propriétaire de l'organisation de vous le fournir !" + ], + [ + "They will also need the following confirmation code, which you should communicate to them separately:", + "Ils auront également besoin du code de confirmation suivant, que vous devez leur communiquer séparément:" + ], + ["Resend", "Renvoyer"], + ["Please enter a confirmation code!", "Veuillez entrer un code de confirmation !"], + [ + "You have successfully accepted the invite. You'll be notified once you've been granted access.", + "Vous avez accepté l'invitation avec succès. Vous serez informé dès que l'accès vous sera accordé." + ], + ["Wrong confirmation code. Please try again!", "Code de confirmation incorrect. Veuillez réessayer !"], + ["expired", "expiré"], + ["accepted", "accepté"], + ["{0}", "{0}"], + ["Confirm", "Confirmer"], + ["Confirmation Code:", "Code de confirmation:"], + [ + "Upgrade to Premium now and get 1GB of encrypted file storage!", + "Passez à la version Premium dès maintenant et obtenez 1 Go de stockage de fichiers chiffré !" + ], + ["Enter Item Name", "Entrez le nom de l'élément"], + ["Field", "Champ"], + ["Attachment", "Pièce jointe"], + ["Move", "Déplacer"], + ["by {0}", "par {0}"], + ["Are you sure you want to delete this item?", "Êtes-vous sûr de vouloir supprimer cet élément ?"], + ["Items with attachments cannot be moved!", "Les éléments avec des pièces jointes ne peuvent pas être déplacés !"], + [ + "The selected file is too large! Only files of up to 5 MB are supported.", + "Le fichier sélectionné est trop volumineux ! Seuls les fichiers de moins de 5 Mo sont pris en charge." + ], + ["File uploaded successfully!", "Fichier téléchargé avec succès !"], + ["Favorites", "Favoris"], + ["Recently Used", "Récemment utilisé"], + ["Attachments", "Pièces jointes"], + ["All Items", "Tous les éléments"], + ["My Vault", "Mon coffre-fort"], + ["Tags", "Étiquettes"], + ["You don't have any tags yet.", "Vous n'avez pas encore d'étiquettes."], + ["Your search did not match any items.", "Votre recherche n'a donné aucun résultat."], + ["This vault does not have any items yet.", "Ce coffre-fort n'a pas encore de contenu."], + ["You don't have any attachments yet.", "Vous n'avez pas encore de pièces jointes."], + ["You don't have any favorites yet.", "Vous n'avez pas encore de favoris."], + ["You don't have any recently used items!", "Vous n'avez pas d'éléments récemment utilisés !"], + ["You don't have any items yet.", "Vous n'avez pas encore d'éléments."], + ["Type To Search", "Tapez pour faire une rechercher"], + ["{0} items selected", "{0} éléments sélectionnés"], + [ + "Some items in your selection are from Vaults you don't have write access to and cannot be deleted. Do you want to proceed deleting the other items?", + "Certains éléments de votre sélection proviennent de coffres-forts auxquels vous n'avez pas accès en écriture et qui ne peuvent donc pas être supprimés. Souhaitez-vous supprimer les autres éléments ?" + ], + ["Yes", "Oui"], + ["No", "Non"], + [ + "Are you sure you want to delete these items? This action can not be undone!", + "Êtes-vous sûr de vouloir supprimer ces éléments ? Cette action ne peut pas être annulée !" + ], + ["Delete {0} Items", "Supprimer {0} éléments"], + [ + "Some items in your selection have attachments and cannot be moved. Do you want to proceed moving the other items?", + "Certains éléments de votre sélection ont des pièces jointes et ne peuvent pas être déplacés. Souhaitez-vous déplacer les autres objets ?" + ], + [ + "Some items in your selection are from Vaults you don't have write access to and cannot be moved. Do you want to proceed moving the other items?", + "Certains éléments de votre sélection proviennent de coffres-forts auxquels vous n'avez pas accès en écriture et qui ne peuvent donc pas être déplacés. Souhaitez-vous déplacer les autres objets ?" + ], + ["No Name", "Pas de nom"], + ["copied", "copié"], + ["No Fields", "Pas de champs"], + ["This item has no fields.", "Cet élément n'a pas de champs."], + ["Email Address", "Adresse e-mail"], + ["Master Password", "Mot de passe principal"], + ["Login", "Connexion"], + ["New to Padloc?", "Nouveau sur Padloc ?"], + ["Sign Up Now", "S'inscrire maintenant"], + ["Please enter a valid email address!", "Veuillez entrer une adresse e-mail valide !"], + [ + "Please enter the confirmation code sent to your email address to proceed!", + "Veuillez saisir le code de confirmation envoyé à votre adresse e-mail pour continuer !" + ], + ["One Last Step!", "Une dernière étape !"], + ["Enter Verification Code", "Entrez le code de vérification"], + [ + "Maximum number of tries exceeded! Please resubmit and try again!", + "Nombre maximum d'essais dépassé ! Veuillez soumettre à nouveau et réessayer !" + ], + [ + "Wrong username or password. Please try again!", + "Nom d'utilisateur ou mot de passe incorrect. Veuillez réessayer !" + ], + ["Can't remember your master password?", "Vous ne vous souvenez pas de votre mot de passe principal ?"], + ["Recover Account", "Récupérer votre compte"], + ["Try Again", "Essayer à nouveau"], + ["An account with this email address does not exist!", "Un compte avec cette adresse e-mail n'existe pas !"], + ["Sign Up", "S'inscrire"], + ["Remove", "Supprimer"], + ["Suspend", "Suspendre"], + ["Remove Admin", "Supprimer l'administration"], + ["Make Admin", "Passer administrateur"], + [ + "Are you sure you want to remove this member from this organization?", + "Êtes-vous sûr de vouloir supprimer ce membre de cette organisation ?" + ], + ["Remove Member", "Supprimer un membre"], + [ + "Are you sure you want to make this member an admin? Admins can manage vaults, groups and permissions.", + "Êtes-vous sûr de vouloir faire de ce membre un administrateur ? Les administrateurs peuvent gérer les coffres-forts, les groupes et les autorisations." + ], + [ + "Are you sure you want to remove this member as admin?", + "Êtes-vous sûr de vouloir supprimer ce membre des administrateur ?" + ], + ["Are you sure you want to suspend this member?", "Êtes-vous sûr de vouloir suspendre ce membre ?"], + ["Suspend Member", "Suspendre un membre"], + ["Groups", "Groupes"], + ["Vaults", "Coffres-forts"], + ["read", "lire"], + ["write", "écrire"], + ["Owner", "Propriétaire"], + ["Admin", "Administrateur"], + ["Suspended", "Suspendu"], + ["Items", "Éléments"], + ["Orgs & Teams", "Organisations et Équipes"], + ["New Organization", "Nouvelle Organisation"], + ["Settings", "Paramètres"], + ["{0} Items", "{0} éléments"], + ["Move {0} To", "Déplacer {0} vers"], + ["No target vaults available!", "Aucun coffre-fort cible disponible !"], + ["Move Item", "Déplacer un élément"], + ["Move Items", "Déplacer des éléments"], + ["Successfully created {0} invites!", "{0} invitations créées avec succès !"], + ["Unsuspend", "Ne plus suspendre"], + [ + "Are you sure you want to delete this organization? All associated vaults and the data within them will be lost! This action can not be undone.", + "Êtes-vous sûr de vouloir supprimer cette organisation ? Tous les coffres-forts associés et les données qu'ils contiennent seront perdus ! Cette action ne peut pas être annulée." + ], + ["Delete Organization", "Supprimer l'organisation"], + ["Rename Organization", "Renommer l'organisation"], + ["Company Name", "Nom de la société"], + ["Please enter a name!", "Veuillez entrer un nom !"], + [ + "Do you want to rotate this organizations cryptographic keys? All organization memberships will have to be reconfirmed but no data will be lost.", + "Voulez-vous faire une rotation des clés de chiffrement de cette organisation ? Toutes les adhésions à l'organisation devront être reconfirmées mais aucune donnée ne sera perdue." + ], + [ + "The organizations cryptographic keys have been rotated successfully and membership confirmation requests for all members have been sent out.", + "La rotation des clés de chiffrement des organisations a été effectuée avec succès et les demandes de confirmation d'adhésion pour tous les membres ont été envoyées." + ], + ["Members", "Membres"], + [ + "This organization currently does not have an active subscription and has been put in \"frozen\" state as a result. While in this state, you won't be able to make any changes to members, groups or vaults of this organization.", + "Cette organisation n'a actuellement pas d'abonnement actif et a donc été mise en état \"gelé\". Tant que cet état sera maintenu, vous ne pourrez pas apporter de modifications aux membres, aux groupes ou aux coffres-forts de cette organisation." + ], + ["Update Subscription", "Abonnement aux mises à jour"], + ["New Group", "Nouveau Groupe"], + ["New Vault", "Nouveau Coffre-fort"], + ["Subscription", "Abonnement"], + ["Billing Info", "Informations de facturation"], + ["Security", "Securité"], + ["Rotate Cryptographic Keys", "Rotation des clés de chiffrement"], + ["General", "Général"], + ["Change Organization Name", "Changer le nom de l'organisation"], + [ + "Organizations allow you to securely share passwords, documents and other data within your family, team or any other kind of group!", + "Les organisations vous permettent de partager en toute sécurité des mots de passe, des documents et d'autres données au sein de votre famille, de votre équipe ou de tout autre type de groupe !" + ], + ["Start Trial", "Commencer l'essaie"], + ["Scan QR Code", "Scannez le QR code"], + ["Failed to scan QR code. Error: ", "Impossible de scanner le QR code. Erreur: "], + [ + "Please enter your email address and new master password.", + "Veuillez saisir votre adresse e-mail et votre nouveau mot de passe principal." + ], + ["New Master Password", "Nouveau mot de passe principal"], + ["WARNING: Weak Password!", "AVERTISSEMENT: mot de passe faible !"], + ["Repeat Master Password", "Répéter le mot de passe principal"], + [ + "IMPORTANT, READ CAREFULLY: Padloc is designed in a way that makes it impossible for us to access the data encrypted in any of your vaults even if we wanted to. While this is essential to ensuring the security of your data, it also has the following implications:", + "IMPORTANT, A LIRE ATTENTIVEMENT: Padloc est conçu de telle manière qu'il nous est impossible d'accéder aux données chiffré dans l'un de vos coffre-fort, même si nous le voulions. Bien que cela soit essentiel pour garantir la sécurité de vos données, cela a également les implications suivantes:" + ], + [ + "Any data stored in your private vault can not be recovered and will be permantently lost.", + "Toute donnée stockée dans votre coffre-fort privé ne peut être récupérée et sera perdue de façon permanente." + ], + [ + "All your organization memberships will be suspended temporarily until confirmed by the organization owner.", + "Toutes les adhésions à votre organisation seront temporairement suspendues jusqu'à ce qu'elles soient confirmées par le propriétaire de l'organisation." + ], + [ + "All members of organizations you own will be suspended temporarily until confirmed by you.", + "Tous les membres des organisations que vous possédez seront temporairement suspendus jusqu'à ce que vous les confirmiez." + ], + ["Please enter a master password!", "Veuillez entrer un mot de passe principal !"], + [ + "You didn't repeat your master password correctly. Try again!", + "Vous n'avez pas répété correctement votre mot de passe principal. Essayez à nouveau !" + ], + [ + "The password you entered is weak which makes it easier for attackers to break the encryption used to protect your data. Try to use a longer password or include a variation of uppercase, lowercase and special characters as well as numbers!", + "Le mot de passe que vous avez saisi est faible, ce qui permet aux attaquants de casser plus facilement le cryptage utilisé pour protéger vos données. Essayez d'utiliser un mot de passe plus long ou d'inclure une variation de majuscules, de minuscules et de caractères spéciaux ainsi que des chiffres !" + ], + ["Choose Different Password", "Choisissez un autre mot de passe"], + ["Use Anyway", "Utiliser quand même"], + ["WARNING: Weak Password", "AVERTISSEMENT: mot de passe faible"], + [ + "To complete the account recovery process, please enter the confirmation code sent to your email address!", + "Pour terminer le processus de récupération du compte, veuillez saisir le code de confirmation envoyé à votre adresse électronique !" + ], + ["Account recovery successful!", "Récupération de compte réussie !"], + ["Report Errors", "Signaler les erreurs"], + ["{0} Errors Detected", "{0} erreurs détectées"], + [ + "Padloc has registered {0} errors during your use of the app. These errors may not have any impact on functionality and can often be ignored, but reporting them may help us diagnose problems, identify possible failure modes and generally improve the stability of the app.", + "Padloc a enregistré {0} erreurs lors de votre utilisation de l'application. Ces erreurs peuvent ne pas avoir d'impact sur les fonctionnalités et peuvent souvent être ignorées, mais les signaler peut nous aider à diagnostiquer les problèmes, à identifier les modes de défaillance possibles et, de manière générale, à améliorer la stabilité de l'application." + ], + ["Profile", "Profil"], + ["Log Out", "Déconnexion"], + ["Change Master Password", "Changer le mot de passe principal"], + ["Auto Lock", "Verrouillage automatique"], + ["Lock Automatically", "Verrouillage automatique"], + [" min", " min"], + ["After", "Après"], + ["Enable Biometric Unlock", "Activer le déverrouillage biométrique"], + ["Import / Export", "Importer / Exporter"], + ["Import...", "Importation..."], + ["Export...", "Exportation..."], + ["Support", "Support"], + ["Website", "Site web"], + ["Contact Support", "Contact Support"], + ["Danger Zone", "Zone dangereuse"], + ["Delete Account", "Supprimer le compte"], + ["Edit Profile", "Modifier le profil"], + ["Do you really want to log out?", "Vous voulez vraiment vous déconnecter ?"], + ["Please enter your current password!", "Veuillez entrer votre mot de passe actuel !"], + ["Enter Current Password", "Entrez le mot de passe actuel"], + ["Now choose a new master password!", "Maintenant choisissez un nouveau mot de passe principal !"], + ["Enter New Password", "Entrez un nouveau mot de passe"], + ["Please enter a password!", "Veuillez entrer un mot de passe !"], + ["Please confirm your new password!", "Veuillez confirmer votre nouveau mot de passe !"], + ["Repeat New Password", "Répétez le nouveau mot de passe"], + ["Master password changed successfully.", "Le mot de passe principal a été modifié avec succès."], + ["Please enter your master password to proceed.", "Veuillez entrer votre mot de passe principal pour continuer."], + [ + "Are you sure you want to delete this account? All associated vaults and the data within them will be lost and any active subscriptions will be canceled immediately. This action can not be undone!", + "Êtes-vous sûr de vouloir supprimer ce compte ? Tous les coffres-forts associées et les données qu'ils contiennent seront perdues et tout abonnement actif sera immédiatement annulé. Cette action ne peut pas être annulée !" + ], + [ + "Are you sure you want to disable biometric unlock?", + "Vous êtes sûr de vouloir désactiver le déverrouillage biométrique ?" + ], + [ + "Welcome to Padloc! Let's get you started by creating an account for you.", + "Bienvenue sur Padloc ! Commençons par vous créer un compte." + ], + [ + "Your email address serves as your username and allows us to get in touch with you. Don't worry, we would never send you any spam!", + "Votre adresse e-mail vous sert de nom d'utilisateur et nous permet de vous contacter. Ne vous inquiétez pas, nous ne vous enverrons jamais de spam !" + ], + ["Your Name", "Votre nom"], + ["What should we call you?", "Comment devrions-nous vous appeler ?"], + ["Continue", "Continuer"], + ["Already have an account?", "Vous avez déjà un compte ?"], + ["Sign In", "Connexion"], + ["You've Got Mail!", "Vous avez du courrier !"], + [ + "To verify your email address, please enter the confirmation code we sent to {0}.", + "Pour vérifier votre adresse e-mail, veuillez entrer le code de confirmation que nous avons envoyé à {0}." + ], + ["Confirmation Code", "Code de confirmation"], + ["Say hello to your", "Dites bonjour à votre"], + [ + "It's the last password you'll ever have to remember! Please memorize it and never reveal it to anyone (not even us)! We recommend writing it down on a piece of paper and storing it somewhere safe, at least until you have it safely memorized.", + "C'est le dernier mot de passe dont vous devrez vous souvenir ! Veuillez le mémoriser et ne le révélez jamais à personne (même pas à nous) ! Nous vous recommandons de le noter sur un morceau de papier et de le conserver dans un endroit sûr, au moins jusqu'à ce que vous l'ayez mémorisé." + ], + ["[Tap To Reveal]", "[Tapez pour révéler]"], + ["[Hover To Reveal]", "[Survolez pour révéler]"], + [ + "This random passphrase was generated just for you and is designed to be both secure and easy to remember. Don't like it?", + "Cette phrase de mot de passe passe aléatoire a été générée juste pour vous et est conçue pour être à la fois sûre et facile à retenir. Vous ne l'aimez pas ?" + ], + ["Try Another One", "En essayer une autre"], + ["Choose Your Own", "Choisissez la vôtre"], + ["An account with this email address already exists!", "Un compte avec cette adresse e-mail existe déjà !"], + ["Change Email", "Changer d'adresse e-mail"], + [ + "We recommend using a randomly generated password that is both strong and easy to remember.", + "Nous recommandons d'utiliser un mot de passe généré de manière aléatoire qui soit à la fois solide et facile à retenir." + ], + ["Keep This One", "Garder celui-ci"], + ["Generate Another", "Générer un autre"], + ["Choose My Own", "Choisir le mien"], + ["Want A Different Master Password?", "Vous voulez un autre mot de passe principal ?"], + ["Choose Own Master Password", "Choisissez votre propre mot de passe principal"], + ["Resume Subscription", "Résumé de l'abonnement"], + ["Cancel Subscription", "Annuler l'abonnement"], + ["Update Plan", "Mettre à jour le Plan"], + ["Are you sure you want to downgrade to the Free Plan?", "Vous êtes sûr de vouloir passer au plan gratuit ?"], + ["Downgrade", "Downgrade"], + ["No Plan Selected", "Aucun plan sélectionné"], + ["Unlimited", "Illimité"], + ["{0} / Year", "{0} / An"], + ["Canceled ({0} days left)", "Annulé ({0} jours restants)"], + ["Authentication Required", "Authentification requise"], + ["Inactive", "Inactif"], + ["Trialing ({0} days left)", "Essai ({0} jours restants)"], + ["Choose Plan", "Choisir un plan"], + ["Complete Payment", "Paiement complet"], + ["Downgrade To Free Plan", "Passager au plan gratuit"], + ["Add Tag", "Ajouter une étiquette"], + ["Choose A Template", "Choisissez un modèle"], + ["What kind of item you would like to add?", "Quel type d'élément souhaitez-vous ajouter ?"], + ["Invalid Code", "Code invalide"], + ["Logged In As", "Connexion en tant que"], + ["Unlock", "Déverrouiller"], + ["Wrong password! Please try again.", "Mot de passe incorrect ! Veuillez réessayer."], + ["Logout / Switch Account", "Déconnexion / Changement de compte"], + ["Forgot Password", "Mot de passe oublié"], + ["Are you sure you want to log out of this account?", "Êtes-vous sûr de vouloir vous déconnecter de ce compte ?"], + [ + "Biometric unlock expired. Complete setup to reeneable.", + "Le déverrouillage biométrique a expiré. Configuration complète pour réactiver." + ], + ["Biometric unlock failed! Reason: {0}", "Le déverrouillage biométrique a échoué ! La raison: "], + ["Failed To Unlock", "Échec du déverrouillage"], + ["Update", "Mise à jour"], + ["Storage limit exceeded!", "Limite de stockage dépassée !"], + ["Upload failed! Please try again!", "L'upload a échoué ! Veuillez réessayer !"], + ["Upload Attachment", "Upload la pièce jointe"], + ["Unkown File Type", "Type de fichier inconnu"], + ["Retry Upload", "Réessayer l'upload"], + ["Upload", "Upload"], + [ + "Are you sure you want to delete this vault? All the data stored in it will be lost! This action can not be undone.", + "Êtes-vous sûr de vouloir supprimer ce coffre-fort ? Toutes les données qui y sont stockées seront perdues ! Cette action ne peut pas être annulée." + ], + ["Delete Vault", "Supprimer ce coffre-fort"], + ["Enter Vault Name", "Entrez le nom du coffre-fort"], + ["Username", "Nom d'utilisateur"], + ["Password", "Mot de passe"], + ["URL", "URL"], + ["Notes", "Notes"], + ["Your session has expired. Please log in again!", "Votre session est terminée. Veuillez vous reconnecter !"], + [ + "A new update is ready to install! Do you want to install it now?", + "Une nouvelle mise à jour est prête à être installée ! Voulez vous l'installer maintenant ?" + ], + ["Install & Reload", "Installer et recharger"], + ["Later", "Plus tard"], + ["Date", "Date"], + ["Month", "Mois"], + ["Credit Card Number", "Numéro de la carte de crédit"], + ["Phone Number", "Numéro de téléphone"], + ["PIN", "PIN"], + ["Two-Factor Token", "Jeton à deux facteurs"], + ["Note", "Note"], + ["Other", "Autre"], + ["Credit Card", "Carte de crédit"], + ["Card Number", "Numéro de carte"], + ["Card Owner", "Propriétaire de la carte"], + ["Valid Until", "Valable jusqu'au"], + ["CVC", "CVV"], + ["Bank Account", "Compte bancaire"], + ["Account Owner", "Propriétaire du compte"], + ["IBAN", "IBAN"], + ["BIC", "BIC"], + ["Card PIN", "Code PIN de la carte"], + ["WIFI Password", "Mot de passe WIFI"], + ["Passport", "Passeport"], + ["Full Name", "Nom complet"], + ["Passport Number", "Numéro de passeport"], + ["Country", "Pays"], + ["Birthdate", "Date de naissance"], + ["Birthplace", "Lieu de naissance"], + ["Issued On", "Publié le"], + ["Expires", "Expire"], + ["Document", "Document"], + ["Custom", "Personnalisé"], + ["{0} on {1}", "{0} sur {1}"], + ["{0} Device", "{0} Appareil"] ] diff --git a/packages/locale/res/translations/pl.json b/packages/locale/res/translations/pl.json index 4e41abf9..d7193f4a 100644 --- a/packages/locale/res/translations/pl.json +++ b/packages/locale/res/translations/pl.json @@ -1,1574 +1,554 @@ [ - [ - "OK", - "OK" - ], - [ - "o f f l i n e", - "o f f l i n e" - ], - [ - "Could not find invite! Did you use the correct link?", - "Nie można znaleźć zaproszenia. Czy użyłeś/aś prawidłowego linku?" - ], - [ - "Get Premium", - "Zdobądź Premium" - ], - [ - "Cancel", - "Anuluj" - ], - [ - "It looks like the app cannot connect to the Padloc servers right now, probably due to a missing internet connection. You can still access your vaults and even create or edit Vault Items but your changes won't be synchronized until you're back online.", - "Wygląda na to, że aplikacji nie udało się połączyć z serwerami Padloc, prawdopodobnie z powodu braku połączenia z internetem. Masz nadal dostęp do swoich klucz - możesz nawet je tworzyć albo edytować. Nie będną jednak zsynchronizowane dopóki połączenie nie zostanie przywrócone." - ], - [ - "You're Offline", - "Jesteś offline" - ], - [ - "Do you want to enable biometric unlock for this device?", - "Czy chcesz włączyć odblokowywanie biometryczne dla tego urządzenia?" - ], - [ - "Setup", - "Konfiguracja" - ], - [ - "Biometric Unlock", - "Odblokowywanie biometryczne" - ], - [ - "Biometric authentication failed! Canceling Setup.", - "Autentykacja biometryczna zakończona niepowodzeniem! Konfiguracja zostanie anulowana." - ], - [ - "Setup Failed", - "Konfiguracja nieudana" - ], - [ - "Biometric unlock failed! Canceling Setup. (Reason: {0})", - "Odblokowanie biometryczne nieudana. Konfiguracja zostanie anulowana. (Powód: {0})" - ], - [ - "Please enter your master password!", - "Podaj swoje główne hasło" - ], - [ - "Enter Master Password", - "Podaj główne hasło" - ], - [ - "Wrong password! Please try again!", - "Niepoprawne hasło! Spróbuj ponownie!" - ], - [ - "Biometric unlock activated successfully!", - "Odblokowanie biometryczne aktywowane pomyślnie!" - ], - [ - "Are you sure you want to delete this attachment?", - "Czy na pewno chcesz usunąć ten załącznik?" - ], - [ - "Delete", - "Usuń" - ], - [ - "Delete Attachment", - "Usuń załącznik" - ], - [ - "Download failed!", - "Pobieranie nieudane!" - ], - [ - "Do you want to save this file to your disk? WARNING: Doing this will leave the file exposed and unprotected on your harddrive!", - "Czy chcesz zapisać ten plik na dysk? UWAGA: Ten plik będzie przechowywany na Twoim dysku w formie niezabezpieczonej!" - ], - [ - "Save", - "Zapisz" - ], - [ - "Save To Disk", - "Zapisz na dysk" - ], - [ - "Edit Name", - "Edytuj nazwę" - ], - [ - "Attachment Name", - "Nazwa załącznika" - ], - [ - "Please enter an attachment name!", - "Podaj nazwę załącznika!" - ], - [ - "Unknown File Type", - "Nieznany typ pliku" - ], - [ - "downloading... {0}/{1}", - "pobieranie... {0}/{1}" - ], - [ - "Unnamed", - "Nienazwany" - ], - [ - "uploading... {0}/{1}", - "wysyłanie... {0}/{1}" - ], - [ - "Failed to upload!", - "Nieudane wysyłanie!" - ], - [ - "Failed to download! Click to try again.", - "Pobieranie nieudane! Kliknij, aby ponowic." - ], - [ - "Update Billing Info", - "Zaktualizuj dane rozliczeniowe" - ], - [ - "Select A Country", - "Wybierz kraj" - ], - [ - "To update your billing info and payment method, please log in through our website (found under \"Settings\") or contact us at ", - "Aby zaktualizować swoje dane rozliczeniowe oraz metodę płatności, zaloguj się na naszej stronie (możńa znaleźć w zakładce \"Ustawienia\") albo skontaktuj się z nami." - ], - [ - "Payment Details", - "Szczegóły płatności" - ], - [ - "Billing Address", - "Adres rozliczeniowy" - ], - [ - "Billing Email", - "Rozliczeniowy adres e-mail" - ], - [ - "Name", - "Nazwa" - ], - [ - "Address", - "Adres" - ], - [ - "Postal Code", - "Kod pocztowy" - ], - [ - "City", - "Miast" - ], - [ - "Tax Info", - "Informacja podatkowa" - ], - [ - "This is a business", - "Na firmę" - ], - [ - "Tax ID", - "Numer VAT" - ], - [ - "Coupon Code", - "Kod zniżkowy" - ], - [ - "Add Later", - "Dodaj później" - ], - [ - "Something went wrong. Please try again later!", - "Coś poszło nie tak. Spróbuj ponownie później!" - ], - [ - "Add Payment Method", - "Dodaj metodę płatności" - ], - [ - "per user / month", - "za użytkownika / miesiąc" - ], - [ - "USD, billed annually", - "USD, płatne rocznie" - ], - [ - "Try For Free", - "Spróbuj za darmo" - ], - [ - "Please enter at least one email address!", - "Podaj przynajmniej jeden, poprawny adres e-mail!" - ], - [ - "You have entered too many email addresses! Please delete some before submitting!", - "Podałeś/aś zbyt dużą liczbę adresów e-mail! Usuń proszę parę przed zatwierdzeniem!" - ], - [ - "Some of the emails you entered appear to be invalid!", - "Parę z podanych adresów e-mail jest niepoprawnych!" - ], - [ - "Something went wrong! Please try again later!", - "Coś poszło nie tak. Spróbuj później!" - ], - [ - "Invite New Members", - "Zaproś nowych członków" - ], - [ - "Please enter up to {0} email addresses of the persons you would like to invite, separated by spaces or commas!", - "Podaj do {0} adresów e-mail osób, które zostaną zaproszone. Adresy rozdziel przecienkiem albo spacją!" - ], - [ - "Enter Email Address", - "Podaj adres e-mail" - ], - [ - "Submit", - "Wyślij" - ], - [ - "New Vault Item", - "Nowy element sejfu" - ], - [ - "Item Name", - "Nazwa elementów" - ], - [ - "Template", - "Szablon" - ], - [ - "Vault", - "Sejf" - ], - [ - "Create & Edit", - "Stwórz & Edytuj" - ], - [ - "You have reached the maximum number of items for this account. Upgrade to Premium to get unlimited items for your private vault!", - "Osiągnąłeś maksymalną liczbę elementów dla tego konta. Rozszerz swoje konto do wersji Premium, aby mieć nielimitowaną liczbę elementów w prywatnym sejfie!" - ], - [ - "You have reached the maximum number of items for this account!", - "Osiągnąłeś maksymalną liczbę elementów dla tego konta!" - ], - [ - "Please enter an organization name!", - "Podaj nazwę organizacji" - ], - [ - "Free For {0} Days", - "Farmowe przez {0} dni" - ], - [ - "then", - "a potem" - ], - [ - "per month", - "na miesiąc" - ], - [ - "{0} min", - "minimalnie {0}" - ], - [ - "{0} max", - "maksymalnie {0}" - ], - [ - "Seats", - "Stanowisko" - ], - [ - "Add Billing Info", - "Dodaj dane rozliczeniowe" - ], - [ - "Create Organization", - "Stwórz organizację" - ], - [ - "Organization Name", - "Nazwa organizacji" - ], - [ - "Create", - "Stwórz" - ], - [ - "Export Data", - "Eksportuj dane" - ], - [ - "Target Vault", - "Sejf docelowy" - ], - [ - "Format", - "Format" - ], - [ - "WARNING: Exporting to CSV format will save your data without encyryption of any kind which means it can be read by anyone. We strongly recommend exporting your data as a secure, encrypted file, instead!", - "UWAGA: eksport danych do CSV zapisze Twoje dane bez szyfrowania co oznacza, że mogą być przeczytane przez kogokolwiek. Zamiast tego, możesz wyeksportować dane jako zaszyfrowany plik, co polecamy!" - ], - [ - "Export {0} Items", - "Eksportuj elementy: {0}" - ], - [ - "Wybierz hasło do zabezpiecznia kopii!", - "" - ], - [ - "Choose Password", - "Wybierz hasło" - ], - [ - "Please choose a password!", - "Wybierz proszę hasło!" - ], - [ - "Please repeat the password!", - "Powtórz swoje hasło!" - ], - [ - "Password not repeated correctly!", - "Podane hasła się różnią!" - ], - [ - "Choose A Field Type", - "Wybierz typ pola" - ], - [ - "What kind of field you would like to add?", - "Jakiego typu pole chciałbyś/aś dodać?" - ], - [ - "Enter Notes Here", - "Podaj notatkę" - ], - [ - "Enter Secret", - "Podaj wrażliwe dane" - ], - [ - "Enter Password", - "Podaj hasło" - ], - [ - "Enter Value Here", - "Wpisz tutaj wartość" - ], - [ - "Enter Field Name", - "Podaj nazwę pola" - ], - [ - "Dash", - "Myślnik" - ], - [ - "Underscore", - "Podkreślnik" - ], - [ - "Slash", - "Slash" - ], - [ - "Space", - "Spacja" - ], - [ - "Generate Password", - "Wygeneruj hasło" - ], - [ - "passphrase", - "hasło" - ], - [ - "random string", - "losowy ciąg znaków" - ], - [ - "Word Separator", - "Separator słów" - ], - [ - "Language", - "Język" - ], - [ - "words", - "słowa" - ], - [ - "length", - "długość" - ], - [ - "Use", - "Użyj" - ], - [ - "Discard", - "Anuluj" - ], - [ - "Are you sure you want to delete this group?", - "Czy na pewno chcesz usunąć tą grupę?" - ], - [ - "Delete Group", - "Usuń grupę" - ], - [ - "Type 'DELETE' to confirm", - "Wpisz 'DELETE' aby potwierdzić" - ], - [ - "Enter Group Name", - "Podaj nazwę grupy" - ], - [ - "Search...", - "Szukaj..." - ], - [ - "Import Data", - "Importuj dane" - ], - [ - "IMPORTANT: Before importing, please make sure that your CSV data is structured according to Padlocks specific requirements!", - "UWAGA: Przed importowanie, upewnij się ze struktura pliku CSV spełnia wymagania." - ], - [ - "Learn More", - "Dowiedz się więcej" - ], - [ - "Import {0} Items", - "Importuj elementy: {0}" - ], - [ - "This file is protected by a password.", - "Tne plik zabezpieczony jest przez hasło." - ], - [ - "Wrong Password", - "Niepoprawne hasło." - ], - [ - "The number of imported items exceeds your remaining quota. Upgrade to Premium to get unlimited items for your private vault!", - "Liczba zaimportowanych elementów przekracza limit. Zdobądź wersję Preium, aby uzyskać nielimitowaną liczbę elementów w prywatnym sejfie!" - ], - [ - "The number of imported items exceeds your remaining quota.", - "Liczba zaimportowanych elementów przekracza limit." - ], - [ - "Successfully imported {0} items.", - "Zaimportowano pomyślnie elementy: {0}" - ], - [ - "This invite has expired", - "TO zaproszenie już wygasło." - ], - [ - "Accepted", - "Zaakceptowane" - ], - [ - "expires {0}", - "wygasa {0}" - ], - [ - "Confirm Membership", - "Potwierdź członkostwo" - ], - [ - "Organization Invite", - "Zaproszenia organizacji" - ], - [ - "Please wait for an admin to complete the process. You will be notified as soon as you receive access.", - "Poczekaj, aż administrator zakończony proces. Zostaniesz poinformwany/a jak tylko przyznany zostanie dostęp." - ], - [ - "Enter Confirmation Code", - "Podaj kod potwierdzający" - ], - [ - "If you haven't received the confirmation code yet, please ask the organization owner to provide it to you!", - "Jeśli nie otrzymałeś jeszcze kody potwierdzającego, poproś właściciela orgniazacji, aby Ci go podał!" - ], - [ - "They will also need the following confirmation code, which you should communicate to them separately:", - "Będą potrzebować następującego kodu potwierdzającego, który musisz im dostarczyć:" - ], - [ - "Resend", - "Wyślij ponownie" - ], - [ - "Please enter a confirmation code!", - "Podaj kod potwierdzający" - ], - [ - "You have successfully accepted the invite. You'll be notified once you've been granted access.", - "Pomyślnie przyjąłeś zaprszoenie. Zostaniesz poinformowany jak przyznany zostanie Ci dostęp." - ], - [ - "Wrong confirmation code. Please try again!", - "Błędny kod. Spróbuj ponownie!" - ], - [ - "expired", - "wygasło" - ], - [ - "accepted", - "zaakceptowane" - ], - [ - "{0}", - "{0}" - ], - [ - "Confirm", - "Zatwierdź" - ], - [ - "Confirmation Code:", - "Kod potwierdzający:" - ], - [ - "Upgrade to Premium now and get 1GB of encrypted file storage!", - "Zdobądź Preium teraz i zyskaj pojemność 1 GB na przechowywanie Twoich plików!" - ], - [ - "Enter Item Name", - "Podaj nazwę elementu" - ], - [ - "Field", - "Pole" - ], - [ - "Attachment", - "Załącznik" - ], - [ - "Move", - "Przenieś" - ], - [ - "by {0}", - "przez {0}" - ], - [ - "Are you sure you want to delete this item?", - "Czy na pewno chcesz usunąć ten element?" - ], - [ - "Items with attachments cannot be moved!", - "Elementy z załącznikami nie mogą być przeniesione!" - ], - [ - "The selected file is too large! Only files of up to 5 MB are supported.", - "Wybrany plik jest za duży. Możesz wgrać pliki o maksymalym rozmiarze 5 MB." - ], - [ - "File uploaded successfully!", - "Plik wgrany pomyślnie" - ], - [ - "Favorites", - "Ulubione" - ], - [ - "Recently Used", - "Ostatnio użyte" - ], - [ - "Attachments", - "Załączniki" - ], - [ - "All Items", - "Wszystkie elementy" - ], - [ - "My Vault", - "Mój sejf" - ], - [ - "Tags", - "Tagi" - ], - [ - "You don't have any tags yet.", - "Nie masz jeszcze tagów" - ], - [ - "Your search did not match any items.", - "Twoje wyszukiwanie nie odpowiada żadnym elementom" - ], - [ - "This vault does not have any items yet.", - "Twój sejf nie zawiera jeszcze elementów." - ], - [ - "You don't have any attachments yet.", - "Nie masz jeszcze załączników." - ], - [ - "You don't have any favorites yet.", - "Nie masz jeszcze ulubionych." - ], - [ - "You don't have any recently used items!", - "Nie użyłeś żadnych elementów!" - ], - [ - "You don't have any items yet.", - "Nie masz jeszcze elementów." - ], - [ - "Type To Search", - "Wpisz, aby wyszukać" - ], - [ - "{0} items selected", - "Zaznaczono elementy: {0}" - ], - [ - "Some items in your selection are from Vaults you don't have write access to and cannot be deleted. Do you want to proceed deleting the other items?", - "Niektóre zaznaczone elementy z Twojego sejfu nie mają uprawnień zapisu i nie mogą zostać usunięta. Czy chcesz kontynuwać z bez nich?" - ], - [ - "Yes", - "Tak" - ], - [ - "No", - "Nie" - ], - [ - "Are you sure you want to delete these items? This action can not be undone!", - "Czy na pewno chcesz usunąć te elementy? Akcja nie może być odwrócona!" - ], - [ - "Delete {0} Items", - "Usuń elementy: {0]=}" - ], - [ - "Some items in your selection have attachments and cannot be moved. Do you want to proceed moving the other items?", - "Niektóre elementy z zaznaczonych mają załączniki i nie mogą zostać przeniesione. Czy chcesz kontynuować z pozostałymi?" - ], - [ - "Some items in your selection are from Vaults you don't have write access to and cannot be moved. Do you want to proceed moving the other items?", - "Niektóre elementy z zaznaczonych nie mają uprawnień do zapisu i nie mogą zostać przeniesione. Czy chcesz kontynuować z pozostałymi?" - ], - [ - "No Name", - "Brak nazwy" - ], - [ - "copied", - "skopiowany" - ], - [ - "No Fields", - "Brak pól!" - ], - [ - "This item has no fields.", - "Ten element nie ma pól." - ], - [ - "Email Address", - "Adres e-mail" - ], - [ - "Master Password", - "Główne hasło" - ], - [ - "Login", - "Login" - ], - [ - "New to Padloc?", - "Jesteś nowym użytkownikiem Padloc?" - ], - [ - "Sign Up Now", - "Dołącz teraz" - ], - [ - "Please enter a valid email address!", - "Podaj poprawny adres e-mail!" - ], - [ - "Please enter the confirmation code sent to your email address to proceed!", - "Podaj kod potwierdzający wysłany na Twoją skrzynkę pocztową!" - ], - [ - "One Last Step!", - "Ostatni krok!" - ], - [ - "Enter Verification Code", - "Podaj kod potwierdzający" - ], - [ - "Maximum number of tries exceeded! Please resubmit and try again!", - "Maksymalna liczba prób przekroczona. Prześlij ponownie i spróbuj jeszcze raz!" - ], - [ - "Wrong username or password. Please try again!", - "Zla nazwa użytkownika albo hasło. Spróbuj ponownie!" - ], - [ - "Can't remember your master password?", - "Nie pamiętasz hasła głównego?" - ], - [ - "Recover Account", - "Odzsykaj konto" - ], - [ - "Try Again", - "Spróbuj ponownie" - ], - [ - "An account with this email address does not exist!", - "Konto z takim adresem e-mail nie istnieje!" - ], - [ - "Sign Up", - "Dołącz" - ], - [ - "Remove", - "Usuń" - ], - [ - "Suspend", - "Zawieś" - ], - [ - "Remove Admin", - "Usuń administratora" - ], - [ - "Make Admin", - "Mianuj administratorem" - ], - [ - "Are you sure you want to remove this member from this organization?", - "Czy na pewno chcesz usunąć tego członka z tej organizacji?" - ], - [ - "Remove Member", - "Usuń członka" - ], - [ - "Are you sure you want to make this member an admin? Admins can manage vaults, groups and permissions.", - "Czy na pewno chcesz mianować tego członka administratorem? Administratorzy mogą zarządzać sejfami, grupami i uprawnieniami." - ], - [ - "Are you sure you want to remove this member as admin?", - "Czy na pewno chcesz odebrać administratora temu członkowi?" - ], - [ - "Are you sure you want to suspend this member?", - "Czy na pewno chcesz zawiesić tego członka?" - ], - [ - "Suspend Member", - "Zawieś członka" - ], - [ - "Groups", - "Grupy" - ], - [ - "Vaults", - "Sejfy" - ], - [ - "read", - "odczyt" - ], - [ - "write", - "zapis" - ], - [ - "Owner", - "Właściciel" - ], - [ - "Admin", - "Administrator" - ], - [ - "Suspended", - "Zawieszony" - ], - [ - "Items", - "Elementy" - ], - [ - "Orgs & Teams", - "Organizacje & Grupy" - ], - [ - "New Organization", - "Nowa organizacja" - ], - [ - "Settings", - "Ustawienia" - ], - [ - "{0} Items", - "Elementy: {0}" - ], - [ - "Move {0} To", - "Przenieś {0} do" - ], - [ - "No target vaults available!", - "Brak dostępnych sejfów!" - ], - [ - "Move Item", - "Przenieś element" - ], - [ - "Move Items", - "Przenieś elementy" - ], - [ - "Successfully created {0} invites!", - "Pomyślnie stworzono zaproszenia: {0}" - ], - [ - "Unsuspend", - "Odwieś" - ], - [ - "Are you sure you want to delete this organization? All associated vaults and the data within them will be lost! This action can not be undone.", - "Czy na pewno chcesz usunąć tą organizację? Wszystkie związane z nią dane zostaną utracone. Ta operacja nie może zostać odwrócona." - ], - [ - "Delete Organization", - "Usuń organizację" - ], - [ - "Rename Organization", - "Zmień nazwę organizacji" - ], - [ - "Company Name", - "nazwa firmy" - ], - [ - "Please enter a name!", - "Podaj nazwe!" - ], - [ - "Do you want to rotate this organizations cryptographic keys? All organization memberships will have to be reconfirmed but no data will be lost.", - "Czy chcesz przegenerować klucze kryptograficzne tej organizacji? Wszyscy członkowie będą musieli być zatwierdzeni ponownie, ale dane nie zostaną utracone" - ], - [ - "The organizations cryptographic keys have been rotated successfully and membership confirmation requests for all members have been sent out.", - "Klucz kryptograficznie organizacji zostały przegenerowane i prośba o potwierdzenie członków została wysłana." - ], - [ - "Members", - "Członkowie" - ], - [ - "This organization currently does not have an active subscription and has been put in \"frozen\" state as a result. While in this state, you won't be able to make any changes to members, groups or vaults of this organization.", - "Twoja organizacja nie posiada aktualnie aktywnej subskrypcji i jest w stanie \"zamrożony\". Oznacza to, że nie będzie można przeprowadzać żadnych zmian dla członków, grup i sejfów." - ], - [ - "Update Subscription", - "Aktualizuj subskrypcję" - ], - [ - "New Group", - "Nowa grupa" - ], - [ - "New Vault", - "Nowy sejf" - ], - [ - "Subscription", - "Subskrypcja" - ], - [ - "Billing Info", - "Dane rozliczeniowe" - ], - [ - "Security", - "Bezpieczeństwo" - ], - [ - "Rotate Cryptographic Keys", - "Przegeneruj klucze kryptograficzne" - ], - [ - "General", - "Ogólne" - ], - [ - "Change Organization Name", - "Zmień nazwę organizacji" - ], - [ - "Organizations allow you to securely share passwords, documents and other data within your family, team or any other kind of group!", - "Organizacje pozwalają na bezpieczne dzielenie się hasłami, dokumentami i innymi danymi w obrębie rodziny, zespołów czy innych grup!" - ], - [ - "Start Trial", - "Rozpocznij okres próbny" - ], - [ - "Scan QR Code", - "Zeskanuj kod QR" - ], - [ - "Failed to scan QR code. Error: ", - "Nie udało się zeskanować kodu QR: Błędy: " - ], - [ - "Please enter your email address and new master password.", - "Podaj swój adres e-mail i nowe hasło główne." - ], - [ - "New Master Password", - "Nowe hasło główne" - ], - [ - "WARNING: Weak Password!", - "UWAGA: Słabe hasło!" - ], - [ - "Repeat Master Password", - "Powtórz hasło główne" - ], - [ - "IMPORTANT, READ CAREFULLY: Padloc is designed in a way that makes it impossible for us to access the data encrypted in any of your vaults even if we wanted to. While this is essential to ensuring the security of your data, it also has the following implications:", - "WAŻNE, PRZECZYTAJ: Padloc jest zaprojektowany tak, aby niemożliwy był dla nas dostęp do sejfów. O ile to zapewnia pełne bezpieczeństwo Twoich danych, ciągnie za sobą pewne konsekwencje:" - ], - [ - "Any data stored in your private vault can not be recovered and will be permantently lost.", - "Wszelkie dane w prywatnym sejf nie mogą zostać odzyskane i zginą bezpowrotnie" - ], - [ - "All your organization memberships will be suspended temporarily until confirmed by the organization owner.", - "Wszyscy członkowie organizacji będą tymczasowo zawieszenie dopóki nie zostaną zatwierdzeni przez właściciela." - ], - [ - "All members of organizations you own will be suspended temporarily until confirmed by you.", - "Wszyscy członkowie organizacji będą tymczasowo zawieszeni dopóki nie zostaną zatwierdzeni przez Ciebie." - ], - [ - "Please enter a master password!", - "Podaj hasło główne:" - ], - [ - "You didn't repeat your master password correctly. Try again!", - "Niepowtórzyłeś hasła poprawnie. Spróbuj jeszcze raz!" - ], - [ - "The password you entered is weak which makes it easier for attackers to break the encryption used to protect your data. Try to use a longer password or include a variation of uppercase, lowercase and special characters as well as numbers!", - "Podane hasło jest słabe, co sprawia że jest łatwe do żlamania. Spróbuj podać dłusze hasło, albo użyj różnych znaków jak duże litery, małe litery czy znaki specjalne." - ], - [ - "Choose Different Password", - "Wybierz inne hasło" - ], - [ - "Use Anyway", - "Użyj mimowszystko" - ], - [ - "WARNING: Weak Password", - "UWAGA: Słabe hasło" - ], - [ - "To complete the account recovery process, please enter the confirmation code sent to your email address!", - "Aby zakończyć proces odzyskiwania hasła, podaj kod potwierdzający wysłany na skrzynkę pocztową!" - ], - [ - "Account recovery successful!", - "Konto odzyskane poprawnie!" - ], - [ - "Report Errors", - "Zgłoś błędy" - ], - [ - "{0} Errors Detected", - "Wybrano błędy: {0}" - ], - [ - "Padloc has registered {0} errors during your use of the app. These errors may not have any impact on functionality and can often be ignored, but reporting them may help us diagnose problems, identify possible failure modes and generally improve the stability of the app.", - "Padloc zarejestrował błędy w liczbie: {0}. Te błędy nie mają wpływo na funkcjonowanie aplikacji i mogą często być zignorowane. Ale zgloszenie ich może pomóc rozwiązywać problemy, identyfikować przyszłe blędy oraz poprawiać stabilność aplikacji." - ], - [ - "Profile", - "Profil" - ], - [ - "Log Out", - "Wyloguj" - ], - [ - "Change Master Password", - "Zmień hasło główne" - ], - [ - "Auto Lock", - "Auto-blokowanie" - ], - [ - "Lock Automatically", - "Zablokuj automatycznie" - ], - [ - " min", - " min" - ], - [ - "After", - "Po" - ], - [ - "Enable Biometric Unlock", - "Włącz odblokowywanie biometryczne" - ], - [ - "Import / Export", - "Import / Eksport" - ], - [ - "Import...", - "Importuj..." - ], - [ - "Export...", - "Eskportuj..." - ], - [ - "Support", - "Wsparcie" - ], - [ - "Website", - "Strona" - ], - [ - "Contact Support", - "Skontaktuj się z działem wsparcia" - ], - [ - "Danger Zone", - "Niebezpieczna strefa" - ], - [ - "Delete Account", - "Usuń konto" - ], - [ - "Edit Profile", - "Edytuj profil" - ], - [ - "Do you really want to log out?", - "Czy na pewno chcesz się wylogować?" - ], - [ - "Please enter your current password!", - "Podaj swoje obecne hasło" - ], - [ - "Enter Current Password", - "Podaj obecne hasło" - ], - [ - "Now choose a new master password!", - "Teraz wybierz nowe główne hasło!" - ], - [ - "Enter New Password", - "Podaj nowe hasło" - ], - [ - "Please enter a password!", - "Podaj hasło!" - ], - [ - "Please confirm your new password!", - "Powtórz swoje nowe hasło!" - ], - [ - "Repeat New Password", - "Powtórz nowe hasło" - ], - [ - "Master password changed successfully.", - "Główne hasło zmienione poprawnie." - ], - [ - "Please enter your master password to proceed.", - "Podaj główne hasło, aby kontynuować." - ], - [ - "Are you sure you want to delete this account? All associated vaults and the data within them will be lost and any active subscriptions will be canceled immediately. This action can not be undone!", - "Czy na pewno chcesz usunąć to konto? Wszystkie sejfy i dane zostaną utracone a subskrypcje anulowane. Nie można odwrócić tej akcji." - ], - [ - "Are you sure you want to disable biometric unlock?", - "Czy na pewno chcesz wyłączyć odblokowywanie biometryczne?" - ], - [ - "Welcome to Padloc! Let's get you started by creating an account for you.", - "Witamy w Padloc. Zacznijmy od stworzenia konta dla Ciebie." - ], - [ - "Your email address serves as your username and allows us to get in touch with you. Don't worry, we would never send you any spam!", - "Twój adres e-mail sluży jako nazwa użytkownika i pozwala nam być w kontakcie z Tobą. Nie martw się, nigdy nie wyślemy spamu!" - ], - [ - "Your Name", - "Twoje imię" - ], - [ - "What should we call you?", - "Jak powinniśmy Cię nazywać?" - ], - [ - "Continue", - "Kontynuuj" - ], - [ - "Already have an account?", - "Posiadasz już konto?" - ], - [ - "Sign In", - "Zaloguj się" - ], - [ - "You've Got Mail!", - "Otrzymałeś pocztę!" - ], - [ - "To verify your email address, please enter the confirmation code we sent to {0}.", - "Aby zweryfikować adres e-mail, podaj kod który wysłaliśmy Ci na {0}." - ], - [ - "Confirmation Code", - "Kod potwierzający" - ], - [ - "Say hello to your", - "Powiedz Cześć swojemu" - ], - [ - "It's the last password you'll ever have to remember! Please memorize it and never reveal it to anyone (not even us)! We recommend writing it down on a piece of paper and storing it somewhere safe, at least until you have it safely memorized.", - "To jest ostatnie hasło, które musisz zapamięć. Zaszyj je w swojej pamięci i nigdy nikomu o nim nie mów (nawet nam). Zalecamy, abys je gdzieś zapisal i trzymał w bezpiecznym miejscu. Przynajmniej do momentu, aż je w pełni zapamiętasz." - ], - [ - "[Tap To Reveal]", - "[Stuknij, aby pokazać]" - ], - [ - "[Hover To Reveal]", - "[Najedź, aby pokazać]" - ], - [ - "This random passphrase was generated just for you and is designed to be both secure and easy to remember. Don't like it?", - "To losowe hasło zostało wygenerowane tylko dla Ciebie, tak aby było bezpieczne i łatwie do zapamiętania. Nie podoba się?" - ], - [ - "Try Another One", - "Spróbuj inne" - ], - [ - "Choose Your Own", - "Wybierz swoje" - ], - [ - "An account with this email address already exists!", - "Konto z takim adresem e-mail już istnieje!" - ], - [ - "Change Email", - "Zmień e-mail" - ], - [ - "We recommend using a randomly generated password that is both strong and easy to remember.", - "Zalecamy użycie wygenerowanego hasła, które jest zarówno silne jak i łatwie do zapamiętania." - ], - [ - "Keep This One", - "Zatrzymaj to" - ], - [ - "Generate Another", - "Wygeneruj inne" - ], - [ - "Choose My Own", - "Wybiorę sam" - ], - [ - "Want A Different Master Password?", - "Chcesz inne hasło główne?" - ], - [ - "Choose Own Master Password", - "Wybierz hasło główne!" - ], - [ - "Resume Subscription", - "Wznów subskrypcję" - ], - [ - "Cancel Subscription", - "Anuluj subskrypcję" - ], - [ - "Update Plan", - "Zaktualizuj plan" - ], - [ - "Are you sure you want to downgrade to the Free Plan?", - "Czy na pewno chcesz obniżyć to planu darmowego?" - ], - [ - "Downgrade", - "Downgrade" - ], - [ - "No Plan Selected", - "Brak planu" - ], - [ - "Unlimited", - "Nielimitowane" - ], - [ - "{0} / Year", - "{0} / rok" - ], - [ - "Canceled ({0} days left)", - "Anulowany (pozostało dni: {0})" - ], - [ - "Authentication Required", - "Wymagana autentykacja" - ], - [ - "Inactive", - "Niekatywny" - ], - [ - "Trialing ({0} days left)", - "Wersja próbna (pozostało dni: {0})" - ], - [ - "Choose Plan", - "Wybierz plan" - ], - [ - "Complete Payment", - "Zakończ płatność" - ], - [ - "Downgrade To Free Plan", - "Obniż do planu darmowego" - ], - [ - "Add Tag", - "Dodaj Tag" - ], - [ - "Choose A Template", - "Wybierz szablon" - ], - [ - "What kind of item you would like to add?", - "Jakiego typu element chcesz dodać?" - ], - [ - "Invalid Code", - "Niepoprawny kod" - ], - [ - "Logged In As", - "Zalogowany jako" - ], - [ - "Unlock", - "Odblokuj" - ], - [ - "Wrong password! Please try again.", - "Błędne hasło. Spróbuj ponownie." - ], - [ - "Logout / Switch Account", - "Wyloguj / Przełącz konto" - ], - [ - "Forgot Password", - "Przypomnij hasło" - ], - [ - "Are you sure you want to log out of this account?", - "Czy na pewno chcesz się wylogować?" - ], - [ - "Biometric unlock expired. Complete setup to reeneable.", - "Biometryczne odblokowanie wygasło. Potwórz konfigurację, aby włączyć ponownie." - ], - [ - "Biometric unlock failed! Reason: {0}", - "Biometryczne odblokowanie nieudane. Powód: {0}" - ], - [ - "Failed To Unlock", - "Nieudało się odblokować" - ], - [ - "Update", - "Aktualizuj" - ], - [ - "Storage limit exceeded!", - "Przekroczono limit dla przechowywanych danych!" - ], - [ - "Upload failed! Please try again!", - "Wysyłanie nie udało się. Spróbuj ponownie!" - ], - [ - "Upload Attachment", - "Wgraj załącznik" - ], - [ - "Unkown File Type", - "Nieznany typ pliku" - ], - [ - "Retry Upload", - "Ponów wgrywanie" - ], - [ - "Upload", - "Wgraj" - ], - [ - "Are you sure you want to delete this vault? All the data stored in it will be lost! This action can not be undone.", - "Czy na pewno chcesz usunąć ten sejf? Wszystkie dane przechowywane w środku zostaną utracone. Nie da się tego cofnąć." - ], - [ - "Delete Vault", - "Usuń sejf" - ], - [ - "Enter Vault Name", - "Podaj nazwę sejfu" - ], - [ - "Username", - "Nazwa użytkownika" - ], - [ - "Password", - "Hasło" - ], - [ - "URL", - "Link" - ], - [ - "Notes", - "Notatki" - ], - [ - "Your session has expired. Please log in again!", - "Twoja sesja wygasła. Zaloguj się ponownie!" - ], - [ - "A new update is ready to install! Do you want to install it now?", - "Nowa aktualizacja jest gotowa do zainstalowania! Czy chcesz zainstalować teraz?" - ], - [ - "Instaluj & Przeładuj", - "" - ], - [ - "Later", - "Później" - ], - [ - "Date", - "Data" - ], - [ - "Month", - "Miesiąc" - ], - [ - "Credit Card Number", - "Numer karty kredytowej" - ], - [ - "Phone Number", - "Numer telefonu" - ], - [ - "PIN", - "PIN" - ], - [ - "Two-Factor Token", - "Token dwu-składnikowy" - ], - [ - "Note", - "Notatka" - ], - [ - "Other", - "Inne" - ], - [ - "Credit Card", - "Karta kredytowa" - ], - [ - "Card Number", - "Numer karty" - ], - [ - "Card Owner", - "Właściciel karty" - ], - [ - "Valid Until", - "Ważna do" - ], - [ - "CVC", - "CVC" - ], - [ - "Bank Account", - "Numer konta" - ], - [ - "Account Owner", - "Właściciel konta" - ], - [ - "IBAN", - "IBAN" - ], - [ - "BIC", - "BIC" - ], - [ - "Card PIN", - "PIN karty" - ], - [ - "WIFI Password", - "Hasło WIFI" - ], - [ - "Passport", - "Paszport" - ], - [ - "Full Name", - "Imię i nazwisko" - ], - [ - "Passport Number", - "Numer paszportu" - ], - [ - "Country", - "Państwo" - ], - [ - "Birthdate", - "Data urodzenia" - ], - [ - "Birthplace", - "Miejsce urodzenia" - ], - [ - "Issued On", - "Podpisane na" - ], - [ - "Expires", - "Wygasa" - ], - [ - "Document", - "Dokument" - ], - [ - "Custom", - "Własne" - ], - [ - "{0} on {1}", - "{0} na {1}" - ], - [ - "{0} Device", - "Urządzenie {0}" - ] + ["OK", "OK"], + ["o f f l i n e", "o f f l i n e"], + [ + "Could not find invite! Did you use the correct link?", + "Nie można znaleźć zaproszenia. Czy użyłeś/aś prawidłowego linku?" + ], + ["Get Premium", "Zdobądź Premium"], + ["Cancel", "Anuluj"], + [ + "It looks like the app cannot connect to the Padloc servers right now, probably due to a missing internet connection. You can still access your vaults and even create or edit Vault Items but your changes won't be synchronized until you're back online.", + "Wygląda na to, że aplikacji nie udało się połączyć z serwerami Padloc, prawdopodobnie z powodu braku połączenia z internetem. Masz nadal dostęp do swoich klucz - możesz nawet je tworzyć albo edytować. Nie będną jednak zsynchronizowane dopóki połączenie nie zostanie przywrócone." + ], + ["You're Offline", "Jesteś offline"], + [ + "Do you want to enable biometric unlock for this device?", + "Czy chcesz włączyć odblokowywanie biometryczne dla tego urządzenia?" + ], + ["Setup", "Konfiguracja"], + ["Biometric Unlock", "Odblokowywanie biometryczne"], + [ + "Biometric authentication failed! Canceling Setup.", + "Autentykacja biometryczna zakończona niepowodzeniem! Konfiguracja zostanie anulowana." + ], + ["Setup Failed", "Konfiguracja nieudana"], + [ + "Biometric unlock failed! Canceling Setup. (Reason: {0})", + "Odblokowanie biometryczne nieudana. Konfiguracja zostanie anulowana. (Powód: {0})" + ], + ["Please enter your master password!", "Podaj swoje główne hasło"], + ["Enter Master Password", "Podaj główne hasło"], + ["Wrong password! Please try again!", "Niepoprawne hasło! Spróbuj ponownie!"], + ["Biometric unlock activated successfully!", "Odblokowanie biometryczne aktywowane pomyślnie!"], + ["Are you sure you want to delete this attachment?", "Czy na pewno chcesz usunąć ten załącznik?"], + ["Delete", "Usuń"], + ["Delete Attachment", "Usuń załącznik"], + ["Download failed!", "Pobieranie nieudane!"], + [ + "Do you want to save this file to your disk? WARNING: Doing this will leave the file exposed and unprotected on your harddrive!", + "Czy chcesz zapisać ten plik na dysk? UWAGA: Ten plik będzie przechowywany na Twoim dysku w formie niezabezpieczonej!" + ], + ["Save", "Zapisz"], + ["Save To Disk", "Zapisz na dysk"], + ["Edit Name", "Edytuj nazwę"], + ["Attachment Name", "Nazwa załącznika"], + ["Please enter an attachment name!", "Podaj nazwę załącznika!"], + ["Unknown File Type", "Nieznany typ pliku"], + ["downloading... {0}/{1}", "pobieranie... {0}/{1}"], + ["Unnamed", "Nienazwany"], + ["uploading... {0}/{1}", "wysyłanie... {0}/{1}"], + ["Failed to upload!", "Nieudane wysyłanie!"], + ["Failed to download! Click to try again.", "Pobieranie nieudane! Kliknij, aby ponowic."], + ["Update Billing Info", "Zaktualizuj dane rozliczeniowe"], + ["Select A Country", "Wybierz kraj"], + [ + "To update your billing info and payment method, please log in through our website (found under \"Settings\") or contact us at ", + "Aby zaktualizować swoje dane rozliczeniowe oraz metodę płatności, zaloguj się na naszej stronie (możńa znaleźć w zakładce \"Ustawienia\") albo skontaktuj się z nami." + ], + ["Payment Details", "Szczegóły płatności"], + ["Billing Address", "Adres rozliczeniowy"], + ["Billing Email", "Rozliczeniowy adres e-mail"], + ["Name", "Nazwa"], + ["Address", "Adres"], + ["Postal Code", "Kod pocztowy"], + ["City", "Miast"], + ["Tax Info", "Informacja podatkowa"], + ["This is a business", "Na firmę"], + ["Tax ID", "Numer VAT"], + ["Coupon Code", "Kod zniżkowy"], + ["Add Later", "Dodaj później"], + ["Something went wrong. Please try again later!", "Coś poszło nie tak. Spróbuj ponownie później!"], + ["Add Payment Method", "Dodaj metodę płatności"], + ["per user / month", "za użytkownika / miesiąc"], + ["USD, billed annually", "USD, płatne rocznie"], + ["Try For Free", "Spróbuj za darmo"], + ["Please enter at least one email address!", "Podaj przynajmniej jeden, poprawny adres e-mail!"], + [ + "You have entered too many email addresses! Please delete some before submitting!", + "Podałeś/aś zbyt dużą liczbę adresów e-mail! Usuń proszę parę przed zatwierdzeniem!" + ], + ["Some of the emails you entered appear to be invalid!", "Parę z podanych adresów e-mail jest niepoprawnych!"], + ["Something went wrong! Please try again later!", "Coś poszło nie tak. Spróbuj później!"], + ["Invite New Members", "Zaproś nowych członków"], + [ + "Please enter up to {0} email addresses of the persons you would like to invite, separated by spaces or commas!", + "Podaj do {0} adresów e-mail osób, które zostaną zaproszone. Adresy rozdziel przecienkiem albo spacją!" + ], + ["Enter Email Address", "Podaj adres e-mail"], + ["Submit", "Wyślij"], + ["New Vault Item", "Nowy element sejfu"], + ["Item Name", "Nazwa elementów"], + ["Template", "Szablon"], + ["Vault", "Sejf"], + ["Create & Edit", "Stwórz & Edytuj"], + [ + "You have reached the maximum number of items for this account. Upgrade to Premium to get unlimited items for your private vault!", + "Osiągnąłeś maksymalną liczbę elementów dla tego konta. Rozszerz swoje konto do wersji Premium, aby mieć nielimitowaną liczbę elementów w prywatnym sejfie!" + ], + [ + "You have reached the maximum number of items for this account!", + "Osiągnąłeś maksymalną liczbę elementów dla tego konta!" + ], + ["Please enter an organization name!", "Podaj nazwę organizacji"], + ["Free For {0} Days", "Farmowe przez {0} dni"], + ["then", "a potem"], + ["per month", "na miesiąc"], + ["{0} min", "minimalnie {0}"], + ["{0} max", "maksymalnie {0}"], + ["Seats", "Stanowisko"], + ["Add Billing Info", "Dodaj dane rozliczeniowe"], + ["Create Organization", "Stwórz organizację"], + ["Organization Name", "Nazwa organizacji"], + ["Create", "Stwórz"], + ["Export Data", "Eksportuj dane"], + ["Target Vault", "Sejf docelowy"], + ["Format", "Format"], + [ + "WARNING: Exporting to CSV format will save your data without encyryption of any kind which means it can be read by anyone. We strongly recommend exporting your data as a secure, encrypted file, instead!", + "UWAGA: eksport danych do CSV zapisze Twoje dane bez szyfrowania co oznacza, że mogą być przeczytane przez kogokolwiek. Zamiast tego, możesz wyeksportować dane jako zaszyfrowany plik, co polecamy!" + ], + ["Export {0} Items", "Eksportuj elementy: {0}"], + ["Wybierz hasło do zabezpiecznia kopii!", ""], + ["Choose Password", "Wybierz hasło"], + ["Please choose a password!", "Wybierz proszę hasło!"], + ["Please repeat the password!", "Powtórz swoje hasło!"], + ["Password not repeated correctly!", "Podane hasła się różnią!"], + ["Choose A Field Type", "Wybierz typ pola"], + ["What kind of field you would like to add?", "Jakiego typu pole chciałbyś/aś dodać?"], + ["Enter Notes Here", "Podaj notatkę"], + ["Enter Secret", "Podaj wrażliwe dane"], + ["Enter Password", "Podaj hasło"], + ["Enter Value Here", "Wpisz tutaj wartość"], + ["Enter Field Name", "Podaj nazwę pola"], + ["Dash", "Myślnik"], + ["Underscore", "Podkreślnik"], + ["Slash", "Slash"], + ["Space", "Spacja"], + ["Generate Password", "Wygeneruj hasło"], + ["passphrase", "hasło"], + ["random string", "losowy ciąg znaków"], + ["Word Separator", "Separator słów"], + ["Language", "Język"], + ["words", "słowa"], + ["length", "długość"], + ["Use", "Użyj"], + ["Discard", "Anuluj"], + ["Are you sure you want to delete this group?", "Czy na pewno chcesz usunąć tą grupę?"], + ["Delete Group", "Usuń grupę"], + ["Type 'DELETE' to confirm", "Wpisz 'DELETE' aby potwierdzić"], + ["Enter Group Name", "Podaj nazwę grupy"], + ["Search...", "Szukaj..."], + ["Import Data", "Importuj dane"], + [ + "IMPORTANT: Before importing, please make sure that your CSV data is structured according to Padlocks specific requirements!", + "UWAGA: Przed importowanie, upewnij się ze struktura pliku CSV spełnia wymagania." + ], + ["Learn More", "Dowiedz się więcej"], + ["Import {0} Items", "Importuj elementy: {0}"], + ["This file is protected by a password.", "Tne plik zabezpieczony jest przez hasło."], + ["Wrong Password", "Niepoprawne hasło."], + [ + "The number of imported items exceeds your remaining quota. Upgrade to Premium to get unlimited items for your private vault!", + "Liczba zaimportowanych elementów przekracza limit. Zdobądź wersję Preium, aby uzyskać nielimitowaną liczbę elementów w prywatnym sejfie!" + ], + [ + "The number of imported items exceeds your remaining quota.", + "Liczba zaimportowanych elementów przekracza limit." + ], + ["Successfully imported {0} items.", "Zaimportowano pomyślnie elementy: {0}"], + ["This invite has expired", "TO zaproszenie już wygasło."], + ["Accepted", "Zaakceptowane"], + ["expires {0}", "wygasa {0}"], + ["Confirm Membership", "Potwierdź członkostwo"], + ["Organization Invite", "Zaproszenia organizacji"], + [ + "Please wait for an admin to complete the process. You will be notified as soon as you receive access.", + "Poczekaj, aż administrator zakończony proces. Zostaniesz poinformwany/a jak tylko przyznany zostanie dostęp." + ], + ["Enter Confirmation Code", "Podaj kod potwierdzający"], + [ + "If you haven't received the confirmation code yet, please ask the organization owner to provide it to you!", + "Jeśli nie otrzymałeś jeszcze kody potwierdzającego, poproś właściciela orgniazacji, aby Ci go podał!" + ], + [ + "They will also need the following confirmation code, which you should communicate to them separately:", + "Będą potrzebować następującego kodu potwierdzającego, który musisz im dostarczyć:" + ], + ["Resend", "Wyślij ponownie"], + ["Please enter a confirmation code!", "Podaj kod potwierdzający"], + [ + "You have successfully accepted the invite. You'll be notified once you've been granted access.", + "Pomyślnie przyjąłeś zaprszoenie. Zostaniesz poinformowany jak przyznany zostanie Ci dostęp." + ], + ["Wrong confirmation code. Please try again!", "Błędny kod. Spróbuj ponownie!"], + ["expired", "wygasło"], + ["accepted", "zaakceptowane"], + ["{0}", "{0}"], + ["Confirm", "Zatwierdź"], + ["Confirmation Code:", "Kod potwierdzający:"], + [ + "Upgrade to Premium now and get 1GB of encrypted file storage!", + "Zdobądź Preium teraz i zyskaj pojemność 1 GB na przechowywanie Twoich plików!" + ], + ["Enter Item Name", "Podaj nazwę elementu"], + ["Field", "Pole"], + ["Attachment", "Załącznik"], + ["Move", "Przenieś"], + ["by {0}", "przez {0}"], + ["Are you sure you want to delete this item?", "Czy na pewno chcesz usunąć ten element?"], + ["Items with attachments cannot be moved!", "Elementy z załącznikami nie mogą być przeniesione!"], + [ + "The selected file is too large! Only files of up to 5 MB are supported.", + "Wybrany plik jest za duży. Możesz wgrać pliki o maksymalym rozmiarze 5 MB." + ], + ["File uploaded successfully!", "Plik wgrany pomyślnie"], + ["Favorites", "Ulubione"], + ["Recently Used", "Ostatnio użyte"], + ["Attachments", "Załączniki"], + ["All Items", "Wszystkie elementy"], + ["My Vault", "Mój sejf"], + ["Tags", "Tagi"], + ["You don't have any tags yet.", "Nie masz jeszcze tagów"], + ["Your search did not match any items.", "Twoje wyszukiwanie nie odpowiada żadnym elementom"], + ["This vault does not have any items yet.", "Twój sejf nie zawiera jeszcze elementów."], + ["You don't have any attachments yet.", "Nie masz jeszcze załączników."], + ["You don't have any favorites yet.", "Nie masz jeszcze ulubionych."], + ["You don't have any recently used items!", "Nie użyłeś żadnych elementów!"], + ["You don't have any items yet.", "Nie masz jeszcze elementów."], + ["Type To Search", "Wpisz, aby wyszukać"], + ["{0} items selected", "Zaznaczono elementy: {0}"], + [ + "Some items in your selection are from Vaults you don't have write access to and cannot be deleted. Do you want to proceed deleting the other items?", + "Niektóre zaznaczone elementy z Twojego sejfu nie mają uprawnień zapisu i nie mogą zostać usunięta. Czy chcesz kontynuwać z bez nich?" + ], + ["Yes", "Tak"], + ["No", "Nie"], + [ + "Are you sure you want to delete these items? This action can not be undone!", + "Czy na pewno chcesz usunąć te elementy? Akcja nie może być odwrócona!" + ], + ["Delete {0} Items", "Usuń elementy: {0]=}"], + [ + "Some items in your selection have attachments and cannot be moved. Do you want to proceed moving the other items?", + "Niektóre elementy z zaznaczonych mają załączniki i nie mogą zostać przeniesione. Czy chcesz kontynuować z pozostałymi?" + ], + [ + "Some items in your selection are from Vaults you don't have write access to and cannot be moved. Do you want to proceed moving the other items?", + "Niektóre elementy z zaznaczonych nie mają uprawnień do zapisu i nie mogą zostać przeniesione. Czy chcesz kontynuować z pozostałymi?" + ], + ["No Name", "Brak nazwy"], + ["copied", "skopiowany"], + ["No Fields", "Brak pól!"], + ["This item has no fields.", "Ten element nie ma pól."], + ["Email Address", "Adres e-mail"], + ["Master Password", "Główne hasło"], + ["Login", "Login"], + ["New to Padloc?", "Jesteś nowym użytkownikiem Padloc?"], + ["Sign Up Now", "Dołącz teraz"], + ["Please enter a valid email address!", "Podaj poprawny adres e-mail!"], + [ + "Please enter the confirmation code sent to your email address to proceed!", + "Podaj kod potwierdzający wysłany na Twoją skrzynkę pocztową!" + ], + ["One Last Step!", "Ostatni krok!"], + ["Enter Verification Code", "Podaj kod potwierdzający"], + [ + "Maximum number of tries exceeded! Please resubmit and try again!", + "Maksymalna liczba prób przekroczona. Prześlij ponownie i spróbuj jeszcze raz!" + ], + ["Wrong username or password. Please try again!", "Zla nazwa użytkownika albo hasło. Spróbuj ponownie!"], + ["Can't remember your master password?", "Nie pamiętasz hasła głównego?"], + ["Recover Account", "Odzsykaj konto"], + ["Try Again", "Spróbuj ponownie"], + ["An account with this email address does not exist!", "Konto z takim adresem e-mail nie istnieje!"], + ["Sign Up", "Dołącz"], + ["Remove", "Usuń"], + ["Suspend", "Zawieś"], + ["Remove Admin", "Usuń administratora"], + ["Make Admin", "Mianuj administratorem"], + [ + "Are you sure you want to remove this member from this organization?", + "Czy na pewno chcesz usunąć tego członka z tej organizacji?" + ], + ["Remove Member", "Usuń członka"], + [ + "Are you sure you want to make this member an admin? Admins can manage vaults, groups and permissions.", + "Czy na pewno chcesz mianować tego członka administratorem? Administratorzy mogą zarządzać sejfami, grupami i uprawnieniami." + ], + [ + "Are you sure you want to remove this member as admin?", + "Czy na pewno chcesz odebrać administratora temu członkowi?" + ], + ["Are you sure you want to suspend this member?", "Czy na pewno chcesz zawiesić tego członka?"], + ["Suspend Member", "Zawieś członka"], + ["Groups", "Grupy"], + ["Vaults", "Sejfy"], + ["read", "odczyt"], + ["write", "zapis"], + ["Owner", "Właściciel"], + ["Admin", "Administrator"], + ["Suspended", "Zawieszony"], + ["Items", "Elementy"], + ["Orgs & Teams", "Organizacje & Grupy"], + ["New Organization", "Nowa organizacja"], + ["Settings", "Ustawienia"], + ["{0} Items", "Elementy: {0}"], + ["Move {0} To", "Przenieś {0} do"], + ["No target vaults available!", "Brak dostępnych sejfów!"], + ["Move Item", "Przenieś element"], + ["Move Items", "Przenieś elementy"], + ["Successfully created {0} invites!", "Pomyślnie stworzono zaproszenia: {0}"], + ["Unsuspend", "Odwieś"], + [ + "Are you sure you want to delete this organization? All associated vaults and the data within them will be lost! This action can not be undone.", + "Czy na pewno chcesz usunąć tą organizację? Wszystkie związane z nią dane zostaną utracone. Ta operacja nie może zostać odwrócona." + ], + ["Delete Organization", "Usuń organizację"], + ["Rename Organization", "Zmień nazwę organizacji"], + ["Company Name", "nazwa firmy"], + ["Please enter a name!", "Podaj nazwe!"], + [ + "Do you want to rotate this organizations cryptographic keys? All organization memberships will have to be reconfirmed but no data will be lost.", + "Czy chcesz przegenerować klucze kryptograficzne tej organizacji? Wszyscy członkowie będą musieli być zatwierdzeni ponownie, ale dane nie zostaną utracone" + ], + [ + "The organizations cryptographic keys have been rotated successfully and membership confirmation requests for all members have been sent out.", + "Klucz kryptograficznie organizacji zostały przegenerowane i prośba o potwierdzenie członków została wysłana." + ], + ["Members", "Członkowie"], + [ + "This organization currently does not have an active subscription and has been put in \"frozen\" state as a result. While in this state, you won't be able to make any changes to members, groups or vaults of this organization.", + "Twoja organizacja nie posiada aktualnie aktywnej subskrypcji i jest w stanie \"zamrożony\". Oznacza to, że nie będzie można przeprowadzać żadnych zmian dla członków, grup i sejfów." + ], + ["Update Subscription", "Aktualizuj subskrypcję"], + ["New Group", "Nowa grupa"], + ["New Vault", "Nowy sejf"], + ["Subscription", "Subskrypcja"], + ["Billing Info", "Dane rozliczeniowe"], + ["Security", "Bezpieczeństwo"], + ["Rotate Cryptographic Keys", "Przegeneruj klucze kryptograficzne"], + ["General", "Ogólne"], + ["Change Organization Name", "Zmień nazwę organizacji"], + [ + "Organizations allow you to securely share passwords, documents and other data within your family, team or any other kind of group!", + "Organizacje pozwalają na bezpieczne dzielenie się hasłami, dokumentami i innymi danymi w obrębie rodziny, zespołów czy innych grup!" + ], + ["Start Trial", "Rozpocznij okres próbny"], + ["Scan QR Code", "Zeskanuj kod QR"], + ["Failed to scan QR code. Error: ", "Nie udało się zeskanować kodu QR: Błędy: "], + ["Please enter your email address and new master password.", "Podaj swój adres e-mail i nowe hasło główne."], + ["New Master Password", "Nowe hasło główne"], + ["WARNING: Weak Password!", "UWAGA: Słabe hasło!"], + ["Repeat Master Password", "Powtórz hasło główne"], + [ + "IMPORTANT, READ CAREFULLY: Padloc is designed in a way that makes it impossible for us to access the data encrypted in any of your vaults even if we wanted to. While this is essential to ensuring the security of your data, it also has the following implications:", + "WAŻNE, PRZECZYTAJ: Padloc jest zaprojektowany tak, aby niemożliwy był dla nas dostęp do sejfów. O ile to zapewnia pełne bezpieczeństwo Twoich danych, ciągnie za sobą pewne konsekwencje:" + ], + [ + "Any data stored in your private vault can not be recovered and will be permantently lost.", + "Wszelkie dane w prywatnym sejf nie mogą zostać odzyskane i zginą bezpowrotnie" + ], + [ + "All your organization memberships will be suspended temporarily until confirmed by the organization owner.", + "Wszyscy członkowie organizacji będą tymczasowo zawieszenie dopóki nie zostaną zatwierdzeni przez właściciela." + ], + [ + "All members of organizations you own will be suspended temporarily until confirmed by you.", + "Wszyscy członkowie organizacji będą tymczasowo zawieszeni dopóki nie zostaną zatwierdzeni przez Ciebie." + ], + ["Please enter a master password!", "Podaj hasło główne:"], + [ + "You didn't repeat your master password correctly. Try again!", + "Niepowtórzyłeś hasła poprawnie. Spróbuj jeszcze raz!" + ], + [ + "The password you entered is weak which makes it easier for attackers to break the encryption used to protect your data. Try to use a longer password or include a variation of uppercase, lowercase and special characters as well as numbers!", + "Podane hasło jest słabe, co sprawia że jest łatwe do żlamania. Spróbuj podać dłusze hasło, albo użyj różnych znaków jak duże litery, małe litery czy znaki specjalne." + ], + ["Choose Different Password", "Wybierz inne hasło"], + ["Use Anyway", "Użyj mimowszystko"], + ["WARNING: Weak Password", "UWAGA: Słabe hasło"], + [ + "To complete the account recovery process, please enter the confirmation code sent to your email address!", + "Aby zakończyć proces odzyskiwania hasła, podaj kod potwierdzający wysłany na skrzynkę pocztową!" + ], + ["Account recovery successful!", "Konto odzyskane poprawnie!"], + ["Report Errors", "Zgłoś błędy"], + ["{0} Errors Detected", "Wybrano błędy: {0}"], + [ + "Padloc has registered {0} errors during your use of the app. These errors may not have any impact on functionality and can often be ignored, but reporting them may help us diagnose problems, identify possible failure modes and generally improve the stability of the app.", + "Padloc zarejestrował błędy w liczbie: {0}. Te błędy nie mają wpływo na funkcjonowanie aplikacji i mogą często być zignorowane. Ale zgloszenie ich może pomóc rozwiązywać problemy, identyfikować przyszłe blędy oraz poprawiać stabilność aplikacji." + ], + ["Profile", "Profil"], + ["Log Out", "Wyloguj"], + ["Change Master Password", "Zmień hasło główne"], + ["Auto Lock", "Auto-blokowanie"], + ["Lock Automatically", "Zablokuj automatycznie"], + [" min", " min"], + ["After", "Po"], + ["Enable Biometric Unlock", "Włącz odblokowywanie biometryczne"], + ["Import / Export", "Import / Eksport"], + ["Import...", "Importuj..."], + ["Export...", "Eskportuj..."], + ["Support", "Wsparcie"], + ["Website", "Strona"], + ["Contact Support", "Skontaktuj się z działem wsparcia"], + ["Danger Zone", "Niebezpieczna strefa"], + ["Delete Account", "Usuń konto"], + ["Edit Profile", "Edytuj profil"], + ["Do you really want to log out?", "Czy na pewno chcesz się wylogować?"], + ["Please enter your current password!", "Podaj swoje obecne hasło"], + ["Enter Current Password", "Podaj obecne hasło"], + ["Now choose a new master password!", "Teraz wybierz nowe główne hasło!"], + ["Enter New Password", "Podaj nowe hasło"], + ["Please enter a password!", "Podaj hasło!"], + ["Please confirm your new password!", "Powtórz swoje nowe hasło!"], + ["Repeat New Password", "Powtórz nowe hasło"], + ["Master password changed successfully.", "Główne hasło zmienione poprawnie."], + ["Please enter your master password to proceed.", "Podaj główne hasło, aby kontynuować."], + [ + "Are you sure you want to delete this account? All associated vaults and the data within them will be lost and any active subscriptions will be canceled immediately. This action can not be undone!", + "Czy na pewno chcesz usunąć to konto? Wszystkie sejfy i dane zostaną utracone a subskrypcje anulowane. Nie można odwrócić tej akcji." + ], + ["Are you sure you want to disable biometric unlock?", "Czy na pewno chcesz wyłączyć odblokowywanie biometryczne?"], + [ + "Welcome to Padloc! Let's get you started by creating an account for you.", + "Witamy w Padloc. Zacznijmy od stworzenia konta dla Ciebie." + ], + [ + "Your email address serves as your username and allows us to get in touch with you. Don't worry, we would never send you any spam!", + "Twój adres e-mail sluży jako nazwa użytkownika i pozwala nam być w kontakcie z Tobą. Nie martw się, nigdy nie wyślemy spamu!" + ], + ["Your Name", "Twoje imię"], + ["What should we call you?", "Jak powinniśmy Cię nazywać?"], + ["Continue", "Kontynuuj"], + ["Already have an account?", "Posiadasz już konto?"], + ["Sign In", "Zaloguj się"], + ["You've Got Mail!", "Otrzymałeś pocztę!"], + [ + "To verify your email address, please enter the confirmation code we sent to {0}.", + "Aby zweryfikować adres e-mail, podaj kod który wysłaliśmy Ci na {0}." + ], + ["Confirmation Code", "Kod potwierzający"], + ["Say hello to your", "Powiedz Cześć swojemu"], + [ + "It's the last password you'll ever have to remember! Please memorize it and never reveal it to anyone (not even us)! We recommend writing it down on a piece of paper and storing it somewhere safe, at least until you have it safely memorized.", + "To jest ostatnie hasło, które musisz zapamięć. Zaszyj je w swojej pamięci i nigdy nikomu o nim nie mów (nawet nam). Zalecamy, abys je gdzieś zapisal i trzymał w bezpiecznym miejscu. Przynajmniej do momentu, aż je w pełni zapamiętasz." + ], + ["[Tap To Reveal]", "[Stuknij, aby pokazać]"], + ["[Hover To Reveal]", "[Najedź, aby pokazać]"], + [ + "This random passphrase was generated just for you and is designed to be both secure and easy to remember. Don't like it?", + "To losowe hasło zostało wygenerowane tylko dla Ciebie, tak aby było bezpieczne i łatwie do zapamiętania. Nie podoba się?" + ], + ["Try Another One", "Spróbuj inne"], + ["Choose Your Own", "Wybierz swoje"], + ["An account with this email address already exists!", "Konto z takim adresem e-mail już istnieje!"], + ["Change Email", "Zmień e-mail"], + [ + "We recommend using a randomly generated password that is both strong and easy to remember.", + "Zalecamy użycie wygenerowanego hasła, które jest zarówno silne jak i łatwie do zapamiętania." + ], + ["Keep This One", "Zatrzymaj to"], + ["Generate Another", "Wygeneruj inne"], + ["Choose My Own", "Wybiorę sam"], + ["Want A Different Master Password?", "Chcesz inne hasło główne?"], + ["Choose Own Master Password", "Wybierz hasło główne!"], + ["Resume Subscription", "Wznów subskrypcję"], + ["Cancel Subscription", "Anuluj subskrypcję"], + ["Update Plan", "Zaktualizuj plan"], + ["Are you sure you want to downgrade to the Free Plan?", "Czy na pewno chcesz obniżyć to planu darmowego?"], + ["Downgrade", "Downgrade"], + ["No Plan Selected", "Brak planu"], + ["Unlimited", "Nielimitowane"], + ["{0} / Year", "{0} / rok"], + ["Canceled ({0} days left)", "Anulowany (pozostało dni: {0})"], + ["Authentication Required", "Wymagana autentykacja"], + ["Inactive", "Niekatywny"], + ["Trialing ({0} days left)", "Wersja próbna (pozostało dni: {0})"], + ["Choose Plan", "Wybierz plan"], + ["Complete Payment", "Zakończ płatność"], + ["Downgrade To Free Plan", "Obniż do planu darmowego"], + ["Add Tag", "Dodaj Tag"], + ["Choose A Template", "Wybierz szablon"], + ["What kind of item you would like to add?", "Jakiego typu element chcesz dodać?"], + ["Invalid Code", "Niepoprawny kod"], + ["Logged In As", "Zalogowany jako"], + ["Unlock", "Odblokuj"], + ["Wrong password! Please try again.", "Błędne hasło. Spróbuj ponownie."], + ["Logout / Switch Account", "Wyloguj / Przełącz konto"], + ["Forgot Password", "Przypomnij hasło"], + ["Are you sure you want to log out of this account?", "Czy na pewno chcesz się wylogować?"], + [ + "Biometric unlock expired. Complete setup to reeneable.", + "Biometryczne odblokowanie wygasło. Potwórz konfigurację, aby włączyć ponownie." + ], + ["Biometric unlock failed! Reason: {0}", "Biometryczne odblokowanie nieudane. Powód: {0}"], + ["Failed To Unlock", "Nieudało się odblokować"], + ["Update", "Aktualizuj"], + ["Storage limit exceeded!", "Przekroczono limit dla przechowywanych danych!"], + ["Upload failed! Please try again!", "Wysyłanie nie udało się. Spróbuj ponownie!"], + ["Upload Attachment", "Wgraj załącznik"], + ["Unkown File Type", "Nieznany typ pliku"], + ["Retry Upload", "Ponów wgrywanie"], + ["Upload", "Wgraj"], + [ + "Are you sure you want to delete this vault? All the data stored in it will be lost! This action can not be undone.", + "Czy na pewno chcesz usunąć ten sejf? Wszystkie dane przechowywane w środku zostaną utracone. Nie da się tego cofnąć." + ], + ["Delete Vault", "Usuń sejf"], + ["Enter Vault Name", "Podaj nazwę sejfu"], + ["Username", "Nazwa użytkownika"], + ["Password", "Hasło"], + ["URL", "Link"], + ["Notes", "Notatki"], + ["Your session has expired. Please log in again!", "Twoja sesja wygasła. Zaloguj się ponownie!"], + [ + "A new update is ready to install! Do you want to install it now?", + "Nowa aktualizacja jest gotowa do zainstalowania! Czy chcesz zainstalować teraz?" + ], + ["Instaluj & Przeładuj", ""], + ["Later", "Później"], + ["Date", "Data"], + ["Month", "Miesiąc"], + ["Credit Card Number", "Numer karty kredytowej"], + ["Phone Number", "Numer telefonu"], + ["PIN", "PIN"], + ["Two-Factor Token", "Token dwu-składnikowy"], + ["Note", "Notatka"], + ["Other", "Inne"], + ["Credit Card", "Karta kredytowa"], + ["Card Number", "Numer karty"], + ["Card Owner", "Właściciel karty"], + ["Valid Until", "Ważna do"], + ["CVC", "CVC"], + ["Bank Account", "Numer konta"], + ["Account Owner", "Właściciel konta"], + ["IBAN", "IBAN"], + ["BIC", "BIC"], + ["Card PIN", "PIN karty"], + ["WIFI Password", "Hasło WIFI"], + ["Passport", "Paszport"], + ["Full Name", "Imię i nazwisko"], + ["Passport Number", "Numer paszportu"], + ["Country", "Państwo"], + ["Birthdate", "Data urodzenia"], + ["Birthplace", "Miejsce urodzenia"], + ["Issued On", "Podpisane na"], + ["Expires", "Wygasa"], + ["Document", "Dokument"], + ["Custom", "Własne"], + ["{0} on {1}", "{0} na {1}"], + ["{0} Device", "Urządzenie {0}"] ] diff --git a/packages/locale/res/translations/ru.json b/packages/locale/res/translations/ru.json index bd766d5c..50a09db0 100644 --- a/packages/locale/res/translations/ru.json +++ b/packages/locale/res/translations/ru.json @@ -1,1574 +1,560 @@ [ - [ - "OK", - "OK" - ], - [ - "o f f l i n e", - "о ф л а й н" - ], - [ - "Could not find invite! Did you use the correct link?", - "Приглашение не найдено! Проверьте правильность ссылки." - ], - [ - "Get Premium", - "Получить Премиум" - ], - [ - "Cancel", - "Отмена" - ], - [ - "It looks like the app cannot connect to the Padloc servers right now, probably due to a missing internet connection. You can still access your vaults and even create or edit Vault Items but your changes won't be synchronized until you're back online.", - "Похоже сейчас приложение не может соединиться с Padloc сервером, возможно отсутствует интернет соединение. У вас есть доступ к локальному хранилищу, вы можете создавать и редактировать записи, но они не будут синхронизированы до восстановления соединения с интернетом." - ], - [ - "You're Offline", - "Нет соединения с интернетом" - ], - [ - "Do you want to enable biometric unlock for this device?", - "Желаете включить биометрическую разблокировку для этого устройства?" - ], - [ - "Setup", - "Настройка" - ], - [ - "Biometric Unlock", - "Биометрическая разблокировка" - ], - [ - "Biometric authentication failed! Canceling Setup.", - "Биометрическая аутентификация не удалась! Настройка прекращается." - ], - [ - "Setup Failed", - "Настройка не удалась" - ], - [ - "Biometric unlock failed! Canceling Setup. (Reason: {0})", - "Биометрическая аутентификация не удалась! Настройка прекращается. (Причина: {0})" - ], - [ - "Please enter your master password!", - "Введите мастер-пароль!" - ], - [ - "Enter Master Password", - "Ввод мастер пароля" - ], - [ - "Wrong password! Please try again!", - "Неверный пароль! Попробуйте снова!" - ], - [ - "Biometric unlock activated successfully!", - "Биометрическая разблокировка активирована успешно!" - ], - [ - "Are you sure you want to delete this attachment?", - "Вы уверены, что желаете удалить это вложение?" - ], - [ - "Delete", - "Удалить" - ], - [ - "Delete Attachment", - "Удалить вложение" - ], - [ - "Download failed!", - "Загрузка не удалась!" - ], - [ - "Do you want to save this file to your disk? WARNING: Doing this will leave the file exposed and unprotected on your harddrive!", - "Желаете сохранить этот файл на диск? ВНИМАНИЕ: Файл, сохраненный на диске будет не зашифрован и не защищен от просмотра!" - ], - [ - "Save", - "Сохранить" - ], - [ - "Save To Disk", - "Сохранить на диск" - ], - [ - "Edit Name", - "Редактировать название" - ], - [ - "Attachment Name", - "Название вложения" - ], - [ - "Please enter an attachment name!", - "Введите название вложения" - ], - [ - "Unknown File Type", - "Неизвестный тип файла" - ], - [ - "downloading... {0}/{1}", - "загрузка... {0}/{1}" - ], - [ - "Unnamed", - "Без названия" - ], - [ - "uploading... {0}/{1}", - "закачка... {0}/{1}" - ], - [ - "Failed to upload!", - "Закачка не удалась!" - ], - [ - "Failed to download! Click to try again.", - "Загрузка не удалась! Щелкните, чтобы повторить попытку." - ], - [ - "Update Billing Info", - "Обновление информации по выставлению счетов" - ], - [ - "Select A Country", - "Выберите страну" - ], - [ - "To update your billing info and payment method, please log in through our website (found under \"Settings\") or contact us at ", - "Для обновления информации по выставлению счетов и метода оплаты залогиньтесь на нашем сайте (доступно в разделе \"Настройки\") или свяжитесь с нами через " - ], - [ - "Payment Details", - "Детали платежа" - ], - [ - "Billing Address", - "Адрес для выставления счета" - ], - [ - "Billing Email", - "Email для выставления счета" - ], - [ - "Name", - "Имя" - ], - [ - "Address", - "Адрес" - ], - [ - "Postal Code", - "Почтовый индекс" - ], - [ - "City", - "Город" - ], - [ - "Tax Info", - "Налоговая информация" - ], - [ - "This is a business", - "Это рабочий" - ], - [ - "Tax ID", - "ИНН" - ], - [ - "Coupon Code", - "Код купона" - ], - [ - "Add Later", - "Добавить позднее" - ], - [ - "Something went wrong. Please try again later!", - "Что-то пошло не так. Попробуйте позже!" - ], - [ - "Add Payment Method", - "Добавить метод оплаты" - ], - [ - "per user / month", - "на пользователя / в месяц" - ], - [ - "USD, billed annually", - "USD, ежегодный платеж" - ], - [ - "Try For Free", - "Попробуйте бесплатно" - ], - [ - "Please enter at least one email address!", - "Пожалуйста, введите как минимум один email адрес!" - ], - [ - "You have entered too many email addresses! Please delete some before submitting!", - "Вы ввели слишком много адресов! Удалите некоторые перед отправкой!" - ], - [ - "Some of the emails you entered appear to be invalid!", - "Некоторые из введенных адресов некорректны!" - ], - [ - "Something went wrong! Please try again later!", - "Что-то пошло не так! Попробуйте позже!" - ], - [ - "Invite New Members", - "Пригласить новых членов" - ], - [ - "Please enter up to {0} email addresses of the persons you would like to invite, separated by spaces or commas!", - "Введите до {0} email адресов людей, которых вы хотите пригласить, разделяя адреса пробелом или запятой!" - ], - [ - "Enter Email Address", - "Введите email адрес" - ], - [ - "Submit", - "Отправить" - ], - [ - "New Vault Item", - "Новая запись в хранилище" - ], - [ - "Item Name", - "Название записи" - ], - [ - "Template", - "Шаблон" - ], - [ - "Vault", - "Хранилище" - ], - [ - "Create & Edit", - "Создать и редактировать" - ], - [ - "You have reached the maximum number of items for this account. Upgrade to Premium to get unlimited items for your private vault!", - "Вы достигли максимума записей для этого аккаунта. Перейдите на Премиум чтобы получить неограниченное количество записей для приватного хранилища!" - ], - [ - "You have reached the maximum number of items for this account!", - "Вы достигли максимума записей для этого аккаунта." - ], - [ - "Please enter an organization name!", - "Введите название организации!" - ], - [ - "Free For {0} Days", - "Бесплатно на {0} дней" - ], - [ - "then", - "далее" - ], - [ - "per month", - "на месяц" - ], - [ - "{0} min", - "{0} min" - ], - [ - "{0} max", - "{0} max" - ], - [ - "Seats", - "Мест" - ], - [ - "Add Billing Info", - "Добавить информацию для выставления счетов" - ], - [ - "Create Organization", - "Создать организацию" - ], - [ - "Organization Name", - "Название организации" - ], - [ - "Create", - "Создать" - ], - [ - "Export Data", - "Экспортировать данные" - ], - [ - "Target Vault", - "Целевое хранилище" - ], - [ - "Format", - "Формат" - ], - [ - "WARNING: Exporting to CSV format will save your data without encyryption of any kind which means it can be read by anyone. We strongly recommend exporting your data as a secure, encrypted file, instead!", - "ВНИМАНИЕ: Экспорт в CSV формате сохранит данные не зашифрованными, что значит, что их сможет прочесть кто угодно. Мы настоятельно рекомендуем экспортировать данные наиболее безопасным методом в виде зашифрованного файла!" - ], - [ - "Export {0} Items", - "Экспорт {0} записей" - ], - [ - "Please choose a password to protect this backup with!", - "Задайте пароль для защиты этого архива" - ], - [ - "Choose Password", - "Задайте пароль" - ], - [ - "Please choose a password!", - "Пожалуйста, задайте пароль!" - ], - [ - "Please repeat the password!", - "Повторите пароль!" - ], - [ - "Password not repeated correctly!", - "Пароли не совпадают!" - ], - [ - "Choose A Field Type", - "Выберите тип поля" - ], - [ - "What kind of field you would like to add?", - "Какого типа поле вы хотите добавить?" - ], - [ - "Enter Notes Here", - "Добавьте заметки" - ], - [ - "Enter Secret", - "Введите секрет" - ], - [ - "Enter Password", - "Введите пароль" - ], - [ - "Enter Value Here", - "Введите значение" - ], - [ - "Enter Field Name", - "Введите название поля" - ], - [ - "Dash", - "Тире" - ], - [ - "Underscore", - "Подчеркивание" - ], - [ - "Slash", - "Слэш" - ], - [ - "Space", - "Пробел" - ], - [ - "Generate Password", - "Сгенерировать пароль" - ], - [ - "passphrase", - "парольная фраза" - ], - [ - "random string", - "случайная строка" - ], - [ - "Word Separator", - "Разделитель слов" - ], - [ - "Language", - "Язык" - ], - [ - "words", - "слова" - ], - [ - "length", - "длина" - ], - [ - "Use", - "Использовать" - ], - [ - "Discard", - "Отменить" - ], - [ - "Are you sure you want to delete this group?", - "Вы уверены, что хотите удалить эту группу?" - ], - [ - "Delete Group", - "Удалить группу" - ], - [ - "Type 'DELETE' to confirm", - "Введите 'DELETE' для подтверждения" - ], - [ - "Enter Group Name", - "Введите название группы" - ], - [ - "Search...", - "Поиск..." - ], - [ - "Import Data", - "Импорт данных" - ], - [ - "IMPORTANT: Before importing, please make sure that your CSV data is structured according to Padlocks specific requirements!", - "ВНИМАНИЕ: Перед импортом убедитесь, что данные в CSV формате структурированы в соответствии с требованиями Padlock!" - ], - [ - "Learn More", - "Узнать больше" - ], - [ - "Import {0} Items", - "Импорт {0} записей" - ], - [ - "This file is protected by a password.", - "Этот файл защищен паролем." - ], - [ - "Wrong Password", - "Неверный пароль" - ], - [ - "The number of imported items exceeds your remaining quota. Upgrade to Premium to get unlimited items for your private vault!", - "Количество импортированных записей превышает оставшийся лимит. Перейдите на Премиум, чтобы получить неограниченное количество записей в приватном хранилище!" - ], - [ - "The number of imported items exceeds your remaining quota.", - "Количество импортированных записей превышает оставшийся лимит." - ], - [ - "Successfully imported {0} items.", - "Успешно импортировано {0} записей." - ], - [ - "This invite has expired", - "Срок действия этого приглашения истёк" - ], - [ - "Accepted", - "Принято" - ], - [ - "expires {0}", - "истекает {0}" - ], - [ - "Confirm Membership", - "Подтвердить членство" - ], - [ - "Organization Invite", - "Приглашение организации" - ], - [ - "Please wait for an admin to complete the process. You will be notified as soon as you receive access.", - "Дождитесь подтверждения администратора для продолжения процесса. Вы будете уведомлены о получении доступа." - ], - [ - "Enter Confirmation Code", - "Введите код подтверждения" - ], - [ - "If you haven't received the confirmation code yet, please ask the organization owner to provide it to you!", - "Если вы еще не получили код подтверждения, запросите его у владельца вашей организации!" - ], - [ - "They will also need the following confirmation code, which you should communicate to them separately:", - "Им также потребуется следующий код подтверждения, который вы должны сообщить им отдельно:" - ], - [ - "Resend", - "Послать снова" - ], - [ - "Please enter a confirmation code!", - "Введите код подтверждения!" - ], - [ - "You have successfully accepted the invite. You'll be notified once you've been granted access.", - "Вы успешно подтвердили приглашение. Вы будете уведомлены, как только получите доступ." - ], - [ - "Wrong confirmation code. Please try again!", - "Неверный код подтверждения. Попробуйте снова!" - ], - [ - "expired", - "устарел" - ], - [ - "accepted", - "принято" - ], - [ - "{0}", - "{0}" - ], - [ - "Confirm", - "Подтвердить" - ], - [ - "Confirmation Code:", - "Код подтверждения:" - ], - [ - "Upgrade to Premium now and get 1GB of encrypted file storage!", - "Перейдите на Премиум сейчас и получите 1Гб зашифрованного файлового хранилища!" - ], - [ - "Enter Item Name", - "Введите название записи" - ], - [ - "Field", - "Поле" - ], - [ - "Attachment", - "Вложение" - ], - [ - "Move", - "Переместить" - ], - [ - "by {0}", - "по {0}" - ], - [ - "Are you sure you want to delete this item?", - "Вы уверены, что хотите удалить эту запись?" - ], - [ - "Items with attachments cannot be moved!", - "Записи с вложениями не могут быть перемещены!" - ], - [ - "The selected file is too large! Only files of up to 5 MB are supported.", - "Выбранный файл слишком большой! Поддерживаются файлы до 5Мб." - ], - [ - "File uploaded successfully!", - "Файл закачен успешно!" - ], - [ - "Favorites", - "Избранное" - ], - [ - "Recently Used", - "Недавние" - ], - [ - "Attachments", - "Вложения" - ], - [ - "All Items", - "Все записи" - ], - [ - "My Vault", - "Моё хранилище" - ], - [ - "Tags", - "Тэги" - ], - [ - "You don't have any tags yet.", - "У вас нет ни одного тэга." - ], - [ - "Your search did not match any items.", - "Поиск не дал результатов." - ], - [ - "This vault does not have any items yet.", - "В этом хранилище нет записей." - ], - [ - "You don't have any attachments yet.", - "У вас нет ни одного вложения." - ], - [ - "You don't have any favorites yet.", - "У вас нет элементов в избранном." - ], - [ - "You don't have any recently used items!", - "У вас нет недавно использованных записей!" - ], - [ - "You don't have any items yet.", - "У вас нет записей." - ], - [ - "Type To Search", - "Введите для поиска" - ], - [ - "{0} items selected", - "{0} записей выбрано" - ], - [ - "Some items in your selection are from Vaults you don't have write access to and cannot be deleted. Do you want to proceed deleting the other items?", - "Некоторые выбранные записи находятся в хранилищах, к которым у вас нет доступа на запись, и не могут быть удалены. Удалить остальные записи?" - ], - [ - "Yes", - "Да" - ], - [ - "No", - "Нет" - ], - [ - "Are you sure you want to delete these items? This action can not be undone!", - "Вы уверены, что следует удалить эти записи? Это действие необратимо!" - ], - [ - "Delete {0} Items", - "Удалить {0} записей" - ], - [ - "Some items in your selection have attachments and cannot be moved. Do you want to proceed moving the other items?", - "Некоторые выбранные записи имеют вложения и не могут быть перемещены. Переместить оставшиеся?" - ], - [ - "Some items in your selection are from Vaults you don't have write access to and cannot be moved. Do you want to proceed moving the other items?", - "Некоторые выбранные записи находятся в хранилищах, к которым у вас нет доступа на запись, и не могут быть перемещены. Продолжить перемещение оставшихся?" - ], - [ - "No Name", - "Без имени" - ], - [ - "copied", - "скопировано" - ], - [ - "No Fields", - "Нет полей" - ], - [ - "This item has no fields.", - "Эта запись не имеет полей." - ], - [ - "Email Address", - "Email адрес" - ], - [ - "Master Password", - "Мастер пароль" - ], - [ - "Login", - "Логин" - ], - [ - "New to Padloc?", - "Впервые в Padloc?" - ], - [ - "Sign Up Now", - "Зарегистрироваться" - ], - [ - "Please enter a valid email address!", - "Введите действительный email!" - ], - [ - "Please enter the confirmation code sent to your email address to proceed!", - "Введите код подтверждения, посланный на ваш email!" - ], - [ - "One Last Step!", - "Еще один шаг!" - ], - [ - "Enter Verification Code", - "Введите код подтверждения" - ], - [ - "Maximum number of tries exceeded! Please resubmit and try again!", - "Превышено максимальное количество попыток! Переотправьте и попробуйте снова!" - ], - [ - "Wrong username or password. Please try again!", - "Неверное имя пользователя или пароль! Попробуйте снова!" - ], - [ - "Can't remember your master password?", - "Не можете вспомнить ваш мастер-пароль?" - ], - [ - "Recover Account", - "Восстановить аккаунт" - ], - [ - "Try Again", - "Попробуйте снова" - ], - [ - "An account with this email address does not exist!", - "Аккаунт с указанным адресом не существует!" - ], - [ - "Sign Up", - "Зарегистрироваться" - ], - [ - "Remove", - "Удалить" - ], - [ - "Suspend", - "Приостановить" - ], - [ - "Remove Admin", - "Убрать права администратора" - ], - [ - "Make Admin", - "Дать права администратора" - ], - [ - "Are you sure you want to remove this member from this organization?", - "Вы уверены, что хотите удалить этого члена организации?" - ], - [ - "Remove Member", - "Удалить члена организации" - ], - [ - "Are you sure you want to make this member an admin? Admins can manage vaults, groups and permissions.", - "Вы уверены, что хотите предоставить этому члену организации права администратора? Администратор может управлять хранилищами, группами и правами." - ], - [ - "Are you sure you want to remove this member as admin?", - "Вы уверены, что хотите убрать у этого пользователя права администратора?" - ], - [ - "Are you sure you want to suspend this member?", - "Вы уверены, что хотите приостановить членство этого пользователя в организации?" - ], - [ - "Suspend Member", - "Приостановить членство пользователя" - ], - [ - "Groups", - "Группы" - ], - [ - "Vaults", - "Хранилища" - ], - [ - "read", - "читать" - ], - [ - "write", - "писать" - ], - [ - "Owner", - "Владелец" - ], - [ - "Admin", - "Администратор" - ], - [ - "Suspended", - "Приостановлен" - ], - [ - "Items", - "Записи" - ], - [ - "Orgs & Teams", - "Организации и команды" - ], - [ - "New Organization", - "Новая организация" - ], - [ - "Settings", - "Настройки" - ], - [ - "{0} Items", - "{0} записей" - ], - [ - "Move {0} To", - "Переместить {0} в" - ], - [ - "No target vaults available!", - "Нет доступных целевых хранилищ!" - ], - [ - "Move Item", - "Переместить запись" - ], - [ - "Move Items", - "Переместить записи" - ], - [ - "Successfully created {0} invites!", - "{0} приглашений созданы успешно!" - ], - [ - "Unsuspend", - "Разблокировать" - ], - [ - "Are you sure you want to delete this organization? All associated vaults and the data within them will be lost! This action can not be undone.", - "Вы уверены, что хотите удалить эту организацию? Все хранилища организации и данные в них будут утеряны! Эта операция необратима!" - ], - [ - "Delete Organization", - "Удалить организацию" - ], - [ - "Rename Organization", - "Переименовать организацию" - ], - [ - "Company Name", - "Название компании" - ], - [ - "Please enter a name!", - "Пожалуйста, введите название!" - ], - [ - "Do you want to rotate this organizations cryptographic keys? All organization memberships will have to be reconfirmed but no data will be lost.", - "Вы хотите сменить криптографический ключ организации? Все члены организации должны будут заново подтвердить членство но все данные будут сохранены." - ], - [ - "The organizations cryptographic keys have been rotated successfully and membership confirmation requests for all members have been sent out.", - "Криптографический ключ организации изменен успешно, запросы на подтверждение разосланы членам организации." - ], - [ - "Members", - "Члены организации" - ], - [ - "This organization currently does not have an active subscription and has been put in \"frozen\" state as a result. While in this state, you won't be able to make any changes to members, groups or vaults of this organization.", - "Данная организация не имеет активной подписки и находится в \"замороженном\" состоянии. В этом состоянии вы не можете производить изменения членов организации, групп или хранилищ." - ], - [ - "Update Subscription", - "Обновить подписку" - ], - [ - "New Group", - "Новая группа" - ], - [ - "New Vault", - "Новое хранилище" - ], - [ - "Subscription", - "Подписка" - ], - [ - "Billing Info", - "Платежная информация" - ], - [ - "Security", - "Безопасность" - ], - [ - "Rotate Cryptographic Keys", - "Сменить криптографический ключ" - ], - [ - "General", - "Общие" - ], - [ - "Change Organization Name", - "Сменить название организации" - ], - [ - "Organizations allow you to securely share passwords, documents and other data within your family, team or any other kind of group!", - "Организации позволяют безопасно совместно использовать пароли, документы и другие данные в вашей семье, команде и любых других группах!" - ], - [ - "Start Trial", - "Начать пробный период" - ], - [ - "Scan QR Code", - "Сканировать QR-код" - ], - [ - "Failed to scan QR code. Error: ", - "Не удалось отсканировать QR-код. Ошибка: " - ], - [ - "Please enter your email address and new master password.", - "Введите ваш email адрес и новый мастер-пароль." - ], - [ - "New Master Password", - "Новый мастер-пароль" - ], - [ - "WARNING: Weak Password!", - "ВНИМАНИЕ: Слабый пароль!" - ], - [ - "Repeat Master Password", - "Повторите мастер пароль" - ], - [ - "IMPORTANT, READ CAREFULLY: Padloc is designed in a way that makes it impossible for us to access the data encrypted in any of your vaults even if we wanted to. While this is essential to ensuring the security of your data, it also has the following implications:", - "ВАЖНО, ПРОЧТИТЕ ВНИМАТЕЛЬНО: Padloc спроектирован так, что не позволяет нам получить доступ к зашифрованным данным в ваших хранилищах, даже в случае если бы мы захотели его получить. Это важно для обеспечения уверенности в безопасности ваших данных, но также подразумевает следующее:" - ], - [ - "Any data stored in your private vault can not be recovered and will be permantently lost.", - "Все данные в вашем приватном хранилище не могут быть восстановлены и будут утеряны навсегда." - ], - [ - "All your organization memberships will be suspended temporarily until confirmed by the organization owner.", - "Ваше членство во всех организациях будет приостановлено до подтверждения владельцем организации." - ], - [ - "All members of organizations you own will be suspended temporarily until confirmed by you.", - "Членство всех пользователей в ваших организациях будет приостановлено до подтверждения вами." - ], - [ - "Please enter a master password!", - "Введите ваш мастер-пароль!" - ], - [ - "You didn't repeat your master password correctly. Try again!", - "Повторно введенный мастер-пароль не совпадает с первоначальным. Попробуйте снова!" - ], - [ - "The password you entered is weak which makes it easier for attackers to break the encryption used to protect your data. Try to use a longer password or include a variation of uppercase, lowercase and special characters as well as numbers!", - "Вы ввели слабый пароль, что может позволить злоумышленникам взломать защиту ваших данных. Попробуйте использовать более длинный пароль или включить в него различные символы в разных регистрах и специальные символы!" - ], - [ - "Choose Different Password", - "Выберите другой пароль" - ], - [ - "Use Anyway", - "Использовать этот" - ], - [ - "WARNING: Weak Password", - "ВНИМАНИЕ: Слабый пароль" - ], - [ - "To complete the account recovery process, please enter the confirmation code sent to your email address!", - "Для завершения процесса восстановления аккаунта, введите код подтверждения высланный на ваш email!" - ], - [ - "Account recovery successful!", - "Аккаунт успешно восстановлен!" - ], - [ - "Report Errors", - "Сообщить об ошибке" - ], - [ - "{0} Errors Detected", - "Ошибок обнаружено: {0}" - ], - [ - "Padloc has registered {0} errors during your use of the app. These errors may not have any impact on functionality and can often be ignored, but reporting them may help us diagnose problems, identify possible failure modes and generally improve the stability of the app.", - "Padloc обнаружил {0} ошибок в работе приложения. Эти ошибки могут не оказывать влияния на функционал и скорее всего могут быть проигнорированы, но если вы сообщите нам о них, это поможет диагностировать возможные проблемы и улучшить функциональность и стабильность приложения." - ], - [ - "Profile", - "Профиль" - ], - [ - "Log Out", - "Выйти" - ], - [ - "Change Master Password", - "Сменить мастер пароль" - ], - [ - "Auto Lock", - "Автоматическая блокировка" - ], - [ - "Lock Automatically", - "Блокировать автоматически" - ], - [ - " min", - " мин." - ], - [ - "After", - "После" - ], - [ - "Enable Biometric Unlock", - "Включить биометрическую разблокировку" - ], - [ - "Import / Export", - "Импорт / Экспорт" - ], - [ - "Import...", - "Импорт..." - ], - [ - "Export...", - "Экспорт..." - ], - [ - "Support", - "Поддержка" - ], - [ - "Website", - "Сайт" - ], - [ - "Contact Support", - "Написать в поддержку" - ], - [ - "Danger Zone", - "Опасный раздел" - ], - [ - "Delete Account", - "Удалить аккаунт" - ], - [ - "Edit Profile", - "Редактировать профиль" - ], - [ - "Do you really want to log out?", - "Вы действительно хотите выйти?" - ], - [ - "Please enter your current password!", - "Введите ваш текущий пароль!" - ], - [ - "Enter Current Password", - "Ввод текущего пароля" - ], - [ - "Now choose a new master password!", - "Выберите новый мастер-пароль!" - ], - [ - "Enter New Password", - "Ввод нового пароля" - ], - [ - "Please enter a password!", - "Пожалуйста введите пароль!" - ], - [ - "Please confirm your new password!", - "Подтвердите ваш новый пароль!" - ], - [ - "Repeat New Password", - "Подтверждение пароля" - ], - [ - "Master password changed successfully.", - "Мастер-пароль изменен успешно." - ], - [ - "Please enter your master password to proceed.", - "Введите ваш мастер-пароль для продолжения." - ], - [ - "Are you sure you want to delete this account? All associated vaults and the data within them will be lost and any active subscriptions will be canceled immediately. This action can not be undone!", - "Вы уверены, что хотите удалить этот аккаунт? Все хранилища этого аккаунта и данные в них будут потеряны, все активные подписки будут отменены. Эта операция необратима!" - ], - [ - "Are you sure you want to disable biometric unlock?", - "Вы уверены, что хотите отключить биометическую разблокировку?" - ], - [ - "Welcome to Padloc! Let's get you started by creating an account for you.", - "Добро пожаловать в Padloc! Давайте начнем с создания аккаунта для вас." - ], - [ - "Your email address serves as your username and allows us to get in touch with you. Don't worry, we would never send you any spam!", - "Ваш Email адрес будет служить именем пользователя и позволит связаться с вами. Не беспокойтесь, мы не посылаем никакого спама!" - ], - [ - "Your Name", - "Ваше имя" - ], - [ - "What should we call you?", - "Как к вам обращаться?" - ], - [ - "Continue", - "Продолжить" - ], - [ - "Already have an account?", - "Уже есть аккаунт?" - ], - [ - "Sign In", - "Войти" - ], - [ - "You've Got Mail!", - "У вас есть сообщения!" - ], - [ - "To verify your email address, please enter the confirmation code we sent to {0}.", - "Для проверки email, введите код подтверждения, который мы выслали на {0}." - ], - [ - "Confirmation Code", - "Код подтверждения" - ], - [ - "Say hello to your", - "" - ], - [ - "It's the last password you'll ever have to remember! Please memorize it and never reveal it to anyone (not even us)! We recommend writing it down on a piece of paper and storing it somewhere safe, at least until you have it safely memorized.", - "Это последний пароль, который вам придется запомнить! Запомните его и никогда никому не сообщайте (даже нам)! Мы советуем записать его на бумаге и хранить в надежном месте, как минимум до тех пор пока вы его хорошо не запомните." - ], - [ - "[Tap To Reveal]", - "[Нажмите чтобы показать]" - ], - [ - "[Hover To Reveal]", - "[Наведите мышь, чтобы показать]" - ], - [ - "This random passphrase was generated just for you and is designed to be both secure and easy to remember. Don't like it?", - "Этот случайный пароль сформирован для вас, так, чтобы быть надежным паролем и при этом легко запоминаться. Вам он не нравится?" - ], - [ - "Try Another One", - "Попробуйте другой" - ], - [ - "Choose Your Own", - "Задайте свой" - ], - [ - "An account with this email address already exists!", - "Аккаунт с этим email уже существует!" - ], - [ - "Change Email", - "Сменить email" - ], - [ - "We recommend using a randomly generated password that is both strong and easy to remember.", - "Мы рекомендуем использовать случайно сгенерированный надежный пароль, который легко запомнить." - ], - [ - "Keep This One", - "Использовать этот" - ], - [ - "Generate Another", - "Сгенерировать другой" - ], - [ - "Choose My Own", - "Задать мой собственный" - ], - [ - "Want A Different Master Password?", - "Хотите другой мастер-пароль?" - ], - [ - "Choose Own Master Password", - "Задайте свой мастер-пароль" - ], - [ - "Resume Subscription", - "Возобновить подписку" - ], - [ - "Cancel Subscription", - "Отменить подписку" - ], - [ - "Update Plan", - "Обновить тарифный план" - ], - [ - "Are you sure you want to downgrade to the Free Plan?", - "Вы уверены, что хотите изменить тарифный план на бесплатный?" - ], - [ - "Downgrade", - "Сменить тарифный план" - ], - [ - "No Plan Selected", - "Тарифный план не выбран" - ], - [ - "Unlimited", - "Без ограничений" - ], - [ - "{0} / Год", - "" - ], - [ - "Canceled ({0} days left)", - "Отменено ({0} дней осталось)" - ], - [ - "Authentication Required", - "Требуется аутентификация" - ], - [ - "Inactive", - "Неактивно" - ], - [ - "Trialing ({0} days left)", - "Пробный период ({0} дней осталось)" - ], - [ - "Choose Plan", - "Выберите тарифный план" - ], - [ - "Complete Payment", - "Завершить платеж" - ], - [ - "Downgrade To Free Plan", - "Понизить до бесплатного тарифа" - ], - [ - "Add Tag", - "Добавить тег" - ], - [ - "Choose A Template", - "Выберите шаблон" - ], - [ - "What kind of item you would like to add?", - "Какой тип записи вы хотите добавить?" - ], - [ - "Invalid Code", - "Неверный код" - ], - [ - "Logged In As", - "Вход как" - ], - [ - "Unlock", - "Разблокировать" - ], - [ - "Wrong password! Please try again.", - "Неверный пароль! Попробуйте снова." - ], - [ - "Logout / Switch Account", - "Выйти / Сменить аккаунт" - ], - [ - "Forgot Password", - "Забыли пароль" - ], - [ - "Are you sure you want to log out of this account?", - "Вы уверены, что хотите выйти из этого аккаунта?" - ], - [ - "Biometric unlock expired. Complete setup to reeneable.", - "Биометрическая разблокировка устарела. Настройте ее заново." - ], - [ - "Biometric unlock failed! Reason: {0}", - "Биометрическая разблокировка не удалась! Причина: {0}" - ], - [ - "Failed To Unlock", - "Разблокировка не удалась" - ], - [ - "Update", - "Обновить" - ], - [ - "Storage limit exceeded!", - "Превышен лимит хранения!" - ], - [ - "Upload failed! Please try again!", - "Закачка не удалась! Попробуйте снова!" - ], - [ - "Upload Attachment", - "Закачка вложения" - ], - [ - "Unkown File Type", - "Неизвестный тип файла" - ], - [ - "Retry Upload", - "Повторить закачку" - ], - [ - "Upload", - "Закачка" - ], - [ - "Are you sure you want to delete this vault? All the data stored in it will be lost! This action can not be undone.", - "Вы уверены, что хотите удалить это хранилище? Все данные в хранилище будут потеряны! Это действие необратимо." - ], - [ - "Delete Vault", - "Удалить хранилище" - ], - [ - "Enter Vault Name", - "Введите название хранилища" - ], - [ - "Username", - "Имя пользователя" - ], - [ - "Password", - "Пароль" - ], - [ - "URL", - "URL" - ], - [ - "Notes", - "Заметки" - ], - [ - "Your session has expired. Please log in again!", - "Ваша сессия устарела. Повторите вход!" - ], - [ - "A new update is ready to install! Do you want to install it now?", - "Новые обновления готовы к установке! Хотите установить их сейчас?" - ], - [ - "Install & Reload", - "Установить и перезагрузить" - ], - [ - "Later", - "Позже" - ], - [ - "Date", - "Дата" - ], - [ - "Month", - "Месяц" - ], - [ - "Credit Card Number", - "Номер кредитной карты" - ], - [ - "Phone Number", - "Номер телефона" - ], - [ - "PIN", - "PIN" - ], - [ - "2FA Token", - "Токен 2FA" - ], - [ - "Note", - "Заметки" - ], - [ - "Other", - "Другое" - ], - [ - "Credit Card", - "Кредитная карта" - ], - [ - "Card Number", - "Номер карты" - ], - [ - "Card Owner", - "Владелец карты" - ], - [ - "Valid Until", - "Действительно до" - ], - [ - "CVC", - "CVC" - ], - [ - "Bank Account", - "Номер счета" - ], - [ - "Account Owner", - "Владелец счета" - ], - [ - "IBAN", - "IBAN" - ], - [ - "BIC", - "BIC" - ], - [ - "Card PIN", - "PIN карты" - ], - [ - "WIFI Password", - "Пароль WiFi" - ], - [ - "Passport", - "Паспорт" - ], - [ - "Full Name", - "Полное имя" - ], - [ - "Passport Number", - "Номер паспорта" - ], - [ - "Country", - "Страна" - ], - [ - "Birthdate", - "Дата рождения" - ], - [ - "Birthplace", - "Место рождения" - ], - [ - "Issued On", - "Выдан" - ], - [ - "Expires", - "Истекает" - ], - [ - "Document", - "Документ" - ], - [ - "Custom", - "Другое" - ], - [ - "{0} on {1}", - "{0} на {1}" - ], - [ - "{0} Device", - "{0} Устройств" - ] + ["OK", "OK"], + ["o f f l i n e", "о ф л а й н"], + ["Could not find invite! Did you use the correct link?", "Приглашение не найдено! Проверьте правильность ссылки."], + ["Get Premium", "Получить Премиум"], + ["Cancel", "Отмена"], + [ + "It looks like the app cannot connect to the Padloc servers right now, probably due to a missing internet connection. You can still access your vaults and even create or edit Vault Items but your changes won't be synchronized until you're back online.", + "Похоже сейчас приложение не может соединиться с Padloc сервером, возможно отсутствует интернет соединение. У вас есть доступ к локальному хранилищу, вы можете создавать и редактировать записи, но они не будут синхронизированы до восстановления соединения с интернетом." + ], + ["You're Offline", "Нет соединения с интернетом"], + [ + "Do you want to enable biometric unlock for this device?", + "Желаете включить биометрическую разблокировку для этого устройства?" + ], + ["Setup", "Настройка"], + ["Biometric Unlock", "Биометрическая разблокировка"], + [ + "Biometric authentication failed! Canceling Setup.", + "Биометрическая аутентификация не удалась! Настройка прекращается." + ], + ["Setup Failed", "Настройка не удалась"], + [ + "Biometric unlock failed! Canceling Setup. (Reason: {0})", + "Биометрическая аутентификация не удалась! Настройка прекращается. (Причина: {0})" + ], + ["Please enter your master password!", "Введите мастер-пароль!"], + ["Enter Master Password", "Ввод мастер пароля"], + ["Wrong password! Please try again!", "Неверный пароль! Попробуйте снова!"], + ["Biometric unlock activated successfully!", "Биометрическая разблокировка активирована успешно!"], + ["Are you sure you want to delete this attachment?", "Вы уверены, что желаете удалить это вложение?"], + ["Delete", "Удалить"], + ["Delete Attachment", "Удалить вложение"], + ["Download failed!", "Загрузка не удалась!"], + [ + "Do you want to save this file to your disk? WARNING: Doing this will leave the file exposed and unprotected on your harddrive!", + "Желаете сохранить этот файл на диск? ВНИМАНИЕ: Файл, сохраненный на диске будет не зашифрован и не защищен от просмотра!" + ], + ["Save", "Сохранить"], + ["Save To Disk", "Сохранить на диск"], + ["Edit Name", "Редактировать название"], + ["Attachment Name", "Название вложения"], + ["Please enter an attachment name!", "Введите название вложения"], + ["Unknown File Type", "Неизвестный тип файла"], + ["downloading... {0}/{1}", "загрузка... {0}/{1}"], + ["Unnamed", "Без названия"], + ["uploading... {0}/{1}", "закачка... {0}/{1}"], + ["Failed to upload!", "Закачка не удалась!"], + ["Failed to download! Click to try again.", "Загрузка не удалась! Щелкните, чтобы повторить попытку."], + ["Update Billing Info", "Обновление информации по выставлению счетов"], + ["Select A Country", "Выберите страну"], + [ + "To update your billing info and payment method, please log in through our website (found under \"Settings\") or contact us at ", + "Для обновления информации по выставлению счетов и метода оплаты залогиньтесь на нашем сайте (доступно в разделе \"Настройки\") или свяжитесь с нами через " + ], + ["Payment Details", "Детали платежа"], + ["Billing Address", "Адрес для выставления счета"], + ["Billing Email", "Email для выставления счета"], + ["Name", "Имя"], + ["Address", "Адрес"], + ["Postal Code", "Почтовый индекс"], + ["City", "Город"], + ["Tax Info", "Налоговая информация"], + ["This is a business", "Это рабочий"], + ["Tax ID", "ИНН"], + ["Coupon Code", "Код купона"], + ["Add Later", "Добавить позднее"], + ["Something went wrong. Please try again later!", "Что-то пошло не так. Попробуйте позже!"], + ["Add Payment Method", "Добавить метод оплаты"], + ["per user / month", "на пользователя / в месяц"], + ["USD, billed annually", "USD, ежегодный платеж"], + ["Try For Free", "Попробуйте бесплатно"], + ["Please enter at least one email address!", "Пожалуйста, введите как минимум один email адрес!"], + [ + "You have entered too many email addresses! Please delete some before submitting!", + "Вы ввели слишком много адресов! Удалите некоторые перед отправкой!" + ], + ["Some of the emails you entered appear to be invalid!", "Некоторые из введенных адресов некорректны!"], + ["Something went wrong! Please try again later!", "Что-то пошло не так! Попробуйте позже!"], + ["Invite New Members", "Пригласить новых членов"], + [ + "Please enter up to {0} email addresses of the persons you would like to invite, separated by spaces or commas!", + "Введите до {0} email адресов людей, которых вы хотите пригласить, разделяя адреса пробелом или запятой!" + ], + ["Enter Email Address", "Введите email адрес"], + ["Submit", "Отправить"], + ["New Vault Item", "Новая запись в хранилище"], + ["Item Name", "Название записи"], + ["Template", "Шаблон"], + ["Vault", "Хранилище"], + ["Create & Edit", "Создать и редактировать"], + [ + "You have reached the maximum number of items for this account. Upgrade to Premium to get unlimited items for your private vault!", + "Вы достигли максимума записей для этого аккаунта. Перейдите на Премиум чтобы получить неограниченное количество записей для приватного хранилища!" + ], + [ + "You have reached the maximum number of items for this account!", + "Вы достигли максимума записей для этого аккаунта." + ], + ["Please enter an organization name!", "Введите название организации!"], + ["Free For {0} Days", "Бесплатно на {0} дней"], + ["then", "далее"], + ["per month", "на месяц"], + ["{0} min", "{0} min"], + ["{0} max", "{0} max"], + ["Seats", "Мест"], + ["Add Billing Info", "Добавить информацию для выставления счетов"], + ["Create Organization", "Создать организацию"], + ["Organization Name", "Название организации"], + ["Create", "Создать"], + ["Export Data", "Экспортировать данные"], + ["Target Vault", "Целевое хранилище"], + ["Format", "Формат"], + [ + "WARNING: Exporting to CSV format will save your data without encyryption of any kind which means it can be read by anyone. We strongly recommend exporting your data as a secure, encrypted file, instead!", + "ВНИМАНИЕ: Экспорт в CSV формате сохранит данные не зашифрованными, что значит, что их сможет прочесть кто угодно. Мы настоятельно рекомендуем экспортировать данные наиболее безопасным методом в виде зашифрованного файла!" + ], + ["Export {0} Items", "Экспорт {0} записей"], + ["Please choose a password to protect this backup with!", "Задайте пароль для защиты этого архива"], + ["Choose Password", "Задайте пароль"], + ["Please choose a password!", "Пожалуйста, задайте пароль!"], + ["Please repeat the password!", "Повторите пароль!"], + ["Password not repeated correctly!", "Пароли не совпадают!"], + ["Choose A Field Type", "Выберите тип поля"], + ["What kind of field you would like to add?", "Какого типа поле вы хотите добавить?"], + ["Enter Notes Here", "Добавьте заметки"], + ["Enter Secret", "Введите секрет"], + ["Enter Password", "Введите пароль"], + ["Enter Value Here", "Введите значение"], + ["Enter Field Name", "Введите название поля"], + ["Dash", "Тире"], + ["Underscore", "Подчеркивание"], + ["Slash", "Слэш"], + ["Space", "Пробел"], + ["Generate Password", "Сгенерировать пароль"], + ["passphrase", "парольная фраза"], + ["random string", "случайная строка"], + ["Word Separator", "Разделитель слов"], + ["Language", "Язык"], + ["words", "слова"], + ["length", "длина"], + ["Use", "Использовать"], + ["Discard", "Отменить"], + ["Are you sure you want to delete this group?", "Вы уверены, что хотите удалить эту группу?"], + ["Delete Group", "Удалить группу"], + ["Type 'DELETE' to confirm", "Введите 'DELETE' для подтверждения"], + ["Enter Group Name", "Введите название группы"], + ["Search...", "Поиск..."], + ["Import Data", "Импорт данных"], + [ + "IMPORTANT: Before importing, please make sure that your CSV data is structured according to Padlocks specific requirements!", + "ВНИМАНИЕ: Перед импортом убедитесь, что данные в CSV формате структурированы в соответствии с требованиями Padlock!" + ], + ["Learn More", "Узнать больше"], + ["Import {0} Items", "Импорт {0} записей"], + ["This file is protected by a password.", "Этот файл защищен паролем."], + ["Wrong Password", "Неверный пароль"], + [ + "The number of imported items exceeds your remaining quota. Upgrade to Premium to get unlimited items for your private vault!", + "Количество импортированных записей превышает оставшийся лимит. Перейдите на Премиум, чтобы получить неограниченное количество записей в приватном хранилище!" + ], + [ + "The number of imported items exceeds your remaining quota.", + "Количество импортированных записей превышает оставшийся лимит." + ], + ["Successfully imported {0} items.", "Успешно импортировано {0} записей."], + ["This invite has expired", "Срок действия этого приглашения истёк"], + ["Accepted", "Принято"], + ["expires {0}", "истекает {0}"], + ["Confirm Membership", "Подтвердить членство"], + ["Organization Invite", "Приглашение организации"], + [ + "Please wait for an admin to complete the process. You will be notified as soon as you receive access.", + "Дождитесь подтверждения администратора для продолжения процесса. Вы будете уведомлены о получении доступа." + ], + ["Enter Confirmation Code", "Введите код подтверждения"], + [ + "If you haven't received the confirmation code yet, please ask the organization owner to provide it to you!", + "Если вы еще не получили код подтверждения, запросите его у владельца вашей организации!" + ], + [ + "They will also need the following confirmation code, which you should communicate to them separately:", + "Им также потребуется следующий код подтверждения, который вы должны сообщить им отдельно:" + ], + ["Resend", "Послать снова"], + ["Please enter a confirmation code!", "Введите код подтверждения!"], + [ + "You have successfully accepted the invite. You'll be notified once you've been granted access.", + "Вы успешно подтвердили приглашение. Вы будете уведомлены, как только получите доступ." + ], + ["Wrong confirmation code. Please try again!", "Неверный код подтверждения. Попробуйте снова!"], + ["expired", "устарел"], + ["accepted", "принято"], + ["{0}", "{0}"], + ["Confirm", "Подтвердить"], + ["Confirmation Code:", "Код подтверждения:"], + [ + "Upgrade to Premium now and get 1GB of encrypted file storage!", + "Перейдите на Премиум сейчас и получите 1Гб зашифрованного файлового хранилища!" + ], + ["Enter Item Name", "Введите название записи"], + ["Field", "Поле"], + ["Attachment", "Вложение"], + ["Move", "Переместить"], + ["by {0}", "по {0}"], + ["Are you sure you want to delete this item?", "Вы уверены, что хотите удалить эту запись?"], + ["Items with attachments cannot be moved!", "Записи с вложениями не могут быть перемещены!"], + [ + "The selected file is too large! Only files of up to 5 MB are supported.", + "Выбранный файл слишком большой! Поддерживаются файлы до 5Мб." + ], + ["File uploaded successfully!", "Файл закачен успешно!"], + ["Favorites", "Избранное"], + ["Recently Used", "Недавние"], + ["Attachments", "Вложения"], + ["All Items", "Все записи"], + ["My Vault", "Моё хранилище"], + ["Tags", "Тэги"], + ["You don't have any tags yet.", "У вас нет ни одного тэга."], + ["Your search did not match any items.", "Поиск не дал результатов."], + ["This vault does not have any items yet.", "В этом хранилище нет записей."], + ["You don't have any attachments yet.", "У вас нет ни одного вложения."], + ["You don't have any favorites yet.", "У вас нет элементов в избранном."], + ["You don't have any recently used items!", "У вас нет недавно использованных записей!"], + ["You don't have any items yet.", "У вас нет записей."], + ["Type To Search", "Введите для поиска"], + ["{0} items selected", "{0} записей выбрано"], + [ + "Some items in your selection are from Vaults you don't have write access to and cannot be deleted. Do you want to proceed deleting the other items?", + "Некоторые выбранные записи находятся в хранилищах, к которым у вас нет доступа на запись, и не могут быть удалены. Удалить остальные записи?" + ], + ["Yes", "Да"], + ["No", "Нет"], + [ + "Are you sure you want to delete these items? This action can not be undone!", + "Вы уверены, что следует удалить эти записи? Это действие необратимо!" + ], + ["Delete {0} Items", "Удалить {0} записей"], + [ + "Some items in your selection have attachments and cannot be moved. Do you want to proceed moving the other items?", + "Некоторые выбранные записи имеют вложения и не могут быть перемещены. Переместить оставшиеся?" + ], + [ + "Some items in your selection are from Vaults you don't have write access to and cannot be moved. Do you want to proceed moving the other items?", + "Некоторые выбранные записи находятся в хранилищах, к которым у вас нет доступа на запись, и не могут быть перемещены. Продолжить перемещение оставшихся?" + ], + ["No Name", "Без имени"], + ["copied", "скопировано"], + ["No Fields", "Нет полей"], + ["This item has no fields.", "Эта запись не имеет полей."], + ["Email Address", "Email адрес"], + ["Master Password", "Мастер пароль"], + ["Login", "Логин"], + ["New to Padloc?", "Впервые в Padloc?"], + ["Sign Up Now", "Зарегистрироваться"], + ["Please enter a valid email address!", "Введите действительный email!"], + [ + "Please enter the confirmation code sent to your email address to proceed!", + "Введите код подтверждения, посланный на ваш email!" + ], + ["One Last Step!", "Еще один шаг!"], + ["Enter Verification Code", "Введите код подтверждения"], + [ + "Maximum number of tries exceeded! Please resubmit and try again!", + "Превышено максимальное количество попыток! Переотправьте и попробуйте снова!" + ], + ["Wrong username or password. Please try again!", "Неверное имя пользователя или пароль! Попробуйте снова!"], + ["Can't remember your master password?", "Не можете вспомнить ваш мастер-пароль?"], + ["Recover Account", "Восстановить аккаунт"], + ["Try Again", "Попробуйте снова"], + ["An account with this email address does not exist!", "Аккаунт с указанным адресом не существует!"], + ["Sign Up", "Зарегистрироваться"], + ["Remove", "Удалить"], + ["Suspend", "Приостановить"], + ["Remove Admin", "Убрать права администратора"], + ["Make Admin", "Дать права администратора"], + [ + "Are you sure you want to remove this member from this organization?", + "Вы уверены, что хотите удалить этого члена организации?" + ], + ["Remove Member", "Удалить члена организации"], + [ + "Are you sure you want to make this member an admin? Admins can manage vaults, groups and permissions.", + "Вы уверены, что хотите предоставить этому члену организации права администратора? Администратор может управлять хранилищами, группами и правами." + ], + [ + "Are you sure you want to remove this member as admin?", + "Вы уверены, что хотите убрать у этого пользователя права администратора?" + ], + [ + "Are you sure you want to suspend this member?", + "Вы уверены, что хотите приостановить членство этого пользователя в организации?" + ], + ["Suspend Member", "Приостановить членство пользователя"], + ["Groups", "Группы"], + ["Vaults", "Хранилища"], + ["read", "читать"], + ["write", "писать"], + ["Owner", "Владелец"], + ["Admin", "Администратор"], + ["Suspended", "Приостановлен"], + ["Items", "Записи"], + ["Orgs & Teams", "Организации и команды"], + ["New Organization", "Новая организация"], + ["Settings", "Настройки"], + ["{0} Items", "{0} записей"], + ["Move {0} To", "Переместить {0} в"], + ["No target vaults available!", "Нет доступных целевых хранилищ!"], + ["Move Item", "Переместить запись"], + ["Move Items", "Переместить записи"], + ["Successfully created {0} invites!", "{0} приглашений созданы успешно!"], + ["Unsuspend", "Разблокировать"], + [ + "Are you sure you want to delete this organization? All associated vaults and the data within them will be lost! This action can not be undone.", + "Вы уверены, что хотите удалить эту организацию? Все хранилища организации и данные в них будут утеряны! Эта операция необратима!" + ], + ["Delete Organization", "Удалить организацию"], + ["Rename Organization", "Переименовать организацию"], + ["Company Name", "Название компании"], + ["Please enter a name!", "Пожалуйста, введите название!"], + [ + "Do you want to rotate this organizations cryptographic keys? All organization memberships will have to be reconfirmed but no data will be lost.", + "Вы хотите сменить криптографический ключ организации? Все члены организации должны будут заново подтвердить членство но все данные будут сохранены." + ], + [ + "The organizations cryptographic keys have been rotated successfully and membership confirmation requests for all members have been sent out.", + "Криптографический ключ организации изменен успешно, запросы на подтверждение разосланы членам организации." + ], + ["Members", "Члены организации"], + [ + "This organization currently does not have an active subscription and has been put in \"frozen\" state as a result. While in this state, you won't be able to make any changes to members, groups or vaults of this organization.", + "Данная организация не имеет активной подписки и находится в \"замороженном\" состоянии. В этом состоянии вы не можете производить изменения членов организации, групп или хранилищ." + ], + ["Update Subscription", "Обновить подписку"], + ["New Group", "Новая группа"], + ["New Vault", "Новое хранилище"], + ["Subscription", "Подписка"], + ["Billing Info", "Платежная информация"], + ["Security", "Безопасность"], + ["Rotate Cryptographic Keys", "Сменить криптографический ключ"], + ["General", "Общие"], + ["Change Organization Name", "Сменить название организации"], + [ + "Organizations allow you to securely share passwords, documents and other data within your family, team or any other kind of group!", + "Организации позволяют безопасно совместно использовать пароли, документы и другие данные в вашей семье, команде и любых других группах!" + ], + ["Start Trial", "Начать пробный период"], + ["Scan QR Code", "Сканировать QR-код"], + ["Failed to scan QR code. Error: ", "Не удалось отсканировать QR-код. Ошибка: "], + ["Please enter your email address and new master password.", "Введите ваш email адрес и новый мастер-пароль."], + ["New Master Password", "Новый мастер-пароль"], + ["WARNING: Weak Password!", "ВНИМАНИЕ: Слабый пароль!"], + ["Repeat Master Password", "Повторите мастер пароль"], + [ + "IMPORTANT, READ CAREFULLY: Padloc is designed in a way that makes it impossible for us to access the data encrypted in any of your vaults even if we wanted to. While this is essential to ensuring the security of your data, it also has the following implications:", + "ВАЖНО, ПРОЧТИТЕ ВНИМАТЕЛЬНО: Padloc спроектирован так, что не позволяет нам получить доступ к зашифрованным данным в ваших хранилищах, даже в случае если бы мы захотели его получить. Это важно для обеспечения уверенности в безопасности ваших данных, но также подразумевает следующее:" + ], + [ + "Any data stored in your private vault can not be recovered and will be permantently lost.", + "Все данные в вашем приватном хранилище не могут быть восстановлены и будут утеряны навсегда." + ], + [ + "All your organization memberships will be suspended temporarily until confirmed by the organization owner.", + "Ваше членство во всех организациях будет приостановлено до подтверждения владельцем организации." + ], + [ + "All members of organizations you own will be suspended temporarily until confirmed by you.", + "Членство всех пользователей в ваших организациях будет приостановлено до подтверждения вами." + ], + ["Please enter a master password!", "Введите ваш мастер-пароль!"], + [ + "You didn't repeat your master password correctly. Try again!", + "Повторно введенный мастер-пароль не совпадает с первоначальным. Попробуйте снова!" + ], + [ + "The password you entered is weak which makes it easier for attackers to break the encryption used to protect your data. Try to use a longer password or include a variation of uppercase, lowercase and special characters as well as numbers!", + "Вы ввели слабый пароль, что может позволить злоумышленникам взломать защиту ваших данных. Попробуйте использовать более длинный пароль или включить в него различные символы в разных регистрах и специальные символы!" + ], + ["Choose Different Password", "Выберите другой пароль"], + ["Use Anyway", "Использовать этот"], + ["WARNING: Weak Password", "ВНИМАНИЕ: Слабый пароль"], + [ + "To complete the account recovery process, please enter the confirmation code sent to your email address!", + "Для завершения процесса восстановления аккаунта, введите код подтверждения высланный на ваш email!" + ], + ["Account recovery successful!", "Аккаунт успешно восстановлен!"], + ["Report Errors", "Сообщить об ошибке"], + ["{0} Errors Detected", "Ошибок обнаружено: {0}"], + [ + "Padloc has registered {0} errors during your use of the app. These errors may not have any impact on functionality and can often be ignored, but reporting them may help us diagnose problems, identify possible failure modes and generally improve the stability of the app.", + "Padloc обнаружил {0} ошибок в работе приложения. Эти ошибки могут не оказывать влияния на функционал и скорее всего могут быть проигнорированы, но если вы сообщите нам о них, это поможет диагностировать возможные проблемы и улучшить функциональность и стабильность приложения." + ], + ["Profile", "Профиль"], + ["Log Out", "Выйти"], + ["Change Master Password", "Сменить мастер пароль"], + ["Auto Lock", "Автоматическая блокировка"], + ["Lock Automatically", "Блокировать автоматически"], + [" min", " мин."], + ["After", "После"], + ["Enable Biometric Unlock", "Включить биометрическую разблокировку"], + ["Import / Export", "Импорт / Экспорт"], + ["Import...", "Импорт..."], + ["Export...", "Экспорт..."], + ["Support", "Поддержка"], + ["Website", "Сайт"], + ["Contact Support", "Написать в поддержку"], + ["Danger Zone", "Опасный раздел"], + ["Delete Account", "Удалить аккаунт"], + ["Edit Profile", "Редактировать профиль"], + ["Do you really want to log out?", "Вы действительно хотите выйти?"], + ["Please enter your current password!", "Введите ваш текущий пароль!"], + ["Enter Current Password", "Ввод текущего пароля"], + ["Now choose a new master password!", "Выберите новый мастер-пароль!"], + ["Enter New Password", "Ввод нового пароля"], + ["Please enter a password!", "Пожалуйста введите пароль!"], + ["Please confirm your new password!", "Подтвердите ваш новый пароль!"], + ["Repeat New Password", "Подтверждение пароля"], + ["Master password changed successfully.", "Мастер-пароль изменен успешно."], + ["Please enter your master password to proceed.", "Введите ваш мастер-пароль для продолжения."], + [ + "Are you sure you want to delete this account? All associated vaults and the data within them will be lost and any active subscriptions will be canceled immediately. This action can not be undone!", + "Вы уверены, что хотите удалить этот аккаунт? Все хранилища этого аккаунта и данные в них будут потеряны, все активные подписки будут отменены. Эта операция необратима!" + ], + [ + "Are you sure you want to disable biometric unlock?", + "Вы уверены, что хотите отключить биометическую разблокировку?" + ], + [ + "Welcome to Padloc! Let's get you started by creating an account for you.", + "Добро пожаловать в Padloc! Давайте начнем с создания аккаунта для вас." + ], + [ + "Your email address serves as your username and allows us to get in touch with you. Don't worry, we would never send you any spam!", + "Ваш Email адрес будет служить именем пользователя и позволит связаться с вами. Не беспокойтесь, мы не посылаем никакого спама!" + ], + ["Your Name", "Ваше имя"], + ["What should we call you?", "Как к вам обращаться?"], + ["Continue", "Продолжить"], + ["Already have an account?", "Уже есть аккаунт?"], + ["Sign In", "Войти"], + ["You've Got Mail!", "У вас есть сообщения!"], + [ + "To verify your email address, please enter the confirmation code we sent to {0}.", + "Для проверки email, введите код подтверждения, который мы выслали на {0}." + ], + ["Confirmation Code", "Код подтверждения"], + ["Say hello to your", ""], + [ + "It's the last password you'll ever have to remember! Please memorize it and never reveal it to anyone (not even us)! We recommend writing it down on a piece of paper and storing it somewhere safe, at least until you have it safely memorized.", + "Это последний пароль, который вам придется запомнить! Запомните его и никогда никому не сообщайте (даже нам)! Мы советуем записать его на бумаге и хранить в надежном месте, как минимум до тех пор пока вы его хорошо не запомните." + ], + ["[Tap To Reveal]", "[Нажмите чтобы показать]"], + ["[Hover To Reveal]", "[Наведите мышь, чтобы показать]"], + [ + "This random passphrase was generated just for you and is designed to be both secure and easy to remember. Don't like it?", + "Этот случайный пароль сформирован для вас, так, чтобы быть надежным паролем и при этом легко запоминаться. Вам он не нравится?" + ], + ["Try Another One", "Попробуйте другой"], + ["Choose Your Own", "Задайте свой"], + ["An account with this email address already exists!", "Аккаунт с этим email уже существует!"], + ["Change Email", "Сменить email"], + [ + "We recommend using a randomly generated password that is both strong and easy to remember.", + "Мы рекомендуем использовать случайно сгенерированный надежный пароль, который легко запомнить." + ], + ["Keep This One", "Использовать этот"], + ["Generate Another", "Сгенерировать другой"], + ["Choose My Own", "Задать мой собственный"], + ["Want A Different Master Password?", "Хотите другой мастер-пароль?"], + ["Choose Own Master Password", "Задайте свой мастер-пароль"], + ["Resume Subscription", "Возобновить подписку"], + ["Cancel Subscription", "Отменить подписку"], + ["Update Plan", "Обновить тарифный план"], + [ + "Are you sure you want to downgrade to the Free Plan?", + "Вы уверены, что хотите изменить тарифный план на бесплатный?" + ], + ["Downgrade", "Сменить тарифный план"], + ["No Plan Selected", "Тарифный план не выбран"], + ["Unlimited", "Без ограничений"], + ["{0} / Год", ""], + ["Canceled ({0} days left)", "Отменено ({0} дней осталось)"], + ["Authentication Required", "Требуется аутентификация"], + ["Inactive", "Неактивно"], + ["Trialing ({0} days left)", "Пробный период ({0} дней осталось)"], + ["Choose Plan", "Выберите тарифный план"], + ["Complete Payment", "Завершить платеж"], + ["Downgrade To Free Plan", "Понизить до бесплатного тарифа"], + ["Add Tag", "Добавить тег"], + ["Choose A Template", "Выберите шаблон"], + ["What kind of item you would like to add?", "Какой тип записи вы хотите добавить?"], + ["Invalid Code", "Неверный код"], + ["Logged In As", "Вход как"], + ["Unlock", "Разблокировать"], + ["Wrong password! Please try again.", "Неверный пароль! Попробуйте снова."], + ["Logout / Switch Account", "Выйти / Сменить аккаунт"], + ["Forgot Password", "Забыли пароль"], + ["Are you sure you want to log out of this account?", "Вы уверены, что хотите выйти из этого аккаунта?"], + [ + "Biometric unlock expired. Complete setup to reeneable.", + "Биометрическая разблокировка устарела. Настройте ее заново." + ], + ["Biometric unlock failed! Reason: {0}", "Биометрическая разблокировка не удалась! Причина: {0}"], + ["Failed To Unlock", "Разблокировка не удалась"], + ["Update", "Обновить"], + ["Storage limit exceeded!", "Превышен лимит хранения!"], + ["Upload failed! Please try again!", "Закачка не удалась! Попробуйте снова!"], + ["Upload Attachment", "Закачка вложения"], + ["Unkown File Type", "Неизвестный тип файла"], + ["Retry Upload", "Повторить закачку"], + ["Upload", "Закачка"], + [ + "Are you sure you want to delete this vault? All the data stored in it will be lost! This action can not be undone.", + "Вы уверены, что хотите удалить это хранилище? Все данные в хранилище будут потеряны! Это действие необратимо." + ], + ["Delete Vault", "Удалить хранилище"], + ["Enter Vault Name", "Введите название хранилища"], + ["Username", "Имя пользователя"], + ["Password", "Пароль"], + ["URL", "URL"], + ["Notes", "Заметки"], + ["Your session has expired. Please log in again!", "Ваша сессия устарела. Повторите вход!"], + [ + "A new update is ready to install! Do you want to install it now?", + "Новые обновления готовы к установке! Хотите установить их сейчас?" + ], + ["Install & Reload", "Установить и перезагрузить"], + ["Later", "Позже"], + ["Date", "Дата"], + ["Month", "Месяц"], + ["Credit Card Number", "Номер кредитной карты"], + ["Phone Number", "Номер телефона"], + ["PIN", "PIN"], + ["2FA Token", "Токен 2FA"], + ["Note", "Заметки"], + ["Other", "Другое"], + ["Credit Card", "Кредитная карта"], + ["Card Number", "Номер карты"], + ["Card Owner", "Владелец карты"], + ["Valid Until", "Действительно до"], + ["CVC", "CVC"], + ["Bank Account", "Номер счета"], + ["Account Owner", "Владелец счета"], + ["IBAN", "IBAN"], + ["BIC", "BIC"], + ["Card PIN", "PIN карты"], + ["WIFI Password", "Пароль WiFi"], + ["Passport", "Паспорт"], + ["Full Name", "Полное имя"], + ["Passport Number", "Номер паспорта"], + ["Country", "Страна"], + ["Birthdate", "Дата рождения"], + ["Birthplace", "Место рождения"], + ["Issued On", "Выдан"], + ["Expires", "Истекает"], + ["Document", "Документ"], + ["Custom", "Другое"], + ["{0} on {1}", "{0} на {1}"], + ["{0} Device", "{0} Устройств"] ] diff --git a/packages/locale/res/wordlists/de.json b/packages/locale/res/wordlists/de.json index 07f3270e..fa156bd7 100644 --- a/packages/locale/res/wordlists/de.json +++ b/packages/locale/res/wordlists/de.json @@ -1,7995 +1,7995 @@ [ - "der", - "die", - "und", - "in", - "den", - "von", - "zu", - "das", - "mit", - "sich", - "des", - "auf", - "für", - "ist", - "im", - "dem", - "nicht", - "ein", - "die", - "eine", - "als", - "auch", - "es", - "an", - "werden", - "aus", - "er", - "hat", - "daß", - "sie", - "nach", - "wird", - "bei", - "einer", - "der", - "um", - "am", - "sind", - "noch", - "wie", - "einem", - "über", - "einen", - "das", - "so", - "sie", - "zum", - "war", - "haben", - "nur", - "oder", - "aber", - "vor", - "zur", - "bis", - "mehr", - "durch", - "man", - "sein", - "wurde", - "sei", - "in", - "prozent", - "hatte", - "kann", - "gegen", - "vom", - "können", - "schon", - "wenn", - "habe", - "seine", - "mark", - "ihre", - "dann", - "unter", - "wir", - "soll", - "ich", - "eines", - "es", - "jahr", - "zwei", - "jahren", - "diese", - "dieser", - "wieder", - "keine", - "uhr", - "seiner", - "worden", - "und", - "will", - "zwischen", - "im", - "immer", - "millionen", - "ein", - "was", - "sagte", - "er", - "gibt", - "alle", - "dm", - "diesem", - "seit", - "muß", - "wurden", - "beim", - "doch", - "jetzt", - "waren", - "drei", - "jahre", - "mit", - "neue", - "neuen", - "damit", - "bereits", - "da", - "auch", - "ihr", - "seinen", - "müssen", - "ab", - "ihrer", - "nach", - "ohne", - "sondern", - "selbst", - "ersten", - "nun", - "etwa", - "bei", - "heute", - "ihren", - "weil", - "ihm", - "seien", - "menschen", - "anderen", - "werde", - "ich", - "sagt", - "wir", - "eine", - "rund", - "für", - "aber", - "ihn", - "ende", - "jedoch", - "zeit", - "sollen", - "ins", - "wenn", - "so", - "seinem", - "uns", - "stadt", - "geht", - "doch", - "sehr", - "hier", - "ganz", - "erst", - "wollen", - "berlin", - "sowie", - "hatten", - "kein", - "deutschen", - "machen", - "lassen", - "als", - "andere", - "ob", - "dieses", - "steht", - "dabei", - "wegen", - "weiter", - "denn", - "beiden", - "einmal", - "etwas", - "wie", - "nichts", - "allerdings", - "vier", - "gut", - "viele", - "wo", - "viel", - "dort", - "alles", - "auf", - "wäre", - "spd", - "kommt", - "denen", - "fast", - "fünf", - "könnte", - "hätten", - "frau", - "am", - "dafür", - "kommen", - "diesen", - "letzten", - "zwar", - "diese", - "großen", - "dazu", - "von", - "mann", - "da", - "sollte", - "würde", - "also", - "bisher", - "leben", - "milliarden", - "welt", - "regierung", - "konnte", - "ihrem", - "frauen", - "während", - "land", - "zehn", - "würden", - "stehen", - "ja", - "usa", - "heißt", - "dies", - "zurück", - "kinder", - "dessen", - "ihnen", - "deren", - "sogar", - "frage", - "gewesen", - "erste", - "gab", - "liegt", - "gar", - "davon", - "gestern", - "geben", - "teil", - "polizei", - "dass", - "hätte", - "eigenen", - "kaum", - "sieht", - "große", - "denn", - "weitere", - "was", - "sehen", - "macht", - "angaben", - "weniger", - "gerade", - "läßt", - "geld", - "münchen", - "deutsche", - "allen", - "darauf", - "wohl", - "später", - "könne", - "deshalb", - "aller", - "kam", - "arbeit", - "mich", - "gegenüber", - "nächsten", - "bleibt", - "wenig", - "lange", - "gemacht", - "wer", - "dies", - "fall", - "mir", - "gehen", - "berliner", - "mal", - "weg", - "cdu", - "wollte", - "sechs", - "keinen", - "woche", - "dagegen", - "alten", - "möglich", - "gilt", - "erklärte", - "müsse", - "dabei", - "könnten", - "geschichte", - "zusammen", - "finden", - "tag", - "art", - "erhalten", - "man", - "dollar", - "wochen", - "jeder", - "nie", - "bleiben", - "besonders", - "jahres", - "deutschen", - "den", - "zu", - "zunächst", - "derzeit", - "allein", - "deutlich", - "weiß", - "einige", - "sollten", - "präsident", - "geworden", - "statt", - "bonn", - "platz", - "inzwischen", - "nur", - "freitag", - "um", - "pro", - "seines", - "damit", - "montag", - "europa", - "sonntag", - "einfach", - "gehört", - "eher", - "oft", - "zahl", - "neben", - "hält", - "weit", - "partei", - "meisten", - "thema", - "zeigt", - "politik", - "aus", - "zweiten", - "januar", - "insgesamt", - "je", - "mußte", - "anfang", - "hinter", - "ebenfalls", - "ging", - "darüber", - "vielen", - "ziel", - "darf", - "seite", - "fest", - "hin", - "erklärt", - "namen", - "haus", - "an", - "frankfurt", - "mittwoch", - "damals", - "dienstag", - "hilfe", - "mai", - "markt", - "seit", - "tage", - "donnerstag", - "halten", - "gleich", - "nehmen", - "solche", - "besser", - "alte", - "leute", - "ergebnis", - "samstag", - "daß", - "sagen", - "system", - "märz", - "tun", - "monaten", - "kleinen", - "lang", - "nicht", - "knapp", - "bringen", - "wissen", - "kosten", - "erfolg", - "bekannt", - "findet", - "daran", - "künftig", - "wer", - "acht", - "grünen", - "schnell", - "grund", - "scheint", - "zukunft", - "stuttgart", - "bin", - "liegen", - "gruppe", - "rolle", - "stellt", - "juni", - "sieben", - "september", - "nämlich", - "männer", - "oktober", - "mrd", - "überhaupt", - "eigene", - "dann", - "gegeben", - "außerdem", - "stunden", - "eigentlich", - "meter", - "ließ", - "probleme", - "vielleicht", - "ebenso", - "bereich", - "bis", - "höhe", - "familie", - "während", - "bild", - "ländern", - "frankreich", - "tagen", - "schwer", - "zuvor", - "vor", - "genau", - "april", - "stellen", - "neu", - "erwartet", - "hamburg", - "sicher", - "führen", - "mal", - "über", - "mehrere", - "wirtschaft", - "mio", - "programm", - "offenbar", - "hier", - "weiteren", - "natürlich", - "konnten", - "stark", - "dezember", - "juli", - "ganze", - "kommenden", - "kunden", - "bekommen", - "eben", - "kleine", - "trotz", - "wirklich", - "lage", - "länder", - "leicht", - "gekommen", - "spiel", - "laut", - "november", - "kurz", - "politische", - "führt", - "innerhalb", - "unsere", - "meint", - "form", - "münchner", - "ag", - "anders", - "ihres", - "völlig", - "gute", - "bislang", - "august", - "hand", - "jede", - "gmbh", - "film", - "minuten", - "erreicht", - "beide", - "musik", - "kritik", - "mitte", - "verfügung", - "buch", - "dürfen", - "unter", - "jeweils", - "einigen", - "zum", - "umsatz", - "spielen", - "daten", - "welche", - "müßten", - "hieß", - "paar", - "nachdem", - "kunst", - "euro", - "gebracht", - "problem", - "noch", - "jeden", - "ihre", - "sprecher", - "recht", - "erneut", - "längst", - "sein", - "eltern", - "beginn", - "besteht", - "seine", - "mindestens", - "machte", - "jetzt", - "bietet", - "außerdem", - "bürger", - "trainer", - "bald", - "deutsche", - "schon", - "fragen", - "klar", - "durch", - "seiten", - "gehören", - "dort", - "erstmals", - "februar", - "zeigen", - "titel", - "stück", - "größten", - "fdp", - "setzt", - "wert", - "staat", - "möchte", - "daher", - "wolle", - "lediglich", - "nacht", - "krieg", - "opfer", - "tod", - "nimmt", - "firma", - "zuletzt", - "werk", - "hohen", - "leben", - "dieser", - "kirche", - "weiterhin", - "gebe", - "gestellt", - "mitglieder", - "rahmen", - "zweite", - "paris", - "situation", - "gefunden", - "wochenende", - "wasser", - "recht", - "sonst", - "stand", - "hälfte", - "versucht", - "blieb", - "junge", - "mehrheit", - "straße", - "sache", - "arbeiten", - "monate", - "mutter", - "berichtet", - "letzte", - "gericht", - "wollten", - "ihr", - "zwölf", - "zumindest", - "wahl", - "genug", - "weise", - "vater", - "bericht", - "hoch", - "beginnt", - "wort", - "obwohl", - "kopf", - "spielt", - "interesse", - "westen", - "verloren", - "preis", - "erst", - "jedem", - "erreichen", - "setzen", - "spricht", - "früher", - "teilte", - "landes", - "zudem", - "einzelnen", - "bereit", - "blick", - "druck", - "bayern", - "kilometer", - "gemeinsam", - "bedeutung", - "chance", - "politiker", - "dazu", - "zwei", - "besten", - "ansicht", - "endlich", - "stelle", - "direkt", - "beim", - "viele", - "solchen", - "alle", - "solle", - "jungen", - "einsatz", - "richtig", - "größte", - "sofort", - "neuer", - "ehemaligen", - "unserer", - "dürfte", - "schaffen", - "augen", - "rußland", - "internet", - "allerdings", - "raum", - "mannschaft", - "neun", - "kamen", - "zeiten", - "dem", - "einzige", - "meine", - "nun", - "verfahren", - "angebot", - "richtung", - "projekt", - "niemand", - "kampf", - "weder", - "personen", - "dpa", - "heute", - "geführt", - "gespräch", - "kreis", - "hamburger", - "schule", - "guten", - "hauptstadt", - "durchaus", - "darin", - "amt", - "schritt", - "meist", - "groß", - "zufolge", - "sprache", - "region", - "punkte", - "vergleich", - "genommen", - "gleichen", - "du", - "ob", - "soldaten", - "kollegen", - "neues", - "angst", - "stellte", - "sommer", - "danach", - "anderer", - "gesagt", - "sicherheit", - "macht", - "bau", - "handelt", - "folge", - "bilder", - "lag", - "osten", - "handel", - "sprach", - "aufgabe", - "chef", - "frei", - "dennoch", - "ddr", - "hohe", - "firmen", - "bzw", - "koalition", - "mädchen", - "zur", - "entwickelt", - "fand", - "diskussion", - "bringt", - "deshalb", - "hause", - "gefahr", - "per", - "zugleich", - "früheren", - "dadurch", - "ganzen", - "abend", - "erzählt", - "streit", - "parteien", - "jedenfalls", - "gesehen", - "trotz", - "darunter", - "spieler", - "forderte", - "beispiel", - "meinung", - "wenigen", - "publikum", - "sowohl", - "meinte", - "mag", - "auto", - "lösung", - "boden", - "einen", - "hinaus", - "zwar", - "verletzt", - "weltweit", - "sohn", - "bevor", - "peter", - "mußten", - "keiner", - "produktion", - "ort", - "braucht", - "kind", - "verein", - "sprechen", - "aktien", - "london", - "richter", - "geplant", - "italien", - "mittel", - "her", - "freilich", - "mensch", - "großer", - "bonner", - "wenige", - "dritten", - "nahm", - "bedeutet", - "feld", - "dr.", - "bank", - "oben", - "gesetzt", - "ausland", - "vertreter", - "z.b.", - "jedes", - "ziehen", - "parlament", - "berichtete", - "dieses", - "china", - "aufgrund", - "stellen", - "warum", - "kindern", - "heraus", - "heutigen", - "anteil", - "herr", - "abend", - "selbst", - "liebe", - "neben", - "rechnen", - "fällt", - "industrie", - "welt", - "wären", - "vorjahr", - "sicht", - "idee", - "banken", - "verlassen", - "leiter", - "bühne", - "offen", - "stets", - "theater", - "ändern", - "staaten", - "experten", - "gesetz", - "geschäft", - "tochter", - "angesichts", - "gelten", - "mehr", - "erwarten", - "läuft", - "fordert", - "japan", - "sieg", - "ist", - "stimmen", - "wählen", - "russischen", - "gewinnen", - "csu", - "bieten", - "nähe", - "jährlich", - "bremen", - "schüler", - "rede", - "funktion", - "zuschauer", - "hingegen", - "anderes", - "führung", - "besucher", - "drittel", - "moskau", - "immerhin", - "urteil", - "kultur", - "betonte", - "saison", - "konzept", - "suchen", - "zahlen", - "roman", - "gewalt", - "köln", - "gesamte", - "indem", - "eu", - "stunde", - "ehemalige", - "auftrag", - "genannt", - "tragen", - "börse", - "langen", - "häufig", - "chancen", - "position", - "alt", - "luft", - "studenten", - "übernehmen", - "stärker", - "ohnehin", - "zeigte", - "geplanten", - "reihe", - "darum", - "verhindern", - "begann", - "medien", - "verkauft", - "minister", - "wichtig", - "sah", - "gesamten", - "einst", - "verwendet", - "vorbei", - "behörden", - "helfen", - "folgen", - "bezeichnet", - "weil", - "ihnen", - "voll", - "deutscher", - "worten", - "plötzlich", - "müßte", - "vertrag", - "monat", - "oder", - "herbst", - "israel", - "zahlen", - "zeitung", - "grenzen", - "partner", - "patienten", - "nutzen", - "bund", - "setzte", - "betrieb", - "michael", - "beteiligt", - "professor", - "fernsehen", - "künstler", - "mehreren", - "erinnert", - "liste", - "autor", - "täglich", - "eingesetzt", - "versuch", - "alter", - "autos", - "kohl", - "außer", - "hoffnung", - "verkauf", - "nennt", - "erscheint", - "führte", - "prozeß", - "täter", - "bisherigen", - "länger", - "erkennen", - "treffen", - "kein", - "unser", - "begonnen", - "antrag", - "opposition", - "maßnahmen", - "brachte", - "nächste", - "zudem", - "gezeigt", - "dennoch", - "sinn", - "erde", - "gefordert", - "wohnung", - "all", - "menge", - "gerne", - "hören", - "selten", - "weitere", - "bestätigt", - "bestimmt", - "statt", - "entstehen", - "nannte", - "schreibt", - "union", - "brauchen", - "gewählt", - "kraft", - "elf", - "trägt", - "zieht", - "grenze", - "team", - "gebäude", - "tonnen", - "wettbewerb", - "anspruch", - "polen", - "morgen", - "bremer", - "wegen", - "gebiet", - "glaubt", - "sa", - "natur", - "arbeiten", - "jene", - "fällen", - "leisten", - "zeitpunkt", - "mein", - "konkurrenz", - "stieg", - "notwendig", - "sogenannte", - "fahren", - "kostet", - "geplante", - "fehler", - "zweifel", - "erklärung", - "wiederum", - "erschienen", - "gehe", - "glück", - "fehlt", - "gruppen", - "aktion", - "kündigte", - "meinen", - "manchmal", - "übernommen", - "möglichst", - "sz", - "lieber", - "vielleicht", - "warum", - "gespräche", - "suche", - "gern", - "fallen", - "preise", - "weitgehend", - "basis", - "computer", - "schutz", - "eindruck", - "fiel", - "nahe", - "schlecht", - "lebt", - "verhältnis", - "forderung", - "britischen", - "sozialen", - "technik", - "entstanden", - "vorstand", - "of", - "bestimmten", - "jüngsten", - "geboren", - "erhält", - "wobei", - "gegner", - "gründen", - "material", - "spitze", - "gewinn", - "punkten", - "vertreten", - "schulen", - "studie", - "zeichen", - "gewonnen", - "kurs", - "washington", - "türkei", - "wirkt", - "armee", - "erhielt", - "beginnen", - "bißchen", - "entfernt", - "vorgesehen", - "ergebnisse", - "zahlreiche", - "entgegen", - "ohne", - "hielt", - "privaten", - "sucht", - "gemeinde", - "antwort", - "zentrum", - "bilden", - "legen", - "schweiz", - "weg", - "teilweise", - "licht", - "hannover", - "produkte", - "stimme", - "diesmal", - "schluß", - "gingen", - "angeboten", - "gesicht", - "treffen", - "nachdem", - "ließen", - "eröffnet", - "versuchen", - "konzern", - "leistungen", - "gäste", - "wohnungen", - "dafür", - "wichtige", - "neue", - "rund", - "zog", - "geraten", - "bewegung", - "gegen", - "nötig", - "mitglied", - "hundert", - "düsseldorf", - "pds", - "danach", - "vermutlich", - "selber", - "ständig", - "senat", - "branche", - "enthält", - "laufen", - "vom", - "straßen", - "einführung", - "arbeitet", - "verlangt", - "werke", - "insgesamt", - "runde", - "besuch", - "manager", - "brüssel", - "de", - "schweren", - "sitzt", - "jemand", - "bereits", - "wachstum", - "taz", - "bestimmte", - "drei", - "freiheit", - "kennt", - "band", - "glauben", - "wege", - "verurteilt", - "tritt", - "volk", - "pläne", - "satz", - "sitzen", - "vorschlag", - "rechnet", - "muss", - "erhöht", - "aufgaben", - "warten", - "entdeckt", - "heimat", - "verstehen", - "schrieb", - "trotzdem", - "erfahren", - "frühere", - "bekommt", - "dinge", - "institut", - "wirkung", - "sorgen", - "trifft", - "reden", - "werte", - "forscher", - "wo", - "sitzung", - "zusätzlich", - "vielmehr", - "anlaß", - "beide", - "gehalten", - "tel.", - "schweizer", - "serben", - "bundestag", - "verwaltung", - "vorher", - "betont", - "leistung", - "obwohl", - "zufrieden", - "papier", - "thomas", - "verbindung", - "sinne", - "ziemlich", - "debatte", - "enthalten", - "bestehen", - "freund", - "themen", - "überall", - "droht", - "text", - "punkt", - "erfahrung", - "the", - "soziale", - "russische", - "tisch", - "republik", - "höher", - "reicht", - "million", - "gehabt", - "politisch", - "folgen", - "ähnlich", - "geschaffen", - "schaden", - "erster", - "körper", - "amerikaner", - "getötet", - "einige", - "frieden", - "zählt", - "wagen", - "bahn", - "vergessen", - "verlust", - "tiere", - "museum", - "gegründet", - "daraus", - "start", - "kontrolle", - "einfluß", - "österreich", - "allein", - "norden", - "wunsch", - "manche", - "wahlen", - "reise", - "steigen", - "gemeinsame", - "demokratie", - "könig", - "england", - "nennen", - "teile", - "denken", - "name", - "lehrer", - "s.", - "laufenden", - "verbunden", - "qualität", - "widerstand", - "schön", - "spanien", - "gegangen", - "beamten", - "jeder", - "europas", - "freunde", - "mitteilte", - "erklären", - "familien", - "gerade", - "gefallen", - "aktie", - "krise", - "nummer", - "wies", - "außerhalb", - "gestiegen", - "reform", - "literatur", - "lebens", - "gewann", - "moment", - "angeblich", - "mill", - "weiteres", - "beträgt", - "dritte", - "wesentlich", - "amerika", - "insel", - "britische", - "nachfolger", - "entspricht", - "dahin", - "unseren", - "solcher", - "juden", - "sport", - "rathaus", - "verkaufen", - "größere", - "frühjahr", - "gebaut", - "wahrheit", - "dar", - "kommission", - "polizisten", - "bosnien", - "grundlage", - "relativ", - "nein", - "klasse", - "tut", - "hängt", - "wenigstens", - "aktuellen", - "modell", - "hinzu", - "gedanken", - "übernahme", - "entwickeln", - "quartal", - "meiner", - "dürften", - "keine", - "jener", - "zustimmung", - "legt", - "fordern", - "einheit", - "natürlich", - "blieben", - "laut", - "szene", - "klaus", - "geblieben", - "lesen", - "besonders", - "getroffen", - "keineswegs", - "abschluß", - "verlag", - "interessen", - "netz", - "plan", - "ausbildung", - "befindet", - "zunehmend", - "verzichten", - "gespielt", - "ermittelt", - "legte", - "ruhe", - "hans", - "händler", - "genutzt", - "höhere", - "starke", - "treten", - "stimmung", - "ärzte", - "erheblich", - "standen", - "teilnehmer", - "möchten", - "starken", - "stand", - "anlage", - "siehe", - "erfolgt", - "vertrieb", - "beste", - "gelungen", - "ordnung", - "andreas", - "lautet", - "kritisiert", - "schröder", - "machten", - "verstärkt", - "süden", - "haltung", - "freien", - "weist", - "nahezu", - "motto", - "abgelehnt", - "gelang", - "gezogen", - "frühen", - "schreiben", - "aufs", - "gleiche", - "öffentlich", - "häuser", - "kleiner", - "folgt", - "einer", - "ja", - "wien", - "möglichen", - "weiterer", - "kaufen", - "gefühl", - "initiative", - "hofft", - "dürfe", - "person", - "telekom", - "kennen", - "beitrag", - "lernen", - "gefragt", - "meister", - "bücher", - "kürzlich", - "tradition", - "einzelne", - "verband", - "grüne", - "überzeugt", - "rückkehr", - "also", - "schwere", - "falsch", - "unten", - "behandelt", - "indes", - "großes", - "worte", - "getan", - "somit", - "langsam", - "wählen", - "gedacht", - "geändert", - "bisher", - "hervor", - "hessen", - "städte", - "unbedingt", - "hotel", - "artikel", - "tätig", - "geburtstag", - "gesprochen", - "schließen", - "engagement", - "alles", - "gründe", - "erlaubt", - "kl.", - "ausländer", - "anleger", - "größer", - "verlieren", - "verhalten", - "fanden", - "betriebe", - "praxis", - "ums", - "galt", - "gemeinden", - "wolfgang", - "kanzler", - "viertel", - "private", - "zustand", - "genauso", - "planung", - "forschung", - "gott", - "einzigen", - "wichtigen", - "kosten", - "verkehr", - "befinden", - "kauf", - "halle", - "rom", - "bessere", - "unserem", - "jeweiligen", - "angelegt", - "beendet", - "fälle", - "stehe", - "dienst", - "herrscht", - "begriff", - "sekunden", - "essen", - "ans", - "erfüllt", - "auskunft", - "bauen", - "rechnung", - "endgültig", - "truppen", - "jungen", - "aufbau", - "leider", - "auffassung", - "komme", - "karriere", - "bezahlen", - "telefon", - "rest", - "umwelt", - "schlägt", - "bewußt", - "wichtiger", - "sonne", - "trat", - "inzwischen", - "gelangen", - "schneller", - "kandidaten", - "brief", - "folgenden", - "erscheinen", - "nr.", - "fahrer", - "rennen", - "nachfrage", - "morgen", - "verdacht", - "eigener", - "hinweis", - "umgebung", - "bestätigte", - "regelung", - "fenster", - "dienen", - "modernen", - "zuständig", - "flughafen", - "generation", - "gelegt", - "ergeben", - "nationalen", - "waffen", - "schicksal", - "jugend", - "niederlage", - "spaß", - "niveau", - "gelände", - "trend", - "heißen", - "tatsache", - "presse", - "feuer", - "bezahlt", - "förderung", - "ganz", - "bildung", - "vorstellen", - "voller", - "winter", - "botschaft", - "investoren", - "grad", - "geschäfte", - "leser", - "spielte", - "erzielt", - "reichen", - "energie", - "regelmäßig", - "übertragen", - "freude", - "verändert", - "umgang", - "fans", - "entweder", - "dauer", - "hersteller", - "größe", - "kontakt", - "früh", - "prinzip", - "ausdruck", - "definieren", - "wunder", - "eindeutig", - "behandlung", - "größeren", - "nachbarn", - "himmel", - "hoffen", - "auge", - "risiko", - "verdient", - "tor", - "maria", - "behauptet", - "rücktritt", - "schwarzen", - "bewegen", - "immerhin", - "plus", - "mögliche", - "passiert", - "angesichts", - "betroffen", - "entsteht", - "vorwürfe", - "näher", - "bekam", - "aussage", - "verfassung", - "bewohner", - "vorhanden", - "richtige", - "übrigens", - "kommunen", - "städten", - "werner", - "verfügt", - "filme", - "tabelle", - "werbung", - "fragt", - "gegenteil", - "fischer", - "gegensatz", - "bauern", - "arzt", - "leitung", - "dieter", - "besondere", - "sehe", - "die", - "arbeiter", - "beschluß", - "minute", - "anzahl", - "willen", - "ruf", - "aktiv", - "zwischen", - "karlsruhe", - "einiger", - "westlichen", - "schweden", - "verwenden", - "vorwurf", - "zwanzig", - "the", - "höheren", - "offiziell", - "tief", - "du", - "ausbau", - "auswahl", - "richtigen", - "schien", - "festgelegt", - "bilanz", - "erhöhen", - "kurzem", - "fast", - "gang", - "vorerst", - "hände", - "wirken", - "vertrauen", - "denkt", - "lösen", - "positionen", - "zählen", - "besitzt", - "falle", - "entwurf", - "ziele", - "sichern", - "ernst", - "positiv", - "tat", - "ermöglicht", - "ideen", - "damals", - "änderung", - "ebene", - "äußerst", - "lager", - "zweimal", - "tür", - "dringend", - "regisseur", - "wechsel", - "begründung", - "alter", - "pfennig", - "fehlen", - "links", - "summe", - "erinnerung", - "zugang", - "ii", - "praktisch", - "geöffnet", - "leipzig", - "frank", - "strecke", - "fährt", - "wende", - "herz", - "autoren", - "fürs", - "übrigen", - "andere", - "ausgabe", - "fußball", - "kölner", - "projekte", - "versteht", - "stil", - "letztlich", - "aussagen", - "herum", - "bundeswehr", - "steigt", - "kämpfen", - "zugunsten", - "glaube", - "fraktion", - "posten", - "dorf", - "post", - "bruder", - "außen", - "welcher", - "dagegen", - "rang", - "trotzdem", - "krankheit", - "heinz", - "strom", - "bloß", - "zumal", - "struktur", - "linie", - "felder", - "dient", - "clinton", - "wußte", - "falls", - "entstand", - "herrn", - "autofahrer", - "sitz", - "definiert", - "warf", - "fusion", - "gaben", - "verlor", - "los", - "daraufhin", - "zinsen", - "scheinen", - "büro", - "angenommen", - "ursache", - "steuern", - "fühlen", - "anlagen", - "jürgen", - "franzosen", - "allzu", - "liege", - "verteilt", - "soviel", - "jelzin", - "landtag", - "nürnberg", - "ab", - "bereichen", - "stammt", - "service", - "künftigen", - "kino", - "behörde", - "gehandelt", - "nutzung", - "interview", - "wissen", - "zuerst", - "davor", - "ausnahme", - "erhöhung", - "wächst", - "gearbeitet", - "rechte", - "eins", - "walter", - "geradezu", - "wirft", - "zug", - "erreichte", - "bedarf", - "erlebt", - "teuer", - "kritiker", - "flucht", - "klage", - "änderungen", - "u.", - "informiert", - "geschickt", - "gerhard", - "erinnern", - "männern", - "klingt", - "hinweise", - "kräftig", - "fort", - "rein", - "eigenes", - "immer", - "spät", - "eröffnung", - "beratung", - "franz", - "gefängnis", - "angezeigt", - "rasch", - "erfüllen", - "freie", - "fertig", - "haushalt", - "dadurch", - "schlagen", - "direktor", - "realität", - "falls", - "schreiben", - "sender", - "provinz", - "job", - "standort", - "beruf", - "gestorben", - "voraus", - "gesucht", - "stellung", - "einigung", - "vorschläge", - "texte", - "fühlt", - "schuld", - "leichter", - "vierten", - "halbjahr", - "rücken", - "karten", - "halben", - "betrachtet", - "schlug", - "geschehen", - "zeitraum", - "vermeiden", - "prüfen", - "vieler", - "formen", - "tore", - "starb", - "regeln", - "umfang", - "fragen", - "konflikt", - "vier", - "je", - "teilen", - "plätze", - "beraten", - "einwohner", - "verluste", - "rechten", - "zugeordnet", - "tausend", - "gerechnet", - "offenen", - "warnte", - "verbessern", - "unterwegs", - "führenden", - "hauses", - "anbieter", - "übernimmt", - "diskutiert", - "herren", - "anstieg", - "objekte", - "versuchte", - "bisherige", - "beschreibt", - "etwa", - "hof", - "serie", - "allem", - "weißen", - "türkischen", - "revolution", - "personal", - "hilft", - "karl", - "gründung", - "martin", - "verboten", - "verhindert", - "nahmen", - "lust", - "fahrt", - "begründet", - "wahlkampf", - "auftritt", - "guter", - "gutes", - "ard", - "dichter", - "vorbild", - "allianz", - "zerstört", - "hart", - "rief", - "einnahmen", - "einig", - "beamte", - "and", - "gelingt", - "status", - "gefährdet", - "vorteil", - "strukturen", - "rechts", - "staatliche", - "spiele", - "kräfte", - "persönlich", - "wachsen", - "atmosphäre", - "wann", - "angriff", - "müller", - "regionen", - "dresden", - "besetzt", - "technische", - "plus", - "gesichert", - "besonderen", - "gehörte", - "verspricht", - "vergeben", - "traf", - "wonach", - "inhalt", - "vorhaben", - "plant", - "galerie", - "horst", - "protest", - "urlaub", - "gelassen", - "traum", - "geben", - "steckt", - "leuten", - "bestimmen", - "mehrfach", - "sollte", - "tätigkeit", - "josef", - "alexander", - "beteiligen", - "unabhängig", - "anwalt", - "pflegen", - "roten", - "bildet", - "solange", - "erfolge", - "schließt", - "helmut", - "innenstadt", - "junge", - "mitteln", - "peking", - "aufgebaut", - "zeitungen", - "becker", - "wähler", - "software", - "demnächst", - "wird", - "erzeugt", - "retten", - "höchsten", - "stimmt", - "reaktion", - "bernd", - "halte", - "reduziert", - "moderne", - "mache", - "m.", - "rückgang", - "schwierig", - "produziert", - "ausgaben", - "hört", - "kassen", - "tokio", - "general", - "schloß", - "günter", - "deswegen", - "zdf", - "methode", - "sorge", - "sorgen", - "verfolgt", - "ungarn", - "nato", - "messe", - "figuren", - "kurzen", - "fest", - "bosnischen", - "welchen", - "höhepunkt", - "künftige", - "finanziert", - "aktuelle", - "zeigten", - "bekannten", - "spätestens", - "strategie", - "bemüht", - "sorgt", - "rat", - "meinem", - "neuen", - "benötigt", - "spur", - "ball", - "finale", - "keinem", - "schöne", - "reagiert", - "manfred", - "schützen", - "ernst", - "stammen", - "rande", - "schatten", - "verbessert", - "jüdischen", - "positive", - "manchen", - "entlassen", - "phase", - "vorgang", - "asien", - "eng", - "halbe", - "abschnitt", - "verbrechen", - "dank", - "geist", - "tot", - "eingeführt", - "berichten", - "anlegen", - "kirchen", - "funktionen", - "sanierung", - "sieger", - "aktionen", - "vorgelegt", - "wind", - "fahrzeuge", - "kurse", - "untersucht", - "durfte", - "u.a.", - "maschinen", - "unsere", - "ausgelöst", - "indien", - "haft", - "bewegt", - "zweck", - "währung", - "bitte", - "wald", - "wichtigste", - "zimmer", - "verlauf", - "ausgesetzt", - "prüfung", - "verwendung", - "kurze", - "zunächst", - "blut", - "anwendung", - "anhänger", - "aufnahme", - "sammlung", - "benutzt", - "angebote", - "umsetzung", - "dach", - "irak", - "gezwungen", - "premiere", - "ap", - "hoher", - "starten", - "kasse", - "nichts", - "hektar", - "paul", - "termin", - "gemeldet", - "kontakte", - "anbieten", - "räume", - "stellten", - "abbau", - "meldete", - "ton", - "unfall", - "touristen", - "englischen", - "abkommen", - "erfaßt", - "solche", - "metern", - "stiftung", - "existenz", - "zeugen", - "gold", - "absicht", - "objekt", - "anders", - "anklage", - "großen", - "einkommen", - "beider", - "sinnvoll", - "abstimmung", - "liefern", - "schafft", - "ecke", - "siemens", - "gutachten", - "version", - "konferenz", - "pariser", - "bundesliga", - "erhebliche", - "erfolgen", - "dialog", - "dutzend", - "abhängig", - "hängen", - "ausgegeben", - "bedenken", - "ergibt", - "iran", - "vermutet", - "aufnehmen", - "verzichtet", - "bundesweit", - "bekannte", - "befürchten", - "bekl", - "ehe", - "liest", - "gast", - "damaligen", - "wiener", - "genügend", - "ersetzt", - "vereine", - "beobachtet", - "verdienen", - "niemals", - "brand", - "verstanden", - "stolz", - "reagieren", - "laufe", - "schönen", - "erhoben", - "spuren", - "mitten", - "reformen", - "erschien", - "mut", - "grünen", - "christian", - "verliert", - "anna", - "aussicht", - "staates", - "charakter", - "spiegel", - "analyse", - "kapital", - "herzen", - "einiges", - "bedroht", - "linken", - "deutscher", - "russen", - "derzeit", - "eingeladen", - "verlangen", - "langem", - "stadtrat", - "beiträge", - "erkannt", - "zuschauern", - "trug", - "afrika", - "schritte", - "höchste", - "mord", - "dortmund", - "studium", - "erläutert", - "alltag", - "teilnahme", - "befürchtet", - "geschafft", - "betrag", - "nachmittag", - "solches", - "jenen", - "bildern", - "fläche", - "berichte", - "wiesbaden", - "heftig", - "äußerte", - "gewinne", - "gesprächen", - "klare", - "umgesetzt", - "justiz", - "soweit", - "wiederholt", - "bislang", - "endet", - "atlanta", - "holen", - "abstand", - "geprägt", - "nation", - "meer", - "berlins", - "keinerlei", - "aufgerufen", - "gewisse", - "programme", - "musiker", - "einsetzen", - "aufträge", - "pflege", - "management", - "behaupten", - "bier", - "gewinnt", - "jahresende", - "belegt", - "besseren", - "zuge", - "sap", - "saal", - "berufung", - "schwarze", - "farbe", - "georg", - "konzert", - "umfeld", - "gelernt", - "besitz", - "wand", - "kabinett", - "kosovo", - "sachsen", - "pause", - "erstes", - "waren", - "händen", - "fuhr", - "gebeten", - "gering", - "vorlage", - "www", - "schloß", - "risiken", - "sämtliche", - "gelegen", - "aufklärung", - "fünf", - "daher", - "erleben", - "pflanzen", - "spüren", - "feiern", - "schwerer", - "draußen", - "beweis", - "gewicht", - "lagen", - "fonds", - "kompromiß", - "handeln", - "training", - "kunde", - "geschlagen", - "hinweg", - "gelte", - "gesundheit", - "nachricht", - "mein", - "junger", - "kapitel", - "fördern", - "kamera", - "greifen", - "normalen", - "augenblick", - "waigel", - "werfen", - "äußerungen", - "tausende", - "begleitet", - "üblichen", - "blatt", - "bereiche", - "abteilung", - "erzählen", - "dauert", - "heinrich", - "belastet", - "verträge", - "wetter", - "keller", - "farben", - "entlang", - "begründete", - "welche", - "fielen", - "zugleich", - "sprecherin", - "führer", - "gegenwart", - "erste", - "londoner", - "angewiesen", - "kriterien", - "kurz", - "vereinbart", - "lasse", - "ihren", - "pfund", - "schlechte", - "kanada", - "bundesbank", - "dividende", - "investiert", - "gut", - "südafrika", - "gestern", - "getragen", - "japanische", - "geprüft", - "sparen", - "systems", - "stadtteil", - "robert", - "versichert", - "hinein", - "co", - "brasilien", - "späten", - "gesetze", - "neues", - "irgendwann", - "unseres", - "maschine", - "beobachten", - "typ", - "seele", - "not", - "bord", - "bmw", - "zuviel", - "zentimeter", - "später", - "ereignisse", - "offene", - "identität", - "folgte", - "bahnhof", - "hielten", - "allenfalls", - "spanischen", - "anfrage", - "serbischen", - "produkt", - "australien", - "a.", - "landschaft", - "schmidt", - "große", - "vorteile", - "leiden", - "arbeitete", - "bayerische", - "passieren", - "regie", - "eigentlich", - "übrig", - "kleines", - "höchstens", - "bemühungen", - "märkte", - "wert", - "pfarrer", - "ungefähr", - "zentrale", - "warnt", - "beinahe", - "microsoft", - "mischung", - "desto", - "vorgehen", - "oper", - "zentralen", - "sowieso", - "liefert", - "ruft", - "niemand", - "kern", - "beziehung", - "jüngste", - "aufmerksam", - "seitdem", - "reisen", - "führten", - "fuß", - "bleibe", - "leer", - "beobachter", - "vermitteln", - "überrascht", - "werken", - "klein", - "manche", - "öffnen", - "schätzt", - "bus", - "toten", - "zogen", - "mancher", - "besitzen", - "hotels", - "rebellen", - "ausgleich", - "gefeiert", - "ereignis", - "benutzer", - "erhöhte", - "reuter", - "methoden", - "feuerwehr", - "angegeben", - "darin", - "reihen", - "erzielte", - "wm", - "übernahm", - "abschied", - "behalten", - "lande", - "nationale", - "wartet", - "stärke", - "nunmehr", - "anzeigen", - "verändern", - "türkische", - "bäume", - "briten", - "gerät", - "selben", - "ihrer", - "vortrag", - "bedeuten", - "halt", - "analysten", - "hongkong", - "schlechter", - "davon", - "getrennt", - "figur", - "derart", - "schlüssel", - "stücke", - "bündnis", - "geschieht", - "liter", - "mauer", - "erkenntnis", - "paßt", - "kongreß", - "hoffnungen", - "späteren", - "marke", - "kenntnis", - "mannes", - "umständen", - "greift", - "saß", - "details", - "unmöglich", - "fragte", - "gewiß", - "belastung", - "namens", - "beweisen", - "verfügen", - "anschlag", - "gebieten", - "zahlt", - "kaum", - "höchst", - "falschen", - "schlechten", - "lösungen", - "gestartet", - "konkrete", - "hat", - "bundesrat", - "tendenz", - "falsche", - "lehnte", - "zuständige", - "helden", - "sichtbar", - "setzten", - "stefan", - "regen", - "vorne", - "lief", - "geboten", - "solch", - "milliarde", - "dauern", - "häufiger", - "kilogramm", - "meine", - "besitzer", - "partie", - "elisabeth", - "magistrat", - "unser", - "doppelt", - "dich", - "kollege", - "ältere", - "fürchten", - "problemen", - "arten", - "diejenigen", - "holz", - "denken", - "bewertung", - "deutliche", - "spielen", - "landkreis", - "geringer", - "jede", - "aufgrund", - "variante", - "schwester", - "festlegen", - "bürgern", - "schäden", - "sind", - "nein", - "betreiben", - "positiven", - "übergeben", - "mitteilung", - "lehre", - "gefördert", - "kleinere", - "geeignet", - "umfrage", - "mieter", - "halb", - "berg", - "kroatien", - "herbert", - "nochmals", - "tempo", - "spannung", - "klima", - "alten", - "allgemeine", - "see", - "bewerber", - "irgendwie", - "freundin", - "pflicht", - "erweitert", - "papst", - "teilnehmen", - "trennung", - "welchem", - "erstellt", - "nase", - "erklärten", - "sicherlich", - "schulden", - "senken", - "herzog", - "stoff", - "gerecht", - "vw", - "besucht", - "enttäuscht", - "anzeige", - "festen", - "hessischen", - "stiegen", - "ersetzen", - "aktionäre", - "verhandelt", - "zweiter", - "sorgte", - "otto", - "auftakt", - "zweier", - "richtet", - "einheiten", - "versuche", - "zellen", - "mengen", - "beziehen", - "führende", - "schiff", - "umfaßt", - "begegnung", - "ähnliche", - "großteil", - "theorie", - "denke", - "vermittelt", - "zürich", - "welches", - "erschossen", - "gekauft", - "maß", - "dienste", - "gesperrt", - "gestalt", - "stein", - "neubau", - "weisen", - "harten", - "forderten", - "feiert", - "extrem", - "allgemein", - "diesen", - "voran", - "versorgung", - "eis", - "billiger", - "überprüfen", - "mannheim", - "betrifft", - "verwies", - "minus", - "mögen", - "überlassen", - "lädt", - "schicken", - "notwendige", - "foto", - "finanziell", - "dank", - "schneider", - "ehe", - "image", - "belgien", - "gefährlich", - "betrieben", - "freiburg", - "steigerung", - "baut", - "rußlands", - "ablehnung", - "geklärt", - "brücke", - "dreißig", - "bewußtsein", - "glücklich", - "alleine", - "ferner", - "gewachsen", - "empfiehlt", - "errichtet", - "egal", - "legten", - "einstieg", - "osteuropa", - "scheinbar", - "reich", - "kostenlos", - "anteile", - "älteren", - "geriet", - "ärger", - "länge", - "verzicht", - "elemente", - "gesorgt", - "weiße", - "gestaltung", - "teams", - "gebildet", - "ruhig", - "jerusalem", - "geräte", - "mund", - "lafontaine", - "vereins", - "gefahren", - "früher", - "jenseits", - "wechseln", - "versuchten", - "sank", - "samt", - "polnischen", - "autobahn", - "grüne", - "gehörten", - "herkunft", - "rückzug", - "david", - "potsdam", - "hinzu", - "garten", - "betragen", - "dpa-afx", - "sterben", - "teufel", - "erzielen", - "fahrzeug", - "bestand", - "moderne", - "john", - "viel", - "womöglich", - "lauf", - "beschränkt", - "glas", - "aufgehoben", - "szenen", - "wahr", - "lebenden", - "auftreten", - "vorfeld", - "ansonsten", - "transport", - "zeichnet", - "strafe", - "hinten", - "jetzigen", - "neuesten", - "bett", - "bestätigen", - "gesunken", - "erhielten", - "parteitag", - "krieges", - "verbot", - "beispiele", - "sahen", - "sendung", - "verbreitet", - "vielmehr", - "eintritt", - "gezahlt", - "belgrad", - "kümmern", - "zustande", - "antreten", - "teurer", - "steigern", - "wünschen", - "ganze", - "türen", - "us-dollar", - "alfred", - "riesigen", - "vergeblich", - "zumeist", - "maler", - "manchmal", - "raus", - "schlicht", - "bereitet", - "hochschule", - "unklar", - "vorgänge", - "großem", - "bewertet", - "kaiser", - "breit", - "lehnt", - "üblich", - "signal", - "maximal", - "klinik", - "käufer", - "dame", - "reagierte", - "einziger", - "bestehe", - "auflösung", - "forum", - "brachten", - "beine", - "küche", - "glauben", - "gelöst", - "griff", - "wahren", - "züge", - "gemeint", - "betreuung", - "gestalten", - "betrug", - "inneren", - "erteilt", - "ausschuß", - "dreimal", - "dax", - "gedichte", - "verhaftet", - "yen", - "mexiko", - "vorigen", - "abends", - "erwiesen", - "bot", - "innen", - "dänemark", - "argument", - "haut", - "angeklagte", - "aufwand", - "reine", - "distanz", - "einstellen", - "betrieben", - "zuvor", - "rtl", - "konjunktur", - "bernhard", - "irgendwo", - "park", - "sagten", - "damen", - "offizielle", - "harte", - "amtszeit", - "laufende", - "hinter", - "konto", - "ursachen", - "vorn", - "gelesen", - "teilen", - "akzeptiert", - "absolut", - "bestellt", - "verweist", - "vieles", - "vermögen", - "politikern", - "schnellen", - "denkbar", - "fotos", - "gemessen", - "freuen", - "sprung", - "stimmen", - "reichlich", - "restaurant", - "gestrichen", - "gewarnt", - "achten", - "abgeben", - "friedrich", - "akten", - "küste", - "jüngst", - "berufen", - "schnelle", - "briefe", - "räumte", - "kaffee", - "gelder", - "symbol", - "gebühren", - "kleineren", - "europäer", - "johann", - "teilt", - "italiener", - "parameter", - "freunden", - "stecken", - "garantiert", - "zuwachs", - "rand", - "haushalte", - "weltweiten", - "club", - "nieder", - "bestehende", - "einfache", - "geschätzt", - "uno", - "b.", - "moskauer", - "nachmittag", - "ebenso", - "mühe", - "phantasie", - "berater", - "medizin", - "geleistet", - "stößt", - "tode", - "teil", - "vorwiegend", - "vgl", - "freiwillig", - "verursacht", - "h.", - "alte", - "fr", - "hafen", - "allmählich", - "überzeugen", - "kurden", - "teils", - "vorgänger", - "jahrzehnte", - "begeistert", - "beenden", - "richard", - "fleisch", - "barcelona", - "schnitt", - "drogen", - "mitgeteilt", - "leitet", - "nachts", - "anwohner", - "export", - "regel", - "mittels", - "besuchen", - "handlung", - "erworben", - "brach", - "breiten", - "gerät", - "ohren", - "konkreten", - "würde", - "gäbe", - "ablauf", - "fließen", - "bezug", - "ukraine", - "eingang", - "entschied", - "flugzeug", - "stock", - "aussehen", - "froh", - "treibt", - "haben", - "einfachen", - "gepflegt", - "gestanden", - "beitragen", - "zähler", - "beantragt", - "gefühle", - "ergab", - "wesen", - "betreibt", - "brauche", - "überprüft", - "auflage", - "besetzten", - "jazz", - "stern", - "mangel", - "tasche", - "scharping", - "verschoben", - "hund", - "barbara", - "volle", - "melden", - "d.h.", - "weshalb", - "berühmten", - "dokument", - "öl", - "anerkannt", - "genannten", - "echte", - "dw", - "reduzieren", - "bundes", - "komplett", - "mainz", - "sprachen", - "fliegen", - "liebsten", - "folgende", - "maßnahme", - "konzerns", - "hinsicht", - "benutzen", - "richten", - "mehrere", - "adresse", - "meldung", - "modelle", - "schließung", - "umbau", - "speziell", - "vaters", - "verlangte", - "fachleute", - "chaos", - "zehn", - "abgesehen", - "reaktionen", - "monatlich", - "operation", - "geäußert", - "hinnehmen", - "gebraucht", - "fünfzig", - "bestand", - "report", - "türken", - "kroaten", - "dachte", - "verbindet", - "papiere", - "liga", - "mir", - "studien", - "maße", - "einerseits", - "büros", - "scharf", - "teure", - "ausgebaut", - "teuren", - "gremium", - "bildschirm", - "innere", - "überlegen", - "hoffe", - "dir", - "sätze", - "gefaßt", - "anhand", - "formuliert", - "chinas", - "räumt", - "ehefrau", - "gewissen", - "morgens", - "erfassen", - "j.", - "stars", - "absatz", - "sturm", - "begrenzt", - "eigentümer", - "klagt", - "löst", - "ihrem", - "militärs", - "finde", - "aufstieg", - "gebiete", - "genossen", - "kinkel", - "rente", - "kommende", - "ware", - "kämen", - "ergänzt", - "genf", - "gestaltet", - "normale", - "katalog", - "stünden", - "heutige", - "systeme", - "vierte", - "datum", - "finger", - "zufall", - "wolf", - "standard", - "betreut", - "demnach", - "dokumente", - "armut", - "verfolgen", - "gebrauch", - "steuer", - "prag", - "hinterher", - "kampagne", - "tanz", - "bezieht", - "geburt", - "existiert", - "startet", - "hermann", - "geheimnis", - "ansprüche", - "arm", - "lange", - "wirkte", - "rudolf", - "arme", - "treiben", - "umzug", - "verletzung", - "lasten", - "lässt", - "premier", - "scheitern", - "muster", - "lufthansa", - "befand", - "sicherung", - "abgegeben", - "jahrelang", - "aufgegeben", - "abgebaut", - "masse", - "abzug", - "begrüßt", - "käme", - "zitiert", - "drücken", - "niedriger", - "kurzer", - "radio", - "verlegt", - "freut", - "spezielle", - "fünften", - "breite", - "star", - "gegend", - "direkten", - "karte", - "letzter", - "erinnerte", - "instituts", - "schauen", - "seinerzeit", - "turnier", - "leichte", - "ost", - "profis", - "kiel", - "genau", - "engen", - "absolute", - "fritz", - "handeln", - "aufschwung", - "vertretern", - "nazis", - "wilhelm", - "kilometern", - "gesteigert", - "minus", - "zentrale", - "paar", - "religion", - "seitdem", - "beifall", - "merkmale", - "grundstück", - "halbes", - "sarajewo", - "kurt", - "herrschaft", - "verbinden", - "tier", - "gesenkt", - "öffnung", - "drohen", - "einziges", - "umgekehrt", - "konflikte", - "ähnlich", - "baum", - "kapitän", - "planen", - "ots", - "betrachten", - "front", - "geliefert", - "gastgeber", - "stadion", - "trennen", - "lebte", - "längere", - "gefahren", - "produkten", - "senkung", - "kritisch", - "anschluß", - "darmstadt", - "wachsenden", - "böblingen", - "wuchs", - "spenden", - "zugelassen", - "lastwagen", - "klären", - "ulrich", - "schönheit", - "antworten", - "milosevic", - "bezirk", - "liberalen", - "vielzahl", - "geringen", - "erkennt", - "stabilität", - "orchester", - "eigener", - "deutsch", - "sänger", - "durchs", - "kämpfe", - "fraktionen", - "klaren", - "weiter", - "erzeugen", - "franc", - "beklagt", - "gibt's", - "bezogen", - "anlegen", - "graf", - "unterricht", - "kommentar", - "etat", - "tiefer", - "minderheit", - "index", - "brigitte", - "umsätze", - "tat", - "einstigen", - "seither", - "aufruf", - "rufen", - "rumänien", - "augsburg", - "einladung", - "gewährt", - "bewiesen", - "regelungen", - "west", - "bricht", - "landrat", - "zugute", - "langer", - "streng", - "hunderte", - "unterlagen", - "schlag", - "sammeln", - "instrument", - "bischof", - "holte", - "aussichten", - "kredite", - "äußern", - "tv", - "verteilung", - "proteste", - "hohem", - "geringe", - "israels", - "joachim", - "jederzeit", - "suchte", - "ändert", - "nato", - "verlängert", - "geworfen", - "respekt", - "derartige", - "lieben", - "ring", - "technisch", - "plänen", - "angesehen", - "englische", - "akt", - "vogel", - "sinken", - "mercedes", - "wenden", - "lsw", - "hierzu", - "wandel", - "handwerk", - "tote", - "stoiber", - "singen", - "bekämpfung", - "ensemble", - "besetzung", - "erstmals", - "belegen", - "perfekt", - "gemäß", - "gesammelt", - "helfer", - "definition", - "wider", - "versorgt", - "jobs", - "show", - "volkes", - "verbände", - "flächen", - "rainer", - "empfangen", - "konsequent", - "sozusagen", - "lauter", - "datenbank", - "wohnen", - "institute", - "dicht", - "darauf", - "offenbach", - "alkohol", - "bevor", - "vermuten", - "hanau", - "ca", - "drohte", - "jan", - "daneben", - "ehemaliger", - "erzählung", - "uwe", - "ernsthaft", - "streik", - "gefällt", - "armen", - "schaut", - "jenem", - "schuldig", - "erfährt", - "statistik", - "kreisen", - "bürgerhaus", - "verhandeln", - "gegenstand", - "oberfläche", - "befreit", - "verhalten", - "pc", - "ermordet", - "binnen", - "konsequenz", - "drängen", - "heidelberg", - "hab", - "erläuterte", - "city", - "stärken", - "anläßlich", - "verkündet", - "zusammen", - "stieß", - "gas", - "gezielt", - "quelle", - "volumen", - "schaffung", - "malerei", - "madrid", - "sechs", - "k.", - "handele", - "tiefe", - "stufe", - "mütter", - "zeilen", - "leider", - "studierte", - "engagiert", - "verweigert", - "ihm", - "dran", - "stelle", - "laden", - "daneben", - "einzig", - "preisen", - "bedient", - "rechte", - "rote", - "jüdische", - "träger", - "genaue", - "ehre", - "wahre", - "wieviel", - "ausgeführt", - "anträge", - "esslingen", - "endete", - "angriffe", - "chemie", - "serbien", - "mehrmals", - "kleinen", - "einander", - "internen", - "eigens", - "sponsoren", - "leidet", - "vorsichtig", - "genauer", - "klassen", - "bitte", - "darstellen", - "häusern", - "truppe", - "bedarf", - "normal", - "telephon", - "kassel", - "rundfunk", - "schnee", - "abrechnung", - "stoppen", - "damalige", - "erwarteten", - "thüringen", - "örtlichen", - "schau", - "versehen", - "speziellen", - "vollen", - "nutzen", - "hinblick", - "tagung", - "versetzt", - "zuordnung", - "südlich", - "schätzen", - "sprachen", - "riesige", - "kämpft", - "stich", - "innerhalb", - "umfassende", - "zustimmen", - "bewegungen", - "nürnberger", - "inszeniert", - "kritischen", - "zugestimmt", - "tour", - "genehmigt", - "ausgang", - "these", - "sachen", - "mode", - "müll", - "zufällig", - "absage", - "sand", - "profil", - "gerufen", - "vernunft", - "unglück", - "entlastung", - "korruption", - "amsterdam", - "dreht", - "feste", - "zerstörung", - "rhein", - "mörder", - "fehlte", - "all", - "tourismus", - "lohn", - "autorin", - "gottes", - "direkte", - "mittleren", - "ansatz", - "element", - "live", - "historiker", - "frisch", - "kritische", - "singt", - "last", - "vielfalt", - "klassische", - "erlitten", - "moral", - "trafen", - "deutsch", - "vorsprung", - "hitler", - "kulturelle", - "sekunde", - "erich", - "größter", - "kandidat", - "enge", - "fluß", - "ähnlichen", - "gefolgt", - "einmal", - "meistens", - "gegenüber", - "passen", - "regionalen", - "quer", - "mediziner", - "günther", - "genießen", - "gramm", - "essen", - "prof", - "leichten", - "militär", - "vision", - "norwegen", - "wünscht", - "stürmer", - "frankfurt", - "inklusive", - "journalist", - "station", - "rolf", - "geeinigt", - "ferner", - "liebt", - "ausgehen", - "museen", - "affäre", - "serbische", - "töne", - "intensiv", - "deutlicher", - "fassen", - "aufführung", - "zahlung", - "prognose", - "war", - "versprach", - "wein", - "mailand", - "uni", - "ursula", - "portugal", - "vortag", - "büchern", - "meldet", - "motiv", - "ließe", - "durchbruch", - "wünsche", - "erkennbar", - "vornehmen", - "schumacher", - "lieder", - "fr", - "geschehen", - "arabischen", - "drin", - "niedrigen", - "nutzt", - "vielfach", - "christen", - "wieder", - "ob", - "quellen", - "folgten", - "fakten", - "aufgelöst", - "ägypten", - "eröffnen", - "benötigen", - "gründete", - "vertraut", - "zuschüsse", - "erhältlich", - "fortsetzen", - "hals", - "inseln", - "zusätzlich", - "bayerns", - "klub", - "ermitteln", - "buches", - "therapie", - "öfter", - "verdanken", - "erwachsene", - "konsens", - "explosion", - "fügte", - "dunklen", - "beschloß", - "wachsende", - "sobald", - "öffnet", - "parlaments", - "jedes", - "drauf", - "enger", - "argumente", - "gipfel", - "erstellen", - "bauer", - "gelingen", - "verläßt", - "kann", - "parteichef", - "phänomen", - "umstritten", - "scheiterte", - "bemerkt", - "johannes", - "gerüchte", - "iii", - "ausmaß", - "treffer", - "stolz", - "iwf", - "heftigen", - "bemühen", - "kammer", - "schülern", - "globalen", - "branchen", - "redet", - "passagiere", - "gebunden", - "rücksicht", - "drastisch", - "option", - "lieferung", - "menschheit", - "reinen", - "haare", - "schäfer", - "entdecken", - "plätzen", - "fürchtet", - "angeben", - "jörg", - "beherrscht", - "sturz", - "weitaus", - "sofern", - "existieren", - "reisen", - "skandal", - "räumen", - "zugrunde", - "ibm", - "tieren", - "nachwuchs", - "st.", - "treffpunkt", - "gelangt", - "derweil", - "rollen", - "wendet", - "greenpeace", - "vorgaben", - "spielten", - "verringert", - "abwehr", - "geschützt", - "annahme", - "getrieben", - "erreichten", - "japaner", - "stärksten", - "kreise", - "generell", - "solange", - "städtische", - "einsicht", - "anzeigen", - "böse", - "parallel", - "wagner", - "erstenmal", - "fähigkeit", - "anliegen", - "befreiung", - "total", - "test", - "vorläufig", - "zeile", - "gebucht", - "abends", - "mythos", - "vierzig", - "ansonsten", - "werben", - "gehirn", - "erwerben", - "substanz", - "unteren", - "rostock", - "rentner", - "zweites", - "dgb", - "vorstoß", - "deutlichen", - "musste", - "bewahren", - "motive", - "erledigt", - "vorlegen", - "vertritt", - "deren", - "weiten", - "sowohl", - "schwarz", - "akademie", - "löste", - "luxemburg", - "euch", - "empfehlen", - "linke", - "erwähnt", - "schönsten", - "kleine", - "entdeckung", - "taten", - "waffe", - "löschen", - "golf", - "etliche", - "zugriff", - "leverkusen", - "einzelner", - "jenes", - "hierfür", - "loch", - "verwandelt", - "kehrt", - "eingeräumt", - "holding", - "ansehen", - "ausfallen", - "merkmal", - "dfb", - "füßen", - "letztes", - "stoffe", - "regime", - "schweigen", - "periode", - "feierte", - "durften", - "for", - "abenteuer", - "endgültige", - "bittet", - "redaktion", - "reden", - "gästen", - "versteckt", - "immobilien", - "kilo", - "gerichtet", - "ludwig", - "börsen", - "echten", - "bezeichnen", - "überblick", - "kündigung", - "zumindest", - "krank", - "stehenden", - "faust", - "freistaat", - "soll", - "fazit", - "jemals", - "umstellung", - "spanische", - "komponente", - "verbandes", - "gewußt", - "brechen", - "handelte", - "lediglich", - "rot-grünen", - "gerettet", - "müde", - "streiten", - "genügt", - "kulturen", - "ehemals", - "herrschte", - "steigenden", - "meldungen", - "kindheit", - "bewölkt", - "oft", - "freundlich", - "betreiber", - "hanauer", - "besorgt", - "restlichen", - "erlauben", - "etwas", - "un", - "gestoßen", - "bibliothek", - "berichten", - "gute", - "lied", - "agentur", - "gemeinsam", - "erwerb", - "sportler", - "geborene", - "quote", - "berechnet", - "komödie", - "religiösen", - "offenbar", - "münchener", - "einzug", - "schwach", - "quasi", - "schildert", - "sonst", - "motor", - "rettung", - "aufgeben", - "drängt", - "geholfen", - "schuß", - "verglichen", - "protokoll", - "sozial", - "christine", - "zunahme", - "börsengang", - "wohl", - "vermag", - "gestoppt", - "offensive", - "gehöre", - "behandeln", - "sogar", - "gelaufen", - "do", - "brüder", - "mitunter", - "entlassung", - "aufgeführt", - "inflation", - "übergang", - "monika", - "bearbeitet", - "sicher", - "löhne", - "filmen", - "heimischen", - "gefüllt", - "unrecht", - "magazin", - "detail", - "kürzungen", - "begannen", - "begegnen", - "entdeckte", - "geholt", - "massiven", - "umgehen", - "potential", - "einfacher", - "verließ", - "weite", - "münster", - "rock", - "franken", - "sanktionen", - "anfangs", - "jüngeren", - "köpfe", - "bayer", - "weniger", - "eingeben", - "zugesagt", - "mehrerer", - "eines", - "besuchern", - "blauen", - "ehemann", - "haar", - "defizit", - "bach", - "halbfinale", - "fax", - "lebende", - "skeptisch", - "reichte", - "karin", - "irland", - "realisiert", - "verfolgung", - "geleitet", - "tages", - "andrea", - "senator", - "optimismus", - "tränen", - "westliche", - "singapur", - "leeren", - "zwingen", - "zeitweise", - "ersatz", - "to", - "linken", - "flügel", - "erhalt", - "jung", - "stimmten", - "außer", - "bedrohung", - "romans", - "scheitern", - "oberen", - "locker", - "eventuell", - "impulse", - "opfern", - "gestohlen", - "vorliegen", - "wandte", - "drehen", - "einstimmig", - "v.chr.", - "koch", - "täglichen", - "darstellt", - "verteidigt", - "massiv", - "brüsseler", - "verteilen", - "messer", - "entfallen", - "aufhebung", - "klagen", - "weber", - "prognosen", - "flugzeuge", - "vergangene", - "karlsruher", - "angehörige", - "geltend", - "geschmack", - "völker", - "derselben", - "holland", - "führe", - "kommunalen", - "lokalen", - "fassung", - "nationen", - "pkk", - "ruhestand", - "empfohlen", - "flug", - "dimension", - "verdoppelt", - "dortigen", - "films", - "gegründete", - "aufbauen", - "steigende", - "wohin", - "gegenzug", - "erbe", - "taiwan", - "wohnt", - "bearbeiten", - "schöner", - "festival", - "bedeute", - "lautete", - "held", - "auflagen", - "nehme", - "angeht", - "kompetenz", - "freizeit", - "stoßen", - "fabrik", - "reiche", - "deutet", - "wann", - "überwinden", - "blickt", - "studiert", - "beratungen", - "lebten", - "finanzen", - "spielern", - "chor", - "freier", - "laufzeit", - "ali", - "harald", - "vollkommen", - "photo", - "hob", - "ministerin", - "präsenz", - "gewohnt", - "delegation", - "geltenden", - "sonnabend", - "exakt", - "architekt", - "anton", - "helga", - "abs", - "heftige", - "schwarz", - "release", - "altstadt", - "leiden", - "italiens", - "schiffe", - "bruch", - "füllen", - "eg", - "werden", - "begangen", - "zugänglich", - "erika", - "ausnahmen", - "gehalt", - "polnische", - "diesmal", - "varianten", - "nerven", - "flammen", - "zeuge", - "befreien", - "zeige", - "nördlich", - "kandidatur", - "lohnt", - "steuern", - "islam", - "still", - "programms", - "kleidung", - "neuerdings", - "anderswo", - "sage", - "max", - "dorthin", - "gründen", - "errichten", - "märkten", - "märchen", - "inhalte", - "null", - "kubikmeter", - "marketing", - "nötigen", - "arbeitsamt", - "planungen", - "bedingung", - "tübingen", - "weder", - "gewannen", - "sabine", - "dass", - "plädiert", - "bist", - "gekostet", - "bearbeiten", - "lesen", - "getreten", - "usd", - "leise", - "überdies", - "mißbrauch", - "klubs", - "überleben", - "termine", - "stirbt", - "exil", - "effekt", - "leiche", - "prozesse", - "dramatisch", - "stimmte", - "stadtwerke", - "lächeln", - "fügt", - "negativ", - "griff", - "verlierer", - "übersehen", - "orten", - "cd", - "kindes", - "wirksam", - "goethe", - "instanz", - "fraglich", - "erziehung", - "tschechien", - "frist", - "gelöscht", - "klagen", - "brot", - "miete", - "göppingen", - "wut", - "südlichen", - "schlimmer", - "gesichter", - "ralf", - "einbruch", - "verraten", - "interne", - "neuem", - "w.", - "anzeichen", - "eineinhalb", - "zuordnen", - "villa", - "schwierige", - "sieben", - "auswertung", - "berechnung", - "sehr", - "befassen", - "gewünschte", - "aspekt", - "bekamen", - "witz", - "austausch", - "schwachen", - "schäuble", - "angemeldet", - "fühlte", - "konkurs", - "geschah", - "erfüllung", - "engel", - "neuer", - "inland", - "massive", - "gerd", - "angehören", - "aktiven", - "fremden", - "gebrochen", - "geregelt", - "zwecke", - "daran", - "zugenommen", - "gerichte", - "jury", - "humor", - "entfernung", - "römer", - "genannte", - "angebracht", - "gestrigen", - "udssr", - "marktes", - "befaßt", - "wußten", - "gertrud", - "weiß", - "disziplin", - "stahl", - "center", - "bunten", - "rechner", - "furcht", - "günstig", - "tiefe", - "bewältigen", - "heiße", - "autors", - "sehnsucht", - "gefangenen", - "fülle", - "älter", - "weltweite", - "skepsis", - "erweist", - "ganzes", - "ausgewählt", - "magdeburg", - "gleichwohl", - "siegfried", - "gewissen", - "kündigt", - "geschossen", - "mannesmann", - "spürbar", - "spielraum", - "integriert", - "verkündete", - "syrien", - "fließt", - "eva", - "lob", - "stabil", - "eigenem", - "kinos", - "gleich", - "starben", - "aussieht", - "straftaten", - "heran", - "moderner", - "kürze", - "km", - "verstärken", - "dresdner", - "ebenfalls", - "ernannt", - "vertrieben", - "planeten", - "illegal", - "digitalen", - "hörte", - "momentan", - "kalt", - "vorjahres", - "weiblichen", - "brauchte", - "können", - "erheben", - "sozialer", - "warnen", - "juristen", - "besonderer", - "schwäche", - "vermieden", - "konzepte", - "rot-grüne", - "bombe", - "spannungen", - "faktoren", - "dahinter", - "via", - "halbzeit", - "ausstieg", - "ausweitung", - "gemälde", - "opel", - "empfang", - "aktive", - "entziehen", - "überfall", - "rendite", - "rückt", - "erhofft", - "tunnel", - "berühmte", - "gelegenen", - "erarbeitet", - "messen", - "schaffte", - "behauptung", - "athen", - "drückt", - "petra", - "geiseln", - "hast", - "gesetzlich", - "ufer", - "anpassung", - "gesetzes", - "ohr", - "überleben", - "zeit", - "nahrung", - "indonesien", - "vergabe", - "vorzeitig", - "weitem", - "konkret", - "verwiesen", - "nachfolge", - "kriegen", - "bestanden", - "mission", - "unbekannte", - "tabellen", - "lärm", - "diplomaten", - "spanier", - "leitete", - "senioren", - "leipziger", - "bereiten", - "gabriele", - "amerikas", - "kontrollen", - "beleg", - "läden", - "erfuhr", - "männlichen", - "markiert", - "business", - "gewidmet", - "r.", - "kreuz", - "tiefen", - "annehmen", - "hollywood", - "erzählte", - "klarheit", - "enden", - "erster", - "holt", - "senats", - "sitze", - "wurzeln", - "verlaufen", - "matthias", - "rechten", - "regiert", - "partnern", - "vogts", - "claudia", - "niedrig", - "formel", - "bestraft", - "grün", - "beauftragt", - "eröffnete", - "renate", - "signale", - "olympia", - "gründlich", - "fertigung", - "athleten", - "ausführung", - "jungs", - "knie", - "überaus", - "hebt", - "errichtung", - "sicheren", - "arafat", - "korrekt", - "drama", - "kenne", - "studio", - "verringern", - "aufzubauen", - "konzerne", - "zeitalter", - "tests", - "substanzen", - "jedenfalls", - "betten", - "beute", - "grundsatz", - "bitten", - "aspekte", - "haß", - "ständigen", - "königin", - "bgb", - "manches", - "is", - "erlitt", - "begreifen", - "verliehen", - "erhöhten", - "bauch", - "schrift", - "leiten", - "jährlichen", - "allemal", - "gisela", - "zunehmende", - "hut", - "indischen", - "entstehung", - "studieren", - "angabe", - "ära", - "blätter", - "negativen", - "eingehen", - "bedienen", - "runden", - "hoechst", - "benannt", - "weichen", - "bakterien", - "daniel", - "glaubte", - "vorsitz", - "bat", - "balkan", - "beschädigt", - "dicken", - "befragten", - "a.", - "brust", - "schlossen", - "gewinner", - "römischen", - "christoph", - "meines", - "erlebte", - "anfangen", - "chirac", - "niemanden", - "wehren", - "bisweilen", - "stürzte", - "leichen", - "seinen", - "empfehlung", - "erlassen", - "di", - "gleicher", - "regionale", - "bgh", - "gefährden", - "trinken", - "vorsicht", - "englisch", - "lobte", - "warnung", - "günstigen", - "inc.", - "nachweisen", - "östlichen", - "anwälte", - "norbert", - "geht's", - "südwesten", - "finnland", - "profitiert", - "südkorea", - "markieren", - "kürzung", - "gleichwohl", - "üben", - "umfragen", - "ausländern", - "berge", - "fehlende", - "schrecken", - "jagd", - "angesagt", - "rechtlich", - "sorgten", - "verweisen", - "erfordert", - "hessische", - "vfb", - "erweitern", - "begegnet", - "demokraten", - "übers", - "bevorzugt", - "dauerte", - "beruht", - "blumen", - "gezählt", - "ulm", - "träume", - "einbezogen", - "fünfzehn", - "gekürzt", - "photos", - "fester", - "kehrte", - "wechselt", - "resultat", - "zweifellos", - "denkmal", - "design", - "erholung", - "gelebt", - "gedroht", - "mo", - "prinz", - "marktplatz", - "dirk", - "café", - "acht", - "mandat", - "haftbefehl", - "spätere", - "diente", - "parkplatz", - "künstlern", - "materials", - "g.", - "vögel", - "zählte", - "busse", - "video", - "digitale", - "albert", - "rezession", - "pferde", - "schriften", - "bekämpfen", - "bestellung", - "hunde", - "orte", - "schlimm", - "gedanke", - "beste", - "interviews", - "fünfte", - "trugen", - "selbstmord", - "früherer", - "schuhe", - "privat", - "medium", - "unbekannte", - "etc.", - "abgelegt", - "sichere", - "bosnische", - "friedhof", - "wände", - "stärkere", - "e.v.", - "bayerische", - "konten", - "wem", - "empfänger", - "renten", - "typisch", - "heuer", - "strecken", - "tal", - "linke", - "beeinflußt", - "votum", - "natürliche", - "vorhandene", - "angemessen", - "komplette", - "weimar", - "milch", - "anmeldung", - "monats", - "chemische", - "moslems", - "reich", - "rhythmus", - "werten", - "japans", - "mangelnde", - "übersetzt", - "landen", - "f.", - "ehepaar", - "netanjahu", - "genuß", - "mängel", - "coach", - "siedlung", - "kletterte", - "illegalen", - "schickt", - "sorgfältig", - "springen", - "kieler", - "welle", - "fehlten", - "traten", - "schock", - "negative", - "nötige", - "rwe", - "ford", - "glanz", - "schlacht", - "wirbt", - "kostete", - "anordnung", - "erwies", - "bochum", - "charme", - "begrüßte", - "ankunft", - "ingrid", - "gibt", - "ökologisch", - "klavier", - "faktor", - "schickte", - "söhne", - "verleger", - "toren", - "pakistan", - "aufregung", - "unterhalb", - "texten", - "investor", - "kannte", - "unbekannt", - "krebs", - "infotyp", - "offener", - "rühe", - "triumph", - "rät", - "zahlungen", - "engländer", - "chemischen", - "mühsam", - "ausbauen", - "e.", - "notfalls", - "bedingt", - "umgehend", - "wüste", - "zuschuß", - "wenigsten", - "kommune", - "gewerbe", - "experiment", - "darüber", - "angepaßt", - "indessen", - "d-mark", - "dortmunder", - "daraus", - "gänzlich", - "dasa", - "bester", - "zahlreiche", - "daraufhin", - "jahrestag", - "christa", - "bergen", - "geladen", - "grundlagen", - "dingen", - "belasten", - "steine", - "feldern", - "landstraße", - "ermittler", - "hsv", - "ausbruch", - "beschlüsse", - "anzubieten", - "liebe", - "streichen", - "stadthalle", - "pferd", - "vietnam", - "längeren", - "ausgeben", - "erzielten", - "währungen", - "darlehen", - "kälte", - "tennis", - "em", - "lektüre", - "zelle", - "chinesen", - "prüft", - "projekts", - "ermordung", - "lesung", - "einzelfall", - "fern", - "heiß", - "logik", - "gattung", - "schwung", - "staatschef", - "stasi", - "hildegard", - "bestehen", - "derzeitige", - "indirekt", - "fällig", - "aids", - "anleihen", - "warschau", - "womit", - "fernseher", - "weltbank", - "räumen", - "gedreht", - "gedicht", - "male", - "gewähren", - "angeordnet", - "rekord", - "vergnügen", - "erfunden", - "beseitigt", - "zulässig", - "gutachter", - "erwarte", - "nördlichen", - "auschwitz", - "genießt", - "erfolgte", - "füße", - "wechselte", - "wichtig", - "anstatt", - "älteste", - "baustelle", - "arbeitslos", - "nord", - "geduld", - "beweist", - "dörfer", - "muslime", - "tips", - "elf", - "aufnahmen", - "kontinent", - "beseitigen", - "billig", - "präsent", - "jetzige", - "ihrerseits", - "ach", - "mainzer", - "schichten", - "ärzten", - "erwartete", - "sex", - "lyrik", - "torwart", - "vornherein", - "platte", - "ressourcen", - "saßen", - "enorm", - "orientiert", - "verfahrens", - "knapp", - "ersten", - "prompt", - "vereinen", - "markus", - "präsidium", - "taucht", - "blockiert", - "hohes", - "leiterin", - "umstände", - "festhalten", - "fortan", - "strikt", - "einwohnern", - "feier", - "väter", - "israelis", - "filialen", - "http", - "erweisen", - "deswegen", - "mochte", - "knappen", - "kräftigen", - "bein", - "klar", - "verkaufte", - "derer", - "songs", - "beachten", - "gleichsam", - "schweigen", - "schwächen", - "lachen", - "bundesland", - "stärkung", - "anwender", - "boeing", - "usw", - "schießen", - "gebäudes", - "töchter", - "wäre", - "absturz", - "boot", - "alpen", - "landete", - "fahrbahn", - "verschärft", - "locken", - "dessen", - "gewordenen", - "kümmert", - "ggf", - "fünftel", - "religiöse", - "mehrzahl", - "feind", - "beklagen", - "unruhe", - "fühle", - "dichtung", - "fahrzeugen", - "verrät", - "nutzer", - "verbringen", - "beides", - "priester", - "nutzte", - "armen", - "überlebt", - "talent", - "festnahme", - "ältesten", - "einrichten", - "angelika", - "berechtigt", - "student", - "kauft", - "kuba", - "angesetzt", - "rechtliche", - "stichwort", - "dynamik", - "budapest", - "lücke", - "versorgen", - "übersicht", - "chefs", - "gewaltigen", - "mond", - "tragödie", - "kräften", - "neu", - "legende", - "zivilisten", - "mi", - "spätestens", - "ruanda", - "fahrrad", - "bescheiden", - "ankara", - "weibliche", - "nachteil", - "wenig", - "aktuell", - "zulassung", - "paß", - "revision", - "mittlere", - "pro", - "linien", - "gutem", - "infolge", - "kämpfer", - "autonomie", - "bewährung", - "erträge", - "jüngster", - "bestimmter", - "wichtiges", - "hoffmann", - "eintrag", - "patient", - "fördert", - "eigentum", - "besuchte", - "stationen", - "jubiläum", - "bad", - "freien", - "erwartung", - "gestärkt", - "rücken", - "biographie", - "annähernd", - "physiker", - "reporter", - "strich", - "privater", - "sechsten", - "stärkste", - "strebt", - "suchten", - "lernt", - "bestimmung", - "abgesetzt", - "wisse", - "van", - "rechts", - "ötv", - "hunger", - "manuell", - "notiert", - "stört", - "group", - "angefangen", - "heim", - "rätsel", - "beurteilen", - "jäger", - "gedrängt", - "gedruckt", - "schuld", - "lacht", - "einhaltung", - "stille", - "schwarzen", - "lothar", - "gesteckt", - "zuhörer", - "museums", - "stuttgart", - "urlauber", - "nächster", - "bestreiten", - "oftmals", - "bagdad", - "ewig", - "roland", - "prinzipien", - "steuert", - "heutzutage", - "piloten", - "maßgeblich", - "herstellen", - "globale", - "bulgarien", - "geredet", - "keiner", - "absoluten", - "sinkt", - "eingriff", - "überwunden", - "werkstatt", - "chicago", - "springen", - "zusage", - "stören", - "verlief", - "birgit", - "main", - "new", - "ergänzen", - "abgestimmt", - "kapazität", - "ertrag", - "bewahrt", - "erkannte", - "sportliche", - "hilfen", - "maßstab", - "geste", - "auswählen", - "freilich", - "bestritten", - "gebürtige", - "knoten", - "blicken", - "zone", - "wen", - "anderthalb", - "aufenthalt", - "rad", - "wille", - "richtete", - "versagt", - "zuletzt", - "exemplare", - "schulter", - "expansion", - "angetreten", - "gewünscht", - "begriffen", - "trost", - "verfasser", - "abitur", - "wenige", - "lieferte", - "liefen", - "kohle", - "zuschlag", - "geschäften", - "mißtrauen", - "schmerzen", - "entlastet", - "reinhard", - "tatsachen", - "freiburger", - "wirkliche", - "strengen", - "ironie", - "asyl", - "ständige", - "unlängst", - "träumen", - "praktische", - "moralische", - "deutsches", - "empörung", - "jüngere", - "fehlenden", - "russland", - "buchstaben", - "zorn", - "baute", - "begriffe", - "angekommen", - "knochen", - "fremde", - "mieten", - "leistet", - "zeichnen", - "bewirkt", - "früchte", - "fremd", - "umwandlung", - "wagen", - "nachhaltig", - "häftlinge", - "zerstören", - "listen", - "abbruch", - "en", - "demnach", - "sparte", - "thailand", - "siehe", - "notierte", - "schwache", - "broschüre", - "stuhl", - "lauten", - "wärme", - "devise", - "kameras", - "wirklichen", - "vorfall", - "mafia", - "ängste", - "polizist", - "starker", - "decke", - "auslösen", - "mannheimer", - "passanten", - "bald", - "aufkommen", - "ändern", - "sollten", - "bruno", - "budget", - "katholiken", - "begleiten", - "attraktiv", - "krone", - "sterne", - "jahrzehnt", - "wiese", - "jegliche", - "block", - "grab", - "entnehmen", - "dicke", - "freigabe", - "autorität", - "streiks", - "soeben", - "dieselbe", - "dilemma", - "wohlstand", - "aussteller", - "standorte", - "fängt", - "fisch", - "hitze", - "epoche", - "rückstand", - "entdeckten", - "lägen", - "angeklagt", - "benötigten", - "gestalten", - "plötzlich", - "verknüpft", - "bundesamt", - "erlös", - "real", - "trio", - "seoul", - "verläuft", - "klagte", - "anhörung", - "rasen", - "ferne", - "vorrang", - "verfügbar", - "mandanten", - "cursor", - "jelzins", - "projekten", - "begrüßen", - "insofern", - "bedeutende", - "gewählten", - "com", - "annäherung", - "mindestens", - "la", - "erfindung", - "bauten", - "drohung", - "beklagte", - "geistigen", - "längerem", - "zigaretten", - "c.", - "d.", - "bedenken", - "spiegelt", - "verwandten", - "fliegt", - "merkt", - "schulz", - "gerichts", - "vernichtet", - "unruhen", - "leinwand", - "tödlich", - "dunkle", - "bestreitet", - "nebenbei", - "ausweg", - "irakischen", - "rot", - "einstige", - "panik", - "untersagt", - "inhaber", - "rache", - "differenz", - "duisburg", - "priorität", - "susanne", - "willi", - "legen", - "versammelt", - "ebenen", - "köpfen", - "original", - "online", - "ingenieure", - "schuf", - "kirch", - "gaststätte", - "inmitten", - "sicherte", - "fehle", - "kliniken", - "sarajevo", - "gesund", - "stürzen", - "jens", - "typischen", - "lokale", - "neuwahlen", - "möller", - "turm", - "tanzen", - "party", - "warfen", - "appell", - "erreichbar", - "albanien", - "erwin", - "meyer", - "spielzeit", - "beliebt", - "konzerte", - "süd", - "besonderes", - "vorliegt", - "bewerten", - "grosny", - "soldat", - "hochzeit", - "verstärkte", - "umsonst", - "belgischen", - "akteure", - "intendant", - "akzeptanz", - "überlegt", - "spürt", - "silber", - "metropole", - "terror", - "setze", - "standards", - "nächstes", - "entsorgung", - "antwortete", - "frühzeitig", - "versöhnung", - "befanden", - "fremde", - "lehnen", - "erfurt", - "lachen", - "strand", - "mißbraucht", - "gründer", - "ruhm", - "extra", - "parkett", - "zuweilen", - "wolken", - "wählt", - "datei", - "areal", - "stammdaten", - "hang", - "gespart", - "russischer", - "größerer", - "heroin", - "ahnung", - "mittelfeld", - "trauer", - "sonstigen", - "florida", - "töten", - "toleranz", - "beurteilt", - "defizite", - "gedächtnis", - "behinderte", - "antonio", - "teheran", - "daimler", - "grauen", - "vollzogen", - "angehoben", - "schwestern", - "kategorie", - "gestört", - "berührt", - "ortsbeirat", - "umsetzen", - "menü", - "gespannt", - "unmut", - "wohnen", - "afp", - "überfallen", - "radikalen", - "übliche", - "gestürzt", - "erneuerung", - "venedig", - "axel", - "verordnung", - "bar", - "kloster", - "vermißt", - "einem", - "staub", - "betreten", - "s-bahn", - "istanbul", - "illegale", - "schmerz", - "elend", - "erdbeben", - "gewöhnt", - "obersten", - "schlugen", - "bestens", - "basiert", - "summen", - "jeweilige", - "abgelöst", - "erhebt", - "potsdamer", - "erneuten", - "decken", - "verlautete", - "theaters", - "na", - "künstlerin", - "engagieren", - "scharfe", - "kalten", - "entzogen", - "bedeckt", - "benzin", - "störungen", - "seither", - "diktatur", - "kanal", - "hansestadt", - "günstige", - "getestet", - "attentat", - "beck", - "lübeck", - "sir", - "pech", - "verbieten", - "eier", - "zeitlich", - "libanon", - "verwaltet", - "vorsieht", - "holocaust", - "untergang", - "spannend", - "zuwenig", - "mächtigen", - "p.", - "verwandeln", - "zukommen", - "komponist", - "aktivität", - "einbringen", - "zwang", - "dauerhaft", - "einträge", - "sichtlich", - "schmuck", - "romane", - "atem", - "beträge", - "dasselbe", - "behauptete", - "angehört", - "bund", - "klingen", - "gene", - "zaire", - "ansätze", - "irgend", - "archiv", - "basf", - "resonanz", - "enorme", - "landwirte", - "handwerker", - "algerien", - "reiz", - "plattform", - "zagreb", - "beweise", - "erstellung", - "historisch", - "brd", - "burg", - "anfragen", - "kriegsende", - "stockholm", - "anweisung", - "kreises", - "hölle", - "betrachter", - "vermieter", - "beitritt", - "altes", - "anlauf", - "reichtum", - "reagierten", - "blüm", - "fit", - "markieren", - "ginge", - "verleihen", - "analysiert", - "heiligen", - "eingabe", - "enormen", - "einfluss", - "kairo", - "kämpfen", - "typische", - "zuerst", - "empört", - "befehl", - "gemüse", - "aachen", - "verweigern", - "veränderte", - "beendete", - "massaker", - "mordes", - "korrigiert", - "eingestuft", - "typen", - "anstelle", - "cdu/csu", - "illusion", - "grunde", - "landesbank", - "james", - "klärung", - "daheim", - "umzusetzen", - "endlich", - "fach", - "landsleute", - "realen", - "poesie", - "bahnen", - "berger", - "gremien", - "konzeption", - "zustände", - "aol", - "euphorie", - "libero", - "umgeben", - "sexuellen", - "gebäuden", - "bunte", - "duell", - "fahrgäste", - "südamerika", - "spektrum", - "half", - "charles", - "rot", - "einkauf", - "verlegen", - "verhängt", - "gedrückt", - "fuchs", - "ordentlich", - "marken", - "kg", - "gedeckt", - "hierbei", - "antwortet", - "einordnung", - "satelliten", - "sektor", - "paket", - "charlotte", - "günstiger", - "befragt", - "verwickelt", - "freitags", - "allerlei", - "geltende", - "iranischen", - "problemlos", - "vollem", - "massen", - "sicherer", - "widmen", - "liegenden", - "jährliche", - "erwischt", - "diversen", - "straßburg", - "drohenden", - "doppelte", - "genauen", - "räuber", - "zwingt", - "major", - "allesamt", - "hamburgs", - "montags", - "ernährung", - "auftreten", - "streifen", - "rechnungen", - "marianne", - "würzburg", - "fassade", - "kenntnisse", - "gekämpft", - "möge", - "adressen", - "beendigung", - "baby", - "abgesagt", - "umsatzes", - "beliebig", - "ferien", - "griechen", - "flaschen", - "panzer", - "traurig", - "verdrängt", - "verstoßen", - "ämter", - "klinsmann", - "labor", - "noten", - "legendären", - "nachweis", - "gewöhnlich", - "trainiert", - "basel", - "materie", - "behindert", - "anschläge", - "niedrige", - "abstieg", - "rexrodt", - "engagierte", - "kreuzberg", - "kreuzung", - "stützen", - "wellen", - "dritter", - "anhebung", - "ermittlung", - "volker", - "gebühr", - "treuhand", - "großstadt", - "aufsehen", - "experte", - "liberalen", - "kassiert", - "vehement", - "laufbahn", - "reichstag", - "unfälle", - "darum", - "versuche", - "gleicht", - "ritter", - "physik", - "einmalige", - "präzise", - "biete", - "welten", - "sed", - "leib", - "thyssen", - "darunter", - "schwarze", - "beantragen", - "tatort", - "objekten", - "westeuropa", - "gelben", - "visionen", - "berühmt", - "resolution", - "jemanden", - "katharina", - "aufstand", - "teilten", - "mächtig", - "beschwerde", - "kette", - "clintons", - "unterkunft", - "gymnasium", - "profi", - "bibel", - "muß", - "meinungen", - "sobald", - "erfolglos", - "roth", - "lippen", - "möbel", - "frühstück", - "basler", - "dritter", - "verbirgt", - "diepgen", - "bildeten", - "schicht", - "freie", - "besetzen", - "leere", - "klassiker", - "weile", - "schlafen", - "paradies", - "startete", - "elke", - "dänischen", - "schlange", - "virus", - "zurück", - "huber", - "spiele", - "geschenk", - "ausgemacht", - "lizenz", - "mario", - "betracht", - "george", - "ii.", - "mangels", - "gitarre", - "u-bahn", - "arbeiteten", - "bitter", - "brücken", - "gesang", - "rassismus", - "löwen", - "oberste", - "errechnet", - "elbe", - "taktik", - "fische", - "seitens", - "bewährt", - "umstand", - "wiesen", - "geräten", - "erhaltung", - "äußeren", - "heiligen", - "siegte", - "pflegt", - "geforderte", - "ps", - "logistik", - "nie", - "belegte", - "insofern", - "sonntags", - "leid", - "format", - "bogen", - "regeln", - "handy", - "gewaltige", - "kabel", - "dazwischen", - "identisch", - "nah", - "onkel", - "abwarten", - "mozart", - "proben", - "sparkassen", - "abgenommen", - "rot-grün", - "entlasten", - "ioc", - "breiter", - "schwaben", - "echt", - "treu", - "techniken", - "stephan", - "führender", - "lupe", - "braun", - "fußgänger", - "abwicklung", - "testen", - "anzunehmen", - "pkw", - "saarland", - "spontan", - "raketen", - "bösen", - "zulegen", - "geeignete", - "verletzte", - "bedauert", - "liebhaber", - "henkel", - "platten", - "adolf", - "laden", - "worauf", - "billionen", - "beinen", - "genügen", - "untergrund", - "ansichten", - "jeden", - "verbrauch", - "veranlaßt", - "wodurch", - "überhaupt", - "inneren", - "zumal", - "nebel", - "favoriten", - "vermutlich", - "lustig", - "ignoriert", - "seminar", - "buchen", - "begleitung", - "bringe", - "wovon", - "begründen", - "neigung", - "jurist", - "verlängern", - "reiter", - "erspart", - "tänzer", - "friedlich", - "boom", - "lebendig", - "harmonie", - "überholt", - "plädierte", - "spalte", - "siedler", - "kohls", - "scharfen", - "world", - "temperatur", - "paare", - "drehte", - "fuhren", - "sauber", - "gesteuert", - "anbietet", - "maske", - "ausmachen", - "ähnliches", - "container", - "werkzeuge", - "schwächer", - "begeben", - "schultern", - "ding", - "diverse", - "luftwaffe", - "offiziere", - "westens", - "sendungen", - "vorgeführt", - "ordnen", - "belege", - "angebliche", - "zivilen", - "schoß", - "erben", - "geistige", - "matthäus", - "klein", - "bekenntnis", - "minder", - "vorkommen", - "insassen", - "schild", - "lehrerin", - "verübt", - "angeboten", - "foyer", - "erfassung", - "kundschaft", - "focus", - "zulassen", - "zählern", - "ferrari", - "gültig", - "kundgebung", - "frühestens", - "werkes", - "horizont", - "beziffert", - "rubel", - "gekündigt", - "bedeutete", - "semester", - "kripo", - "verpaßt", - "bescheid", - "erfreut", - "abfall", - "flughäfen", - "königs", - "multimedia", - "korrektur", - "bekräftigt", - "spekuliert", - "kredit", - "buche", - "breite", - "aufbringen", - "springt", - "möglicher", - "empfunden", - "staatlich", - "flasche", - "boris", - "uns", - "amtlichen", - "hessischen", - "torhüter", - "on", - "mitmachen", - "zukünftig", - "wilden", - "chile", - "schüsse", - "irgendwann", - "netzwerk", - "eingelegt", - "wenngleich", - "passagen", - "ehrlich", - "v.", - "erlebnis", - "unerwartet", - "zitierte", - "schottland", - "gutes", - "bäumen", - "erstens", - "vormittag", - "steuerung", - "faßt", - "schuster", - "mauern", - "kreml", - "slowakei", - "vermutung", - "wohnzimmer", - "westlich", - "radikale", - "windows", - "solide", - "comeback", - "dritte", - "kroatische", - "karadzic", - "edith", - "wertete", - "endspiel", - "bezahlung", - "vulkan", - "freute", - "gehälter", - "deuten", - "stetig", - "joseph", - "neueste", - "hallen", - "hierzu", - "kriege", - "koffer", - "herrscher", - "laune", - "brunnen", - "gültigen", - "verschafft", - "wehrt", - "willkommen", - "ansehen", - "geglaubt", - "berufliche", - "audi", - "erschöpft", - "billigen", - "stolpe", - "abap", - "stehende", - "hätte", - "bonn", - "besatzung", - "geführten", - "betonen", - "nahen", - "visier", - "aufrufen", - "applaus", - "esslinger", - "ertragen", - "bielefeld", - "blues", - "amtes", - "nationalen", - "seltener", - "gewiß", - "viermal", - "entführung", - "beschert", - "gesteht", - "erneute", - "heimlich", - "nannten", - "klarer", - "stirn", - "wälder", - "ruth", - "männliche", - "lockt", - "schlaf", - "bargeld", - "motivation", - "ideologie", - "peinlich", - "urteile", - "anzusehen", - "merken", - "göttingen", - "standpunkt", - "nervös", - "härte", - "verstoß", - "entfällt", - "verlangten", - "tägliche", - "geflogen", - "einsamkeit", - "zeitplan", - "derartigen", - "schieben", - "äußert", - "siege", - "rau", - "schauspiel", - "festlegung", - "vertretung", - "simon", - "seehofer", - "bildete", - "kriegt", - "weichen", - "werks", - "augsburger", - "verkäufer", - "betreffen", - "seiten", - "margarete", - "lebensjahr", - "debatten", - "ergänzung", - "eisen", - "verdankt", - "geldes", - "wild", - "allen", - "detlef", - "publikums", - "beschrieb", - "sprang", - "künftig", - "vertreiben", - "schmalen", - "bloße", - "abgabe", - "wunderbar", - "lernte", - "umland", - "lire", - "kaufte", - "ideale", - "operativen", - "aufhalten", - "pistole", - "zugelegt", - "schein", - "sympathie", - "höherer", - "stufen", - "werdenden", - "flut", - "drohe", - "künstlers", - "verkauften", - "fernen", - "kanzleramt", - "anblick", - "ringen", - "aktionären", - "will", - "bedacht", - "tauchen", - "erlöse", - "galten", - "heben", - "residenz", - "teilung", - "stammende", - "doris", - "besaß", - "moderator", - "lutz", - "auskünfte", - "nordirland", - "bewerbung", - "elfriede", - "spieltag", - "stillen", - "lehrern", - "sparpaket", - "auslöser", - "müssten", - "veba", - "programmen", - "neuordnung", - "gouverneur", - "wertvolle", - "zeug", - "überall", - "münchens", - "ausüben", - "bande", - "durchweg", - "ausführen", - "trainieren", - "goldenen", - "exporte", - "einblick", - "polens", - "vorzüge", - "stützt", - "heike", - "kalte", - "echo", - "witwe", - "ehrgeiz", - "ehren", - "kaufpreis", - "feinde", - "betrug", - "skulpturen", - "telecom", - "erobert", - "eingebaut", - "nationaler", - "angeregt", - "kanther", - "auftritte", - "energien", - "eintreten", - "regelrecht", - "dankbar", - "sichern", - "sängerin", - "verlagert", - "ba", - "bremsen", - "unschuld", - "aktiviert", - "palette", - "dieselben", - "finanzamt", - "nachteile", - "hitlers", - "gerda", - "nigeria", - "bewirken", - "bezüglich", - "äußerung", - "hürden", - "bleibt", - "ostern", - "regensburg", - "richtig", - "glaube", - "harry", - "verbreiten", - "manch", - "ursprung", - "oliver", - "analysen", - "erarbeiten", - "entfernten", - "rechne", - "sogleich", - "erzähler", - "flog", - "intern", - "zukünftige", - "volkswagen", - "emotionen", - "virtuellen", - "intensive", - "blaue", - "prinzessin", - "sydney", - "geringere", - "schade", - "elektronik", - "gewisser", - "auswirken", - "samstags", - "filiale", - "hierarchie", - "abgezogen", - "etabliert", - "shell", - "tätigen", - "kids", - "radfahrer", - "optimal", - "kuchen", - "sexuelle", - "mars", - "gefangene", - "verbergen", - "kaufmann", - "strenge", - "friedliche", - "metall", - "kranken", - "zähne", - "niemandem", - "schwarzer", - "verlorenen", - "ausgelegt", - "maastricht", - "verlage", - "wandern", - "gebilligt", - "verwirrung", - "liberale", - "leere", - "bemühen", - "einbußen", - "strafen", - "östlich", - "verdachts", - "sätzen", - "eingriffe", - "wänden", - "unterm", - "übt", - "verliebt", - "widmet", - "lobt", - "ira", - "neun", - "millimeter", - "vorgehen", - "porsche", - "spruch", - "langweilig", - "schiebt", - "tödlichen", - "bomben", - "beinhaltet", - "kurzerhand", - "zweiter", - "hörer", - "gestand", - "einwände", - "jedermann", - "enkel", - "entfernen", - "unterhält", - "paragraph", - "unsicher", - "thesen", - "american", - "aufbruch", - "buchung", - "beachtung", - "ausgeht", - "gesetzen", - "lebe", - "strategien", - "systemen", - "handle", - "hauch", - "fronten", - "podium", - "löcher", - "feinen", - "wagt", - "trage", - "bewegte", - "mehmet", - "jesus", - "national", - "zweitens", - "vorab", - "äußerten", - "la", - "gerhardt", - "ilse", - "amtierende", - "protesten", - "lernen", - "klang", - "bemerkbar", - "zeugnis", - "william", - "jena", - "ungewiß", - "rollen", - "gewertet", - "sonstige", - "verrückt", - "vorwürfen", - "souverän", - "blutigen", - "güter", - "lokal", - "ausreichen", - "abgerissen", - "marsch", - "frühling", - "aufhören", - "verhaftung", - "hahn", - "optionen", - "erfinder", - "bewerben", - "momente", - "kleinste", - "entführt", - "kräftige", - "v.", - "einnehmen", - "anstalt", - "körpers", - "frühe", - "zimmermann", - "mathematik", - "texas", - "dag", - "befördert", - "externen", - "schwere", - "malaysia", - "einseitig", - "vereint", - "company", - "geeigneten", - "geübt", - "begraben", - "geteilt", - "prüfungen", - "konsum", - "arena", - "nachdenken", - "kg", - "insekten", - "entwürfe", - "empfinden", - "haufen", - "zunehmen", - "umfassen", - "offenheit", - "albaner", - "szenario", - "kopieren", - "glatt", - "verkraften", - "techniker", - "saniert", - "todes", - "dominiert", - "sichert", - "netze", - "heft", - "aufsteiger", - "tonne", - "tel", - "kehren", - "verfaßt", - "föderation", - "formular", - "entworfen", - "referendum", - "örtliche", - "warm", - "niedergang", - "meldeten", - "eintracht", - "verärgert", - "kommunale", - "spektakel", - "einführen", - "donau", - "luxus", - "geringeren", - "diagnose", - "streß", - "wahlgang", - "weiterhin", - "verfall", - "morgigen", - "toten", - "großzügig", - "bestellen", - "kurdischen", - "kollegin", - "wozu", - "besseres", - "prozesses", - "plakate", - "tendenzen", - "hinauf", - "zerstörten", - "clubs", - "stamm", - "fein", - "entgehen", - "heftiger", - "nebenan", - "gesunden", - "bosniens", - "schützt", - "standorten", - "gewaltig", - "angela", - "sparkasse", - "duo", - "bedürfnis", - "friedens", - "stücken", - "löschen", - "herrschen", - "beamter", - "nordkorea", - "wörter", - "fliehen", - "nachdruck", - "erna", - "einzeln", - "ausschluß", - "porträt", - "doppelten", - "jedesmal", - "bvg", - "erledigen", - "trocken", - "rückgabe", - "flüge", - "etappe", - "wählte", - "vorurteile", - "reist", - "eher", - "beton", - "abfahrt", - "anhängern", - "eindeutige", - "gießen", - "anmelden", - "tee", - "spiels", - "hinterlegt", - "ländlichen", - "entkommen", - "bürokratie", - "siebten", - "stünde", - "wiederwahl", - "verstehe", - "sonstige", - "las", - "gewartet", - "lübecker", - "verfehlt", - "tschechen", - "versuchen", - "hose", - "schwerin", - "chemnitz", - "hiesigen", - "segen", - "ästhetik", - "geschenkt", - "somalia", - "übergabe", - "somit", - "entspreche", - "schier", - "maus", - "erkrankung", - "abbauen", - "redner", - "sammler", - "kommando", - "erregt", - "bischöfe", - "feierten", - "mr.", - "unsinn", - "knappe", - "album", - "media", - "durchgang", - "radikal", - "kneipe", - "kopenhagen", - "zweite", - "dichters", - "anzulegen", - "bezweifelt", - "funk", - "härter", - "verbrannt", - "vertrages", - "geldstrafe", - "überwachen", - "gelegene", - "künstlich", - "gefangen", - "gewordene", - "bekannten", - "scheidung", - "isoliert", - "rasche", - "bestritt", - "gewollt", - "eingegeben", - "qm", - "zweitens", - "salzburg", - "gerissen", - "erobern", - "verlusten", - "favorit", - "betroffene", - "empfahl", - "sagen", - "flughafens", - "sechzig", - "trieb", - "neuseeland", - "kolumbien", - "aufteilung", - "schritten", - "schönste", - "handlungen", - "hammer", - "denselben", - "doktor", - "ungeachtet", - "erhebung", - "vorrangig", - "martina", - "profit", - "belange", - "net", - "sap-system", - "umgebracht", - "guten", - "sohnes", - "entweder", - "kranke", - "zwingend", - "wofür", - "benötigte", - "sammelt", - "rtr", - "gift", - "vermittler", - "langsamer", - "buchungen", - "bindung", - "richtungen", - "verdienst", - "pünktlich", - "kennzahlen", - "kader", - "verfallen", - "verbraucht", - "gelandet", - "bse", - "fußballer", - "handels", - "klientel", - "aufgeteilt", - "belohnt", - "stz", - "gefährdung", - "hilflos", - "adam", - "spaniens", - "null", - "aktivieren", - "abzubauen", - "sports", - "anbau", - "wecken", - "westlicher", - "beachtet", - "arbeite", - "kugel", - "töpfer", - "anregungen", - "wdr", - "ewigen", - "gerieten", - "kardinal", - "terrain", - "bemerkte", - "schwebt", - "überschuß", - "verbotenen", - "krisen", - "nordosten", - "reifen", - "rabin", - "bestände", - "einspruch", - "fühlten", - "sparen", - "gärten", - "vernehmen", - "aufweisen", - "wahnsinn", - "autobahnen", - "birgt", - "schauplatz", - "folter", - "bauen", - "match", - "siedlungen", - "befunden", - "etablieren", - "services", - "indianer", - "ausrüstung", - "aok", - "weißen", - "auskommen", - "blockieren", - "verletzte", - "tragen", - "kasten", - "vorliebe", - "entnommen", - "georgios", - "halbinsel", - "verschwand", - "hauptsache", - "britischer", - "gus", - "ergaben", - "inhaltlich", - "streichung", - "ökologie", - "irmgard", - "ergriffen", - "erteilen", - "zielgruppe", - "zeichnete", - "reißt", - "holger", - "gestimmt", - "blüten", - "pathos", - "gewechselt", - "übte", - "island", - "jahrgang", - "intensiver", - "überwacht", - "pflichten", - "verschont", - "operiert", - "künstliche", - "drohende", - "sterben", - "reserven", - "strahlung", - "bekennt", - "klappt", - "wortes", - "versagen", - "ecken", - "rezept", - "gestattet", - "fahnen", - "reichten", - "fremden", - "nutzten", - "warten", - "johnson", - "grün", - "zügig", - "ähnlicher", - "erstreckt", - "johanna", - "absolviert", - "misere", - "ingenieur", - "montage", - "scheitert", - "gesten", - "realismus", - "trends", - "europaweit", - "dumm", - "briefen", - "inge", - "psychisch", - "attacken", - "energisch", - "treppe", - "sperre", - "wegfall", - "sehen", - "händlern", - "gerückt", - "zwölf", - "einigkeit", - "dublin", - "achtung", - "wahrnehmen", - "riefen", - "provinzen", - "freispruch", - "ergreifen", - "gezielte", - "spart", - "trauen", - "vorbehalte", - "jubel", - "mittag", - "absprache", - "vermehrt", - "rückte", - "ihres", - "darsteller", - "ablehnen", - "konzipiert", - "alliierten", - "laien", - "geister", - "gewählte", - "ulrike", - "bemerkung", - "abseits", - "mahnte", - "bezüge", - "gesunde", - "geht", - "anstoß", - "essener", - "server", - "abgaben", - "wundert", - "just", - "gezeichnet", - "probe", - "drehbuch", - "echter", - "medaille", - "sekte", - "sonderlich", - "kannst", - "musical", - "binden", - "prosa", - "schlechtes", - "aufsicht", - "zielt", - "vertrat", - "lieber", - "heiraten", - "vorschrift", - "lehrt", - "verstand", - "hilfreich", - "ahnen", - "hannelore", - "gewebe", - "garantie", - "offizier", - "verbietet", - "schönes", - "import", - "agieren", - "kleider", - "eberhard", - "kulisse", - "geständnis", - "per", - "siegen", - "gentechnik", - "einsätze", - "verleiht", - "andern", - "herunter", - "verbuchen", - "bush", - "gewandt", - "schöne", - "bedrohten", - "verletzten", - "offenbart", - "begleiter", - "propaganda", - "erschwert", - "rüttgers", - "feiern", - "tarife", - "komisch", - "fähig", - "bands", - "jeans", - "helsinki", - "zuversicht", - "ärgert", - "maßstäbe", - "stau", - "geborgen", - "beruhigt", - "nasdaq", - "gebot", - "äußere", - "verhält", - "rehhagel", - "d.", - "song", - "kategorien", - "viktor", - "überzogen", - "reste", - "winzigen", - "spreche", - "parkplätze", - "atomwaffen", - "wimbledon", - "messungen", - "jedoch", - "einklang", - "verborgen", - "bände", - "kuwait", - "pop", - "wettkampf", - "marie", - "absurd", - "zentren", - "meist", - "dutzende", - "angestrebt", - "oslo", - "wirt", - "ausflug", - "verdienste", - "englischer", - "ernte", - "private", - "warmen", - "ude", - "olg", - "wollen", - "weltmarkt", - "positives", - "gen", - "längst", - "leid", - "woher", - "gehörende", - "trennt", - "sternen", - "geistig", - "tricks", - "lehmann", - "obst", - "konsortium", - "fehlen", - "reale", - "höchst", - "mitarbeit", - "alleingang", - "viren", - "südosten", - "operative", - "drohungen", - "gorleben", - "großvater", - "antike", - "erbracht", - "rivalen", - "zugegeben", - "besten", - "hemd", - "kommt", - "spree", - "geräumt", - "relevanten", - "kontext", - "springer", - "brutal", - "reißen", - "fasziniert", - "besserung", - "bezirke", - "nahverkehr", - "einziehen", - "zielen", - "notenbank", - "erholt", - "friedberg", - "oldenburg", - "eduard", - "behält", - "textilien", - "postbank", - "genfer", - "treiben", - "bewohnern", - "willen", - "viag", - "besondere", - "hosen", - "landet", - "michel", - "novelle", - "kläger", - "kapitals", - "stabile", - "entfielen", - "frust", - "stießen", - "beiseite", - "weh", - "hill", - "effekte", - "sofortige", - "langen", - "geführte", - "reserviert", - "dritten", - "qualitäten", - "auslegung", - "lkw", - "ökonomie", - "rose", - "wilde", - "verdoppeln", - "stürzt", - "einbrecher", - "kostenlose", - "normen", - "begrenzen", - "zurecht", - "attraktive", - "know-how", - "dick", - "schilling", - "marokko", - "kreistag", - "verletzten", - "belgische", - "lehnten", - "vergangen", - "nummern", - "irischen", - "zählten", - "eingespart", - "aufzugeben", - "prager", - "bronze", - "hartmann", - "anlegern", - "sprich", - "landsmann", - "anpassen", - "t.", - "iv", - "abermals", - "regieren", - "gegnern", - "stämme", - "räder", - "stillstand", - "nirgendwo", - "kartoffeln", - "franzose", - "erlaubnis", - "strauß", - "fing", - "transrapid", - "fabriken", - "anc", - "airbus", - "tagebuch", - "islamische", - "reparatur", - "befragung", - "geheimen", - "rollt", - "jutta", - "ulmer", - "fotografen", - "seen", - "angelegten", - "ezb", - "eingreifen", - "traut", - "kleinsten", - "zusagen", - "milieu", - "mithin", - "hügel", - "anhaltende", - "kürzen", - "zyklus", - "wolfsburg", - "flüsse", - "betreuen", - "sitzungen", - "abgang", - "bequem", - "schwärmt", - "appelliert", - "anneliese", - "angetan", - "welch", - "beteuert", - "ankommt", - "demselben", - "ausgezahlt", - "harter", - "intel", - "politische", - "grafik", - "anzug", - "iranische", - "metro", - "verkörpert", - "zehnten", - "di", - "meinten", - "treue", - "erörtert", - "flexibel", - "gras", - "tenor", - "versionen", - "nordsee", - "absichten", - "abzugeben", - "schaden", - "wehrmacht", - "utopie", - "marion", - "steigerte", - "henry", - "dementiert", - "irrtum", - "blicke", - "gelbe", - "irene", - "senden", - "dunkelheit", - "vorträge", - "slowenien", - "referent", - "einigten", - "bunt", - "verbänden", - "entsprach", - "verbrachte", - "fahne", - "folglich", - "erscheinen", - "oberhalb", - "träumt", - "hohe", - "drückte", - "university", - "verbucht", - "bewag", - "nordwesten", - "kaputt", - "sv", - "verdiente", - "pilot", - "großmutter", - "erfreulich", - "reiste", - "soweit", - "lohnarten", - "kokain", - "vernehmung", - "tempel", - "fernsehens", - "lebed", - "dietrich", - "repertoire", - "frischen", - "theologie", - "zucker", - "schwersten", - "lächelt", - "götter", - "abbildung", - "taten", - "schafe", - "bar", - "vergrößert", - "kursen", - "zimmern", - "angreifer", - "organe", - "peru", - "mussten", - "lächerlich", - "gesungen", - "aufgeklärt", - "getränke", - "externe", - "fund", - "ddr-zeiten", - "bezog", - "feine", - "ingeborg", - "reis", - "gesamtjahr", - "hubert", - "beschließt", - "beate", - "supermarkt", - "bliebe", - "höchster", - "geschlecht", - "dom", - "betreuer", - "zueinander", - "boykott", - "fachleuten", - "dietmar", - "computern", - "hartmut", - "ostsee", - "bekämpft", - "nähere", - "schiene", - "irakische", - "verlegung", - "spalten", - "rio", - "getreide", - "konrad", - "selektion", - "litauen", - "intensität", - "elite", - "anruf", - "stärken", - "kopie", - "einmalig", - "wundern", - "plädoyer", - "messen", - "verließen", - "los", - "handvoll", - "sitzen", - "manchem", - "nehmen", - "verhelfen", - "angriffen", - "peres", - "sparten", - "indische", - "zivile", - "symbole", - "gehörenden", - "kommentare", - "wünschen", - "wählern", - "auftritt", - "dringt", - "befragten", - "runter", - "dirigent", - "vernünftig", - "schmitt", - "festivals", - "angenehm", - "virtuelle", - "mustafa", - "nützt", - "zügen", - "schienen", - "großhandel", - "jüdischer", - "sony", - "geplant", - "nagel", - "gulden", - "ambiente", - "schreiber", - "seltsam", - "kleinstadt", - "gelitten", - "mitteilt", - "philips", - "hafenstadt", - "derlei", - "dunkel", - "typs", - "halt", - "abzusehen", - "story", - "hierbei", - "schmid", - "kurve", - "heer", - "abriß", - "besonderes", - "kritikern", - "jeglicher", - "bundesbahn", - "abgewiesen", - "einerseits", - "obendrein", - "wohnraum", - "mostar", - "haaren", - "wartete", - "merkel", - "übung", - "tagsüber", - "romantik", - "vierzehn", - "eroberung", - "winkel", - "wahlsieg", - "global", - "quartett", - "erneuert", - "grundsätze", - "sog", - "effizienz", - "philosoph", - "treff", - "glaubten", - "dörfern", - "bühnen", - "ne", - "herzlich", - "nachdenken", - "ergänzte", - "sponsor", - "entschluß", - "meiste", - "wunden", - "geflohen", - "geehrt", - "höhen", - "gelernte", - "recherchen", - "helene", - "sportlich", - "angehen", - "unterlag", - "rinder", - "dreck", - "ei", - "allgemeine", - "hindernis", - "technische", - "umgebaut", - "scheibe", - "nominiert", - "kenia", - "drastische", - "angeführt", - "überdies", - "fiskus", - "plastik", - "blockade", - "mama", - "verbund", - "tiger", - "ruhen", - "mithalten", - "namentlich", - "verwandt", - "anne", - "absehbarer", - "schluss", - "konstanz", - "gen", - "veto", - "knapper", - "scheiben", - "frische", - "verkünden", - "wirkten", - "anbietern", - "mächtige", - "jakob", - "haushalten", - "olga", - "vorhang", - "weltweit", - "spaltung", - "langeweile", - "pleite", - "symptome", - "bekannter", - "stalin", - "sachlich", - "mittag", - "tante", - "drucker", - "route", - "antiken", - "starkes", - "kompletten", - "häufigsten", - "börsianer", - "unnötig", - "vorabend", - "hinunter", - "konstant", - "weißer", - "ethik", - "abfälle", - "mailänder", - "ivan", - "mohamed", - "wieviel", - "fröhlich", - "zoo", - "größeres", - "sauerstoff", - "eichel", - "stückliste", - "deutschem", - "sinnvolle", - "kämpfte", - "salz", - "martha", - "rauch", - "videos", - "drucken", - "gestützt", - "plutonium", - "älterer", - "ingolstadt", - "heimspiel", - "adler", - "riß", - "phasen", - "boten", - "verbracht", - "nikolaus", - "mitleid", - "parolen", - "bekomme", - "besser", - "zusätze", - "arg", - "routine", - "tätern", - "afrikas", - "morde", - "erfolgen", - "red", - "hebron", - "us", - "zunge", - "wiegt", - "felix", - "kunststoff", - "reichweite", - "deutete", - "smith", - "satzung", - "ladung", - "stichtag", - "ltd", - "zutiefst", - "eingeplant", - "albrecht", - "konkurrent", - "motoren", - "normalität", - "rückschlag", - "griffen", - "erweiterte", - "keines", - "erteilte", - "kalender", - "kühl", - "vage", - "bewies", - "beachten", - "nrw", - "gefertigt", - "dasein", - "einfallen", - "entfalten", - "fangen", - "erwarb", - "auszubauen", - "juristisch", - "normaler", - "brille", - "formal", - "rückgängig", - "buben", - "verdammt", - "stärkeren", - "empfindet", - "öffnete", - "lüge", - "makler", - "flüchtete", - "ernsthafte", - "drohten", - "nächte", - "vormittag", - "anschein", - "innovation", - "rufnummer", - "reisenden", - "verstand", - "elementen", - "dienten", - "änderte", - "problems", - "kenner", - "taxifahrer", - "ad", - "dienstags", - "tübinger", - "haustür", - "runden", - "verzögert", - "dateien", - "dimitrios", - "gereicht", - "sanft", - "gehen", - "research", - "oskar", - "tribüne", - "gültigkeit", - "verstecken", - "kunsthalle", - "vorfahren", - "akzente", - "begrenzung", - "reisende", - "jordanien", - "alarm", - "eignet", - "wirkungen", - "christel", - "wobei", - "angewandt", - "schätzung", - "sexualität", - "gewürdigt", - "arme", - "diktator", - "fenstern", - "arnold", - "schießt", - "verkürzt", - "oberbayern", - "jeher", - "gefühlen", - "vwd", - "seltenen", - "et", - "serviert", - "dahinter", - "vatikan", - "neubauten", - "logische", - "versäumt", - "umzugehen", - "ambitionen", - "geprägten", - "eingezogen", - "analyst", - "deine", - "schloss", - "fc", - "teils", - "euch", - "nationale", - "innere", - "kabarett", - "fundament", - "ernennung", - "vertagt", - "williams", - "krupp", - "wahrlich", - "verwundert", - "zelt", - "motiven", - "laufe", - "reichen", - "lücken", - "beihilfe", - "bebauung", - "mehrheiten", - "abgesehen", - "sound", - "ethnischen", - "fulda", - "einsteigen", - "raten", - "gewißheit", - "regisseure", - "weit", - "gläubiger", - "nochmal", - "christiane", - "wehr", - "gemalt", - "diesem", - "note", - "palast", - "verfolgte", - "graue", - "schröders", - "sauer", - "begnügen", - "tötung", - "roten", - "anderem", - "verbundene", - "strahlt", - "abgestellt", - "nachbar", - "libyen", - "talente", - "gedichten", - "korea", - "haftstrafe", - "networks", - "bekennen", - "erstattet", - "horn", - "werkzeug", - "trick", - "rückblick", - "kunstwerke", - "regulären", - "papa", - "indiz", - "kiew", - "gewagt", - "halbwegs", - "besiegt", - "udo", - "beruhigen", - "toll", - "dotierten", - "spd-chef", - "miami", - "plakat", - "zitat", - "ungeklärt", - "arbeitern", - "einflüsse", - "bnd", - "satire", - "akte", - "durchsucht", - "gab's", - "brav", - "segment", - "geraumer", - "mitteilen", - "klang", - "gepäck", - "effektiv", - "überwiesen", - "römische", - "warnungen", - "flagge", - "ballett", - "ausgeübt", - "landung", - "weisheit", - "schlichten", - "prophezeit", - "mantel", - "eh", - "überein", - "oberursel", - "liebevoll", - "baden", - "taschen", - "adac", - "flecken", - "verankert", - "jochen", - "gunst", - "populär", - "prominente", - "beruft", - "kanäle", - "allee", - "ganzer", - "klug", - "hierher", - "eigen", - "boston", - "abtreibung", - "arabische", - "siebzig", - "anschlägen", - "des", - "wto", - "kassieren", - "kriterium", - "aufträgen", - "tausenden", - "redakteur", - "klischees", - "dein", - "sucht", - "erhob", - "verschickt", - "umfasst", - "leder", - "eins", - "bezug", - "brecht", - "abstimmen", - "thüringer", - "lieferten", - "dänische", - "entspannt", - "rektor", - "beiträgen", - "gestritten", - "füllt", - "ressorts", - "zutage", - "kürzer", - "dünn", - "baumann", - "umso", - "hürde", - "planer", - "belebung", - "infos", - "anja", - "desaster", - "erstens", - "böse", - "regt", - "lenken", - "steigender", - "kündigen", - "besetzte", - "gegriffen", - "billige", - "beliebten", - "wünsche", - "sang", - "zensur", - "ost-berlin", - "preußen", - "marine", - "erdgas", - "erzwingen", - "anwesend", - "schläge", - "unheimlich", - "pflanze", - "kühe", - "litt", - "derjenigen", - "nett", - "achtzig", - "größen", - "heilbronn", - "globus", - "hindurch", - "bodensee", - "atelier", - "geliebten", - "kopiert", - "kanzlers", - "einmaligen", - "gehör", - "gemein", - "leitungen", - "erstmal", - "eingeweiht", - "inwieweit", - "konvention", - "auftauchen", - "florenz", - "avantgarde", - "ablösung", - "versichern", - "teilchen", - "anbindung", - "lee", - "diana", - "ereignete", - "mobilität", - "hellen", - "jean", - "monitor", - "verspätung", - "christina", - "25jährige", - "holländer", - "abzuwarten", - "neugier", - "mangelt", - "humanitäre", - "kindergeld", - "deal", - "erprobt", - "aggressiv", - "angestellt", - "de", - "böden", - "sg", - "blind", - "innovative", - "astronomen", - "tiergarten", - "eisenbahn", - "sensation", - "bekannte", - "zehntel", - "brauchten", - "kombiniert", - "pädagogen", - "srebrenica", - "goethes", - "rutschte", - "begrenzten", - "bremens", - "wertet", - "kronen", - "nähert", - "moralisch", - "jenseits", - "vorweisen", - "tankstelle", - "schwelle", - "liegende", - "begrenzte", - "optimale", - "parat", - "hauptrolle", - "sich", - "rover", - "anstalten", - "raumfahrt", - "steinen", - "entgegen", - "lud", - "alptraum", - "dayton", - "sozialamt", - "jahreszeit", - "verwertung", - "angerufen", - "kündigten", - "würden", - "munition", - "unterliegt", - "sauna", - "sporthalle", - "aufschrift", - "amtliche", - "pence", - "magen", - "jude", - "steckte", - "belgrader", - "gnade", - "weithin", - "heimische", - "letzte", - "dtb", - "reisebüros", - "niedrigere", - "mazedonien", - "zentral", - "schimpft", - "faschismus", - "verrat", - "islamisten", - "rückläufig", - "30jährige", - "blättern", - "mandate", - "verwalten", - "zeichnung", - "verstöße", - "ratten", - "königreich", - "pension", - "deckung", - "erdgeschoß", - "mythen", - "englisch", - "lagern", - "jünger", - "geruch", - "aufstellen", - "wörtlich", - "zigarette", - "entsetzen", - "angewendet", - "le", - "coup", - "störung", - "uniform", - "steigert", - "seminare", - "fehlern", - "orden", - "thron", - "agenten", - "osze", - "kontrast", - "senders", - "teppich", - "titeln", - "eur", - "erreger", - "satt", - "ute", - "julia", - "frage", - "zahlte", - "prinzen", - "stabilen", - "reports", - "schade", - "belaufen", - "beantragte", - "carl", - "einnahme", - "aneinander", - "beläuft", - "fahrten", - "südafrikas", - "uhren", - "rosa", - "brauerei", - "erstaunt", - "parallel", - "jordan", - "antworten", - "araber", - "bayreuth", - "beirat", - "ewige", - "münzen", - "passende", - "packen", - "king", - "vorgängen", - "drüben", - "apple", - "beethoven", - "ampel", - "kabul", - "körperlich", - "warteten", - "parks", - "obersten", - "zirkus", - "wiesen", - "bezifferte", - "renditen", - "diplomat", - "weite", - "bewegten", - "beschwert", - "kunstwerk", - "banker", - "baustellen", - "bdi", - "vergebens", - "minen", - "dax", - "extremen", - "erlebnisse", - "belohnung", - "wichtigste", - "komplexen", - "zerstörte", - "trendwende", - "plaziert", - "gültige", - "schubert", - "hoch", - "vergessen", - "totale", - "buchen", - "gewinnen", - "moskaus", - "innern", - "nützlich", - "bedauerte", - "nix", - "käse", - "erzbischof", - "ausfall", - "konflikts", - "goldene", - "marx", - "erhoffen", - "längerer", - "geliebte", - "völlig", - "landesweit", - "dominieren", - "bittere", - "versetzen", - "abgehalten", - "chemiker", - "einsam", - "blau", - "anregung", - "kameraden", - "wilfried", - "schalke", - "zusatz", - "unweit", - "illusionen", - "bemühte", - "klares", - "einsparen", - "anführer", - "fliegen", - "bedrohte", - "vorläufige", - "vorbilder", - "betonten", - "verfügte", - "bloßen", - "berät", - "gemerkt", - "verwehrt", - "hütte", - "nebst", - "theorien", - "angeblich", - "kaufhaus", - "atlantik", - "tief", - "hertha", - "gängigen", - "leuchtet", - "berufe", - "bezirken" + "der", + "die", + "und", + "in", + "den", + "von", + "zu", + "das", + "mit", + "sich", + "des", + "auf", + "für", + "ist", + "im", + "dem", + "nicht", + "ein", + "die", + "eine", + "als", + "auch", + "es", + "an", + "werden", + "aus", + "er", + "hat", + "daß", + "sie", + "nach", + "wird", + "bei", + "einer", + "der", + "um", + "am", + "sind", + "noch", + "wie", + "einem", + "über", + "einen", + "das", + "so", + "sie", + "zum", + "war", + "haben", + "nur", + "oder", + "aber", + "vor", + "zur", + "bis", + "mehr", + "durch", + "man", + "sein", + "wurde", + "sei", + "in", + "prozent", + "hatte", + "kann", + "gegen", + "vom", + "können", + "schon", + "wenn", + "habe", + "seine", + "mark", + "ihre", + "dann", + "unter", + "wir", + "soll", + "ich", + "eines", + "es", + "jahr", + "zwei", + "jahren", + "diese", + "dieser", + "wieder", + "keine", + "uhr", + "seiner", + "worden", + "und", + "will", + "zwischen", + "im", + "immer", + "millionen", + "ein", + "was", + "sagte", + "er", + "gibt", + "alle", + "dm", + "diesem", + "seit", + "muß", + "wurden", + "beim", + "doch", + "jetzt", + "waren", + "drei", + "jahre", + "mit", + "neue", + "neuen", + "damit", + "bereits", + "da", + "auch", + "ihr", + "seinen", + "müssen", + "ab", + "ihrer", + "nach", + "ohne", + "sondern", + "selbst", + "ersten", + "nun", + "etwa", + "bei", + "heute", + "ihren", + "weil", + "ihm", + "seien", + "menschen", + "anderen", + "werde", + "ich", + "sagt", + "wir", + "eine", + "rund", + "für", + "aber", + "ihn", + "ende", + "jedoch", + "zeit", + "sollen", + "ins", + "wenn", + "so", + "seinem", + "uns", + "stadt", + "geht", + "doch", + "sehr", + "hier", + "ganz", + "erst", + "wollen", + "berlin", + "sowie", + "hatten", + "kein", + "deutschen", + "machen", + "lassen", + "als", + "andere", + "ob", + "dieses", + "steht", + "dabei", + "wegen", + "weiter", + "denn", + "beiden", + "einmal", + "etwas", + "wie", + "nichts", + "allerdings", + "vier", + "gut", + "viele", + "wo", + "viel", + "dort", + "alles", + "auf", + "wäre", + "spd", + "kommt", + "denen", + "fast", + "fünf", + "könnte", + "hätten", + "frau", + "am", + "dafür", + "kommen", + "diesen", + "letzten", + "zwar", + "diese", + "großen", + "dazu", + "von", + "mann", + "da", + "sollte", + "würde", + "also", + "bisher", + "leben", + "milliarden", + "welt", + "regierung", + "konnte", + "ihrem", + "frauen", + "während", + "land", + "zehn", + "würden", + "stehen", + "ja", + "usa", + "heißt", + "dies", + "zurück", + "kinder", + "dessen", + "ihnen", + "deren", + "sogar", + "frage", + "gewesen", + "erste", + "gab", + "liegt", + "gar", + "davon", + "gestern", + "geben", + "teil", + "polizei", + "dass", + "hätte", + "eigenen", + "kaum", + "sieht", + "große", + "denn", + "weitere", + "was", + "sehen", + "macht", + "angaben", + "weniger", + "gerade", + "läßt", + "geld", + "münchen", + "deutsche", + "allen", + "darauf", + "wohl", + "später", + "könne", + "deshalb", + "aller", + "kam", + "arbeit", + "mich", + "gegenüber", + "nächsten", + "bleibt", + "wenig", + "lange", + "gemacht", + "wer", + "dies", + "fall", + "mir", + "gehen", + "berliner", + "mal", + "weg", + "cdu", + "wollte", + "sechs", + "keinen", + "woche", + "dagegen", + "alten", + "möglich", + "gilt", + "erklärte", + "müsse", + "dabei", + "könnten", + "geschichte", + "zusammen", + "finden", + "tag", + "art", + "erhalten", + "man", + "dollar", + "wochen", + "jeder", + "nie", + "bleiben", + "besonders", + "jahres", + "deutschen", + "den", + "zu", + "zunächst", + "derzeit", + "allein", + "deutlich", + "weiß", + "einige", + "sollten", + "präsident", + "geworden", + "statt", + "bonn", + "platz", + "inzwischen", + "nur", + "freitag", + "um", + "pro", + "seines", + "damit", + "montag", + "europa", + "sonntag", + "einfach", + "gehört", + "eher", + "oft", + "zahl", + "neben", + "hält", + "weit", + "partei", + "meisten", + "thema", + "zeigt", + "politik", + "aus", + "zweiten", + "januar", + "insgesamt", + "je", + "mußte", + "anfang", + "hinter", + "ebenfalls", + "ging", + "darüber", + "vielen", + "ziel", + "darf", + "seite", + "fest", + "hin", + "erklärt", + "namen", + "haus", + "an", + "frankfurt", + "mittwoch", + "damals", + "dienstag", + "hilfe", + "mai", + "markt", + "seit", + "tage", + "donnerstag", + "halten", + "gleich", + "nehmen", + "solche", + "besser", + "alte", + "leute", + "ergebnis", + "samstag", + "daß", + "sagen", + "system", + "märz", + "tun", + "monaten", + "kleinen", + "lang", + "nicht", + "knapp", + "bringen", + "wissen", + "kosten", + "erfolg", + "bekannt", + "findet", + "daran", + "künftig", + "wer", + "acht", + "grünen", + "schnell", + "grund", + "scheint", + "zukunft", + "stuttgart", + "bin", + "liegen", + "gruppe", + "rolle", + "stellt", + "juni", + "sieben", + "september", + "nämlich", + "männer", + "oktober", + "mrd", + "überhaupt", + "eigene", + "dann", + "gegeben", + "außerdem", + "stunden", + "eigentlich", + "meter", + "ließ", + "probleme", + "vielleicht", + "ebenso", + "bereich", + "bis", + "höhe", + "familie", + "während", + "bild", + "ländern", + "frankreich", + "tagen", + "schwer", + "zuvor", + "vor", + "genau", + "april", + "stellen", + "neu", + "erwartet", + "hamburg", + "sicher", + "führen", + "mal", + "über", + "mehrere", + "wirtschaft", + "mio", + "programm", + "offenbar", + "hier", + "weiteren", + "natürlich", + "konnten", + "stark", + "dezember", + "juli", + "ganze", + "kommenden", + "kunden", + "bekommen", + "eben", + "kleine", + "trotz", + "wirklich", + "lage", + "länder", + "leicht", + "gekommen", + "spiel", + "laut", + "november", + "kurz", + "politische", + "führt", + "innerhalb", + "unsere", + "meint", + "form", + "münchner", + "ag", + "anders", + "ihres", + "völlig", + "gute", + "bislang", + "august", + "hand", + "jede", + "gmbh", + "film", + "minuten", + "erreicht", + "beide", + "musik", + "kritik", + "mitte", + "verfügung", + "buch", + "dürfen", + "unter", + "jeweils", + "einigen", + "zum", + "umsatz", + "spielen", + "daten", + "welche", + "müßten", + "hieß", + "paar", + "nachdem", + "kunst", + "euro", + "gebracht", + "problem", + "noch", + "jeden", + "ihre", + "sprecher", + "recht", + "erneut", + "längst", + "sein", + "eltern", + "beginn", + "besteht", + "seine", + "mindestens", + "machte", + "jetzt", + "bietet", + "außerdem", + "bürger", + "trainer", + "bald", + "deutsche", + "schon", + "fragen", + "klar", + "durch", + "seiten", + "gehören", + "dort", + "erstmals", + "februar", + "zeigen", + "titel", + "stück", + "größten", + "fdp", + "setzt", + "wert", + "staat", + "möchte", + "daher", + "wolle", + "lediglich", + "nacht", + "krieg", + "opfer", + "tod", + "nimmt", + "firma", + "zuletzt", + "werk", + "hohen", + "leben", + "dieser", + "kirche", + "weiterhin", + "gebe", + "gestellt", + "mitglieder", + "rahmen", + "zweite", + "paris", + "situation", + "gefunden", + "wochenende", + "wasser", + "recht", + "sonst", + "stand", + "hälfte", + "versucht", + "blieb", + "junge", + "mehrheit", + "straße", + "sache", + "arbeiten", + "monate", + "mutter", + "berichtet", + "letzte", + "gericht", + "wollten", + "ihr", + "zwölf", + "zumindest", + "wahl", + "genug", + "weise", + "vater", + "bericht", + "hoch", + "beginnt", + "wort", + "obwohl", + "kopf", + "spielt", + "interesse", + "westen", + "verloren", + "preis", + "erst", + "jedem", + "erreichen", + "setzen", + "spricht", + "früher", + "teilte", + "landes", + "zudem", + "einzelnen", + "bereit", + "blick", + "druck", + "bayern", + "kilometer", + "gemeinsam", + "bedeutung", + "chance", + "politiker", + "dazu", + "zwei", + "besten", + "ansicht", + "endlich", + "stelle", + "direkt", + "beim", + "viele", + "solchen", + "alle", + "solle", + "jungen", + "einsatz", + "richtig", + "größte", + "sofort", + "neuer", + "ehemaligen", + "unserer", + "dürfte", + "schaffen", + "augen", + "rußland", + "internet", + "allerdings", + "raum", + "mannschaft", + "neun", + "kamen", + "zeiten", + "dem", + "einzige", + "meine", + "nun", + "verfahren", + "angebot", + "richtung", + "projekt", + "niemand", + "kampf", + "weder", + "personen", + "dpa", + "heute", + "geführt", + "gespräch", + "kreis", + "hamburger", + "schule", + "guten", + "hauptstadt", + "durchaus", + "darin", + "amt", + "schritt", + "meist", + "groß", + "zufolge", + "sprache", + "region", + "punkte", + "vergleich", + "genommen", + "gleichen", + "du", + "ob", + "soldaten", + "kollegen", + "neues", + "angst", + "stellte", + "sommer", + "danach", + "anderer", + "gesagt", + "sicherheit", + "macht", + "bau", + "handelt", + "folge", + "bilder", + "lag", + "osten", + "handel", + "sprach", + "aufgabe", + "chef", + "frei", + "dennoch", + "ddr", + "hohe", + "firmen", + "bzw", + "koalition", + "mädchen", + "zur", + "entwickelt", + "fand", + "diskussion", + "bringt", + "deshalb", + "hause", + "gefahr", + "per", + "zugleich", + "früheren", + "dadurch", + "ganzen", + "abend", + "erzählt", + "streit", + "parteien", + "jedenfalls", + "gesehen", + "trotz", + "darunter", + "spieler", + "forderte", + "beispiel", + "meinung", + "wenigen", + "publikum", + "sowohl", + "meinte", + "mag", + "auto", + "lösung", + "boden", + "einen", + "hinaus", + "zwar", + "verletzt", + "weltweit", + "sohn", + "bevor", + "peter", + "mußten", + "keiner", + "produktion", + "ort", + "braucht", + "kind", + "verein", + "sprechen", + "aktien", + "london", + "richter", + "geplant", + "italien", + "mittel", + "her", + "freilich", + "mensch", + "großer", + "bonner", + "wenige", + "dritten", + "nahm", + "bedeutet", + "feld", + "dr.", + "bank", + "oben", + "gesetzt", + "ausland", + "vertreter", + "z.b.", + "jedes", + "ziehen", + "parlament", + "berichtete", + "dieses", + "china", + "aufgrund", + "stellen", + "warum", + "kindern", + "heraus", + "heutigen", + "anteil", + "herr", + "abend", + "selbst", + "liebe", + "neben", + "rechnen", + "fällt", + "industrie", + "welt", + "wären", + "vorjahr", + "sicht", + "idee", + "banken", + "verlassen", + "leiter", + "bühne", + "offen", + "stets", + "theater", + "ändern", + "staaten", + "experten", + "gesetz", + "geschäft", + "tochter", + "angesichts", + "gelten", + "mehr", + "erwarten", + "läuft", + "fordert", + "japan", + "sieg", + "ist", + "stimmen", + "wählen", + "russischen", + "gewinnen", + "csu", + "bieten", + "nähe", + "jährlich", + "bremen", + "schüler", + "rede", + "funktion", + "zuschauer", + "hingegen", + "anderes", + "führung", + "besucher", + "drittel", + "moskau", + "immerhin", + "urteil", + "kultur", + "betonte", + "saison", + "konzept", + "suchen", + "zahlen", + "roman", + "gewalt", + "köln", + "gesamte", + "indem", + "eu", + "stunde", + "ehemalige", + "auftrag", + "genannt", + "tragen", + "börse", + "langen", + "häufig", + "chancen", + "position", + "alt", + "luft", + "studenten", + "übernehmen", + "stärker", + "ohnehin", + "zeigte", + "geplanten", + "reihe", + "darum", + "verhindern", + "begann", + "medien", + "verkauft", + "minister", + "wichtig", + "sah", + "gesamten", + "einst", + "verwendet", + "vorbei", + "behörden", + "helfen", + "folgen", + "bezeichnet", + "weil", + "ihnen", + "voll", + "deutscher", + "worten", + "plötzlich", + "müßte", + "vertrag", + "monat", + "oder", + "herbst", + "israel", + "zahlen", + "zeitung", + "grenzen", + "partner", + "patienten", + "nutzen", + "bund", + "setzte", + "betrieb", + "michael", + "beteiligt", + "professor", + "fernsehen", + "künstler", + "mehreren", + "erinnert", + "liste", + "autor", + "täglich", + "eingesetzt", + "versuch", + "alter", + "autos", + "kohl", + "außer", + "hoffnung", + "verkauf", + "nennt", + "erscheint", + "führte", + "prozeß", + "täter", + "bisherigen", + "länger", + "erkennen", + "treffen", + "kein", + "unser", + "begonnen", + "antrag", + "opposition", + "maßnahmen", + "brachte", + "nächste", + "zudem", + "gezeigt", + "dennoch", + "sinn", + "erde", + "gefordert", + "wohnung", + "all", + "menge", + "gerne", + "hören", + "selten", + "weitere", + "bestätigt", + "bestimmt", + "statt", + "entstehen", + "nannte", + "schreibt", + "union", + "brauchen", + "gewählt", + "kraft", + "elf", + "trägt", + "zieht", + "grenze", + "team", + "gebäude", + "tonnen", + "wettbewerb", + "anspruch", + "polen", + "morgen", + "bremer", + "wegen", + "gebiet", + "glaubt", + "sa", + "natur", + "arbeiten", + "jene", + "fällen", + "leisten", + "zeitpunkt", + "mein", + "konkurrenz", + "stieg", + "notwendig", + "sogenannte", + "fahren", + "kostet", + "geplante", + "fehler", + "zweifel", + "erklärung", + "wiederum", + "erschienen", + "gehe", + "glück", + "fehlt", + "gruppen", + "aktion", + "kündigte", + "meinen", + "manchmal", + "übernommen", + "möglichst", + "sz", + "lieber", + "vielleicht", + "warum", + "gespräche", + "suche", + "gern", + "fallen", + "preise", + "weitgehend", + "basis", + "computer", + "schutz", + "eindruck", + "fiel", + "nahe", + "schlecht", + "lebt", + "verhältnis", + "forderung", + "britischen", + "sozialen", + "technik", + "entstanden", + "vorstand", + "of", + "bestimmten", + "jüngsten", + "geboren", + "erhält", + "wobei", + "gegner", + "gründen", + "material", + "spitze", + "gewinn", + "punkten", + "vertreten", + "schulen", + "studie", + "zeichen", + "gewonnen", + "kurs", + "washington", + "türkei", + "wirkt", + "armee", + "erhielt", + "beginnen", + "bißchen", + "entfernt", + "vorgesehen", + "ergebnisse", + "zahlreiche", + "entgegen", + "ohne", + "hielt", + "privaten", + "sucht", + "gemeinde", + "antwort", + "zentrum", + "bilden", + "legen", + "schweiz", + "weg", + "teilweise", + "licht", + "hannover", + "produkte", + "stimme", + "diesmal", + "schluß", + "gingen", + "angeboten", + "gesicht", + "treffen", + "nachdem", + "ließen", + "eröffnet", + "versuchen", + "konzern", + "leistungen", + "gäste", + "wohnungen", + "dafür", + "wichtige", + "neue", + "rund", + "zog", + "geraten", + "bewegung", + "gegen", + "nötig", + "mitglied", + "hundert", + "düsseldorf", + "pds", + "danach", + "vermutlich", + "selber", + "ständig", + "senat", + "branche", + "enthält", + "laufen", + "vom", + "straßen", + "einführung", + "arbeitet", + "verlangt", + "werke", + "insgesamt", + "runde", + "besuch", + "manager", + "brüssel", + "de", + "schweren", + "sitzt", + "jemand", + "bereits", + "wachstum", + "taz", + "bestimmte", + "drei", + "freiheit", + "kennt", + "band", + "glauben", + "wege", + "verurteilt", + "tritt", + "volk", + "pläne", + "satz", + "sitzen", + "vorschlag", + "rechnet", + "muss", + "erhöht", + "aufgaben", + "warten", + "entdeckt", + "heimat", + "verstehen", + "schrieb", + "trotzdem", + "erfahren", + "frühere", + "bekommt", + "dinge", + "institut", + "wirkung", + "sorgen", + "trifft", + "reden", + "werte", + "forscher", + "wo", + "sitzung", + "zusätzlich", + "vielmehr", + "anlaß", + "beide", + "gehalten", + "tel.", + "schweizer", + "serben", + "bundestag", + "verwaltung", + "vorher", + "betont", + "leistung", + "obwohl", + "zufrieden", + "papier", + "thomas", + "verbindung", + "sinne", + "ziemlich", + "debatte", + "enthalten", + "bestehen", + "freund", + "themen", + "überall", + "droht", + "text", + "punkt", + "erfahrung", + "the", + "soziale", + "russische", + "tisch", + "republik", + "höher", + "reicht", + "million", + "gehabt", + "politisch", + "folgen", + "ähnlich", + "geschaffen", + "schaden", + "erster", + "körper", + "amerikaner", + "getötet", + "einige", + "frieden", + "zählt", + "wagen", + "bahn", + "vergessen", + "verlust", + "tiere", + "museum", + "gegründet", + "daraus", + "start", + "kontrolle", + "einfluß", + "österreich", + "allein", + "norden", + "wunsch", + "manche", + "wahlen", + "reise", + "steigen", + "gemeinsame", + "demokratie", + "könig", + "england", + "nennen", + "teile", + "denken", + "name", + "lehrer", + "s.", + "laufenden", + "verbunden", + "qualität", + "widerstand", + "schön", + "spanien", + "gegangen", + "beamten", + "jeder", + "europas", + "freunde", + "mitteilte", + "erklären", + "familien", + "gerade", + "gefallen", + "aktie", + "krise", + "nummer", + "wies", + "außerhalb", + "gestiegen", + "reform", + "literatur", + "lebens", + "gewann", + "moment", + "angeblich", + "mill", + "weiteres", + "beträgt", + "dritte", + "wesentlich", + "amerika", + "insel", + "britische", + "nachfolger", + "entspricht", + "dahin", + "unseren", + "solcher", + "juden", + "sport", + "rathaus", + "verkaufen", + "größere", + "frühjahr", + "gebaut", + "wahrheit", + "dar", + "kommission", + "polizisten", + "bosnien", + "grundlage", + "relativ", + "nein", + "klasse", + "tut", + "hängt", + "wenigstens", + "aktuellen", + "modell", + "hinzu", + "gedanken", + "übernahme", + "entwickeln", + "quartal", + "meiner", + "dürften", + "keine", + "jener", + "zustimmung", + "legt", + "fordern", + "einheit", + "natürlich", + "blieben", + "laut", + "szene", + "klaus", + "geblieben", + "lesen", + "besonders", + "getroffen", + "keineswegs", + "abschluß", + "verlag", + "interessen", + "netz", + "plan", + "ausbildung", + "befindet", + "zunehmend", + "verzichten", + "gespielt", + "ermittelt", + "legte", + "ruhe", + "hans", + "händler", + "genutzt", + "höhere", + "starke", + "treten", + "stimmung", + "ärzte", + "erheblich", + "standen", + "teilnehmer", + "möchten", + "starken", + "stand", + "anlage", + "siehe", + "erfolgt", + "vertrieb", + "beste", + "gelungen", + "ordnung", + "andreas", + "lautet", + "kritisiert", + "schröder", + "machten", + "verstärkt", + "süden", + "haltung", + "freien", + "weist", + "nahezu", + "motto", + "abgelehnt", + "gelang", + "gezogen", + "frühen", + "schreiben", + "aufs", + "gleiche", + "öffentlich", + "häuser", + "kleiner", + "folgt", + "einer", + "ja", + "wien", + "möglichen", + "weiterer", + "kaufen", + "gefühl", + "initiative", + "hofft", + "dürfe", + "person", + "telekom", + "kennen", + "beitrag", + "lernen", + "gefragt", + "meister", + "bücher", + "kürzlich", + "tradition", + "einzelne", + "verband", + "grüne", + "überzeugt", + "rückkehr", + "also", + "schwere", + "falsch", + "unten", + "behandelt", + "indes", + "großes", + "worte", + "getan", + "somit", + "langsam", + "wählen", + "gedacht", + "geändert", + "bisher", + "hervor", + "hessen", + "städte", + "unbedingt", + "hotel", + "artikel", + "tätig", + "geburtstag", + "gesprochen", + "schließen", + "engagement", + "alles", + "gründe", + "erlaubt", + "kl.", + "ausländer", + "anleger", + "größer", + "verlieren", + "verhalten", + "fanden", + "betriebe", + "praxis", + "ums", + "galt", + "gemeinden", + "wolfgang", + "kanzler", + "viertel", + "private", + "zustand", + "genauso", + "planung", + "forschung", + "gott", + "einzigen", + "wichtigen", + "kosten", + "verkehr", + "befinden", + "kauf", + "halle", + "rom", + "bessere", + "unserem", + "jeweiligen", + "angelegt", + "beendet", + "fälle", + "stehe", + "dienst", + "herrscht", + "begriff", + "sekunden", + "essen", + "ans", + "erfüllt", + "auskunft", + "bauen", + "rechnung", + "endgültig", + "truppen", + "jungen", + "aufbau", + "leider", + "auffassung", + "komme", + "karriere", + "bezahlen", + "telefon", + "rest", + "umwelt", + "schlägt", + "bewußt", + "wichtiger", + "sonne", + "trat", + "inzwischen", + "gelangen", + "schneller", + "kandidaten", + "brief", + "folgenden", + "erscheinen", + "nr.", + "fahrer", + "rennen", + "nachfrage", + "morgen", + "verdacht", + "eigener", + "hinweis", + "umgebung", + "bestätigte", + "regelung", + "fenster", + "dienen", + "modernen", + "zuständig", + "flughafen", + "generation", + "gelegt", + "ergeben", + "nationalen", + "waffen", + "schicksal", + "jugend", + "niederlage", + "spaß", + "niveau", + "gelände", + "trend", + "heißen", + "tatsache", + "presse", + "feuer", + "bezahlt", + "förderung", + "ganz", + "bildung", + "vorstellen", + "voller", + "winter", + "botschaft", + "investoren", + "grad", + "geschäfte", + "leser", + "spielte", + "erzielt", + "reichen", + "energie", + "regelmäßig", + "übertragen", + "freude", + "verändert", + "umgang", + "fans", + "entweder", + "dauer", + "hersteller", + "größe", + "kontakt", + "früh", + "prinzip", + "ausdruck", + "definieren", + "wunder", + "eindeutig", + "behandlung", + "größeren", + "nachbarn", + "himmel", + "hoffen", + "auge", + "risiko", + "verdient", + "tor", + "maria", + "behauptet", + "rücktritt", + "schwarzen", + "bewegen", + "immerhin", + "plus", + "mögliche", + "passiert", + "angesichts", + "betroffen", + "entsteht", + "vorwürfe", + "näher", + "bekam", + "aussage", + "verfassung", + "bewohner", + "vorhanden", + "richtige", + "übrigens", + "kommunen", + "städten", + "werner", + "verfügt", + "filme", + "tabelle", + "werbung", + "fragt", + "gegenteil", + "fischer", + "gegensatz", + "bauern", + "arzt", + "leitung", + "dieter", + "besondere", + "sehe", + "die", + "arbeiter", + "beschluß", + "minute", + "anzahl", + "willen", + "ruf", + "aktiv", + "zwischen", + "karlsruhe", + "einiger", + "westlichen", + "schweden", + "verwenden", + "vorwurf", + "zwanzig", + "the", + "höheren", + "offiziell", + "tief", + "du", + "ausbau", + "auswahl", + "richtigen", + "schien", + "festgelegt", + "bilanz", + "erhöhen", + "kurzem", + "fast", + "gang", + "vorerst", + "hände", + "wirken", + "vertrauen", + "denkt", + "lösen", + "positionen", + "zählen", + "besitzt", + "falle", + "entwurf", + "ziele", + "sichern", + "ernst", + "positiv", + "tat", + "ermöglicht", + "ideen", + "damals", + "änderung", + "ebene", + "äußerst", + "lager", + "zweimal", + "tür", + "dringend", + "regisseur", + "wechsel", + "begründung", + "alter", + "pfennig", + "fehlen", + "links", + "summe", + "erinnerung", + "zugang", + "ii", + "praktisch", + "geöffnet", + "leipzig", + "frank", + "strecke", + "fährt", + "wende", + "herz", + "autoren", + "fürs", + "übrigen", + "andere", + "ausgabe", + "fußball", + "kölner", + "projekte", + "versteht", + "stil", + "letztlich", + "aussagen", + "herum", + "bundeswehr", + "steigt", + "kämpfen", + "zugunsten", + "glaube", + "fraktion", + "posten", + "dorf", + "post", + "bruder", + "außen", + "welcher", + "dagegen", + "rang", + "trotzdem", + "krankheit", + "heinz", + "strom", + "bloß", + "zumal", + "struktur", + "linie", + "felder", + "dient", + "clinton", + "wußte", + "falls", + "entstand", + "herrn", + "autofahrer", + "sitz", + "definiert", + "warf", + "fusion", + "gaben", + "verlor", + "los", + "daraufhin", + "zinsen", + "scheinen", + "büro", + "angenommen", + "ursache", + "steuern", + "fühlen", + "anlagen", + "jürgen", + "franzosen", + "allzu", + "liege", + "verteilt", + "soviel", + "jelzin", + "landtag", + "nürnberg", + "ab", + "bereichen", + "stammt", + "service", + "künftigen", + "kino", + "behörde", + "gehandelt", + "nutzung", + "interview", + "wissen", + "zuerst", + "davor", + "ausnahme", + "erhöhung", + "wächst", + "gearbeitet", + "rechte", + "eins", + "walter", + "geradezu", + "wirft", + "zug", + "erreichte", + "bedarf", + "erlebt", + "teuer", + "kritiker", + "flucht", + "klage", + "änderungen", + "u.", + "informiert", + "geschickt", + "gerhard", + "erinnern", + "männern", + "klingt", + "hinweise", + "kräftig", + "fort", + "rein", + "eigenes", + "immer", + "spät", + "eröffnung", + "beratung", + "franz", + "gefängnis", + "angezeigt", + "rasch", + "erfüllen", + "freie", + "fertig", + "haushalt", + "dadurch", + "schlagen", + "direktor", + "realität", + "falls", + "schreiben", + "sender", + "provinz", + "job", + "standort", + "beruf", + "gestorben", + "voraus", + "gesucht", + "stellung", + "einigung", + "vorschläge", + "texte", + "fühlt", + "schuld", + "leichter", + "vierten", + "halbjahr", + "rücken", + "karten", + "halben", + "betrachtet", + "schlug", + "geschehen", + "zeitraum", + "vermeiden", + "prüfen", + "vieler", + "formen", + "tore", + "starb", + "regeln", + "umfang", + "fragen", + "konflikt", + "vier", + "je", + "teilen", + "plätze", + "beraten", + "einwohner", + "verluste", + "rechten", + "zugeordnet", + "tausend", + "gerechnet", + "offenen", + "warnte", + "verbessern", + "unterwegs", + "führenden", + "hauses", + "anbieter", + "übernimmt", + "diskutiert", + "herren", + "anstieg", + "objekte", + "versuchte", + "bisherige", + "beschreibt", + "etwa", + "hof", + "serie", + "allem", + "weißen", + "türkischen", + "revolution", + "personal", + "hilft", + "karl", + "gründung", + "martin", + "verboten", + "verhindert", + "nahmen", + "lust", + "fahrt", + "begründet", + "wahlkampf", + "auftritt", + "guter", + "gutes", + "ard", + "dichter", + "vorbild", + "allianz", + "zerstört", + "hart", + "rief", + "einnahmen", + "einig", + "beamte", + "and", + "gelingt", + "status", + "gefährdet", + "vorteil", + "strukturen", + "rechts", + "staatliche", + "spiele", + "kräfte", + "persönlich", + "wachsen", + "atmosphäre", + "wann", + "angriff", + "müller", + "regionen", + "dresden", + "besetzt", + "technische", + "plus", + "gesichert", + "besonderen", + "gehörte", + "verspricht", + "vergeben", + "traf", + "wonach", + "inhalt", + "vorhaben", + "plant", + "galerie", + "horst", + "protest", + "urlaub", + "gelassen", + "traum", + "geben", + "steckt", + "leuten", + "bestimmen", + "mehrfach", + "sollte", + "tätigkeit", + "josef", + "alexander", + "beteiligen", + "unabhängig", + "anwalt", + "pflegen", + "roten", + "bildet", + "solange", + "erfolge", + "schließt", + "helmut", + "innenstadt", + "junge", + "mitteln", + "peking", + "aufgebaut", + "zeitungen", + "becker", + "wähler", + "software", + "demnächst", + "wird", + "erzeugt", + "retten", + "höchsten", + "stimmt", + "reaktion", + "bernd", + "halte", + "reduziert", + "moderne", + "mache", + "m.", + "rückgang", + "schwierig", + "produziert", + "ausgaben", + "hört", + "kassen", + "tokio", + "general", + "schloß", + "günter", + "deswegen", + "zdf", + "methode", + "sorge", + "sorgen", + "verfolgt", + "ungarn", + "nato", + "messe", + "figuren", + "kurzen", + "fest", + "bosnischen", + "welchen", + "höhepunkt", + "künftige", + "finanziert", + "aktuelle", + "zeigten", + "bekannten", + "spätestens", + "strategie", + "bemüht", + "sorgt", + "rat", + "meinem", + "neuen", + "benötigt", + "spur", + "ball", + "finale", + "keinem", + "schöne", + "reagiert", + "manfred", + "schützen", + "ernst", + "stammen", + "rande", + "schatten", + "verbessert", + "jüdischen", + "positive", + "manchen", + "entlassen", + "phase", + "vorgang", + "asien", + "eng", + "halbe", + "abschnitt", + "verbrechen", + "dank", + "geist", + "tot", + "eingeführt", + "berichten", + "anlegen", + "kirchen", + "funktionen", + "sanierung", + "sieger", + "aktionen", + "vorgelegt", + "wind", + "fahrzeuge", + "kurse", + "untersucht", + "durfte", + "u.a.", + "maschinen", + "unsere", + "ausgelöst", + "indien", + "haft", + "bewegt", + "zweck", + "währung", + "bitte", + "wald", + "wichtigste", + "zimmer", + "verlauf", + "ausgesetzt", + "prüfung", + "verwendung", + "kurze", + "zunächst", + "blut", + "anwendung", + "anhänger", + "aufnahme", + "sammlung", + "benutzt", + "angebote", + "umsetzung", + "dach", + "irak", + "gezwungen", + "premiere", + "ap", + "hoher", + "starten", + "kasse", + "nichts", + "hektar", + "paul", + "termin", + "gemeldet", + "kontakte", + "anbieten", + "räume", + "stellten", + "abbau", + "meldete", + "ton", + "unfall", + "touristen", + "englischen", + "abkommen", + "erfaßt", + "solche", + "metern", + "stiftung", + "existenz", + "zeugen", + "gold", + "absicht", + "objekt", + "anders", + "anklage", + "großen", + "einkommen", + "beider", + "sinnvoll", + "abstimmung", + "liefern", + "schafft", + "ecke", + "siemens", + "gutachten", + "version", + "konferenz", + "pariser", + "bundesliga", + "erhebliche", + "erfolgen", + "dialog", + "dutzend", + "abhängig", + "hängen", + "ausgegeben", + "bedenken", + "ergibt", + "iran", + "vermutet", + "aufnehmen", + "verzichtet", + "bundesweit", + "bekannte", + "befürchten", + "bekl", + "ehe", + "liest", + "gast", + "damaligen", + "wiener", + "genügend", + "ersetzt", + "vereine", + "beobachtet", + "verdienen", + "niemals", + "brand", + "verstanden", + "stolz", + "reagieren", + "laufe", + "schönen", + "erhoben", + "spuren", + "mitten", + "reformen", + "erschien", + "mut", + "grünen", + "christian", + "verliert", + "anna", + "aussicht", + "staates", + "charakter", + "spiegel", + "analyse", + "kapital", + "herzen", + "einiges", + "bedroht", + "linken", + "deutscher", + "russen", + "derzeit", + "eingeladen", + "verlangen", + "langem", + "stadtrat", + "beiträge", + "erkannt", + "zuschauern", + "trug", + "afrika", + "schritte", + "höchste", + "mord", + "dortmund", + "studium", + "erläutert", + "alltag", + "teilnahme", + "befürchtet", + "geschafft", + "betrag", + "nachmittag", + "solches", + "jenen", + "bildern", + "fläche", + "berichte", + "wiesbaden", + "heftig", + "äußerte", + "gewinne", + "gesprächen", + "klare", + "umgesetzt", + "justiz", + "soweit", + "wiederholt", + "bislang", + "endet", + "atlanta", + "holen", + "abstand", + "geprägt", + "nation", + "meer", + "berlins", + "keinerlei", + "aufgerufen", + "gewisse", + "programme", + "musiker", + "einsetzen", + "aufträge", + "pflege", + "management", + "behaupten", + "bier", + "gewinnt", + "jahresende", + "belegt", + "besseren", + "zuge", + "sap", + "saal", + "berufung", + "schwarze", + "farbe", + "georg", + "konzert", + "umfeld", + "gelernt", + "besitz", + "wand", + "kabinett", + "kosovo", + "sachsen", + "pause", + "erstes", + "waren", + "händen", + "fuhr", + "gebeten", + "gering", + "vorlage", + "www", + "schloß", + "risiken", + "sämtliche", + "gelegen", + "aufklärung", + "fünf", + "daher", + "erleben", + "pflanzen", + "spüren", + "feiern", + "schwerer", + "draußen", + "beweis", + "gewicht", + "lagen", + "fonds", + "kompromiß", + "handeln", + "training", + "kunde", + "geschlagen", + "hinweg", + "gelte", + "gesundheit", + "nachricht", + "mein", + "junger", + "kapitel", + "fördern", + "kamera", + "greifen", + "normalen", + "augenblick", + "waigel", + "werfen", + "äußerungen", + "tausende", + "begleitet", + "üblichen", + "blatt", + "bereiche", + "abteilung", + "erzählen", + "dauert", + "heinrich", + "belastet", + "verträge", + "wetter", + "keller", + "farben", + "entlang", + "begründete", + "welche", + "fielen", + "zugleich", + "sprecherin", + "führer", + "gegenwart", + "erste", + "londoner", + "angewiesen", + "kriterien", + "kurz", + "vereinbart", + "lasse", + "ihren", + "pfund", + "schlechte", + "kanada", + "bundesbank", + "dividende", + "investiert", + "gut", + "südafrika", + "gestern", + "getragen", + "japanische", + "geprüft", + "sparen", + "systems", + "stadtteil", + "robert", + "versichert", + "hinein", + "co", + "brasilien", + "späten", + "gesetze", + "neues", + "irgendwann", + "unseres", + "maschine", + "beobachten", + "typ", + "seele", + "not", + "bord", + "bmw", + "zuviel", + "zentimeter", + "später", + "ereignisse", + "offene", + "identität", + "folgte", + "bahnhof", + "hielten", + "allenfalls", + "spanischen", + "anfrage", + "serbischen", + "produkt", + "australien", + "a.", + "landschaft", + "schmidt", + "große", + "vorteile", + "leiden", + "arbeitete", + "bayerische", + "passieren", + "regie", + "eigentlich", + "übrig", + "kleines", + "höchstens", + "bemühungen", + "märkte", + "wert", + "pfarrer", + "ungefähr", + "zentrale", + "warnt", + "beinahe", + "microsoft", + "mischung", + "desto", + "vorgehen", + "oper", + "zentralen", + "sowieso", + "liefert", + "ruft", + "niemand", + "kern", + "beziehung", + "jüngste", + "aufmerksam", + "seitdem", + "reisen", + "führten", + "fuß", + "bleibe", + "leer", + "beobachter", + "vermitteln", + "überrascht", + "werken", + "klein", + "manche", + "öffnen", + "schätzt", + "bus", + "toten", + "zogen", + "mancher", + "besitzen", + "hotels", + "rebellen", + "ausgleich", + "gefeiert", + "ereignis", + "benutzer", + "erhöhte", + "reuter", + "methoden", + "feuerwehr", + "angegeben", + "darin", + "reihen", + "erzielte", + "wm", + "übernahm", + "abschied", + "behalten", + "lande", + "nationale", + "wartet", + "stärke", + "nunmehr", + "anzeigen", + "verändern", + "türkische", + "bäume", + "briten", + "gerät", + "selben", + "ihrer", + "vortrag", + "bedeuten", + "halt", + "analysten", + "hongkong", + "schlechter", + "davon", + "getrennt", + "figur", + "derart", + "schlüssel", + "stücke", + "bündnis", + "geschieht", + "liter", + "mauer", + "erkenntnis", + "paßt", + "kongreß", + "hoffnungen", + "späteren", + "marke", + "kenntnis", + "mannes", + "umständen", + "greift", + "saß", + "details", + "unmöglich", + "fragte", + "gewiß", + "belastung", + "namens", + "beweisen", + "verfügen", + "anschlag", + "gebieten", + "zahlt", + "kaum", + "höchst", + "falschen", + "schlechten", + "lösungen", + "gestartet", + "konkrete", + "hat", + "bundesrat", + "tendenz", + "falsche", + "lehnte", + "zuständige", + "helden", + "sichtbar", + "setzten", + "stefan", + "regen", + "vorne", + "lief", + "geboten", + "solch", + "milliarde", + "dauern", + "häufiger", + "kilogramm", + "meine", + "besitzer", + "partie", + "elisabeth", + "magistrat", + "unser", + "doppelt", + "dich", + "kollege", + "ältere", + "fürchten", + "problemen", + "arten", + "diejenigen", + "holz", + "denken", + "bewertung", + "deutliche", + "spielen", + "landkreis", + "geringer", + "jede", + "aufgrund", + "variante", + "schwester", + "festlegen", + "bürgern", + "schäden", + "sind", + "nein", + "betreiben", + "positiven", + "übergeben", + "mitteilung", + "lehre", + "gefördert", + "kleinere", + "geeignet", + "umfrage", + "mieter", + "halb", + "berg", + "kroatien", + "herbert", + "nochmals", + "tempo", + "spannung", + "klima", + "alten", + "allgemeine", + "see", + "bewerber", + "irgendwie", + "freundin", + "pflicht", + "erweitert", + "papst", + "teilnehmen", + "trennung", + "welchem", + "erstellt", + "nase", + "erklärten", + "sicherlich", + "schulden", + "senken", + "herzog", + "stoff", + "gerecht", + "vw", + "besucht", + "enttäuscht", + "anzeige", + "festen", + "hessischen", + "stiegen", + "ersetzen", + "aktionäre", + "verhandelt", + "zweiter", + "sorgte", + "otto", + "auftakt", + "zweier", + "richtet", + "einheiten", + "versuche", + "zellen", + "mengen", + "beziehen", + "führende", + "schiff", + "umfaßt", + "begegnung", + "ähnliche", + "großteil", + "theorie", + "denke", + "vermittelt", + "zürich", + "welches", + "erschossen", + "gekauft", + "maß", + "dienste", + "gesperrt", + "gestalt", + "stein", + "neubau", + "weisen", + "harten", + "forderten", + "feiert", + "extrem", + "allgemein", + "diesen", + "voran", + "versorgung", + "eis", + "billiger", + "überprüfen", + "mannheim", + "betrifft", + "verwies", + "minus", + "mögen", + "überlassen", + "lädt", + "schicken", + "notwendige", + "foto", + "finanziell", + "dank", + "schneider", + "ehe", + "image", + "belgien", + "gefährlich", + "betrieben", + "freiburg", + "steigerung", + "baut", + "rußlands", + "ablehnung", + "geklärt", + "brücke", + "dreißig", + "bewußtsein", + "glücklich", + "alleine", + "ferner", + "gewachsen", + "empfiehlt", + "errichtet", + "egal", + "legten", + "einstieg", + "osteuropa", + "scheinbar", + "reich", + "kostenlos", + "anteile", + "älteren", + "geriet", + "ärger", + "länge", + "verzicht", + "elemente", + "gesorgt", + "weiße", + "gestaltung", + "teams", + "gebildet", + "ruhig", + "jerusalem", + "geräte", + "mund", + "lafontaine", + "vereins", + "gefahren", + "früher", + "jenseits", + "wechseln", + "versuchten", + "sank", + "samt", + "polnischen", + "autobahn", + "grüne", + "gehörten", + "herkunft", + "rückzug", + "david", + "potsdam", + "hinzu", + "garten", + "betragen", + "dpa-afx", + "sterben", + "teufel", + "erzielen", + "fahrzeug", + "bestand", + "moderne", + "john", + "viel", + "womöglich", + "lauf", + "beschränkt", + "glas", + "aufgehoben", + "szenen", + "wahr", + "lebenden", + "auftreten", + "vorfeld", + "ansonsten", + "transport", + "zeichnet", + "strafe", + "hinten", + "jetzigen", + "neuesten", + "bett", + "bestätigen", + "gesunken", + "erhielten", + "parteitag", + "krieges", + "verbot", + "beispiele", + "sahen", + "sendung", + "verbreitet", + "vielmehr", + "eintritt", + "gezahlt", + "belgrad", + "kümmern", + "zustande", + "antreten", + "teurer", + "steigern", + "wünschen", + "ganze", + "türen", + "us-dollar", + "alfred", + "riesigen", + "vergeblich", + "zumeist", + "maler", + "manchmal", + "raus", + "schlicht", + "bereitet", + "hochschule", + "unklar", + "vorgänge", + "großem", + "bewertet", + "kaiser", + "breit", + "lehnt", + "üblich", + "signal", + "maximal", + "klinik", + "käufer", + "dame", + "reagierte", + "einziger", + "bestehe", + "auflösung", + "forum", + "brachten", + "beine", + "küche", + "glauben", + "gelöst", + "griff", + "wahren", + "züge", + "gemeint", + "betreuung", + "gestalten", + "betrug", + "inneren", + "erteilt", + "ausschuß", + "dreimal", + "dax", + "gedichte", + "verhaftet", + "yen", + "mexiko", + "vorigen", + "abends", + "erwiesen", + "bot", + "innen", + "dänemark", + "argument", + "haut", + "angeklagte", + "aufwand", + "reine", + "distanz", + "einstellen", + "betrieben", + "zuvor", + "rtl", + "konjunktur", + "bernhard", + "irgendwo", + "park", + "sagten", + "damen", + "offizielle", + "harte", + "amtszeit", + "laufende", + "hinter", + "konto", + "ursachen", + "vorn", + "gelesen", + "teilen", + "akzeptiert", + "absolut", + "bestellt", + "verweist", + "vieles", + "vermögen", + "politikern", + "schnellen", + "denkbar", + "fotos", + "gemessen", + "freuen", + "sprung", + "stimmen", + "reichlich", + "restaurant", + "gestrichen", + "gewarnt", + "achten", + "abgeben", + "friedrich", + "akten", + "küste", + "jüngst", + "berufen", + "schnelle", + "briefe", + "räumte", + "kaffee", + "gelder", + "symbol", + "gebühren", + "kleineren", + "europäer", + "johann", + "teilt", + "italiener", + "parameter", + "freunden", + "stecken", + "garantiert", + "zuwachs", + "rand", + "haushalte", + "weltweiten", + "club", + "nieder", + "bestehende", + "einfache", + "geschätzt", + "uno", + "b.", + "moskauer", + "nachmittag", + "ebenso", + "mühe", + "phantasie", + "berater", + "medizin", + "geleistet", + "stößt", + "tode", + "teil", + "vorwiegend", + "vgl", + "freiwillig", + "verursacht", + "h.", + "alte", + "fr", + "hafen", + "allmählich", + "überzeugen", + "kurden", + "teils", + "vorgänger", + "jahrzehnte", + "begeistert", + "beenden", + "richard", + "fleisch", + "barcelona", + "schnitt", + "drogen", + "mitgeteilt", + "leitet", + "nachts", + "anwohner", + "export", + "regel", + "mittels", + "besuchen", + "handlung", + "erworben", + "brach", + "breiten", + "gerät", + "ohren", + "konkreten", + "würde", + "gäbe", + "ablauf", + "fließen", + "bezug", + "ukraine", + "eingang", + "entschied", + "flugzeug", + "stock", + "aussehen", + "froh", + "treibt", + "haben", + "einfachen", + "gepflegt", + "gestanden", + "beitragen", + "zähler", + "beantragt", + "gefühle", + "ergab", + "wesen", + "betreibt", + "brauche", + "überprüft", + "auflage", + "besetzten", + "jazz", + "stern", + "mangel", + "tasche", + "scharping", + "verschoben", + "hund", + "barbara", + "volle", + "melden", + "d.h.", + "weshalb", + "berühmten", + "dokument", + "öl", + "anerkannt", + "genannten", + "echte", + "dw", + "reduzieren", + "bundes", + "komplett", + "mainz", + "sprachen", + "fliegen", + "liebsten", + "folgende", + "maßnahme", + "konzerns", + "hinsicht", + "benutzen", + "richten", + "mehrere", + "adresse", + "meldung", + "modelle", + "schließung", + "umbau", + "speziell", + "vaters", + "verlangte", + "fachleute", + "chaos", + "zehn", + "abgesehen", + "reaktionen", + "monatlich", + "operation", + "geäußert", + "hinnehmen", + "gebraucht", + "fünfzig", + "bestand", + "report", + "türken", + "kroaten", + "dachte", + "verbindet", + "papiere", + "liga", + "mir", + "studien", + "maße", + "einerseits", + "büros", + "scharf", + "teure", + "ausgebaut", + "teuren", + "gremium", + "bildschirm", + "innere", + "überlegen", + "hoffe", + "dir", + "sätze", + "gefaßt", + "anhand", + "formuliert", + "chinas", + "räumt", + "ehefrau", + "gewissen", + "morgens", + "erfassen", + "j.", + "stars", + "absatz", + "sturm", + "begrenzt", + "eigentümer", + "klagt", + "löst", + "ihrem", + "militärs", + "finde", + "aufstieg", + "gebiete", + "genossen", + "kinkel", + "rente", + "kommende", + "ware", + "kämen", + "ergänzt", + "genf", + "gestaltet", + "normale", + "katalog", + "stünden", + "heutige", + "systeme", + "vierte", + "datum", + "finger", + "zufall", + "wolf", + "standard", + "betreut", + "demnach", + "dokumente", + "armut", + "verfolgen", + "gebrauch", + "steuer", + "prag", + "hinterher", + "kampagne", + "tanz", + "bezieht", + "geburt", + "existiert", + "startet", + "hermann", + "geheimnis", + "ansprüche", + "arm", + "lange", + "wirkte", + "rudolf", + "arme", + "treiben", + "umzug", + "verletzung", + "lasten", + "lässt", + "premier", + "scheitern", + "muster", + "lufthansa", + "befand", + "sicherung", + "abgegeben", + "jahrelang", + "aufgegeben", + "abgebaut", + "masse", + "abzug", + "begrüßt", + "käme", + "zitiert", + "drücken", + "niedriger", + "kurzer", + "radio", + "verlegt", + "freut", + "spezielle", + "fünften", + "breite", + "star", + "gegend", + "direkten", + "karte", + "letzter", + "erinnerte", + "instituts", + "schauen", + "seinerzeit", + "turnier", + "leichte", + "ost", + "profis", + "kiel", + "genau", + "engen", + "absolute", + "fritz", + "handeln", + "aufschwung", + "vertretern", + "nazis", + "wilhelm", + "kilometern", + "gesteigert", + "minus", + "zentrale", + "paar", + "religion", + "seitdem", + "beifall", + "merkmale", + "grundstück", + "halbes", + "sarajewo", + "kurt", + "herrschaft", + "verbinden", + "tier", + "gesenkt", + "öffnung", + "drohen", + "einziges", + "umgekehrt", + "konflikte", + "ähnlich", + "baum", + "kapitän", + "planen", + "ots", + "betrachten", + "front", + "geliefert", + "gastgeber", + "stadion", + "trennen", + "lebte", + "längere", + "gefahren", + "produkten", + "senkung", + "kritisch", + "anschluß", + "darmstadt", + "wachsenden", + "böblingen", + "wuchs", + "spenden", + "zugelassen", + "lastwagen", + "klären", + "ulrich", + "schönheit", + "antworten", + "milosevic", + "bezirk", + "liberalen", + "vielzahl", + "geringen", + "erkennt", + "stabilität", + "orchester", + "eigener", + "deutsch", + "sänger", + "durchs", + "kämpfe", + "fraktionen", + "klaren", + "weiter", + "erzeugen", + "franc", + "beklagt", + "gibt's", + "bezogen", + "anlegen", + "graf", + "unterricht", + "kommentar", + "etat", + "tiefer", + "minderheit", + "index", + "brigitte", + "umsätze", + "tat", + "einstigen", + "seither", + "aufruf", + "rufen", + "rumänien", + "augsburg", + "einladung", + "gewährt", + "bewiesen", + "regelungen", + "west", + "bricht", + "landrat", + "zugute", + "langer", + "streng", + "hunderte", + "unterlagen", + "schlag", + "sammeln", + "instrument", + "bischof", + "holte", + "aussichten", + "kredite", + "äußern", + "tv", + "verteilung", + "proteste", + "hohem", + "geringe", + "israels", + "joachim", + "jederzeit", + "suchte", + "ändert", + "nato", + "verlängert", + "geworfen", + "respekt", + "derartige", + "lieben", + "ring", + "technisch", + "plänen", + "angesehen", + "englische", + "akt", + "vogel", + "sinken", + "mercedes", + "wenden", + "lsw", + "hierzu", + "wandel", + "handwerk", + "tote", + "stoiber", + "singen", + "bekämpfung", + "ensemble", + "besetzung", + "erstmals", + "belegen", + "perfekt", + "gemäß", + "gesammelt", + "helfer", + "definition", + "wider", + "versorgt", + "jobs", + "show", + "volkes", + "verbände", + "flächen", + "rainer", + "empfangen", + "konsequent", + "sozusagen", + "lauter", + "datenbank", + "wohnen", + "institute", + "dicht", + "darauf", + "offenbach", + "alkohol", + "bevor", + "vermuten", + "hanau", + "ca", + "drohte", + "jan", + "daneben", + "ehemaliger", + "erzählung", + "uwe", + "ernsthaft", + "streik", + "gefällt", + "armen", + "schaut", + "jenem", + "schuldig", + "erfährt", + "statistik", + "kreisen", + "bürgerhaus", + "verhandeln", + "gegenstand", + "oberfläche", + "befreit", + "verhalten", + "pc", + "ermordet", + "binnen", + "konsequenz", + "drängen", + "heidelberg", + "hab", + "erläuterte", + "city", + "stärken", + "anläßlich", + "verkündet", + "zusammen", + "stieß", + "gas", + "gezielt", + "quelle", + "volumen", + "schaffung", + "malerei", + "madrid", + "sechs", + "k.", + "handele", + "tiefe", + "stufe", + "mütter", + "zeilen", + "leider", + "studierte", + "engagiert", + "verweigert", + "ihm", + "dran", + "stelle", + "laden", + "daneben", + "einzig", + "preisen", + "bedient", + "rechte", + "rote", + "jüdische", + "träger", + "genaue", + "ehre", + "wahre", + "wieviel", + "ausgeführt", + "anträge", + "esslingen", + "endete", + "angriffe", + "chemie", + "serbien", + "mehrmals", + "kleinen", + "einander", + "internen", + "eigens", + "sponsoren", + "leidet", + "vorsichtig", + "genauer", + "klassen", + "bitte", + "darstellen", + "häusern", + "truppe", + "bedarf", + "normal", + "telephon", + "kassel", + "rundfunk", + "schnee", + "abrechnung", + "stoppen", + "damalige", + "erwarteten", + "thüringen", + "örtlichen", + "schau", + "versehen", + "speziellen", + "vollen", + "nutzen", + "hinblick", + "tagung", + "versetzt", + "zuordnung", + "südlich", + "schätzen", + "sprachen", + "riesige", + "kämpft", + "stich", + "innerhalb", + "umfassende", + "zustimmen", + "bewegungen", + "nürnberger", + "inszeniert", + "kritischen", + "zugestimmt", + "tour", + "genehmigt", + "ausgang", + "these", + "sachen", + "mode", + "müll", + "zufällig", + "absage", + "sand", + "profil", + "gerufen", + "vernunft", + "unglück", + "entlastung", + "korruption", + "amsterdam", + "dreht", + "feste", + "zerstörung", + "rhein", + "mörder", + "fehlte", + "all", + "tourismus", + "lohn", + "autorin", + "gottes", + "direkte", + "mittleren", + "ansatz", + "element", + "live", + "historiker", + "frisch", + "kritische", + "singt", + "last", + "vielfalt", + "klassische", + "erlitten", + "moral", + "trafen", + "deutsch", + "vorsprung", + "hitler", + "kulturelle", + "sekunde", + "erich", + "größter", + "kandidat", + "enge", + "fluß", + "ähnlichen", + "gefolgt", + "einmal", + "meistens", + "gegenüber", + "passen", + "regionalen", + "quer", + "mediziner", + "günther", + "genießen", + "gramm", + "essen", + "prof", + "leichten", + "militär", + "vision", + "norwegen", + "wünscht", + "stürmer", + "frankfurt", + "inklusive", + "journalist", + "station", + "rolf", + "geeinigt", + "ferner", + "liebt", + "ausgehen", + "museen", + "affäre", + "serbische", + "töne", + "intensiv", + "deutlicher", + "fassen", + "aufführung", + "zahlung", + "prognose", + "war", + "versprach", + "wein", + "mailand", + "uni", + "ursula", + "portugal", + "vortag", + "büchern", + "meldet", + "motiv", + "ließe", + "durchbruch", + "wünsche", + "erkennbar", + "vornehmen", + "schumacher", + "lieder", + "fr", + "geschehen", + "arabischen", + "drin", + "niedrigen", + "nutzt", + "vielfach", + "christen", + "wieder", + "ob", + "quellen", + "folgten", + "fakten", + "aufgelöst", + "ägypten", + "eröffnen", + "benötigen", + "gründete", + "vertraut", + "zuschüsse", + "erhältlich", + "fortsetzen", + "hals", + "inseln", + "zusätzlich", + "bayerns", + "klub", + "ermitteln", + "buches", + "therapie", + "öfter", + "verdanken", + "erwachsene", + "konsens", + "explosion", + "fügte", + "dunklen", + "beschloß", + "wachsende", + "sobald", + "öffnet", + "parlaments", + "jedes", + "drauf", + "enger", + "argumente", + "gipfel", + "erstellen", + "bauer", + "gelingen", + "verläßt", + "kann", + "parteichef", + "phänomen", + "umstritten", + "scheiterte", + "bemerkt", + "johannes", + "gerüchte", + "iii", + "ausmaß", + "treffer", + "stolz", + "iwf", + "heftigen", + "bemühen", + "kammer", + "schülern", + "globalen", + "branchen", + "redet", + "passagiere", + "gebunden", + "rücksicht", + "drastisch", + "option", + "lieferung", + "menschheit", + "reinen", + "haare", + "schäfer", + "entdecken", + "plätzen", + "fürchtet", + "angeben", + "jörg", + "beherrscht", + "sturz", + "weitaus", + "sofern", + "existieren", + "reisen", + "skandal", + "räumen", + "zugrunde", + "ibm", + "tieren", + "nachwuchs", + "st.", + "treffpunkt", + "gelangt", + "derweil", + "rollen", + "wendet", + "greenpeace", + "vorgaben", + "spielten", + "verringert", + "abwehr", + "geschützt", + "annahme", + "getrieben", + "erreichten", + "japaner", + "stärksten", + "kreise", + "generell", + "solange", + "städtische", + "einsicht", + "anzeigen", + "böse", + "parallel", + "wagner", + "erstenmal", + "fähigkeit", + "anliegen", + "befreiung", + "total", + "test", + "vorläufig", + "zeile", + "gebucht", + "abends", + "mythos", + "vierzig", + "ansonsten", + "werben", + "gehirn", + "erwerben", + "substanz", + "unteren", + "rostock", + "rentner", + "zweites", + "dgb", + "vorstoß", + "deutlichen", + "musste", + "bewahren", + "motive", + "erledigt", + "vorlegen", + "vertritt", + "deren", + "weiten", + "sowohl", + "schwarz", + "akademie", + "löste", + "luxemburg", + "euch", + "empfehlen", + "linke", + "erwähnt", + "schönsten", + "kleine", + "entdeckung", + "taten", + "waffe", + "löschen", + "golf", + "etliche", + "zugriff", + "leverkusen", + "einzelner", + "jenes", + "hierfür", + "loch", + "verwandelt", + "kehrt", + "eingeräumt", + "holding", + "ansehen", + "ausfallen", + "merkmal", + "dfb", + "füßen", + "letztes", + "stoffe", + "regime", + "schweigen", + "periode", + "feierte", + "durften", + "for", + "abenteuer", + "endgültige", + "bittet", + "redaktion", + "reden", + "gästen", + "versteckt", + "immobilien", + "kilo", + "gerichtet", + "ludwig", + "börsen", + "echten", + "bezeichnen", + "überblick", + "kündigung", + "zumindest", + "krank", + "stehenden", + "faust", + "freistaat", + "soll", + "fazit", + "jemals", + "umstellung", + "spanische", + "komponente", + "verbandes", + "gewußt", + "brechen", + "handelte", + "lediglich", + "rot-grünen", + "gerettet", + "müde", + "streiten", + "genügt", + "kulturen", + "ehemals", + "herrschte", + "steigenden", + "meldungen", + "kindheit", + "bewölkt", + "oft", + "freundlich", + "betreiber", + "hanauer", + "besorgt", + "restlichen", + "erlauben", + "etwas", + "un", + "gestoßen", + "bibliothek", + "berichten", + "gute", + "lied", + "agentur", + "gemeinsam", + "erwerb", + "sportler", + "geborene", + "quote", + "berechnet", + "komödie", + "religiösen", + "offenbar", + "münchener", + "einzug", + "schwach", + "quasi", + "schildert", + "sonst", + "motor", + "rettung", + "aufgeben", + "drängt", + "geholfen", + "schuß", + "verglichen", + "protokoll", + "sozial", + "christine", + "zunahme", + "börsengang", + "wohl", + "vermag", + "gestoppt", + "offensive", + "gehöre", + "behandeln", + "sogar", + "gelaufen", + "do", + "brüder", + "mitunter", + "entlassung", + "aufgeführt", + "inflation", + "übergang", + "monika", + "bearbeitet", + "sicher", + "löhne", + "filmen", + "heimischen", + "gefüllt", + "unrecht", + "magazin", + "detail", + "kürzungen", + "begannen", + "begegnen", + "entdeckte", + "geholt", + "massiven", + "umgehen", + "potential", + "einfacher", + "verließ", + "weite", + "münster", + "rock", + "franken", + "sanktionen", + "anfangs", + "jüngeren", + "köpfe", + "bayer", + "weniger", + "eingeben", + "zugesagt", + "mehrerer", + "eines", + "besuchern", + "blauen", + "ehemann", + "haar", + "defizit", + "bach", + "halbfinale", + "fax", + "lebende", + "skeptisch", + "reichte", + "karin", + "irland", + "realisiert", + "verfolgung", + "geleitet", + "tages", + "andrea", + "senator", + "optimismus", + "tränen", + "westliche", + "singapur", + "leeren", + "zwingen", + "zeitweise", + "ersatz", + "to", + "linken", + "flügel", + "erhalt", + "jung", + "stimmten", + "außer", + "bedrohung", + "romans", + "scheitern", + "oberen", + "locker", + "eventuell", + "impulse", + "opfern", + "gestohlen", + "vorliegen", + "wandte", + "drehen", + "einstimmig", + "v.chr.", + "koch", + "täglichen", + "darstellt", + "verteidigt", + "massiv", + "brüsseler", + "verteilen", + "messer", + "entfallen", + "aufhebung", + "klagen", + "weber", + "prognosen", + "flugzeuge", + "vergangene", + "karlsruher", + "angehörige", + "geltend", + "geschmack", + "völker", + "derselben", + "holland", + "führe", + "kommunalen", + "lokalen", + "fassung", + "nationen", + "pkk", + "ruhestand", + "empfohlen", + "flug", + "dimension", + "verdoppelt", + "dortigen", + "films", + "gegründete", + "aufbauen", + "steigende", + "wohin", + "gegenzug", + "erbe", + "taiwan", + "wohnt", + "bearbeiten", + "schöner", + "festival", + "bedeute", + "lautete", + "held", + "auflagen", + "nehme", + "angeht", + "kompetenz", + "freizeit", + "stoßen", + "fabrik", + "reiche", + "deutet", + "wann", + "überwinden", + "blickt", + "studiert", + "beratungen", + "lebten", + "finanzen", + "spielern", + "chor", + "freier", + "laufzeit", + "ali", + "harald", + "vollkommen", + "photo", + "hob", + "ministerin", + "präsenz", + "gewohnt", + "delegation", + "geltenden", + "sonnabend", + "exakt", + "architekt", + "anton", + "helga", + "abs", + "heftige", + "schwarz", + "release", + "altstadt", + "leiden", + "italiens", + "schiffe", + "bruch", + "füllen", + "eg", + "werden", + "begangen", + "zugänglich", + "erika", + "ausnahmen", + "gehalt", + "polnische", + "diesmal", + "varianten", + "nerven", + "flammen", + "zeuge", + "befreien", + "zeige", + "nördlich", + "kandidatur", + "lohnt", + "steuern", + "islam", + "still", + "programms", + "kleidung", + "neuerdings", + "anderswo", + "sage", + "max", + "dorthin", + "gründen", + "errichten", + "märkten", + "märchen", + "inhalte", + "null", + "kubikmeter", + "marketing", + "nötigen", + "arbeitsamt", + "planungen", + "bedingung", + "tübingen", + "weder", + "gewannen", + "sabine", + "dass", + "plädiert", + "bist", + "gekostet", + "bearbeiten", + "lesen", + "getreten", + "usd", + "leise", + "überdies", + "mißbrauch", + "klubs", + "überleben", + "termine", + "stirbt", + "exil", + "effekt", + "leiche", + "prozesse", + "dramatisch", + "stimmte", + "stadtwerke", + "lächeln", + "fügt", + "negativ", + "griff", + "verlierer", + "übersehen", + "orten", + "cd", + "kindes", + "wirksam", + "goethe", + "instanz", + "fraglich", + "erziehung", + "tschechien", + "frist", + "gelöscht", + "klagen", + "brot", + "miete", + "göppingen", + "wut", + "südlichen", + "schlimmer", + "gesichter", + "ralf", + "einbruch", + "verraten", + "interne", + "neuem", + "w.", + "anzeichen", + "eineinhalb", + "zuordnen", + "villa", + "schwierige", + "sieben", + "auswertung", + "berechnung", + "sehr", + "befassen", + "gewünschte", + "aspekt", + "bekamen", + "witz", + "austausch", + "schwachen", + "schäuble", + "angemeldet", + "fühlte", + "konkurs", + "geschah", + "erfüllung", + "engel", + "neuer", + "inland", + "massive", + "gerd", + "angehören", + "aktiven", + "fremden", + "gebrochen", + "geregelt", + "zwecke", + "daran", + "zugenommen", + "gerichte", + "jury", + "humor", + "entfernung", + "römer", + "genannte", + "angebracht", + "gestrigen", + "udssr", + "marktes", + "befaßt", + "wußten", + "gertrud", + "weiß", + "disziplin", + "stahl", + "center", + "bunten", + "rechner", + "furcht", + "günstig", + "tiefe", + "bewältigen", + "heiße", + "autors", + "sehnsucht", + "gefangenen", + "fülle", + "älter", + "weltweite", + "skepsis", + "erweist", + "ganzes", + "ausgewählt", + "magdeburg", + "gleichwohl", + "siegfried", + "gewissen", + "kündigt", + "geschossen", + "mannesmann", + "spürbar", + "spielraum", + "integriert", + "verkündete", + "syrien", + "fließt", + "eva", + "lob", + "stabil", + "eigenem", + "kinos", + "gleich", + "starben", + "aussieht", + "straftaten", + "heran", + "moderner", + "kürze", + "km", + "verstärken", + "dresdner", + "ebenfalls", + "ernannt", + "vertrieben", + "planeten", + "illegal", + "digitalen", + "hörte", + "momentan", + "kalt", + "vorjahres", + "weiblichen", + "brauchte", + "können", + "erheben", + "sozialer", + "warnen", + "juristen", + "besonderer", + "schwäche", + "vermieden", + "konzepte", + "rot-grüne", + "bombe", + "spannungen", + "faktoren", + "dahinter", + "via", + "halbzeit", + "ausstieg", + "ausweitung", + "gemälde", + "opel", + "empfang", + "aktive", + "entziehen", + "überfall", + "rendite", + "rückt", + "erhofft", + "tunnel", + "berühmte", + "gelegenen", + "erarbeitet", + "messen", + "schaffte", + "behauptung", + "athen", + "drückt", + "petra", + "geiseln", + "hast", + "gesetzlich", + "ufer", + "anpassung", + "gesetzes", + "ohr", + "überleben", + "zeit", + "nahrung", + "indonesien", + "vergabe", + "vorzeitig", + "weitem", + "konkret", + "verwiesen", + "nachfolge", + "kriegen", + "bestanden", + "mission", + "unbekannte", + "tabellen", + "lärm", + "diplomaten", + "spanier", + "leitete", + "senioren", + "leipziger", + "bereiten", + "gabriele", + "amerikas", + "kontrollen", + "beleg", + "läden", + "erfuhr", + "männlichen", + "markiert", + "business", + "gewidmet", + "r.", + "kreuz", + "tiefen", + "annehmen", + "hollywood", + "erzählte", + "klarheit", + "enden", + "erster", + "holt", + "senats", + "sitze", + "wurzeln", + "verlaufen", + "matthias", + "rechten", + "regiert", + "partnern", + "vogts", + "claudia", + "niedrig", + "formel", + "bestraft", + "grün", + "beauftragt", + "eröffnete", + "renate", + "signale", + "olympia", + "gründlich", + "fertigung", + "athleten", + "ausführung", + "jungs", + "knie", + "überaus", + "hebt", + "errichtung", + "sicheren", + "arafat", + "korrekt", + "drama", + "kenne", + "studio", + "verringern", + "aufzubauen", + "konzerne", + "zeitalter", + "tests", + "substanzen", + "jedenfalls", + "betten", + "beute", + "grundsatz", + "bitten", + "aspekte", + "haß", + "ständigen", + "königin", + "bgb", + "manches", + "is", + "erlitt", + "begreifen", + "verliehen", + "erhöhten", + "bauch", + "schrift", + "leiten", + "jährlichen", + "allemal", + "gisela", + "zunehmende", + "hut", + "indischen", + "entstehung", + "studieren", + "angabe", + "ära", + "blätter", + "negativen", + "eingehen", + "bedienen", + "runden", + "hoechst", + "benannt", + "weichen", + "bakterien", + "daniel", + "glaubte", + "vorsitz", + "bat", + "balkan", + "beschädigt", + "dicken", + "befragten", + "a.", + "brust", + "schlossen", + "gewinner", + "römischen", + "christoph", + "meines", + "erlebte", + "anfangen", + "chirac", + "niemanden", + "wehren", + "bisweilen", + "stürzte", + "leichen", + "seinen", + "empfehlung", + "erlassen", + "di", + "gleicher", + "regionale", + "bgh", + "gefährden", + "trinken", + "vorsicht", + "englisch", + "lobte", + "warnung", + "günstigen", + "inc.", + "nachweisen", + "östlichen", + "anwälte", + "norbert", + "geht's", + "südwesten", + "finnland", + "profitiert", + "südkorea", + "markieren", + "kürzung", + "gleichwohl", + "üben", + "umfragen", + "ausländern", + "berge", + "fehlende", + "schrecken", + "jagd", + "angesagt", + "rechtlich", + "sorgten", + "verweisen", + "erfordert", + "hessische", + "vfb", + "erweitern", + "begegnet", + "demokraten", + "übers", + "bevorzugt", + "dauerte", + "beruht", + "blumen", + "gezählt", + "ulm", + "träume", + "einbezogen", + "fünfzehn", + "gekürzt", + "photos", + "fester", + "kehrte", + "wechselt", + "resultat", + "zweifellos", + "denkmal", + "design", + "erholung", + "gelebt", + "gedroht", + "mo", + "prinz", + "marktplatz", + "dirk", + "café", + "acht", + "mandat", + "haftbefehl", + "spätere", + "diente", + "parkplatz", + "künstlern", + "materials", + "g.", + "vögel", + "zählte", + "busse", + "video", + "digitale", + "albert", + "rezession", + "pferde", + "schriften", + "bekämpfen", + "bestellung", + "hunde", + "orte", + "schlimm", + "gedanke", + "beste", + "interviews", + "fünfte", + "trugen", + "selbstmord", + "früherer", + "schuhe", + "privat", + "medium", + "unbekannte", + "etc.", + "abgelegt", + "sichere", + "bosnische", + "friedhof", + "wände", + "stärkere", + "e.v.", + "bayerische", + "konten", + "wem", + "empfänger", + "renten", + "typisch", + "heuer", + "strecken", + "tal", + "linke", + "beeinflußt", + "votum", + "natürliche", + "vorhandene", + "angemessen", + "komplette", + "weimar", + "milch", + "anmeldung", + "monats", + "chemische", + "moslems", + "reich", + "rhythmus", + "werten", + "japans", + "mangelnde", + "übersetzt", + "landen", + "f.", + "ehepaar", + "netanjahu", + "genuß", + "mängel", + "coach", + "siedlung", + "kletterte", + "illegalen", + "schickt", + "sorgfältig", + "springen", + "kieler", + "welle", + "fehlten", + "traten", + "schock", + "negative", + "nötige", + "rwe", + "ford", + "glanz", + "schlacht", + "wirbt", + "kostete", + "anordnung", + "erwies", + "bochum", + "charme", + "begrüßte", + "ankunft", + "ingrid", + "gibt", + "ökologisch", + "klavier", + "faktor", + "schickte", + "söhne", + "verleger", + "toren", + "pakistan", + "aufregung", + "unterhalb", + "texten", + "investor", + "kannte", + "unbekannt", + "krebs", + "infotyp", + "offener", + "rühe", + "triumph", + "rät", + "zahlungen", + "engländer", + "chemischen", + "mühsam", + "ausbauen", + "e.", + "notfalls", + "bedingt", + "umgehend", + "wüste", + "zuschuß", + "wenigsten", + "kommune", + "gewerbe", + "experiment", + "darüber", + "angepaßt", + "indessen", + "d-mark", + "dortmunder", + "daraus", + "gänzlich", + "dasa", + "bester", + "zahlreiche", + "daraufhin", + "jahrestag", + "christa", + "bergen", + "geladen", + "grundlagen", + "dingen", + "belasten", + "steine", + "feldern", + "landstraße", + "ermittler", + "hsv", + "ausbruch", + "beschlüsse", + "anzubieten", + "liebe", + "streichen", + "stadthalle", + "pferd", + "vietnam", + "längeren", + "ausgeben", + "erzielten", + "währungen", + "darlehen", + "kälte", + "tennis", + "em", + "lektüre", + "zelle", + "chinesen", + "prüft", + "projekts", + "ermordung", + "lesung", + "einzelfall", + "fern", + "heiß", + "logik", + "gattung", + "schwung", + "staatschef", + "stasi", + "hildegard", + "bestehen", + "derzeitige", + "indirekt", + "fällig", + "aids", + "anleihen", + "warschau", + "womit", + "fernseher", + "weltbank", + "räumen", + "gedreht", + "gedicht", + "male", + "gewähren", + "angeordnet", + "rekord", + "vergnügen", + "erfunden", + "beseitigt", + "zulässig", + "gutachter", + "erwarte", + "nördlichen", + "auschwitz", + "genießt", + "erfolgte", + "füße", + "wechselte", + "wichtig", + "anstatt", + "älteste", + "baustelle", + "arbeitslos", + "nord", + "geduld", + "beweist", + "dörfer", + "muslime", + "tips", + "elf", + "aufnahmen", + "kontinent", + "beseitigen", + "billig", + "präsent", + "jetzige", + "ihrerseits", + "ach", + "mainzer", + "schichten", + "ärzten", + "erwartete", + "sex", + "lyrik", + "torwart", + "vornherein", + "platte", + "ressourcen", + "saßen", + "enorm", + "orientiert", + "verfahrens", + "knapp", + "ersten", + "prompt", + "vereinen", + "markus", + "präsidium", + "taucht", + "blockiert", + "hohes", + "leiterin", + "umstände", + "festhalten", + "fortan", + "strikt", + "einwohnern", + "feier", + "väter", + "israelis", + "filialen", + "http", + "erweisen", + "deswegen", + "mochte", + "knappen", + "kräftigen", + "bein", + "klar", + "verkaufte", + "derer", + "songs", + "beachten", + "gleichsam", + "schweigen", + "schwächen", + "lachen", + "bundesland", + "stärkung", + "anwender", + "boeing", + "usw", + "schießen", + "gebäudes", + "töchter", + "wäre", + "absturz", + "boot", + "alpen", + "landete", + "fahrbahn", + "verschärft", + "locken", + "dessen", + "gewordenen", + "kümmert", + "ggf", + "fünftel", + "religiöse", + "mehrzahl", + "feind", + "beklagen", + "unruhe", + "fühle", + "dichtung", + "fahrzeugen", + "verrät", + "nutzer", + "verbringen", + "beides", + "priester", + "nutzte", + "armen", + "überlebt", + "talent", + "festnahme", + "ältesten", + "einrichten", + "angelika", + "berechtigt", + "student", + "kauft", + "kuba", + "angesetzt", + "rechtliche", + "stichwort", + "dynamik", + "budapest", + "lücke", + "versorgen", + "übersicht", + "chefs", + "gewaltigen", + "mond", + "tragödie", + "kräften", + "neu", + "legende", + "zivilisten", + "mi", + "spätestens", + "ruanda", + "fahrrad", + "bescheiden", + "ankara", + "weibliche", + "nachteil", + "wenig", + "aktuell", + "zulassung", + "paß", + "revision", + "mittlere", + "pro", + "linien", + "gutem", + "infolge", + "kämpfer", + "autonomie", + "bewährung", + "erträge", + "jüngster", + "bestimmter", + "wichtiges", + "hoffmann", + "eintrag", + "patient", + "fördert", + "eigentum", + "besuchte", + "stationen", + "jubiläum", + "bad", + "freien", + "erwartung", + "gestärkt", + "rücken", + "biographie", + "annähernd", + "physiker", + "reporter", + "strich", + "privater", + "sechsten", + "stärkste", + "strebt", + "suchten", + "lernt", + "bestimmung", + "abgesetzt", + "wisse", + "van", + "rechts", + "ötv", + "hunger", + "manuell", + "notiert", + "stört", + "group", + "angefangen", + "heim", + "rätsel", + "beurteilen", + "jäger", + "gedrängt", + "gedruckt", + "schuld", + "lacht", + "einhaltung", + "stille", + "schwarzen", + "lothar", + "gesteckt", + "zuhörer", + "museums", + "stuttgart", + "urlauber", + "nächster", + "bestreiten", + "oftmals", + "bagdad", + "ewig", + "roland", + "prinzipien", + "steuert", + "heutzutage", + "piloten", + "maßgeblich", + "herstellen", + "globale", + "bulgarien", + "geredet", + "keiner", + "absoluten", + "sinkt", + "eingriff", + "überwunden", + "werkstatt", + "chicago", + "springen", + "zusage", + "stören", + "verlief", + "birgit", + "main", + "new", + "ergänzen", + "abgestimmt", + "kapazität", + "ertrag", + "bewahrt", + "erkannte", + "sportliche", + "hilfen", + "maßstab", + "geste", + "auswählen", + "freilich", + "bestritten", + "gebürtige", + "knoten", + "blicken", + "zone", + "wen", + "anderthalb", + "aufenthalt", + "rad", + "wille", + "richtete", + "versagt", + "zuletzt", + "exemplare", + "schulter", + "expansion", + "angetreten", + "gewünscht", + "begriffen", + "trost", + "verfasser", + "abitur", + "wenige", + "lieferte", + "liefen", + "kohle", + "zuschlag", + "geschäften", + "mißtrauen", + "schmerzen", + "entlastet", + "reinhard", + "tatsachen", + "freiburger", + "wirkliche", + "strengen", + "ironie", + "asyl", + "ständige", + "unlängst", + "träumen", + "praktische", + "moralische", + "deutsches", + "empörung", + "jüngere", + "fehlenden", + "russland", + "buchstaben", + "zorn", + "baute", + "begriffe", + "angekommen", + "knochen", + "fremde", + "mieten", + "leistet", + "zeichnen", + "bewirkt", + "früchte", + "fremd", + "umwandlung", + "wagen", + "nachhaltig", + "häftlinge", + "zerstören", + "listen", + "abbruch", + "en", + "demnach", + "sparte", + "thailand", + "siehe", + "notierte", + "schwache", + "broschüre", + "stuhl", + "lauten", + "wärme", + "devise", + "kameras", + "wirklichen", + "vorfall", + "mafia", + "ängste", + "polizist", + "starker", + "decke", + "auslösen", + "mannheimer", + "passanten", + "bald", + "aufkommen", + "ändern", + "sollten", + "bruno", + "budget", + "katholiken", + "begleiten", + "attraktiv", + "krone", + "sterne", + "jahrzehnt", + "wiese", + "jegliche", + "block", + "grab", + "entnehmen", + "dicke", + "freigabe", + "autorität", + "streiks", + "soeben", + "dieselbe", + "dilemma", + "wohlstand", + "aussteller", + "standorte", + "fängt", + "fisch", + "hitze", + "epoche", + "rückstand", + "entdeckten", + "lägen", + "angeklagt", + "benötigten", + "gestalten", + "plötzlich", + "verknüpft", + "bundesamt", + "erlös", + "real", + "trio", + "seoul", + "verläuft", + "klagte", + "anhörung", + "rasen", + "ferne", + "vorrang", + "verfügbar", + "mandanten", + "cursor", + "jelzins", + "projekten", + "begrüßen", + "insofern", + "bedeutende", + "gewählten", + "com", + "annäherung", + "mindestens", + "la", + "erfindung", + "bauten", + "drohung", + "beklagte", + "geistigen", + "längerem", + "zigaretten", + "c.", + "d.", + "bedenken", + "spiegelt", + "verwandten", + "fliegt", + "merkt", + "schulz", + "gerichts", + "vernichtet", + "unruhen", + "leinwand", + "tödlich", + "dunkle", + "bestreitet", + "nebenbei", + "ausweg", + "irakischen", + "rot", + "einstige", + "panik", + "untersagt", + "inhaber", + "rache", + "differenz", + "duisburg", + "priorität", + "susanne", + "willi", + "legen", + "versammelt", + "ebenen", + "köpfen", + "original", + "online", + "ingenieure", + "schuf", + "kirch", + "gaststätte", + "inmitten", + "sicherte", + "fehle", + "kliniken", + "sarajevo", + "gesund", + "stürzen", + "jens", + "typischen", + "lokale", + "neuwahlen", + "möller", + "turm", + "tanzen", + "party", + "warfen", + "appell", + "erreichbar", + "albanien", + "erwin", + "meyer", + "spielzeit", + "beliebt", + "konzerte", + "süd", + "besonderes", + "vorliegt", + "bewerten", + "grosny", + "soldat", + "hochzeit", + "verstärkte", + "umsonst", + "belgischen", + "akteure", + "intendant", + "akzeptanz", + "überlegt", + "spürt", + "silber", + "metropole", + "terror", + "setze", + "standards", + "nächstes", + "entsorgung", + "antwortete", + "frühzeitig", + "versöhnung", + "befanden", + "fremde", + "lehnen", + "erfurt", + "lachen", + "strand", + "mißbraucht", + "gründer", + "ruhm", + "extra", + "parkett", + "zuweilen", + "wolken", + "wählt", + "datei", + "areal", + "stammdaten", + "hang", + "gespart", + "russischer", + "größerer", + "heroin", + "ahnung", + "mittelfeld", + "trauer", + "sonstigen", + "florida", + "töten", + "toleranz", + "beurteilt", + "defizite", + "gedächtnis", + "behinderte", + "antonio", + "teheran", + "daimler", + "grauen", + "vollzogen", + "angehoben", + "schwestern", + "kategorie", + "gestört", + "berührt", + "ortsbeirat", + "umsetzen", + "menü", + "gespannt", + "unmut", + "wohnen", + "afp", + "überfallen", + "radikalen", + "übliche", + "gestürzt", + "erneuerung", + "venedig", + "axel", + "verordnung", + "bar", + "kloster", + "vermißt", + "einem", + "staub", + "betreten", + "s-bahn", + "istanbul", + "illegale", + "schmerz", + "elend", + "erdbeben", + "gewöhnt", + "obersten", + "schlugen", + "bestens", + "basiert", + "summen", + "jeweilige", + "abgelöst", + "erhebt", + "potsdamer", + "erneuten", + "decken", + "verlautete", + "theaters", + "na", + "künstlerin", + "engagieren", + "scharfe", + "kalten", + "entzogen", + "bedeckt", + "benzin", + "störungen", + "seither", + "diktatur", + "kanal", + "hansestadt", + "günstige", + "getestet", + "attentat", + "beck", + "lübeck", + "sir", + "pech", + "verbieten", + "eier", + "zeitlich", + "libanon", + "verwaltet", + "vorsieht", + "holocaust", + "untergang", + "spannend", + "zuwenig", + "mächtigen", + "p.", + "verwandeln", + "zukommen", + "komponist", + "aktivität", + "einbringen", + "zwang", + "dauerhaft", + "einträge", + "sichtlich", + "schmuck", + "romane", + "atem", + "beträge", + "dasselbe", + "behauptete", + "angehört", + "bund", + "klingen", + "gene", + "zaire", + "ansätze", + "irgend", + "archiv", + "basf", + "resonanz", + "enorme", + "landwirte", + "handwerker", + "algerien", + "reiz", + "plattform", + "zagreb", + "beweise", + "erstellung", + "historisch", + "brd", + "burg", + "anfragen", + "kriegsende", + "stockholm", + "anweisung", + "kreises", + "hölle", + "betrachter", + "vermieter", + "beitritt", + "altes", + "anlauf", + "reichtum", + "reagierten", + "blüm", + "fit", + "markieren", + "ginge", + "verleihen", + "analysiert", + "heiligen", + "eingabe", + "enormen", + "einfluss", + "kairo", + "kämpfen", + "typische", + "zuerst", + "empört", + "befehl", + "gemüse", + "aachen", + "verweigern", + "veränderte", + "beendete", + "massaker", + "mordes", + "korrigiert", + "eingestuft", + "typen", + "anstelle", + "cdu/csu", + "illusion", + "grunde", + "landesbank", + "james", + "klärung", + "daheim", + "umzusetzen", + "endlich", + "fach", + "landsleute", + "realen", + "poesie", + "bahnen", + "berger", + "gremien", + "konzeption", + "zustände", + "aol", + "euphorie", + "libero", + "umgeben", + "sexuellen", + "gebäuden", + "bunte", + "duell", + "fahrgäste", + "südamerika", + "spektrum", + "half", + "charles", + "rot", + "einkauf", + "verlegen", + "verhängt", + "gedrückt", + "fuchs", + "ordentlich", + "marken", + "kg", + "gedeckt", + "hierbei", + "antwortet", + "einordnung", + "satelliten", + "sektor", + "paket", + "charlotte", + "günstiger", + "befragt", + "verwickelt", + "freitags", + "allerlei", + "geltende", + "iranischen", + "problemlos", + "vollem", + "massen", + "sicherer", + "widmen", + "liegenden", + "jährliche", + "erwischt", + "diversen", + "straßburg", + "drohenden", + "doppelte", + "genauen", + "räuber", + "zwingt", + "major", + "allesamt", + "hamburgs", + "montags", + "ernährung", + "auftreten", + "streifen", + "rechnungen", + "marianne", + "würzburg", + "fassade", + "kenntnisse", + "gekämpft", + "möge", + "adressen", + "beendigung", + "baby", + "abgesagt", + "umsatzes", + "beliebig", + "ferien", + "griechen", + "flaschen", + "panzer", + "traurig", + "verdrängt", + "verstoßen", + "ämter", + "klinsmann", + "labor", + "noten", + "legendären", + "nachweis", + "gewöhnlich", + "trainiert", + "basel", + "materie", + "behindert", + "anschläge", + "niedrige", + "abstieg", + "rexrodt", + "engagierte", + "kreuzberg", + "kreuzung", + "stützen", + "wellen", + "dritter", + "anhebung", + "ermittlung", + "volker", + "gebühr", + "treuhand", + "großstadt", + "aufsehen", + "experte", + "liberalen", + "kassiert", + "vehement", + "laufbahn", + "reichstag", + "unfälle", + "darum", + "versuche", + "gleicht", + "ritter", + "physik", + "einmalige", + "präzise", + "biete", + "welten", + "sed", + "leib", + "thyssen", + "darunter", + "schwarze", + "beantragen", + "tatort", + "objekten", + "westeuropa", + "gelben", + "visionen", + "berühmt", + "resolution", + "jemanden", + "katharina", + "aufstand", + "teilten", + "mächtig", + "beschwerde", + "kette", + "clintons", + "unterkunft", + "gymnasium", + "profi", + "bibel", + "muß", + "meinungen", + "sobald", + "erfolglos", + "roth", + "lippen", + "möbel", + "frühstück", + "basler", + "dritter", + "verbirgt", + "diepgen", + "bildeten", + "schicht", + "freie", + "besetzen", + "leere", + "klassiker", + "weile", + "schlafen", + "paradies", + "startete", + "elke", + "dänischen", + "schlange", + "virus", + "zurück", + "huber", + "spiele", + "geschenk", + "ausgemacht", + "lizenz", + "mario", + "betracht", + "george", + "ii.", + "mangels", + "gitarre", + "u-bahn", + "arbeiteten", + "bitter", + "brücken", + "gesang", + "rassismus", + "löwen", + "oberste", + "errechnet", + "elbe", + "taktik", + "fische", + "seitens", + "bewährt", + "umstand", + "wiesen", + "geräten", + "erhaltung", + "äußeren", + "heiligen", + "siegte", + "pflegt", + "geforderte", + "ps", + "logistik", + "nie", + "belegte", + "insofern", + "sonntags", + "leid", + "format", + "bogen", + "regeln", + "handy", + "gewaltige", + "kabel", + "dazwischen", + "identisch", + "nah", + "onkel", + "abwarten", + "mozart", + "proben", + "sparkassen", + "abgenommen", + "rot-grün", + "entlasten", + "ioc", + "breiter", + "schwaben", + "echt", + "treu", + "techniken", + "stephan", + "führender", + "lupe", + "braun", + "fußgänger", + "abwicklung", + "testen", + "anzunehmen", + "pkw", + "saarland", + "spontan", + "raketen", + "bösen", + "zulegen", + "geeignete", + "verletzte", + "bedauert", + "liebhaber", + "henkel", + "platten", + "adolf", + "laden", + "worauf", + "billionen", + "beinen", + "genügen", + "untergrund", + "ansichten", + "jeden", + "verbrauch", + "veranlaßt", + "wodurch", + "überhaupt", + "inneren", + "zumal", + "nebel", + "favoriten", + "vermutlich", + "lustig", + "ignoriert", + "seminar", + "buchen", + "begleitung", + "bringe", + "wovon", + "begründen", + "neigung", + "jurist", + "verlängern", + "reiter", + "erspart", + "tänzer", + "friedlich", + "boom", + "lebendig", + "harmonie", + "überholt", + "plädierte", + "spalte", + "siedler", + "kohls", + "scharfen", + "world", + "temperatur", + "paare", + "drehte", + "fuhren", + "sauber", + "gesteuert", + "anbietet", + "maske", + "ausmachen", + "ähnliches", + "container", + "werkzeuge", + "schwächer", + "begeben", + "schultern", + "ding", + "diverse", + "luftwaffe", + "offiziere", + "westens", + "sendungen", + "vorgeführt", + "ordnen", + "belege", + "angebliche", + "zivilen", + "schoß", + "erben", + "geistige", + "matthäus", + "klein", + "bekenntnis", + "minder", + "vorkommen", + "insassen", + "schild", + "lehrerin", + "verübt", + "angeboten", + "foyer", + "erfassung", + "kundschaft", + "focus", + "zulassen", + "zählern", + "ferrari", + "gültig", + "kundgebung", + "frühestens", + "werkes", + "horizont", + "beziffert", + "rubel", + "gekündigt", + "bedeutete", + "semester", + "kripo", + "verpaßt", + "bescheid", + "erfreut", + "abfall", + "flughäfen", + "königs", + "multimedia", + "korrektur", + "bekräftigt", + "spekuliert", + "kredit", + "buche", + "breite", + "aufbringen", + "springt", + "möglicher", + "empfunden", + "staatlich", + "flasche", + "boris", + "uns", + "amtlichen", + "hessischen", + "torhüter", + "on", + "mitmachen", + "zukünftig", + "wilden", + "chile", + "schüsse", + "irgendwann", + "netzwerk", + "eingelegt", + "wenngleich", + "passagen", + "ehrlich", + "v.", + "erlebnis", + "unerwartet", + "zitierte", + "schottland", + "gutes", + "bäumen", + "erstens", + "vormittag", + "steuerung", + "faßt", + "schuster", + "mauern", + "kreml", + "slowakei", + "vermutung", + "wohnzimmer", + "westlich", + "radikale", + "windows", + "solide", + "comeback", + "dritte", + "kroatische", + "karadzic", + "edith", + "wertete", + "endspiel", + "bezahlung", + "vulkan", + "freute", + "gehälter", + "deuten", + "stetig", + "joseph", + "neueste", + "hallen", + "hierzu", + "kriege", + "koffer", + "herrscher", + "laune", + "brunnen", + "gültigen", + "verschafft", + "wehrt", + "willkommen", + "ansehen", + "geglaubt", + "berufliche", + "audi", + "erschöpft", + "billigen", + "stolpe", + "abap", + "stehende", + "hätte", + "bonn", + "besatzung", + "geführten", + "betonen", + "nahen", + "visier", + "aufrufen", + "applaus", + "esslinger", + "ertragen", + "bielefeld", + "blues", + "amtes", + "nationalen", + "seltener", + "gewiß", + "viermal", + "entführung", + "beschert", + "gesteht", + "erneute", + "heimlich", + "nannten", + "klarer", + "stirn", + "wälder", + "ruth", + "männliche", + "lockt", + "schlaf", + "bargeld", + "motivation", + "ideologie", + "peinlich", + "urteile", + "anzusehen", + "merken", + "göttingen", + "standpunkt", + "nervös", + "härte", + "verstoß", + "entfällt", + "verlangten", + "tägliche", + "geflogen", + "einsamkeit", + "zeitplan", + "derartigen", + "schieben", + "äußert", + "siege", + "rau", + "schauspiel", + "festlegung", + "vertretung", + "simon", + "seehofer", + "bildete", + "kriegt", + "weichen", + "werks", + "augsburger", + "verkäufer", + "betreffen", + "seiten", + "margarete", + "lebensjahr", + "debatten", + "ergänzung", + "eisen", + "verdankt", + "geldes", + "wild", + "allen", + "detlef", + "publikums", + "beschrieb", + "sprang", + "künftig", + "vertreiben", + "schmalen", + "bloße", + "abgabe", + "wunderbar", + "lernte", + "umland", + "lire", + "kaufte", + "ideale", + "operativen", + "aufhalten", + "pistole", + "zugelegt", + "schein", + "sympathie", + "höherer", + "stufen", + "werdenden", + "flut", + "drohe", + "künstlers", + "verkauften", + "fernen", + "kanzleramt", + "anblick", + "ringen", + "aktionären", + "will", + "bedacht", + "tauchen", + "erlöse", + "galten", + "heben", + "residenz", + "teilung", + "stammende", + "doris", + "besaß", + "moderator", + "lutz", + "auskünfte", + "nordirland", + "bewerbung", + "elfriede", + "spieltag", + "stillen", + "lehrern", + "sparpaket", + "auslöser", + "müssten", + "veba", + "programmen", + "neuordnung", + "gouverneur", + "wertvolle", + "zeug", + "überall", + "münchens", + "ausüben", + "bande", + "durchweg", + "ausführen", + "trainieren", + "goldenen", + "exporte", + "einblick", + "polens", + "vorzüge", + "stützt", + "heike", + "kalte", + "echo", + "witwe", + "ehrgeiz", + "ehren", + "kaufpreis", + "feinde", + "betrug", + "skulpturen", + "telecom", + "erobert", + "eingebaut", + "nationaler", + "angeregt", + "kanther", + "auftritte", + "energien", + "eintreten", + "regelrecht", + "dankbar", + "sichern", + "sängerin", + "verlagert", + "ba", + "bremsen", + "unschuld", + "aktiviert", + "palette", + "dieselben", + "finanzamt", + "nachteile", + "hitlers", + "gerda", + "nigeria", + "bewirken", + "bezüglich", + "äußerung", + "hürden", + "bleibt", + "ostern", + "regensburg", + "richtig", + "glaube", + "harry", + "verbreiten", + "manch", + "ursprung", + "oliver", + "analysen", + "erarbeiten", + "entfernten", + "rechne", + "sogleich", + "erzähler", + "flog", + "intern", + "zukünftige", + "volkswagen", + "emotionen", + "virtuellen", + "intensive", + "blaue", + "prinzessin", + "sydney", + "geringere", + "schade", + "elektronik", + "gewisser", + "auswirken", + "samstags", + "filiale", + "hierarchie", + "abgezogen", + "etabliert", + "shell", + "tätigen", + "kids", + "radfahrer", + "optimal", + "kuchen", + "sexuelle", + "mars", + "gefangene", + "verbergen", + "kaufmann", + "strenge", + "friedliche", + "metall", + "kranken", + "zähne", + "niemandem", + "schwarzer", + "verlorenen", + "ausgelegt", + "maastricht", + "verlage", + "wandern", + "gebilligt", + "verwirrung", + "liberale", + "leere", + "bemühen", + "einbußen", + "strafen", + "östlich", + "verdachts", + "sätzen", + "eingriffe", + "wänden", + "unterm", + "übt", + "verliebt", + "widmet", + "lobt", + "ira", + "neun", + "millimeter", + "vorgehen", + "porsche", + "spruch", + "langweilig", + "schiebt", + "tödlichen", + "bomben", + "beinhaltet", + "kurzerhand", + "zweiter", + "hörer", + "gestand", + "einwände", + "jedermann", + "enkel", + "entfernen", + "unterhält", + "paragraph", + "unsicher", + "thesen", + "american", + "aufbruch", + "buchung", + "beachtung", + "ausgeht", + "gesetzen", + "lebe", + "strategien", + "systemen", + "handle", + "hauch", + "fronten", + "podium", + "löcher", + "feinen", + "wagt", + "trage", + "bewegte", + "mehmet", + "jesus", + "national", + "zweitens", + "vorab", + "äußerten", + "la", + "gerhardt", + "ilse", + "amtierende", + "protesten", + "lernen", + "klang", + "bemerkbar", + "zeugnis", + "william", + "jena", + "ungewiß", + "rollen", + "gewertet", + "sonstige", + "verrückt", + "vorwürfen", + "souverän", + "blutigen", + "güter", + "lokal", + "ausreichen", + "abgerissen", + "marsch", + "frühling", + "aufhören", + "verhaftung", + "hahn", + "optionen", + "erfinder", + "bewerben", + "momente", + "kleinste", + "entführt", + "kräftige", + "v.", + "einnehmen", + "anstalt", + "körpers", + "frühe", + "zimmermann", + "mathematik", + "texas", + "dag", + "befördert", + "externen", + "schwere", + "malaysia", + "einseitig", + "vereint", + "company", + "geeigneten", + "geübt", + "begraben", + "geteilt", + "prüfungen", + "konsum", + "arena", + "nachdenken", + "kg", + "insekten", + "entwürfe", + "empfinden", + "haufen", + "zunehmen", + "umfassen", + "offenheit", + "albaner", + "szenario", + "kopieren", + "glatt", + "verkraften", + "techniker", + "saniert", + "todes", + "dominiert", + "sichert", + "netze", + "heft", + "aufsteiger", + "tonne", + "tel", + "kehren", + "verfaßt", + "föderation", + "formular", + "entworfen", + "referendum", + "örtliche", + "warm", + "niedergang", + "meldeten", + "eintracht", + "verärgert", + "kommunale", + "spektakel", + "einführen", + "donau", + "luxus", + "geringeren", + "diagnose", + "streß", + "wahlgang", + "weiterhin", + "verfall", + "morgigen", + "toten", + "großzügig", + "bestellen", + "kurdischen", + "kollegin", + "wozu", + "besseres", + "prozesses", + "plakate", + "tendenzen", + "hinauf", + "zerstörten", + "clubs", + "stamm", + "fein", + "entgehen", + "heftiger", + "nebenan", + "gesunden", + "bosniens", + "schützt", + "standorten", + "gewaltig", + "angela", + "sparkasse", + "duo", + "bedürfnis", + "friedens", + "stücken", + "löschen", + "herrschen", + "beamter", + "nordkorea", + "wörter", + "fliehen", + "nachdruck", + "erna", + "einzeln", + "ausschluß", + "porträt", + "doppelten", + "jedesmal", + "bvg", + "erledigen", + "trocken", + "rückgabe", + "flüge", + "etappe", + "wählte", + "vorurteile", + "reist", + "eher", + "beton", + "abfahrt", + "anhängern", + "eindeutige", + "gießen", + "anmelden", + "tee", + "spiels", + "hinterlegt", + "ländlichen", + "entkommen", + "bürokratie", + "siebten", + "stünde", + "wiederwahl", + "verstehe", + "sonstige", + "las", + "gewartet", + "lübecker", + "verfehlt", + "tschechen", + "versuchen", + "hose", + "schwerin", + "chemnitz", + "hiesigen", + "segen", + "ästhetik", + "geschenkt", + "somalia", + "übergabe", + "somit", + "entspreche", + "schier", + "maus", + "erkrankung", + "abbauen", + "redner", + "sammler", + "kommando", + "erregt", + "bischöfe", + "feierten", + "mr.", + "unsinn", + "knappe", + "album", + "media", + "durchgang", + "radikal", + "kneipe", + "kopenhagen", + "zweite", + "dichters", + "anzulegen", + "bezweifelt", + "funk", + "härter", + "verbrannt", + "vertrages", + "geldstrafe", + "überwachen", + "gelegene", + "künstlich", + "gefangen", + "gewordene", + "bekannten", + "scheidung", + "isoliert", + "rasche", + "bestritt", + "gewollt", + "eingegeben", + "qm", + "zweitens", + "salzburg", + "gerissen", + "erobern", + "verlusten", + "favorit", + "betroffene", + "empfahl", + "sagen", + "flughafens", + "sechzig", + "trieb", + "neuseeland", + "kolumbien", + "aufteilung", + "schritten", + "schönste", + "handlungen", + "hammer", + "denselben", + "doktor", + "ungeachtet", + "erhebung", + "vorrangig", + "martina", + "profit", + "belange", + "net", + "sap-system", + "umgebracht", + "guten", + "sohnes", + "entweder", + "kranke", + "zwingend", + "wofür", + "benötigte", + "sammelt", + "rtr", + "gift", + "vermittler", + "langsamer", + "buchungen", + "bindung", + "richtungen", + "verdienst", + "pünktlich", + "kennzahlen", + "kader", + "verfallen", + "verbraucht", + "gelandet", + "bse", + "fußballer", + "handels", + "klientel", + "aufgeteilt", + "belohnt", + "stz", + "gefährdung", + "hilflos", + "adam", + "spaniens", + "null", + "aktivieren", + "abzubauen", + "sports", + "anbau", + "wecken", + "westlicher", + "beachtet", + "arbeite", + "kugel", + "töpfer", + "anregungen", + "wdr", + "ewigen", + "gerieten", + "kardinal", + "terrain", + "bemerkte", + "schwebt", + "überschuß", + "verbotenen", + "krisen", + "nordosten", + "reifen", + "rabin", + "bestände", + "einspruch", + "fühlten", + "sparen", + "gärten", + "vernehmen", + "aufweisen", + "wahnsinn", + "autobahnen", + "birgt", + "schauplatz", + "folter", + "bauen", + "match", + "siedlungen", + "befunden", + "etablieren", + "services", + "indianer", + "ausrüstung", + "aok", + "weißen", + "auskommen", + "blockieren", + "verletzte", + "tragen", + "kasten", + "vorliebe", + "entnommen", + "georgios", + "halbinsel", + "verschwand", + "hauptsache", + "britischer", + "gus", + "ergaben", + "inhaltlich", + "streichung", + "ökologie", + "irmgard", + "ergriffen", + "erteilen", + "zielgruppe", + "zeichnete", + "reißt", + "holger", + "gestimmt", + "blüten", + "pathos", + "gewechselt", + "übte", + "island", + "jahrgang", + "intensiver", + "überwacht", + "pflichten", + "verschont", + "operiert", + "künstliche", + "drohende", + "sterben", + "reserven", + "strahlung", + "bekennt", + "klappt", + "wortes", + "versagen", + "ecken", + "rezept", + "gestattet", + "fahnen", + "reichten", + "fremden", + "nutzten", + "warten", + "johnson", + "grün", + "zügig", + "ähnlicher", + "erstreckt", + "johanna", + "absolviert", + "misere", + "ingenieur", + "montage", + "scheitert", + "gesten", + "realismus", + "trends", + "europaweit", + "dumm", + "briefen", + "inge", + "psychisch", + "attacken", + "energisch", + "treppe", + "sperre", + "wegfall", + "sehen", + "händlern", + "gerückt", + "zwölf", + "einigkeit", + "dublin", + "achtung", + "wahrnehmen", + "riefen", + "provinzen", + "freispruch", + "ergreifen", + "gezielte", + "spart", + "trauen", + "vorbehalte", + "jubel", + "mittag", + "absprache", + "vermehrt", + "rückte", + "ihres", + "darsteller", + "ablehnen", + "konzipiert", + "alliierten", + "laien", + "geister", + "gewählte", + "ulrike", + "bemerkung", + "abseits", + "mahnte", + "bezüge", + "gesunde", + "geht", + "anstoß", + "essener", + "server", + "abgaben", + "wundert", + "just", + "gezeichnet", + "probe", + "drehbuch", + "echter", + "medaille", + "sekte", + "sonderlich", + "kannst", + "musical", + "binden", + "prosa", + "schlechtes", + "aufsicht", + "zielt", + "vertrat", + "lieber", + "heiraten", + "vorschrift", + "lehrt", + "verstand", + "hilfreich", + "ahnen", + "hannelore", + "gewebe", + "garantie", + "offizier", + "verbietet", + "schönes", + "import", + "agieren", + "kleider", + "eberhard", + "kulisse", + "geständnis", + "per", + "siegen", + "gentechnik", + "einsätze", + "verleiht", + "andern", + "herunter", + "verbuchen", + "bush", + "gewandt", + "schöne", + "bedrohten", + "verletzten", + "offenbart", + "begleiter", + "propaganda", + "erschwert", + "rüttgers", + "feiern", + "tarife", + "komisch", + "fähig", + "bands", + "jeans", + "helsinki", + "zuversicht", + "ärgert", + "maßstäbe", + "stau", + "geborgen", + "beruhigt", + "nasdaq", + "gebot", + "äußere", + "verhält", + "rehhagel", + "d.", + "song", + "kategorien", + "viktor", + "überzogen", + "reste", + "winzigen", + "spreche", + "parkplätze", + "atomwaffen", + "wimbledon", + "messungen", + "jedoch", + "einklang", + "verborgen", + "bände", + "kuwait", + "pop", + "wettkampf", + "marie", + "absurd", + "zentren", + "meist", + "dutzende", + "angestrebt", + "oslo", + "wirt", + "ausflug", + "verdienste", + "englischer", + "ernte", + "private", + "warmen", + "ude", + "olg", + "wollen", + "weltmarkt", + "positives", + "gen", + "längst", + "leid", + "woher", + "gehörende", + "trennt", + "sternen", + "geistig", + "tricks", + "lehmann", + "obst", + "konsortium", + "fehlen", + "reale", + "höchst", + "mitarbeit", + "alleingang", + "viren", + "südosten", + "operative", + "drohungen", + "gorleben", + "großvater", + "antike", + "erbracht", + "rivalen", + "zugegeben", + "besten", + "hemd", + "kommt", + "spree", + "geräumt", + "relevanten", + "kontext", + "springer", + "brutal", + "reißen", + "fasziniert", + "besserung", + "bezirke", + "nahverkehr", + "einziehen", + "zielen", + "notenbank", + "erholt", + "friedberg", + "oldenburg", + "eduard", + "behält", + "textilien", + "postbank", + "genfer", + "treiben", + "bewohnern", + "willen", + "viag", + "besondere", + "hosen", + "landet", + "michel", + "novelle", + "kläger", + "kapitals", + "stabile", + "entfielen", + "frust", + "stießen", + "beiseite", + "weh", + "hill", + "effekte", + "sofortige", + "langen", + "geführte", + "reserviert", + "dritten", + "qualitäten", + "auslegung", + "lkw", + "ökonomie", + "rose", + "wilde", + "verdoppeln", + "stürzt", + "einbrecher", + "kostenlose", + "normen", + "begrenzen", + "zurecht", + "attraktive", + "know-how", + "dick", + "schilling", + "marokko", + "kreistag", + "verletzten", + "belgische", + "lehnten", + "vergangen", + "nummern", + "irischen", + "zählten", + "eingespart", + "aufzugeben", + "prager", + "bronze", + "hartmann", + "anlegern", + "sprich", + "landsmann", + "anpassen", + "t.", + "iv", + "abermals", + "regieren", + "gegnern", + "stämme", + "räder", + "stillstand", + "nirgendwo", + "kartoffeln", + "franzose", + "erlaubnis", + "strauß", + "fing", + "transrapid", + "fabriken", + "anc", + "airbus", + "tagebuch", + "islamische", + "reparatur", + "befragung", + "geheimen", + "rollt", + "jutta", + "ulmer", + "fotografen", + "seen", + "angelegten", + "ezb", + "eingreifen", + "traut", + "kleinsten", + "zusagen", + "milieu", + "mithin", + "hügel", + "anhaltende", + "kürzen", + "zyklus", + "wolfsburg", + "flüsse", + "betreuen", + "sitzungen", + "abgang", + "bequem", + "schwärmt", + "appelliert", + "anneliese", + "angetan", + "welch", + "beteuert", + "ankommt", + "demselben", + "ausgezahlt", + "harter", + "intel", + "politische", + "grafik", + "anzug", + "iranische", + "metro", + "verkörpert", + "zehnten", + "di", + "meinten", + "treue", + "erörtert", + "flexibel", + "gras", + "tenor", + "versionen", + "nordsee", + "absichten", + "abzugeben", + "schaden", + "wehrmacht", + "utopie", + "marion", + "steigerte", + "henry", + "dementiert", + "irrtum", + "blicke", + "gelbe", + "irene", + "senden", + "dunkelheit", + "vorträge", + "slowenien", + "referent", + "einigten", + "bunt", + "verbänden", + "entsprach", + "verbrachte", + "fahne", + "folglich", + "erscheinen", + "oberhalb", + "träumt", + "hohe", + "drückte", + "university", + "verbucht", + "bewag", + "nordwesten", + "kaputt", + "sv", + "verdiente", + "pilot", + "großmutter", + "erfreulich", + "reiste", + "soweit", + "lohnarten", + "kokain", + "vernehmung", + "tempel", + "fernsehens", + "lebed", + "dietrich", + "repertoire", + "frischen", + "theologie", + "zucker", + "schwersten", + "lächelt", + "götter", + "abbildung", + "taten", + "schafe", + "bar", + "vergrößert", + "kursen", + "zimmern", + "angreifer", + "organe", + "peru", + "mussten", + "lächerlich", + "gesungen", + "aufgeklärt", + "getränke", + "externe", + "fund", + "ddr-zeiten", + "bezog", + "feine", + "ingeborg", + "reis", + "gesamtjahr", + "hubert", + "beschließt", + "beate", + "supermarkt", + "bliebe", + "höchster", + "geschlecht", + "dom", + "betreuer", + "zueinander", + "boykott", + "fachleuten", + "dietmar", + "computern", + "hartmut", + "ostsee", + "bekämpft", + "nähere", + "schiene", + "irakische", + "verlegung", + "spalten", + "rio", + "getreide", + "konrad", + "selektion", + "litauen", + "intensität", + "elite", + "anruf", + "stärken", + "kopie", + "einmalig", + "wundern", + "plädoyer", + "messen", + "verließen", + "los", + "handvoll", + "sitzen", + "manchem", + "nehmen", + "verhelfen", + "angriffen", + "peres", + "sparten", + "indische", + "zivile", + "symbole", + "gehörenden", + "kommentare", + "wünschen", + "wählern", + "auftritt", + "dringt", + "befragten", + "runter", + "dirigent", + "vernünftig", + "schmitt", + "festivals", + "angenehm", + "virtuelle", + "mustafa", + "nützt", + "zügen", + "schienen", + "großhandel", + "jüdischer", + "sony", + "geplant", + "nagel", + "gulden", + "ambiente", + "schreiber", + "seltsam", + "kleinstadt", + "gelitten", + "mitteilt", + "philips", + "hafenstadt", + "derlei", + "dunkel", + "typs", + "halt", + "abzusehen", + "story", + "hierbei", + "schmid", + "kurve", + "heer", + "abriß", + "besonderes", + "kritikern", + "jeglicher", + "bundesbahn", + "abgewiesen", + "einerseits", + "obendrein", + "wohnraum", + "mostar", + "haaren", + "wartete", + "merkel", + "übung", + "tagsüber", + "romantik", + "vierzehn", + "eroberung", + "winkel", + "wahlsieg", + "global", + "quartett", + "erneuert", + "grundsätze", + "sog", + "effizienz", + "philosoph", + "treff", + "glaubten", + "dörfern", + "bühnen", + "ne", + "herzlich", + "nachdenken", + "ergänzte", + "sponsor", + "entschluß", + "meiste", + "wunden", + "geflohen", + "geehrt", + "höhen", + "gelernte", + "recherchen", + "helene", + "sportlich", + "angehen", + "unterlag", + "rinder", + "dreck", + "ei", + "allgemeine", + "hindernis", + "technische", + "umgebaut", + "scheibe", + "nominiert", + "kenia", + "drastische", + "angeführt", + "überdies", + "fiskus", + "plastik", + "blockade", + "mama", + "verbund", + "tiger", + "ruhen", + "mithalten", + "namentlich", + "verwandt", + "anne", + "absehbarer", + "schluss", + "konstanz", + "gen", + "veto", + "knapper", + "scheiben", + "frische", + "verkünden", + "wirkten", + "anbietern", + "mächtige", + "jakob", + "haushalten", + "olga", + "vorhang", + "weltweit", + "spaltung", + "langeweile", + "pleite", + "symptome", + "bekannter", + "stalin", + "sachlich", + "mittag", + "tante", + "drucker", + "route", + "antiken", + "starkes", + "kompletten", + "häufigsten", + "börsianer", + "unnötig", + "vorabend", + "hinunter", + "konstant", + "weißer", + "ethik", + "abfälle", + "mailänder", + "ivan", + "mohamed", + "wieviel", + "fröhlich", + "zoo", + "größeres", + "sauerstoff", + "eichel", + "stückliste", + "deutschem", + "sinnvolle", + "kämpfte", + "salz", + "martha", + "rauch", + "videos", + "drucken", + "gestützt", + "plutonium", + "älterer", + "ingolstadt", + "heimspiel", + "adler", + "riß", + "phasen", + "boten", + "verbracht", + "nikolaus", + "mitleid", + "parolen", + "bekomme", + "besser", + "zusätze", + "arg", + "routine", + "tätern", + "afrikas", + "morde", + "erfolgen", + "red", + "hebron", + "us", + "zunge", + "wiegt", + "felix", + "kunststoff", + "reichweite", + "deutete", + "smith", + "satzung", + "ladung", + "stichtag", + "ltd", + "zutiefst", + "eingeplant", + "albrecht", + "konkurrent", + "motoren", + "normalität", + "rückschlag", + "griffen", + "erweiterte", + "keines", + "erteilte", + "kalender", + "kühl", + "vage", + "bewies", + "beachten", + "nrw", + "gefertigt", + "dasein", + "einfallen", + "entfalten", + "fangen", + "erwarb", + "auszubauen", + "juristisch", + "normaler", + "brille", + "formal", + "rückgängig", + "buben", + "verdammt", + "stärkeren", + "empfindet", + "öffnete", + "lüge", + "makler", + "flüchtete", + "ernsthafte", + "drohten", + "nächte", + "vormittag", + "anschein", + "innovation", + "rufnummer", + "reisenden", + "verstand", + "elementen", + "dienten", + "änderte", + "problems", + "kenner", + "taxifahrer", + "ad", + "dienstags", + "tübinger", + "haustür", + "runden", + "verzögert", + "dateien", + "dimitrios", + "gereicht", + "sanft", + "gehen", + "research", + "oskar", + "tribüne", + "gültigkeit", + "verstecken", + "kunsthalle", + "vorfahren", + "akzente", + "begrenzung", + "reisende", + "jordanien", + "alarm", + "eignet", + "wirkungen", + "christel", + "wobei", + "angewandt", + "schätzung", + "sexualität", + "gewürdigt", + "arme", + "diktator", + "fenstern", + "arnold", + "schießt", + "verkürzt", + "oberbayern", + "jeher", + "gefühlen", + "vwd", + "seltenen", + "et", + "serviert", + "dahinter", + "vatikan", + "neubauten", + "logische", + "versäumt", + "umzugehen", + "ambitionen", + "geprägten", + "eingezogen", + "analyst", + "deine", + "schloss", + "fc", + "teils", + "euch", + "nationale", + "innere", + "kabarett", + "fundament", + "ernennung", + "vertagt", + "williams", + "krupp", + "wahrlich", + "verwundert", + "zelt", + "motiven", + "laufe", + "reichen", + "lücken", + "beihilfe", + "bebauung", + "mehrheiten", + "abgesehen", + "sound", + "ethnischen", + "fulda", + "einsteigen", + "raten", + "gewißheit", + "regisseure", + "weit", + "gläubiger", + "nochmal", + "christiane", + "wehr", + "gemalt", + "diesem", + "note", + "palast", + "verfolgte", + "graue", + "schröders", + "sauer", + "begnügen", + "tötung", + "roten", + "anderem", + "verbundene", + "strahlt", + "abgestellt", + "nachbar", + "libyen", + "talente", + "gedichten", + "korea", + "haftstrafe", + "networks", + "bekennen", + "erstattet", + "horn", + "werkzeug", + "trick", + "rückblick", + "kunstwerke", + "regulären", + "papa", + "indiz", + "kiew", + "gewagt", + "halbwegs", + "besiegt", + "udo", + "beruhigen", + "toll", + "dotierten", + "spd-chef", + "miami", + "plakat", + "zitat", + "ungeklärt", + "arbeitern", + "einflüsse", + "bnd", + "satire", + "akte", + "durchsucht", + "gab's", + "brav", + "segment", + "geraumer", + "mitteilen", + "klang", + "gepäck", + "effektiv", + "überwiesen", + "römische", + "warnungen", + "flagge", + "ballett", + "ausgeübt", + "landung", + "weisheit", + "schlichten", + "prophezeit", + "mantel", + "eh", + "überein", + "oberursel", + "liebevoll", + "baden", + "taschen", + "adac", + "flecken", + "verankert", + "jochen", + "gunst", + "populär", + "prominente", + "beruft", + "kanäle", + "allee", + "ganzer", + "klug", + "hierher", + "eigen", + "boston", + "abtreibung", + "arabische", + "siebzig", + "anschlägen", + "des", + "wto", + "kassieren", + "kriterium", + "aufträgen", + "tausenden", + "redakteur", + "klischees", + "dein", + "sucht", + "erhob", + "verschickt", + "umfasst", + "leder", + "eins", + "bezug", + "brecht", + "abstimmen", + "thüringer", + "lieferten", + "dänische", + "entspannt", + "rektor", + "beiträgen", + "gestritten", + "füllt", + "ressorts", + "zutage", + "kürzer", + "dünn", + "baumann", + "umso", + "hürde", + "planer", + "belebung", + "infos", + "anja", + "desaster", + "erstens", + "böse", + "regt", + "lenken", + "steigender", + "kündigen", + "besetzte", + "gegriffen", + "billige", + "beliebten", + "wünsche", + "sang", + "zensur", + "ost-berlin", + "preußen", + "marine", + "erdgas", + "erzwingen", + "anwesend", + "schläge", + "unheimlich", + "pflanze", + "kühe", + "litt", + "derjenigen", + "nett", + "achtzig", + "größen", + "heilbronn", + "globus", + "hindurch", + "bodensee", + "atelier", + "geliebten", + "kopiert", + "kanzlers", + "einmaligen", + "gehör", + "gemein", + "leitungen", + "erstmal", + "eingeweiht", + "inwieweit", + "konvention", + "auftauchen", + "florenz", + "avantgarde", + "ablösung", + "versichern", + "teilchen", + "anbindung", + "lee", + "diana", + "ereignete", + "mobilität", + "hellen", + "jean", + "monitor", + "verspätung", + "christina", + "25jährige", + "holländer", + "abzuwarten", + "neugier", + "mangelt", + "humanitäre", + "kindergeld", + "deal", + "erprobt", + "aggressiv", + "angestellt", + "de", + "böden", + "sg", + "blind", + "innovative", + "astronomen", + "tiergarten", + "eisenbahn", + "sensation", + "bekannte", + "zehntel", + "brauchten", + "kombiniert", + "pädagogen", + "srebrenica", + "goethes", + "rutschte", + "begrenzten", + "bremens", + "wertet", + "kronen", + "nähert", + "moralisch", + "jenseits", + "vorweisen", + "tankstelle", + "schwelle", + "liegende", + "begrenzte", + "optimale", + "parat", + "hauptrolle", + "sich", + "rover", + "anstalten", + "raumfahrt", + "steinen", + "entgegen", + "lud", + "alptraum", + "dayton", + "sozialamt", + "jahreszeit", + "verwertung", + "angerufen", + "kündigten", + "würden", + "munition", + "unterliegt", + "sauna", + "sporthalle", + "aufschrift", + "amtliche", + "pence", + "magen", + "jude", + "steckte", + "belgrader", + "gnade", + "weithin", + "heimische", + "letzte", + "dtb", + "reisebüros", + "niedrigere", + "mazedonien", + "zentral", + "schimpft", + "faschismus", + "verrat", + "islamisten", + "rückläufig", + "30jährige", + "blättern", + "mandate", + "verwalten", + "zeichnung", + "verstöße", + "ratten", + "königreich", + "pension", + "deckung", + "erdgeschoß", + "mythen", + "englisch", + "lagern", + "jünger", + "geruch", + "aufstellen", + "wörtlich", + "zigarette", + "entsetzen", + "angewendet", + "le", + "coup", + "störung", + "uniform", + "steigert", + "seminare", + "fehlern", + "orden", + "thron", + "agenten", + "osze", + "kontrast", + "senders", + "teppich", + "titeln", + "eur", + "erreger", + "satt", + "ute", + "julia", + "frage", + "zahlte", + "prinzen", + "stabilen", + "reports", + "schade", + "belaufen", + "beantragte", + "carl", + "einnahme", + "aneinander", + "beläuft", + "fahrten", + "südafrikas", + "uhren", + "rosa", + "brauerei", + "erstaunt", + "parallel", + "jordan", + "antworten", + "araber", + "bayreuth", + "beirat", + "ewige", + "münzen", + "passende", + "packen", + "king", + "vorgängen", + "drüben", + "apple", + "beethoven", + "ampel", + "kabul", + "körperlich", + "warteten", + "parks", + "obersten", + "zirkus", + "wiesen", + "bezifferte", + "renditen", + "diplomat", + "weite", + "bewegten", + "beschwert", + "kunstwerk", + "banker", + "baustellen", + "bdi", + "vergebens", + "minen", + "dax", + "extremen", + "erlebnisse", + "belohnung", + "wichtigste", + "komplexen", + "zerstörte", + "trendwende", + "plaziert", + "gültige", + "schubert", + "hoch", + "vergessen", + "totale", + "buchen", + "gewinnen", + "moskaus", + "innern", + "nützlich", + "bedauerte", + "nix", + "käse", + "erzbischof", + "ausfall", + "konflikts", + "goldene", + "marx", + "erhoffen", + "längerer", + "geliebte", + "völlig", + "landesweit", + "dominieren", + "bittere", + "versetzen", + "abgehalten", + "chemiker", + "einsam", + "blau", + "anregung", + "kameraden", + "wilfried", + "schalke", + "zusatz", + "unweit", + "illusionen", + "bemühte", + "klares", + "einsparen", + "anführer", + "fliegen", + "bedrohte", + "vorläufige", + "vorbilder", + "betonten", + "verfügte", + "bloßen", + "berät", + "gemerkt", + "verwehrt", + "hütte", + "nebst", + "theorien", + "angeblich", + "kaufhaus", + "atlantik", + "tief", + "hertha", + "gängigen", + "leuchtet", + "berufe", + "bezirken" ] diff --git a/packages/locale/res/wordlists/en.json b/packages/locale/res/wordlists/en.json index 5fb10590..15fa9c80 100644 --- a/packages/locale/res/wordlists/en.json +++ b/packages/locale/res/wordlists/en.json @@ -1,7778 +1,7778 @@ [ - "abacus", - "abdomen", - "abdominal", - "abide", - "abiding", - "ability", - "ablaze", - "able", - "abnormal", - "abrasion", - "abrasive", - "abreast", - "abridge", - "abroad", - "abruptly", - "absence", - "absentee", - "absently", - "absinthe", - "absolute", - "absolve", - "abstain", - "abstract", - "absurd", - "accent", - "acclaim", - "acclimate", - "accompany", - "account", - "accuracy", - "accurate", - "accustom", - "acetone", - "achiness", - "aching", - "acid", - "acorn", - "acquaint", - "acquire", - "acre", - "acrobat", - "acronym", - "acting", - "action", - "activate", - "activator", - "active", - "activism", - "activist", - "activity", - "actress", - "acts", - "acutely", - "acuteness", - "aeration", - "aerobics", - "aerosol", - "aerospace", - "afar", - "affair", - "affected", - "affecting", - "affection", - "affidavit", - "affiliate", - "affirm", - "affix", - "afflicted", - "affluent", - "afford", - "affront", - "aflame", - "afloat", - "aflutter", - "afoot", - "afraid", - "afterglow", - "afterlife", - "aftermath", - "aftermost", - "afternoon", - "aged", - "ageless", - "agency", - "agenda", - "agent", - "aggregate", - "aghast", - "agile", - "agility", - "aging", - "agnostic", - "agonize", - "agonizing", - "agony", - "agreeable", - "agreeably", - "agreed", - "agreeing", - "agreement", - "aground", - "ahead", - "ahoy", - "aide", - "aids", - "aim", - "ajar", - "alabaster", - "alarm", - "albatross", - "album", - "alfalfa", - "algebra", - "algorithm", - "alias", - "alibi", - "alienable", - "alienate", - "aliens", - "alike", - "alive", - "alkaline", - "alkalize", - "almanac", - "almighty", - "almost", - "aloe", - "aloft", - "aloha", - "alone", - "alongside", - "aloof", - "alphabet", - "alright", - "although", - "altitude", - "alto", - "aluminum", - "alumni", - "always", - "amaretto", - "amaze", - "amazingly", - "amber", - "ambiance", - "ambiguity", - "ambiguous", - "ambition", - "ambitious", - "ambulance", - "ambush", - "amendable", - "amendment", - "amends", - "amenity", - "amiable", - "amicably", - "amid", - "amigo", - "amino", - "amiss", - "ammonia", - "ammonium", - "amnesty", - "amniotic", - "among", - "amount", - "amperage", - "ample", - "amplifier", - "amplify", - "amply", - "amuck", - "amulet", - "amusable", - "amused", - "amusement", - "amuser", - "amusing", - "anaconda", - "anaerobic", - "anagram", - "anatomist", - "anatomy", - "anchor", - "anchovy", - "ancient", - "android", - "anemia", - "anemic", - "aneurism", - "anew", - "angelfish", - "angelic", - "anger", - "angled", - "angler", - "angles", - "angling", - "angrily", - "angriness", - "anguished", - "angular", - "animal", - "animate", - "animating", - "animation", - "animator", - "anime", - "animosity", - "ankle", - "annex", - "annotate", - "announcer", - "annoying", - "annually", - "annuity", - "anointer", - "another", - "answering", - "antacid", - "antarctic", - "anteater", - "antelope", - "antennae", - "anthem", - "anthill", - "anthology", - "antibody", - "antics", - "antidote", - "antihero", - "antiquely", - "antiques", - "antiquity", - "antirust", - "antitoxic", - "antitrust", - "antiviral", - "antivirus", - "antler", - "antonym", - "antsy", - "anvil", - "anybody", - "anyhow", - "anymore", - "anyone", - "anyplace", - "anything", - "anytime", - "anyway", - "anywhere", - "aorta", - "apache", - "apostle", - "appealing", - "appear", - "appease", - "appeasing", - "appendage", - "appendix", - "appetite", - "appetizer", - "applaud", - "applause", - "apple", - "appliance", - "applicant", - "applied", - "apply", - "appointee", - "appraisal", - "appraiser", - "apprehend", - "approach", - "approval", - "approve", - "apricot", - "april", - "apron", - "aptitude", - "aptly", - "aqua", - "aqueduct", - "arbitrary", - "arbitrate", - "ardently", - "area", - "arena", - "arguable", - "arguably", - "argue", - "arise", - "armadillo", - "armband", - "armchair", - "armed", - "armful", - "armhole", - "arming", - "armless", - "armoire", - "armored", - "armory", - "armrest", - "army", - "aroma", - "arose", - "around", - "arousal", - "arrange", - "array", - "arrest", - "arrival", - "arrive", - "arrogance", - "arrogant", - "arson", - "art", - "ascend", - "ascension", - "ascent", - "ascertain", - "ashamed", - "ashen", - "ashes", - "ashy", - "aside", - "askew", - "asleep", - "asparagus", - "aspect", - "aspirate", - "aspire", - "aspirin", - "astonish", - "astound", - "astride", - "astrology", - "astronaut", - "astronomy", - "astute", - "atlantic", - "atlas", - "atom", - "atonable", - "atop", - "atrium", - "atrocious", - "atrophy", - "attach", - "attain", - "attempt", - "attendant", - "attendee", - "attention", - "attentive", - "attest", - "attic", - "attire", - "attitude", - "attractor", - "attribute", - "atypical", - "auction", - "audacious", - "audacity", - "audible", - "audibly", - "audience", - "audio", - "audition", - "augmented", - "august", - "authentic", - "author", - "autism", - "autistic", - "autograph", - "automaker", - "automated", - "automatic", - "autopilot", - "available", - "avalanche", - "avatar", - "avenge", - "avenging", - "avenue", - "average", - "aversion", - "avert", - "aviation", - "aviator", - "avid", - "avoid", - "await", - "awaken", - "award", - "aware", - "awhile", - "awkward", - "awning", - "awoke", - "awry", - "axis", - "babble", - "babbling", - "babied", - "baboon", - "backache", - "backboard", - "backboned", - "backdrop", - "backed", - "backer", - "backfield", - "backfire", - "backhand", - "backing", - "backlands", - "backlash", - "backless", - "backlight", - "backlit", - "backlog", - "backpack", - "backpedal", - "backrest", - "backroom", - "backshift", - "backside", - "backslid", - "backspace", - "backspin", - "backstab", - "backstage", - "backtalk", - "backtrack", - "backup", - "backward", - "backwash", - "backwater", - "backyard", - "bacon", - "bacteria", - "bacterium", - "badass", - "badge", - "badland", - "badly", - "badness", - "baffle", - "baffling", - "bagel", - "bagful", - "baggage", - "bagged", - "baggie", - "bagginess", - "bagging", - "baggy", - "bagpipe", - "baguette", - "baked", - "bakery", - "bakeshop", - "baking", - "balance", - "balancing", - "balcony", - "balmy", - "balsamic", - "bamboo", - "banana", - "banish", - "banister", - "banjo", - "bankable", - "bankbook", - "banked", - "banker", - "banking", - "banknote", - "bankroll", - "banner", - "bannister", - "banshee", - "banter", - "barbecue", - "barbed", - "barbell", - "barber", - "barcode", - "barge", - "bargraph", - "barista", - "baritone", - "barley", - "barmaid", - "barman", - "barn", - "barometer", - "barrack", - "barracuda", - "barrel", - "barrette", - "barricade", - "barrier", - "barstool", - "bartender", - "barterer", - "bash", - "basically", - "basics", - "basil", - "basin", - "basis", - "basket", - "batboy", - "batch", - "bath", - "baton", - "bats", - "battalion", - "battered", - "battering", - "battery", - "batting", - "battle", - "bauble", - "bazooka", - "blabber", - "bladder", - "blade", - "blah", - "blame", - "blaming", - "blanching", - "blandness", - "blank", - "blaspheme", - "blasphemy", - "blast", - "blatancy", - "blatantly", - "blazer", - "blazing", - "bleach", - "bleak", - "bleep", - "blemish", - "blend", - "bless", - "blighted", - "blimp", - "bling", - "blinked", - "blinker", - "blinking", - "blinks", - "blip", - "blissful", - "blitz", - "blizzard", - "bloated", - "bloating", - "blob", - "blog", - "bloomers", - "blooming", - "blooper", - "blot", - "blouse", - "blubber", - "bluff", - "bluish", - "blunderer", - "blunt", - "blurb", - "blurred", - "blurry", - "blurt", - "blush", - "blustery", - "boaster", - "boastful", - "boasting", - "boat", - "bobbed", - "bobbing", - "bobble", - "bobcat", - "bobsled", - "bobtail", - "bodacious", - "body", - "bogged", - "boggle", - "bogus", - "boil", - "bok", - "bolster", - "bolt", - "bonanza", - "bonded", - "bonding", - "bondless", - "boned", - "bonehead", - "boneless", - "bonelike", - "boney", - "bonfire", - "bonnet", - "bonsai", - "bonus", - "bony", - "boogeyman", - "boogieman", - "book", - "boondocks", - "booted", - "booth", - "bootie", - "booting", - "bootlace", - "bootleg", - "boots", - "boozy", - "borax", - "boring", - "borough", - "borrower", - "borrowing", - "boss", - "botanical", - "botanist", - "botany", - "botch", - "both", - "bottle", - "bottling", - "bottom", - "bounce", - "bouncing", - "bouncy", - "bounding", - "boundless", - "bountiful", - "bovine", - "boxcar", - "boxer", - "boxing", - "boxlike", - "boxy", - "breach", - "breath", - "breeches", - "breeching", - "breeder", - "breeding", - "breeze", - "breezy", - "brethren", - "brewery", - "brewing", - "briar", - "bribe", - "brick", - "bride", - "bridged", - "brigade", - "bright", - "brilliant", - "brim", - "bring", - "brink", - "brisket", - "briskly", - "briskness", - "bristle", - "brittle", - "broadband", - "broadcast", - "broaden", - "broadly", - "broadness", - "broadside", - "broadways", - "broiler", - "broiling", - "broken", - "broker", - "bronchial", - "bronco", - "bronze", - "bronzing", - "brook", - "broom", - "brought", - "browbeat", - "brownnose", - "browse", - "browsing", - "bruising", - "brunch", - "brunette", - "brunt", - "brush", - "brussels", - "brute", - "brutishly", - "bubble", - "bubbling", - "bubbly", - "buccaneer", - "bucked", - "bucket", - "buckle", - "buckshot", - "buckskin", - "bucktooth", - "buckwheat", - "buddhism", - "buddhist", - "budding", - "buddy", - "budget", - "buffalo", - "buffed", - "buffer", - "buffing", - "buffoon", - "buggy", - "bulb", - "bulge", - "bulginess", - "bulgur", - "bulk", - "bulldog", - "bulldozer", - "bullfight", - "bullfrog", - "bullhorn", - "bullion", - "bullish", - "bullpen", - "bullring", - "bullseye", - "bullwhip", - "bully", - "bunch", - "bundle", - "bungee", - "bunion", - "bunkbed", - "bunkhouse", - "bunkmate", - "bunny", - "bunt", - "busboy", - "bush", - "busily", - "busload", - "bust", - "busybody", - "buzz", - "cabana", - "cabbage", - "cabbie", - "cabdriver", - "cable", - "caboose", - "cache", - "cackle", - "cacti", - "cactus", - "caddie", - "caddy", - "cadet", - "cadillac", - "cadmium", - "cage", - "cahoots", - "cake", - "calamari", - "calamity", - "calcium", - "calculate", - "calculus", - "caliber", - "calibrate", - "calm", - "caloric", - "calorie", - "calzone", - "camcorder", - "cameo", - "camera", - "camisole", - "camper", - "campfire", - "camping", - "campsite", - "campus", - "canal", - "canary", - "cancel", - "candied", - "candle", - "candy", - "cane", - "canine", - "canister", - "cannabis", - "canned", - "canning", - "cannon", - "cannot", - "canola", - "canon", - "canopener", - "canopy", - "canteen", - "canyon", - "capable", - "capably", - "capacity", - "cape", - "capillary", - "capital", - "capitol", - "capped", - "capricorn", - "capsize", - "capsule", - "caption", - "captivate", - "captive", - "captivity", - "capture", - "caramel", - "carat", - "caravan", - "carbon", - "cardboard", - "carded", - "cardiac", - "cardigan", - "cardinal", - "cardstock", - "carefully", - "caregiver", - "careless", - "caress", - "caretaker", - "cargo", - "caring", - "carless", - "carload", - "carmaker", - "carnage", - "carnation", - "carnival", - "carnivore", - "carol", - "carpenter", - "carpentry", - "carpool", - "carport", - "carried", - "carrot", - "carrousel", - "carry", - "cartel", - "cartload", - "carton", - "cartoon", - "cartridge", - "cartwheel", - "carve", - "carving", - "carwash", - "cascade", - "case", - "cash", - "casing", - "casino", - "casket", - "cassette", - "casually", - "casualty", - "catacomb", - "catalog", - "catalyst", - "catalyze", - "catapult", - "cataract", - "catatonic", - "catcall", - "catchable", - "catcher", - "catching", - "catchy", - "caterer", - "catering", - "catfight", - "catfish", - "cathedral", - "cathouse", - "catlike", - "catnap", - "catnip", - "catsup", - "cattail", - "cattishly", - "cattle", - "catty", - "catwalk", - "caucasian", - "caucus", - "causal", - "causation", - "cause", - "causing", - "cauterize", - "caution", - "cautious", - "cavalier", - "cavalry", - "caviar", - "cavity", - "cedar", - "celery", - "celestial", - "celibacy", - "celibate", - "celtic", - "cement", - "census", - "ceramics", - "ceremony", - "certainly", - "certainty", - "certified", - "certify", - "cesarean", - "cesspool", - "chafe", - "chaffing", - "chain", - "chair", - "chalice", - "challenge", - "chamber", - "chamomile", - "champion", - "chance", - "change", - "channel", - "chant", - "chaos", - "chaperone", - "chaplain", - "chapped", - "chaps", - "chapter", - "character", - "charbroil", - "charcoal", - "charger", - "charging", - "chariot", - "charity", - "charm", - "charred", - "charter", - "charting", - "chase", - "chasing", - "chaste", - "chastise", - "chastity", - "chatroom", - "chatter", - "chatting", - "chatty", - "cheating", - "cheddar", - "cheek", - "cheer", - "cheese", - "cheesy", - "chef", - "chemicals", - "chemist", - "chemo", - "cherisher", - "cherub", - "chess", - "chest", - "chevron", - "chevy", - "chewable", - "chewer", - "chewing", - "chewy", - "chief", - "chihuahua", - "childcare", - "childhood", - "childish", - "childless", - "childlike", - "chili", - "chill", - "chimp", - "chip", - "chirping", - "chirpy", - "chitchat", - "chivalry", - "chive", - "chloride", - "chlorine", - "choice", - "chokehold", - "choking", - "chomp", - "chooser", - "choosing", - "choosy", - "chop", - "chosen", - "chowder", - "chowtime", - "chrome", - "chubby", - "chuck", - "chug", - "chummy", - "chump", - "chunk", - "churn", - "chute", - "cider", - "cilantro", - "cinch", - "cinema", - "cinnamon", - "circle", - "circling", - "circular", - "circulate", - "circus", - "citable", - "citadel", - "citation", - "citizen", - "citric", - "citrus", - "city", - "civic", - "civil", - "clad", - "claim", - "clambake", - "clammy", - "clamor", - "clamp", - "clamshell", - "clang", - "clanking", - "clapped", - "clapper", - "clapping", - "clarify", - "clarinet", - "clarity", - "clash", - "clasp", - "class", - "clatter", - "clause", - "clavicle", - "claw", - "clay", - "clean", - "clear", - "cleat", - "cleaver", - "cleft", - "clench", - "clergyman", - "clerical", - "clerk", - "clever", - "clicker", - "client", - "climate", - "climatic", - "cling", - "clinic", - "clinking", - "clip", - "clique", - "cloak", - "clobber", - "clock", - "clone", - "cloning", - "closable", - "closure", - "clothes", - "clothing", - "cloud", - "clover", - "clubbed", - "clubbing", - "clubhouse", - "clump", - "clumsily", - "clumsy", - "clunky", - "clustered", - "clutch", - "clutter", - "coach", - "coagulant", - "coastal", - "coaster", - "coasting", - "coastland", - "coastline", - "coat", - "coauthor", - "cobalt", - "cobbler", - "cobweb", - "cocoa", - "coconut", - "cod", - "coeditor", - "coerce", - "coexist", - "coffee", - "cofounder", - "cognition", - "cognitive", - "cogwheel", - "coherence", - "coherent", - "cohesive", - "coil", - "coke", - "cola", - "cold", - "coleslaw", - "coliseum", - "collage", - "collapse", - "collar", - "collected", - "collector", - "collide", - "collie", - "collision", - "colonial", - "colonist", - "colonize", - "colony", - "colossal", - "colt", - "coma", - "come", - "comfort", - "comfy", - "comic", - "coming", - "comma", - "commence", - "commend", - "comment", - "commerce", - "commode", - "commodity", - "commodore", - "common", - "commotion", - "commute", - "commuting", - "compacted", - "compacter", - "compactly", - "compactor", - "companion", - "company", - "compare", - "compel", - "compile", - "comply", - "component", - "composed", - "composer", - "composite", - "compost", - "composure", - "compound", - "compress", - "comprised", - "computer", - "computing", - "comrade", - "concave", - "conceal", - "conceded", - "concept", - "concerned", - "concert", - "conch", - "concierge", - "concise", - "conclude", - "concrete", - "concur", - "condense", - "condiment", - "condition", - "condone", - "conducive", - "conductor", - "conduit", - "cone", - "confess", - "confetti", - "confidant", - "confident", - "confider", - "confiding", - "configure", - "confined", - "confining", - "confirm", - "conflict", - "conform", - "confound", - "confront", - "confused", - "confusing", - "confusion", - "congenial", - "congested", - "congrats", - "congress", - "conical", - "conjoined", - "conjure", - "conjuror", - "connected", - "connector", - "consensus", - "consent", - "console", - "consoling", - "consonant", - "constable", - "constant", - "constrain", - "constrict", - "construct", - "consult", - "consumer", - "consuming", - "contact", - "container", - "contempt", - "contend", - "contented", - "contently", - "contents", - "contest", - "context", - "contort", - "contour", - "contrite", - "control", - "contusion", - "convene", - "convent", - "copartner", - "cope", - "copied", - "copier", - "copilot", - "coping", - "copious", - "copper", - "copy", - "coral", - "cork", - "cornball", - "cornbread", - "corncob", - "cornea", - "corned", - "corner", - "cornfield", - "cornflake", - "cornhusk", - "cornmeal", - "cornstalk", - "corny", - "coronary", - "coroner", - "corporal", - "corporate", - "corral", - "correct", - "corridor", - "corrode", - "corroding", - "corrosive", - "corsage", - "corset", - "cortex", - "cosigner", - "cosmetics", - "cosmic", - "cosmos", - "cosponsor", - "cost", - "cottage", - "cotton", - "couch", - "cough", - "could", - "countable", - "countdown", - "counting", - "countless", - "country", - "county", - "courier", - "covenant", - "cover", - "coveted", - "coveting", - "coyness", - "cozily", - "coziness", - "cozy", - "crabbing", - "crabgrass", - "crablike", - "crabmeat", - "cradle", - "cradling", - "crafter", - "craftily", - "craftsman", - "craftwork", - "crafty", - "cramp", - "cranberry", - "crane", - "cranial", - "cranium", - "crank", - "crate", - "crave", - "craving", - "crawfish", - "crawlers", - "crawling", - "crayfish", - "crayon", - "crazed", - "crazily", - "craziness", - "crazy", - "creamed", - "creamer", - "creamlike", - "crease", - "creasing", - "creatable", - "create", - "creation", - "creative", - "creature", - "credible", - "credibly", - "credit", - "creed", - "creme", - "creole", - "crepe", - "crept", - "crescent", - "crested", - "cresting", - "crestless", - "crevice", - "crewless", - "crewman", - "crewmate", - "crib", - "cricket", - "cried", - "crier", - "crimp", - "crimson", - "cringe", - "cringing", - "crinkle", - "crinkly", - "crisped", - "crisping", - "crisply", - "crispness", - "crispy", - "criteria", - "critter", - "croak", - "crock", - "crook", - "croon", - "crop", - "cross", - "crouch", - "crouton", - "crowbar", - "crowd", - "crown", - "crucial", - "crudely", - "crudeness", - "cruelly", - "cruelness", - "cruelty", - "crumb", - "crummiest", - "crummy", - "crumpet", - "crumpled", - "cruncher", - "crunching", - "crunchy", - "crusader", - "crushable", - "crushed", - "crusher", - "crushing", - "crust", - "crux", - "crying", - "cryptic", - "crystal", - "cubbyhole", - "cube", - "cubical", - "cubicle", - "cucumber", - "cuddle", - "cuddly", - "cufflink", - "culinary", - "culminate", - "culpable", - "culprit", - "cultivate", - "cultural", - "culture", - "cupbearer", - "cupcake", - "cupid", - "cupped", - "cupping", - "curable", - "curator", - "curdle", - "cure", - "curfew", - "curing", - "curled", - "curler", - "curliness", - "curling", - "curly", - "curry", - "curse", - "cursive", - "cursor", - "curtain", - "curtly", - "curtsy", - "curvature", - "curve", - "curvy", - "cushy", - "cusp", - "cussed", - "custard", - "custodian", - "custody", - "customary", - "customer", - "customize", - "customs", - "cut", - "cycle", - "cyclic", - "cycling", - "cyclist", - "cylinder", - "cymbal", - "cytoplasm", - "cytoplast", - "dab", - "dad", - "daffodil", - "dagger", - "daily", - "daintily", - "dainty", - "dairy", - "daisy", - "dallying", - "dance", - "dancing", - "dandelion", - "dander", - "dandruff", - "dandy", - "danger", - "dangle", - "dangling", - "daredevil", - "dares", - "daringly", - "darkened", - "darkening", - "darkish", - "darkness", - "darkroom", - "darling", - "darn", - "dart", - "darwinism", - "dash", - "dastardly", - "data", - "datebook", - "dating", - "daughter", - "daunting", - "dawdler", - "dawn", - "daybed", - "daybreak", - "daycare", - "daydream", - "daylight", - "daylong", - "dayroom", - "daytime", - "dazzler", - "dazzling", - "deacon", - "deafening", - "deafness", - "dealer", - "dealing", - "dealmaker", - "dealt", - "dean", - "debatable", - "debate", - "debating", - "debit", - "debrief", - "debtless", - "debtor", - "debug", - "debunk", - "decade", - "decaf", - "decal", - "decathlon", - "decay", - "deceased", - "deceit", - "deceiver", - "deceiving", - "december", - "decency", - "decent", - "deception", - "deceptive", - "decibel", - "decidable", - "decimal", - "decimeter", - "decipher", - "deck", - "declared", - "decline", - "decode", - "decompose", - "decorated", - "decorator", - "decoy", - "decrease", - "decree", - "dedicate", - "dedicator", - "deduce", - "deduct", - "deed", - "deem", - "deepen", - "deeply", - "deepness", - "deface", - "defacing", - "defame", - "default", - "defeat", - "defection", - "defective", - "defendant", - "defender", - "defense", - "defensive", - "deferral", - "deferred", - "defiance", - "defiant", - "defile", - "defiling", - "define", - "definite", - "deflate", - "deflation", - "deflator", - "deflected", - "deflector", - "defog", - "deforest", - "defraud", - "defrost", - "deftly", - "defuse", - "defy", - "degraded", - "degrading", - "degrease", - "degree", - "dehydrate", - "deity", - "dejected", - "delay", - "delegate", - "delegator", - "delete", - "deletion", - "delicacy", - "delicate", - "delicious", - "delighted", - "delirious", - "delirium", - "deliverer", - "delivery", - "delouse", - "delta", - "deluge", - "delusion", - "deluxe", - "demanding", - "demeaning", - "demeanor", - "demise", - "democracy", - "democrat", - "demote", - "demotion", - "demystify", - "denatured", - "deniable", - "denial", - "denim", - "denote", - "dense", - "density", - "dental", - "dentist", - "denture", - "deny", - "deodorant", - "deodorize", - "departed", - "departure", - "depict", - "deplete", - "depletion", - "deplored", - "deploy", - "deport", - "depose", - "depraved", - "depravity", - "deprecate", - "depress", - "deprive", - "depth", - "deputize", - "deputy", - "derail", - "deranged", - "derby", - "derived", - "desecrate", - "deserve", - "deserving", - "designate", - "designed", - "designer", - "designing", - "deskbound", - "desktop", - "deskwork", - "desolate", - "despair", - "despise", - "despite", - "destiny", - "destitute", - "destruct", - "detached", - "detail", - "detection", - "detective", - "detector", - "detention", - "detergent", - "detest", - "detonate", - "detonator", - "detoxify", - "detract", - "deuce", - "devalue", - "deviancy", - "deviant", - "deviate", - "deviation", - "deviator", - "device", - "devious", - "devotedly", - "devotee", - "devotion", - "devourer", - "devouring", - "devoutly", - "dexterity", - "dexterous", - "diabetes", - "diabetic", - "diabolic", - "diagnoses", - "diagnosis", - "diagram", - "dial", - "diameter", - "diaper", - "diaphragm", - "diary", - "dice", - "dicing", - "dictate", - "dictation", - "dictator", - "difficult", - "diffused", - "diffuser", - "diffusion", - "diffusive", - "dig", - "dilation", - "diligence", - "diligent", - "dill", - "dilute", - "dime", - "diminish", - "dimly", - "dimmed", - "dimmer", - "dimness", - "dimple", - "diner", - "dingbat", - "dinghy", - "dinginess", - "dingo", - "dingy", - "dining", - "dinner", - "diocese", - "dioxide", - "diploma", - "dipped", - "dipper", - "dipping", - "directed", - "direction", - "directive", - "directly", - "directory", - "direness", - "dirtiness", - "disabled", - "disagree", - "disallow", - "disarm", - "disarray", - "disaster", - "disband", - "disbelief", - "disburse", - "discard", - "discern", - "discharge", - "disclose", - "discolor", - "discount", - "discourse", - "discover", - "discuss", - "disdain", - "disengage", - "disfigure", - "disgrace", - "dish", - "disinfect", - "disjoin", - "disk", - "dislike", - "disliking", - "dislocate", - "dislodge", - "disloyal", - "dismantle", - "dismay", - "dismiss", - "dismount", - "disobey", - "disorder", - "disown", - "disparate", - "disparity", - "dispatch", - "dispense", - "dispersal", - "dispersed", - "disperser", - "displace", - "display", - "displease", - "disposal", - "dispose", - "disprove", - "dispute", - "disregard", - "disrupt", - "dissuade", - "distance", - "distant", - "distaste", - "distill", - "distinct", - "distort", - "distract", - "distress", - "district", - "distrust", - "ditch", - "ditto", - "ditzy", - "dividable", - "divided", - "dividend", - "dividers", - "dividing", - "divinely", - "diving", - "divinity", - "divisible", - "divisibly", - "division", - "divisive", - "divorcee", - "dizziness", - "dizzy", - "doable", - "docile", - "dock", - "doctrine", - "document", - "dodge", - "dodgy", - "doily", - "doing", - "dole", - "dollar", - "dollhouse", - "dollop", - "dolly", - "dolphin", - "domain", - "domelike", - "domestic", - "dominion", - "dominoes", - "donated", - "donation", - "donator", - "donor", - "donut", - "doodle", - "doorbell", - "doorframe", - "doorknob", - "doorman", - "doormat", - "doornail", - "doorpost", - "doorstep", - "doorstop", - "doorway", - "doozy", - "dork", - "dormitory", - "dorsal", - "dosage", - "dose", - "dotted", - "doubling", - "douche", - "dove", - "down", - "dowry", - "doze", - "drab", - "dragging", - "dragonfly", - "dragonish", - "dragster", - "drainable", - "drainage", - "drained", - "drainer", - "drainpipe", - "dramatic", - "dramatize", - "drank", - "drapery", - "drastic", - "draw", - "dreaded", - "dreadful", - "dreadlock", - "dreamboat", - "dreamily", - "dreamland", - "dreamless", - "dreamlike", - "dreamt", - "dreamy", - "drearily", - "dreary", - "drench", - "dress", - "drew", - "dribble", - "dried", - "drier", - "drift", - "driller", - "drilling", - "drinkable", - "drinking", - "dripping", - "drippy", - "drivable", - "driven", - "driver", - "driveway", - "driving", - "drizzle", - "drizzly", - "drone", - "drool", - "droop", - "drop-down", - "dropbox", - "dropkick", - "droplet", - "dropout", - "dropper", - "drove", - "drown", - "drowsily", - "drudge", - "drum", - "dry", - "dubbed", - "dubiously", - "duchess", - "duckbill", - "ducking", - "duckling", - "ducktail", - "ducky", - "duct", - "dude", - "duffel", - "dugout", - "duh", - "duke", - "duller", - "dullness", - "duly", - "dumping", - "dumpling", - "dumpster", - "duo", - "dupe", - "duplex", - "duplicate", - "duplicity", - "durable", - "durably", - "duration", - "duress", - "during", - "dusk", - "dust", - "dutiful", - "duty", - "duvet", - "dwarf", - "dweeb", - "dwelled", - "dweller", - "dwelling", - "dwindle", - "dwindling", - "dynamic", - "dynamite", - "dynasty", - "dyslexia", - "dyslexic", - "each", - "eagle", - "earache", - "eardrum", - "earflap", - "earful", - "earlobe", - "early", - "earmark", - "earmuff", - "earphone", - "earpiece", - "earplugs", - "earring", - "earshot", - "earthen", - "earthlike", - "earthling", - "earthly", - "earthworm", - "earthy", - "earwig", - "easeful", - "easel", - "easiest", - "easily", - "easiness", - "easing", - "eastbound", - "eastcoast", - "easter", - "eastward", - "eatable", - "eaten", - "eatery", - "eating", - "eats", - "ebay", - "ebony", - "ebook", - "ecard", - "eccentric", - "echo", - "eclair", - "eclipse", - "ecologist", - "ecology", - "economic", - "economist", - "economy", - "ecosphere", - "ecosystem", - "edge", - "edginess", - "edging", - "edgy", - "edition", - "editor", - "educated", - "education", - "educator", - "eel", - "effective", - "effects", - "efficient", - "effort", - "eggbeater", - "egging", - "eggnog", - "eggplant", - "eggshell", - "egomaniac", - "egotism", - "egotistic", - "either", - "eject", - "elaborate", - "elastic", - "elated", - "elbow", - "eldercare", - "elderly", - "eldest", - "electable", - "election", - "elective", - "elephant", - "elevate", - "elevating", - "elevation", - "elevator", - "eleven", - "elf", - "eligible", - "eligibly", - "eliminate", - "elite", - "elitism", - "elixir", - "elk", - "ellipse", - "elliptic", - "elm", - "elongated", - "elope", - "eloquence", - "eloquent", - "elsewhere", - "elude", - "elusive", - "elves", - "email", - "embargo", - "embark", - "embassy", - "embattled", - "embellish", - "ember", - "embezzle", - "emblaze", - "emblem", - "embody", - "embolism", - "emboss", - "embroider", - "emcee", - "emerald", - "emergency", - "emission", - "emit", - "emote", - "emoticon", - "emotion", - "empathic", - "empathy", - "emperor", - "emphases", - "emphasis", - "emphasize", - "emphatic", - "empirical", - "employed", - "employee", - "employer", - "emporium", - "empower", - "emptier", - "emptiness", - "empty", - "emu", - "enable", - "enactment", - "enamel", - "enchanted", - "enchilada", - "encircle", - "enclose", - "enclosure", - "encode", - "encore", - "encounter", - "encourage", - "encroach", - "encrust", - "encrypt", - "endanger", - "endeared", - "endearing", - "ended", - "ending", - "endless", - "endnote", - "endocrine", - "endorphin", - "endorse", - "endowment", - "endpoint", - "endurable", - "endurance", - "enduring", - "energetic", - "energize", - "energy", - "enforced", - "enforcer", - "engaged", - "engaging", - "engine", - "engorge", - "engraved", - "engraver", - "engraving", - "engross", - "engulf", - "enhance", - "enigmatic", - "enjoyable", - "enjoyably", - "enjoyer", - "enjoying", - "enjoyment", - "enlarged", - "enlarging", - "enlighten", - "enlisted", - "enquirer", - "enrage", - "enrich", - "enroll", - "enslave", - "ensnare", - "ensure", - "entail", - "entangled", - "entering", - "entertain", - "enticing", - "entire", - "entitle", - "entity", - "entomb", - "entourage", - "entrap", - "entree", - "entrench", - "entrust", - "entryway", - "entwine", - "enunciate", - "envelope", - "enviable", - "enviably", - "envious", - "envision", - "envoy", - "envy", - "enzyme", - "epic", - "epidemic", - "epidermal", - "epidermis", - "epidural", - "epilepsy", - "epileptic", - "epilogue", - "epiphany", - "episode", - "equal", - "equate", - "equation", - "equator", - "equinox", - "equipment", - "equity", - "equivocal", - "eradicate", - "erasable", - "erased", - "eraser", - "erasure", - "ergonomic", - "errand", - "errant", - "erratic", - "error", - "erupt", - "escalate", - "escalator", - "escapable", - "escapade", - "escapist", - "escargot", - "eskimo", - "esophagus", - "espionage", - "espresso", - "esquire", - "essay", - "essence", - "essential", - "establish", - "estate", - "esteemed", - "estimate", - "estimator", - "estranged", - "estrogen", - "etching", - "eternal", - "eternity", - "ethanol", - "ether", - "ethically", - "ethics", - "euphemism", - "evacuate", - "evacuee", - "evade", - "evaluate", - "evaluator", - "evaporate", - "evasion", - "evasive", - "even", - "everglade", - "evergreen", - "everybody", - "everyday", - "everyone", - "evict", - "evidence", - "evident", - "evil", - "evoke", - "evolution", - "evolve", - "exact", - "exalted", - "example", - "excavate", - "excavator", - "exceeding", - "exception", - "excess", - "exchange", - "excitable", - "exciting", - "exclaim", - "exclude", - "excluding", - "exclusion", - "exclusive", - "excretion", - "excretory", - "excursion", - "excusable", - "excusably", - "excuse", - "exemplary", - "exemplify", - "exemption", - "exerciser", - "exert", - "exes", - "exfoliate", - "exhale", - "exhaust", - "exhume", - "exile", - "existing", - "exit", - "exodus", - "exonerate", - "exorcism", - "exorcist", - "expand", - "expanse", - "expansion", - "expansive", - "expectant", - "expedited", - "expediter", - "expel", - "expend", - "expenses", - "expensive", - "expert", - "expire", - "expiring", - "explain", - "expletive", - "explicit", - "explode", - "exploit", - "explore", - "exploring", - "exponent", - "exporter", - "exposable", - "expose", - "exposure", - "express", - "expulsion", - "exquisite", - "extended", - "extending", - "extent", - "extenuate", - "exterior", - "external", - "extinct", - "extortion", - "extradite", - "extras", - "extrovert", - "extrude", - "extruding", - "exuberant", - "fable", - "fabric", - "fabulous", - "facebook", - "facecloth", - "facedown", - "faceless", - "facelift", - "faceplate", - "faceted", - "facial", - "facility", - "facing", - "facsimile", - "faction", - "factoid", - "factor", - "factsheet", - "factual", - "faculty", - "fade", - "fading", - "failing", - "falcon", - "fall", - "false", - "falsify", - "fame", - "familiar", - "family", - "famine", - "famished", - "fanatic", - "fancied", - "fanciness", - "fancy", - "fanfare", - "fang", - "fanning", - "fantasize", - "fantastic", - "fantasy", - "fascism", - "fastball", - "faster", - "fasting", - "fastness", - "faucet", - "favorable", - "favorably", - "favored", - "favoring", - "favorite", - "fax", - "feast", - "federal", - "fedora", - "feeble", - "feed", - "feel", - "feisty", - "feline", - "felt-tip", - "feminine", - "feminism", - "feminist", - "feminize", - "femur", - "fence", - "fencing", - "fender", - "ferment", - "fernlike", - "ferocious", - "ferocity", - "ferret", - "ferris", - "ferry", - "fervor", - "fester", - "festival", - "festive", - "festivity", - "fetal", - "fetch", - "fever", - "fiber", - "fiction", - "fiddle", - "fiddling", - "fidelity", - "fidgeting", - "fidgety", - "fifteen", - "fifth", - "fiftieth", - "fifty", - "figment", - "figure", - "figurine", - "filing", - "filled", - "filler", - "filling", - "film", - "filter", - "filth", - "filtrate", - "finale", - "finalist", - "finalize", - "finally", - "finance", - "financial", - "finch", - "fineness", - "finer", - "finicky", - "finished", - "finisher", - "finishing", - "finite", - "finless", - "finlike", - "fiscally", - "fit", - "five", - "flaccid", - "flagman", - "flagpole", - "flagship", - "flagstick", - "flagstone", - "flail", - "flakily", - "flaky", - "flame", - "flammable", - "flanked", - "flanking", - "flannels", - "flap", - "flaring", - "flashback", - "flashbulb", - "flashcard", - "flashily", - "flashing", - "flashy", - "flask", - "flatbed", - "flatfoot", - "flatly", - "flatness", - "flatten", - "flattered", - "flatterer", - "flattery", - "flattop", - "flatware", - "flatworm", - "flavored", - "flavorful", - "flavoring", - "flaxseed", - "fled", - "fleshed", - "fleshy", - "flick", - "flier", - "flight", - "flinch", - "fling", - "flint", - "flip", - "flirt", - "float", - "flock", - "flogging", - "flop", - "floral", - "florist", - "floss", - "flounder", - "flyable", - "flyaway", - "flyer", - "flying", - "flyover", - "flypaper", - "foam", - "foe", - "fog", - "foil", - "folic", - "folk", - "follicle", - "follow", - "fondling", - "fondly", - "fondness", - "fondue", - "font", - "food", - "fool", - "footage", - "football", - "footbath", - "footboard", - "footer", - "footgear", - "foothill", - "foothold", - "footing", - "footless", - "footman", - "footnote", - "footpad", - "footpath", - "footprint", - "footrest", - "footsie", - "footsore", - "footwear", - "footwork", - "fossil", - "foster", - "founder", - "founding", - "fountain", - "fox", - "foyer", - "fraction", - "fracture", - "fragile", - "fragility", - "fragment", - "fragrance", - "fragrant", - "frail", - "frame", - "framing", - "frantic", - "fraternal", - "frayed", - "fraying", - "frays", - "freckled", - "freckles", - "freebase", - "freebee", - "freebie", - "freedom", - "freefall", - "freehand", - "freeing", - "freeload", - "freely", - "freemason", - "freeness", - "freestyle", - "freeware", - "freeway", - "freewill", - "freezable", - "freezing", - "freight", - "french", - "frenzied", - "frenzy", - "frequency", - "frequent", - "fresh", - "fretful", - "fretted", - "friction", - "friday", - "fridge", - "fried", - "friend", - "frighten", - "frightful", - "frigidity", - "frigidly", - "frill", - "fringe", - "frisbee", - "frisk", - "fritter", - "frivolous", - "frolic", - "from", - "front", - "frostbite", - "frosted", - "frostily", - "frosting", - "frostlike", - "frosty", - "froth", - "frown", - "frozen", - "fructose", - "frugality", - "frugally", - "fruit", - "frustrate", - "frying", - "gab", - "gaffe", - "gag", - "gainfully", - "gaining", - "gains", - "gala", - "gallantly", - "galleria", - "gallery", - "galley", - "gallon", - "gallows", - "gallstone", - "galore", - "galvanize", - "gambling", - "game", - "gaming", - "gamma", - "gander", - "gangly", - "gangrene", - "gangway", - "gap", - "garage", - "garbage", - "garden", - "gargle", - "garland", - "garlic", - "garment", - "garnet", - "garnish", - "garter", - "gas", - "gatherer", - "gathering", - "gating", - "gauging", - "gauntlet", - "gauze", - "gave", - "gawk", - "gazing", - "gear", - "gecko", - "geek", - "geiger", - "gem", - "gender", - "generic", - "generous", - "genetics", - "genre", - "gentile", - "gentleman", - "gently", - "gents", - "geography", - "geologic", - "geologist", - "geology", - "geometric", - "geometry", - "geranium", - "gerbil", - "geriatric", - "germicide", - "germinate", - "germless", - "germproof", - "gestate", - "gestation", - "gesture", - "getaway", - "getting", - "getup", - "giant", - "gibberish", - "giblet", - "giddily", - "giddiness", - "giddy", - "gift", - "gigabyte", - "gigahertz", - "gigantic", - "giggle", - "giggling", - "giggly", - "gigolo", - "gilled", - "gills", - "gimmick", - "girdle", - "giveaway", - "given", - "giver", - "giving", - "gizmo", - "gizzard", - "glacial", - "glacier", - "glade", - "gladiator", - "gladly", - "glamorous", - "glamour", - "glance", - "glancing", - "glandular", - "glare", - "glaring", - "glass", - "glaucoma", - "glazing", - "gleaming", - "gleeful", - "glider", - "gliding", - "glimmer", - "glimpse", - "glisten", - "glitch", - "glitter", - "glitzy", - "gloater", - "gloating", - "gloomily", - "gloomy", - "glorified", - "glorifier", - "glorify", - "glorious", - "glory", - "gloss", - "glove", - "glowing", - "glowworm", - "glucose", - "glue", - "gluten", - "glutinous", - "glutton", - "gnarly", - "gnat", - "goal", - "goatskin", - "goes", - "goggles", - "going", - "goldfish", - "goldmine", - "goldsmith", - "golf", - "goliath", - "gonad", - "gondola", - "gone", - "gong", - "good", - "gooey", - "goofball", - "goofiness", - "goofy", - "google", - "goon", - "gopher", - "gore", - "gorged", - "gorgeous", - "gory", - "gosling", - "gossip", - "gothic", - "gotten", - "gout", - "gown", - "grab", - "graceful", - "graceless", - "gracious", - "gradation", - "graded", - "grader", - "gradient", - "grading", - "gradually", - "graduate", - "graffiti", - "grafted", - "grafting", - "grain", - "granddad", - "grandkid", - "grandly", - "grandma", - "grandpa", - "grandson", - "granite", - "granny", - "granola", - "grant", - "granular", - "grape", - "graph", - "grapple", - "grappling", - "grasp", - "grass", - "gratified", - "gratify", - "grating", - "gratitude", - "gratuity", - "gravel", - "graveness", - "graves", - "graveyard", - "gravitate", - "gravity", - "gravy", - "gray", - "grazing", - "greasily", - "greedily", - "greedless", - "greedy", - "green", - "greeter", - "greeting", - "grew", - "greyhound", - "grid", - "grief", - "grievance", - "grieving", - "grievous", - "grill", - "grimace", - "grimacing", - "grime", - "griminess", - "grimy", - "grinch", - "grinning", - "grip", - "gristle", - "grit", - "groggily", - "groggy", - "groin", - "groom", - "groove", - "grooving", - "groovy", - "grope", - "ground", - "grouped", - "grout", - "grove", - "grower", - "growing", - "growl", - "grub", - "grudge", - "grudging", - "grueling", - "gruffly", - "grumble", - "grumbling", - "grumbly", - "grumpily", - "grunge", - "grunt", - "guacamole", - "guidable", - "guidance", - "guide", - "guiding", - "guileless", - "guise", - "gulf", - "gullible", - "gully", - "gulp", - "gumball", - "gumdrop", - "gumminess", - "gumming", - "gummy", - "gurgle", - "gurgling", - "guru", - "gush", - "gusto", - "gusty", - "gutless", - "guts", - "gutter", - "guy", - "guzzler", - "gyration", - "habitable", - "habitant", - "habitat", - "habitual", - "hacked", - "hacker", - "hacking", - "hacksaw", - "had", - "haggler", - "haiku", - "half", - "halogen", - "halt", - "halved", - "halves", - "hamburger", - "hamlet", - "hammock", - "hamper", - "hamster", - "hamstring", - "handbag", - "handball", - "handbook", - "handbrake", - "handcart", - "handclap", - "handclasp", - "handcraft", - "handcuff", - "handed", - "handful", - "handgrip", - "handgun", - "handheld", - "handiness", - "handiwork", - "handlebar", - "handled", - "handler", - "handling", - "handmade", - "handoff", - "handpick", - "handprint", - "handrail", - "handsaw", - "handset", - "handsfree", - "handshake", - "handstand", - "handwash", - "handwork", - "handwoven", - "handwrite", - "handyman", - "hangnail", - "hangout", - "hangover", - "hangup", - "hankering", - "hankie", - "hanky", - "haphazard", - "happening", - "happier", - "happiest", - "happily", - "happiness", - "happy", - "harbor", - "hardcopy", - "hardcore", - "hardcover", - "harddisk", - "hardened", - "hardener", - "hardening", - "hardhat", - "hardhead", - "hardiness", - "hardly", - "hardness", - "hardship", - "hardware", - "hardwired", - "hardwood", - "hardy", - "harmful", - "harmless", - "harmonica", - "harmonics", - "harmonize", - "harmony", - "harness", - "harpist", - "harsh", - "harvest", - "hash", - "hassle", - "haste", - "hastily", - "hastiness", - "hasty", - "hatbox", - "hatchback", - "hatchery", - "hatchet", - "hatching", - "hatchling", - "hate", - "hatless", - "hatred", - "haunt", - "haven", - "hazard", - "hazelnut", - "hazily", - "haziness", - "hazing", - "hazy", - "headache", - "headband", - "headboard", - "headcount", - "headdress", - "headed", - "header", - "headfirst", - "headgear", - "heading", - "headlamp", - "headless", - "headlock", - "headphone", - "headpiece", - "headrest", - "headroom", - "headscarf", - "headset", - "headsman", - "headstand", - "headstone", - "headway", - "headwear", - "heap", - "heat", - "heave", - "heavily", - "heaviness", - "heaving", - "hedge", - "hedging", - "heftiness", - "hefty", - "helium", - "helmet", - "helper", - "helpful", - "helping", - "helpless", - "helpline", - "hemlock", - "hemstitch", - "hence", - "henchman", - "henna", - "herald", - "herbal", - "herbicide", - "herbs", - "heritage", - "hermit", - "heroics", - "heroism", - "herring", - "herself", - "hertz", - "hesitancy", - "hesitant", - "hesitate", - "hexagon", - "hexagram", - "hubcap", - "huddle", - "huddling", - "huff", - "hug", - "hula", - "hulk", - "hull", - "human", - "humble", - "humbling", - "humbly", - "humid", - "humiliate", - "humility", - "humming", - "hummus", - "humongous", - "humorist", - "humorless", - "humorous", - "humpback", - "humped", - "humvee", - "hunchback", - "hundredth", - "hunger", - "hungrily", - "hungry", - "hunk", - "hunter", - "hunting", - "huntress", - "huntsman", - "hurdle", - "hurled", - "hurler", - "hurling", - "hurray", - "hurricane", - "hurried", - "hurry", - "hurt", - "husband", - "hush", - "husked", - "huskiness", - "hut", - "hybrid", - "hydrant", - "hydrated", - "hydration", - "hydrogen", - "hydroxide", - "hyperlink", - "hypertext", - "hyphen", - "hypnoses", - "hypnosis", - "hypnotic", - "hypnotism", - "hypnotist", - "hypnotize", - "hypocrisy", - "hypocrite", - "ibuprofen", - "ice", - "iciness", - "icing", - "icky", - "icon", - "icy", - "idealism", - "idealist", - "idealize", - "ideally", - "idealness", - "identical", - "identify", - "identity", - "ideology", - "idiocy", - "idiom", - "idly", - "igloo", - "ignition", - "ignore", - "iguana", - "illicitly", - "illusion", - "illusive", - "image", - "imaginary", - "imagines", - "imaging", - "imbecile", - "imitate", - "imitation", - "immature", - "immerse", - "immersion", - "imminent", - "immobile", - "immodest", - "immorally", - "immortal", - "immovable", - "immovably", - "immunity", - "immunize", - "impaired", - "impale", - "impart", - "impatient", - "impeach", - "impeding", - "impending", - "imperfect", - "imperial", - "impish", - "implant", - "implement", - "implicate", - "implicit", - "implode", - "implosion", - "implosive", - "imply", - "impolite", - "important", - "importer", - "impose", - "imposing", - "impotence", - "impotency", - "impotent", - "impound", - "imprecise", - "imprint", - "imprison", - "impromptu", - "improper", - "improve", - "improving", - "improvise", - "imprudent", - "impulse", - "impulsive", - "impure", - "impurity", - "iodine", - "iodize", - "ion", - "ipad", - "iphone", - "ipod", - "irate", - "irk", - "iron", - "irregular", - "irrigate", - "irritable", - "irritably", - "irritant", - "irritate", - "islamic", - "islamist", - "isolated", - "isolating", - "isolation", - "isotope", - "issue", - "issuing", - "italicize", - "italics", - "item", - "itinerary", - "itunes", - "ivory", - "ivy", - "jab", - "jackal", - "jacket", - "jackknife", - "jackpot", - "jailbird", - "jailbreak", - "jailer", - "jailhouse", - "jalapeno", - "jam", - "janitor", - "january", - "jargon", - "jarring", - "jasmine", - "jaundice", - "jaunt", - "java", - "jawed", - "jawless", - "jawline", - "jaws", - "jaybird", - "jaywalker", - "jazz", - "jeep", - "jeeringly", - "jellied", - "jelly", - "jersey", - "jester", - "jet", - "jiffy", - "jigsaw", - "jimmy", - "jingle", - "jingling", - "jinx", - "jitters", - "jittery", - "job", - "jockey", - "jockstrap", - "jogger", - "jogging", - "john", - "joining", - "jokester", - "jokingly", - "jolliness", - "jolly", - "jolt", - "jot", - "jovial", - "joyfully", - "joylessly", - "joyous", - "joyride", - "joystick", - "jubilance", - "jubilant", - "judge", - "judgingly", - "judicial", - "judiciary", - "judo", - "juggle", - "juggling", - "jugular", - "juice", - "juiciness", - "juicy", - "jujitsu", - "jukebox", - "july", - "jumble", - "jumbo", - "jump", - "junction", - "juncture", - "june", - "junior", - "juniper", - "junkie", - "junkman", - "junkyard", - "jurist", - "juror", - "jury", - "justice", - "justifier", - "justify", - "justly", - "justness", - "juvenile", - "kabob", - "kangaroo", - "karaoke", - "karate", - "karma", - "kebab", - "keenly", - "keenness", - "keep", - "keg", - "kelp", - "kennel", - "kept", - "kerchief", - "kerosene", - "kettle", - "kick", - "kiln", - "kilobyte", - "kilogram", - "kilometer", - "kilowatt", - "kilt", - "kimono", - "kindle", - "kindling", - "kindly", - "kindness", - "kindred", - "kinetic", - "kinfolk", - "king", - "kinship", - "kinsman", - "kinswoman", - "kissable", - "kisser", - "kissing", - "kitchen", - "kite", - "kitten", - "kitty", - "kiwi", - "kleenex", - "knapsack", - "knee", - "knelt", - "knickers", - "knoll", - "koala", - "kooky", - "kosher", - "krypton", - "kudos", - "kung", - "labored", - "laborer", - "laboring", - "laborious", - "labrador", - "ladder", - "ladies", - "ladle", - "ladybug", - "ladylike", - "lagged", - "lagging", - "lagoon", - "lair", - "lake", - "lance", - "landed", - "landfall", - "landfill", - "landing", - "landlady", - "landless", - "landline", - "landlord", - "landmark", - "landmass", - "landmine", - "landowner", - "landscape", - "landside", - "landslide", - "language", - "lankiness", - "lanky", - "lantern", - "lapdog", - "lapel", - "lapped", - "lapping", - "laptop", - "lard", - "large", - "lark", - "lash", - "lasso", - "last", - "latch", - "late", - "lather", - "latitude", - "latrine", - "latter", - "latticed", - "launch", - "launder", - "laundry", - "laurel", - "lavender", - "lavish", - "laxative", - "lazily", - "laziness", - "lazy", - "lecturer", - "left", - "legacy", - "legal", - "legend", - "legged", - "leggings", - "legible", - "legibly", - "legislate", - "lego", - "legroom", - "legume", - "legwarmer", - "legwork", - "lemon", - "lend", - "length", - "lens", - "lent", - "leotard", - "lesser", - "letdown", - "lethargic", - "lethargy", - "letter", - "lettuce", - "level", - "leverage", - "levers", - "levitate", - "levitator", - "liability", - "liable", - "liberty", - "librarian", - "library", - "licking", - "licorice", - "lid", - "life", - "lifter", - "lifting", - "liftoff", - "ligament", - "likely", - "likeness", - "likewise", - "liking", - "lilac", - "lilly", - "lily", - "limb", - "limeade", - "limelight", - "limes", - "limit", - "limping", - "limpness", - "line", - "lingo", - "linguini", - "linguist", - "lining", - "linked", - "linoleum", - "linseed", - "lint", - "lion", - "lip", - "liquefy", - "liqueur", - "liquid", - "lisp", - "list", - "litigate", - "litigator", - "litmus", - "litter", - "little", - "livable", - "lived", - "lively", - "liver", - "livestock", - "lividly", - "living", - "lizard", - "lubricant", - "lubricate", - "lucid", - "luckily", - "luckiness", - "luckless", - "lucrative", - "ludicrous", - "lugged", - "lukewarm", - "lullaby", - "lumber", - "luminance", - "luminous", - "lumpiness", - "lumping", - "lumpish", - "lunacy", - "lunar", - "lunchbox", - "luncheon", - "lunchroom", - "lunchtime", - "lung", - "lurch", - "lure", - "luridness", - "lurk", - "lushly", - "lushness", - "luster", - "lustfully", - "lustily", - "lustiness", - "lustrous", - "lusty", - "luxurious", - "luxury", - "lying", - "lyrically", - "lyricism", - "lyricist", - "lyrics", - "macarena", - "macaroni", - "macaw", - "mace", - "machine", - "machinist", - "magazine", - "magenta", - "maggot", - "magical", - "magician", - "magma", - "magnesium", - "magnetic", - "magnetism", - "magnetize", - "magnifier", - "magnify", - "magnitude", - "magnolia", - "mahogany", - "maimed", - "majestic", - "majesty", - "majorette", - "majority", - "makeover", - "maker", - "makeshift", - "making", - "malformed", - "malt", - "mama", - "mammal", - "mammary", - "mammogram", - "manager", - "managing", - "manatee", - "mandarin", - "mandate", - "mandatory", - "mandolin", - "manger", - "mangle", - "mango", - "mangy", - "manhandle", - "manhole", - "manhood", - "manhunt", - "manicotti", - "manicure", - "manifesto", - "manila", - "mankind", - "manlike", - "manliness", - "manly", - "manmade", - "manned", - "mannish", - "manor", - "manpower", - "mantis", - "mantra", - "manual", - "many", - "map", - "marathon", - "marauding", - "marbled", - "marbles", - "marbling", - "march", - "mardi", - "margarine", - "margarita", - "margin", - "marigold", - "marina", - "marine", - "marital", - "maritime", - "marlin", - "marmalade", - "maroon", - "married", - "marrow", - "marry", - "marshland", - "marshy", - "marsupial", - "marvelous", - "marxism", - "mascot", - "masculine", - "mashed", - "mashing", - "massager", - "masses", - "massive", - "mastiff", - "matador", - "matchbook", - "matchbox", - "matcher", - "matching", - "matchless", - "material", - "maternal", - "maternity", - "math", - "mating", - "matriarch", - "matrimony", - "matrix", - "matron", - "matted", - "matter", - "maturely", - "maturing", - "maturity", - "mauve", - "maverick", - "maximize", - "maximum", - "maybe", - "mayday", - "mayflower", - "moaner", - "moaning", - "mobile", - "mobility", - "mobilize", - "mobster", - "mocha", - "mocker", - "mockup", - "modified", - "modify", - "modular", - "modulator", - "module", - "moisten", - "moistness", - "moisture", - "molar", - "molasses", - "mold", - "molecular", - "molecule", - "molehill", - "mollusk", - "mom", - "monastery", - "monday", - "monetary", - "monetize", - "moneybags", - "moneyless", - "moneywise", - "mongoose", - "mongrel", - "monitor", - "monkhood", - "monogamy", - "monogram", - "monologue", - "monopoly", - "monorail", - "monotone", - "monotype", - "monoxide", - "monsieur", - "monsoon", - "monstrous", - "monthly", - "monument", - "moocher", - "moodiness", - "moody", - "mooing", - "moonbeam", - "mooned", - "moonlight", - "moonlike", - "moonlit", - "moonrise", - "moonscape", - "moonshine", - "moonstone", - "moonwalk", - "mop", - "morale", - "morality", - "morally", - "morbidity", - "morbidly", - "morphine", - "morphing", - "morse", - "mortality", - "mortally", - "mortician", - "mortified", - "mortify", - "mortuary", - "mosaic", - "mossy", - "most", - "mothball", - "mothproof", - "motion", - "motivate", - "motivator", - "motive", - "motocross", - "motor", - "motto", - "mountable", - "mountain", - "mounted", - "mounting", - "mourner", - "mournful", - "mouse", - "mousiness", - "moustache", - "mousy", - "mouth", - "movable", - "move", - "movie", - "moving", - "mower", - "mowing", - "much", - "muck", - "mud", - "mug", - "mulberry", - "mulch", - "mule", - "mulled", - "mullets", - "multiple", - "multiply", - "multitask", - "multitude", - "mumble", - "mumbling", - "mumbo", - "mummified", - "mummify", - "mummy", - "mumps", - "munchkin", - "mundane", - "municipal", - "muppet", - "mural", - "murkiness", - "murky", - "murmuring", - "muscular", - "museum", - "mushily", - "mushiness", - "mushroom", - "mushy", - "music", - "musket", - "muskiness", - "musky", - "mustang", - "mustard", - "muster", - "mustiness", - "musty", - "mutable", - "mutate", - "mutation", - "mute", - "mutilated", - "mutilator", - "mutiny", - "mutt", - "mutual", - "muzzle", - "myself", - "myspace", - "mystified", - "mystify", - "myth", - "nacho", - "nag", - "nail", - "name", - "naming", - "nanny", - "nanometer", - "nape", - "napkin", - "napped", - "napping", - "nappy", - "narrow", - "nastily", - "nastiness", - "national", - "native", - "nativity", - "natural", - "nature", - "naturist", - "nautical", - "navigate", - "navigator", - "navy", - "nearby", - "nearest", - "nearly", - "nearness", - "neatly", - "neatness", - "nebula", - "nebulizer", - "nectar", - "negate", - "negation", - "negative", - "neglector", - "negligee", - "negligent", - "negotiate", - "nemeses", - "nemesis", - "neon", - "nephew", - "nerd", - "nervous", - "nervy", - "nest", - "net", - "neurology", - "neuron", - "neurosis", - "neurotic", - "neuter", - "neutron", - "never", - "next", - "nibble", - "nickname", - "nicotine", - "niece", - "nifty", - "nimble", - "nimbly", - "nineteen", - "ninetieth", - "ninja", - "nintendo", - "ninth", - "nuclear", - "nuclei", - "nucleus", - "nugget", - "nullify", - "number", - "numbing", - "numbly", - "numbness", - "numeral", - "numerate", - "numerator", - "numeric", - "numerous", - "nuptials", - "nursery", - "nursing", - "nurture", - "nutcase", - "nutlike", - "nutmeg", - "nutrient", - "nutshell", - "nuttiness", - "nutty", - "nuzzle", - "nylon", - "oaf", - "oak", - "oasis", - "oat", - "obedience", - "obedient", - "obituary", - "object", - "obligate", - "obliged", - "oblivion", - "oblivious", - "oblong", - "obnoxious", - "oboe", - "obscure", - "obscurity", - "observant", - "observer", - "observing", - "obsessed", - "obsession", - "obsessive", - "obsolete", - "obstacle", - "obstinate", - "obstruct", - "obtain", - "obtrusive", - "obtuse", - "obvious", - "occultist", - "occupancy", - "occupant", - "occupier", - "occupy", - "ocean", - "ocelot", - "octagon", - "octane", - "october", - "octopus", - "ogle", - "oil", - "oink", - "ointment", - "okay", - "old", - "olive", - "olympics", - "omega", - "omen", - "ominous", - "omission", - "omit", - "omnivore", - "onboard", - "oncoming", - "ongoing", - "onion", - "online", - "onlooker", - "only", - "onscreen", - "onset", - "onshore", - "onslaught", - "onstage", - "onto", - "onward", - "onyx", - "oops", - "ooze", - "oozy", - "opacity", - "opal", - "open", - "operable", - "operate", - "operating", - "operation", - "operative", - "operator", - "opium", - "opossum", - "opponent", - "oppose", - "opposing", - "opposite", - "oppressed", - "oppressor", - "opt", - "opulently", - "osmosis", - "other", - "otter", - "ouch", - "ought", - "ounce", - "outage", - "outback", - "outbid", - "outboard", - "outbound", - "outbreak", - "outburst", - "outcast", - "outclass", - "outcome", - "outdated", - "outdoors", - "outer", - "outfield", - "outfit", - "outflank", - "outgoing", - "outgrow", - "outhouse", - "outing", - "outlast", - "outlet", - "outline", - "outlook", - "outlying", - "outmatch", - "outmost", - "outnumber", - "outplayed", - "outpost", - "outpour", - "output", - "outrage", - "outrank", - "outreach", - "outright", - "outscore", - "outsell", - "outshine", - "outshoot", - "outsider", - "outskirts", - "outsmart", - "outsource", - "outspoken", - "outtakes", - "outthink", - "outward", - "outweigh", - "outwit", - "oval", - "ovary", - "oven", - "overact", - "overall", - "overarch", - "overbid", - "overbill", - "overbite", - "overblown", - "overboard", - "overbook", - "overbuilt", - "overcast", - "overcoat", - "overcome", - "overcook", - "overcrowd", - "overdraft", - "overdrawn", - "overdress", - "overdrive", - "overdue", - "overeager", - "overeater", - "overexert", - "overfed", - "overfeed", - "overfill", - "overflow", - "overfull", - "overgrown", - "overhand", - "overhang", - "overhaul", - "overhead", - "overhear", - "overheat", - "overhung", - "overjoyed", - "overkill", - "overlabor", - "overlaid", - "overlap", - "overlay", - "overload", - "overlook", - "overlord", - "overlying", - "overnight", - "overpass", - "overpay", - "overplant", - "overplay", - "overpower", - "overprice", - "overrate", - "overreach", - "overreact", - "override", - "overripe", - "overrule", - "overrun", - "overshoot", - "overshot", - "oversight", - "oversized", - "oversleep", - "oversold", - "overspend", - "overstate", - "overstay", - "overstep", - "overstock", - "overstuff", - "oversweet", - "overtake", - "overthrow", - "overtime", - "overtly", - "overtone", - "overture", - "overturn", - "overuse", - "overvalue", - "overview", - "overwrite", - "owl", - "oxford", - "oxidant", - "oxidation", - "oxidize", - "oxidizing", - "oxygen", - "oxymoron", - "oyster", - "ozone", - "paced", - "pacemaker", - "pacific", - "pacifier", - "pacifism", - "pacifist", - "pacify", - "padded", - "padding", - "paddle", - "paddling", - "padlock", - "pagan", - "pager", - "paging", - "pajamas", - "palace", - "palatable", - "palm", - "palpable", - "palpitate", - "paltry", - "pampered", - "pamperer", - "pampers", - "pamphlet", - "panama", - "pancake", - "pancreas", - "panda", - "pandemic", - "pang", - "panhandle", - "panic", - "panning", - "panorama", - "panoramic", - "panther", - "pantomime", - "pantry", - "pants", - "pantyhose", - "paparazzi", - "papaya", - "paper", - "paprika", - "papyrus", - "parabola", - "parachute", - "parade", - "paradox", - "paragraph", - "parakeet", - "paralegal", - "paralyses", - "paralysis", - "paralyze", - "paramedic", - "parameter", - "paramount", - "parasail", - "parasite", - "parasitic", - "parcel", - "parched", - "parchment", - "pardon", - "parish", - "parka", - "parking", - "parkway", - "parlor", - "parmesan", - "parole", - "parrot", - "parsley", - "parsnip", - "partake", - "parted", - "parting", - "partition", - "partly", - "partner", - "partridge", - "party", - "passable", - "passably", - "passage", - "passcode", - "passenger", - "passerby", - "passing", - "passion", - "passive", - "passivism", - "passover", - "passport", - "password", - "pasta", - "pasted", - "pastel", - "pastime", - "pastor", - "pastrami", - "pasture", - "pasty", - "patchwork", - "patchy", - "paternal", - "paternity", - "path", - "patience", - "patient", - "patio", - "patriarch", - "patriot", - "patrol", - "patronage", - "patronize", - "pauper", - "pavement", - "paver", - "pavestone", - "pavilion", - "paving", - "pawing", - "payable", - "payback", - "paycheck", - "payday", - "payee", - "payer", - "paying", - "payment", - "payphone", - "payroll", - "pebble", - "pebbly", - "pecan", - "pectin", - "peculiar", - "peddling", - "pediatric", - "pedicure", - "pedigree", - "pedometer", - "pegboard", - "pelican", - "pellet", - "pelt", - "pelvis", - "penalize", - "penalty", - "pencil", - "pendant", - "pending", - "penholder", - "penknife", - "pennant", - "penniless", - "penny", - "penpal", - "pension", - "pentagon", - "pentagram", - "pep", - "perceive", - "percent", - "perch", - "percolate", - "perennial", - "perfected", - "perfectly", - "perfume", - "periscope", - "perish", - "perjurer", - "perjury", - "perkiness", - "perky", - "perm", - "peroxide", - "perpetual", - "perplexed", - "persecute", - "persevere", - "persuaded", - "persuader", - "pesky", - "peso", - "pessimism", - "pessimist", - "pester", - "pesticide", - "petal", - "petite", - "petition", - "petri", - "petroleum", - "petted", - "petticoat", - "pettiness", - "petty", - "petunia", - "phantom", - "phobia", - "phoenix", - "phonebook", - "phoney", - "phonics", - "phoniness", - "phony", - "phosphate", - "photo", - "phrase", - "phrasing", - "placard", - "placate", - "placidly", - "plank", - "planner", - "plant", - "plasma", - "plaster", - "plastic", - "plated", - "platform", - "plating", - "platinum", - "platonic", - "platter", - "platypus", - "plausible", - "plausibly", - "playable", - "playback", - "player", - "playful", - "playgroup", - "playhouse", - "playing", - "playlist", - "playmaker", - "playmate", - "playoff", - "playpen", - "playroom", - "playset", - "plaything", - "playtime", - "plaza", - "pleading", - "pleat", - "pledge", - "plentiful", - "plenty", - "plethora", - "plexiglas", - "pliable", - "plod", - "plop", - "plot", - "plow", - "ploy", - "pluck", - "plug", - "plunder", - "plunging", - "plural", - "plus", - "plutonium", - "plywood", - "poach", - "pod", - "poem", - "poet", - "pogo", - "pointed", - "pointer", - "pointing", - "pointless", - "pointy", - "poise", - "poison", - "poker", - "poking", - "polar", - "police", - "policy", - "polio", - "polish", - "politely", - "polka", - "polo", - "polyester", - "polygon", - "polygraph", - "polymer", - "poncho", - "pond", - "pony", - "popcorn", - "pope", - "poplar", - "popper", - "poppy", - "popsicle", - "populace", - "popular", - "populate", - "porcupine", - "pork", - "porous", - "porridge", - "portable", - "portal", - "portfolio", - "porthole", - "portion", - "portly", - "portside", - "poser", - "posh", - "posing", - "possible", - "possibly", - "possum", - "postage", - "postal", - "postbox", - "postcard", - "posted", - "poster", - "posting", - "postnasal", - "posture", - "postwar", - "pouch", - "pounce", - "pouncing", - "pound", - "pouring", - "pout", - "powdered", - "powdering", - "powdery", - "power", - "powwow", - "pox", - "praising", - "prance", - "prancing", - "pranker", - "prankish", - "prankster", - "prayer", - "praying", - "preacher", - "preaching", - "preachy", - "preamble", - "precinct", - "precise", - "precision", - "precook", - "precut", - "predator", - "predefine", - "predict", - "preface", - "prefix", - "preflight", - "preformed", - "pregame", - "pregnancy", - "pregnant", - "preheated", - "prelaunch", - "prelaw", - "prelude", - "premiere", - "premises", - "premium", - "prenatal", - "preoccupy", - "preorder", - "prepaid", - "prepay", - "preplan", - "preppy", - "preschool", - "prescribe", - "preseason", - "preset", - "preshow", - "president", - "presoak", - "press", - "presume", - "presuming", - "preteen", - "pretended", - "pretender", - "pretense", - "pretext", - "pretty", - "pretzel", - "prevail", - "prevalent", - "prevent", - "preview", - "previous", - "prewar", - "prewashed", - "prideful", - "pried", - "primal", - "primarily", - "primary", - "primate", - "primer", - "primp", - "princess", - "print", - "prior", - "prism", - "prison", - "prissy", - "pristine", - "privacy", - "private", - "privatize", - "prize", - "proactive", - "probable", - "probably", - "probation", - "probe", - "probing", - "probiotic", - "problem", - "procedure", - "process", - "proclaim", - "procreate", - "procurer", - "prodigal", - "prodigy", - "produce", - "product", - "profane", - "profanity", - "professed", - "professor", - "profile", - "profound", - "profusely", - "progeny", - "prognosis", - "program", - "progress", - "projector", - "prologue", - "prolonged", - "promenade", - "prominent", - "promoter", - "promotion", - "prompter", - "promptly", - "prone", - "prong", - "pronounce", - "pronto", - "proofing", - "proofread", - "proofs", - "propeller", - "properly", - "property", - "proponent", - "proposal", - "propose", - "props", - "prorate", - "protector", - "protegee", - "proton", - "prototype", - "protozoan", - "protract", - "protrude", - "proud", - "provable", - "proved", - "proven", - "provided", - "provider", - "providing", - "province", - "proving", - "provoke", - "provoking", - "provolone", - "prowess", - "prowler", - "prowling", - "proximity", - "proxy", - "prozac", - "prude", - "prudishly", - "prune", - "pruning", - "pry", - "psychic", - "public", - "publisher", - "pucker", - "pueblo", - "pug", - "pull", - "pulmonary", - "pulp", - "pulsate", - "pulse", - "pulverize", - "puma", - "pumice", - "pummel", - "punch", - "punctual", - "punctuate", - "punctured", - "pungent", - "punisher", - "punk", - "pupil", - "puppet", - "puppy", - "purchase", - "pureblood", - "purebred", - "purely", - "pureness", - "purgatory", - "purge", - "purging", - "purifier", - "purify", - "purist", - "puritan", - "purity", - "purple", - "purplish", - "purposely", - "purr", - "purse", - "pursuable", - "pursuant", - "pursuit", - "purveyor", - "pushcart", - "pushchair", - "pusher", - "pushiness", - "pushing", - "pushover", - "pushpin", - "pushup", - "pushy", - "putdown", - "putt", - "puzzle", - "puzzling", - "pyramid", - "pyromania", - "python", - "quack", - "quadrant", - "quail", - "quaintly", - "quake", - "quaking", - "qualified", - "qualifier", - "qualify", - "quality", - "qualm", - "quantum", - "quarrel", - "quarry", - "quartered", - "quarterly", - "quarters", - "quartet", - "quench", - "query", - "quicken", - "quickly", - "quickness", - "quicksand", - "quickstep", - "quiet", - "quill", - "quilt", - "quintet", - "quintuple", - "quirk", - "quit", - "quiver", - "quizzical", - "quotable", - "quotation", - "quote", - "rabid", - "race", - "racing", - "racism", - "rack", - "racoon", - "radar", - "radial", - "radiance", - "radiantly", - "radiated", - "radiation", - "radiator", - "radio", - "radish", - "raffle", - "raft", - "rage", - "ragged", - "raging", - "ragweed", - "raider", - "railcar", - "railing", - "railroad", - "railway", - "raisin", - "rake", - "raking", - "rally", - "ramble", - "rambling", - "ramp", - "ramrod", - "ranch", - "rancidity", - "random", - "ranged", - "ranger", - "ranging", - "ranked", - "ranking", - "ransack", - "ranting", - "rants", - "rare", - "rarity", - "rascal", - "rash", - "rasping", - "ravage", - "raven", - "ravine", - "raving", - "ravioli", - "ravishing", - "reabsorb", - "reach", - "reacquire", - "reaction", - "reactive", - "reactor", - "reaffirm", - "ream", - "reanalyze", - "reappear", - "reapply", - "reappoint", - "reapprove", - "rearrange", - "rearview", - "reason", - "reassign", - "reassure", - "reattach", - "reawake", - "rebalance", - "rebate", - "rebel", - "rebirth", - "reboot", - "reborn", - "rebound", - "rebuff", - "rebuild", - "rebuilt", - "reburial", - "rebuttal", - "recall", - "recant", - "recapture", - "recast", - "recede", - "recent", - "recess", - "recharger", - "recipient", - "recital", - "recite", - "reckless", - "reclaim", - "recliner", - "reclining", - "recluse", - "reclusive", - "recognize", - "recoil", - "recollect", - "recolor", - "reconcile", - "reconfirm", - "reconvene", - "recopy", - "record", - "recount", - "recoup", - "recovery", - "recreate", - "rectal", - "rectangle", - "rectified", - "rectify", - "recycled", - "recycler", - "recycling", - "reemerge", - "reenact", - "reenter", - "reentry", - "reexamine", - "referable", - "referee", - "reference", - "refill", - "refinance", - "refined", - "refinery", - "refining", - "refinish", - "reflected", - "reflector", - "reflex", - "reflux", - "refocus", - "refold", - "reforest", - "reformat", - "reformed", - "reformer", - "reformist", - "refract", - "refrain", - "refreeze", - "refresh", - "refried", - "refueling", - "refund", - "refurbish", - "refurnish", - "refusal", - "refuse", - "refusing", - "refutable", - "refute", - "regain", - "regalia", - "regally", - "reggae", - "regime", - "region", - "register", - "registrar", - "registry", - "regress", - "regretful", - "regroup", - "regular", - "regulate", - "regulator", - "rehab", - "reheat", - "rehire", - "rehydrate", - "reimburse", - "reissue", - "reiterate", - "rejoice", - "rejoicing", - "rejoin", - "rekindle", - "relapse", - "relapsing", - "relatable", - "related", - "relation", - "relative", - "relax", - "relay", - "relearn", - "release", - "relenting", - "reliable", - "reliably", - "reliance", - "reliant", - "relic", - "relieve", - "relieving", - "relight", - "relish", - "relive", - "reload", - "relocate", - "relock", - "reluctant", - "rely", - "remake", - "remark", - "remarry", - "rematch", - "remedial", - "remedy", - "remember", - "reminder", - "remindful", - "remission", - "remix", - "remnant", - "remodeler", - "remold", - "remorse", - "remote", - "removable", - "removal", - "removed", - "remover", - "removing", - "rename", - "renderer", - "rendering", - "rendition", - "renegade", - "renewable", - "renewably", - "renewal", - "renewed", - "renounce", - "renovate", - "renovator", - "rentable", - "rental", - "rented", - "renter", - "reoccupy", - "reoccur", - "reopen", - "reorder", - "repackage", - "repacking", - "repaint", - "repair", - "repave", - "repaying", - "repayment", - "repeal", - "repeated", - "repeater", - "repent", - "rephrase", - "replace", - "replay", - "replica", - "reply", - "reporter", - "repose", - "repossess", - "repost", - "repressed", - "reprimand", - "reprint", - "reprise", - "reproach", - "reprocess", - "reproduce", - "reprogram", - "reps", - "reptile", - "reptilian", - "repugnant", - "repulsion", - "repulsive", - "repurpose", - "reputable", - "reputably", - "request", - "require", - "requisite", - "reroute", - "rerun", - "resale", - "resample", - "rescuer", - "reseal", - "research", - "reselect", - "reseller", - "resemble", - "resend", - "resent", - "reset", - "reshape", - "reshoot", - "reshuffle", - "residence", - "residency", - "resident", - "residual", - "residue", - "resigned", - "resilient", - "resistant", - "resisting", - "resize", - "resolute", - "resolved", - "resonant", - "resonate", - "resort", - "resource", - "respect", - "resubmit", - "result", - "resume", - "resupply", - "resurface", - "resurrect", - "retail", - "retainer", - "retaining", - "retake", - "retaliate", - "retention", - "rethink", - "retinal", - "retired", - "retiree", - "retiring", - "retold", - "retool", - "retorted", - "retouch", - "retrace", - "retract", - "retrain", - "retread", - "retreat", - "retrial", - "retrieval", - "retriever", - "retry", - "return", - "retying", - "retype", - "reunion", - "reunite", - "reusable", - "reuse", - "reveal", - "reveler", - "revenge", - "revenue", - "reverb", - "revered", - "reverence", - "reverend", - "reversal", - "reverse", - "reversing", - "reversion", - "revert", - "revisable", - "revise", - "revision", - "revisit", - "revivable", - "revival", - "reviver", - "reviving", - "revocable", - "revoke", - "revolt", - "revolver", - "revolving", - "reward", - "rewash", - "rewind", - "rewire", - "reword", - "rework", - "rewrap", - "rewrite", - "rhyme", - "ribbon", - "ribcage", - "rice", - "riches", - "richly", - "richness", - "rickety", - "ricotta", - "riddance", - "ridden", - "ride", - "riding", - "rifling", - "rift", - "rigging", - "rigid", - "rigor", - "rimless", - "rimmed", - "rind", - "rink", - "rinse", - "rinsing", - "riot", - "ripcord", - "ripeness", - "ripening", - "ripping", - "ripple", - "rippling", - "riptide", - "rise", - "rising", - "risk", - "risotto", - "ritalin", - "ritzy", - "rival", - "riverbank", - "riverbed", - "riverboat", - "riverside", - "riveter", - "riveting", - "roamer", - "roaming", - "roast", - "robbing", - "robe", - "robin", - "robotics", - "robust", - "rockband", - "rocker", - "rocket", - "rockfish", - "rockiness", - "rocking", - "rocklike", - "rockslide", - "rockstar", - "rocky", - "rogue", - "roman", - "romp", - "rope", - "roping", - "roster", - "rosy", - "rotten", - "rotting", - "rotunda", - "roulette", - "rounding", - "roundish", - "roundness", - "roundup", - "roundworm", - "routine", - "routing", - "rover", - "roving", - "royal", - "rubbed", - "rubber", - "rubbing", - "rubble", - "rubdown", - "ruby", - "ruckus", - "rudder", - "rug", - "ruined", - "rule", - "rumble", - "rumbling", - "rummage", - "rumor", - "runaround", - "rundown", - "runner", - "running", - "runny", - "runt", - "runway", - "rupture", - "rural", - "ruse", - "rush", - "rust", - "rut", - "sabbath", - "sabotage", - "sacrament", - "sacred", - "sacrifice", - "sadden", - "saddlebag", - "saddled", - "saddling", - "sadly", - "sadness", - "safari", - "safeguard", - "safehouse", - "safely", - "safeness", - "saffron", - "saga", - "sage", - "sagging", - "saggy", - "said", - "saint", - "sake", - "salad", - "salami", - "salaried", - "salary", - "saline", - "salon", - "saloon", - "salsa", - "salt", - "salutary", - "salute", - "salvage", - "salvaging", - "salvation", - "same", - "sample", - "sampling", - "sanction", - "sanctity", - "sanctuary", - "sandal", - "sandbag", - "sandbank", - "sandbar", - "sandblast", - "sandbox", - "sanded", - "sandfish", - "sanding", - "sandlot", - "sandpaper", - "sandpit", - "sandstone", - "sandstorm", - "sandworm", - "sandy", - "sanitary", - "sanitizer", - "sank", - "santa", - "sapling", - "sappiness", - "sappy", - "sarcasm", - "sarcastic", - "sardine", - "sash", - "sasquatch", - "sassy", - "satchel", - "satiable", - "satin", - "satirical", - "satisfied", - "satisfy", - "saturate", - "saturday", - "sauciness", - "saucy", - "sauna", - "savage", - "savanna", - "saved", - "savings", - "savior", - "savor", - "saxophone", - "say", - "scabbed", - "scabby", - "scalded", - "scalding", - "scale", - "scaling", - "scallion", - "scallop", - "scalping", - "scam", - "scandal", - "scanner", - "scanning", - "scant", - "scapegoat", - "scarce", - "scarcity", - "scarecrow", - "scared", - "scarf", - "scarily", - "scariness", - "scarring", - "scary", - "scavenger", - "scenic", - "schedule", - "schematic", - "scheme", - "scheming", - "schilling", - "schnapps", - "scholar", - "science", - "scientist", - "scion", - "scoff", - "scolding", - "scone", - "scoop", - "scooter", - "scope", - "scorch", - "scorebook", - "scorecard", - "scored", - "scoreless", - "scorer", - "scoring", - "scorn", - "scorpion", - "scotch", - "scoundrel", - "scoured", - "scouring", - "scouting", - "scouts", - "scowling", - "scrabble", - "scraggly", - "scrambled", - "scrambler", - "scrap", - "scratch", - "scrawny", - "screen", - "scribble", - "scribe", - "scribing", - "scrimmage", - "script", - "scroll", - "scrooge", - "scrounger", - "scrubbed", - "scrubber", - "scruffy", - "scrunch", - "scrutiny", - "scuba", - "scuff", - "sculptor", - "sculpture", - "scurvy", - "scuttle", - "secluded", - "secluding", - "seclusion", - "second", - "secrecy", - "secret", - "sectional", - "sector", - "secular", - "securely", - "security", - "sedan", - "sedate", - "sedation", - "sedative", - "sediment", - "seduce", - "seducing", - "segment", - "seismic", - "seizing", - "seldom", - "selected", - "selection", - "selective", - "selector", - "self", - "seltzer", - "semantic", - "semester", - "semicolon", - "semifinal", - "seminar", - "semisoft", - "semisweet", - "senate", - "senator", - "send", - "senior", - "senorita", - "sensation", - "sensitive", - "sensitize", - "sensually", - "sensuous", - "sepia", - "september", - "septic", - "septum", - "sequel", - "sequence", - "sequester", - "series", - "sermon", - "serotonin", - "serpent", - "serrated", - "serve", - "service", - "serving", - "sesame", - "sessions", - "setback", - "setting", - "settle", - "settling", - "setup", - "sevenfold", - "seventeen", - "seventh", - "seventy", - "severity", - "shabby", - "shack", - "shaded", - "shadily", - "shadiness", - "shading", - "shadow", - "shady", - "shaft", - "shakable", - "shakily", - "shakiness", - "shaking", - "shaky", - "shale", - "shallot", - "shallow", - "shame", - "shampoo", - "shamrock", - "shank", - "shanty", - "shape", - "shaping", - "share", - "sharpener", - "sharper", - "sharpie", - "sharply", - "sharpness", - "shawl", - "sheath", - "shed", - "sheep", - "sheet", - "shelf", - "shell", - "shelter", - "shelve", - "shelving", - "sherry", - "shield", - "shifter", - "shifting", - "shiftless", - "shifty", - "shimmer", - "shimmy", - "shindig", - "shine", - "shingle", - "shininess", - "shining", - "shiny", - "ship", - "shirt", - "shivering", - "shock", - "shone", - "shoplift", - "shopper", - "shopping", - "shoptalk", - "shore", - "shortage", - "shortcake", - "shortcut", - "shorten", - "shorter", - "shorthand", - "shortlist", - "shortly", - "shortness", - "shorts", - "shortwave", - "shorty", - "shout", - "shove", - "showbiz", - "showcase", - "showdown", - "shower", - "showgirl", - "showing", - "showman", - "shown", - "showoff", - "showpiece", - "showplace", - "showroom", - "showy", - "shrank", - "shrapnel", - "shredder", - "shredding", - "shrewdly", - "shriek", - "shrill", - "shrimp", - "shrine", - "shrink", - "shrivel", - "shrouded", - "shrubbery", - "shrubs", - "shrug", - "shrunk", - "shucking", - "shudder", - "shuffle", - "shuffling", - "shun", - "shush", - "shut", - "shy", - "siamese", - "siberian", - "sibling", - "siding", - "sierra", - "siesta", - "sift", - "sighing", - "silenced", - "silencer", - "silent", - "silica", - "silicon", - "silk", - "silliness", - "silly", - "silo", - "silt", - "silver", - "similarly", - "simile", - "simmering", - "simple", - "simplify", - "simply", - "sincere", - "sincerity", - "singer", - "singing", - "single", - "singular", - "sinister", - "sinless", - "sinner", - "sinuous", - "sip", - "siren", - "sister", - "sitcom", - "sitter", - "sitting", - "situated", - "situation", - "sixfold", - "sixteen", - "sixth", - "sixties", - "sixtieth", - "sixtyfold", - "sizable", - "sizably", - "size", - "sizing", - "sizzle", - "sizzling", - "skater", - "skating", - "skedaddle", - "skeletal", - "skeleton", - "skeptic", - "sketch", - "skewed", - "skewer", - "skid", - "skied", - "skier", - "skies", - "skiing", - "skilled", - "skillet", - "skillful", - "skimmed", - "skimmer", - "skimming", - "skimpily", - "skincare", - "skinhead", - "skinless", - "skinning", - "skinny", - "skintight", - "skipper", - "skipping", - "skirmish", - "skirt", - "skittle", - "skydiver", - "skylight", - "skyline", - "skype", - "skyrocket", - "skyward", - "slab", - "slacked", - "slacker", - "slacking", - "slackness", - "slacks", - "slain", - "slam", - "slander", - "slang", - "slapping", - "slapstick", - "slashed", - "slashing", - "slate", - "slather", - "slaw", - "sled", - "sleek", - "sleep", - "sleet", - "sleeve", - "slept", - "sliceable", - "sliced", - "slicer", - "slicing", - "slick", - "slider", - "slideshow", - "sliding", - "slighted", - "slighting", - "slightly", - "slimness", - "slimy", - "slinging", - "slingshot", - "slinky", - "slip", - "slit", - "sliver", - "slobbery", - "slogan", - "sloped", - "sloping", - "sloppily", - "sloppy", - "slot", - "slouching", - "slouchy", - "sludge", - "slug", - "slum", - "slurp", - "slush", - "sly", - "small", - "smartly", - "smartness", - "smasher", - "smashing", - "smashup", - "smell", - "smelting", - "smile", - "smilingly", - "smirk", - "smite", - "smith", - "smitten", - "smock", - "smog", - "smoked", - "smokeless", - "smokiness", - "smoking", - "smoky", - "smolder", - "smooth", - "smother", - "smudge", - "smudgy", - "smuggler", - "smuggling", - "smugly", - "smugness", - "snack", - "snagged", - "snaking", - "snap", - "snare", - "snarl", - "snazzy", - "sneak", - "sneer", - "sneeze", - "sneezing", - "snide", - "sniff", - "snippet", - "snipping", - "snitch", - "snooper", - "snooze", - "snore", - "snoring", - "snorkel", - "snort", - "snout", - "snowbird", - "snowboard", - "snowbound", - "snowcap", - "snowdrift", - "snowdrop", - "snowfall", - "snowfield", - "snowflake", - "snowiness", - "snowless", - "snowman", - "snowplow", - "snowshoe", - "snowstorm", - "snowsuit", - "snowy", - "snub", - "snuff", - "snuggle", - "snugly", - "snugness", - "speak", - "spearfish", - "spearhead", - "spearman", - "spearmint", - "species", - "specimen", - "specked", - "speckled", - "specks", - "spectacle", - "spectator", - "spectrum", - "speculate", - "speech", - "speed", - "spellbind", - "speller", - "spelling", - "spendable", - "spender", - "spending", - "spent", - "spew", - "sphere", - "spherical", - "sphinx", - "spider", - "spied", - "spiffy", - "spill", - "spilt", - "spinach", - "spinal", - "spindle", - "spinner", - "spinning", - "spinout", - "spinster", - "spiny", - "spiral", - "spirited", - "spiritism", - "spirits", - "spiritual", - "splashed", - "splashing", - "splashy", - "splatter", - "spleen", - "splendid", - "splendor", - "splice", - "splicing", - "splinter", - "splotchy", - "splurge", - "spoilage", - "spoiled", - "spoiler", - "spoiling", - "spoils", - "spoken", - "spokesman", - "sponge", - "spongy", - "sponsor", - "spoof", - "spookily", - "spooky", - "spool", - "spoon", - "spore", - "sporting", - "sports", - "sporty", - "spotless", - "spotlight", - "spotted", - "spotter", - "spotting", - "spotty", - "spousal", - "spouse", - "spout", - "sprain", - "sprang", - "sprawl", - "spray", - "spree", - "sprig", - "spring", - "sprinkled", - "sprinkler", - "sprint", - "sprite", - "sprout", - "spruce", - "sprung", - "spry", - "spud", - "spur", - "sputter", - "spyglass", - "squabble", - "squad", - "squall", - "squander", - "squash", - "squatted", - "squatter", - "squatting", - "squeak", - "squealer", - "squealing", - "squeamish", - "squeegee", - "squeeze", - "squeezing", - "squid", - "squiggle", - "squiggly", - "squint", - "squire", - "squirt", - "squishier", - "squishy", - "stability", - "stabilize", - "stable", - "stack", - "stadium", - "staff", - "stage", - "staging", - "stagnant", - "stagnate", - "stainable", - "stained", - "staining", - "stainless", - "stalemate", - "staleness", - "stalling", - "stallion", - "stamina", - "stammer", - "stamp", - "stand", - "stank", - "staple", - "stapling", - "starboard", - "starch", - "stardom", - "stardust", - "starfish", - "stargazer", - "staring", - "stark", - "starless", - "starlet", - "starlight", - "starlit", - "starring", - "starry", - "starship", - "starter", - "starting", - "startle", - "startling", - "startup", - "starved", - "starving", - "stash", - "state", - "static", - "statistic", - "statue", - "stature", - "status", - "statute", - "statutory", - "staunch", - "stays", - "steadfast", - "steadier", - "steadily", - "steadying", - "steam", - "steed", - "steep", - "steerable", - "steering", - "steersman", - "stegosaur", - "stellar", - "stem", - "stench", - "stencil", - "step", - "stereo", - "sterile", - "sterility", - "sterilize", - "sterling", - "sternness", - "sternum", - "stew", - "stick", - "stiffen", - "stiffly", - "stiffness", - "stifle", - "stifling", - "stillness", - "stilt", - "stimulant", - "stimulate", - "stimuli", - "stimulus", - "stinger", - "stingily", - "stinging", - "stingray", - "stingy", - "stinking", - "stinky", - "stipend", - "stipulate", - "stir", - "stitch", - "stock", - "stoic", - "stoke", - "stole", - "stomp", - "stonewall", - "stoneware", - "stonework", - "stoning", - "stony", - "stood", - "stooge", - "stool", - "stoop", - "stoplight", - "stoppable", - "stoppage", - "stopped", - "stopper", - "stopping", - "stopwatch", - "storable", - "storage", - "storeroom", - "storewide", - "storm", - "stout", - "stove", - "stowaway", - "stowing", - "straddle", - "straggler", - "strained", - "strainer", - "straining", - "strangely", - "stranger", - "strangle", - "strategic", - "strategy", - "stratus", - "straw", - "stray", - "streak", - "stream", - "street", - "strength", - "strenuous", - "strep", - "stress", - "stretch", - "strewn", - "stricken", - "strict", - "stride", - "strife", - "strike", - "striking", - "strive", - "striving", - "strobe", - "strode", - "stroller", - "strongbox", - "strongly", - "strongman", - "struck", - "structure", - "strudel", - "struggle", - "strum", - "strung", - "strut", - "stubbed", - "stubble", - "stubbly", - "stubborn", - "stucco", - "stuck", - "student", - "studied", - "studio", - "study", - "stuffed", - "stuffing", - "stuffy", - "stumble", - "stumbling", - "stump", - "stung", - "stunned", - "stunner", - "stunning", - "stunt", - "stupor", - "sturdily", - "sturdy", - "styling", - "stylishly", - "stylist", - "stylized", - "stylus", - "suave", - "subarctic", - "subatomic", - "subdivide", - "subdued", - "subduing", - "subfloor", - "subgroup", - "subheader", - "subject", - "sublease", - "sublet", - "sublevel", - "sublime", - "submarine", - "submerge", - "submersed", - "submitter", - "subpanel", - "subpar", - "subplot", - "subprime", - "subscribe", - "subscript", - "subsector", - "subside", - "subsiding", - "subsidize", - "subsidy", - "subsoil", - "subsonic", - "substance", - "subsystem", - "subtext", - "subtitle", - "subtly", - "subtotal", - "subtract", - "subtype", - "suburb", - "subway", - "subwoofer", - "subzero", - "succulent", - "such", - "suction", - "sudden", - "sudoku", - "suds", - "sufferer", - "suffering", - "suffice", - "suffix", - "suffocate", - "suffrage", - "sugar", - "suggest", - "suing", - "suitable", - "suitably", - "suitcase", - "suitor", - "sulfate", - "sulfide", - "sulfite", - "sulfur", - "sulk", - "sullen", - "sulphate", - "sulphuric", - "sultry", - "superbowl", - "superglue", - "superhero", - "superior", - "superjet", - "superman", - "supermom", - "supernova", - "supervise", - "supper", - "supplier", - "supply", - "support", - "supremacy", - "supreme", - "surcharge", - "surely", - "sureness", - "surface", - "surfacing", - "surfboard", - "surfer", - "surgery", - "surgical", - "surging", - "surname", - "surpass", - "surplus", - "surprise", - "surreal", - "surrender", - "surrogate", - "surround", - "survey", - "survival", - "survive", - "surviving", - "survivor", - "sushi", - "suspect", - "suspend", - "suspense", - "sustained", - "sustainer", - "swab", - "swaddling", - "swagger", - "swampland", - "swan", - "swapping", - "swarm", - "sway", - "swear", - "sweat", - "sweep", - "swell", - "swept", - "swerve", - "swifter", - "swiftly", - "swiftness", - "swimmable", - "swimmer", - "swimming", - "swimsuit", - "swimwear", - "swinger", - "swinging", - "swipe", - "swirl", - "switch", - "swivel", - "swizzle", - "swooned", - "swoop", - "swoosh", - "swore", - "sworn", - "swung", - "sycamore", - "sympathy", - "symphonic", - "symphony", - "symptom", - "synapse", - "syndrome", - "synergy", - "synopses", - "synopsis", - "synthesis", - "synthetic", - "syrup", - "system", - "t-shirt", - "tabasco", - "tabby", - "tableful", - "tables", - "tablet", - "tableware", - "tabloid", - "tackiness", - "tacking", - "tackle", - "tackling", - "tacky", - "taco", - "tactful", - "tactical", - "tactics", - "tactile", - "tactless", - "tadpole", - "taekwondo", - "tag", - "tainted", - "take", - "taking", - "talcum", - "talisman", - "tall", - "talon", - "tamale", - "tameness", - "tamer", - "tamper", - "tank", - "tanned", - "tannery", - "tanning", - "tantrum", - "tapeless", - "tapered", - "tapering", - "tapestry", - "tapioca", - "tapping", - "taps", - "tarantula", - "target", - "tarmac", - "tarnish", - "tarot", - "tartar", - "tartly", - "tartness", - "task", - "tassel", - "taste", - "tastiness", - "tasting", - "tasty", - "tattered", - "tattle", - "tattling", - "tattoo", - "taunt", - "tavern", - "thank", - "that", - "thaw", - "theater", - "theatrics", - "thee", - "theft", - "theme", - "theology", - "theorize", - "thermal", - "thermos", - "thesaurus", - "these", - "thesis", - "thespian", - "thicken", - "thicket", - "thickness", - "thieving", - "thievish", - "thigh", - "thimble", - "thing", - "think", - "thinly", - "thinner", - "thinness", - "thinning", - "thirstily", - "thirsting", - "thirsty", - "thirteen", - "thirty", - "thong", - "thorn", - "those", - "thousand", - "thrash", - "thread", - "threaten", - "threefold", - "thrift", - "thrill", - "thrive", - "thriving", - "throat", - "throbbing", - "throng", - "throttle", - "throwaway", - "throwback", - "thrower", - "throwing", - "thud", - "thumb", - "thumping", - "thursday", - "thus", - "thwarting", - "thyself", - "tiara", - "tibia", - "tidal", - "tidbit", - "tidiness", - "tidings", - "tidy", - "tiger", - "tighten", - "tightly", - "tightness", - "tightrope", - "tightwad", - "tigress", - "tile", - "tiling", - "till", - "tilt", - "timid", - "timing", - "timothy", - "tinderbox", - "tinfoil", - "tingle", - "tingling", - "tingly", - "tinker", - "tinkling", - "tinsel", - "tinsmith", - "tint", - "tinwork", - "tiny", - "tipoff", - "tipped", - "tipper", - "tipping", - "tiptoeing", - "tiptop", - "tiring", - "tissue", - "trace", - "tracing", - "track", - "traction", - "tractor", - "trade", - "trading", - "tradition", - "traffic", - "tragedy", - "trailing", - "trailside", - "train", - "traitor", - "trance", - "tranquil", - "transfer", - "transform", - "translate", - "transpire", - "transport", - "transpose", - "trapdoor", - "trapeze", - "trapezoid", - "trapped", - "trapper", - "trapping", - "traps", - "trash", - "travel", - "traverse", - "travesty", - "tray", - "treachery", - "treading", - "treadmill", - "treason", - "treat", - "treble", - "tree", - "trekker", - "tremble", - "trembling", - "tremor", - "trench", - "trend", - "trespass", - "triage", - "trial", - "triangle", - "tribesman", - "tribunal", - "tribune", - "tributary", - "tribute", - "triceps", - "trickery", - "trickily", - "tricking", - "trickle", - "trickster", - "tricky", - "tricolor", - "tricycle", - "trident", - "tried", - "trifle", - "trifocals", - "trillion", - "trilogy", - "trimester", - "trimmer", - "trimming", - "trimness", - "trinity", - "trio", - "tripod", - "tripping", - "triumph", - "trivial", - "trodden", - "trolling", - "trombone", - "trophy", - "tropical", - "tropics", - "trouble", - "troubling", - "trough", - "trousers", - "trout", - "trowel", - "truce", - "truck", - "truffle", - "trump", - "trunks", - "trustable", - "trustee", - "trustful", - "trusting", - "trustless", - "truth", - "try", - "tubby", - "tubeless", - "tubular", - "tucking", - "tuesday", - "tug", - "tuition", - "tulip", - "tumble", - "tumbling", - "tummy", - "turban", - "turbine", - "turbofan", - "turbojet", - "turbulent", - "turf", - "turkey", - "turmoil", - "turret", - "turtle", - "tusk", - "tutor", - "tutu", - "tux", - "tweak", - "tweed", - "tweet", - "tweezers", - "twelve", - "twentieth", - "twenty", - "twerp", - "twice", - "twiddle", - "twiddling", - "twig", - "twilight", - "twine", - "twins", - "twirl", - "twistable", - "twisted", - "twister", - "twisting", - "twisty", - "twitch", - "twitter", - "tycoon", - "tying", - "tyke", - "udder", - "ultimate", - "ultimatum", - "ultra", - "umbilical", - "umbrella", - "umpire", - "unabashed", - "unable", - "unadorned", - "unadvised", - "unafraid", - "unaired", - "unaligned", - "unaltered", - "unarmored", - "unashamed", - "unaudited", - "unawake", - "unaware", - "unbaked", - "unbalance", - "unbeaten", - "unbend", - "unbent", - "unbiased", - "unbitten", - "unblended", - "unblessed", - "unblock", - "unbolted", - "unbounded", - "unboxed", - "unbraided", - "unbridle", - "unbroken", - "unbuckled", - "unbundle", - "unburned", - "unbutton", - "uncanny", - "uncapped", - "uncaring", - "uncertain", - "unchain", - "unchanged", - "uncharted", - "uncheck", - "uncivil", - "unclad", - "unclaimed", - "unclamped", - "unclasp", - "uncle", - "unclip", - "uncloak", - "unclog", - "unclothed", - "uncoated", - "uncoiled", - "uncolored", - "uncombed", - "uncommon", - "uncooked", - "uncork", - "uncorrupt", - "uncounted", - "uncouple", - "uncouth", - "uncover", - "uncross", - "uncrown", - "uncrushed", - "uncured", - "uncurious", - "uncurled", - "uncut", - "undamaged", - "undated", - "undaunted", - "undead", - "undecided", - "undefined", - "underage", - "underarm", - "undercoat", - "undercook", - "undercut", - "underdog", - "underdone", - "underfed", - "underfeed", - "underfoot", - "undergo", - "undergrad", - "underhand", - "underline", - "underling", - "undermine", - "undermost", - "underpaid", - "underpass", - "underpay", - "underrate", - "undertake", - "undertone", - "undertook", - "undertow", - "underuse", - "underwear", - "underwent", - "underwire", - "undesired", - "undiluted", - "undivided", - "undocked", - "undoing", - "undone", - "undrafted", - "undress", - "undrilled", - "undusted", - "undying", - "unearned", - "unearth", - "unease", - "uneasily", - "uneasy", - "uneatable", - "uneaten", - "unedited", - "unelected", - "unending", - "unengaged", - "unenvied", - "unequal", - "unethical", - "uneven", - "unexpired", - "unexposed", - "unfailing", - "unfair", - "unfasten", - "unfazed", - "unfeeling", - "unfiled", - "unfilled", - "unfitted", - "unfitting", - "unfixable", - "unfixed", - "unflawed", - "unfocused", - "unfold", - "unfounded", - "unframed", - "unfreeze", - "unfrosted", - "unfrozen", - "unfunded", - "unglazed", - "ungloved", - "unglue", - "ungodly", - "ungraded", - "ungreased", - "unguarded", - "unguided", - "unhappily", - "unhappy", - "unharmed", - "unhealthy", - "unheard", - "unhearing", - "unheated", - "unhelpful", - "unhidden", - "unhinge", - "unhitched", - "unholy", - "unhook", - "unicorn", - "unicycle", - "unified", - "unifier", - "uniformed", - "uniformly", - "unify", - "unimpeded", - "uninjured", - "uninstall", - "uninsured", - "uninvited", - "union", - "uniquely", - "unisexual", - "unison", - "unissued", - "unit", - "universal", - "universe", - "unjustly", - "unkempt", - "unkind", - "unknotted", - "unknowing", - "unknown", - "unlaced", - "unlatch", - "unlawful", - "unleaded", - "unlearned", - "unleash", - "unless", - "unleveled", - "unlighted", - "unlikable", - "unlimited", - "unlined", - "unlinked", - "unlisted", - "unlit", - "unlivable", - "unloaded", - "unloader", - "unlocked", - "unlocking", - "unlovable", - "unloved", - "unlovely", - "unloving", - "unluckily", - "unlucky", - "unmade", - "unmanaged", - "unmanned", - "unmapped", - "unmarked", - "unmasked", - "unmasking", - "unmatched", - "unmindful", - "unmixable", - "unmixed", - "unmolded", - "unmoral", - "unmovable", - "unmoved", - "unmoving", - "unnamable", - "unnamed", - "unnatural", - "unneeded", - "unnerve", - "unnerving", - "unnoticed", - "unopened", - "unopposed", - "unpack", - "unpadded", - "unpaid", - "unpainted", - "unpaired", - "unpaved", - "unpeeled", - "unpicked", - "unpiloted", - "unpinned", - "unplanned", - "unplanted", - "unpleased", - "unpledged", - "unplowed", - "unplug", - "unpopular", - "unproven", - "unquote", - "unranked", - "unrated", - "unraveled", - "unreached", - "unread", - "unreal", - "unreeling", - "unrefined", - "unrelated", - "unrented", - "unrest", - "unretired", - "unrevised", - "unrigged", - "unripe", - "unrivaled", - "unroasted", - "unrobed", - "unroll", - "unruffled", - "unruly", - "unrushed", - "unsaddle", - "unsafe", - "unsaid", - "unsalted", - "unsaved", - "unsavory", - "unscathed", - "unscented", - "unscrew", - "unsealed", - "unseated", - "unsecured", - "unseeing", - "unseemly", - "unseen", - "unselect", - "unselfish", - "unsent", - "unsettled", - "unshackle", - "unshaken", - "unshaved", - "unshaven", - "unsheathe", - "unshipped", - "unsightly", - "unsigned", - "unskilled", - "unsliced", - "unsmooth", - "unsnap", - "unsocial", - "unsoiled", - "unsold", - "unsolved", - "unsorted", - "unspoiled", - "unspoken", - "unstable", - "unstaffed", - "unstamped", - "unsteady", - "unsterile", - "unstirred", - "unstitch", - "unstopped", - "unstuck", - "unstuffed", - "unstylish", - "unsubtle", - "unsubtly", - "unsuited", - "unsure", - "unsworn", - "untagged", - "untainted", - "untaken", - "untamed", - "untangled", - "untapped", - "untaxed", - "unthawed", - "unthread", - "untidy", - "untie", - "until", - "untimed", - "untimely", - "untitled", - "untoasted", - "untold", - "untouched", - "untracked", - "untrained", - "untreated", - "untried", - "untrimmed", - "untrue", - "untruth", - "unturned", - "untwist", - "untying", - "unusable", - "unused", - "unusual", - "unvalued", - "unvaried", - "unvarying", - "unveiled", - "unveiling", - "unvented", - "unviable", - "unvisited", - "unvocal", - "unwanted", - "unwarlike", - "unwary", - "unwashed", - "unwatched", - "unweave", - "unwed", - "unwelcome", - "unwell", - "unwieldy", - "unwilling", - "unwind", - "unwired", - "unwitting", - "unwomanly", - "unworldly", - "unworn", - "unworried", - "unworthy", - "unwound", - "unwoven", - "unwrapped", - "unwritten", - "unzip", - "upbeat", - "upchuck", - "upcoming", - "upcountry", - "update", - "upfront", - "upgrade", - "upheaval", - "upheld", - "uphill", - "uphold", - "uplifted", - "uplifting", - "upload", - "upon", - "upper", - "upright", - "uprising", - "upriver", - "uproar", - "uproot", - "upscale", - "upside", - "upstage", - "upstairs", - "upstart", - "upstate", - "upstream", - "upstroke", - "upswing", - "uptake", - "uptight", - "uptown", - "upturned", - "upward", - "upwind", - "uranium", - "urban", - "urchin", - "urethane", - "urgency", - "urgent", - "urging", - "urologist", - "urology", - "usable", - "usage", - "useable", - "used", - "uselessly", - "user", - "usher", - "usual", - "utensil", - "utility", - "utilize", - "utmost", - "utopia", - "utter", - "vacancy", - "vacant", - "vacate", - "vacation", - "vagabond", - "vagrancy", - "vagrantly", - "vaguely", - "vagueness", - "valiant", - "valid", - "valium", - "valley", - "valuables", - "value", - "vanilla", - "vanish", - "vanity", - "vanquish", - "vantage", - "vaporizer", - "variable", - "variably", - "varied", - "variety", - "various", - "varmint", - "varnish", - "varsity", - "varying", - "vascular", - "vaseline", - "vastly", - "vastness", - "veal", - "vegan", - "veggie", - "vehicular", - "velcro", - "velocity", - "velvet", - "vendetta", - "vending", - "vendor", - "veneering", - "vengeful", - "venomous", - "ventricle", - "venture", - "venue", - "venus", - "verbalize", - "verbally", - "verbose", - "verdict", - "verify", - "verse", - "version", - "versus", - "vertebrae", - "vertical", - "vertigo", - "very", - "vessel", - "vest", - "veteran", - "veto", - "vexingly", - "viability", - "viable", - "vibes", - "vice", - "vicinity", - "victory", - "video", - "viewable", - "viewer", - "viewing", - "viewless", - "viewpoint", - "vigorous", - "village", - "villain", - "vindicate", - "vineyard", - "vintage", - "violate", - "violation", - "violator", - "violet", - "violin", - "viper", - "viral", - "virtual", - "virtuous", - "virus", - "visa", - "viscosity", - "viscous", - "viselike", - "visible", - "visibly", - "vision", - "visiting", - "visitor", - "visor", - "vista", - "vitality", - "vitalize", - "vitally", - "vitamins", - "vivacious", - "vividly", - "vividness", - "vixen", - "vocalist", - "vocalize", - "vocally", - "vocation", - "voice", - "voicing", - "void", - "volatile", - "volley", - "voltage", - "volumes", - "voter", - "voting", - "voucher", - "vowed", - "vowel", - "voyage", - "wackiness", - "wad", - "wafer", - "waffle", - "waged", - "wager", - "wages", - "waggle", - "wagon", - "wake", - "waking", - "walk", - "walmart", - "walnut", - "walrus", - "waltz", - "wand", - "wannabe", - "wanted", - "wanting", - "wasabi", - "washable", - "washbasin", - "washboard", - "washbowl", - "washcloth", - "washday", - "washed", - "washer", - "washhouse", - "washing", - "washout", - "washroom", - "washstand", - "washtub", - "wasp", - "wasting", - "watch", - "water", - "waviness", - "waving", - "wavy", - "whacking", - "whacky", - "wham", - "wharf", - "wheat", - "whenever", - "whiff", - "whimsical", - "whinny", - "whiny", - "whisking", - "whoever", - "whole", - "whomever", - "whoopee", - "whooping", - "whoops", - "why", - "wick", - "widely", - "widen", - "widget", - "widow", - "width", - "wieldable", - "wielder", - "wife", - "wifi", - "wikipedia", - "wildcard", - "wildcat", - "wilder", - "wildfire", - "wildfowl", - "wildland", - "wildlife", - "wildly", - "wildness", - "willed", - "willfully", - "willing", - "willow", - "willpower", - "wilt", - "wimp", - "wince", - "wincing", - "wind", - "wing", - "winking", - "winner", - "winnings", - "winter", - "wipe", - "wired", - "wireless", - "wiring", - "wiry", - "wisdom", - "wise", - "wish", - "wisplike", - "wispy", - "wistful", - "wizard", - "wobble", - "wobbling", - "wobbly", - "wok", - "wolf", - "wolverine", - "womanhood", - "womankind", - "womanless", - "womanlike", - "womanly", - "womb", - "woof", - "wooing", - "wool", - "woozy", - "word", - "work", - "worried", - "worrier", - "worrisome", - "worry", - "worsening", - "worshiper", - "worst", - "wound", - "woven", - "wow", - "wrangle", - "wrath", - "wreath", - "wreckage", - "wrecker", - "wrecking", - "wrench", - "wriggle", - "wriggly", - "wrinkle", - "wrinkly", - "wrist", - "writing", - "written", - "wrongdoer", - "wronged", - "wrongful", - "wrongly", - "wrongness", - "wrought", - "xbox", - "xerox", - "yahoo", - "yam", - "yanking", - "yapping", - "yard", - "yarn", - "yeah", - "yearbook", - "yearling", - "yearly", - "yearning", - "yeast", - "yelling", - "yelp", - "yen", - "yesterday", - "yiddish", - "yield", - "yin", - "yippee", - "yo-yo", - "yodel", - "yoga", - "yogurt", - "yonder", - "yoyo", - "yummy", - "zap", - "zealous", - "zebra", - "zen", - "zeppelin", - "zero", - "zestfully", - "zesty", - "zigzagged", - "zipfile", - "zipping", - "zippy", - "zips", - "zit", - "zodiac", - "zombie", - "zone", - "zoning", - "zookeeper", - "zoologist", - "zoology", - "zoom" + "abacus", + "abdomen", + "abdominal", + "abide", + "abiding", + "ability", + "ablaze", + "able", + "abnormal", + "abrasion", + "abrasive", + "abreast", + "abridge", + "abroad", + "abruptly", + "absence", + "absentee", + "absently", + "absinthe", + "absolute", + "absolve", + "abstain", + "abstract", + "absurd", + "accent", + "acclaim", + "acclimate", + "accompany", + "account", + "accuracy", + "accurate", + "accustom", + "acetone", + "achiness", + "aching", + "acid", + "acorn", + "acquaint", + "acquire", + "acre", + "acrobat", + "acronym", + "acting", + "action", + "activate", + "activator", + "active", + "activism", + "activist", + "activity", + "actress", + "acts", + "acutely", + "acuteness", + "aeration", + "aerobics", + "aerosol", + "aerospace", + "afar", + "affair", + "affected", + "affecting", + "affection", + "affidavit", + "affiliate", + "affirm", + "affix", + "afflicted", + "affluent", + "afford", + "affront", + "aflame", + "afloat", + "aflutter", + "afoot", + "afraid", + "afterglow", + "afterlife", + "aftermath", + "aftermost", + "afternoon", + "aged", + "ageless", + "agency", + "agenda", + "agent", + "aggregate", + "aghast", + "agile", + "agility", + "aging", + "agnostic", + "agonize", + "agonizing", + "agony", + "agreeable", + "agreeably", + "agreed", + "agreeing", + "agreement", + "aground", + "ahead", + "ahoy", + "aide", + "aids", + "aim", + "ajar", + "alabaster", + "alarm", + "albatross", + "album", + "alfalfa", + "algebra", + "algorithm", + "alias", + "alibi", + "alienable", + "alienate", + "aliens", + "alike", + "alive", + "alkaline", + "alkalize", + "almanac", + "almighty", + "almost", + "aloe", + "aloft", + "aloha", + "alone", + "alongside", + "aloof", + "alphabet", + "alright", + "although", + "altitude", + "alto", + "aluminum", + "alumni", + "always", + "amaretto", + "amaze", + "amazingly", + "amber", + "ambiance", + "ambiguity", + "ambiguous", + "ambition", + "ambitious", + "ambulance", + "ambush", + "amendable", + "amendment", + "amends", + "amenity", + "amiable", + "amicably", + "amid", + "amigo", + "amino", + "amiss", + "ammonia", + "ammonium", + "amnesty", + "amniotic", + "among", + "amount", + "amperage", + "ample", + "amplifier", + "amplify", + "amply", + "amuck", + "amulet", + "amusable", + "amused", + "amusement", + "amuser", + "amusing", + "anaconda", + "anaerobic", + "anagram", + "anatomist", + "anatomy", + "anchor", + "anchovy", + "ancient", + "android", + "anemia", + "anemic", + "aneurism", + "anew", + "angelfish", + "angelic", + "anger", + "angled", + "angler", + "angles", + "angling", + "angrily", + "angriness", + "anguished", + "angular", + "animal", + "animate", + "animating", + "animation", + "animator", + "anime", + "animosity", + "ankle", + "annex", + "annotate", + "announcer", + "annoying", + "annually", + "annuity", + "anointer", + "another", + "answering", + "antacid", + "antarctic", + "anteater", + "antelope", + "antennae", + "anthem", + "anthill", + "anthology", + "antibody", + "antics", + "antidote", + "antihero", + "antiquely", + "antiques", + "antiquity", + "antirust", + "antitoxic", + "antitrust", + "antiviral", + "antivirus", + "antler", + "antonym", + "antsy", + "anvil", + "anybody", + "anyhow", + "anymore", + "anyone", + "anyplace", + "anything", + "anytime", + "anyway", + "anywhere", + "aorta", + "apache", + "apostle", + "appealing", + "appear", + "appease", + "appeasing", + "appendage", + "appendix", + "appetite", + "appetizer", + "applaud", + "applause", + "apple", + "appliance", + "applicant", + "applied", + "apply", + "appointee", + "appraisal", + "appraiser", + "apprehend", + "approach", + "approval", + "approve", + "apricot", + "april", + "apron", + "aptitude", + "aptly", + "aqua", + "aqueduct", + "arbitrary", + "arbitrate", + "ardently", + "area", + "arena", + "arguable", + "arguably", + "argue", + "arise", + "armadillo", + "armband", + "armchair", + "armed", + "armful", + "armhole", + "arming", + "armless", + "armoire", + "armored", + "armory", + "armrest", + "army", + "aroma", + "arose", + "around", + "arousal", + "arrange", + "array", + "arrest", + "arrival", + "arrive", + "arrogance", + "arrogant", + "arson", + "art", + "ascend", + "ascension", + "ascent", + "ascertain", + "ashamed", + "ashen", + "ashes", + "ashy", + "aside", + "askew", + "asleep", + "asparagus", + "aspect", + "aspirate", + "aspire", + "aspirin", + "astonish", + "astound", + "astride", + "astrology", + "astronaut", + "astronomy", + "astute", + "atlantic", + "atlas", + "atom", + "atonable", + "atop", + "atrium", + "atrocious", + "atrophy", + "attach", + "attain", + "attempt", + "attendant", + "attendee", + "attention", + "attentive", + "attest", + "attic", + "attire", + "attitude", + "attractor", + "attribute", + "atypical", + "auction", + "audacious", + "audacity", + "audible", + "audibly", + "audience", + "audio", + "audition", + "augmented", + "august", + "authentic", + "author", + "autism", + "autistic", + "autograph", + "automaker", + "automated", + "automatic", + "autopilot", + "available", + "avalanche", + "avatar", + "avenge", + "avenging", + "avenue", + "average", + "aversion", + "avert", + "aviation", + "aviator", + "avid", + "avoid", + "await", + "awaken", + "award", + "aware", + "awhile", + "awkward", + "awning", + "awoke", + "awry", + "axis", + "babble", + "babbling", + "babied", + "baboon", + "backache", + "backboard", + "backboned", + "backdrop", + "backed", + "backer", + "backfield", + "backfire", + "backhand", + "backing", + "backlands", + "backlash", + "backless", + "backlight", + "backlit", + "backlog", + "backpack", + "backpedal", + "backrest", + "backroom", + "backshift", + "backside", + "backslid", + "backspace", + "backspin", + "backstab", + "backstage", + "backtalk", + "backtrack", + "backup", + "backward", + "backwash", + "backwater", + "backyard", + "bacon", + "bacteria", + "bacterium", + "badass", + "badge", + "badland", + "badly", + "badness", + "baffle", + "baffling", + "bagel", + "bagful", + "baggage", + "bagged", + "baggie", + "bagginess", + "bagging", + "baggy", + "bagpipe", + "baguette", + "baked", + "bakery", + "bakeshop", + "baking", + "balance", + "balancing", + "balcony", + "balmy", + "balsamic", + "bamboo", + "banana", + "banish", + "banister", + "banjo", + "bankable", + "bankbook", + "banked", + "banker", + "banking", + "banknote", + "bankroll", + "banner", + "bannister", + "banshee", + "banter", + "barbecue", + "barbed", + "barbell", + "barber", + "barcode", + "barge", + "bargraph", + "barista", + "baritone", + "barley", + "barmaid", + "barman", + "barn", + "barometer", + "barrack", + "barracuda", + "barrel", + "barrette", + "barricade", + "barrier", + "barstool", + "bartender", + "barterer", + "bash", + "basically", + "basics", + "basil", + "basin", + "basis", + "basket", + "batboy", + "batch", + "bath", + "baton", + "bats", + "battalion", + "battered", + "battering", + "battery", + "batting", + "battle", + "bauble", + "bazooka", + "blabber", + "bladder", + "blade", + "blah", + "blame", + "blaming", + "blanching", + "blandness", + "blank", + "blaspheme", + "blasphemy", + "blast", + "blatancy", + "blatantly", + "blazer", + "blazing", + "bleach", + "bleak", + "bleep", + "blemish", + "blend", + "bless", + "blighted", + "blimp", + "bling", + "blinked", + "blinker", + "blinking", + "blinks", + "blip", + "blissful", + "blitz", + "blizzard", + "bloated", + "bloating", + "blob", + "blog", + "bloomers", + "blooming", + "blooper", + "blot", + "blouse", + "blubber", + "bluff", + "bluish", + "blunderer", + "blunt", + "blurb", + "blurred", + "blurry", + "blurt", + "blush", + "blustery", + "boaster", + "boastful", + "boasting", + "boat", + "bobbed", + "bobbing", + "bobble", + "bobcat", + "bobsled", + "bobtail", + "bodacious", + "body", + "bogged", + "boggle", + "bogus", + "boil", + "bok", + "bolster", + "bolt", + "bonanza", + "bonded", + "bonding", + "bondless", + "boned", + "bonehead", + "boneless", + "bonelike", + "boney", + "bonfire", + "bonnet", + "bonsai", + "bonus", + "bony", + "boogeyman", + "boogieman", + "book", + "boondocks", + "booted", + "booth", + "bootie", + "booting", + "bootlace", + "bootleg", + "boots", + "boozy", + "borax", + "boring", + "borough", + "borrower", + "borrowing", + "boss", + "botanical", + "botanist", + "botany", + "botch", + "both", + "bottle", + "bottling", + "bottom", + "bounce", + "bouncing", + "bouncy", + "bounding", + "boundless", + "bountiful", + "bovine", + "boxcar", + "boxer", + "boxing", + "boxlike", + "boxy", + "breach", + "breath", + "breeches", + "breeching", + "breeder", + "breeding", + "breeze", + "breezy", + "brethren", + "brewery", + "brewing", + "briar", + "bribe", + "brick", + "bride", + "bridged", + "brigade", + "bright", + "brilliant", + "brim", + "bring", + "brink", + "brisket", + "briskly", + "briskness", + "bristle", + "brittle", + "broadband", + "broadcast", + "broaden", + "broadly", + "broadness", + "broadside", + "broadways", + "broiler", + "broiling", + "broken", + "broker", + "bronchial", + "bronco", + "bronze", + "bronzing", + "brook", + "broom", + "brought", + "browbeat", + "brownnose", + "browse", + "browsing", + "bruising", + "brunch", + "brunette", + "brunt", + "brush", + "brussels", + "brute", + "brutishly", + "bubble", + "bubbling", + "bubbly", + "buccaneer", + "bucked", + "bucket", + "buckle", + "buckshot", + "buckskin", + "bucktooth", + "buckwheat", + "buddhism", + "buddhist", + "budding", + "buddy", + "budget", + "buffalo", + "buffed", + "buffer", + "buffing", + "buffoon", + "buggy", + "bulb", + "bulge", + "bulginess", + "bulgur", + "bulk", + "bulldog", + "bulldozer", + "bullfight", + "bullfrog", + "bullhorn", + "bullion", + "bullish", + "bullpen", + "bullring", + "bullseye", + "bullwhip", + "bully", + "bunch", + "bundle", + "bungee", + "bunion", + "bunkbed", + "bunkhouse", + "bunkmate", + "bunny", + "bunt", + "busboy", + "bush", + "busily", + "busload", + "bust", + "busybody", + "buzz", + "cabana", + "cabbage", + "cabbie", + "cabdriver", + "cable", + "caboose", + "cache", + "cackle", + "cacti", + "cactus", + "caddie", + "caddy", + "cadet", + "cadillac", + "cadmium", + "cage", + "cahoots", + "cake", + "calamari", + "calamity", + "calcium", + "calculate", + "calculus", + "caliber", + "calibrate", + "calm", + "caloric", + "calorie", + "calzone", + "camcorder", + "cameo", + "camera", + "camisole", + "camper", + "campfire", + "camping", + "campsite", + "campus", + "canal", + "canary", + "cancel", + "candied", + "candle", + "candy", + "cane", + "canine", + "canister", + "cannabis", + "canned", + "canning", + "cannon", + "cannot", + "canola", + "canon", + "canopener", + "canopy", + "canteen", + "canyon", + "capable", + "capably", + "capacity", + "cape", + "capillary", + "capital", + "capitol", + "capped", + "capricorn", + "capsize", + "capsule", + "caption", + "captivate", + "captive", + "captivity", + "capture", + "caramel", + "carat", + "caravan", + "carbon", + "cardboard", + "carded", + "cardiac", + "cardigan", + "cardinal", + "cardstock", + "carefully", + "caregiver", + "careless", + "caress", + "caretaker", + "cargo", + "caring", + "carless", + "carload", + "carmaker", + "carnage", + "carnation", + "carnival", + "carnivore", + "carol", + "carpenter", + "carpentry", + "carpool", + "carport", + "carried", + "carrot", + "carrousel", + "carry", + "cartel", + "cartload", + "carton", + "cartoon", + "cartridge", + "cartwheel", + "carve", + "carving", + "carwash", + "cascade", + "case", + "cash", + "casing", + "casino", + "casket", + "cassette", + "casually", + "casualty", + "catacomb", + "catalog", + "catalyst", + "catalyze", + "catapult", + "cataract", + "catatonic", + "catcall", + "catchable", + "catcher", + "catching", + "catchy", + "caterer", + "catering", + "catfight", + "catfish", + "cathedral", + "cathouse", + "catlike", + "catnap", + "catnip", + "catsup", + "cattail", + "cattishly", + "cattle", + "catty", + "catwalk", + "caucasian", + "caucus", + "causal", + "causation", + "cause", + "causing", + "cauterize", + "caution", + "cautious", + "cavalier", + "cavalry", + "caviar", + "cavity", + "cedar", + "celery", + "celestial", + "celibacy", + "celibate", + "celtic", + "cement", + "census", + "ceramics", + "ceremony", + "certainly", + "certainty", + "certified", + "certify", + "cesarean", + "cesspool", + "chafe", + "chaffing", + "chain", + "chair", + "chalice", + "challenge", + "chamber", + "chamomile", + "champion", + "chance", + "change", + "channel", + "chant", + "chaos", + "chaperone", + "chaplain", + "chapped", + "chaps", + "chapter", + "character", + "charbroil", + "charcoal", + "charger", + "charging", + "chariot", + "charity", + "charm", + "charred", + "charter", + "charting", + "chase", + "chasing", + "chaste", + "chastise", + "chastity", + "chatroom", + "chatter", + "chatting", + "chatty", + "cheating", + "cheddar", + "cheek", + "cheer", + "cheese", + "cheesy", + "chef", + "chemicals", + "chemist", + "chemo", + "cherisher", + "cherub", + "chess", + "chest", + "chevron", + "chevy", + "chewable", + "chewer", + "chewing", + "chewy", + "chief", + "chihuahua", + "childcare", + "childhood", + "childish", + "childless", + "childlike", + "chili", + "chill", + "chimp", + "chip", + "chirping", + "chirpy", + "chitchat", + "chivalry", + "chive", + "chloride", + "chlorine", + "choice", + "chokehold", + "choking", + "chomp", + "chooser", + "choosing", + "choosy", + "chop", + "chosen", + "chowder", + "chowtime", + "chrome", + "chubby", + "chuck", + "chug", + "chummy", + "chump", + "chunk", + "churn", + "chute", + "cider", + "cilantro", + "cinch", + "cinema", + "cinnamon", + "circle", + "circling", + "circular", + "circulate", + "circus", + "citable", + "citadel", + "citation", + "citizen", + "citric", + "citrus", + "city", + "civic", + "civil", + "clad", + "claim", + "clambake", + "clammy", + "clamor", + "clamp", + "clamshell", + "clang", + "clanking", + "clapped", + "clapper", + "clapping", + "clarify", + "clarinet", + "clarity", + "clash", + "clasp", + "class", + "clatter", + "clause", + "clavicle", + "claw", + "clay", + "clean", + "clear", + "cleat", + "cleaver", + "cleft", + "clench", + "clergyman", + "clerical", + "clerk", + "clever", + "clicker", + "client", + "climate", + "climatic", + "cling", + "clinic", + "clinking", + "clip", + "clique", + "cloak", + "clobber", + "clock", + "clone", + "cloning", + "closable", + "closure", + "clothes", + "clothing", + "cloud", + "clover", + "clubbed", + "clubbing", + "clubhouse", + "clump", + "clumsily", + "clumsy", + "clunky", + "clustered", + "clutch", + "clutter", + "coach", + "coagulant", + "coastal", + "coaster", + "coasting", + "coastland", + "coastline", + "coat", + "coauthor", + "cobalt", + "cobbler", + "cobweb", + "cocoa", + "coconut", + "cod", + "coeditor", + "coerce", + "coexist", + "coffee", + "cofounder", + "cognition", + "cognitive", + "cogwheel", + "coherence", + "coherent", + "cohesive", + "coil", + "coke", + "cola", + "cold", + "coleslaw", + "coliseum", + "collage", + "collapse", + "collar", + "collected", + "collector", + "collide", + "collie", + "collision", + "colonial", + "colonist", + "colonize", + "colony", + "colossal", + "colt", + "coma", + "come", + "comfort", + "comfy", + "comic", + "coming", + "comma", + "commence", + "commend", + "comment", + "commerce", + "commode", + "commodity", + "commodore", + "common", + "commotion", + "commute", + "commuting", + "compacted", + "compacter", + "compactly", + "compactor", + "companion", + "company", + "compare", + "compel", + "compile", + "comply", + "component", + "composed", + "composer", + "composite", + "compost", + "composure", + "compound", + "compress", + "comprised", + "computer", + "computing", + "comrade", + "concave", + "conceal", + "conceded", + "concept", + "concerned", + "concert", + "conch", + "concierge", + "concise", + "conclude", + "concrete", + "concur", + "condense", + "condiment", + "condition", + "condone", + "conducive", + "conductor", + "conduit", + "cone", + "confess", + "confetti", + "confidant", + "confident", + "confider", + "confiding", + "configure", + "confined", + "confining", + "confirm", + "conflict", + "conform", + "confound", + "confront", + "confused", + "confusing", + "confusion", + "congenial", + "congested", + "congrats", + "congress", + "conical", + "conjoined", + "conjure", + "conjuror", + "connected", + "connector", + "consensus", + "consent", + "console", + "consoling", + "consonant", + "constable", + "constant", + "constrain", + "constrict", + "construct", + "consult", + "consumer", + "consuming", + "contact", + "container", + "contempt", + "contend", + "contented", + "contently", + "contents", + "contest", + "context", + "contort", + "contour", + "contrite", + "control", + "contusion", + "convene", + "convent", + "copartner", + "cope", + "copied", + "copier", + "copilot", + "coping", + "copious", + "copper", + "copy", + "coral", + "cork", + "cornball", + "cornbread", + "corncob", + "cornea", + "corned", + "corner", + "cornfield", + "cornflake", + "cornhusk", + "cornmeal", + "cornstalk", + "corny", + "coronary", + "coroner", + "corporal", + "corporate", + "corral", + "correct", + "corridor", + "corrode", + "corroding", + "corrosive", + "corsage", + "corset", + "cortex", + "cosigner", + "cosmetics", + "cosmic", + "cosmos", + "cosponsor", + "cost", + "cottage", + "cotton", + "couch", + "cough", + "could", + "countable", + "countdown", + "counting", + "countless", + "country", + "county", + "courier", + "covenant", + "cover", + "coveted", + "coveting", + "coyness", + "cozily", + "coziness", + "cozy", + "crabbing", + "crabgrass", + "crablike", + "crabmeat", + "cradle", + "cradling", + "crafter", + "craftily", + "craftsman", + "craftwork", + "crafty", + "cramp", + "cranberry", + "crane", + "cranial", + "cranium", + "crank", + "crate", + "crave", + "craving", + "crawfish", + "crawlers", + "crawling", + "crayfish", + "crayon", + "crazed", + "crazily", + "craziness", + "crazy", + "creamed", + "creamer", + "creamlike", + "crease", + "creasing", + "creatable", + "create", + "creation", + "creative", + "creature", + "credible", + "credibly", + "credit", + "creed", + "creme", + "creole", + "crepe", + "crept", + "crescent", + "crested", + "cresting", + "crestless", + "crevice", + "crewless", + "crewman", + "crewmate", + "crib", + "cricket", + "cried", + "crier", + "crimp", + "crimson", + "cringe", + "cringing", + "crinkle", + "crinkly", + "crisped", + "crisping", + "crisply", + "crispness", + "crispy", + "criteria", + "critter", + "croak", + "crock", + "crook", + "croon", + "crop", + "cross", + "crouch", + "crouton", + "crowbar", + "crowd", + "crown", + "crucial", + "crudely", + "crudeness", + "cruelly", + "cruelness", + "cruelty", + "crumb", + "crummiest", + "crummy", + "crumpet", + "crumpled", + "cruncher", + "crunching", + "crunchy", + "crusader", + "crushable", + "crushed", + "crusher", + "crushing", + "crust", + "crux", + "crying", + "cryptic", + "crystal", + "cubbyhole", + "cube", + "cubical", + "cubicle", + "cucumber", + "cuddle", + "cuddly", + "cufflink", + "culinary", + "culminate", + "culpable", + "culprit", + "cultivate", + "cultural", + "culture", + "cupbearer", + "cupcake", + "cupid", + "cupped", + "cupping", + "curable", + "curator", + "curdle", + "cure", + "curfew", + "curing", + "curled", + "curler", + "curliness", + "curling", + "curly", + "curry", + "curse", + "cursive", + "cursor", + "curtain", + "curtly", + "curtsy", + "curvature", + "curve", + "curvy", + "cushy", + "cusp", + "cussed", + "custard", + "custodian", + "custody", + "customary", + "customer", + "customize", + "customs", + "cut", + "cycle", + "cyclic", + "cycling", + "cyclist", + "cylinder", + "cymbal", + "cytoplasm", + "cytoplast", + "dab", + "dad", + "daffodil", + "dagger", + "daily", + "daintily", + "dainty", + "dairy", + "daisy", + "dallying", + "dance", + "dancing", + "dandelion", + "dander", + "dandruff", + "dandy", + "danger", + "dangle", + "dangling", + "daredevil", + "dares", + "daringly", + "darkened", + "darkening", + "darkish", + "darkness", + "darkroom", + "darling", + "darn", + "dart", + "darwinism", + "dash", + "dastardly", + "data", + "datebook", + "dating", + "daughter", + "daunting", + "dawdler", + "dawn", + "daybed", + "daybreak", + "daycare", + "daydream", + "daylight", + "daylong", + "dayroom", + "daytime", + "dazzler", + "dazzling", + "deacon", + "deafening", + "deafness", + "dealer", + "dealing", + "dealmaker", + "dealt", + "dean", + "debatable", + "debate", + "debating", + "debit", + "debrief", + "debtless", + "debtor", + "debug", + "debunk", + "decade", + "decaf", + "decal", + "decathlon", + "decay", + "deceased", + "deceit", + "deceiver", + "deceiving", + "december", + "decency", + "decent", + "deception", + "deceptive", + "decibel", + "decidable", + "decimal", + "decimeter", + "decipher", + "deck", + "declared", + "decline", + "decode", + "decompose", + "decorated", + "decorator", + "decoy", + "decrease", + "decree", + "dedicate", + "dedicator", + "deduce", + "deduct", + "deed", + "deem", + "deepen", + "deeply", + "deepness", + "deface", + "defacing", + "defame", + "default", + "defeat", + "defection", + "defective", + "defendant", + "defender", + "defense", + "defensive", + "deferral", + "deferred", + "defiance", + "defiant", + "defile", + "defiling", + "define", + "definite", + "deflate", + "deflation", + "deflator", + "deflected", + "deflector", + "defog", + "deforest", + "defraud", + "defrost", + "deftly", + "defuse", + "defy", + "degraded", + "degrading", + "degrease", + "degree", + "dehydrate", + "deity", + "dejected", + "delay", + "delegate", + "delegator", + "delete", + "deletion", + "delicacy", + "delicate", + "delicious", + "delighted", + "delirious", + "delirium", + "deliverer", + "delivery", + "delouse", + "delta", + "deluge", + "delusion", + "deluxe", + "demanding", + "demeaning", + "demeanor", + "demise", + "democracy", + "democrat", + "demote", + "demotion", + "demystify", + "denatured", + "deniable", + "denial", + "denim", + "denote", + "dense", + "density", + "dental", + "dentist", + "denture", + "deny", + "deodorant", + "deodorize", + "departed", + "departure", + "depict", + "deplete", + "depletion", + "deplored", + "deploy", + "deport", + "depose", + "depraved", + "depravity", + "deprecate", + "depress", + "deprive", + "depth", + "deputize", + "deputy", + "derail", + "deranged", + "derby", + "derived", + "desecrate", + "deserve", + "deserving", + "designate", + "designed", + "designer", + "designing", + "deskbound", + "desktop", + "deskwork", + "desolate", + "despair", + "despise", + "despite", + "destiny", + "destitute", + "destruct", + "detached", + "detail", + "detection", + "detective", + "detector", + "detention", + "detergent", + "detest", + "detonate", + "detonator", + "detoxify", + "detract", + "deuce", + "devalue", + "deviancy", + "deviant", + "deviate", + "deviation", + "deviator", + "device", + "devious", + "devotedly", + "devotee", + "devotion", + "devourer", + "devouring", + "devoutly", + "dexterity", + "dexterous", + "diabetes", + "diabetic", + "diabolic", + "diagnoses", + "diagnosis", + "diagram", + "dial", + "diameter", + "diaper", + "diaphragm", + "diary", + "dice", + "dicing", + "dictate", + "dictation", + "dictator", + "difficult", + "diffused", + "diffuser", + "diffusion", + "diffusive", + "dig", + "dilation", + "diligence", + "diligent", + "dill", + "dilute", + "dime", + "diminish", + "dimly", + "dimmed", + "dimmer", + "dimness", + "dimple", + "diner", + "dingbat", + "dinghy", + "dinginess", + "dingo", + "dingy", + "dining", + "dinner", + "diocese", + "dioxide", + "diploma", + "dipped", + "dipper", + "dipping", + "directed", + "direction", + "directive", + "directly", + "directory", + "direness", + "dirtiness", + "disabled", + "disagree", + "disallow", + "disarm", + "disarray", + "disaster", + "disband", + "disbelief", + "disburse", + "discard", + "discern", + "discharge", + "disclose", + "discolor", + "discount", + "discourse", + "discover", + "discuss", + "disdain", + "disengage", + "disfigure", + "disgrace", + "dish", + "disinfect", + "disjoin", + "disk", + "dislike", + "disliking", + "dislocate", + "dislodge", + "disloyal", + "dismantle", + "dismay", + "dismiss", + "dismount", + "disobey", + "disorder", + "disown", + "disparate", + "disparity", + "dispatch", + "dispense", + "dispersal", + "dispersed", + "disperser", + "displace", + "display", + "displease", + "disposal", + "dispose", + "disprove", + "dispute", + "disregard", + "disrupt", + "dissuade", + "distance", + "distant", + "distaste", + "distill", + "distinct", + "distort", + "distract", + "distress", + "district", + "distrust", + "ditch", + "ditto", + "ditzy", + "dividable", + "divided", + "dividend", + "dividers", + "dividing", + "divinely", + "diving", + "divinity", + "divisible", + "divisibly", + "division", + "divisive", + "divorcee", + "dizziness", + "dizzy", + "doable", + "docile", + "dock", + "doctrine", + "document", + "dodge", + "dodgy", + "doily", + "doing", + "dole", + "dollar", + "dollhouse", + "dollop", + "dolly", + "dolphin", + "domain", + "domelike", + "domestic", + "dominion", + "dominoes", + "donated", + "donation", + "donator", + "donor", + "donut", + "doodle", + "doorbell", + "doorframe", + "doorknob", + "doorman", + "doormat", + "doornail", + "doorpost", + "doorstep", + "doorstop", + "doorway", + "doozy", + "dork", + "dormitory", + "dorsal", + "dosage", + "dose", + "dotted", + "doubling", + "douche", + "dove", + "down", + "dowry", + "doze", + "drab", + "dragging", + "dragonfly", + "dragonish", + "dragster", + "drainable", + "drainage", + "drained", + "drainer", + "drainpipe", + "dramatic", + "dramatize", + "drank", + "drapery", + "drastic", + "draw", + "dreaded", + "dreadful", + "dreadlock", + "dreamboat", + "dreamily", + "dreamland", + "dreamless", + "dreamlike", + "dreamt", + "dreamy", + "drearily", + "dreary", + "drench", + "dress", + "drew", + "dribble", + "dried", + "drier", + "drift", + "driller", + "drilling", + "drinkable", + "drinking", + "dripping", + "drippy", + "drivable", + "driven", + "driver", + "driveway", + "driving", + "drizzle", + "drizzly", + "drone", + "drool", + "droop", + "drop-down", + "dropbox", + "dropkick", + "droplet", + "dropout", + "dropper", + "drove", + "drown", + "drowsily", + "drudge", + "drum", + "dry", + "dubbed", + "dubiously", + "duchess", + "duckbill", + "ducking", + "duckling", + "ducktail", + "ducky", + "duct", + "dude", + "duffel", + "dugout", + "duh", + "duke", + "duller", + "dullness", + "duly", + "dumping", + "dumpling", + "dumpster", + "duo", + "dupe", + "duplex", + "duplicate", + "duplicity", + "durable", + "durably", + "duration", + "duress", + "during", + "dusk", + "dust", + "dutiful", + "duty", + "duvet", + "dwarf", + "dweeb", + "dwelled", + "dweller", + "dwelling", + "dwindle", + "dwindling", + "dynamic", + "dynamite", + "dynasty", + "dyslexia", + "dyslexic", + "each", + "eagle", + "earache", + "eardrum", + "earflap", + "earful", + "earlobe", + "early", + "earmark", + "earmuff", + "earphone", + "earpiece", + "earplugs", + "earring", + "earshot", + "earthen", + "earthlike", + "earthling", + "earthly", + "earthworm", + "earthy", + "earwig", + "easeful", + "easel", + "easiest", + "easily", + "easiness", + "easing", + "eastbound", + "eastcoast", + "easter", + "eastward", + "eatable", + "eaten", + "eatery", + "eating", + "eats", + "ebay", + "ebony", + "ebook", + "ecard", + "eccentric", + "echo", + "eclair", + "eclipse", + "ecologist", + "ecology", + "economic", + "economist", + "economy", + "ecosphere", + "ecosystem", + "edge", + "edginess", + "edging", + "edgy", + "edition", + "editor", + "educated", + "education", + "educator", + "eel", + "effective", + "effects", + "efficient", + "effort", + "eggbeater", + "egging", + "eggnog", + "eggplant", + "eggshell", + "egomaniac", + "egotism", + "egotistic", + "either", + "eject", + "elaborate", + "elastic", + "elated", + "elbow", + "eldercare", + "elderly", + "eldest", + "electable", + "election", + "elective", + "elephant", + "elevate", + "elevating", + "elevation", + "elevator", + "eleven", + "elf", + "eligible", + "eligibly", + "eliminate", + "elite", + "elitism", + "elixir", + "elk", + "ellipse", + "elliptic", + "elm", + "elongated", + "elope", + "eloquence", + "eloquent", + "elsewhere", + "elude", + "elusive", + "elves", + "email", + "embargo", + "embark", + "embassy", + "embattled", + "embellish", + "ember", + "embezzle", + "emblaze", + "emblem", + "embody", + "embolism", + "emboss", + "embroider", + "emcee", + "emerald", + "emergency", + "emission", + "emit", + "emote", + "emoticon", + "emotion", + "empathic", + "empathy", + "emperor", + "emphases", + "emphasis", + "emphasize", + "emphatic", + "empirical", + "employed", + "employee", + "employer", + "emporium", + "empower", + "emptier", + "emptiness", + "empty", + "emu", + "enable", + "enactment", + "enamel", + "enchanted", + "enchilada", + "encircle", + "enclose", + "enclosure", + "encode", + "encore", + "encounter", + "encourage", + "encroach", + "encrust", + "encrypt", + "endanger", + "endeared", + "endearing", + "ended", + "ending", + "endless", + "endnote", + "endocrine", + "endorphin", + "endorse", + "endowment", + "endpoint", + "endurable", + "endurance", + "enduring", + "energetic", + "energize", + "energy", + "enforced", + "enforcer", + "engaged", + "engaging", + "engine", + "engorge", + "engraved", + "engraver", + "engraving", + "engross", + "engulf", + "enhance", + "enigmatic", + "enjoyable", + "enjoyably", + "enjoyer", + "enjoying", + "enjoyment", + "enlarged", + "enlarging", + "enlighten", + "enlisted", + "enquirer", + "enrage", + "enrich", + "enroll", + "enslave", + "ensnare", + "ensure", + "entail", + "entangled", + "entering", + "entertain", + "enticing", + "entire", + "entitle", + "entity", + "entomb", + "entourage", + "entrap", + "entree", + "entrench", + "entrust", + "entryway", + "entwine", + "enunciate", + "envelope", + "enviable", + "enviably", + "envious", + "envision", + "envoy", + "envy", + "enzyme", + "epic", + "epidemic", + "epidermal", + "epidermis", + "epidural", + "epilepsy", + "epileptic", + "epilogue", + "epiphany", + "episode", + "equal", + "equate", + "equation", + "equator", + "equinox", + "equipment", + "equity", + "equivocal", + "eradicate", + "erasable", + "erased", + "eraser", + "erasure", + "ergonomic", + "errand", + "errant", + "erratic", + "error", + "erupt", + "escalate", + "escalator", + "escapable", + "escapade", + "escapist", + "escargot", + "eskimo", + "esophagus", + "espionage", + "espresso", + "esquire", + "essay", + "essence", + "essential", + "establish", + "estate", + "esteemed", + "estimate", + "estimator", + "estranged", + "estrogen", + "etching", + "eternal", + "eternity", + "ethanol", + "ether", + "ethically", + "ethics", + "euphemism", + "evacuate", + "evacuee", + "evade", + "evaluate", + "evaluator", + "evaporate", + "evasion", + "evasive", + "even", + "everglade", + "evergreen", + "everybody", + "everyday", + "everyone", + "evict", + "evidence", + "evident", + "evil", + "evoke", + "evolution", + "evolve", + "exact", + "exalted", + "example", + "excavate", + "excavator", + "exceeding", + "exception", + "excess", + "exchange", + "excitable", + "exciting", + "exclaim", + "exclude", + "excluding", + "exclusion", + "exclusive", + "excretion", + "excretory", + "excursion", + "excusable", + "excusably", + "excuse", + "exemplary", + "exemplify", + "exemption", + "exerciser", + "exert", + "exes", + "exfoliate", + "exhale", + "exhaust", + "exhume", + "exile", + "existing", + "exit", + "exodus", + "exonerate", + "exorcism", + "exorcist", + "expand", + "expanse", + "expansion", + "expansive", + "expectant", + "expedited", + "expediter", + "expel", + "expend", + "expenses", + "expensive", + "expert", + "expire", + "expiring", + "explain", + "expletive", + "explicit", + "explode", + "exploit", + "explore", + "exploring", + "exponent", + "exporter", + "exposable", + "expose", + "exposure", + "express", + "expulsion", + "exquisite", + "extended", + "extending", + "extent", + "extenuate", + "exterior", + "external", + "extinct", + "extortion", + "extradite", + "extras", + "extrovert", + "extrude", + "extruding", + "exuberant", + "fable", + "fabric", + "fabulous", + "facebook", + "facecloth", + "facedown", + "faceless", + "facelift", + "faceplate", + "faceted", + "facial", + "facility", + "facing", + "facsimile", + "faction", + "factoid", + "factor", + "factsheet", + "factual", + "faculty", + "fade", + "fading", + "failing", + "falcon", + "fall", + "false", + "falsify", + "fame", + "familiar", + "family", + "famine", + "famished", + "fanatic", + "fancied", + "fanciness", + "fancy", + "fanfare", + "fang", + "fanning", + "fantasize", + "fantastic", + "fantasy", + "fascism", + "fastball", + "faster", + "fasting", + "fastness", + "faucet", + "favorable", + "favorably", + "favored", + "favoring", + "favorite", + "fax", + "feast", + "federal", + "fedora", + "feeble", + "feed", + "feel", + "feisty", + "feline", + "felt-tip", + "feminine", + "feminism", + "feminist", + "feminize", + "femur", + "fence", + "fencing", + "fender", + "ferment", + "fernlike", + "ferocious", + "ferocity", + "ferret", + "ferris", + "ferry", + "fervor", + "fester", + "festival", + "festive", + "festivity", + "fetal", + "fetch", + "fever", + "fiber", + "fiction", + "fiddle", + "fiddling", + "fidelity", + "fidgeting", + "fidgety", + "fifteen", + "fifth", + "fiftieth", + "fifty", + "figment", + "figure", + "figurine", + "filing", + "filled", + "filler", + "filling", + "film", + "filter", + "filth", + "filtrate", + "finale", + "finalist", + "finalize", + "finally", + "finance", + "financial", + "finch", + "fineness", + "finer", + "finicky", + "finished", + "finisher", + "finishing", + "finite", + "finless", + "finlike", + "fiscally", + "fit", + "five", + "flaccid", + "flagman", + "flagpole", + "flagship", + "flagstick", + "flagstone", + "flail", + "flakily", + "flaky", + "flame", + "flammable", + "flanked", + "flanking", + "flannels", + "flap", + "flaring", + "flashback", + "flashbulb", + "flashcard", + "flashily", + "flashing", + "flashy", + "flask", + "flatbed", + "flatfoot", + "flatly", + "flatness", + "flatten", + "flattered", + "flatterer", + "flattery", + "flattop", + "flatware", + "flatworm", + "flavored", + "flavorful", + "flavoring", + "flaxseed", + "fled", + "fleshed", + "fleshy", + "flick", + "flier", + "flight", + "flinch", + "fling", + "flint", + "flip", + "flirt", + "float", + "flock", + "flogging", + "flop", + "floral", + "florist", + "floss", + "flounder", + "flyable", + "flyaway", + "flyer", + "flying", + "flyover", + "flypaper", + "foam", + "foe", + "fog", + "foil", + "folic", + "folk", + "follicle", + "follow", + "fondling", + "fondly", + "fondness", + "fondue", + "font", + "food", + "fool", + "footage", + "football", + "footbath", + "footboard", + "footer", + "footgear", + "foothill", + "foothold", + "footing", + "footless", + "footman", + "footnote", + "footpad", + "footpath", + "footprint", + "footrest", + "footsie", + "footsore", + "footwear", + "footwork", + "fossil", + "foster", + "founder", + "founding", + "fountain", + "fox", + "foyer", + "fraction", + "fracture", + "fragile", + "fragility", + "fragment", + "fragrance", + "fragrant", + "frail", + "frame", + "framing", + "frantic", + "fraternal", + "frayed", + "fraying", + "frays", + "freckled", + "freckles", + "freebase", + "freebee", + "freebie", + "freedom", + "freefall", + "freehand", + "freeing", + "freeload", + "freely", + "freemason", + "freeness", + "freestyle", + "freeware", + "freeway", + "freewill", + "freezable", + "freezing", + "freight", + "french", + "frenzied", + "frenzy", + "frequency", + "frequent", + "fresh", + "fretful", + "fretted", + "friction", + "friday", + "fridge", + "fried", + "friend", + "frighten", + "frightful", + "frigidity", + "frigidly", + "frill", + "fringe", + "frisbee", + "frisk", + "fritter", + "frivolous", + "frolic", + "from", + "front", + "frostbite", + "frosted", + "frostily", + "frosting", + "frostlike", + "frosty", + "froth", + "frown", + "frozen", + "fructose", + "frugality", + "frugally", + "fruit", + "frustrate", + "frying", + "gab", + "gaffe", + "gag", + "gainfully", + "gaining", + "gains", + "gala", + "gallantly", + "galleria", + "gallery", + "galley", + "gallon", + "gallows", + "gallstone", + "galore", + "galvanize", + "gambling", + "game", + "gaming", + "gamma", + "gander", + "gangly", + "gangrene", + "gangway", + "gap", + "garage", + "garbage", + "garden", + "gargle", + "garland", + "garlic", + "garment", + "garnet", + "garnish", + "garter", + "gas", + "gatherer", + "gathering", + "gating", + "gauging", + "gauntlet", + "gauze", + "gave", + "gawk", + "gazing", + "gear", + "gecko", + "geek", + "geiger", + "gem", + "gender", + "generic", + "generous", + "genetics", + "genre", + "gentile", + "gentleman", + "gently", + "gents", + "geography", + "geologic", + "geologist", + "geology", + "geometric", + "geometry", + "geranium", + "gerbil", + "geriatric", + "germicide", + "germinate", + "germless", + "germproof", + "gestate", + "gestation", + "gesture", + "getaway", + "getting", + "getup", + "giant", + "gibberish", + "giblet", + "giddily", + "giddiness", + "giddy", + "gift", + "gigabyte", + "gigahertz", + "gigantic", + "giggle", + "giggling", + "giggly", + "gigolo", + "gilled", + "gills", + "gimmick", + "girdle", + "giveaway", + "given", + "giver", + "giving", + "gizmo", + "gizzard", + "glacial", + "glacier", + "glade", + "gladiator", + "gladly", + "glamorous", + "glamour", + "glance", + "glancing", + "glandular", + "glare", + "glaring", + "glass", + "glaucoma", + "glazing", + "gleaming", + "gleeful", + "glider", + "gliding", + "glimmer", + "glimpse", + "glisten", + "glitch", + "glitter", + "glitzy", + "gloater", + "gloating", + "gloomily", + "gloomy", + "glorified", + "glorifier", + "glorify", + "glorious", + "glory", + "gloss", + "glove", + "glowing", + "glowworm", + "glucose", + "glue", + "gluten", + "glutinous", + "glutton", + "gnarly", + "gnat", + "goal", + "goatskin", + "goes", + "goggles", + "going", + "goldfish", + "goldmine", + "goldsmith", + "golf", + "goliath", + "gonad", + "gondola", + "gone", + "gong", + "good", + "gooey", + "goofball", + "goofiness", + "goofy", + "google", + "goon", + "gopher", + "gore", + "gorged", + "gorgeous", + "gory", + "gosling", + "gossip", + "gothic", + "gotten", + "gout", + "gown", + "grab", + "graceful", + "graceless", + "gracious", + "gradation", + "graded", + "grader", + "gradient", + "grading", + "gradually", + "graduate", + "graffiti", + "grafted", + "grafting", + "grain", + "granddad", + "grandkid", + "grandly", + "grandma", + "grandpa", + "grandson", + "granite", + "granny", + "granola", + "grant", + "granular", + "grape", + "graph", + "grapple", + "grappling", + "grasp", + "grass", + "gratified", + "gratify", + "grating", + "gratitude", + "gratuity", + "gravel", + "graveness", + "graves", + "graveyard", + "gravitate", + "gravity", + "gravy", + "gray", + "grazing", + "greasily", + "greedily", + "greedless", + "greedy", + "green", + "greeter", + "greeting", + "grew", + "greyhound", + "grid", + "grief", + "grievance", + "grieving", + "grievous", + "grill", + "grimace", + "grimacing", + "grime", + "griminess", + "grimy", + "grinch", + "grinning", + "grip", + "gristle", + "grit", + "groggily", + "groggy", + "groin", + "groom", + "groove", + "grooving", + "groovy", + "grope", + "ground", + "grouped", + "grout", + "grove", + "grower", + "growing", + "growl", + "grub", + "grudge", + "grudging", + "grueling", + "gruffly", + "grumble", + "grumbling", + "grumbly", + "grumpily", + "grunge", + "grunt", + "guacamole", + "guidable", + "guidance", + "guide", + "guiding", + "guileless", + "guise", + "gulf", + "gullible", + "gully", + "gulp", + "gumball", + "gumdrop", + "gumminess", + "gumming", + "gummy", + "gurgle", + "gurgling", + "guru", + "gush", + "gusto", + "gusty", + "gutless", + "guts", + "gutter", + "guy", + "guzzler", + "gyration", + "habitable", + "habitant", + "habitat", + "habitual", + "hacked", + "hacker", + "hacking", + "hacksaw", + "had", + "haggler", + "haiku", + "half", + "halogen", + "halt", + "halved", + "halves", + "hamburger", + "hamlet", + "hammock", + "hamper", + "hamster", + "hamstring", + "handbag", + "handball", + "handbook", + "handbrake", + "handcart", + "handclap", + "handclasp", + "handcraft", + "handcuff", + "handed", + "handful", + "handgrip", + "handgun", + "handheld", + "handiness", + "handiwork", + "handlebar", + "handled", + "handler", + "handling", + "handmade", + "handoff", + "handpick", + "handprint", + "handrail", + "handsaw", + "handset", + "handsfree", + "handshake", + "handstand", + "handwash", + "handwork", + "handwoven", + "handwrite", + "handyman", + "hangnail", + "hangout", + "hangover", + "hangup", + "hankering", + "hankie", + "hanky", + "haphazard", + "happening", + "happier", + "happiest", + "happily", + "happiness", + "happy", + "harbor", + "hardcopy", + "hardcore", + "hardcover", + "harddisk", + "hardened", + "hardener", + "hardening", + "hardhat", + "hardhead", + "hardiness", + "hardly", + "hardness", + "hardship", + "hardware", + "hardwired", + "hardwood", + "hardy", + "harmful", + "harmless", + "harmonica", + "harmonics", + "harmonize", + "harmony", + "harness", + "harpist", + "harsh", + "harvest", + "hash", + "hassle", + "haste", + "hastily", + "hastiness", + "hasty", + "hatbox", + "hatchback", + "hatchery", + "hatchet", + "hatching", + "hatchling", + "hate", + "hatless", + "hatred", + "haunt", + "haven", + "hazard", + "hazelnut", + "hazily", + "haziness", + "hazing", + "hazy", + "headache", + "headband", + "headboard", + "headcount", + "headdress", + "headed", + "header", + "headfirst", + "headgear", + "heading", + "headlamp", + "headless", + "headlock", + "headphone", + "headpiece", + "headrest", + "headroom", + "headscarf", + "headset", + "headsman", + "headstand", + "headstone", + "headway", + "headwear", + "heap", + "heat", + "heave", + "heavily", + "heaviness", + "heaving", + "hedge", + "hedging", + "heftiness", + "hefty", + "helium", + "helmet", + "helper", + "helpful", + "helping", + "helpless", + "helpline", + "hemlock", + "hemstitch", + "hence", + "henchman", + "henna", + "herald", + "herbal", + "herbicide", + "herbs", + "heritage", + "hermit", + "heroics", + "heroism", + "herring", + "herself", + "hertz", + "hesitancy", + "hesitant", + "hesitate", + "hexagon", + "hexagram", + "hubcap", + "huddle", + "huddling", + "huff", + "hug", + "hula", + "hulk", + "hull", + "human", + "humble", + "humbling", + "humbly", + "humid", + "humiliate", + "humility", + "humming", + "hummus", + "humongous", + "humorist", + "humorless", + "humorous", + "humpback", + "humped", + "humvee", + "hunchback", + "hundredth", + "hunger", + "hungrily", + "hungry", + "hunk", + "hunter", + "hunting", + "huntress", + "huntsman", + "hurdle", + "hurled", + "hurler", + "hurling", + "hurray", + "hurricane", + "hurried", + "hurry", + "hurt", + "husband", + "hush", + "husked", + "huskiness", + "hut", + "hybrid", + "hydrant", + "hydrated", + "hydration", + "hydrogen", + "hydroxide", + "hyperlink", + "hypertext", + "hyphen", + "hypnoses", + "hypnosis", + "hypnotic", + "hypnotism", + "hypnotist", + "hypnotize", + "hypocrisy", + "hypocrite", + "ibuprofen", + "ice", + "iciness", + "icing", + "icky", + "icon", + "icy", + "idealism", + "idealist", + "idealize", + "ideally", + "idealness", + "identical", + "identify", + "identity", + "ideology", + "idiocy", + "idiom", + "idly", + "igloo", + "ignition", + "ignore", + "iguana", + "illicitly", + "illusion", + "illusive", + "image", + "imaginary", + "imagines", + "imaging", + "imbecile", + "imitate", + "imitation", + "immature", + "immerse", + "immersion", + "imminent", + "immobile", + "immodest", + "immorally", + "immortal", + "immovable", + "immovably", + "immunity", + "immunize", + "impaired", + "impale", + "impart", + "impatient", + "impeach", + "impeding", + "impending", + "imperfect", + "imperial", + "impish", + "implant", + "implement", + "implicate", + "implicit", + "implode", + "implosion", + "implosive", + "imply", + "impolite", + "important", + "importer", + "impose", + "imposing", + "impotence", + "impotency", + "impotent", + "impound", + "imprecise", + "imprint", + "imprison", + "impromptu", + "improper", + "improve", + "improving", + "improvise", + "imprudent", + "impulse", + "impulsive", + "impure", + "impurity", + "iodine", + "iodize", + "ion", + "ipad", + "iphone", + "ipod", + "irate", + "irk", + "iron", + "irregular", + "irrigate", + "irritable", + "irritably", + "irritant", + "irritate", + "islamic", + "islamist", + "isolated", + "isolating", + "isolation", + "isotope", + "issue", + "issuing", + "italicize", + "italics", + "item", + "itinerary", + "itunes", + "ivory", + "ivy", + "jab", + "jackal", + "jacket", + "jackknife", + "jackpot", + "jailbird", + "jailbreak", + "jailer", + "jailhouse", + "jalapeno", + "jam", + "janitor", + "january", + "jargon", + "jarring", + "jasmine", + "jaundice", + "jaunt", + "java", + "jawed", + "jawless", + "jawline", + "jaws", + "jaybird", + "jaywalker", + "jazz", + "jeep", + "jeeringly", + "jellied", + "jelly", + "jersey", + "jester", + "jet", + "jiffy", + "jigsaw", + "jimmy", + "jingle", + "jingling", + "jinx", + "jitters", + "jittery", + "job", + "jockey", + "jockstrap", + "jogger", + "jogging", + "john", + "joining", + "jokester", + "jokingly", + "jolliness", + "jolly", + "jolt", + "jot", + "jovial", + "joyfully", + "joylessly", + "joyous", + "joyride", + "joystick", + "jubilance", + "jubilant", + "judge", + "judgingly", + "judicial", + "judiciary", + "judo", + "juggle", + "juggling", + "jugular", + "juice", + "juiciness", + "juicy", + "jujitsu", + "jukebox", + "july", + "jumble", + "jumbo", + "jump", + "junction", + "juncture", + "june", + "junior", + "juniper", + "junkie", + "junkman", + "junkyard", + "jurist", + "juror", + "jury", + "justice", + "justifier", + "justify", + "justly", + "justness", + "juvenile", + "kabob", + "kangaroo", + "karaoke", + "karate", + "karma", + "kebab", + "keenly", + "keenness", + "keep", + "keg", + "kelp", + "kennel", + "kept", + "kerchief", + "kerosene", + "kettle", + "kick", + "kiln", + "kilobyte", + "kilogram", + "kilometer", + "kilowatt", + "kilt", + "kimono", + "kindle", + "kindling", + "kindly", + "kindness", + "kindred", + "kinetic", + "kinfolk", + "king", + "kinship", + "kinsman", + "kinswoman", + "kissable", + "kisser", + "kissing", + "kitchen", + "kite", + "kitten", + "kitty", + "kiwi", + "kleenex", + "knapsack", + "knee", + "knelt", + "knickers", + "knoll", + "koala", + "kooky", + "kosher", + "krypton", + "kudos", + "kung", + "labored", + "laborer", + "laboring", + "laborious", + "labrador", + "ladder", + "ladies", + "ladle", + "ladybug", + "ladylike", + "lagged", + "lagging", + "lagoon", + "lair", + "lake", + "lance", + "landed", + "landfall", + "landfill", + "landing", + "landlady", + "landless", + "landline", + "landlord", + "landmark", + "landmass", + "landmine", + "landowner", + "landscape", + "landside", + "landslide", + "language", + "lankiness", + "lanky", + "lantern", + "lapdog", + "lapel", + "lapped", + "lapping", + "laptop", + "lard", + "large", + "lark", + "lash", + "lasso", + "last", + "latch", + "late", + "lather", + "latitude", + "latrine", + "latter", + "latticed", + "launch", + "launder", + "laundry", + "laurel", + "lavender", + "lavish", + "laxative", + "lazily", + "laziness", + "lazy", + "lecturer", + "left", + "legacy", + "legal", + "legend", + "legged", + "leggings", + "legible", + "legibly", + "legislate", + "lego", + "legroom", + "legume", + "legwarmer", + "legwork", + "lemon", + "lend", + "length", + "lens", + "lent", + "leotard", + "lesser", + "letdown", + "lethargic", + "lethargy", + "letter", + "lettuce", + "level", + "leverage", + "levers", + "levitate", + "levitator", + "liability", + "liable", + "liberty", + "librarian", + "library", + "licking", + "licorice", + "lid", + "life", + "lifter", + "lifting", + "liftoff", + "ligament", + "likely", + "likeness", + "likewise", + "liking", + "lilac", + "lilly", + "lily", + "limb", + "limeade", + "limelight", + "limes", + "limit", + "limping", + "limpness", + "line", + "lingo", + "linguini", + "linguist", + "lining", + "linked", + "linoleum", + "linseed", + "lint", + "lion", + "lip", + "liquefy", + "liqueur", + "liquid", + "lisp", + "list", + "litigate", + "litigator", + "litmus", + "litter", + "little", + "livable", + "lived", + "lively", + "liver", + "livestock", + "lividly", + "living", + "lizard", + "lubricant", + "lubricate", + "lucid", + "luckily", + "luckiness", + "luckless", + "lucrative", + "ludicrous", + "lugged", + "lukewarm", + "lullaby", + "lumber", + "luminance", + "luminous", + "lumpiness", + "lumping", + "lumpish", + "lunacy", + "lunar", + "lunchbox", + "luncheon", + "lunchroom", + "lunchtime", + "lung", + "lurch", + "lure", + "luridness", + "lurk", + "lushly", + "lushness", + "luster", + "lustfully", + "lustily", + "lustiness", + "lustrous", + "lusty", + "luxurious", + "luxury", + "lying", + "lyrically", + "lyricism", + "lyricist", + "lyrics", + "macarena", + "macaroni", + "macaw", + "mace", + "machine", + "machinist", + "magazine", + "magenta", + "maggot", + "magical", + "magician", + "magma", + "magnesium", + "magnetic", + "magnetism", + "magnetize", + "magnifier", + "magnify", + "magnitude", + "magnolia", + "mahogany", + "maimed", + "majestic", + "majesty", + "majorette", + "majority", + "makeover", + "maker", + "makeshift", + "making", + "malformed", + "malt", + "mama", + "mammal", + "mammary", + "mammogram", + "manager", + "managing", + "manatee", + "mandarin", + "mandate", + "mandatory", + "mandolin", + "manger", + "mangle", + "mango", + "mangy", + "manhandle", + "manhole", + "manhood", + "manhunt", + "manicotti", + "manicure", + "manifesto", + "manila", + "mankind", + "manlike", + "manliness", + "manly", + "manmade", + "manned", + "mannish", + "manor", + "manpower", + "mantis", + "mantra", + "manual", + "many", + "map", + "marathon", + "marauding", + "marbled", + "marbles", + "marbling", + "march", + "mardi", + "margarine", + "margarita", + "margin", + "marigold", + "marina", + "marine", + "marital", + "maritime", + "marlin", + "marmalade", + "maroon", + "married", + "marrow", + "marry", + "marshland", + "marshy", + "marsupial", + "marvelous", + "marxism", + "mascot", + "masculine", + "mashed", + "mashing", + "massager", + "masses", + "massive", + "mastiff", + "matador", + "matchbook", + "matchbox", + "matcher", + "matching", + "matchless", + "material", + "maternal", + "maternity", + "math", + "mating", + "matriarch", + "matrimony", + "matrix", + "matron", + "matted", + "matter", + "maturely", + "maturing", + "maturity", + "mauve", + "maverick", + "maximize", + "maximum", + "maybe", + "mayday", + "mayflower", + "moaner", + "moaning", + "mobile", + "mobility", + "mobilize", + "mobster", + "mocha", + "mocker", + "mockup", + "modified", + "modify", + "modular", + "modulator", + "module", + "moisten", + "moistness", + "moisture", + "molar", + "molasses", + "mold", + "molecular", + "molecule", + "molehill", + "mollusk", + "mom", + "monastery", + "monday", + "monetary", + "monetize", + "moneybags", + "moneyless", + "moneywise", + "mongoose", + "mongrel", + "monitor", + "monkhood", + "monogamy", + "monogram", + "monologue", + "monopoly", + "monorail", + "monotone", + "monotype", + "monoxide", + "monsieur", + "monsoon", + "monstrous", + "monthly", + "monument", + "moocher", + "moodiness", + "moody", + "mooing", + "moonbeam", + "mooned", + "moonlight", + "moonlike", + "moonlit", + "moonrise", + "moonscape", + "moonshine", + "moonstone", + "moonwalk", + "mop", + "morale", + "morality", + "morally", + "morbidity", + "morbidly", + "morphine", + "morphing", + "morse", + "mortality", + "mortally", + "mortician", + "mortified", + "mortify", + "mortuary", + "mosaic", + "mossy", + "most", + "mothball", + "mothproof", + "motion", + "motivate", + "motivator", + "motive", + "motocross", + "motor", + "motto", + "mountable", + "mountain", + "mounted", + "mounting", + "mourner", + "mournful", + "mouse", + "mousiness", + "moustache", + "mousy", + "mouth", + "movable", + "move", + "movie", + "moving", + "mower", + "mowing", + "much", + "muck", + "mud", + "mug", + "mulberry", + "mulch", + "mule", + "mulled", + "mullets", + "multiple", + "multiply", + "multitask", + "multitude", + "mumble", + "mumbling", + "mumbo", + "mummified", + "mummify", + "mummy", + "mumps", + "munchkin", + "mundane", + "municipal", + "muppet", + "mural", + "murkiness", + "murky", + "murmuring", + "muscular", + "museum", + "mushily", + "mushiness", + "mushroom", + "mushy", + "music", + "musket", + "muskiness", + "musky", + "mustang", + "mustard", + "muster", + "mustiness", + "musty", + "mutable", + "mutate", + "mutation", + "mute", + "mutilated", + "mutilator", + "mutiny", + "mutt", + "mutual", + "muzzle", + "myself", + "myspace", + "mystified", + "mystify", + "myth", + "nacho", + "nag", + "nail", + "name", + "naming", + "nanny", + "nanometer", + "nape", + "napkin", + "napped", + "napping", + "nappy", + "narrow", + "nastily", + "nastiness", + "national", + "native", + "nativity", + "natural", + "nature", + "naturist", + "nautical", + "navigate", + "navigator", + "navy", + "nearby", + "nearest", + "nearly", + "nearness", + "neatly", + "neatness", + "nebula", + "nebulizer", + "nectar", + "negate", + "negation", + "negative", + "neglector", + "negligee", + "negligent", + "negotiate", + "nemeses", + "nemesis", + "neon", + "nephew", + "nerd", + "nervous", + "nervy", + "nest", + "net", + "neurology", + "neuron", + "neurosis", + "neurotic", + "neuter", + "neutron", + "never", + "next", + "nibble", + "nickname", + "nicotine", + "niece", + "nifty", + "nimble", + "nimbly", + "nineteen", + "ninetieth", + "ninja", + "nintendo", + "ninth", + "nuclear", + "nuclei", + "nucleus", + "nugget", + "nullify", + "number", + "numbing", + "numbly", + "numbness", + "numeral", + "numerate", + "numerator", + "numeric", + "numerous", + "nuptials", + "nursery", + "nursing", + "nurture", + "nutcase", + "nutlike", + "nutmeg", + "nutrient", + "nutshell", + "nuttiness", + "nutty", + "nuzzle", + "nylon", + "oaf", + "oak", + "oasis", + "oat", + "obedience", + "obedient", + "obituary", + "object", + "obligate", + "obliged", + "oblivion", + "oblivious", + "oblong", + "obnoxious", + "oboe", + "obscure", + "obscurity", + "observant", + "observer", + "observing", + "obsessed", + "obsession", + "obsessive", + "obsolete", + "obstacle", + "obstinate", + "obstruct", + "obtain", + "obtrusive", + "obtuse", + "obvious", + "occultist", + "occupancy", + "occupant", + "occupier", + "occupy", + "ocean", + "ocelot", + "octagon", + "octane", + "october", + "octopus", + "ogle", + "oil", + "oink", + "ointment", + "okay", + "old", + "olive", + "olympics", + "omega", + "omen", + "ominous", + "omission", + "omit", + "omnivore", + "onboard", + "oncoming", + "ongoing", + "onion", + "online", + "onlooker", + "only", + "onscreen", + "onset", + "onshore", + "onslaught", + "onstage", + "onto", + "onward", + "onyx", + "oops", + "ooze", + "oozy", + "opacity", + "opal", + "open", + "operable", + "operate", + "operating", + "operation", + "operative", + "operator", + "opium", + "opossum", + "opponent", + "oppose", + "opposing", + "opposite", + "oppressed", + "oppressor", + "opt", + "opulently", + "osmosis", + "other", + "otter", + "ouch", + "ought", + "ounce", + "outage", + "outback", + "outbid", + "outboard", + "outbound", + "outbreak", + "outburst", + "outcast", + "outclass", + "outcome", + "outdated", + "outdoors", + "outer", + "outfield", + "outfit", + "outflank", + "outgoing", + "outgrow", + "outhouse", + "outing", + "outlast", + "outlet", + "outline", + "outlook", + "outlying", + "outmatch", + "outmost", + "outnumber", + "outplayed", + "outpost", + "outpour", + "output", + "outrage", + "outrank", + "outreach", + "outright", + "outscore", + "outsell", + "outshine", + "outshoot", + "outsider", + "outskirts", + "outsmart", + "outsource", + "outspoken", + "outtakes", + "outthink", + "outward", + "outweigh", + "outwit", + "oval", + "ovary", + "oven", + "overact", + "overall", + "overarch", + "overbid", + "overbill", + "overbite", + "overblown", + "overboard", + "overbook", + "overbuilt", + "overcast", + "overcoat", + "overcome", + "overcook", + "overcrowd", + "overdraft", + "overdrawn", + "overdress", + "overdrive", + "overdue", + "overeager", + "overeater", + "overexert", + "overfed", + "overfeed", + "overfill", + "overflow", + "overfull", + "overgrown", + "overhand", + "overhang", + "overhaul", + "overhead", + "overhear", + "overheat", + "overhung", + "overjoyed", + "overkill", + "overlabor", + "overlaid", + "overlap", + "overlay", + "overload", + "overlook", + "overlord", + "overlying", + "overnight", + "overpass", + "overpay", + "overplant", + "overplay", + "overpower", + "overprice", + "overrate", + "overreach", + "overreact", + "override", + "overripe", + "overrule", + "overrun", + "overshoot", + "overshot", + "oversight", + "oversized", + "oversleep", + "oversold", + "overspend", + "overstate", + "overstay", + "overstep", + "overstock", + "overstuff", + "oversweet", + "overtake", + "overthrow", + "overtime", + "overtly", + "overtone", + "overture", + "overturn", + "overuse", + "overvalue", + "overview", + "overwrite", + "owl", + "oxford", + "oxidant", + "oxidation", + "oxidize", + "oxidizing", + "oxygen", + "oxymoron", + "oyster", + "ozone", + "paced", + "pacemaker", + "pacific", + "pacifier", + "pacifism", + "pacifist", + "pacify", + "padded", + "padding", + "paddle", + "paddling", + "padlock", + "pagan", + "pager", + "paging", + "pajamas", + "palace", + "palatable", + "palm", + "palpable", + "palpitate", + "paltry", + "pampered", + "pamperer", + "pampers", + "pamphlet", + "panama", + "pancake", + "pancreas", + "panda", + "pandemic", + "pang", + "panhandle", + "panic", + "panning", + "panorama", + "panoramic", + "panther", + "pantomime", + "pantry", + "pants", + "pantyhose", + "paparazzi", + "papaya", + "paper", + "paprika", + "papyrus", + "parabola", + "parachute", + "parade", + "paradox", + "paragraph", + "parakeet", + "paralegal", + "paralyses", + "paralysis", + "paralyze", + "paramedic", + "parameter", + "paramount", + "parasail", + "parasite", + "parasitic", + "parcel", + "parched", + "parchment", + "pardon", + "parish", + "parka", + "parking", + "parkway", + "parlor", + "parmesan", + "parole", + "parrot", + "parsley", + "parsnip", + "partake", + "parted", + "parting", + "partition", + "partly", + "partner", + "partridge", + "party", + "passable", + "passably", + "passage", + "passcode", + "passenger", + "passerby", + "passing", + "passion", + "passive", + "passivism", + "passover", + "passport", + "password", + "pasta", + "pasted", + "pastel", + "pastime", + "pastor", + "pastrami", + "pasture", + "pasty", + "patchwork", + "patchy", + "paternal", + "paternity", + "path", + "patience", + "patient", + "patio", + "patriarch", + "patriot", + "patrol", + "patronage", + "patronize", + "pauper", + "pavement", + "paver", + "pavestone", + "pavilion", + "paving", + "pawing", + "payable", + "payback", + "paycheck", + "payday", + "payee", + "payer", + "paying", + "payment", + "payphone", + "payroll", + "pebble", + "pebbly", + "pecan", + "pectin", + "peculiar", + "peddling", + "pediatric", + "pedicure", + "pedigree", + "pedometer", + "pegboard", + "pelican", + "pellet", + "pelt", + "pelvis", + "penalize", + "penalty", + "pencil", + "pendant", + "pending", + "penholder", + "penknife", + "pennant", + "penniless", + "penny", + "penpal", + "pension", + "pentagon", + "pentagram", + "pep", + "perceive", + "percent", + "perch", + "percolate", + "perennial", + "perfected", + "perfectly", + "perfume", + "periscope", + "perish", + "perjurer", + "perjury", + "perkiness", + "perky", + "perm", + "peroxide", + "perpetual", + "perplexed", + "persecute", + "persevere", + "persuaded", + "persuader", + "pesky", + "peso", + "pessimism", + "pessimist", + "pester", + "pesticide", + "petal", + "petite", + "petition", + "petri", + "petroleum", + "petted", + "petticoat", + "pettiness", + "petty", + "petunia", + "phantom", + "phobia", + "phoenix", + "phonebook", + "phoney", + "phonics", + "phoniness", + "phony", + "phosphate", + "photo", + "phrase", + "phrasing", + "placard", + "placate", + "placidly", + "plank", + "planner", + "plant", + "plasma", + "plaster", + "plastic", + "plated", + "platform", + "plating", + "platinum", + "platonic", + "platter", + "platypus", + "plausible", + "plausibly", + "playable", + "playback", + "player", + "playful", + "playgroup", + "playhouse", + "playing", + "playlist", + "playmaker", + "playmate", + "playoff", + "playpen", + "playroom", + "playset", + "plaything", + "playtime", + "plaza", + "pleading", + "pleat", + "pledge", + "plentiful", + "plenty", + "plethora", + "plexiglas", + "pliable", + "plod", + "plop", + "plot", + "plow", + "ploy", + "pluck", + "plug", + "plunder", + "plunging", + "plural", + "plus", + "plutonium", + "plywood", + "poach", + "pod", + "poem", + "poet", + "pogo", + "pointed", + "pointer", + "pointing", + "pointless", + "pointy", + "poise", + "poison", + "poker", + "poking", + "polar", + "police", + "policy", + "polio", + "polish", + "politely", + "polka", + "polo", + "polyester", + "polygon", + "polygraph", + "polymer", + "poncho", + "pond", + "pony", + "popcorn", + "pope", + "poplar", + "popper", + "poppy", + "popsicle", + "populace", + "popular", + "populate", + "porcupine", + "pork", + "porous", + "porridge", + "portable", + "portal", + "portfolio", + "porthole", + "portion", + "portly", + "portside", + "poser", + "posh", + "posing", + "possible", + "possibly", + "possum", + "postage", + "postal", + "postbox", + "postcard", + "posted", + "poster", + "posting", + "postnasal", + "posture", + "postwar", + "pouch", + "pounce", + "pouncing", + "pound", + "pouring", + "pout", + "powdered", + "powdering", + "powdery", + "power", + "powwow", + "pox", + "praising", + "prance", + "prancing", + "pranker", + "prankish", + "prankster", + "prayer", + "praying", + "preacher", + "preaching", + "preachy", + "preamble", + "precinct", + "precise", + "precision", + "precook", + "precut", + "predator", + "predefine", + "predict", + "preface", + "prefix", + "preflight", + "preformed", + "pregame", + "pregnancy", + "pregnant", + "preheated", + "prelaunch", + "prelaw", + "prelude", + "premiere", + "premises", + "premium", + "prenatal", + "preoccupy", + "preorder", + "prepaid", + "prepay", + "preplan", + "preppy", + "preschool", + "prescribe", + "preseason", + "preset", + "preshow", + "president", + "presoak", + "press", + "presume", + "presuming", + "preteen", + "pretended", + "pretender", + "pretense", + "pretext", + "pretty", + "pretzel", + "prevail", + "prevalent", + "prevent", + "preview", + "previous", + "prewar", + "prewashed", + "prideful", + "pried", + "primal", + "primarily", + "primary", + "primate", + "primer", + "primp", + "princess", + "print", + "prior", + "prism", + "prison", + "prissy", + "pristine", + "privacy", + "private", + "privatize", + "prize", + "proactive", + "probable", + "probably", + "probation", + "probe", + "probing", + "probiotic", + "problem", + "procedure", + "process", + "proclaim", + "procreate", + "procurer", + "prodigal", + "prodigy", + "produce", + "product", + "profane", + "profanity", + "professed", + "professor", + "profile", + "profound", + "profusely", + "progeny", + "prognosis", + "program", + "progress", + "projector", + "prologue", + "prolonged", + "promenade", + "prominent", + "promoter", + "promotion", + "prompter", + "promptly", + "prone", + "prong", + "pronounce", + "pronto", + "proofing", + "proofread", + "proofs", + "propeller", + "properly", + "property", + "proponent", + "proposal", + "propose", + "props", + "prorate", + "protector", + "protegee", + "proton", + "prototype", + "protozoan", + "protract", + "protrude", + "proud", + "provable", + "proved", + "proven", + "provided", + "provider", + "providing", + "province", + "proving", + "provoke", + "provoking", + "provolone", + "prowess", + "prowler", + "prowling", + "proximity", + "proxy", + "prozac", + "prude", + "prudishly", + "prune", + "pruning", + "pry", + "psychic", + "public", + "publisher", + "pucker", + "pueblo", + "pug", + "pull", + "pulmonary", + "pulp", + "pulsate", + "pulse", + "pulverize", + "puma", + "pumice", + "pummel", + "punch", + "punctual", + "punctuate", + "punctured", + "pungent", + "punisher", + "punk", + "pupil", + "puppet", + "puppy", + "purchase", + "pureblood", + "purebred", + "purely", + "pureness", + "purgatory", + "purge", + "purging", + "purifier", + "purify", + "purist", + "puritan", + "purity", + "purple", + "purplish", + "purposely", + "purr", + "purse", + "pursuable", + "pursuant", + "pursuit", + "purveyor", + "pushcart", + "pushchair", + "pusher", + "pushiness", + "pushing", + "pushover", + "pushpin", + "pushup", + "pushy", + "putdown", + "putt", + "puzzle", + "puzzling", + "pyramid", + "pyromania", + "python", + "quack", + "quadrant", + "quail", + "quaintly", + "quake", + "quaking", + "qualified", + "qualifier", + "qualify", + "quality", + "qualm", + "quantum", + "quarrel", + "quarry", + "quartered", + "quarterly", + "quarters", + "quartet", + "quench", + "query", + "quicken", + "quickly", + "quickness", + "quicksand", + "quickstep", + "quiet", + "quill", + "quilt", + "quintet", + "quintuple", + "quirk", + "quit", + "quiver", + "quizzical", + "quotable", + "quotation", + "quote", + "rabid", + "race", + "racing", + "racism", + "rack", + "racoon", + "radar", + "radial", + "radiance", + "radiantly", + "radiated", + "radiation", + "radiator", + "radio", + "radish", + "raffle", + "raft", + "rage", + "ragged", + "raging", + "ragweed", + "raider", + "railcar", + "railing", + "railroad", + "railway", + "raisin", + "rake", + "raking", + "rally", + "ramble", + "rambling", + "ramp", + "ramrod", + "ranch", + "rancidity", + "random", + "ranged", + "ranger", + "ranging", + "ranked", + "ranking", + "ransack", + "ranting", + "rants", + "rare", + "rarity", + "rascal", + "rash", + "rasping", + "ravage", + "raven", + "ravine", + "raving", + "ravioli", + "ravishing", + "reabsorb", + "reach", + "reacquire", + "reaction", + "reactive", + "reactor", + "reaffirm", + "ream", + "reanalyze", + "reappear", + "reapply", + "reappoint", + "reapprove", + "rearrange", + "rearview", + "reason", + "reassign", + "reassure", + "reattach", + "reawake", + "rebalance", + "rebate", + "rebel", + "rebirth", + "reboot", + "reborn", + "rebound", + "rebuff", + "rebuild", + "rebuilt", + "reburial", + "rebuttal", + "recall", + "recant", + "recapture", + "recast", + "recede", + "recent", + "recess", + "recharger", + "recipient", + "recital", + "recite", + "reckless", + "reclaim", + "recliner", + "reclining", + "recluse", + "reclusive", + "recognize", + "recoil", + "recollect", + "recolor", + "reconcile", + "reconfirm", + "reconvene", + "recopy", + "record", + "recount", + "recoup", + "recovery", + "recreate", + "rectal", + "rectangle", + "rectified", + "rectify", + "recycled", + "recycler", + "recycling", + "reemerge", + "reenact", + "reenter", + "reentry", + "reexamine", + "referable", + "referee", + "reference", + "refill", + "refinance", + "refined", + "refinery", + "refining", + "refinish", + "reflected", + "reflector", + "reflex", + "reflux", + "refocus", + "refold", + "reforest", + "reformat", + "reformed", + "reformer", + "reformist", + "refract", + "refrain", + "refreeze", + "refresh", + "refried", + "refueling", + "refund", + "refurbish", + "refurnish", + "refusal", + "refuse", + "refusing", + "refutable", + "refute", + "regain", + "regalia", + "regally", + "reggae", + "regime", + "region", + "register", + "registrar", + "registry", + "regress", + "regretful", + "regroup", + "regular", + "regulate", + "regulator", + "rehab", + "reheat", + "rehire", + "rehydrate", + "reimburse", + "reissue", + "reiterate", + "rejoice", + "rejoicing", + "rejoin", + "rekindle", + "relapse", + "relapsing", + "relatable", + "related", + "relation", + "relative", + "relax", + "relay", + "relearn", + "release", + "relenting", + "reliable", + "reliably", + "reliance", + "reliant", + "relic", + "relieve", + "relieving", + "relight", + "relish", + "relive", + "reload", + "relocate", + "relock", + "reluctant", + "rely", + "remake", + "remark", + "remarry", + "rematch", + "remedial", + "remedy", + "remember", + "reminder", + "remindful", + "remission", + "remix", + "remnant", + "remodeler", + "remold", + "remorse", + "remote", + "removable", + "removal", + "removed", + "remover", + "removing", + "rename", + "renderer", + "rendering", + "rendition", + "renegade", + "renewable", + "renewably", + "renewal", + "renewed", + "renounce", + "renovate", + "renovator", + "rentable", + "rental", + "rented", + "renter", + "reoccupy", + "reoccur", + "reopen", + "reorder", + "repackage", + "repacking", + "repaint", + "repair", + "repave", + "repaying", + "repayment", + "repeal", + "repeated", + "repeater", + "repent", + "rephrase", + "replace", + "replay", + "replica", + "reply", + "reporter", + "repose", + "repossess", + "repost", + "repressed", + "reprimand", + "reprint", + "reprise", + "reproach", + "reprocess", + "reproduce", + "reprogram", + "reps", + "reptile", + "reptilian", + "repugnant", + "repulsion", + "repulsive", + "repurpose", + "reputable", + "reputably", + "request", + "require", + "requisite", + "reroute", + "rerun", + "resale", + "resample", + "rescuer", + "reseal", + "research", + "reselect", + "reseller", + "resemble", + "resend", + "resent", + "reset", + "reshape", + "reshoot", + "reshuffle", + "residence", + "residency", + "resident", + "residual", + "residue", + "resigned", + "resilient", + "resistant", + "resisting", + "resize", + "resolute", + "resolved", + "resonant", + "resonate", + "resort", + "resource", + "respect", + "resubmit", + "result", + "resume", + "resupply", + "resurface", + "resurrect", + "retail", + "retainer", + "retaining", + "retake", + "retaliate", + "retention", + "rethink", + "retinal", + "retired", + "retiree", + "retiring", + "retold", + "retool", + "retorted", + "retouch", + "retrace", + "retract", + "retrain", + "retread", + "retreat", + "retrial", + "retrieval", + "retriever", + "retry", + "return", + "retying", + "retype", + "reunion", + "reunite", + "reusable", + "reuse", + "reveal", + "reveler", + "revenge", + "revenue", + "reverb", + "revered", + "reverence", + "reverend", + "reversal", + "reverse", + "reversing", + "reversion", + "revert", + "revisable", + "revise", + "revision", + "revisit", + "revivable", + "revival", + "reviver", + "reviving", + "revocable", + "revoke", + "revolt", + "revolver", + "revolving", + "reward", + "rewash", + "rewind", + "rewire", + "reword", + "rework", + "rewrap", + "rewrite", + "rhyme", + "ribbon", + "ribcage", + "rice", + "riches", + "richly", + "richness", + "rickety", + "ricotta", + "riddance", + "ridden", + "ride", + "riding", + "rifling", + "rift", + "rigging", + "rigid", + "rigor", + "rimless", + "rimmed", + "rind", + "rink", + "rinse", + "rinsing", + "riot", + "ripcord", + "ripeness", + "ripening", + "ripping", + "ripple", + "rippling", + "riptide", + "rise", + "rising", + "risk", + "risotto", + "ritalin", + "ritzy", + "rival", + "riverbank", + "riverbed", + "riverboat", + "riverside", + "riveter", + "riveting", + "roamer", + "roaming", + "roast", + "robbing", + "robe", + "robin", + "robotics", + "robust", + "rockband", + "rocker", + "rocket", + "rockfish", + "rockiness", + "rocking", + "rocklike", + "rockslide", + "rockstar", + "rocky", + "rogue", + "roman", + "romp", + "rope", + "roping", + "roster", + "rosy", + "rotten", + "rotting", + "rotunda", + "roulette", + "rounding", + "roundish", + "roundness", + "roundup", + "roundworm", + "routine", + "routing", + "rover", + "roving", + "royal", + "rubbed", + "rubber", + "rubbing", + "rubble", + "rubdown", + "ruby", + "ruckus", + "rudder", + "rug", + "ruined", + "rule", + "rumble", + "rumbling", + "rummage", + "rumor", + "runaround", + "rundown", + "runner", + "running", + "runny", + "runt", + "runway", + "rupture", + "rural", + "ruse", + "rush", + "rust", + "rut", + "sabbath", + "sabotage", + "sacrament", + "sacred", + "sacrifice", + "sadden", + "saddlebag", + "saddled", + "saddling", + "sadly", + "sadness", + "safari", + "safeguard", + "safehouse", + "safely", + "safeness", + "saffron", + "saga", + "sage", + "sagging", + "saggy", + "said", + "saint", + "sake", + "salad", + "salami", + "salaried", + "salary", + "saline", + "salon", + "saloon", + "salsa", + "salt", + "salutary", + "salute", + "salvage", + "salvaging", + "salvation", + "same", + "sample", + "sampling", + "sanction", + "sanctity", + "sanctuary", + "sandal", + "sandbag", + "sandbank", + "sandbar", + "sandblast", + "sandbox", + "sanded", + "sandfish", + "sanding", + "sandlot", + "sandpaper", + "sandpit", + "sandstone", + "sandstorm", + "sandworm", + "sandy", + "sanitary", + "sanitizer", + "sank", + "santa", + "sapling", + "sappiness", + "sappy", + "sarcasm", + "sarcastic", + "sardine", + "sash", + "sasquatch", + "sassy", + "satchel", + "satiable", + "satin", + "satirical", + "satisfied", + "satisfy", + "saturate", + "saturday", + "sauciness", + "saucy", + "sauna", + "savage", + "savanna", + "saved", + "savings", + "savior", + "savor", + "saxophone", + "say", + "scabbed", + "scabby", + "scalded", + "scalding", + "scale", + "scaling", + "scallion", + "scallop", + "scalping", + "scam", + "scandal", + "scanner", + "scanning", + "scant", + "scapegoat", + "scarce", + "scarcity", + "scarecrow", + "scared", + "scarf", + "scarily", + "scariness", + "scarring", + "scary", + "scavenger", + "scenic", + "schedule", + "schematic", + "scheme", + "scheming", + "schilling", + "schnapps", + "scholar", + "science", + "scientist", + "scion", + "scoff", + "scolding", + "scone", + "scoop", + "scooter", + "scope", + "scorch", + "scorebook", + "scorecard", + "scored", + "scoreless", + "scorer", + "scoring", + "scorn", + "scorpion", + "scotch", + "scoundrel", + "scoured", + "scouring", + "scouting", + "scouts", + "scowling", + "scrabble", + "scraggly", + "scrambled", + "scrambler", + "scrap", + "scratch", + "scrawny", + "screen", + "scribble", + "scribe", + "scribing", + "scrimmage", + "script", + "scroll", + "scrooge", + "scrounger", + "scrubbed", + "scrubber", + "scruffy", + "scrunch", + "scrutiny", + "scuba", + "scuff", + "sculptor", + "sculpture", + "scurvy", + "scuttle", + "secluded", + "secluding", + "seclusion", + "second", + "secrecy", + "secret", + "sectional", + "sector", + "secular", + "securely", + "security", + "sedan", + "sedate", + "sedation", + "sedative", + "sediment", + "seduce", + "seducing", + "segment", + "seismic", + "seizing", + "seldom", + "selected", + "selection", + "selective", + "selector", + "self", + "seltzer", + "semantic", + "semester", + "semicolon", + "semifinal", + "seminar", + "semisoft", + "semisweet", + "senate", + "senator", + "send", + "senior", + "senorita", + "sensation", + "sensitive", + "sensitize", + "sensually", + "sensuous", + "sepia", + "september", + "septic", + "septum", + "sequel", + "sequence", + "sequester", + "series", + "sermon", + "serotonin", + "serpent", + "serrated", + "serve", + "service", + "serving", + "sesame", + "sessions", + "setback", + "setting", + "settle", + "settling", + "setup", + "sevenfold", + "seventeen", + "seventh", + "seventy", + "severity", + "shabby", + "shack", + "shaded", + "shadily", + "shadiness", + "shading", + "shadow", + "shady", + "shaft", + "shakable", + "shakily", + "shakiness", + "shaking", + "shaky", + "shale", + "shallot", + "shallow", + "shame", + "shampoo", + "shamrock", + "shank", + "shanty", + "shape", + "shaping", + "share", + "sharpener", + "sharper", + "sharpie", + "sharply", + "sharpness", + "shawl", + "sheath", + "shed", + "sheep", + "sheet", + "shelf", + "shell", + "shelter", + "shelve", + "shelving", + "sherry", + "shield", + "shifter", + "shifting", + "shiftless", + "shifty", + "shimmer", + "shimmy", + "shindig", + "shine", + "shingle", + "shininess", + "shining", + "shiny", + "ship", + "shirt", + "shivering", + "shock", + "shone", + "shoplift", + "shopper", + "shopping", + "shoptalk", + "shore", + "shortage", + "shortcake", + "shortcut", + "shorten", + "shorter", + "shorthand", + "shortlist", + "shortly", + "shortness", + "shorts", + "shortwave", + "shorty", + "shout", + "shove", + "showbiz", + "showcase", + "showdown", + "shower", + "showgirl", + "showing", + "showman", + "shown", + "showoff", + "showpiece", + "showplace", + "showroom", + "showy", + "shrank", + "shrapnel", + "shredder", + "shredding", + "shrewdly", + "shriek", + "shrill", + "shrimp", + "shrine", + "shrink", + "shrivel", + "shrouded", + "shrubbery", + "shrubs", + "shrug", + "shrunk", + "shucking", + "shudder", + "shuffle", + "shuffling", + "shun", + "shush", + "shut", + "shy", + "siamese", + "siberian", + "sibling", + "siding", + "sierra", + "siesta", + "sift", + "sighing", + "silenced", + "silencer", + "silent", + "silica", + "silicon", + "silk", + "silliness", + "silly", + "silo", + "silt", + "silver", + "similarly", + "simile", + "simmering", + "simple", + "simplify", + "simply", + "sincere", + "sincerity", + "singer", + "singing", + "single", + "singular", + "sinister", + "sinless", + "sinner", + "sinuous", + "sip", + "siren", + "sister", + "sitcom", + "sitter", + "sitting", + "situated", + "situation", + "sixfold", + "sixteen", + "sixth", + "sixties", + "sixtieth", + "sixtyfold", + "sizable", + "sizably", + "size", + "sizing", + "sizzle", + "sizzling", + "skater", + "skating", + "skedaddle", + "skeletal", + "skeleton", + "skeptic", + "sketch", + "skewed", + "skewer", + "skid", + "skied", + "skier", + "skies", + "skiing", + "skilled", + "skillet", + "skillful", + "skimmed", + "skimmer", + "skimming", + "skimpily", + "skincare", + "skinhead", + "skinless", + "skinning", + "skinny", + "skintight", + "skipper", + "skipping", + "skirmish", + "skirt", + "skittle", + "skydiver", + "skylight", + "skyline", + "skype", + "skyrocket", + "skyward", + "slab", + "slacked", + "slacker", + "slacking", + "slackness", + "slacks", + "slain", + "slam", + "slander", + "slang", + "slapping", + "slapstick", + "slashed", + "slashing", + "slate", + "slather", + "slaw", + "sled", + "sleek", + "sleep", + "sleet", + "sleeve", + "slept", + "sliceable", + "sliced", + "slicer", + "slicing", + "slick", + "slider", + "slideshow", + "sliding", + "slighted", + "slighting", + "slightly", + "slimness", + "slimy", + "slinging", + "slingshot", + "slinky", + "slip", + "slit", + "sliver", + "slobbery", + "slogan", + "sloped", + "sloping", + "sloppily", + "sloppy", + "slot", + "slouching", + "slouchy", + "sludge", + "slug", + "slum", + "slurp", + "slush", + "sly", + "small", + "smartly", + "smartness", + "smasher", + "smashing", + "smashup", + "smell", + "smelting", + "smile", + "smilingly", + "smirk", + "smite", + "smith", + "smitten", + "smock", + "smog", + "smoked", + "smokeless", + "smokiness", + "smoking", + "smoky", + "smolder", + "smooth", + "smother", + "smudge", + "smudgy", + "smuggler", + "smuggling", + "smugly", + "smugness", + "snack", + "snagged", + "snaking", + "snap", + "snare", + "snarl", + "snazzy", + "sneak", + "sneer", + "sneeze", + "sneezing", + "snide", + "sniff", + "snippet", + "snipping", + "snitch", + "snooper", + "snooze", + "snore", + "snoring", + "snorkel", + "snort", + "snout", + "snowbird", + "snowboard", + "snowbound", + "snowcap", + "snowdrift", + "snowdrop", + "snowfall", + "snowfield", + "snowflake", + "snowiness", + "snowless", + "snowman", + "snowplow", + "snowshoe", + "snowstorm", + "snowsuit", + "snowy", + "snub", + "snuff", + "snuggle", + "snugly", + "snugness", + "speak", + "spearfish", + "spearhead", + "spearman", + "spearmint", + "species", + "specimen", + "specked", + "speckled", + "specks", + "spectacle", + "spectator", + "spectrum", + "speculate", + "speech", + "speed", + "spellbind", + "speller", + "spelling", + "spendable", + "spender", + "spending", + "spent", + "spew", + "sphere", + "spherical", + "sphinx", + "spider", + "spied", + "spiffy", + "spill", + "spilt", + "spinach", + "spinal", + "spindle", + "spinner", + "spinning", + "spinout", + "spinster", + "spiny", + "spiral", + "spirited", + "spiritism", + "spirits", + "spiritual", + "splashed", + "splashing", + "splashy", + "splatter", + "spleen", + "splendid", + "splendor", + "splice", + "splicing", + "splinter", + "splotchy", + "splurge", + "spoilage", + "spoiled", + "spoiler", + "spoiling", + "spoils", + "spoken", + "spokesman", + "sponge", + "spongy", + "sponsor", + "spoof", + "spookily", + "spooky", + "spool", + "spoon", + "spore", + "sporting", + "sports", + "sporty", + "spotless", + "spotlight", + "spotted", + "spotter", + "spotting", + "spotty", + "spousal", + "spouse", + "spout", + "sprain", + "sprang", + "sprawl", + "spray", + "spree", + "sprig", + "spring", + "sprinkled", + "sprinkler", + "sprint", + "sprite", + "sprout", + "spruce", + "sprung", + "spry", + "spud", + "spur", + "sputter", + "spyglass", + "squabble", + "squad", + "squall", + "squander", + "squash", + "squatted", + "squatter", + "squatting", + "squeak", + "squealer", + "squealing", + "squeamish", + "squeegee", + "squeeze", + "squeezing", + "squid", + "squiggle", + "squiggly", + "squint", + "squire", + "squirt", + "squishier", + "squishy", + "stability", + "stabilize", + "stable", + "stack", + "stadium", + "staff", + "stage", + "staging", + "stagnant", + "stagnate", + "stainable", + "stained", + "staining", + "stainless", + "stalemate", + "staleness", + "stalling", + "stallion", + "stamina", + "stammer", + "stamp", + "stand", + "stank", + "staple", + "stapling", + "starboard", + "starch", + "stardom", + "stardust", + "starfish", + "stargazer", + "staring", + "stark", + "starless", + "starlet", + "starlight", + "starlit", + "starring", + "starry", + "starship", + "starter", + "starting", + "startle", + "startling", + "startup", + "starved", + "starving", + "stash", + "state", + "static", + "statistic", + "statue", + "stature", + "status", + "statute", + "statutory", + "staunch", + "stays", + "steadfast", + "steadier", + "steadily", + "steadying", + "steam", + "steed", + "steep", + "steerable", + "steering", + "steersman", + "stegosaur", + "stellar", + "stem", + "stench", + "stencil", + "step", + "stereo", + "sterile", + "sterility", + "sterilize", + "sterling", + "sternness", + "sternum", + "stew", + "stick", + "stiffen", + "stiffly", + "stiffness", + "stifle", + "stifling", + "stillness", + "stilt", + "stimulant", + "stimulate", + "stimuli", + "stimulus", + "stinger", + "stingily", + "stinging", + "stingray", + "stingy", + "stinking", + "stinky", + "stipend", + "stipulate", + "stir", + "stitch", + "stock", + "stoic", + "stoke", + "stole", + "stomp", + "stonewall", + "stoneware", + "stonework", + "stoning", + "stony", + "stood", + "stooge", + "stool", + "stoop", + "stoplight", + "stoppable", + "stoppage", + "stopped", + "stopper", + "stopping", + "stopwatch", + "storable", + "storage", + "storeroom", + "storewide", + "storm", + "stout", + "stove", + "stowaway", + "stowing", + "straddle", + "straggler", + "strained", + "strainer", + "straining", + "strangely", + "stranger", + "strangle", + "strategic", + "strategy", + "stratus", + "straw", + "stray", + "streak", + "stream", + "street", + "strength", + "strenuous", + "strep", + "stress", + "stretch", + "strewn", + "stricken", + "strict", + "stride", + "strife", + "strike", + "striking", + "strive", + "striving", + "strobe", + "strode", + "stroller", + "strongbox", + "strongly", + "strongman", + "struck", + "structure", + "strudel", + "struggle", + "strum", + "strung", + "strut", + "stubbed", + "stubble", + "stubbly", + "stubborn", + "stucco", + "stuck", + "student", + "studied", + "studio", + "study", + "stuffed", + "stuffing", + "stuffy", + "stumble", + "stumbling", + "stump", + "stung", + "stunned", + "stunner", + "stunning", + "stunt", + "stupor", + "sturdily", + "sturdy", + "styling", + "stylishly", + "stylist", + "stylized", + "stylus", + "suave", + "subarctic", + "subatomic", + "subdivide", + "subdued", + "subduing", + "subfloor", + "subgroup", + "subheader", + "subject", + "sublease", + "sublet", + "sublevel", + "sublime", + "submarine", + "submerge", + "submersed", + "submitter", + "subpanel", + "subpar", + "subplot", + "subprime", + "subscribe", + "subscript", + "subsector", + "subside", + "subsiding", + "subsidize", + "subsidy", + "subsoil", + "subsonic", + "substance", + "subsystem", + "subtext", + "subtitle", + "subtly", + "subtotal", + "subtract", + "subtype", + "suburb", + "subway", + "subwoofer", + "subzero", + "succulent", + "such", + "suction", + "sudden", + "sudoku", + "suds", + "sufferer", + "suffering", + "suffice", + "suffix", + "suffocate", + "suffrage", + "sugar", + "suggest", + "suing", + "suitable", + "suitably", + "suitcase", + "suitor", + "sulfate", + "sulfide", + "sulfite", + "sulfur", + "sulk", + "sullen", + "sulphate", + "sulphuric", + "sultry", + "superbowl", + "superglue", + "superhero", + "superior", + "superjet", + "superman", + "supermom", + "supernova", + "supervise", + "supper", + "supplier", + "supply", + "support", + "supremacy", + "supreme", + "surcharge", + "surely", + "sureness", + "surface", + "surfacing", + "surfboard", + "surfer", + "surgery", + "surgical", + "surging", + "surname", + "surpass", + "surplus", + "surprise", + "surreal", + "surrender", + "surrogate", + "surround", + "survey", + "survival", + "survive", + "surviving", + "survivor", + "sushi", + "suspect", + "suspend", + "suspense", + "sustained", + "sustainer", + "swab", + "swaddling", + "swagger", + "swampland", + "swan", + "swapping", + "swarm", + "sway", + "swear", + "sweat", + "sweep", + "swell", + "swept", + "swerve", + "swifter", + "swiftly", + "swiftness", + "swimmable", + "swimmer", + "swimming", + "swimsuit", + "swimwear", + "swinger", + "swinging", + "swipe", + "swirl", + "switch", + "swivel", + "swizzle", + "swooned", + "swoop", + "swoosh", + "swore", + "sworn", + "swung", + "sycamore", + "sympathy", + "symphonic", + "symphony", + "symptom", + "synapse", + "syndrome", + "synergy", + "synopses", + "synopsis", + "synthesis", + "synthetic", + "syrup", + "system", + "t-shirt", + "tabasco", + "tabby", + "tableful", + "tables", + "tablet", + "tableware", + "tabloid", + "tackiness", + "tacking", + "tackle", + "tackling", + "tacky", + "taco", + "tactful", + "tactical", + "tactics", + "tactile", + "tactless", + "tadpole", + "taekwondo", + "tag", + "tainted", + "take", + "taking", + "talcum", + "talisman", + "tall", + "talon", + "tamale", + "tameness", + "tamer", + "tamper", + "tank", + "tanned", + "tannery", + "tanning", + "tantrum", + "tapeless", + "tapered", + "tapering", + "tapestry", + "tapioca", + "tapping", + "taps", + "tarantula", + "target", + "tarmac", + "tarnish", + "tarot", + "tartar", + "tartly", + "tartness", + "task", + "tassel", + "taste", + "tastiness", + "tasting", + "tasty", + "tattered", + "tattle", + "tattling", + "tattoo", + "taunt", + "tavern", + "thank", + "that", + "thaw", + "theater", + "theatrics", + "thee", + "theft", + "theme", + "theology", + "theorize", + "thermal", + "thermos", + "thesaurus", + "these", + "thesis", + "thespian", + "thicken", + "thicket", + "thickness", + "thieving", + "thievish", + "thigh", + "thimble", + "thing", + "think", + "thinly", + "thinner", + "thinness", + "thinning", + "thirstily", + "thirsting", + "thirsty", + "thirteen", + "thirty", + "thong", + "thorn", + "those", + "thousand", + "thrash", + "thread", + "threaten", + "threefold", + "thrift", + "thrill", + "thrive", + "thriving", + "throat", + "throbbing", + "throng", + "throttle", + "throwaway", + "throwback", + "thrower", + "throwing", + "thud", + "thumb", + "thumping", + "thursday", + "thus", + "thwarting", + "thyself", + "tiara", + "tibia", + "tidal", + "tidbit", + "tidiness", + "tidings", + "tidy", + "tiger", + "tighten", + "tightly", + "tightness", + "tightrope", + "tightwad", + "tigress", + "tile", + "tiling", + "till", + "tilt", + "timid", + "timing", + "timothy", + "tinderbox", + "tinfoil", + "tingle", + "tingling", + "tingly", + "tinker", + "tinkling", + "tinsel", + "tinsmith", + "tint", + "tinwork", + "tiny", + "tipoff", + "tipped", + "tipper", + "tipping", + "tiptoeing", + "tiptop", + "tiring", + "tissue", + "trace", + "tracing", + "track", + "traction", + "tractor", + "trade", + "trading", + "tradition", + "traffic", + "tragedy", + "trailing", + "trailside", + "train", + "traitor", + "trance", + "tranquil", + "transfer", + "transform", + "translate", + "transpire", + "transport", + "transpose", + "trapdoor", + "trapeze", + "trapezoid", + "trapped", + "trapper", + "trapping", + "traps", + "trash", + "travel", + "traverse", + "travesty", + "tray", + "treachery", + "treading", + "treadmill", + "treason", + "treat", + "treble", + "tree", + "trekker", + "tremble", + "trembling", + "tremor", + "trench", + "trend", + "trespass", + "triage", + "trial", + "triangle", + "tribesman", + "tribunal", + "tribune", + "tributary", + "tribute", + "triceps", + "trickery", + "trickily", + "tricking", + "trickle", + "trickster", + "tricky", + "tricolor", + "tricycle", + "trident", + "tried", + "trifle", + "trifocals", + "trillion", + "trilogy", + "trimester", + "trimmer", + "trimming", + "trimness", + "trinity", + "trio", + "tripod", + "tripping", + "triumph", + "trivial", + "trodden", + "trolling", + "trombone", + "trophy", + "tropical", + "tropics", + "trouble", + "troubling", + "trough", + "trousers", + "trout", + "trowel", + "truce", + "truck", + "truffle", + "trump", + "trunks", + "trustable", + "trustee", + "trustful", + "trusting", + "trustless", + "truth", + "try", + "tubby", + "tubeless", + "tubular", + "tucking", + "tuesday", + "tug", + "tuition", + "tulip", + "tumble", + "tumbling", + "tummy", + "turban", + "turbine", + "turbofan", + "turbojet", + "turbulent", + "turf", + "turkey", + "turmoil", + "turret", + "turtle", + "tusk", + "tutor", + "tutu", + "tux", + "tweak", + "tweed", + "tweet", + "tweezers", + "twelve", + "twentieth", + "twenty", + "twerp", + "twice", + "twiddle", + "twiddling", + "twig", + "twilight", + "twine", + "twins", + "twirl", + "twistable", + "twisted", + "twister", + "twisting", + "twisty", + "twitch", + "twitter", + "tycoon", + "tying", + "tyke", + "udder", + "ultimate", + "ultimatum", + "ultra", + "umbilical", + "umbrella", + "umpire", + "unabashed", + "unable", + "unadorned", + "unadvised", + "unafraid", + "unaired", + "unaligned", + "unaltered", + "unarmored", + "unashamed", + "unaudited", + "unawake", + "unaware", + "unbaked", + "unbalance", + "unbeaten", + "unbend", + "unbent", + "unbiased", + "unbitten", + "unblended", + "unblessed", + "unblock", + "unbolted", + "unbounded", + "unboxed", + "unbraided", + "unbridle", + "unbroken", + "unbuckled", + "unbundle", + "unburned", + "unbutton", + "uncanny", + "uncapped", + "uncaring", + "uncertain", + "unchain", + "unchanged", + "uncharted", + "uncheck", + "uncivil", + "unclad", + "unclaimed", + "unclamped", + "unclasp", + "uncle", + "unclip", + "uncloak", + "unclog", + "unclothed", + "uncoated", + "uncoiled", + "uncolored", + "uncombed", + "uncommon", + "uncooked", + "uncork", + "uncorrupt", + "uncounted", + "uncouple", + "uncouth", + "uncover", + "uncross", + "uncrown", + "uncrushed", + "uncured", + "uncurious", + "uncurled", + "uncut", + "undamaged", + "undated", + "undaunted", + "undead", + "undecided", + "undefined", + "underage", + "underarm", + "undercoat", + "undercook", + "undercut", + "underdog", + "underdone", + "underfed", + "underfeed", + "underfoot", + "undergo", + "undergrad", + "underhand", + "underline", + "underling", + "undermine", + "undermost", + "underpaid", + "underpass", + "underpay", + "underrate", + "undertake", + "undertone", + "undertook", + "undertow", + "underuse", + "underwear", + "underwent", + "underwire", + "undesired", + "undiluted", + "undivided", + "undocked", + "undoing", + "undone", + "undrafted", + "undress", + "undrilled", + "undusted", + "undying", + "unearned", + "unearth", + "unease", + "uneasily", + "uneasy", + "uneatable", + "uneaten", + "unedited", + "unelected", + "unending", + "unengaged", + "unenvied", + "unequal", + "unethical", + "uneven", + "unexpired", + "unexposed", + "unfailing", + "unfair", + "unfasten", + "unfazed", + "unfeeling", + "unfiled", + "unfilled", + "unfitted", + "unfitting", + "unfixable", + "unfixed", + "unflawed", + "unfocused", + "unfold", + "unfounded", + "unframed", + "unfreeze", + "unfrosted", + "unfrozen", + "unfunded", + "unglazed", + "ungloved", + "unglue", + "ungodly", + "ungraded", + "ungreased", + "unguarded", + "unguided", + "unhappily", + "unhappy", + "unharmed", + "unhealthy", + "unheard", + "unhearing", + "unheated", + "unhelpful", + "unhidden", + "unhinge", + "unhitched", + "unholy", + "unhook", + "unicorn", + "unicycle", + "unified", + "unifier", + "uniformed", + "uniformly", + "unify", + "unimpeded", + "uninjured", + "uninstall", + "uninsured", + "uninvited", + "union", + "uniquely", + "unisexual", + "unison", + "unissued", + "unit", + "universal", + "universe", + "unjustly", + "unkempt", + "unkind", + "unknotted", + "unknowing", + "unknown", + "unlaced", + "unlatch", + "unlawful", + "unleaded", + "unlearned", + "unleash", + "unless", + "unleveled", + "unlighted", + "unlikable", + "unlimited", + "unlined", + "unlinked", + "unlisted", + "unlit", + "unlivable", + "unloaded", + "unloader", + "unlocked", + "unlocking", + "unlovable", + "unloved", + "unlovely", + "unloving", + "unluckily", + "unlucky", + "unmade", + "unmanaged", + "unmanned", + "unmapped", + "unmarked", + "unmasked", + "unmasking", + "unmatched", + "unmindful", + "unmixable", + "unmixed", + "unmolded", + "unmoral", + "unmovable", + "unmoved", + "unmoving", + "unnamable", + "unnamed", + "unnatural", + "unneeded", + "unnerve", + "unnerving", + "unnoticed", + "unopened", + "unopposed", + "unpack", + "unpadded", + "unpaid", + "unpainted", + "unpaired", + "unpaved", + "unpeeled", + "unpicked", + "unpiloted", + "unpinned", + "unplanned", + "unplanted", + "unpleased", + "unpledged", + "unplowed", + "unplug", + "unpopular", + "unproven", + "unquote", + "unranked", + "unrated", + "unraveled", + "unreached", + "unread", + "unreal", + "unreeling", + "unrefined", + "unrelated", + "unrented", + "unrest", + "unretired", + "unrevised", + "unrigged", + "unripe", + "unrivaled", + "unroasted", + "unrobed", + "unroll", + "unruffled", + "unruly", + "unrushed", + "unsaddle", + "unsafe", + "unsaid", + "unsalted", + "unsaved", + "unsavory", + "unscathed", + "unscented", + "unscrew", + "unsealed", + "unseated", + "unsecured", + "unseeing", + "unseemly", + "unseen", + "unselect", + "unselfish", + "unsent", + "unsettled", + "unshackle", + "unshaken", + "unshaved", + "unshaven", + "unsheathe", + "unshipped", + "unsightly", + "unsigned", + "unskilled", + "unsliced", + "unsmooth", + "unsnap", + "unsocial", + "unsoiled", + "unsold", + "unsolved", + "unsorted", + "unspoiled", + "unspoken", + "unstable", + "unstaffed", + "unstamped", + "unsteady", + "unsterile", + "unstirred", + "unstitch", + "unstopped", + "unstuck", + "unstuffed", + "unstylish", + "unsubtle", + "unsubtly", + "unsuited", + "unsure", + "unsworn", + "untagged", + "untainted", + "untaken", + "untamed", + "untangled", + "untapped", + "untaxed", + "unthawed", + "unthread", + "untidy", + "untie", + "until", + "untimed", + "untimely", + "untitled", + "untoasted", + "untold", + "untouched", + "untracked", + "untrained", + "untreated", + "untried", + "untrimmed", + "untrue", + "untruth", + "unturned", + "untwist", + "untying", + "unusable", + "unused", + "unusual", + "unvalued", + "unvaried", + "unvarying", + "unveiled", + "unveiling", + "unvented", + "unviable", + "unvisited", + "unvocal", + "unwanted", + "unwarlike", + "unwary", + "unwashed", + "unwatched", + "unweave", + "unwed", + "unwelcome", + "unwell", + "unwieldy", + "unwilling", + "unwind", + "unwired", + "unwitting", + "unwomanly", + "unworldly", + "unworn", + "unworried", + "unworthy", + "unwound", + "unwoven", + "unwrapped", + "unwritten", + "unzip", + "upbeat", + "upchuck", + "upcoming", + "upcountry", + "update", + "upfront", + "upgrade", + "upheaval", + "upheld", + "uphill", + "uphold", + "uplifted", + "uplifting", + "upload", + "upon", + "upper", + "upright", + "uprising", + "upriver", + "uproar", + "uproot", + "upscale", + "upside", + "upstage", + "upstairs", + "upstart", + "upstate", + "upstream", + "upstroke", + "upswing", + "uptake", + "uptight", + "uptown", + "upturned", + "upward", + "upwind", + "uranium", + "urban", + "urchin", + "urethane", + "urgency", + "urgent", + "urging", + "urologist", + "urology", + "usable", + "usage", + "useable", + "used", + "uselessly", + "user", + "usher", + "usual", + "utensil", + "utility", + "utilize", + "utmost", + "utopia", + "utter", + "vacancy", + "vacant", + "vacate", + "vacation", + "vagabond", + "vagrancy", + "vagrantly", + "vaguely", + "vagueness", + "valiant", + "valid", + "valium", + "valley", + "valuables", + "value", + "vanilla", + "vanish", + "vanity", + "vanquish", + "vantage", + "vaporizer", + "variable", + "variably", + "varied", + "variety", + "various", + "varmint", + "varnish", + "varsity", + "varying", + "vascular", + "vaseline", + "vastly", + "vastness", + "veal", + "vegan", + "veggie", + "vehicular", + "velcro", + "velocity", + "velvet", + "vendetta", + "vending", + "vendor", + "veneering", + "vengeful", + "venomous", + "ventricle", + "venture", + "venue", + "venus", + "verbalize", + "verbally", + "verbose", + "verdict", + "verify", + "verse", + "version", + "versus", + "vertebrae", + "vertical", + "vertigo", + "very", + "vessel", + "vest", + "veteran", + "veto", + "vexingly", + "viability", + "viable", + "vibes", + "vice", + "vicinity", + "victory", + "video", + "viewable", + "viewer", + "viewing", + "viewless", + "viewpoint", + "vigorous", + "village", + "villain", + "vindicate", + "vineyard", + "vintage", + "violate", + "violation", + "violator", + "violet", + "violin", + "viper", + "viral", + "virtual", + "virtuous", + "virus", + "visa", + "viscosity", + "viscous", + "viselike", + "visible", + "visibly", + "vision", + "visiting", + "visitor", + "visor", + "vista", + "vitality", + "vitalize", + "vitally", + "vitamins", + "vivacious", + "vividly", + "vividness", + "vixen", + "vocalist", + "vocalize", + "vocally", + "vocation", + "voice", + "voicing", + "void", + "volatile", + "volley", + "voltage", + "volumes", + "voter", + "voting", + "voucher", + "vowed", + "vowel", + "voyage", + "wackiness", + "wad", + "wafer", + "waffle", + "waged", + "wager", + "wages", + "waggle", + "wagon", + "wake", + "waking", + "walk", + "walmart", + "walnut", + "walrus", + "waltz", + "wand", + "wannabe", + "wanted", + "wanting", + "wasabi", + "washable", + "washbasin", + "washboard", + "washbowl", + "washcloth", + "washday", + "washed", + "washer", + "washhouse", + "washing", + "washout", + "washroom", + "washstand", + "washtub", + "wasp", + "wasting", + "watch", + "water", + "waviness", + "waving", + "wavy", + "whacking", + "whacky", + "wham", + "wharf", + "wheat", + "whenever", + "whiff", + "whimsical", + "whinny", + "whiny", + "whisking", + "whoever", + "whole", + "whomever", + "whoopee", + "whooping", + "whoops", + "why", + "wick", + "widely", + "widen", + "widget", + "widow", + "width", + "wieldable", + "wielder", + "wife", + "wifi", + "wikipedia", + "wildcard", + "wildcat", + "wilder", + "wildfire", + "wildfowl", + "wildland", + "wildlife", + "wildly", + "wildness", + "willed", + "willfully", + "willing", + "willow", + "willpower", + "wilt", + "wimp", + "wince", + "wincing", + "wind", + "wing", + "winking", + "winner", + "winnings", + "winter", + "wipe", + "wired", + "wireless", + "wiring", + "wiry", + "wisdom", + "wise", + "wish", + "wisplike", + "wispy", + "wistful", + "wizard", + "wobble", + "wobbling", + "wobbly", + "wok", + "wolf", + "wolverine", + "womanhood", + "womankind", + "womanless", + "womanlike", + "womanly", + "womb", + "woof", + "wooing", + "wool", + "woozy", + "word", + "work", + "worried", + "worrier", + "worrisome", + "worry", + "worsening", + "worshiper", + "worst", + "wound", + "woven", + "wow", + "wrangle", + "wrath", + "wreath", + "wreckage", + "wrecker", + "wrecking", + "wrench", + "wriggle", + "wriggly", + "wrinkle", + "wrinkly", + "wrist", + "writing", + "written", + "wrongdoer", + "wronged", + "wrongful", + "wrongly", + "wrongness", + "wrought", + "xbox", + "xerox", + "yahoo", + "yam", + "yanking", + "yapping", + "yard", + "yarn", + "yeah", + "yearbook", + "yearling", + "yearly", + "yearning", + "yeast", + "yelling", + "yelp", + "yen", + "yesterday", + "yiddish", + "yield", + "yin", + "yippee", + "yo-yo", + "yodel", + "yoga", + "yogurt", + "yonder", + "yoyo", + "yummy", + "zap", + "zealous", + "zebra", + "zen", + "zeppelin", + "zero", + "zestfully", + "zesty", + "zigzagged", + "zipfile", + "zipping", + "zippy", + "zips", + "zit", + "zodiac", + "zombie", + "zone", + "zoning", + "zookeeper", + "zoologist", + "zoology", + "zoom" ] diff --git a/packages/locale/src/countries.ts b/packages/locale/src/countries.ts index dc98ecae..ea987e55 100644 --- a/packages/locale/src/countries.ts +++ b/packages/locale/src/countries.ts @@ -235,5 +235,5 @@ export const countries = [ { code: "EH", name: "Western Sahara" }, { code: "YE", name: "Yemen" }, { code: "ZM", name: "Zambia" }, - { code: "ZW", name: "Zimbabwe" } + { code: "ZW", name: "Zimbabwe" }, ]; diff --git a/packages/locale/src/extract.ts b/packages/locale/src/extract.ts index 9f116a00..082c15d9 100644 --- a/packages/locale/src/extract.ts +++ b/packages/locale/src/extract.ts @@ -54,7 +54,7 @@ function extract(files: ts.SourceFile[]) { items.set(original, { original, translation: "", - sources: [] + sources: [], }); } @@ -63,7 +63,7 @@ function extract(files: ts.SourceFile[]) { const source: ItemSource = { file: file.fileName, line, - character + character, }; const comments = @@ -106,7 +106,7 @@ export function toYAML({ language, date, commit, items }: Translation) { commit: ${commit} `; - doc.contents = YAML.createNode(items.flatMap(item => [item.original, item.translation])) as any; + doc.contents = YAML.createNode(items.flatMap((item) => [item.original, item.translation])) as any; for (const [i, item] of items.entries()) { const node = (doc.contents as any).items[i * 2]; @@ -131,7 +131,7 @@ export function fromYAML(str: string, language: string): Translation { language, date: new Date(), commit: "", - items + items, }; } @@ -156,37 +156,35 @@ export function fromJSON(str: string, language: string) { const items = JSON.parse(str).map(([original, translation]: [string, string]) => ({ original, translation, - sources: [] + sources: [], })); return { language, date: new Date(), commit: "", - items + items, }; } export function fromSource(fileNames: string[], language: string): Translation { - const files = fileNames.map(path => + const files = fileNames.map((path) => ts.createSourceFile(path, readFileSync(resolve(path), "utf8"), ts.ScriptTarget.ES2017, false) ); - const commit = execSync("git rev-parse HEAD") - .toString() - .trim(); + const commit = execSync("git rev-parse HEAD").toString().trim(); const items = extract(files); return { language, commit, date: new Date(), - items + items, }; } export function merge(curr: Translation, prev: Translation) { for (const item of curr.items) { - const prevItemIndex = prev.items.findIndex(i => i.original === item.original); + const prevItemIndex = prev.items.findIndex((i) => i.original === item.original); if (prevItemIndex !== -1) { item.translation = prev.items[prevItemIndex].translation; prev.items.splice(prevItemIndex, 1); diff --git a/packages/locale/tsconfig.json b/packages/locale/tsconfig.json index 874fb4bd..6d52f723 100644 --- a/packages/locale/tsconfig.json +++ b/packages/locale/tsconfig.json @@ -2,9 +2,7 @@ "extends": "../../tsconfig.json", "compilerOptions": { "target": "es2017", - "lib": [ - "esnext" - ], + "lib": ["esnext"], "module": "commonjs", "declaration": false, "baseUrl": "." diff --git a/packages/pwa/package.json b/packages/pwa/package.json index 19768e73..0a299aac 100644 --- a/packages/pwa/package.json +++ b/packages/pwa/package.json @@ -1,51 +1,51 @@ { - "name": "@padloc/pwa", - "version": "4.0.0", - "author": "Martin Kleinschrodt ", - "license": "GPL-3.0", - "private": true, - "files": [ - "src", - "assets", - "tsconfig.json" - ], - "repository": { - "type": "git", - "url": "https://github.com/padloc/padloc.git", - "directory": "packages/pwa" - }, - "engines": { - "node": "16.13.1", - "npm": "8.2.0" - }, - "dependencies": { - "@padloc/app": "4.0.0", - "@padloc/core": "4.0.0" - }, - "devDependencies": { - "clean-webpack-plugin": "3.0.0", - "css-loader": "5.2.6", - "file-loader": "6.2.0", - "html-webpack-plugin": "5.3.1", - "http-server": "0.12.3", - "raw-loader": "4.0.2", - "sharp": "0.29.3", - "style-loader": "2.0.0", - "ts-loader": "9.2.2", - "ts-node": "10.0.0", - "typescript": "4.4.3", - "webpack": "5.52.0", - "webpack-cli": "4.8.0", - "webpack-dev-server": "4.2.1", - "webpack-pwa-manifest": "4.3.0", - "workbox-cli": "6.2.4", - "workbox-webpack-plugin": "6.4.2" - }, - "description": "Padloc Progressive Web App", - "scripts": { - "build": "webpack", - "dev": "webpack serve", - "start": "http-server ${PL_PWA_DIR:-dist} -s -p ${PL_PWA_PORT:-8080} --proxy ${PL_PWA_URL:-http://0.0.0.0:${PL_PWA_PORT:-8080}}?", - "build_and_start": "npm run build && npm start" - } + "name": "@padloc/pwa", + "version": "4.0.0", + "author": "Martin Kleinschrodt ", + "license": "GPL-3.0", + "private": true, + "files": [ + "src", + "assets", + "tsconfig.json" + ], + "repository": { + "type": "git", + "url": "https://github.com/padloc/padloc.git", + "directory": "packages/pwa" + }, + "engines": { + "node": "16.13.1", + "npm": "8.2.0" + }, + "dependencies": { + "@padloc/app": "4.0.0", + "@padloc/core": "4.0.0" + }, + "devDependencies": { + "clean-webpack-plugin": "3.0.0", + "css-loader": "5.2.6", + "file-loader": "6.2.0", + "html-webpack-plugin": "5.3.1", + "http-server": "0.12.3", + "raw-loader": "4.0.2", + "sharp": "0.29.3", + "style-loader": "2.0.0", + "ts-loader": "9.2.2", + "ts-node": "10.0.0", + "typescript": "4.4.3", + "webpack": "5.52.0", + "webpack-cli": "4.8.0", + "webpack-dev-server": "4.2.1", + "webpack-pwa-manifest": "4.3.0", + "workbox-cli": "6.2.4", + "workbox-webpack-plugin": "6.4.2" + }, + "description": "Padloc Progressive Web App", + "scripts": { + "build": "webpack", + "dev": "webpack serve", + "start": "http-server ${PL_PWA_DIR:-dist} -s -p ${PL_PWA_PORT:-8080} --proxy ${PL_PWA_URL:-http://0.0.0.0:${PL_PWA_PORT:-8080}}?", + "build_and_start": "npm run build && npm start" + } } diff --git a/packages/server/package.json b/packages/server/package.json index 4a31489a..9635eba3 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,63 +1,63 @@ { - "name": "@padloc/server", - "version": "3.1.3", - "description": "Padloc server component", - "private": true, - "files": [ - "src", - "tsconfig.json" - ], - "main": "index.js", - "author": "Martin Kleinschrodt ", - "license": "GPLv3", - "devDependencies": { - "@types/chai": "4.2.18", - "@types/mocha": "8.2.2", - "chai": "4.3.4", - "mocha": "8.4.0", - "ts-node-dev": "1.1.6" - }, - "dependencies": { - "@padloc/core": "4.0.0", - "@padloc/locale": "4.0.0", - "@aws-sdk/client-s3": "3.25.0", - "@aws-sdk/types": "3.25.0", - "@simplewebauthn/server": "4.0.0", - "@types/fs-extra": "9.0.11", - "@types/mixpanel": "2.14.3", - "@types/node": "15.6.1", - "@types/nodemailer": "6.4.2", - "@types/pg": "8.6.1", - "@types/stripe": "8.0.416", - "ansi-colors": "4.1.1", - "date-fns": "2.22.1", - "fs-extra": "10.0.0", - "geolite2-redist": "2.0.4", - "level": "7.0.0", - "maxmind": "4.3.2", - "mixpanel": "0.13.0", - "mongodb": "4.1.0", - "nodemailer": "6.6.1", - "pg": "8.7.1", - "stripe": "8.194.0", - "ts-node": "10.0.0", - "typescript": "4.4.3" - }, - "scripts": { - "start": "ts-node src/init.ts", - "start-dry": "ts-node src/init.ts --dryrun", - "repl": "ts-node src/init-repl-client.ts", - "dev": "ts-node-dev src/init.ts", - "dev-inspect": "node -r ts-node/register --inspect-brk --stack-trace-limit=1000 src/init.ts", - "test": "cd test && mocha -r ts-node/register *.ts --timeout 5000" - }, - "repository": { - "type": "git", - "url": "https://github.com/padloc/padloc.git", - "directory": "packages/server" - }, - "engines": { - "node": "16.13.1", - "npm": "8.2.0" - } + "name": "@padloc/server", + "version": "3.1.3", + "description": "Padloc server component", + "private": true, + "files": [ + "src", + "tsconfig.json" + ], + "main": "index.js", + "author": "Martin Kleinschrodt ", + "license": "GPLv3", + "devDependencies": { + "@types/chai": "4.2.18", + "@types/mocha": "8.2.2", + "chai": "4.3.4", + "mocha": "8.4.0", + "ts-node-dev": "1.1.6" + }, + "dependencies": { + "@padloc/core": "4.0.0", + "@padloc/locale": "4.0.0", + "@aws-sdk/client-s3": "3.25.0", + "@aws-sdk/types": "3.25.0", + "@simplewebauthn/server": "4.0.0", + "@types/fs-extra": "9.0.11", + "@types/mixpanel": "2.14.3", + "@types/node": "15.6.1", + "@types/nodemailer": "6.4.2", + "@types/pg": "8.6.1", + "@types/stripe": "8.0.416", + "ansi-colors": "4.1.1", + "date-fns": "2.22.1", + "fs-extra": "10.0.0", + "geolite2-redist": "2.0.4", + "level": "7.0.0", + "maxmind": "4.3.2", + "mixpanel": "0.13.0", + "mongodb": "4.1.0", + "nodemailer": "6.6.1", + "pg": "8.7.1", + "stripe": "8.194.0", + "ts-node": "10.0.0", + "typescript": "4.4.3" + }, + "scripts": { + "start": "ts-node src/init.ts", + "start-dry": "ts-node src/init.ts --dryrun", + "repl": "ts-node src/init-repl-client.ts", + "dev": "ts-node-dev src/init.ts", + "dev-inspect": "node -r ts-node/register --inspect-brk --stack-trace-limit=1000 src/init.ts", + "test": "cd test && mocha -r ts-node/register *.ts --timeout 5000" + }, + "repository": { + "type": "git", + "url": "https://github.com/padloc/padloc.git", + "directory": "packages/server" + }, + "engines": { + "node": "16.13.1", + "npm": "8.2.0" + } } diff --git a/packages/server/src/crypto/node.ts b/packages/server/src/crypto/node.ts index b8ceab97..a7433e7e 100644 --- a/packages/server/src/crypto/node.ts +++ b/packages/server/src/crypto/node.ts @@ -12,7 +12,7 @@ import { createCipheriv, createDecipheriv, publicEncrypt, - privateDecrypt + privateDecrypt, } from "crypto"; import { CryptoProvider, @@ -29,7 +29,7 @@ import { RSAEncryptionParams, HashParams, RSASigningParams, - PBKDF2Params + PBKDF2Params, } from "@padloc/core/src/crypto"; import { Err, ErrorCode } from "@padloc/core/src/error"; import { equalCT } from "@padloc/core/src/encoding"; @@ -80,12 +80,12 @@ export class NodeCryptoProvider implements CryptoProvider { ), publicKeyEncoding: { type: "spki", - format: "der" + format: "der", }, privateKeyEncoding: { type: "pkcs8", - format: "der" - } + format: "der", + }, } as any, (err, publicKey: Buffer, privateKey: Buffer) => { if (err) { @@ -93,7 +93,7 @@ export class NodeCryptoProvider implements CryptoProvider { } else { resolve({ privateKey: new Uint8Array(privateKey), - publicKey: new Uint8Array(publicKey) + publicKey: new Uint8Array(publicKey), }); } } @@ -205,7 +205,7 @@ export class NodeCryptoProvider implements CryptoProvider { const [alg, mode] = params.algorithm.toLowerCase().split("-"); const authTagLength = params.tagSize / 8; const cipher = createCipheriv(`${alg}-${params.keySize}-${mode}` as "aes-256-gcm", key, params.iv, { - authTagLength + authTagLength, } as any); cipher.setAAD(params.additionalData as Buffer); try { @@ -223,7 +223,7 @@ export class NodeCryptoProvider implements CryptoProvider { const tag = data.slice(tagPos); const cipher = createDecipheriv(`${alg}-${params.keySize}-${mode}` as "aes-256-gcm", key, params.iv, { - authTagLength + authTagLength, } as any); cipher.setAAD(params.additionalData as Buffer); cipher.setAuthTag(tag); @@ -242,7 +242,7 @@ export class NodeCryptoProvider implements CryptoProvider { key: Buffer.from(publicKey), format: "der", type: "spki", - oaepHash: hashToNode(params.hash) + oaepHash: hashToNode(params.hash), } as any, key ); @@ -259,7 +259,7 @@ export class NodeCryptoProvider implements CryptoProvider { key: Buffer.from(privateKey), format: "der", type: "pkcs8", - oaepHash: hashToNode(params.hash) + oaepHash: hashToNode(params.hash), } as any, key ); @@ -293,7 +293,7 @@ export class NodeCryptoProvider implements CryptoProvider { format: "der", dsaEncoding: "der", saltLength: params.saltLength, - padding: constants.RSA_PKCS1_PSS_PADDING + padding: constants.RSA_PKCS1_PSS_PADDING, }); return new Uint8Array(sig); @@ -309,7 +309,7 @@ export class NodeCryptoProvider implements CryptoProvider { format: "der", dsaEncoding: "der", saltLength: params.saltLength, - padding: constants.RSA_PKCS1_PSS_PADDING + padding: constants.RSA_PKCS1_PSS_PADDING, }, signature ); diff --git a/packages/server/src/legacy.ts b/packages/server/src/legacy.ts index 66bee0b6..99397a40 100644 --- a/packages/server/src/legacy.ts +++ b/packages/server/src/legacy.ts @@ -21,10 +21,10 @@ export class NodeLegacyServer implements LegacyServer { method: "GET", headers: { Authorization: `SkeletonKey ${email}:${this.config.key}`, - Accept: "application/vnd.padlock;version=1" - } + Accept: "application/vnd.padlock;version=1", + }, }, - res => { + (res) => { if (res.statusCode !== 200) { resolve(null); return; @@ -33,7 +33,7 @@ export class NodeLegacyServer implements LegacyServer { let data = ""; res.setEncoding("utf8"); - res.on("data", chunk => (data += chunk)); + res.on("data", (chunk) => (data += chunk)); res.on("end", () => { if (!data) { resolve(null); @@ -65,10 +65,10 @@ export class NodeLegacyServer implements LegacyServer { method: "POST", headers: { Authorization: `SkeletonKey ${email}:${this.config.key}`, - Accept: "application/vnd.padlock;version=1" - } + Accept: "application/vnd.padlock;version=1", + }, }, - res => { + (res) => { if (res.statusCode !== 200) { reject("Received status code " + res.statusCode); return; diff --git a/packages/server/src/provisioning/simple.ts b/packages/server/src/provisioning/simple.ts index 4c00fdaa..62ea04cd 100644 --- a/packages/server/src/provisioning/simple.ts +++ b/packages/server/src/provisioning/simple.ts @@ -34,7 +34,8 @@ export class DefaultAccountProvisioning Pick< AccountProvisioning, "status" | "statusLabel" | "statusMessage" | "actionUrl" | "actionLabel" | "quota" | "disableFeatures" - > { + > +{ @ConfigParam() status: ProvisioningStatus = ProvisioningStatus.Active; @@ -400,16 +401,8 @@ export class SimpleProvisioner implements Provisioner { } } - const { - accountId, - status, - statusLabel, - statusMessage, - actionUrl, - actionLabel, - scheduledUpdates, - metaData, - } = entry.toRaw(); + const { accountId, status, statusLabel, statusMessage, actionUrl, actionLabel, scheduledUpdates, metaData } = + entry.toRaw(); httpRes.statusCode = 200; httpRes.end( diff --git a/packages/tauri/package.json b/packages/tauri/package.json index efeaf19d..77f08b36 100644 --- a/packages/tauri/package.json +++ b/packages/tauri/package.json @@ -1,36 +1,36 @@ { - "name": "@padloc/tauri", - "version": "4.0.0", - "description": "Tauri Wrapper for packaging native apps", - "main": "index.js", - "scripts": { - "tauri": "tauri", - "build": "tauri build", - "dev": "tauri dev" - }, - "author": "", - "license": "ISC", - "devDependencies": { - "clean-webpack-plugin": "3.0.0", - "css-loader": "5.2.6", - "file-loader": "6.2.0", - "html-webpack-plugin": "5.3.1", - "style-loader": "2.0.0", - "ts-loader": "9.2.2", - "ts-node": "10.0.0", - "typescript": "4.3.2", - "webpack": "5.38.1", - "webpack-cli": "4.7.0", - "webpack-dev-server": "3.11.2", - "@tauri-apps/cli": "1.0.0-beta.10" - }, - "dependencies": { - "@padloc/app": "4.0.0", - "@padloc/core": "4.0.0", - "@tauri-apps/api": "1.0.0-beta.8" - }, - "engines": { - "node": "16.13.1", - "npm": "8.2.0" - } + "name": "@padloc/tauri", + "version": "4.0.0", + "description": "Tauri Wrapper for packaging native apps", + "main": "index.js", + "scripts": { + "tauri": "tauri", + "build": "tauri build", + "dev": "tauri dev" + }, + "author": "", + "license": "ISC", + "devDependencies": { + "clean-webpack-plugin": "3.0.0", + "css-loader": "5.2.6", + "file-loader": "6.2.0", + "html-webpack-plugin": "5.3.1", + "style-loader": "2.0.0", + "ts-loader": "9.2.2", + "ts-node": "10.0.0", + "typescript": "4.3.2", + "webpack": "5.38.1", + "webpack-cli": "4.7.0", + "webpack-dev-server": "3.11.2", + "@tauri-apps/cli": "1.0.0-beta.10" + }, + "dependencies": { + "@padloc/app": "4.0.0", + "@padloc/core": "4.0.0", + "@tauri-apps/api": "1.0.0-beta.8" + }, + "engines": { + "node": "16.13.1", + "npm": "8.2.0" + } } diff --git a/packages/tauri/src-tauri/tauri.conf.json b/packages/tauri/src-tauri/tauri.conf.json index 6dea6aae..f138051c 100644 --- a/packages/tauri/src-tauri/tauri.conf.json +++ b/packages/tauri/src-tauri/tauri.conf.json @@ -1,65 +1,61 @@ { - "package": { - "productName": "Padloc", - "version": "0.1.0" - }, - "build": { - "distDir": "../dist", - "devPath": "http://localhost:8080", - "beforeDevCommand": "webpack serve", - "beforeBuildCommand": "webpack" - }, - "tauri": { - "bundle": { - "active": true, - "targets": "all", - "identifier": "app.padloc", - "icon": [ - "icons/icon.png", - "icons/icon.icns", - "icons/icon.ico" - ], - "resources": [], - "externalBin": [], - "copyright": "", - "category": "DeveloperTool", - "shortDescription": "", - "longDescription": "", - "deb": { - "depends": [], - "useBootstrapper": false - }, - "macOS": { - "frameworks": [], - "minimumSystemVersion": "", - "useBootstrapper": false, - "exceptionDomain": "", - "signingIdentity": null, - "entitlements": null - }, - "windows": { - "certificateThumbprint": null, - "digestAlgorithm": "sha256", - "timestampUrl": "" - } + "package": { + "productName": "Padloc", + "version": "0.1.0" }, - "updater": { - "active": false + "build": { + "distDir": "../dist", + "devPath": "http://localhost:8080", + "beforeDevCommand": "webpack serve", + "beforeBuildCommand": "webpack" }, - "allowlist": { - "all": true - }, - "windows": [ - { - "title": "Padloc", - "width": 1024, - "height": 768, - "resizable": true, - "fullscreen": false - } - ], - "security": { - "csp": "default-src blob: data: filesystem: ws: http: https: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'" + "tauri": { + "bundle": { + "active": true, + "targets": "all", + "identifier": "app.padloc", + "icon": ["icons/icon.png", "icons/icon.icns", "icons/icon.ico"], + "resources": [], + "externalBin": [], + "copyright": "", + "category": "DeveloperTool", + "shortDescription": "", + "longDescription": "", + "deb": { + "depends": [], + "useBootstrapper": false + }, + "macOS": { + "frameworks": [], + "minimumSystemVersion": "", + "useBootstrapper": false, + "exceptionDomain": "", + "signingIdentity": null, + "entitlements": null + }, + "windows": { + "certificateThumbprint": null, + "digestAlgorithm": "sha256", + "timestampUrl": "" + } + }, + "updater": { + "active": false + }, + "allowlist": { + "all": true + }, + "windows": [ + { + "title": "Padloc", + "width": 1024, + "height": 768, + "resizable": true, + "fullscreen": false + } + ], + "security": { + "csp": "default-src blob: data: filesystem: ws: http: https: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'" + } } - } -} \ No newline at end of file +} diff --git a/packages/tauri/src/index.html b/packages/tauri/src/index.html index 4a14847f..f06707b5 100644 --- a/packages/tauri/src/index.html +++ b/packages/tauri/src/index.html @@ -58,7 +58,6 @@ rotate linear 1.2s infinite; } - diff --git a/packages/tauri/src/index.ts b/packages/tauri/src/index.ts index fa083dac..25b4eba1 100644 --- a/packages/tauri/src/index.ts +++ b/packages/tauri/src/index.ts @@ -14,7 +14,6 @@ function createApp() { await import("@padloc/app/src/elements/app"); - if (document.readyState === "loading") { document.addEventListener("DOMContentLoaded", createApp); } else {