mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Update eslint rules, add .prettierignore file, fix some formatting, and fix some bugs (#1756)
Update eslint rules, add .prettierignore file, fix some formatting, and fix some bugs
This commit is contained in:
parent
2ea0fe2b97
commit
f62c1d6a1f
57 changed files with 402 additions and 381 deletions
63
.eslintrc
63
.eslintrc
|
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
"extends": ["eslint-config-airbnb-base" ],
|
"extends": ["eslint-config-airbnb-base" ],
|
||||||
|
"ignorePatterns": ["**/*.min.js"],
|
||||||
"env": {
|
"env": {
|
||||||
"browser": true,
|
"browser": true,
|
||||||
"es6": true,
|
"es6": true,
|
||||||
|
|
@ -7,7 +8,7 @@
|
||||||
"webextensions": true
|
"webextensions": true
|
||||||
},
|
},
|
||||||
"parserOptions": {
|
"parserOptions": {
|
||||||
"ecmaVersion": 2017
|
"ecmaVersion": 2020
|
||||||
},
|
},
|
||||||
"rules": {
|
"rules": {
|
||||||
"array-bracket-spacing": ["error", "always"],
|
"array-bracket-spacing": ["error", "always"],
|
||||||
|
|
@ -24,7 +25,9 @@
|
||||||
"dot-notation": "off",
|
"dot-notation": "off",
|
||||||
"eqeqeq": "error",
|
"eqeqeq": "error",
|
||||||
"func-names": "off",
|
"func-names": "off",
|
||||||
|
"function-paren-newline": "off",
|
||||||
"guard-for-in": "off",
|
"guard-for-in": "off",
|
||||||
|
"implicit-arrow-linebreak": "off",
|
||||||
"indent": ["error", 4],
|
"indent": ["error", 4],
|
||||||
"linebreak-style": ["error", "unix"],
|
"linebreak-style": ["error", "unix"],
|
||||||
"lines-around-comment": "off",
|
"lines-around-comment": "off",
|
||||||
|
|
@ -35,9 +38,10 @@
|
||||||
"no-console": "off",
|
"no-console": "off",
|
||||||
"no-continue": "off",
|
"no-continue": "off",
|
||||||
"no-control-regex": "off",
|
"no-control-regex": "off",
|
||||||
"no-global-assign": "off",
|
|
||||||
"no-else-return": "off",
|
"no-else-return": "off",
|
||||||
|
"no-empty-function": ["error", { "allow": ["arrowFunctions", "methods", "asyncMethods"] }],
|
||||||
"no-extend-native": "off",
|
"no-extend-native": "off",
|
||||||
|
"no-global-assign": "off",
|
||||||
"no-lonely-if": "off",
|
"no-lonely-if": "off",
|
||||||
"no-loop-func": "off",
|
"no-loop-func": "off",
|
||||||
"no-mixed-operators": "off",
|
"no-mixed-operators": "off",
|
||||||
|
|
@ -50,20 +54,20 @@
|
||||||
"no-restricted-syntax": "off",
|
"no-restricted-syntax": "off",
|
||||||
"no-return-await": "off",
|
"no-return-await": "off",
|
||||||
"no-tabs": "warn",
|
"no-tabs": "warn",
|
||||||
|
"no-underscore-dangle": "off",
|
||||||
|
"no-unused-vars": ["warn", { "args": "none", "varsIgnorePattern": "[A-Z_]+|tr|[$]" }],
|
||||||
"no-use-before-define": "off",
|
"no-use-before-define": "off",
|
||||||
"no-useless-escape": "off",
|
"no-useless-escape": "off",
|
||||||
"no-useless-return": "off",
|
"no-useless-return": "off",
|
||||||
"no-var": "off",
|
"no-var": "off",
|
||||||
"no-underscore-dangle": "off",
|
|
||||||
"no-unused-vars": "warn",
|
|
||||||
"object-curly-spacing": ["warn", "always"],
|
"object-curly-spacing": ["warn", "always"],
|
||||||
"object-shorthand": "off",
|
"object-shorthand": "off",
|
||||||
"operator-linebreak": ["error", "before"],
|
"operator-linebreak": "off",
|
||||||
"quote-props": "off",
|
|
||||||
"quotes": ["error", "single"],
|
|
||||||
"prefer-arrow-callback": "off",
|
"prefer-arrow-callback": "off",
|
||||||
"prefer-destructuring": "off",
|
"prefer-destructuring": "off",
|
||||||
"prefer-template": "off",
|
"prefer-template": "off",
|
||||||
|
"quote-props": "off",
|
||||||
|
"quotes": ["error", "single", { "avoidEscape": true }],
|
||||||
"semi": ["error", "always"],
|
"semi": ["error", "always"],
|
||||||
"space-before-blocks": "warn",
|
"space-before-blocks": "warn",
|
||||||
"space-before-function-paren": "off",
|
"space-before-function-paren": "off",
|
||||||
|
|
@ -77,33 +81,49 @@
|
||||||
"_called": true,
|
"_called": true,
|
||||||
"_f": true,
|
"_f": true,
|
||||||
"acceptedOTPFields": true,
|
"acceptedOTPFields": true,
|
||||||
|
"assertInputFields": true,
|
||||||
|
"assertPasswordChangeFields": true,
|
||||||
|
"assertRegex": true,
|
||||||
|
"assertSearchField": true,
|
||||||
|
"assertSearchForm": true,
|
||||||
|
"assertTOTPField": true,
|
||||||
"AssociatedAction": true,
|
"AssociatedAction": true,
|
||||||
"Autocomplete": true,
|
"Autocomplete": true,
|
||||||
|
"bootstrap": true,
|
||||||
"browser": true,
|
"browser": true,
|
||||||
"browserAction": true,
|
"browserAction": true,
|
||||||
|
"CHECK_UPDATE_NEVER": true,
|
||||||
|
"CHECK_UPDATE_ONE_MONTH": true,
|
||||||
|
"CHECK_UPDATE_ONE_WEEK": true,
|
||||||
|
"CHECK_UPDATE_THREE_DAYS": true,
|
||||||
|
"createResult": true,
|
||||||
"createStylesheet": true,
|
"createStylesheet": true,
|
||||||
"DatabaseState": true,
|
"DatabaseState": true,
|
||||||
|
"debugLogMessage": true,
|
||||||
"EXTENSION_NAME": true,
|
"EXTENSION_NAME": true,
|
||||||
|
"getTopLevelDomainFromUrl": true,
|
||||||
"httpAuth": true,
|
"httpAuth": true,
|
||||||
"Icon": true,
|
"Icon": true,
|
||||||
"isEdge": true,
|
|
||||||
"isFirefox": true,
|
|
||||||
"IGNORE_AUTOSUBMIT": true,
|
"IGNORE_AUTOSUBMIT": true,
|
||||||
"IGNORE_FULL": true,
|
"IGNORE_FULL": true,
|
||||||
"IGNORE_NORMAL": true,
|
"IGNORE_NORMAL": true,
|
||||||
"IGNORE_NOTHING": true,
|
"IGNORE_NOTHING": true,
|
||||||
"initColorTheme": true,
|
"initColorTheme": true,
|
||||||
|
"isEdge": true,
|
||||||
|
"isFirefox": true,
|
||||||
"jQuery": true,
|
"jQuery": true,
|
||||||
"keepass": true,
|
"keepass": true,
|
||||||
"keepassClient": true,
|
"keepassClient": true,
|
||||||
"kpxc": true,
|
|
||||||
"kpActions": true,
|
"kpActions": true,
|
||||||
|
"kpErrors": true,
|
||||||
|
"kpxc": true,
|
||||||
|
"kpxcAssert": true,
|
||||||
"kpxcBanner": true,
|
"kpxcBanner": true,
|
||||||
"kpxcCustomLoginFieldsBanner": true,
|
"kpxcCustomLoginFieldsBanner": true,
|
||||||
|
"kpxcEvent": true,
|
||||||
"kpxcFields": true,
|
"kpxcFields": true,
|
||||||
"kpxcFill": true,
|
"kpxcFill": true,
|
||||||
"kpxcForm": true,
|
"kpxcForm": true,
|
||||||
"kpxcEvent": true,
|
|
||||||
"kpxcIcons": true,
|
"kpxcIcons": true,
|
||||||
"kpxcObserverHelper": true,
|
"kpxcObserverHelper": true,
|
||||||
"kpxcPasswordDialog": true,
|
"kpxcPasswordDialog": true,
|
||||||
|
|
@ -111,12 +131,17 @@
|
||||||
"kpxcSites": true,
|
"kpxcSites": true,
|
||||||
"kpxcTOTPAutocomplete": true,
|
"kpxcTOTPAutocomplete": true,
|
||||||
"kpxcTOTPIcons": true,
|
"kpxcTOTPIcons": true,
|
||||||
"kpxcUserAutocomplete": true,
|
|
||||||
"kpxcUsernameIcons": true,
|
|
||||||
"kpxcUI": true,
|
"kpxcUI": true,
|
||||||
|
"kpxcUserAutocomplete": true,
|
||||||
"kpxcUsernameField": true,
|
"kpxcUsernameField": true,
|
||||||
|
"kpxcUsernameIcons": true,
|
||||||
|
"logDebug": true,
|
||||||
|
"logError": true,
|
||||||
"ManualFill": true,
|
"ManualFill": true,
|
||||||
|
"MAX_AUTOCOMPLETE_NAME_LEN": true,
|
||||||
"MAX_OPACITY": true,
|
"MAX_OPACITY": true,
|
||||||
|
"MAX_TOTP_INPUT_LENGTH": true,
|
||||||
|
"menuContexts": true,
|
||||||
"MIN_INPUT_FIELD_OFFSET_WIDTH": true,
|
"MIN_INPUT_FIELD_OFFSET_WIDTH": true,
|
||||||
"MIN_INPUT_FIELD_WIDTH_PX": true,
|
"MIN_INPUT_FIELD_WIDTH_PX": true,
|
||||||
"MIN_OPACITY": true,
|
"MIN_OPACITY": true,
|
||||||
|
|
@ -124,13 +149,21 @@
|
||||||
"nacl": true,
|
"nacl": true,
|
||||||
"page": true,
|
"page": true,
|
||||||
"Pixels": true,
|
"Pixels": true,
|
||||||
|
"PREDEFINED_SITELIST": true,
|
||||||
|
"resizePopup": true,
|
||||||
"sendMessage": true,
|
"sendMessage": true,
|
||||||
"showNotification": true,
|
"showNotification": true,
|
||||||
"siteMatch": true,
|
"siteMatch": true,
|
||||||
"slashNeededForUrl": true,
|
"slashNeededForUrl": true,
|
||||||
|
"SORT_BY_GROUP_AND_TITLE": true,
|
||||||
|
"SORT_BY_GROUP_AND_USERNAME": true,
|
||||||
|
"SORT_BY_MATCHING_CREDENTIALS_SETTING": true,
|
||||||
|
"SORT_BY_RELEVANT_ENTRY": true,
|
||||||
|
"SORT_BY_TITLE": true,
|
||||||
|
"SORT_BY_USERNAME": true,
|
||||||
"statusResponse": true,
|
"statusResponse": true,
|
||||||
|
"Tests": true,
|
||||||
"tr": true,
|
"tr": true,
|
||||||
"trimURL": true,
|
"trimURL": true
|
||||||
"PREDEFINED_SITELIST": true
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
.prettierignore
Normal file
6
.prettierignore
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
# This repository does not use prettier for formatting but if you want to use it for testing then you can comment out the following line:
|
||||||
|
*
|
||||||
|
|
||||||
|
# Should never format these files:
|
||||||
|
*.min.js
|
||||||
|
*.min.css
|
||||||
6
.prettierrc
Normal file
6
.prettierrc
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"singleQuote": true,
|
||||||
|
"trailingComma": "all",
|
||||||
|
"arrowParens": "avoid",
|
||||||
|
"tabWidth": 4
|
||||||
|
}
|
||||||
|
|
@ -32,8 +32,8 @@
|
||||||
"description": "Context menu parent item for filling a custom attribute."
|
"description": "Context menu parent item for filling a custom attribute."
|
||||||
},
|
},
|
||||||
"contextMenuRequestGlobalAutoType": {
|
"contextMenuRequestGlobalAutoType": {
|
||||||
"message": "",
|
"message": "",
|
||||||
"description": "Global Auto-Type shortcut text."
|
"description": "Global Auto-Type shortcut text."
|
||||||
},
|
},
|
||||||
"multipleCredentialsDetected": {
|
"multipleCredentialsDetected": {
|
||||||
"message": "Открито е HTTP удостоверяване с множество идентификационни данни. Кликнете върху иконата на разширението, за да изберете правилните.",
|
"message": "Открито е HTTP удостоверяване с множество идентификационни данни. Кликнете върху иконата на разширението, за да изберете правилните.",
|
||||||
|
|
@ -827,11 +827,11 @@
|
||||||
"message": "Комбинацията за $1 е променена успешно.",
|
"message": "Комбинацията за $1 е променена успешно.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Комбинацията за $1 е нулирана.",
|
"message": "Комбинацията за $1 е нулирана.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Грешка: Комбинацията за $1 не е променена!",
|
"message": "Грешка: Комбинацията за $1 не е променена!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -891,11 +891,11 @@
|
||||||
"message": "Адрес на страница",
|
"message": "Адрес на страница",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Игнориране",
|
"message": "Игнориране",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Откриване само по потребителско име",
|
"message": "Откриване само по потребителско име",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -823,11 +823,11 @@
|
||||||
"message": "Klávesová zkratka $1 byla úspěšně změněna.",
|
"message": "Klávesová zkratka $1 byla úspěšně změněna.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Klávesová zkratka pro $1 byla resetována.",
|
"message": "Klávesová zkratka pro $1 byla resetována.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Chyba: Klávesová zkratka pro $1 nebyla změněna!",
|
"message": "Chyba: Klávesová zkratka pro $1 nebyla změněna!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -887,11 +887,11 @@
|
||||||
"message": "URL adresa stránky",
|
"message": "URL adresa stránky",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Ignorovat",
|
"message": "Ignorovat",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Zjišťování pouze uživatelského jména",
|
"message": "Zjišťování pouze uživatelského jména",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"message": " Abbrechen",
|
"message": " Abbrechen",
|
||||||
"description": "Cancel button text when removing database key or custom login fields."
|
"description": "Cancel button text when removing database key or custom login fields."
|
||||||
},
|
},
|
||||||
"optionsButtonReset": {
|
"optionsButtonReset": {
|
||||||
"message": "Zurücksetzen",
|
"message": "Zurücksetzen",
|
||||||
"description": "Reset button text for keyboard shortcuts."
|
"description": "Reset button text for keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -639,11 +639,11 @@
|
||||||
"message": "Das Tastaturkürzel für $1 wurde geändert.",
|
"message": "Das Tastaturkürzel für $1 wurde geändert.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Das Tastaturkürzel für $1 wurde auf Standard zurückgesetzt.",
|
"message": "Das Tastaturkürzel für $1 wurde auf Standard zurückgesetzt.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Fehler: Tastaturkürzel für $1 wurde nicht geändert!",
|
"message": "Fehler: Tastaturkürzel für $1 wurde nicht geändert!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -691,11 +691,11 @@
|
||||||
"message": "Seiten-URL",
|
"message": "Seiten-URL",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Ignorieren",
|
"message": "Ignorieren",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Reine Benutzernamenerkennung",
|
"message": "Reine Benutzernamenerkennung",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -823,11 +823,11 @@
|
||||||
"message": "Η συντόμευση για $1 έχει αλλάξει με επιτυχία.",
|
"message": "Η συντόμευση για $1 έχει αλλάξει με επιτυχία.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Έγινε επαναφορά της συντόμευσης για $1",
|
"message": "Έγινε επαναφορά της συντόμευσης για $1",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Σφάλμα: Η συντόμευση για το $1 δεν έχει αλλάξει!",
|
"message": "Σφάλμα: Η συντόμευση για το $1 δεν έχει αλλάξει!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -887,11 +887,11 @@
|
||||||
"message": "Διεύθυνση URL σελίδας",
|
"message": "Διεύθυνση URL σελίδας",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Αγνοήστε",
|
"message": "Αγνοήστε",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Ανίχνευση μόνο-όνομα χρήστη",
|
"message": "Ανίχνευση μόνο-όνομα χρήστη",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,8 @@
|
||||||
"description": "Context menu parent item for filling a custom attribute."
|
"description": "Context menu parent item for filling a custom attribute."
|
||||||
},
|
},
|
||||||
"contextMenuRequestGlobalAutoType": {
|
"contextMenuRequestGlobalAutoType": {
|
||||||
"message": "Request Global Auto-Type",
|
"message": "Request Global Auto-Type",
|
||||||
"description": "Global Auto-Type shortcut text."
|
"description": "Global Auto-Type shortcut text."
|
||||||
},
|
},
|
||||||
"multipleCredentialsDetected": {
|
"multipleCredentialsDetected": {
|
||||||
"message": "HTTP authentication with multiple credentials detected. Click on the extension icon to choose the correct one.",
|
"message": "HTTP authentication with multiple credentials detected. Click on the extension icon to choose the correct one.",
|
||||||
|
|
@ -252,9 +252,9 @@
|
||||||
"description": "Help text when choosing custom login fields."
|
"description": "Help text when choosing custom login fields."
|
||||||
},
|
},
|
||||||
"defineChooseCustomLoginFieldText": {
|
"defineChooseCustomLoginFieldText": {
|
||||||
"message": "Choose a Custom Login Field",
|
"message": "Choose a Custom Login Field",
|
||||||
"description": "Help text for Custom Login Field banner."
|
"description": "Help text for Custom Login Field banner."
|
||||||
},
|
},
|
||||||
"username": {
|
"username": {
|
||||||
"message": "Username",
|
"message": "Username",
|
||||||
"description": "General text for username."
|
"description": "General text for username."
|
||||||
|
|
@ -264,8 +264,8 @@
|
||||||
"description": "General text for password."
|
"description": "General text for password."
|
||||||
},
|
},
|
||||||
"stringFields": {
|
"stringFields": {
|
||||||
"message": "String Fields",
|
"message": "String Fields",
|
||||||
"description": "General text for a String Fields."
|
"description": "General text for a String Fields."
|
||||||
},
|
},
|
||||||
"credentialsNoUsername": {
|
"credentialsNoUsername": {
|
||||||
"message": "- no username -",
|
"message": "- no username -",
|
||||||
|
|
@ -364,16 +364,16 @@
|
||||||
"description": "Popup Getting Started Guide link text."
|
"description": "Popup Getting Started Guide link text."
|
||||||
},
|
},
|
||||||
"popupAlertHide": {
|
"popupAlertHide": {
|
||||||
"message": "Hide and don't show again.",
|
"message": "Hide and don't show again.",
|
||||||
"description": "Hide alert close button title."
|
"description": "Hide alert close button title."
|
||||||
},
|
},
|
||||||
"popupTroubleshootingText": {
|
"popupTroubleshootingText": {
|
||||||
"message": "Cannot connect to KeePassXC? Maybe our wiki page could help.",
|
"message": "Cannot connect to KeePassXC? Maybe our wiki page could help.",
|
||||||
"description": "Popup information message about Troubleshooting Guide."
|
"description": "Popup information message about Troubleshooting Guide."
|
||||||
},
|
},
|
||||||
"popupTroubleshootingLinkText": {
|
"popupTroubleshootingLinkText": {
|
||||||
"message": "Troubleshooting Guide",
|
"message": "Troubleshooting Guide",
|
||||||
"description": "Popup Troubleshooting Guide link text."
|
"description": "Popup Troubleshooting Guide link text."
|
||||||
},
|
},
|
||||||
"popupCheckingStatus": {
|
"popupCheckingStatus": {
|
||||||
"message": "Checking status...",
|
"message": "Checking status...",
|
||||||
|
|
@ -879,11 +879,11 @@
|
||||||
"message": "Shortcut for $1 has been successfully changed.",
|
"message": "Shortcut for $1 has been successfully changed.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Shortcut for $1 has been reset.",
|
"message": "Shortcut for $1 has been reset.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Error: Shortcut for $1 has not been changed!",
|
"message": "Error: Shortcut for $1 has not been changed!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -943,11 +943,11 @@
|
||||||
"message": "Page URL",
|
"message": "Page URL",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Ignore",
|
"message": "Ignore",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Username-only Detection",
|
"message": "Username-only Detection",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -823,11 +823,11 @@
|
||||||
"message": "El acceso directo para $1 ha sido cambiado con éxito.",
|
"message": "El acceso directo para $1 ha sido cambiado con éxito.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Acceso directo para $1 se ha restablecido.",
|
"message": "Acceso directo para $1 se ha restablecido.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Error: Acceso directo para $1 no ha cambiado!",
|
"message": "Error: Acceso directo para $1 no ha cambiado!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -887,11 +887,11 @@
|
||||||
"message": "URL de la página",
|
"message": "URL de la página",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Ignorar",
|
"message": "Ignorar",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Detección por nombre de usuario únicamente",
|
"message": "Detección por nombre de usuario únicamente",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,8 @@
|
||||||
"description": "Context menu parent item for filling a custom attribute."
|
"description": "Context menu parent item for filling a custom attribute."
|
||||||
},
|
},
|
||||||
"contextMenuRequestGlobalAutoType": {
|
"contextMenuRequestGlobalAutoType": {
|
||||||
"message": "",
|
"message": "",
|
||||||
"description": "Global Auto-Type shortcut text."
|
"description": "Global Auto-Type shortcut text."
|
||||||
},
|
},
|
||||||
"multipleCredentialsDetected": {
|
"multipleCredentialsDetected": {
|
||||||
"message": "",
|
"message": "",
|
||||||
|
|
@ -827,11 +827,11 @@
|
||||||
"message": "Otsetee $1 jaoks on edukalt muudetud.",
|
"message": "Otsetee $1 jaoks on edukalt muudetud.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Otsetee $1 jaoks on lähtestatud.",
|
"message": "Otsetee $1 jaoks on lähtestatud.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Tõrge: Otseteed $1 jaoks pole muudetud!",
|
"message": "Tõrge: Otseteed $1 jaoks pole muudetud!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -891,11 +891,11 @@
|
||||||
"message": "Lehe URL",
|
"message": "Lehe URL",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Eiramine",
|
"message": "Eiramine",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Ainult kasutajanime tuvastus",
|
"message": "Ainult kasutajanime tuvastus",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"message": "Peruuta",
|
"message": "Peruuta",
|
||||||
"description": "Cancel button text when removing database key or custom login fields."
|
"description": "Cancel button text when removing database key or custom login fields."
|
||||||
},
|
},
|
||||||
"optionsButtonReset": {
|
"optionsButtonReset": {
|
||||||
"message": "Palauta oletus",
|
"message": "Palauta oletus",
|
||||||
"description": "Reset button text for keyboard shortcuts."
|
"description": "Reset button text for keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -639,11 +639,11 @@
|
||||||
"message": "Näppäinoikotie toiminnolle $1 on muutettu.",
|
"message": "Näppäinoikotie toiminnolle $1 on muutettu.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Näppäinoikotie toiminnolle $1 on palautettu oletusasetukseen.",
|
"message": "Näppäinoikotie toiminnolle $1 on palautettu oletusasetukseen.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Virhe: Näppäinoikotietä toiminnolle $1 ei pystytty muuttamaan!",
|
"message": "Virhe: Näppäinoikotietä toiminnolle $1 ei pystytty muuttamaan!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -691,11 +691,11 @@
|
||||||
"message": "Sivun URL",
|
"message": "Sivun URL",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Älä huomioi",
|
"message": "Älä huomioi",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Pelkän käyttäjänimikentän tunnistus",
|
"message": "Pelkän käyttäjänimikentän tunnistus",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"message": " Annuler",
|
"message": " Annuler",
|
||||||
"description": "Cancel button text when removing database key or custom login fields."
|
"description": "Cancel button text when removing database key or custom login fields."
|
||||||
},
|
},
|
||||||
"optionsButtonReset": {
|
"optionsButtonReset": {
|
||||||
"message": "Réinitialiser",
|
"message": "Réinitialiser",
|
||||||
"description": "Reset button text for keyboard shortcuts."
|
"description": "Reset button text for keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -639,11 +639,11 @@
|
||||||
"message": "Le raccourci pour $1 à été modifié avec succès.",
|
"message": "Le raccourci pour $1 à été modifié avec succès.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Le raccourci pour $1 à été réinitialisé.",
|
"message": "Le raccourci pour $1 à été réinitialisé.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Erreur : Le raccourci pour $1 n'a pas été modifié!",
|
"message": "Erreur : Le raccourci pour $1 n'a pas été modifié!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -691,11 +691,11 @@
|
||||||
"message": "URL de la page",
|
"message": "URL de la page",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Ignorer",
|
"message": "Ignorer",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Détection des noms d'utilisateurs uniquement",
|
"message": "Détection des noms d'utilisateurs uniquement",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,8 @@
|
||||||
"description": "Context menu parent item for filling a custom attribute."
|
"description": "Context menu parent item for filling a custom attribute."
|
||||||
},
|
},
|
||||||
"contextMenuRequestGlobalAutoType": {
|
"contextMenuRequestGlobalAutoType": {
|
||||||
"message": "בקשת הקלדה־אוטומטית כללית",
|
"message": "בקשת הקלדה־אוטומטית כללית",
|
||||||
"description": "Global Auto-Type shortcut text."
|
"description": "Global Auto-Type shortcut text."
|
||||||
},
|
},
|
||||||
"multipleCredentialsDetected": {
|
"multipleCredentialsDetected": {
|
||||||
"message": "זוהה אימות HTTP עם אישורים מרובים. נא להקיש על סמל ההרחבה כדי לבחור את הסמל הנכון.",
|
"message": "זוהה אימות HTTP עם אישורים מרובים. נא להקיש על סמל ההרחבה כדי לבחור את הסמל הנכון.",
|
||||||
|
|
@ -843,11 +843,11 @@
|
||||||
"message": "קיצור הדרך ל־$1 השתנה בהצלחה.",
|
"message": "קיצור הדרך ל־$1 השתנה בהצלחה.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "קיצור הדרך ל־$1 אופס.",
|
"message": "קיצור הדרך ל־$1 אופס.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "שגיאה: קיצור הדרך ל־$1 לא השתנה!",
|
"message": "שגיאה: קיצור הדרך ל־$1 לא השתנה!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -907,11 +907,11 @@
|
||||||
"message": "מען URL עמוד",
|
"message": "מען URL עמוד",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "להתעלם",
|
"message": "להתעלם",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "זיהוי שמות משתמשים בלבד",
|
"message": "זיהוי שמות משתמשים בלבד",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"message": "Mégse",
|
"message": "Mégse",
|
||||||
"description": "Cancel button text when removing database key or custom login fields."
|
"description": "Cancel button text when removing database key or custom login fields."
|
||||||
},
|
},
|
||||||
"optionsButtonReset": {
|
"optionsButtonReset": {
|
||||||
"message": "Alapállapot",
|
"message": "Alapállapot",
|
||||||
"description": "Reset button text for keyboard shortcuts."
|
"description": "Reset button text for keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -639,11 +639,11 @@
|
||||||
"message": "A funkcióhoz tartozó gyorsbillentyű sikeresen megváltozott: $1.",
|
"message": "A funkcióhoz tartozó gyorsbillentyű sikeresen megváltozott: $1.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "A funkcióhoz tartozó gyorsbillentyű alapállapotba lett hozva:$1.",
|
"message": "A funkcióhoz tartozó gyorsbillentyű alapállapotba lett hozva:$1.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Hiba: A funkcióhoz tartozó gyorsbillentyű nem változott: $1.",
|
"message": "Hiba: A funkcióhoz tartozó gyorsbillentyű nem változott: $1.",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -691,11 +691,11 @@
|
||||||
"message": "Oldal URL",
|
"message": "Oldal URL",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Mellőzés",
|
"message": "Mellőzés",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Csak felhasználónév felismerés",
|
"message": "Csak felhasználónév felismerés",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -823,11 +823,11 @@
|
||||||
"message": "La scorciatoia per $1 è stata modificata con successo.",
|
"message": "La scorciatoia per $1 è stata modificata con successo.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "La scorciatoia per $1 è stata reimpostata.",
|
"message": "La scorciatoia per $1 è stata reimpostata.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Errore: la scorciatoia per $1 non è stata modificata!",
|
"message": "Errore: la scorciatoia per $1 non è stata modificata!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -887,11 +887,11 @@
|
||||||
"message": "URL della pagina",
|
"message": "URL della pagina",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Ignora",
|
"message": "Ignora",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Rilevamento solo del nome utente",
|
"message": "Rilevamento solo del nome utente",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"message": "キャンセル",
|
"message": "キャンセル",
|
||||||
"description": "Cancel button text when removing database key or custom login fields."
|
"description": "Cancel button text when removing database key or custom login fields."
|
||||||
},
|
},
|
||||||
"optionsButtonReset": {
|
"optionsButtonReset": {
|
||||||
"message": "元に戻す",
|
"message": "元に戻す",
|
||||||
"description": "Reset button text for keyboard shortcuts."
|
"description": "Reset button text for keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -639,11 +639,11 @@
|
||||||
"message": "ショートカット ($1) が正常に変更されました。",
|
"message": "ショートカット ($1) が正常に変更されました。",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "ショートカット ($1) がリセットされました。",
|
"message": "ショートカット ($1) がリセットされました。",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "エラー: ショートカット ($1) は変更されていません。",
|
"message": "エラー: ショートカット ($1) は変更されていません。",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -691,11 +691,11 @@
|
||||||
"message": "ページの URL",
|
"message": "ページの URL",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "無視",
|
"message": "無視",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "ユーザー名のみ検出",
|
"message": "ユーザー名のみ検出",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"message": "취소",
|
"message": "취소",
|
||||||
"description": "Cancel button text when removing database key or custom login fields."
|
"description": "Cancel button text when removing database key or custom login fields."
|
||||||
},
|
},
|
||||||
"optionsButtonReset": {
|
"optionsButtonReset": {
|
||||||
"message": "초기화",
|
"message": "초기화",
|
||||||
"description": "Reset button text for keyboard shortcuts."
|
"description": "Reset button text for keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -639,11 +639,11 @@
|
||||||
"message": "$1의 단축키가 변경되었습니다.",
|
"message": "$1의 단축키가 변경되었습니다.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "$1의 단축키를 초기화했습니다.",
|
"message": "$1의 단축키를 초기화했습니다.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "오류: $1의 단축키가 변경되지 않았습니다!",
|
"message": "오류: $1의 단축키가 변경되지 않았습니다!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -691,11 +691,11 @@
|
||||||
"message": "페이지 URL",
|
"message": "페이지 URL",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "무시",
|
"message": "무시",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "사용자 이름만 감지",
|
"message": "사용자 이름만 감지",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"message": "Cancella",
|
"message": "Cancella",
|
||||||
"description": "Cancel button text when removing database key or custom login fields."
|
"description": "Cancel button text when removing database key or custom login fields."
|
||||||
},
|
},
|
||||||
"optionsButtonReset": {
|
"optionsButtonReset": {
|
||||||
"message": "Reimpone",
|
"message": "Reimpone",
|
||||||
"description": "Reset button text for keyboard shortcuts."
|
"description": "Reset button text for keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -639,11 +639,11 @@
|
||||||
"message": "Excurtiatus pro $1 sine errore mutatus est.",
|
"message": "Excurtiatus pro $1 sine errore mutatus est.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Excurtiatus for $1 reimpositus est.",
|
"message": "Excurtiatus for $1 reimpositus est.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Error: Excurtiatus pro $1 mutatus non est!",
|
"message": "Error: Excurtiatus pro $1 mutatus non est!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -691,11 +691,11 @@
|
||||||
"message": "Paginae URL",
|
"message": "Paginae URL",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Praetere",
|
"message": "Praetere",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Detectio nominis usorii tantum",
|
"message": "Detectio nominis usorii tantum",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,8 @@
|
||||||
"description": "Context menu parent item for filling a custom attribute."
|
"description": "Context menu parent item for filling a custom attribute."
|
||||||
},
|
},
|
||||||
"contextMenuRequestGlobalAutoType": {
|
"contextMenuRequestGlobalAutoType": {
|
||||||
"message": "ကမ္ဘာသုံး အလိုအလျောက်စာရိုက်ခြင်းကို တောင်းဆိုရန်",
|
"message": "ကမ္ဘာသုံး အလိုအလျောက်စာရိုက်ခြင်းကို တောင်းဆိုရန်",
|
||||||
"description": "Global Auto-Type shortcut text."
|
"description": "Global Auto-Type shortcut text."
|
||||||
},
|
},
|
||||||
"multipleCredentialsDetected": {
|
"multipleCredentialsDetected": {
|
||||||
"message": "အထောက်အထားများစွာဖြင့် HTTP စစ်မှန်ကြောင်းအတည်ပြုခြင်းကို တွေ့ရှိထားသည်။ မှန်ကန်သော အထောက်အထားကိုရွေးရန် အဆက်အိုင်ကွန်ပေါ်တွင် နှိပ်ပါ။",
|
"message": "အထောက်အထားများစွာဖြင့် HTTP စစ်မှန်ကြောင်းအတည်ပြုခြင်းကို တွေ့ရှိထားသည်။ မှန်ကန်သော အထောက်အထားကိုရွေးရန် အဆက်အိုင်ကွန်ပေါ်တွင် နှိပ်ပါ။",
|
||||||
|
|
@ -827,11 +827,11 @@
|
||||||
"message": "$1 အတွက် ရှော့(တ်)ကတ်ကို အောင်မြင်စွာ ပြောင်းပြီးပါပြီ။",
|
"message": "$1 အတွက် ရှော့(တ်)ကတ်ကို အောင်မြင်စွာ ပြောင်းပြီးပါပြီ။",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "$1 အတွက် ရှော့(တ်)ကတ်ကို ပြန်လည် သတ်မှတ်ပြီးပါပြီ။",
|
"message": "$1 အတွက် ရှော့(တ်)ကတ်ကို ပြန်လည် သတ်မှတ်ပြီးပါပြီ။",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "ပြဿနာ - $1 အတွက် ရှော့(တ်)ကတ်ကို မပြောင်းရသေးပါ။",
|
"message": "ပြဿနာ - $1 အတွက် ရှော့(တ်)ကတ်ကို မပြောင်းရသေးပါ။",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -891,11 +891,11 @@
|
||||||
"message": "စာမျက်နှာ URL",
|
"message": "စာမျက်နှာ URL",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "လျစ်လျူရှုရန်",
|
"message": "လျစ်လျူရှုရန်",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "အသုံးပြုသူအမည် သီးသန့် ရှာတွေ့ခြင်း",
|
"message": "အသုံးပြုသူအမည် သီးသန့် ရှာတွေ့ခြင်း",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,8 @@
|
||||||
"description": "Context menu parent item for filling a custom attribute."
|
"description": "Context menu parent item for filling a custom attribute."
|
||||||
},
|
},
|
||||||
"contextMenuRequestGlobalAutoType": {
|
"contextMenuRequestGlobalAutoType": {
|
||||||
"message": "",
|
"message": "",
|
||||||
"description": "Global Auto-Type shortcut text."
|
"description": "Global Auto-Type shortcut text."
|
||||||
},
|
},
|
||||||
"multipleCredentialsDetected": {
|
"multipleCredentialsDetected": {
|
||||||
"message": "HTTP-authenticatie met meerdere inloggegevens gedetecteerd. Klik op het extensiepictogram om de juiste te kiezen.",
|
"message": "HTTP-authenticatie met meerdere inloggegevens gedetecteerd. Klik op het extensiepictogram om de juiste te kiezen.",
|
||||||
|
|
@ -827,11 +827,11 @@
|
||||||
"message": "Sneltoets voor $1 is veranderd.",
|
"message": "Sneltoets voor $1 is veranderd.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Sneltoets voor $1 is hersteld.",
|
"message": "Sneltoets voor $1 is hersteld.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Fout: Sneltoets voor $1 is niet veranderd!",
|
"message": "Fout: Sneltoets voor $1 is niet veranderd!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -891,11 +891,11 @@
|
||||||
"message": "Pagina-URL",
|
"message": "Pagina-URL",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Negeren",
|
"message": "Negeren",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Alleen-gebruikersnaam-detectie",
|
"message": "Alleen-gebruikersnaam-detectie",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"message": "Annuleren",
|
"message": "Annuleren",
|
||||||
"description": "Cancel button text when removing database key or custom login fields."
|
"description": "Cancel button text when removing database key or custom login fields."
|
||||||
},
|
},
|
||||||
"optionsButtonReset": {
|
"optionsButtonReset": {
|
||||||
"message": "Terugzetten",
|
"message": "Terugzetten",
|
||||||
"description": "Reset button text for keyboard shortcuts."
|
"description": "Reset button text for keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -639,11 +639,11 @@
|
||||||
"message": "Sneltoets voor $1 is veranderd.",
|
"message": "Sneltoets voor $1 is veranderd.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Sneltoets voor $1 is hersteld.",
|
"message": "Sneltoets voor $1 is hersteld.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Fout: Sneltoets voor $1 is niet veranderd!",
|
"message": "Fout: Sneltoets voor $1 is niet veranderd!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -691,11 +691,11 @@
|
||||||
"message": "Pagina-URL",
|
"message": "Pagina-URL",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Negeren",
|
"message": "Negeren",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Alleen gebruikersnamen detecteren",
|
"message": "Alleen gebruikersnamen detecteren",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -823,11 +823,11 @@
|
||||||
"message": "Skrót do $1 został pomyślnie zmieniony.",
|
"message": "Skrót do $1 został pomyślnie zmieniony.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Skrót dla $1 został zresetowany.",
|
"message": "Skrót dla $1 został zresetowany.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Błąd: Skrót dla $1 nie został zmieniony!",
|
"message": "Błąd: Skrót dla $1 nie został zmieniony!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -887,11 +887,11 @@
|
||||||
"message": "Adres URL strony",
|
"message": "Adres URL strony",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Ignorowanie",
|
"message": "Ignorowanie",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Wykrywanie tylko nazwy użytkownika",
|
"message": "Wykrywanie tylko nazwy użytkownika",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"message": " Cancelar",
|
"message": " Cancelar",
|
||||||
"description": "Cancel button text when removing database key or custom login fields."
|
"description": "Cancel button text when removing database key or custom login fields."
|
||||||
},
|
},
|
||||||
"optionsButtonReset": {
|
"optionsButtonReset": {
|
||||||
"message": "Repôr",
|
"message": "Repôr",
|
||||||
"description": "Reset button text for keyboard shortcuts."
|
"description": "Reset button text for keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -639,11 +639,11 @@
|
||||||
"message": "O atalho para $1foi mudado com successo",
|
"message": "O atalho para $1foi mudado com successo",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "O atalho para $1foi reposto",
|
"message": "O atalho para $1foi reposto",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Erro: O atalho para $1não foi mudado!",
|
"message": "Erro: O atalho para $1não foi mudado!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -691,11 +691,11 @@
|
||||||
"message": "URL da página",
|
"message": "URL da página",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Ignorar",
|
"message": "Ignorar",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Deteção apenas de nome de utilizador",
|
"message": "Deteção apenas de nome de utilizador",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"message": "Cancelar",
|
"message": "Cancelar",
|
||||||
"description": "Cancel button text when removing database key or custom login fields."
|
"description": "Cancel button text when removing database key or custom login fields."
|
||||||
},
|
},
|
||||||
"optionsButtonReset": {
|
"optionsButtonReset": {
|
||||||
"message": "Restaurar",
|
"message": "Restaurar",
|
||||||
"description": "Reset button text for keyboard shortcuts."
|
"description": "Reset button text for keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -639,11 +639,11 @@
|
||||||
"message": "Atalho para $1 foi alterado com sucesso.",
|
"message": "Atalho para $1 foi alterado com sucesso.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Atalho para $1 foi restaurado.",
|
"message": "Atalho para $1 foi restaurado.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Erro: Atalho para $1 não foi alterado!",
|
"message": "Erro: Atalho para $1 não foi alterado!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -691,11 +691,11 @@
|
||||||
"message": "URL da página",
|
"message": "URL da página",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Ignorar",
|
"message": "Ignorar",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Detecção apenas de nome de usuário",
|
"message": "Detecção apenas de nome de usuário",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -823,11 +823,11 @@
|
||||||
"message": "O atalho para $1foi mudado com successo",
|
"message": "O atalho para $1foi mudado com successo",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "O atalho para $1foi reposto",
|
"message": "O atalho para $1foi reposto",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Erro: O atalho para $1não foi mudado!",
|
"message": "Erro: O atalho para $1não foi mudado!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -887,11 +887,11 @@
|
||||||
"message": "URL da página",
|
"message": "URL da página",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Ignorar",
|
"message": "Ignorar",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Deteção apenas de nome de utilizador",
|
"message": "Deteção apenas de nome de utilizador",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,8 @@
|
||||||
"description": "Context menu parent item for filling a custom attribute."
|
"description": "Context menu parent item for filling a custom attribute."
|
||||||
},
|
},
|
||||||
"contextMenuRequestGlobalAutoType": {
|
"contextMenuRequestGlobalAutoType": {
|
||||||
"message": "",
|
"message": "",
|
||||||
"description": "Global Auto-Type shortcut text."
|
"description": "Global Auto-Type shortcut text."
|
||||||
},
|
},
|
||||||
"multipleCredentialsDetected": {
|
"multipleCredentialsDetected": {
|
||||||
"message": "Autentificare HTTP cu mai multe acreditări detectate. Faceți clic pe pictograma de prelungire pentru a alege una corectă.",
|
"message": "Autentificare HTTP cu mai multe acreditări detectate. Faceți clic pe pictograma de prelungire pentru a alege una corectă.",
|
||||||
|
|
@ -827,11 +827,11 @@
|
||||||
"message": "Comanda rapidă pentru $1 s-a modificat cu succes.",
|
"message": "Comanda rapidă pentru $1 s-a modificat cu succes.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Comandă rapidă pentru $1 a fost resetat.",
|
"message": "Comandă rapidă pentru $1 a fost resetat.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Eroare: shortcut pentru $1 nu a fost schimbat!",
|
"message": "Eroare: shortcut pentru $1 nu a fost schimbat!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -891,11 +891,11 @@
|
||||||
"message": "URL pagină",
|
"message": "URL pagină",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Ignora",
|
"message": "Ignora",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Detectarea numai a numelui de utilizator",
|
"message": "Detectarea numai a numelui de utilizator",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"message": "Отмена",
|
"message": "Отмена",
|
||||||
"description": "Cancel button text when removing database key or custom login fields."
|
"description": "Cancel button text when removing database key or custom login fields."
|
||||||
},
|
},
|
||||||
"optionsButtonReset": {
|
"optionsButtonReset": {
|
||||||
"message": "Сброс",
|
"message": "Сброс",
|
||||||
"description": "Reset button text for keyboard shortcuts."
|
"description": "Reset button text for keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -639,11 +639,11 @@
|
||||||
"message": "Ярлык для $1 был успешно изменен.",
|
"message": "Ярлык для $1 был успешно изменен.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Ярлык для $1 был сброшен.",
|
"message": "Ярлык для $1 был сброшен.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Ошибка: Ярлык для $1 изменен не был!",
|
"message": "Ошибка: Ярлык для $1 изменен не был!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -691,11 +691,11 @@
|
||||||
"message": "URL страницы",
|
"message": "URL страницы",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Пропустить",
|
"message": "Пропустить",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Определение только по логину",
|
"message": "Определение только по логину",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,8 @@
|
||||||
"description": "Context menu parent item for filling a custom attribute."
|
"description": "Context menu parent item for filling a custom attribute."
|
||||||
},
|
},
|
||||||
"contextMenuRequestGlobalAutoType": {
|
"contextMenuRequestGlobalAutoType": {
|
||||||
"message": "",
|
"message": "",
|
||||||
"description": "Global Auto-Type shortcut text."
|
"description": "Global Auto-Type shortcut text."
|
||||||
},
|
},
|
||||||
"multipleCredentialsDetected": {
|
"multipleCredentialsDetected": {
|
||||||
"message": "Zaznana je HTTP avtentikacija z več povernicami. Kliknite na ikono razširitve, da izberete želeno povernico.",
|
"message": "Zaznana je HTTP avtentikacija z več povernicami. Kliknite na ikono razširitve, da izberete želeno povernico.",
|
||||||
|
|
@ -827,11 +827,11 @@
|
||||||
"message": "Bližnjica za $1 je bila uspešno spremenjena.",
|
"message": "Bližnjica za $1 je bila uspešno spremenjena.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Bližnjica za $1 je bila ponastavjena.",
|
"message": "Bližnjica za $1 je bila ponastavjena.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Napaka: Bližnjica za $1 ni bila spremenjena!",
|
"message": "Napaka: Bližnjica za $1 ni bila spremenjena!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -891,11 +891,11 @@
|
||||||
"message": "URL spletna mesta",
|
"message": "URL spletna mesta",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Prezri",
|
"message": "Prezri",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Zaznavanje samo uporabniškega imena",
|
"message": "Zaznavanje samo uporabniškega imena",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"message": "Avbryt",
|
"message": "Avbryt",
|
||||||
"description": "Cancel button text when removing database key or custom login fields."
|
"description": "Cancel button text when removing database key or custom login fields."
|
||||||
},
|
},
|
||||||
"optionsButtonReset": {
|
"optionsButtonReset": {
|
||||||
"message": "Återställ",
|
"message": "Återställ",
|
||||||
"description": "Reset button text for keyboard shortcuts."
|
"description": "Reset button text for keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -639,11 +639,11 @@
|
||||||
"message": "Genväg för $1 har ändrats framgångsrikt.",
|
"message": "Genväg för $1 har ändrats framgångsrikt.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Genväg för $1 har återställts.",
|
"message": "Genväg för $1 har återställts.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Fel: Genväg för $1 har inte ändrats!",
|
"message": "Fel: Genväg för $1 har inte ändrats!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -691,11 +691,11 @@
|
||||||
"message": "Sid-URL",
|
"message": "Sid-URL",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Ignorera",
|
"message": "Ignorera",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Identifiera endast användarnamn",
|
"message": "Identifiera endast användarnamn",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -32,8 +32,8 @@
|
||||||
"description": "Context menu parent item for filling a custom attribute."
|
"description": "Context menu parent item for filling a custom attribute."
|
||||||
},
|
},
|
||||||
"contextMenuRequestGlobalAutoType": {
|
"contextMenuRequestGlobalAutoType": {
|
||||||
"message": "Genel otomatik yazma isteği",
|
"message": "Genel otomatik yazma isteği",
|
||||||
"description": "Global Auto-Type shortcut text."
|
"description": "Global Auto-Type shortcut text."
|
||||||
},
|
},
|
||||||
"multipleCredentialsDetected": {
|
"multipleCredentialsDetected": {
|
||||||
"message": "HTTP kimlik doğrulaması için kullanılabilecek birden çok kimlik doğrulama bilgisi bulundu. Doğru bilgileri seçmek için uzantı simgesine tıklayın.",
|
"message": "HTTP kimlik doğrulaması için kullanılabilecek birden çok kimlik doğrulama bilgisi bulundu. Doğru bilgileri seçmek için uzantı simgesine tıklayın.",
|
||||||
|
|
@ -843,11 +843,11 @@
|
||||||
"message": "$1 kısayolu değiştirildi.",
|
"message": "$1 kısayolu değiştirildi.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "$1 kısayolu sıfırlandı.",
|
"message": "$1 kısayolu sıfırlandı.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Hata: $1 kısayolu değiştirilmedi!",
|
"message": "Hata: $1 kısayolu değiştirilmedi!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -907,11 +907,11 @@
|
||||||
"message": "Sayfa adresi",
|
"message": "Sayfa adresi",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Yok say",
|
"message": "Yok say",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Yalnız kullanıcı adı algılaması",
|
"message": "Yalnız kullanıcı adı algılaması",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"message": "Скасувати",
|
"message": "Скасувати",
|
||||||
"description": "Cancel button text when removing database key or custom login fields."
|
"description": "Cancel button text when removing database key or custom login fields."
|
||||||
},
|
},
|
||||||
"optionsButtonReset": {
|
"optionsButtonReset": {
|
||||||
"message": "Reset",
|
"message": "Reset",
|
||||||
"description": "Reset button text for keyboard shortcuts."
|
"description": "Reset button text for keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -639,11 +639,11 @@
|
||||||
"message": "Shortcut for $1 has been successfully changed.",
|
"message": "Shortcut for $1 has been successfully changed.",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "Shortcut for $1 has been reset.",
|
"message": "Shortcut for $1 has been reset.",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Error: Shortcut for $1 has not been changed!",
|
"message": "Error: Shortcut for $1 has not been changed!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -691,11 +691,11 @@
|
||||||
"message": "URL сторінки",
|
"message": "URL сторінки",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "Нехтувати",
|
"message": "Нехтувати",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Визначення виключно за іменем користувача",
|
"message": "Визначення виключно за іменем користувача",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -823,11 +823,11 @@
|
||||||
"message": "$1 的快捷方式已成功更改。",
|
"message": "$1 的快捷方式已成功更改。",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "$1 的快捷方式已重置。",
|
"message": "$1 的快捷方式已重置。",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "错误: $1 的快捷方式未更改!",
|
"message": "错误: $1 的快捷方式未更改!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -887,11 +887,11 @@
|
||||||
"message": "页面网址",
|
"message": "页面网址",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "忽略",
|
"message": "忽略",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "仅用户名检测",
|
"message": "仅用户名检测",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"message": "取消",
|
"message": "取消",
|
||||||
"description": "Cancel button text when removing database key or custom login fields."
|
"description": "Cancel button text when removing database key or custom login fields."
|
||||||
},
|
},
|
||||||
"optionsButtonReset": {
|
"optionsButtonReset": {
|
||||||
"message": "重設",
|
"message": "重設",
|
||||||
"description": "Reset button text for keyboard shortcuts."
|
"description": "Reset button text for keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -639,11 +639,11 @@
|
||||||
"message": "$1 的快速鍵已成功更改。",
|
"message": "$1 的快速鍵已成功更改。",
|
||||||
"description": "Message for successful keyboard shortcut change."
|
"description": "Message for successful keyboard shortcut change."
|
||||||
},
|
},
|
||||||
"optionsShortcutsInfo": {
|
"optionsShortcutsInfo": {
|
||||||
"message": "$1 的快速鍵已重設。",
|
"message": "$1 的快速鍵已重設。",
|
||||||
"description": "Info message for changing keyboard shortcuts."
|
"description": "Info message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
"optionsShortcutsDanger": {
|
"optionsShortcutsDanger": {
|
||||||
"message": "Error: Shortcut for $1 has not been changed!",
|
"message": "Error: Shortcut for $1 has not been changed!",
|
||||||
"description": "Error message for changing keyboard shortcuts."
|
"description": "Error message for changing keyboard shortcuts."
|
||||||
},
|
},
|
||||||
|
|
@ -691,11 +691,11 @@
|
||||||
"message": "網頁 URL",
|
"message": "網頁 URL",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnIgnore": {
|
"optionsColumnIgnore": {
|
||||||
"message": "忽略",
|
"message": "忽略",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
"optionsColumnUsernameOnly": {
|
"optionsColumnUsernameOnly": {
|
||||||
"message": "Username-only Detection",
|
"message": "Username-only Detection",
|
||||||
"description": "Site preferences list column title."
|
"description": "Site preferences list column title."
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -555,7 +555,7 @@ keepass.createNewGroup = async function(tab, args = []) {
|
||||||
keepass.updateLastUsed(keepass.databaseHash);
|
keepass.updateLastUsed(keepass.databaseHash);
|
||||||
return response;
|
return response;
|
||||||
} else {
|
} else {
|
||||||
logError(`getDatabaseGroups rejected`);
|
logError('getDatabaseGroups rejected');
|
||||||
}
|
}
|
||||||
|
|
||||||
browserAction.showDefault(tab);
|
browserAction.showDefault(tab);
|
||||||
|
|
@ -750,9 +750,7 @@ keepass.disableAutomaticReconnect = function() {
|
||||||
keepass.reconnect = async function(tab, connectionTimeout) {
|
keepass.reconnect = async function(tab, connectionTimeout) {
|
||||||
keepassClient.connectToNative();
|
keepassClient.connectToNative();
|
||||||
keepass.generateNewKeyPair();
|
keepass.generateNewKeyPair();
|
||||||
const keyChangeResult = await keepass.changePublicKeys(tab, true, connectionTimeout).catch((e) => {
|
const keyChangeResult = await keepass.changePublicKeys(tab, true, connectionTimeout).catch(() => false);
|
||||||
return false;
|
|
||||||
});
|
|
||||||
|
|
||||||
// Change public keys timeout
|
// Change public keys timeout
|
||||||
if (!keyChangeResult) {
|
if (!keyChangeResult) {
|
||||||
|
|
@ -802,7 +800,7 @@ keepass.setcurrentKeePassXCVersion = function(version) {
|
||||||
};
|
};
|
||||||
|
|
||||||
keepass.keePassXCUpdateAvailable = function() {
|
keepass.keePassXCUpdateAvailable = function() {
|
||||||
if (page.settings.checkUpdateKeePassXC && page.settings.checkUpdateKeePassXC != CHECK_UPDATE_NEVER) {
|
if (page.settings.checkUpdateKeePassXC && page.settings.checkUpdateKeePassXC !== CHECK_UPDATE_NEVER) {
|
||||||
const lastChecked = (keepass.latestKeePassXC.lastChecked) ? new Date(keepass.latestKeePassXC.lastChecked) : new Date(1986, 11, 21);
|
const lastChecked = (keepass.latestKeePassXC.lastChecked) ? new Date(keepass.latestKeePassXC.lastChecked) : new Date(1986, 11, 21);
|
||||||
const daysSinceLastCheck = Math.floor(((new Date()).getTime() - lastChecked.getTime()) / 86400000);
|
const daysSinceLastCheck = Math.floor(((new Date()).getTime() - lastChecked.getTime()) / 86400000);
|
||||||
if (daysSinceLastCheck >= page.settings.checkUpdateKeePassXC) {
|
if (daysSinceLastCheck >= page.settings.checkUpdateKeePassXC) {
|
||||||
|
|
@ -886,7 +884,7 @@ keepass.updateDatabaseHashToContent = async function() {
|
||||||
hash: { old: keepass.previousDatabaseHash, new: keepass.databaseHash },
|
hash: { old: keepass.previousDatabaseHash, new: keepass.databaseHash },
|
||||||
connected: keepass.isKeePassXCAvailable
|
connected: keepass.isKeePassXCAvailable
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
logError(`No content script available for this tab.`);
|
logError('No content script available for this tab.');
|
||||||
});
|
});
|
||||||
keepass.previousDatabaseHash = keepass.databaseHash;
|
keepass.previousDatabaseHash = keepass.databaseHash;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -404,7 +404,7 @@ page.updateContextMenu = async function(tab, credentials) {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const createContextMenuItem = function({action, args, ...options}) {
|
const createContextMenuItem = function({ action, args, ...options }) {
|
||||||
return browser.contextMenus.create({
|
return browser.contextMenus.create({
|
||||||
contexts: menuContexts,
|
contexts: menuContexts,
|
||||||
onclick: (info, tab) => {
|
onclick: (info, tab) => {
|
||||||
|
|
|
||||||
|
|
@ -77,8 +77,7 @@ const matchPatternToRegExp = function(pattern) {
|
||||||
pattern = pattern.replace(/\./g, '\\.');
|
pattern = pattern.replace(/\./g, '\\.');
|
||||||
if (pattern.endsWith('*')) {
|
if (pattern.endsWith('*')) {
|
||||||
regex += pattern.slice(0, -1);
|
regex += pattern.slice(0, -1);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
regex += `${pattern}$`;
|
regex += `${pattern}$`;
|
||||||
}
|
}
|
||||||
return new RegExp(regex);
|
return new RegExp(regex);
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ for (const item of items) {
|
||||||
let attr = '';
|
let attr = '';
|
||||||
[ attr, key ] = trAttribute(key);
|
[ attr, key ] = trAttribute(key);
|
||||||
|
|
||||||
const placeholder = item.getAttribute('i18n-placeholder');
|
const placeholder = item.getAttribute('data-i18n-placeholder');
|
||||||
const translation = placeholder ? browser.i18n.getMessage(key, placeholder) : browser.i18n.getMessage(key);
|
const translation = placeholder ? browser.i18n.getMessage(key, placeholder) : browser.i18n.getMessage(key);
|
||||||
if (attr) {
|
if (attr) {
|
||||||
item.setAttribute(attr, translation);
|
item.setAttribute(attr, translation);
|
||||||
|
|
|
||||||
|
|
@ -153,7 +153,7 @@ class Autocomplete {
|
||||||
|
|
||||||
deselectItem() {
|
deselectItem() {
|
||||||
const items = this.list.querySelectorAll('div.kpxcAutocomplete-active');
|
const items = this.list.querySelectorAll('div.kpxcAutocomplete-active');
|
||||||
items.forEach(item => item.classList.remove('kpxcAutocomplete-active'));
|
items.forEach(item => item.classList.remove('kpxcAutocomplete-active'));
|
||||||
}
|
}
|
||||||
|
|
||||||
closeList() {
|
closeList() {
|
||||||
|
|
|
||||||
|
|
@ -188,7 +188,7 @@ kpxcBanner.saveNewCredentials = async function(credentials = {}) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const addChildren = function(group, parentElement, depth) {
|
const addChildren = function(group, parentElement, depth = 0) {
|
||||||
++depth;
|
++depth;
|
||||||
const padding = depth * 20;
|
const padding = depth * 20;
|
||||||
|
|
||||||
|
|
@ -227,13 +227,12 @@ kpxcBanner.saveNewCredentials = async function(credentials = {}) {
|
||||||
kpxcBanner.createGroupDialog();
|
kpxcBanner.createGroupDialog();
|
||||||
|
|
||||||
// Create the link list for group selection
|
// Create the link list for group selection
|
||||||
let depth = 0;
|
|
||||||
for (const g of result.groups) {
|
for (const g of result.groups) {
|
||||||
const a = createLink(g.name, g.uuid, g.children.length > 0);
|
const a = createLink(g.name, g.uuid, g.children.length > 0);
|
||||||
a.setAttribute('id', 'root');
|
a.setAttribute('id', 'root');
|
||||||
|
|
||||||
kpxcBanner.shadowSelector('ul#list').appendChild(a);
|
kpxcBanner.shadowSelector('ul#list').appendChild(a);
|
||||||
addChildren(g, a, depth);
|
addChildren(g, a);
|
||||||
}
|
}
|
||||||
|
|
||||||
kpxcBanner.shadowSelector('.kpxc-banner-dialog').style.display = 'block';
|
kpxcBanner.shadowSelector('.kpxc-banner-dialog').style.display = 'block';
|
||||||
|
|
@ -325,7 +324,7 @@ kpxcBanner.verifyResult = async function(code) {
|
||||||
|
|
||||||
// Traverse the groups and ensure all paths are found
|
// Traverse the groups and ensure all paths are found
|
||||||
kpxcBanner.getDefaultGroup = function(groups, defaultGroup) {
|
kpxcBanner.getDefaultGroup = function(groups, defaultGroup) {
|
||||||
const getGroup = function(group, splitted, depth) {
|
const getGroup = function(group, splitted, depth = -1) {
|
||||||
++depth;
|
++depth;
|
||||||
for (const g of group) {
|
for (const g of group) {
|
||||||
if (g.name === splitted[depth]) {
|
if (g.name === splitted[depth]) {
|
||||||
|
|
@ -338,9 +337,8 @@ kpxcBanner.getDefaultGroup = function(groups, defaultGroup) {
|
||||||
return [ '', '' ];
|
return [ '', '' ];
|
||||||
};
|
};
|
||||||
|
|
||||||
let depth = -1;
|
|
||||||
const splitted = defaultGroup.split('/');
|
const splitted = defaultGroup.split('/');
|
||||||
return getGroup(groups, splitted, depth);
|
return getGroup(groups, splitted);
|
||||||
};
|
};
|
||||||
|
|
||||||
kpxcBanner.createCredentialDialog = async function() {
|
kpxcBanner.createCredentialDialog = async function() {
|
||||||
|
|
|
||||||
|
|
@ -669,7 +669,7 @@ const dataStepToString = function() {
|
||||||
} else if (kpxcCustomLoginFieldsBanner.dataStep === STEP_SELECT_STRING_FIELDS) {
|
} else if (kpxcCustomLoginFieldsBanner.dataStep === STEP_SELECT_STRING_FIELDS) {
|
||||||
return tr('defineStringField');
|
return tr('defineStringField');
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
//--------------------------------------------------------------------------
|
//--------------------------------------------------------------------------
|
||||||
// IFrame support
|
// IFrame support
|
||||||
|
|
@ -764,4 +764,4 @@ const sendMessageToParent = function(message, selection) {
|
||||||
if (window.self !== window.top) {
|
if (window.self !== window.top) {
|
||||||
window.top.postMessage({ message, selection }, '*');
|
window.top.postMessage({ message, selection }, '*');
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
|
||||||
|
|
@ -104,13 +104,6 @@ kpxcFill.fillFromPopup = async function(id, uuid) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// For Google password field we need to do some special handling. The password field is actually in the
|
|
||||||
// second combination that was just detected after a username fill.
|
|
||||||
let combination = kpxc.combinations[0];
|
|
||||||
if (kpxcSites.popupExceptionFound(kpxc.combinations)) {
|
|
||||||
combination = kpxc.combinations[1];
|
|
||||||
}
|
|
||||||
|
|
||||||
const foundCombination = kpxcFields.getCombinationFromAllInputs();
|
const foundCombination = kpxcFields.getCombinationFromAllInputs();
|
||||||
kpxcFill.fillInCredentials(foundCombination, selectedCredentials.login, uuid);
|
kpxcFill.fillInCredentials(foundCombination, selectedCredentials.login, uuid);
|
||||||
kpxcUserAutocomplete.closeList();
|
kpxcUserAutocomplete.closeList();
|
||||||
|
|
@ -326,4 +319,4 @@ kpxcFill.performAutoSubmit = async function(combination, skipAutoSubmit) {
|
||||||
} else {
|
} else {
|
||||||
(combination.username || combination.password).focus();
|
(combination.username || combination.password).focus();
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
|
||||||
|
|
@ -69,7 +69,7 @@ kpxcForm.getFormSubmitButton = function(form) {
|
||||||
// Retrieve new password from a form with three elements: Current, New, Repeat New
|
// Retrieve new password from a form with three elements: Current, New, Repeat New
|
||||||
kpxcForm.getNewPassword = function(passwordInputs = []) {
|
kpxcForm.getNewPassword = function(passwordInputs = []) {
|
||||||
if (passwordInputs.length < 2) {
|
if (passwordInputs.length < 2) {
|
||||||
logDebug('Error: Not enough input fields to detect possible new password.')
|
logDebug('Error: Not enough input fields to detect possible new password.');
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -151,8 +151,7 @@ kpxcObserverHelper.getInputs = function(target, ignoreVisibility = false) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Traverse children, only if Improved Field Detection is enabled for the site
|
// Traverse children, only if Improved Field Detection is enabled for the site
|
||||||
if (kpxc.improvedFieldDetectionEnabledForPage)
|
if (kpxc.improvedFieldDetectionEnabledForPage) {
|
||||||
{
|
|
||||||
const traversedChildren = kpxcObserverHelper.findInputsFromChildren(target);
|
const traversedChildren = kpxcObserverHelper.findInputsFromChildren(target);
|
||||||
for (const child of traversedChildren) {
|
for (const child of traversedChildren) {
|
||||||
if (!inputFields.includes(child)) {
|
if (!inputFields.includes(child)) {
|
||||||
|
|
|
||||||
|
|
@ -43,8 +43,8 @@
|
||||||
"background/page.js",
|
"background/page.js",
|
||||||
"background/event.js",
|
"background/event.js",
|
||||||
"background/init.js"
|
"background/init.js"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"content_scripts": [
|
"content_scripts": [
|
||||||
{
|
{
|
||||||
"matches": [
|
"matches": [
|
||||||
|
|
@ -154,13 +154,12 @@
|
||||||
"http://*/*",
|
"http://*/*",
|
||||||
"https://api.github.com/"
|
"https://api.github.com/"
|
||||||
],
|
],
|
||||||
"content_security_policy": "script-src 'self' 'sha256-UD5WN2QEhRDEZ6vkLdHKFlkHwzbemzW2ppJiOLooI8o='; object-src 'none'",
|
"content_security_policy": "script-src 'self' 'sha256-UD5WN2QEhRDEZ6vkLdHKFlkHwzbemzW2ppJiOLooI8o=' 'sha256-4nJ8uLezzRE3SiBFdkVN/uNwV9YTOGCqRXg6AvB5rCY='; object-src 'none'",
|
||||||
"content_security_policy": "script-src 'self' 'sha256-4nJ8uLezzRE3SiBFdkVN/uNwV9YTOGCqRXg6AvB5rCY='; object-src 'none'",
|
|
||||||
"applications": {
|
"applications": {
|
||||||
"gecko": {
|
"gecko": {
|
||||||
"id": "keepassxc-browser@keepassxc.org",
|
"id": "keepassxc-browser@keepassxc.org",
|
||||||
"strict_min_version": "67.0"
|
"strict_min_version": "67.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"default_locale": "en"
|
"default_locale": "en"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -129,6 +129,7 @@ table td:last-of-type {
|
||||||
.card {
|
.card {
|
||||||
background-color: var(--kpxc-card-background-color);
|
background-color: var(--kpxc-card-background-color);
|
||||||
border-color: var(--kpxc-card-border-color);
|
border-color: var(--kpxc-card-border-color);
|
||||||
|
overflow: hidden; /* fix border radius looking fuzzy */
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-header {
|
.card-header {
|
||||||
|
|
|
||||||
|
|
@ -4,10 +4,10 @@
|
||||||
<title data-i18n="optionsTitle"></title>
|
<title data-i18n="optionsTitle"></title>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
<link rel="stylesheet" href="../css/colors.css" />
|
<link rel="stylesheet" href="../css/colors.css">
|
||||||
<link rel="stylesheet" href="../bootstrap/bootstrap.min.css" />
|
<link rel="stylesheet" href="../bootstrap/bootstrap.min.css">
|
||||||
<link rel="stylesheet" href="../fonts/fork-awesome.min.css" />
|
<link rel="stylesheet" href="../fonts/fork-awesome.min.css">
|
||||||
<link rel="stylesheet" href="options.css" />
|
<link rel="stylesheet" href="options.css">
|
||||||
<link rel="icon" type="image/png" href="../icons/keepassxc_32x32.png" sizes="32x32">
|
<link rel="icon" type="image/png" href="../icons/keepassxc_32x32.png" sizes="32x32">
|
||||||
<link rel="icon" type="image/png" href="../icons/keepassxc_64x64.png" sizes="64x64">
|
<link rel="icon" type="image/png" href="../icons/keepassxc_64x64.png" sizes="64x64">
|
||||||
<link rel="icon" type="image/png" href="../icons/keepassxc_96x96.png" sizes="96x96">
|
<link rel="icon" type="image/png" href="../icons/keepassxc_96x96.png" sizes="96x96">
|
||||||
|
|
@ -100,7 +100,7 @@
|
||||||
<!-- Activate username icons -->
|
<!-- Activate username icons -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="showLoginFormIcon" id="usernameIconsCheckBox" value="true" />
|
<input class="form-check-input" type="checkbox" name="showLoginFormIcon" id="usernameIconsCheckBox" value="true">
|
||||||
<label class="form-check-label" for="usernameIconsCheckBox" data-i18n="optionsCheckboxUsernameIcons"></label>
|
<label class="form-check-label" for="usernameIconsCheckBox" data-i18n="optionsCheckboxUsernameIcons"></label>
|
||||||
<div id="passwordHelpBlock" class="form-text" data-i18n="optionsShowLoginFormIconHelpText"></div>
|
<div id="passwordHelpBlock" class="form-text" data-i18n="optionsShowLoginFormIconHelpText"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -109,7 +109,7 @@
|
||||||
<!-- Activate password icons -->
|
<!-- Activate password icons -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="usePasswordGeneratorIcons" id="passwordIconsCheckBox" value="true" />
|
<input class="form-check-input" type="checkbox" name="usePasswordGeneratorIcons" id="passwordIconsCheckBox" value="true">
|
||||||
<label class="form-check-label" for="passwordIconsCheckBox" data-i18n="optionsCheckboxUsePasswordGenerator"></label>
|
<label class="form-check-label" for="passwordIconsCheckBox" data-i18n="optionsCheckboxUsePasswordGenerator"></label>
|
||||||
<div class="form-text" data-i18n="optionsUsePasswordGeneratorHelpText"></div>
|
<div class="form-text" data-i18n="optionsUsePasswordGeneratorHelpText"></div>
|
||||||
<div class="form-text" data-i18n="optionsUsePasswordGeneratorHelpTextSecond"></div>
|
<div class="form-text" data-i18n="optionsUsePasswordGeneratorHelpTextSecond"></div>
|
||||||
|
|
@ -119,7 +119,7 @@
|
||||||
<!-- Activate TOTP icons -->
|
<!-- Activate TOTP icons -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="showOTPIcon" id="totpIconsCheckBox" value="true" />
|
<input class="form-check-input" type="checkbox" name="showOTPIcon" id="totpIconsCheckBox" value="true">
|
||||||
<label class="form-check-label" for="totpIconsCheckBox" data-i18n="optionsCheckboxOTPIcons"></label>
|
<label class="form-check-label" for="totpIconsCheckBox" data-i18n="optionsCheckboxOTPIcons"></label>
|
||||||
<div class="form-text" data-i18n="optionsShowOTPIconHelpText"></div>
|
<div class="form-text" data-i18n="optionsShowOTPIconHelpText"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -128,7 +128,7 @@
|
||||||
<!-- Show notifications -->
|
<!-- Show notifications -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="showNotifications" id="notificationCheckBox" value="true" />
|
<input class="form-check-input" type="checkbox" name="showNotifications" id="notificationCheckBox" value="true">
|
||||||
<label class="form-check-label" for="notificationCheckBox" data-i18n="optionsCheckboxShowNotifications"></label>
|
<label class="form-check-label" for="notificationCheckBox" data-i18n="optionsCheckboxShowNotifications"></label>
|
||||||
<div class="form-text" data-i18n="optionsShowNotificationsHelpText"></div>
|
<div class="form-text" data-i18n="optionsShowNotificationsHelpText"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -144,9 +144,9 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p>
|
<p>
|
||||||
<span data-i18n="contextMenuFillUsernameAndPassword"></span>: <span id="fill_username_password-shortcut">error</span><br />
|
<span data-i18n="contextMenuFillUsernameAndPassword"></span>: <span id="fill_username_password-shortcut">error</span><br>
|
||||||
<span data-i18n="contextMenuFillPassword"></span>: <span id="fill_password-shortcut">error</span><br />
|
<span data-i18n="contextMenuFillPassword"></span>: <span id="fill_password-shortcut">error</span><br>
|
||||||
<span data-i18n="contextMenuFillTOTP"></span>: <span id="fill_totp-shortcut">error</span><br />
|
<span data-i18n="contextMenuFillTOTP"></span>: <span id="fill_totp-shortcut">error</span><br>
|
||||||
<span data-i18n="contextMenuShowPasswordGenerator"></span>: <span id="show_password_generator-shortcut">error</span>
|
<span data-i18n="contextMenuShowPasswordGenerator"></span>: <span id="show_password_generator-shortcut">error</span>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
|
|
@ -168,7 +168,7 @@
|
||||||
<!-- Automatically retrieve credentials -->
|
<!-- Automatically retrieve credentials -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="autoRetrieveCredentials" id="autoRetrieveCredentials" value="true" />
|
<input class="form-check-input" type="checkbox" name="autoRetrieveCredentials" id="autoRetrieveCredentials" value="true">
|
||||||
<label class="form-check-label" for="autoRetrieveCredentials" data-i18n="optionsCheckboxAutoRetrieveCredentials"></label>
|
<label class="form-check-label" for="autoRetrieveCredentials" data-i18n="optionsCheckboxAutoRetrieveCredentials"></label>
|
||||||
<div class="form-text" data-i18n="optionsAutoRetrieveCredentialsHelpText"></div>
|
<div class="form-text" data-i18n="optionsAutoRetrieveCredentialsHelpText"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -177,7 +177,7 @@
|
||||||
<!-- Use Autocomplete Menu -->
|
<!-- Use Autocomplete Menu -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="autoCompleteUsernames" id="autoCompleteUsernames" value="true" />
|
<input class="form-check-input" type="checkbox" name="autoCompleteUsernames" id="autoCompleteUsernames" value="true">
|
||||||
<label class="form-check-label" for="autoCompleteUsernames" data-i18n="optionsCheckboxAutoCompleteUsernames"></label>
|
<label class="form-check-label" for="autoCompleteUsernames" data-i18n="optionsCheckboxAutoCompleteUsernames"></label>
|
||||||
<div class="form-text" data-i18n="optionsAutocompleteUsernamesHelpText"></div>
|
<div class="form-text" data-i18n="optionsAutocompleteUsernamesHelpText"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -221,7 +221,7 @@
|
||||||
<!-- Use Auto-Submit -->
|
<!-- Use Auto-Submit -->
|
||||||
<div class="form-group py-2">
|
<div class="form-group py-2">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="autoSubmit" id="autoSubmit" value="true" />
|
<input class="form-check-input" type="checkbox" name="autoSubmit" id="autoSubmit" value="true">
|
||||||
<label class="form-check-label" for="autoSubmit" data-i18n="optionsCheckboxAutoSubmit"></label>
|
<label class="form-check-label" for="autoSubmit" data-i18n="optionsCheckboxAutoSubmit"></label>
|
||||||
<div class="form-text" data-i18n="optionsAutoSubmitHelpText"></div>
|
<div class="form-text" data-i18n="optionsAutoSubmitHelpText"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -230,7 +230,7 @@
|
||||||
<!-- Automatically fill single-credential entries -->
|
<!-- Automatically fill single-credential entries -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="autoFillSingleEntry" id="autoFillSingleEntry" value="true" />
|
<input class="form-check-input" type="checkbox" name="autoFillSingleEntry" id="autoFillSingleEntry" value="true">
|
||||||
<label class="form-check-label" for="autoFillSingleEntry" data-i18n="optionsCheckboxAutoFillSingleEntry"></label>
|
<label class="form-check-label" for="autoFillSingleEntry" data-i18n="optionsCheckboxAutoFillSingleEntry"></label>
|
||||||
<div class="form-text" data-i18n="optionsAutoFillSingleEntryHelpText"></div>
|
<div class="form-text" data-i18n="optionsAutoFillSingleEntryHelpText"></div>
|
||||||
<div class="alert alert-warning mt-3 col-lg-9" role="alert">
|
<div class="alert alert-warning mt-3 col-lg-9" role="alert">
|
||||||
|
|
@ -309,8 +309,8 @@
|
||||||
|
|
||||||
<!-- Number of allowed redirects -->
|
<!-- Number of allowed redirects -->
|
||||||
<div class="form-group w-50">
|
<div class="form-group w-50">
|
||||||
<label id="redirectAllowanceLabel" class="font-weight-normal" for="redirectAllowance" data-i18n="optionsRedirectAllowance" i18n-placeholder="1"></label>
|
<label id="redirectAllowanceLabel" class="font-weight-normal" for="redirectAllowance" data-i18n="optionsRedirectAllowance" data-i18n-placeholder="1"></label>
|
||||||
<input type="range" class="form-range" id="redirectAllowance" name="redirectAllowance" min="1" max="11" step="1" value="1" />
|
<input type="range" class="form-range" id="redirectAllowance" name="redirectAllowance" min="1" max="11" step="1" value="1">
|
||||||
<div class="form-text help-text" data-i18n="optionsRedirectAllowanceHelpText"></div>
|
<div class="form-text help-text" data-i18n="optionsRedirectAllowanceHelpText"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -324,16 +324,16 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="help-block kphVersion">
|
<div class="help-block kphVersion">
|
||||||
<p>
|
<p>
|
||||||
<span data-i18n="optionsVersionInfoText"></span>
|
<span data-i18n="optionsVersionInfoText"></span>
|
||||||
<br />
|
<br>
|
||||||
<span data-i18n="optionsVersionDownload" i18n-placeholder="<a target='_blank' href='https://keepassxc.org/'>https://keepassxc.org/</a>"></span>
|
<span data-i18n="optionsVersionDownload" data-i18n-placeholder="<a target='_blank' href='https://keepassxc.org/'>https://keepassxc.org/</a>"></span>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<span data-i18n="optionsVersionRunning" i18n-placeholder="<em class='yourVersion'></em>"></span>
|
<span data-i18n="optionsVersionRunning" data-i18n-placeholder="<em class='yourVersion'></em>"></span>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<span data-i18n="optionsLatestVersion" i18n-placeholder="<em class='latestVersion'></em>"></span>
|
<span data-i18n="optionsLatestVersion" data-i18n-placeholder="<em class='latestVersion'></em>"></span>
|
||||||
</p>
|
</p>
|
||||||
<button class="btn btn-sm btn-success checkUpdateKeePassXC"><i class="fa fa-refresh" aria-hidden="true"></i><span data-i18n="optionsButtonUpdate"></span></button>
|
<button class="btn btn-sm btn-success checkUpdateKeePassXC"><i class="fa fa-refresh" aria-hidden="true"></i><span data-i18n="optionsButtonUpdate"></span></button>
|
||||||
<div class="mt-3">
|
<div class="mt-3">
|
||||||
|
|
@ -370,7 +370,7 @@
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="useObserver" id="useObserver" value="true" />
|
<input class="form-check-input" type="checkbox" name="useObserver" id="useObserver" value="true">
|
||||||
<label class="form-check-label" for="useObserver" data-i18n="optionsUseObserver"></label>
|
<label class="form-check-label" for="useObserver" data-i18n="optionsUseObserver"></label>
|
||||||
<div class="form-text" data-i18n="optionsUseObserverHelpText"></div>
|
<div class="form-text" data-i18n="optionsUseObserverHelpText"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -379,12 +379,12 @@
|
||||||
<!-- Display group name -->
|
<!-- Display group name -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="showGroupNameInAutocomplete" id="showGroupNameInAutocomplete" value="true" />
|
<input class="form-check-input" type="checkbox" name="showGroupNameInAutocomplete" id="showGroupNameInAutocomplete" value="true">
|
||||||
<label class="form-check-label" for="showGroupNameInAutocomplete" data-i18n="optionsCheckboxShowGroupNameInAutocomplete"></label>
|
<label class="form-check-label" for="showGroupNameInAutocomplete" data-i18n="optionsCheckboxShowGroupNameInAutocomplete"></label>
|
||||||
<div class="form-text" data-i18n="optionsShowGroupNameInAutocompleteHelpText"></div>
|
<div class="form-text" data-i18n="optionsShowGroupNameInAutocompleteHelpText"></div>
|
||||||
<div class="alert alert-info mt-3 col-lg-9" role="alert" id="versionRequiredAlert">
|
<div class="alert alert-info mt-3 col-lg-9" role="alert" id="versionRequiredAlert">
|
||||||
<i class="fa fa-exclamation-circle" aria-hidden="true"></i>
|
<i class="fa fa-exclamation-circle" aria-hidden="true"></i>
|
||||||
<span data-i18n="optionsKeePassXCVersionRequired" i18n-placeholder="2.6.0"></span>
|
<span data-i18n="optionsKeePassXCVersionRequired" data-i18n-placeholder="2.6.0"></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -392,7 +392,7 @@
|
||||||
<!-- Automatic reconnect -->
|
<!-- Automatic reconnect -->
|
||||||
<div class="form-group" hidden>
|
<div class="form-group" hidden>
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="autoReconnect" id="autoReconnect" value="true" />
|
<input class="form-check-input" type="checkbox" name="autoReconnect" id="autoReconnect" value="true">
|
||||||
<label class="form-check-label" for="autoReconnect" data-i18n="optionsCheckboxAutomaticReconnect"></label>
|
<label class="form-check-label" for="autoReconnect" data-i18n="optionsCheckboxAutomaticReconnect"></label>
|
||||||
<div class="form-text" data-i18n="optionsAutomaticReconnectHelpText"></div>
|
<div class="form-text" data-i18n="optionsAutomaticReconnectHelpText"></div>
|
||||||
<div class="alert alert-warning mt-3 col-lg-9" role="alert">
|
<div class="alert alert-warning mt-3 col-lg-9" role="alert">
|
||||||
|
|
@ -405,7 +405,7 @@
|
||||||
<!-- Save domain only -->
|
<!-- Save domain only -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="saveDomainOnly" id="saveDomainOnly" value="true" />
|
<input class="form-check-input" type="checkbox" name="saveDomainOnly" id="saveDomainOnly" value="true">
|
||||||
<label class="form-check-label" for="saveDomainOnly" data-i18n="optionsSaveDomainOnly"></label>
|
<label class="form-check-label" for="saveDomainOnly" data-i18n="optionsSaveDomainOnly"></label>
|
||||||
<div class="form-text" data-i18n="optionsSaveDomainOnlyCustomLoginHelpText"></div>
|
<div class="form-text" data-i18n="optionsSaveDomainOnlyCustomLoginHelpText"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -414,7 +414,7 @@
|
||||||
<!-- Use predefined sites -->
|
<!-- Use predefined sites -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="usePredefinedSites" id="usePredefinedSites" value="true" />
|
<input class="form-check-input" type="checkbox" name="usePredefinedSites" id="usePredefinedSites" value="true">
|
||||||
<label class="form-check-label" for="usePredefinedSites" data-i18n="optionsUsePredefinedSites"></label>
|
<label class="form-check-label" for="usePredefinedSites" data-i18n="optionsUsePredefinedSites"></label>
|
||||||
<div class="form-text" data-i18n="optionsUsePredefinedSitesHelpText"></div>
|
<div class="form-text" data-i18n="optionsUsePredefinedSitesHelpText"></div>
|
||||||
<details id="predefinedSiteList">
|
<details id="predefinedSiteList">
|
||||||
|
|
@ -437,7 +437,7 @@
|
||||||
<!-- Debug logging -->
|
<!-- Debug logging -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="form-check">
|
<div class="form-check">
|
||||||
<input class="form-check-input" type="checkbox" name="debugLogging" id="debugLogging" value="false" />
|
<input class="form-check-input" type="checkbox" name="debugLogging" id="debugLogging" value="false">
|
||||||
<label class="form-check-label" for="debugLogging" data-i18n="optionsDebugLogging"></label>
|
<label class="form-check-label" for="debugLogging" data-i18n="optionsDebugLogging"></label>
|
||||||
<div class="form-text" data-i18n="optionsDebugLoggingHelpText"></div>
|
<div class="form-text" data-i18n="optionsDebugLoggingHelpText"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -523,7 +523,7 @@
|
||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<p><span data-i18n="optionsDatabasesRemoveIdentifierConfirmFirst" i18n-placeholder="<strong></strong>"></span></p>
|
<p><span data-i18n="optionsDatabasesRemoveIdentifierConfirmFirst" data-i18n-placeholder="<strong></strong>"></span></p>
|
||||||
<p class="help-block" data-i18n="optionsDatabasesRemoveIdentifierConfirmSecond"></p>
|
<p class="help-block" data-i18n="optionsDatabasesRemoveIdentifierConfirmSecond"></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
|
|
@ -545,7 +545,7 @@
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p>
|
<p>
|
||||||
<span data-i18n="optionsCustomFieldsTabHelpTextFirst"></span>
|
<span data-i18n="optionsCustomFieldsTabHelpTextFirst"></span>
|
||||||
<br />
|
<br>
|
||||||
<span data-i18n="optionsCustomFieldsTabHelpTextSecond"></span><em><span data-i18n="popupChooseCredentialsText"></span></em>.
|
<span data-i18n="optionsCustomFieldsTabHelpTextSecond"></span><em><span data-i18n="popupChooseCredentialsText"></span></em>.
|
||||||
</p>
|
</p>
|
||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
|
|
@ -577,7 +577,7 @@
|
||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<p><span data-i18n="optionsCustomFieldsConfirmation" i18n-placeholder="<strong></strong>"></span></p>
|
<p><span data-i18n="optionsCustomFieldsConfirmation" data-i18n-placeholder="<strong></strong>"></span></p>
|
||||||
<p class="help-block" data-i18n="optionsCustomFieldsConfirmationHelpText"></p>
|
<p class="help-block" data-i18n="optionsCustomFieldsConfirmationHelpText"></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
|
|
@ -597,14 +597,16 @@
|
||||||
|
|
||||||
<div class="card my-4 shadow">
|
<div class="card my-4 shadow">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p>
|
<div>
|
||||||
<span data-i18n="optionsSitePreferencesTabHelpTextFirst"></span>
|
<p data-i18n="optionsSitePreferencesTabHelpTextFirst"></p>
|
||||||
<li><span data-i18n="optionsSitePreferencesTabHelpTextSecond"></span></li>
|
<ul>
|
||||||
<li><span data-i18n="optionsSitePreferencesTabHelpTextThird"></span></li>
|
<li><span data-i18n="optionsSitePreferencesTabHelpTextSecond"></span></li>
|
||||||
<li><span data-i18n="optionsSitePreferencesTabHelpTextFourth"></span></li>
|
<li><span data-i18n="optionsSitePreferencesTabHelpTextThird"></span></li>
|
||||||
<li><span data-i18n="optionsSitePreferencesImprovedInputFieldDetectionHelpText"></span></li>
|
<li><span data-i18n="optionsSitePreferencesTabHelpTextFourth"></span></li>
|
||||||
</p>
|
<li><span data-i18n="optionsSitePreferencesImprovedInputFieldDetectionHelpText"></span></li>
|
||||||
<hr class="mt-0" />
|
</ul>
|
||||||
|
</div>
|
||||||
|
<hr class="mt-0">
|
||||||
|
|
||||||
<form class="was-validated">
|
<form class="was-validated">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
|
|
@ -659,7 +661,7 @@
|
||||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<p><span data-i18n="optionsSitePreferencesConfirmation" i18n-placeholder="<strong></strong>"></span></p>
|
<p><span data-i18n="optionsSitePreferencesConfirmation" data-i18n-placeholder="<strong></strong>"></span></p>
|
||||||
<p class="help-block" data-i18n="optionsSitePreferencesConfirmationHelpText"></p>
|
<p class="help-block" data-i18n="optionsSitePreferencesConfirmationHelpText"></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
|
|
@ -699,14 +701,14 @@
|
||||||
<a target="_blank" href="https://github.com/keepassxreboot/keepassxc-browser" data-i18n="[title]openNewTab" tabindex="9">
|
<a target="_blank" href="https://github.com/keepassxreboot/keepassxc-browser" data-i18n="[title]openNewTab" tabindex="9">
|
||||||
<span data-i18n="optionsAboutGitHub"></span></a>
|
<span data-i18n="optionsAboutGitHub"></span></a>
|
||||||
</p>
|
</p>
|
||||||
<hr class="mt-0" />
|
<hr class="mt-0">
|
||||||
<p>
|
<p>
|
||||||
<span data-i18n="optionsAboutExtensionVersion" i18n-placeholder="<em class='versionCIP'></em>"></span>
|
<span data-i18n="optionsAboutExtensionVersion" data-i18n-placeholder="<em class='versionCIP'></em>"></span>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<span data-i18n="optionsAboutKeePassXCVersion" i18n-placeholder="<em class='versionKPH'></em>"></span>
|
<span data-i18n="optionsAboutKeePassXCVersion" data-i18n-placeholder="<em class='versionKPH'></em>"></span>
|
||||||
</p>
|
</p>
|
||||||
<hr class="mt-0" />
|
<hr class="mt-0">
|
||||||
<p>
|
<p>
|
||||||
<span data-i18n="optionsAboutContributors"></span>:<br>
|
<span data-i18n="optionsAboutContributors"></span>:<br>
|
||||||
<a target="_blank" href="https://github.com/pfn/" data-i18n="[title]openNewTab" tabindex="10">Perry Nguyen</a>,
|
<a target="_blank" href="https://github.com/pfn/" data-i18n="[title]openNewTab" tabindex="10">Perry Nguyen</a>,
|
||||||
|
|
@ -737,7 +739,7 @@
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p>
|
<p>
|
||||||
<a target="_blank" href="https://github.com/keepassxreboot/keepassxc-browser/issues/new" tabindex="14"><span data-i18n="optionsAboutCreateNewIssue"></span></a>
|
<a target="_blank" href="https://github.com/keepassxreboot/keepassxc-browser/issues/new" tabindex="14"><span data-i18n="optionsAboutCreateNewIssue"></span></a>
|
||||||
<br /><span data-i18n="optionsAboutDebugInfo"></span>:
|
<br><span data-i18n="optionsAboutDebugInfo"></span>:
|
||||||
</p>
|
</p>
|
||||||
<p id="versionInfo" class="float-left">KeePassXC - <span class="kpxcVersion"></span>
|
<p id="versionInfo" class="float-left">KeePassXC - <span class="kpxcVersion"></span>
|
||||||
<br>KeePassXC-Browser - <span class="kpxcbrVersion"></span>
|
<br>KeePassXC-Browser - <span class="kpxcbrVersion"></span>
|
||||||
|
|
|
||||||
|
|
@ -31,8 +31,6 @@ options.initMenu = function() {
|
||||||
|
|
||||||
sideBarLinks.forEach(function(elem) {
|
sideBarLinks.forEach(function(elem) {
|
||||||
elem.addEventListener('click', function(e) {
|
elem.addEventListener('click', function(e) {
|
||||||
e.preventDefault();
|
|
||||||
|
|
||||||
sideBarLinks.forEach(t => t.parentElement.classList.remove('active'));
|
sideBarLinks.forEach(t => t.parentElement.classList.remove('active'));
|
||||||
elem.parentElement.classList.add('active');
|
elem.parentElement.classList.add('active');
|
||||||
tabs.forEach(t => t.hide());
|
tabs.forEach(t => t.hide());
|
||||||
|
|
@ -44,6 +42,10 @@ options.initMenu = function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
$('div.tab').show();
|
$('div.tab').show();
|
||||||
|
|
||||||
|
if (window.location.hash !== '') {
|
||||||
|
document.querySelector(`a[href='${window.location.hash}']`)?.click();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
options.saveSetting = async function(name) {
|
options.saveSetting = async function(name) {
|
||||||
|
|
@ -232,7 +234,7 @@ options.initGeneralSettings = function() {
|
||||||
const dialogImportSettingsModal = new bootstrap.Modal($('#dialogImportSettings'),
|
const dialogImportSettingsModal = new bootstrap.Modal($('#dialogImportSettings'),
|
||||||
{ keyboard: true, show: false, backdrop: true });
|
{ keyboard: true, show: false, backdrop: true });
|
||||||
|
|
||||||
$('#importSettingsButton').addEventListener('click', function(e) {
|
$('#importSettingsButton').addEventListener('click', function() {
|
||||||
var link = document.createElement('input');
|
var link = document.createElement('input');
|
||||||
link.setAttribute('type', 'file');
|
link.setAttribute('type', 'file');
|
||||||
link.onchange = function(e) {
|
link.onchange = function(e) {
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,10 @@
|
||||||
<head>
|
<head>
|
||||||
<title data-i18n="popupTitle"></title>
|
<title data-i18n="popupTitle"></title>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<link rel="stylesheet" href="../css/colors.css" />
|
<link rel="stylesheet" href="../css/colors.css">
|
||||||
<link rel="stylesheet" href="../bootstrap/bootstrap.min.css" />
|
<link rel="stylesheet" href="../bootstrap/bootstrap.min.css">
|
||||||
<link rel="stylesheet" href="../fonts/fork-awesome.min.css" />
|
<link rel="stylesheet" href="../fonts/fork-awesome.min.css">
|
||||||
<link rel="stylesheet" href="shortcuts.css" />
|
<link rel="stylesheet" href="shortcuts.css">
|
||||||
<link rel="icon" type="image/png" href="../icons/keepassxc_32x32.png" sizes="32x32">
|
<link rel="icon" type="image/png" href="../icons/keepassxc_32x32.png" sizes="32x32">
|
||||||
<link rel="icon" type="image/png" href="../icons/keepassxc_64x64.png" sizes="64x64">
|
<link rel="icon" type="image/png" href="../icons/keepassxc_64x64.png" sizes="64x64">
|
||||||
<link rel="icon" type="image/png" href="../icons/keepassxc_96x96.png" sizes="96x96">
|
<link rel="icon" type="image/png" href="../icons/keepassxc_96x96.png" sizes="96x96">
|
||||||
|
|
@ -20,36 +20,36 @@
|
||||||
<div class="conf-container">
|
<div class="conf-container">
|
||||||
<div class="conf-title">
|
<div class="conf-title">
|
||||||
<div id="icon">
|
<div id="icon">
|
||||||
<img src="/icons/keepassxc_19x19.png" alt="logo" />
|
<img src="/icons/keepassxc_19x19.png" alt="logo">
|
||||||
</div>
|
</div>
|
||||||
<div id="title">
|
<div id="title">
|
||||||
<h5 class="muted"><span data-i18n="optionsConfigureShortcuts"/></h5>
|
<h5 class="muted"><span data-i18n="optionsConfigureShortcuts"></span></h5>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr>
|
||||||
<div class="conf-content">
|
<div class="conf-content">
|
||||||
<div class="conf-row">
|
<div class="conf-row">
|
||||||
<div><label for="fill_username_password" data-i18n="contextMenuFillUsernameAndPassword"></label></div>
|
<div><label for="fill_username_password" data-i18n="contextMenuFillUsernameAndPassword"></label></div>
|
||||||
<input type="text" id="fill_username_password"/>
|
<input type="text" id="fill_username_password">
|
||||||
<button class="btn btn-sm btn-primary" id="buttonSaveUserandPass" type="button"><i class="fa fa-save" aria-hidden="true"></i> <span data-i18n="optionsButtonSave"/></button>
|
<button class="btn btn-sm btn-primary" id="buttonSaveUserandPass" type="button"><i class="fa fa-save" aria-hidden="true"></i> <span data-i18n="optionsButtonSave"></span></button>
|
||||||
<button class="btn btn-sm btn-danger"><i class="fa fa-remove" aria-hidden="true"></i> <span data-i18n="optionsButtonReset"></span></button>
|
<button class="btn btn-sm btn-danger"><i class="fa fa-remove" aria-hidden="true"></i> <span data-i18n="optionsButtonReset"></span></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="conf-row">
|
<div class="conf-row">
|
||||||
<div><label for="fill_password" data-i18n="contextMenuFillPassword"></label></div>
|
<div><label for="fill_password" data-i18n="contextMenuFillPassword"></label></div>
|
||||||
<input type="text" id="fill_password"/>
|
<input type="text" id="fill_password">
|
||||||
<button class="btn btn-sm btn-primary" id="buttonSavePass" type="button"><i class="fa fa-save" aria-hidden="true"></i> <span data-i18n="optionsButtonSave"/></button>
|
<button class="btn btn-sm btn-primary" id="buttonSavePass" type="button"><i class="fa fa-save" aria-hidden="true"></i> <span data-i18n="optionsButtonSave"></span></button>
|
||||||
<button class="btn btn-sm btn-danger"><i class="fa fa-remove" aria-hidden="true"></i> <span data-i18n="optionsButtonReset"></span></button>
|
<button class="btn btn-sm btn-danger"><i class="fa fa-remove" aria-hidden="true"></i> <span data-i18n="optionsButtonReset"></span></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="conf-row">
|
<div class="conf-row">
|
||||||
<div><label for="fill_totp" data-i18n="contextMenuFillTOTP"></label></div>
|
<div><label for="fill_totp" data-i18n="contextMenuFillTOTP"></label></div>
|
||||||
<input type="text" id="fill_totp"/>
|
<input type="text" id="fill_totp">
|
||||||
<button class="btn btn-sm btn-primary" id="buttonSaveTotp" type="button"><i class="fa fa-save" aria-hidden="true"></i> <span data-i18n="optionsButtonSave"/></button>
|
<button class="btn btn-sm btn-primary" id="buttonSaveTotp" type="button"><i class="fa fa-save" aria-hidden="true"></i> <span data-i18n="optionsButtonSave"></span></button>
|
||||||
<button class="btn btn-sm btn-danger"><i class="fa fa-remove" aria-hidden="true"></i> <span data-i18n="optionsButtonReset"></span></button>
|
<button class="btn btn-sm btn-danger"><i class="fa fa-remove" aria-hidden="true"></i> <span data-i18n="optionsButtonReset"></span></button>
|
||||||
</div>
|
</div>
|
||||||
<div class="conf-row">
|
<div class="conf-row">
|
||||||
<div><label for="show_password_generator" data-i18n="contextMenuShowPasswordGenerator"></label></div>
|
<div><label for="show_password_generator" data-i18n="contextMenuShowPasswordGenerator"></label></div>
|
||||||
<input type="text" id="show_password_generator"/>
|
<input type="text" id="show_password_generator">
|
||||||
<button class="btn btn-sm btn-primary" id="buttonSaveGenerator" type="button"><i class="fa fa-save" aria-hidden="true"></i> <span data-i18n="optionsButtonSave"/></button>
|
<button class="btn btn-sm btn-primary" id="buttonSaveGenerator" type="button"><i class="fa fa-save" aria-hidden="true"></i> <span data-i18n="optionsButtonSave"></span></button>
|
||||||
<button class="btn btn-sm btn-danger"><i class="fa fa-remove" aria-hidden="true"></i> <span data-i18n="optionsButtonReset"></span></button>
|
<button class="btn btn-sm btn-danger"><i class="fa fa-remove" aria-hidden="true"></i> <span data-i18n="optionsButtonReset"></span></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -152,15 +152,15 @@ code {
|
||||||
}
|
}
|
||||||
|
|
||||||
#login-filter {
|
#login-filter {
|
||||||
outline: none;
|
outline: none;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
padding: 2px 10px;
|
padding: 2px 10px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#right-align {
|
.right-align {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,10 @@
|
||||||
<head>
|
<head>
|
||||||
<title data-i18n="popupTitle"></title>
|
<title data-i18n="popupTitle"></title>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<link rel="stylesheet" href="../css/colors.css" />
|
<link rel="stylesheet" href="../css/colors.css">
|
||||||
<link rel="stylesheet" href="popup.css" />
|
<link rel="stylesheet" href="popup.css">
|
||||||
<link rel="stylesheet" href="../bootstrap/bootstrap.min.css" />
|
<link rel="stylesheet" href="../bootstrap/bootstrap.min.css">
|
||||||
<link rel="stylesheet" href="../fonts/fork-awesome.min.css" />
|
<link rel="stylesheet" href="../fonts/fork-awesome.min.css">
|
||||||
<script src="../common/browser-polyfill.min.js"></script>
|
<script src="../common/browser-polyfill.min.js"></script>
|
||||||
<script src="../common/global.js"></script>
|
<script src="../common/global.js"></script>
|
||||||
<script src="../bootstrap/bootstrap.min.js"></script>
|
<script src="../bootstrap/bootstrap.min.js"></script>
|
||||||
|
|
@ -32,38 +32,32 @@
|
||||||
<div id="popup-alerts">
|
<div id="popup-alerts">
|
||||||
<div id="update-available" class="alert alert-warning">
|
<div id="update-available" class="alert alert-warning">
|
||||||
<span data-i18n="popupUpdateAvailable"></span>
|
<span data-i18n="popupUpdateAvailable"></span>
|
||||||
<br />
|
<br>
|
||||||
<a target="_blank" class="alert-link" href="https://keepassxc.org/download"><span data-i18n="popupDownloadNewVersion"></span></a>.
|
<a target="_blank" class="alert-link" href="https://keepassxc.org/download"><span data-i18n="popupDownloadNewVersion"></span></a>.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="getting-started-guide" class="alert alert-info alert-dismissible">
|
<div id="getting-started-guide" class="alert alert-info alert-dismissible">
|
||||||
<span data-i18n="popupGettingStartedText"></span>
|
<span data-i18n="popupGettingStartedText"></span>
|
||||||
<br />
|
<br>
|
||||||
<a target="_blank" class="alert-link" href="https://keepassxc.org/docs/KeePassXC_GettingStarted.html#_setup_browser_integration"><span data-i18n="popupGettingStartedLinkText"></span></a>
|
<a target="_blank" class="alert-link" href="https://keepassxc.org/docs/KeePassXC_GettingStarted.html#_setup_browser_integration"><span data-i18n="popupGettingStartedLinkText"></span></a>
|
||||||
<button type="button" id="getting-started-alert-close-button" class="btn-close" data-bs-dismiss="alert" data-i18n="[title]popupAlertHide"></button>
|
<button type="button" id="getting-started-alert-close-button" class="btn-close" data-bs-dismiss="alert" data-i18n="[title]popupAlertHide"></button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="troubleshooting-guide" class="alert alert-info alert-dismissible">
|
<div id="troubleshooting-guide" class="alert alert-info alert-dismissible">
|
||||||
<span data-i18n="popupTroubleshootingText"></span>
|
<span data-i18n="popupTroubleshootingText"></span>
|
||||||
<br />
|
<br>
|
||||||
<a target="_blank" class="alert-link" href="https://github.com/keepassxreboot/keepassxc-browser/wiki/Troubleshooting-guide"><span data-i18n="popupTroubleshootingLinkText"></span></a>
|
<a target="_blank" class="alert-link" href="https://github.com/keepassxreboot/keepassxc-browser/wiki/Troubleshooting-guide"><span data-i18n="popupTroubleshootingLinkText"></span></a>
|
||||||
<button type="button" id="troubleshooting-guide-alert-close-button" class="btn-close" data-bs-dismiss="alert" data-i18n="[title]popupAlertHide"></button>
|
<button type="button" id="troubleshooting-guide-alert-close-button" class="btn-close" data-bs-dismiss="alert" data-i18n="[title]popupAlertHide"></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="update-available" class="alert alert-warning">
|
|
||||||
<span data-i18n="popupUpdateAvailable"></span>
|
|
||||||
<br />
|
|
||||||
<a target="_blank" class="alert-link" href="https://keepassxc.org/download"><span data-i18n="popupDownloadNewVersion"></span></a>.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="initial-state">
|
<div id="initial-state">
|
||||||
<p><div class="loader"></div> <span data-i18n="popupCheckingStatus"/></p>
|
<div class="loader"></div> <p data-i18n="popupCheckingStatus"></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="not-configured" style="display: none">
|
<div id="not-configured" style="display: none">
|
||||||
<p data-i18n="popupNotConfigured"></p>
|
<p data-i18n="popupNotConfigured"></p>
|
||||||
<div id="right-align">
|
<div class="right-align">
|
||||||
<button id="connect-button" class="btn btn-sm btn-primary"><i class="fa fa-link" aria-hidden="true"></i> <span data-i18n="popupConnectButton"></span></button>
|
<button id="connect-button" class="btn btn-sm btn-primary"><i class="fa fa-link" aria-hidden="true"></i> <span data-i18n="popupConnectButton"></span></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -74,18 +68,18 @@
|
||||||
<code id="need-reconfigure-message"></code>
|
<code id="need-reconfigure-message"></code>
|
||||||
</p>
|
</p>
|
||||||
<p data-i18n="popupNeedReconfigureMessage"></p>
|
<p data-i18n="popupNeedReconfigureMessage"></p>
|
||||||
<div id="right-align">
|
<div class="right-align">
|
||||||
<button id="reconnect-button" class="btn btn-sm btn-primary"><i class="fa fa-refresh" aria-hidden="true"></i> <span data-i18n="popupReconnectButton"></span></button>
|
<button id="reconnect-button" class="btn btn-sm btn-primary"><i class="fa fa-refresh" aria-hidden="true"></i> <span data-i18n="popupReconnectButton"></span></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="configured-not-associated" style="display: none">
|
<div id="configured-not-associated" style="display: none">
|
||||||
<span data-i18n="popupConfiguredNotAssociated" i18n-placeholder="<span class='bg-warning' id='unassociated-identifier'></span>"></span>
|
<span data-i18n="popupConfiguredNotAssociated" data-i18n-placeholder="<span class='bg-warning' id='unassociated-identifier'></span>"></span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="configured-and-associated" style="display: none">
|
<div id="configured-and-associated" style="display: none">
|
||||||
<p data-i18n="popupConfiguredAndAssociated" i18n-placeholder="<span class='bg-success' id='associated-identifier'></span>"></p>
|
<p data-i18n="popupConfiguredAndAssociated" data-i18n-placeholder="<span class='bg-success' id='associated-identifier'></span>"></p>
|
||||||
<div id="right-align">
|
<div class="right-align">
|
||||||
<button id="redetect-fields-button" class="btn btn-sm btn-primary"><i class="fa fa-list-alt" aria-hidden="true"></i> <span data-i18n="popupRedetectButton"></span></button>
|
<button id="redetect-fields-button" class="btn btn-sm btn-primary"><i class="fa fa-list-alt" aria-hidden="true"></i> <span data-i18n="popupRedetectButton"></span></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -95,7 +89,7 @@
|
||||||
<p style="margin-left: 1em">
|
<p style="margin-left: 1em">
|
||||||
<code id="error-message"></code>
|
<code id="error-message"></code>
|
||||||
</p>
|
</p>
|
||||||
<div id="right-align">
|
<div class="right-align">
|
||||||
<button id="reload-status-button" class="btn btn-sm btn-primary"><i class="fa fa-refresh" aria-hidden="true"></i> <span data-i18n="popupReloadButton"></span></button>
|
<button id="reload-status-button" class="btn btn-sm btn-primary"><i class="fa fa-refresh" aria-hidden="true"></i> <span data-i18n="popupReloadButton"></span></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -105,17 +99,17 @@
|
||||||
<p style="margin-left: 1em">
|
<p style="margin-left: 1em">
|
||||||
<code id="database-error-message"></code>
|
<code id="database-error-message"></code>
|
||||||
</p>
|
</p>
|
||||||
<div id="right-align">
|
<div class="right-align">
|
||||||
<button id="reopen-database-button" class="btn btn-sm btn-primary"><i class="fa fa-lock" aria-hidden="true"></i> <span data-i18n="popupReopenButton"></span></button>
|
<button id="reopen-database-button" class="btn btn-sm btn-primary"><i class="fa fa-lock" aria-hidden="true"></i> <span data-i18n="popupReopenButton"></span></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="username-field-detected" style="display: none">
|
<div id="username-field-detected" style="display: none">
|
||||||
<hr />
|
<hr>
|
||||||
<p data-i18n="popupUsernameFieldDetected"></p>
|
<p data-i18n="popupUsernameFieldDetected"></p>
|
||||||
<div id="right-align">
|
<div class="right-align">
|
||||||
<button id="username-only-button" class="btn btn-sm btn-primary"><i class="fa fa-plus" aria-hidden="true"></i> <span data-i18n="popupUsernameButton"></span></button>
|
<button id="username-only-button" class="btn btn-sm btn-primary"><i class="fa fa-plus" aria-hidden="true"></i> <span data-i18n="popupUsernameButton"></span></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
||||||
|
|
@ -30,8 +30,7 @@ function statusResponse(r) {
|
||||||
|
|
||||||
if (r.showTroubleshootingGuideAlert && reloadCount >= 2) {
|
if (r.showTroubleshootingGuideAlert && reloadCount >= 2) {
|
||||||
$('#troubleshooting-guide').show();
|
$('#troubleshooting-guide').show();
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
$('#troubleshooting-guide').hide();
|
$('#troubleshooting-guide').hide();
|
||||||
}
|
}
|
||||||
} else if (r.keePassXCAvailable && r.databaseClosed) {
|
} else if (r.keePassXCAvailable && r.databaseClosed) {
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,10 @@
|
||||||
<head>
|
<head>
|
||||||
<title data-i18n="popupTitle"></title>
|
<title data-i18n="popupTitle"></title>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<link rel="stylesheet" href="../css/colors.css" />
|
<link rel="stylesheet" href="../css/colors.css">
|
||||||
<link rel="stylesheet" href="popup.css" />
|
<link rel="stylesheet" href="popup.css">
|
||||||
<link rel="stylesheet" href="../bootstrap/bootstrap.min.css" />
|
<link rel="stylesheet" href="../bootstrap/bootstrap.min.css">
|
||||||
<link rel="stylesheet" href="../fonts/fork-awesome.min.css" />
|
<link rel="stylesheet" href="../fonts/fork-awesome.min.css">
|
||||||
<script src="../common/browser-polyfill.min.js"></script>
|
<script src="../common/browser-polyfill.min.js"></script>
|
||||||
<script src="../common/global.js"></script>
|
<script src="../common/global.js"></script>
|
||||||
<script src="../bootstrap/bootstrap.min.js"></script>
|
<script src="../bootstrap/bootstrap.min.js"></script>
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
<div id="update-available" class="alert alert-warning">
|
<div id="update-available" class="alert alert-warning">
|
||||||
<span data-i18n="popupUpdateAvailable"></span>
|
<span data-i18n="popupUpdateAvailable"></span>
|
||||||
<br />
|
<br>
|
||||||
<a target="_blank" class="alert-link" href="https://keepassxc.org/download"><span data-i18n="popupDownloadNewVersion"></span></a>.
|
<a target="_blank" class="alert-link" href="https://keepassxc.org/download"><span data-i18n="popupDownloadNewVersion"></span></a>.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="database-not-opened" style="display: none">
|
<div id="database-not-opened" style="display: none">
|
||||||
<p data-i18n="popupErrorEncountered"/>
|
<p data-i18n="popupErrorEncountered"></p>
|
||||||
<p style="margin-left: 1em">
|
<p style="margin-left: 1em">
|
||||||
<code id="database-error-message"></code>
|
<code id="database-error-message"></code>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,10 @@
|
||||||
<head>
|
<head>
|
||||||
<title data-i18n="popupTitle"></title>
|
<title data-i18n="popupTitle"></title>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<link rel="stylesheet" href="../css/colors.css" />
|
<link rel="stylesheet" href="../css/colors.css">
|
||||||
<link rel="stylesheet" href="popup.css" />
|
<link rel="stylesheet" href="popup.css">
|
||||||
<link rel="stylesheet" href="../bootstrap/bootstrap.min.css" />
|
<link rel="stylesheet" href="../bootstrap/bootstrap.min.css">
|
||||||
<link rel="stylesheet" href="../fonts/fork-awesome.min.css" />
|
<link rel="stylesheet" href="../fonts/fork-awesome.min.css">
|
||||||
<script src="../common/browser-polyfill.min.js"></script>
|
<script src="../common/browser-polyfill.min.js"></script>
|
||||||
<script src="../common/global.js"></script>
|
<script src="../common/global.js"></script>
|
||||||
<script src="../bootstrap/bootstrap.min.js"></script>
|
<script src="../bootstrap/bootstrap.min.js"></script>
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
<div id="update-available" class="alert alert-warning">
|
<div id="update-available" class="alert alert-warning">
|
||||||
<span data-i18n="popupUpdateAvailable"></span>
|
<span data-i18n="popupUpdateAvailable"></span>
|
||||||
<br />
|
<br>
|
||||||
<a target="_blank" class="alert-link" href="https://keepassxc.org/download"><span data-i18n="popupDownloadNewVersion"></span></a>.
|
<a target="_blank" class="alert-link" href="https://keepassxc.org/download"><span data-i18n="popupDownloadNewVersion"></span></a>.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="database-not-opened" style="display: none">
|
<div id="database-not-opened" style="display: none">
|
||||||
<p data-i18n="popupErrorEncountered"/>
|
<p data-i18n="popupErrorEncountered"></p>
|
||||||
<p style="margin-left: 1em">
|
<p style="margin-left: 1em">
|
||||||
<code id="database-error-message"></code>
|
<code id="database-error-message"></code>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
||||||
|
|
@ -20,38 +20,32 @@ function assertRegex(func, expected, card, testName) {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function assertInputFields(localDiv, expectedFieldCount, actionElementId) {
|
async function assertInputFields(localDiv, expectedFieldCount, actionElementId) {
|
||||||
return new Promise(async (resolve) => {
|
const div = document.getElementById(localDiv);
|
||||||
const div = document.getElementById(localDiv);
|
div.style.display = 'block';
|
||||||
div.style.display = 'block';
|
|
||||||
|
|
||||||
// An user interaction is required before testing
|
// An user interaction is required before testing
|
||||||
if (actionElementId) {
|
if (actionElementId) {
|
||||||
const actionElement = div.querySelector(actionElementId);
|
const actionElement = div.querySelector(actionElementId);
|
||||||
if (actionElement) {
|
if (actionElement) {
|
||||||
actionElement.click();
|
actionElement.click();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const inputs = kpxcObserverHelper.getInputs(div);
|
const inputs = kpxcObserverHelper.getInputs(div);
|
||||||
kpxcAssert(inputs.length, expectedFieldCount, Tests.INPUT_FIELDS, `getInputs() for ${localDiv} with ${expectedFieldCount} fields`);
|
kpxcAssert(inputs.length, expectedFieldCount, Tests.INPUT_FIELDS, `getInputs() for ${localDiv} with ${expectedFieldCount} fields`);
|
||||||
|
|
||||||
div.style.display = 'none';
|
div.style.display = 'none';
|
||||||
resolve();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function assertPasswordChangeFields(localDiv, expectedNewPassword) {
|
async function assertPasswordChangeFields(localDiv, expectedNewPassword) {
|
||||||
return new Promise(async (resolve) => {
|
const div = document.getElementById(localDiv);
|
||||||
const div = document.getElementById(localDiv);
|
div.style.display = 'block';
|
||||||
div.style.display = 'block';
|
|
||||||
|
|
||||||
const inputs = kpxcObserverHelper.getInputs(div, true);
|
const inputs = kpxcObserverHelper.getInputs(div, true);
|
||||||
const newPassword = kpxcForm.getNewPassword(inputs);
|
const newPassword = kpxcForm.getNewPassword(inputs);
|
||||||
kpxcAssert(newPassword, expectedNewPassword, Tests.PASSWORD_CHANGE, `New password matches for ${localDiv}`);
|
kpxcAssert(newPassword, expectedNewPassword, Tests.PASSWORD_CHANGE, `New password matches for ${localDiv}`);
|
||||||
|
|
||||||
div.style.display = 'none';
|
div.style.display = 'none';
|
||||||
resolve();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function assertTOTPField(classStr, properties, testName, expectedResult) {
|
async function assertTOTPField(classStr, properties, testName, expectedResult) {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
const fs = require('@npmcli/fs')
|
const fs = require('@npmcli/fs');
|
||||||
|
|
||||||
const DEST = 'keepassxc-browser/tests';
|
const DEST = 'keepassxc-browser/tests';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
const fs = require('@npmcli/fs')
|
const fs = require('@npmcli/fs');
|
||||||
|
|
||||||
const DEST = 'keepassxc-browser/tests';
|
const DEST = 'keepassxc-browser/tests';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,10 +4,10 @@
|
||||||
<title data-i18n="popupTitle"></title>
|
<title data-i18n="popupTitle"></title>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
<link rel="stylesheet" href="../css/colors.css" />
|
<link rel="stylesheet" href="../css/colors.css">
|
||||||
<link rel="stylesheet" href="../bootstrap/bootstrap.min.css" />
|
<link rel="stylesheet" href="../bootstrap/bootstrap.min.css">
|
||||||
<link rel="stylesheet" href="../fonts/fork-awesome.min.css" />
|
<link rel="stylesheet" href="../fonts/fork-awesome.min.css">
|
||||||
<link rel="stylesheet" href="../options/options.css" />
|
<link rel="stylesheet" href="../options/options.css">
|
||||||
<link rel="icon" type="image/png" href="../icons/keepassxc_32x32.png" sizes="32x32">
|
<link rel="icon" type="image/png" href="../icons/keepassxc_32x32.png" sizes="32x32">
|
||||||
<link rel="icon" type="image/png" href="../icons/keepassxc_64x64.png" sizes="64x64">
|
<link rel="icon" type="image/png" href="../icons/keepassxc_64x64.png" sizes="64x64">
|
||||||
<link rel="icon" type="image/png" href="../icons/keepassxc_96x96.png" sizes="96x96">
|
<link rel="icon" type="image/png" href="../icons/keepassxc_96x96.png" sizes="96x96">
|
||||||
|
|
@ -30,14 +30,12 @@
|
||||||
<script defer src="../content/username-field.js"></script>
|
<script defer src="../content/username-field.js"></script>
|
||||||
<script defer src="assert.js"></script>
|
<script defer src="assert.js"></script>
|
||||||
<script defer src="tests.js"></script>
|
<script defer src="tests.js"></script>
|
||||||
|
<style>
|
||||||
|
.hiddenOne {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<style>
|
|
||||||
.hiddenOne {
|
|
||||||
visibility: hidden;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<body class="pt-3 pb-5">
|
<body class="pt-3 pb-5">
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
@ -151,46 +149,46 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="passwordChange1" style="display: none;">
|
<div id="passwordChange1" style="display: none;">
|
||||||
<br /><input type="password" name="Old password" value="oldPassword">
|
<br><input type="password" name="Old password" value="oldPassword">
|
||||||
<br /><input type="password" name="New password" value="newPassword">
|
<br><input type="password" name="New password" value="newPassword">
|
||||||
<br /><input type="password" name="Repeat password" value="newPassword">
|
<br><input type="password" name="Repeat password" value="newPassword">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="passwordChange2" style="display: none;">
|
<div id="passwordChange2" style="display: none;">
|
||||||
<br /><input type="password" name="New password" value="newPassword">
|
<br><input type="password" name="New password" value="newPassword">
|
||||||
<br /><input type="password" name="Repeat password" value="newPassword">
|
<br><input type="password" name="Repeat password" value="newPassword">
|
||||||
<br /><input type="password" name="Old password" value="oldPassword">
|
<br><input type="password" name="Old password" value="oldPassword">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="passwordChange3" style="display: none;">
|
<div id="passwordChange3" style="display: none;">
|
||||||
<form action="secondPage">
|
<form action="secondPage">
|
||||||
<br /><input type="password" name="Old password" value="oldPassword">
|
<br><input type="password" name="Old password" value="oldPassword">
|
||||||
<br /><input type="password" name="New password" value="newPassword">
|
<br><input type="password" name="New password" value="newPassword">
|
||||||
<br /><input type="password" name="Repeat password" value="newPassword">
|
<br><input type="password" name="Repeat password" value="newPassword">
|
||||||
<br /><input type="submit" value="Change password">
|
<br><input type="submit" value="Change password">
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="passwordChange4" style="display: none;">
|
<div id="passwordChange4" style="display: none;">
|
||||||
<form action="secondPage">
|
<form action="secondPage">
|
||||||
<br /><input type="password" name="New password" value="newPassword">
|
<br><input type="password" name="New password" value="newPassword">
|
||||||
<br /><input type="password" name="Repeat password" value="newPassword">
|
<br><input type="password" name="Repeat password" value="newPassword">
|
||||||
<br /><input type="password" name="Old password" value="oldPassword">
|
<br><input type="password" name="Old password" value="oldPassword">
|
||||||
<br /><input type="submit" value="Change password">
|
<br><input type="submit" value="Change password">
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="passwordChange5" style="display: none;">
|
<div id="passwordChange5" style="display: none;">
|
||||||
<form action="firstForm">
|
<form action="firstForm">
|
||||||
<br /><input type="password" name="Old password" value="oldPassword">
|
<br><input type="password" name="Old password" value="oldPassword">
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<form action="secondForm">
|
<form action="secondForm">
|
||||||
<br /><input type="password" name="New password" value="newPassword">
|
<br><input type="password" name="New password" value="newPassword">
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<form action="thirdForm">
|
<form action="thirdForm">
|
||||||
<br /><input type="password" name="Repeat password" value="newPassword">
|
<br><input type="password" name="Repeat password" value="newPassword">
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue