mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Update to 1.9.9
This commit is contained in:
parent
523a27ba20
commit
8c84ceef26
34 changed files with 1306 additions and 57 deletions
16
CHANGELOG
16
CHANGELOG
|
|
@ -1,3 +1,19 @@
|
|||
1.9.9 (2025-06-22)
|
||||
=========================
|
||||
- Add support for opening keyboard shortcuts page with Firefox [#2524]
|
||||
- Add submit button exception for OpenAI login page [#2542]
|
||||
- Add styling changes to settings pages [#2553]
|
||||
- Add Getting Started page when extension is installed for the first time [#2570]
|
||||
- Fix retrieving credentials when switching databases in unlock dialog [#2534]
|
||||
- Fix username input field detection with Credential Banner [#2525]
|
||||
- Fix submit button detection [#2531]
|
||||
- Fix browser integration document link (thanks joetor5) [#2548]
|
||||
- Fix querying forms when saving them temporarily [#2566]
|
||||
- Fix checking input field width with segmeted TOTP fields [#2571]
|
||||
- Fix detecting password input on Atlassian login page [#2574]
|
||||
- Fix checking managed settings [#2577]
|
||||
- Fix Global Auto-Type trigger search parameters [#2585]
|
||||
|
||||
1.9.8 (2025-04-20)
|
||||
=========================
|
||||
- Add support for autocomplete=username with single input fields [#2521]
|
||||
|
|
|
|||
4
dist/manifest_chromium.json
vendored
4
dist/manifest_chromium.json
vendored
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"manifest_version": 3,
|
||||
"name": "KeePassXC-Browser",
|
||||
"version": "1.9.8",
|
||||
"version_name": "1.9.8",
|
||||
"version": "1.9.9",
|
||||
"version_name": "1.9.9",
|
||||
"minimum_chrome_version": "93",
|
||||
"description": "__MSG_extensionDescription__",
|
||||
"author": "KeePassXC Team",
|
||||
|
|
|
|||
2
dist/manifest_firefox.json
vendored
2
dist/manifest_firefox.json
vendored
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"name": "KeePassXC-Browser",
|
||||
"version": "1.9.8",
|
||||
"version": "1.9.9",
|
||||
"description": "__MSG_extensionDescription__",
|
||||
"author": "KeePassXC Team",
|
||||
"icons": {
|
||||
|
|
|
|||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Отхвърляне и показване на подразбирания диалогов прозорец за удостоверяване",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Подразбирани настройки",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Настройки | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Показване на лента в страницата, когато могат да бъдат запазвани нови регистрации",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Задаване като подразбирана добавка за пароли",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Задава KeePassXC-Browser като подразбирана добавка за управление на пароли на мрежовия четец.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Брой разрешени пренасочвания: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Заключване на хранилището",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Здравейте от KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Ръководството за първи стъпки ще ви помогне да започнете работа бързо.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Търсите по-изчерпателна документация? Ръководството за потребителя ще ви бъде от помощ.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Нуждаете се от помощ за отстраняване на неизправности със съчетаването с мрежовия четец? Вижте Ръководството за отстраняване на неизправности.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Здравейте от KeePassXC-Browser, официалната добавка за KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Разгледайте подразбираните настройки и направете желаните промени.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Ако сте нов потребител прочетете документацията.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Copy debug info to clipboard.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Zahodit a zobrazit výchozí dialog ověřování",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Nastavení | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Show a banner on the page when new credentials can be saved to the database",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Kolikrát může být ještě dále přesměrováno: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Zamknout databázi",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Kopiér fejlretningsoplysninger til udklipsholder.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Afvis og vis standard autentifikationsdialogen",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Indstillinger | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": " Vis et banner på siden, når nye loginoplysninger kan gemmes i databasen.",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Antal tilladte omdirigeringer: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Lås database",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Debug-Informationen in die Zwischenablage kopieren.",
|
||||
"message": "Debug-Informationen in die Zwischenablage kopieren",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Verwerfen und Standard-Authentifizierungsdialog anzeigen",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Standardeinstellungen",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Einstellungen | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Benachrichtigung anzeigen, wenn neue Anmeldedaten in der Datenbank gespeichert werden können",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Als Standard-Passwortmanager festlegen",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Legt den KeePassXC-Browser als Standard-Passwortmanager für den Browser fest.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Anzahl erlaubter Weiterleitungen: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Datenbank sperren",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Willkommen beim KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Unsere Einstiegsanleitung hilft Ihnen, schnell loszulegen.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Sie suchen eine umfassendere Dokumentation? Unser Benutzerhandbuch hilft Ihnen dabei.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Benötigen Sie Hilfe bei der Fehlersuche in der Browser-Integration? Lesen Sie den Leitfaden zur Fehlerbehebung.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Willkommen beim KeePassXC-Browser, der offiziellen Browsererweiterung für KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Bitte gehen Sie die Standardeinstellungen durch und wählen Sie alle von Ihnen gewünschten Optionen aus.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Sind Sie ein Neueinsteiger? Hier finden Sie Links zu unserer Dokumentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Copy debug info to clipboard.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Απόρριψη και εμφάνιση του προεπιλεγμένου διαλόγου ελέγχου ταυτότητας",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Ρυθμίσεις | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Show a banner on the page when new credentials can be saved to the database",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Αριθμός επιτρεπόμενων ανακατευθύνσεων: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Κλείδωμα βάσης δεδομένων",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Copy debug info to clipboard.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Dismiss and show the default authentication dialogue",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Settings | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Show a banner on the page when new credentials can be saved to the database",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Number of allowed redirects: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Lock database",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Copie la información de depuración al portapapeles.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Descartar y mostrar el diálogo de autenticación predeterminado",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Configuración | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Mostrar una pancarta en la página cuando nuevas credenciales puedan ser guardadas en la base de datos",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Número de redirecciones permitidas: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Bloquear base de datos",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
"description": "Add button title text on Site Preferences tab."
|
||||
},
|
||||
"editSitePreferenceButtonTitle": {
|
||||
"message": "Edit URL for this Site Preferences.",
|
||||
"message": "Muokkaa osoitetta tälle asetukselle.",
|
||||
"description": "Edit button title text on Site Preferences tab."
|
||||
},
|
||||
"allowIframeButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Poistu ja näytä autentikaation oletusdialogi",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Oletusasetukset",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Asetukset | KeePassXC-Browser ",
|
||||
"description": "Options page title."
|
||||
|
|
@ -691,7 +699,7 @@
|
|||
"description": "Add button text."
|
||||
},
|
||||
"optionsButtonEdit": {
|
||||
"message": "Edit",
|
||||
"message": "Muokkaa",
|
||||
"description": "Edit button text."
|
||||
},
|
||||
"optionsButtonUpdate": {
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Näytä ilmoituspalkki kun tietokantaan voidaan tallentaa uusia tietueita",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Aseta oletussalasanamanageriksi",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Asettaa KeePassXC-Browserin selaimen oletussalasanamanageriksi.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Uudelleenohjauksien sallittu määrä: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -915,7 +931,7 @@
|
|||
"description": "OTP field icon option help text."
|
||||
},
|
||||
"optionsHideIconsAlertText": {
|
||||
"message": "You can also hide icons manually when needed with shift+click.",
|
||||
"message": "Voit myös piilottaa ikonit halutessasi hiiren klikkauksella shift pohjassa.",
|
||||
"description": "Hide icons alert text text."
|
||||
},
|
||||
"optionsAutoRetrieveCredentialsHelpText": {
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Lukitse tietokanta",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Tervetuloa KeePassXC-Browseriin!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Aloitusoppaamme auttaa sinua pääsemään alkuun.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Etsitkö kattavampaa dokumentaatiota? Vilkaise käyttöohjeemme.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Onko selainlaajennuksessa ongelmia? Lue opas virhetilojen selvitykseen.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Tervetuloa KeePassXC-Browseriin, viralliseen KeePassXC:n selainlaajennukseen.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Ole hyvä ja käy läpi oletusasetukset, ja tarkista ovatko ne sinulle sopivat.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Oletko uusi käyttäjä? Tarkista linkit dokumentaatioomme.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Copier les informations de débogage dans le presse-papiers.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Annuler et afficher la fenêtre de connexion par défaut",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Paramètres | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Afficher un bandeau sur la page lorsque de nouveaux identifiants ont été enregistrés dans la base de données",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Nombre de redirections autorisées : $1 ",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Verrouiller la base de données",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "העתק מידע ניפוי באגים ללוח.",
|
||||
"message": "העתקת מידע ניפוי תקלים ללוח־הגזירים",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "ביטול והצגת תיבת דו־השיח אימות ברירת מחדל",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "הגדרות | דפדפן־KeePassXC",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "הצג כרזה בעמוד כאשר ניתן לשמור נתוני־אמנה חדשים במסד הנתונים.",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "מספר הסטות מותר: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "נעילת מסד נתונים",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Hibakeresési információk másolása a vágólapra.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Eltüntetés és az alapértelmezett hitelesítési párbeszédablak megjelenítése",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Beállítások | KeePassXC-böngésző",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Értesítés megjelenítése, amikor új hitelesítési adatokat lehet elmenteni az adatbázisba",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Átirányítások megengedett száma: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Adatbázis zárolása",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Salin info debug ke clipboard.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Tutup dan tampilkan dialog otentikasi bawaan",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Pengaturan | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Show a banner on the page when new credentials can be saved to the database",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Jumlah pengalihan yang diperbolehkan: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Kunci basis data",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Copia informazioni di debug negli appunti.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Ignora e visualizza la finestra di dialogo autenticazione predefinita",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Impostazioni | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Visualizza una notifica quando possono essere salvate nuove credenziali nel database",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Numero reindirizzamenti consentiti: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Blocca database",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "デバッグ情報をクリップボードにコピーします。",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "棄却してデフォルトの認証ダイアログを表示します",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "設定 | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "新しい資格情報をデータベースに保存できる場合、ページ上にバナーを表示する",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "許可するリダイレクト数: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "データベースをロック",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Copy debug info to clipboard.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "숨기고 기본 인증 대화 상자 표시",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "설정 | KeePassXC-브라우저",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Show a banner on the page when new credentials can be saved to the database",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "허용된 최대 전환 수: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "데이터베이스 잠금",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Copy debug info to clipboard.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Numatytojo autentifikavimo dialogo atmetimas ir rodymas",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Nustatymai | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Show a banner on the page when new credentials can be saved to the database",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Leidžiamų peradresavimų skaičius: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Užrakinti duomenų bazę",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Copy debug info to clipboard.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Avvis og vis standard autentiseringsdialog",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Innstillinger | KeePassXC–Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Show a banner on the page when new credentials can be saved to the database",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Antall tillatte omdirigeringer: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Lås database",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Foutopsporingsinformatie naar klembord kopiëren.",
|
||||
"message": "Foutopsporingsinformatie kopiëren naar klembord",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Sluiten en standaard dialoogvenster voor authenticatie tonen",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Standaardinstellingen",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Instellingen | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Toon een banner op de pagina wanneer nieuwe inloggegevens in de database kunnen worden opgeslagen",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Instellen als standaard wachtwoordbeheerder",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Stelt KeePassXC-Browser in als de standaard wachtwoordbeheerder voor de browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Aantal toegestane omleidingen: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Database vergrendelen",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welkom bij KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Onze snelstartgids (Getting Started Guide) helpt je snel aan de slag.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Op zoek naar meer uitgebreide documentatie? Onze gebruikershandleiding is er om je te helpen.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Hulp nodig bij de browserintegratie? Bekijk de handleiding voor probleemoplossing.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welkom bij KeePassXC-Browser, de officiële browserextensie voor KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Controleer de standaardinstellingen en selecteer al jouw voorkeursopties.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Ben je een nieuwe gebruiker? Gebruik de links naar onze documentatie.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Skopiuj informacje debugowania do schowka.",
|
||||
"message": "Skopiuj informacje debugowania do schowka",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -459,7 +459,7 @@
|
|||
"description": "Popup warning message link when KeePassXC version is not up-to-date."
|
||||
},
|
||||
"popupGettingStartedText": {
|
||||
"message": "Czy używasz tego programu po raz pierwszy? Zapoznaj się z naszym Przewodnikiem dla początkujących.",
|
||||
"message": "Czy używasz tego programu po raz pierwszy? Zapoznaj się z naszym przewodnikiem dla początkujących.",
|
||||
"description": "Popup information message about Getting Started Guide."
|
||||
},
|
||||
"popupGettingStartedLinkText": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Odwołaj i pokaż domyślne okno uwierzytelniania",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Ustawienia domyślne",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Ustawienia | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Pokaż baner, gdy nowe dane uwierzytelniające mogą zostać zapisane w bazie danych",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Ustaw jako domyślny menedżer haseł",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Ustawia KeePassXC-Browser jako domyślny menedżer haseł w przeglądarce.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Liczba dozwolonych przekierowań: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Zablokuj bazę danych",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Witaj w KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Dzięki naszemu przewodnikowi dla początkujących szybko rozpoczniesz pracę.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Szukasz bardziej kompleksowej dokumentacji? Nasz podręcznik użytkownika istnieje, aby pomóc.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Potrzebujesz pomocy w rozwiązywaniu problemów integracji z przeglądarką? Sprawdź przewodnik rozwiązywania problemów.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Witaj w KeePassXC-Browser, oficjalnym rozszerzeniu przeglądarki dla KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Przejrzyj ustawienia domyślne i wybierz wszystkie preferowane opcje.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Czy jesteś nowym użytkownikiem? Sprawdź łącza do naszej dokumentacji.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Copiar as informações de depuração para a área de transferência.",
|
||||
"message": "Copiar informações de depuração para a área de transferência",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Dispensar e mostrar a caixa de diálogo de autenticação padrão",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Configurações | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Mostrar um banner na página quando novas credenciais puderem ser salvas no banco de dados",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Quantidade de redirecionamentos permitidos: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Trancar o banco de dados",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Copiar informação de depuração para a área de transferência.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Rejeitar e mostrar o diálogo de autenticação padrão",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Definições | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Mostrar uma notificação se as novas credenciais puderem ser guardadas",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Número de reencaminhamentos permitidos: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Bloquear base de dados",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Copy debug info to clipboard.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Anulare și afișare a dialogului de autentificare implicit",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Setări | KeePassXC-browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Show a banner on the page when new credentials can be saved to the database",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Număr de redirecționări permise: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Închide baza de date",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Скопировать отладочную информацию в буфер обмена.",
|
||||
"message": "Copy debug info to clipboard",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Отклонить и показать диалог аутентификации по умолчанию",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Настройки | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Показывать баннер на странице, когда новые учётные данные могут быть сохранены в базе данных",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Количество разрешённых перенаправлений: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Заблокировать базу данных",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Kopiera felinformation till urklipp.",
|
||||
"message": "Kopiera felinformation till urklipp",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Avfärda och visa den förinställda autentiseringsdialogen",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Standardinställningar",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Inställningar | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Visa en banderoll på sidan när nya autentiseringsuppgifter kan sparas i databasen",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Ange som ordinarie lösenordshanterare",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sätter KeePassXC-Browser som ordinarie lösenordshanterare för webbläsaren.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Antal tillåtna omdirigeringar: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Lås databasen",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Välkommen till KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Vår kom-igång-guide hjälper dig att snabbt komma igång.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Söker du mer omfattande dokumentation? Vår användarguide finns där för att hjälpa.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Behöver du hjälp med att felsöka webbläsarintegrationen? Kolla felsökningsguiden.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Välkommen till KeePassXC-Browser, det officiella webbläsartillägget för KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Gå igenom standardinställningarna och kontrollera alla dina önskade alternativ.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Är du en ny användare? Kolla in länkarna till vår dokumentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Hata ayıklama bilgilerini panoya kopyalar.",
|
||||
"message": "Hata ayıklama bilgilerini panoya kopyala",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Yok say ve varsayılan kimlik doğrulama penceresini görüntüle",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Ayarlar | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Veri tabanına yeni kimlik bilgileri kaydedildiğinde bildirim görüntülensin",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "İzin verilen yönlendirme sayısı: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1219,7 +1235,7 @@
|
|||
"description": "Site Preferences info text, second part."
|
||||
},
|
||||
"optionsSitePreferencesTabHelpTextThird": {
|
||||
"message": "Bir site tamamen yok sayılırsa (<em>Tüm özellikleri kapat</em> seçilmişse), bu site ziyaret edildiğinde eklenti tarafından herhangi bir işlem yapılmaz.",
|
||||
"message": "Bir site tümüyle yok sayılırsa (<em>Tüm özellikleri kapat</em> seçilmişse), bu site ziyaret edildiğinde eklenti tarafından herhangi bir işlem yapılmaz.",
|
||||
"description": "Site Preferences info text, third part."
|
||||
},
|
||||
"optionsSitePreferencesTabHelpTextFourth": {
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Veri tabanını kilitle",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
"description": "Add button title text on Site Preferences tab."
|
||||
},
|
||||
"editSitePreferenceButtonTitle": {
|
||||
"message": "Edit URL for this Site Preferences.",
|
||||
"message": "Відредагувати URL-адресу для цих налаштувань сайту.",
|
||||
"description": "Edit button title text on Site Preferences tab."
|
||||
},
|
||||
"allowIframeButtonTitle": {
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "Скопіювати налагоджувальну інформацію в буфер обміну.",
|
||||
"message": "Скопіювати налагоджувальну інформацію до буфера обміну",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "Відхилити й показати типовий діалог автентифікації",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "Default settings",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "Налаштування | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -691,7 +699,7 @@
|
|||
"description": "Add button text."
|
||||
},
|
||||
"optionsButtonEdit": {
|
||||
"message": "Edit",
|
||||
"message": "Редагувати",
|
||||
"description": "Edit button text."
|
||||
},
|
||||
"optionsButtonUpdate": {
|
||||
|
|
@ -775,7 +783,7 @@
|
|||
"description": "Automatically fill-in single credential entry checkbox text."
|
||||
},
|
||||
"optionsCheckboxAutoFillRelevantCredential": {
|
||||
"message": "Automatically fill in relevant credential entries",
|
||||
"message": "Автоматичне заповнення відповідних облікових даних",
|
||||
"description": "Automatically fill-in relevant credential entry checkbox text."
|
||||
},
|
||||
"optionsCheckboxAutoFillSingleTotp": {
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "Показати банер на сторінці, коли нові облікові дані можна зберегти в базу даних.",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "Set as default password manager",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "Sets KeePassXC-Browser as the default password manager for the browser.",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "Кількість дозволених перенаправлень: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -915,7 +931,7 @@
|
|||
"description": "OTP field icon option help text."
|
||||
},
|
||||
"optionsHideIconsAlertText": {
|
||||
"message": "You can also hide icons manually when needed with shift+click.",
|
||||
"message": "Ви також можете приховати іконки вручну, коли це необхідно, за допомогою shift+click.",
|
||||
"description": "Hide icons alert text text."
|
||||
},
|
||||
"optionsAutoRetrieveCredentialsHelpText": {
|
||||
|
|
@ -931,7 +947,7 @@
|
|||
"description": "Auto-Fill Single Entry option help text."
|
||||
},
|
||||
"optionsAutoFillRelevantCredentialHelpText": {
|
||||
"message": "Automatically fill in the relevant credential if a second fill is needed.",
|
||||
"message": "Автоматичне заповнення відповідних облікових даних, якщо потрібне повторне заповнення.",
|
||||
"description": "Auto-Fill Relevant Credential option help text."
|
||||
},
|
||||
"optionsAutoFillSingleEntryWarning": {
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "Заблокувати базу даних",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "Our Getting Started Guide will get you up and running quickly.",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "Looking for more comprehensive documentation? Our User Guide is there to help.",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "Need help troubleshooting the browser integration? Check the Troubleshooting Guide.",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC.",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "Please go through the default settings and check all your preferred options.",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "Are you a new user? Check links to our documentation.",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "复制调试信息到剪贴板。",
|
||||
"message": "复制调试信息到剪贴板",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -459,11 +459,11 @@
|
|||
"description": "Popup warning message link when KeePassXC version is not up-to-date."
|
||||
},
|
||||
"popupGettingStartedText": {
|
||||
"message": "您是第一次使用吗?请阅读我们的新手上路指南。",
|
||||
"message": "您是第一次使用吗?请阅读我们的新手指南。",
|
||||
"description": "Popup information message about Getting Started Guide."
|
||||
},
|
||||
"popupGettingStartedLinkText": {
|
||||
"message": "新手上路指南 - 设置浏览器集成",
|
||||
"message": "新手指南 - 设置浏览器集成",
|
||||
"description": "Popup Getting Started Guide link text."
|
||||
},
|
||||
"popupAlertHide": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "关闭并显示默认身份验证对话框",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "默认设置",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "设置 | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "在可以保存新凭据到数据库时显示页面横幅",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "设置为默认密码管理器",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "将 KeePassXC-Browser 设置为浏览器的默认密码管理器。",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "允许的重定向次数:$1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "锁定数据库",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "欢迎使用 KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "我们的新手指南将帮助您快速上手。",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "寻找更全面的文档?我们的用户指南可以提供帮助。",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "需要帮助排查浏览器集成问题?请查阅问题排查指南。",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "欢迎使用 KeePassXC-Browser,这是 KeePassXC 的官方浏览器扩展。",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "请浏览默认设置并检查所有首选选项。",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "新用户?请查看我们的文档链接。",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
"description": "Connect button title text."
|
||||
},
|
||||
"copyDebugInfoButtonTitle": {
|
||||
"message": "複製除錯訊息至剪貼板。",
|
||||
"message": "複製除錯訊息至剪貼板",
|
||||
"description": "Copy debug info button title text on About tab."
|
||||
},
|
||||
"dismissHttpAuthButtonTitle": {
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
"description": "Redetect login fields button title text."
|
||||
},
|
||||
"reloadButtonTitle": {
|
||||
"message": "重新載入擴充並重新連接 KeePassXC。",
|
||||
"message": "重新載入擴展程序並重新連接 KeePassXC。",
|
||||
"description": "Reload button title text."
|
||||
},
|
||||
"removeConnectedDatabaseButtonTitle": {
|
||||
|
|
@ -459,11 +459,11 @@
|
|||
"description": "Popup warning message link when KeePassXC version is not up-to-date."
|
||||
},
|
||||
"popupGettingStartedText": {
|
||||
"message": "您是第一次使用嗎?請閱讀我們的新手上路指南。",
|
||||
"message": "您是第一次使用嗎?請閱讀我們的新手指南。",
|
||||
"description": "Popup information message about Getting Started Guide."
|
||||
},
|
||||
"popupGettingStartedLinkText": {
|
||||
"message": "新手上路指南 - 設置瀏覽器整合",
|
||||
"message": "新手指南 - 設置瀏覽器整合",
|
||||
"description": "Popup Getting Started Guide link text."
|
||||
},
|
||||
"popupAlertHide": {
|
||||
|
|
@ -626,6 +626,14 @@
|
|||
"message": "撤銷並顯示預設身份驗證彈出視窗",
|
||||
"description": "Dismiss button text when in HTTP Authentication popup."
|
||||
},
|
||||
"optionsDefaultSettingsTitle": {
|
||||
"message": "預設設定",
|
||||
"description": "Default settings title for Getting Started page."
|
||||
},
|
||||
"optionsWelcomeTitle": {
|
||||
"message": "KeePassXC-Browser",
|
||||
"description": "Main card title for Getting Started page."
|
||||
},
|
||||
"optionsTitle": {
|
||||
"message": "設定 | KeePassXC-Browser",
|
||||
"description": "Options page title."
|
||||
|
|
@ -818,6 +826,14 @@
|
|||
"message": "當可以儲存新憑證至資料庫時顯示頁面橫幅",
|
||||
"description": "Show login notifications checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManager": {
|
||||
"message": "設為預設密碼管理員",
|
||||
"description": "Default password manager checkbox text."
|
||||
},
|
||||
"optionsDefaultPasswordManagerHelpText": {
|
||||
"message": "將 KeePassXC-Browser 設定為瀏覽器的預設密碼管理員。",
|
||||
"description": "Default password manager help text."
|
||||
},
|
||||
"optionsRedirectAllowance": {
|
||||
"message": "允許的重新定向數: $1",
|
||||
"description": "Redirect allowance range input text."
|
||||
|
|
@ -1255,7 +1271,7 @@
|
|||
"description": "Table caption of Site Preferences page."
|
||||
},
|
||||
"optionsSitePreferencesSelect": {
|
||||
"message": "用於在頁面上忽略擴充功能的選項。",
|
||||
"message": "用於在頁面上忽略擴展功能的選項。",
|
||||
"description": "Title text of select element in Site Preferences."
|
||||
},
|
||||
"optionsAboutChrome": {
|
||||
|
|
@ -1339,7 +1355,7 @@
|
|||
"description": "Advanced settings title in settings page"
|
||||
},
|
||||
"optionsExtensionTitle": {
|
||||
"message": "擴充",
|
||||
"message": "擴展",
|
||||
"description": "Extension title in settings page"
|
||||
},
|
||||
"optionsPasskeysTitle": {
|
||||
|
|
@ -1377,5 +1393,33 @@
|
|||
"lockDatabase": {
|
||||
"message": "鎖定資料庫",
|
||||
"description": "Lock database button title text."
|
||||
},
|
||||
"welcomeText": {
|
||||
"message": "歡迎使用 KeePassXC-Browser!",
|
||||
"description": "Main title of Getting Started page."
|
||||
},
|
||||
"documentationGettingStarted": {
|
||||
"message": "我們的新手指南將幫助您快速上手。",
|
||||
"description": "Getting Started document text."
|
||||
},
|
||||
"documentationUserGuide": {
|
||||
"message": "在尋找更全面的文檔?我們的用戶指南可以提供幫助。",
|
||||
"description": "User Guide text."
|
||||
},
|
||||
"documentationTroubleshootingGuide": {
|
||||
"message": "需要幫助排查瀏覽器整合問題?請參閱疑難排解指南。",
|
||||
"description": "Troubleshooting Guide text."
|
||||
},
|
||||
"gettingStartedWelcomeText": {
|
||||
"message": "歡迎使用 KeePassXC-Browser,這是 KeePassXC 的官方瀏覽器擴展。",
|
||||
"description": "Welcome to KeePassXC-Browser, the official browser extension for KeePassXC."
|
||||
},
|
||||
"gettingStartedSecondWelcomeText": {
|
||||
"message": "請閱覽預設設定並檢查所有偏好選項。",
|
||||
"description": "Please go through the default settings and check all your preferred options."
|
||||
},
|
||||
"gettingStartedNewUser": {
|
||||
"message": "是新用戶?請參閱我們的文檔連結。",
|
||||
"description": "Are you a new user? Check links to our documentation."
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"manifest_version": 3,
|
||||
"name": "KeePassXC-Browser",
|
||||
"version": "1.9.8",
|
||||
"version_name": "1.9.8",
|
||||
"version": "1.9.9",
|
||||
"version_name": "1.9.9",
|
||||
"minimum_chrome_version": "93",
|
||||
"description": "__MSG_extensionDescription__",
|
||||
"author": "KeePassXC Team",
|
||||
|
|
|
|||
17
package-lock.json
generated
17
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "keepassxc-browser",
|
||||
"version": "1.9.8",
|
||||
"version": "1.9.9",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "keepassxc-browser",
|
||||
"version": "1.9.8",
|
||||
"version": "1.9.9",
|
||||
"license": "GPL-3.0",
|
||||
"dependencies": {
|
||||
"@npmcli/fs": "^2.1.0"
|
||||
|
|
@ -267,10 +267,11 @@
|
|||
"dev": true
|
||||
},
|
||||
"node_modules/brace-expansion": {
|
||||
"version": "1.1.11",
|
||||
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
||||
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
|
||||
"version": "1.1.12",
|
||||
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
|
||||
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"balanced-match": "^1.0.0",
|
||||
"concat-map": "0.0.1"
|
||||
|
|
@ -1420,9 +1421,9 @@
|
|||
"dev": true
|
||||
},
|
||||
"brace-expansion": {
|
||||
"version": "1.1.11",
|
||||
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
||||
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
|
||||
"version": "1.1.12",
|
||||
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
|
||||
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"balanced-match": "^1.0.0",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "keepassxc-browser",
|
||||
"version": "1.9.8",
|
||||
"version": "1.9.9",
|
||||
"description": "KeePassXC-Browser",
|
||||
"main": "build.js",
|
||||
"devDependencies": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue