diff --git a/CHANGELOG b/CHANGELOG index 1b9e76d4..d93fa055 100755 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,12 @@ +1.9.7 (2025-02-21) +========================= +- Add exceptions to Shadow DOM input query [#2430] +- Add option to auto-fill related credentials (thanks wolfsilver) [#2409] +- Change passkeys script to be injected at document start [#2432] +- Fix old.reddit.com login page [#2440] +- Fix TOTP field input type check [#2454] +- Fix loading managed settings [#2455] + 1.9.6 (2024-12-25) ========================= - Add all_urls host permission to Chrome manifest file [#2421] diff --git a/dist/manifest_chromium.json b/dist/manifest_chromium.json index 0acbf287..477cf6c6 100755 --- a/dist/manifest_chromium.json +++ b/dist/manifest_chromium.json @@ -1,8 +1,8 @@ { "manifest_version": 3, "name": "KeePassXC-Browser", - "version": "1.9.6", - "version_name": "1.9.6", + "version": "1.9.7", + "version_name": "1.9.7", "minimum_chrome_version": "93", "description": "__MSG_extensionDescription__", "author": "KeePassXC Team", diff --git a/dist/manifest_firefox.json b/dist/manifest_firefox.json index 90c651c9..8fa75576 100644 --- a/dist/manifest_firefox.json +++ b/dist/manifest_firefox.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "KeePassXC-Browser", - "version": "1.9.6", + "version": "1.9.7", "description": "__MSG_extensionDescription__", "author": "KeePassXC Team", "icons": { diff --git a/keepassxc-browser/_locales/bg/messages.json b/keepassxc-browser/_locales/bg/messages.json index 22316ca8..9c2b471b 100644 --- a/keepassxc-browser/_locales/bg/messages.json +++ b/keepassxc-browser/_locales/bg/messages.json @@ -766,6 +766,10 @@ "message": "Автоматично попълване на единични съвпадения", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Автоматично попълване на свързани регистрации", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Автоматично попълване на единични съвпадения за TOTP", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "KeePassXC-Browser автоматично попълва регистрацията при едно съвпадение.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Автоматично попълване на съответните регистрации ако е необходимо второ попълване.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Внимание! Автоматичното попълване не е безопасно. Използвайте го на свой риск. KeePassXC-Browser се опитва автоматично да открие полетата за вход. Обаче те могат да не бъдат открити правилно, като е възможно да бъдат попълнени чувствителни данни в грешните полета.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Използване на умален вариант на падащия списък за избор на регистрации.", - "description": "Use compact (legacy) mode help text." + "message": "Използване на умален вариант на падащия списък за избор на регистрации.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "При добавяне на регистрации да бъде запазван само домейна вместо целия адрес.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Разрешаване на рамки с ограничение по Cross-Origin", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Премахване", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/cs/messages.json b/keepassxc-browser/_locales/cs/messages.json index 201b076d..8f2a4a84 100644 --- a/keepassxc-browser/_locales/cs/messages.json +++ b/keepassxc-browser/_locales/cs/messages.json @@ -766,6 +766,10 @@ "message": "Automatically fill in single-credential entries", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Automatically fill in single TOTP entries", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Pokud obdrží pouze jedinou položku, nechat KeePassXC-Browser automaticky vyplnit přihlašovací údaje.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Warning! Using auto-fill is not safe. Use at your own risk. KeePassXC-Browser automatically tries to detect login fields. However, they may be detected incorrectly, possibly filling sensitive data to unsafe input fields.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Use a compact version of the dropdown list to select credentials.", - "description": "Use compact (legacy) mode help text." + "message": "Use a compact version of the dropdown list to select credentials.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Při ukládání nových přihlašovacích údajů, uložit pouze doménu namísto úplné URL adresy.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Allow Cross-Origin iframes", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Smazat", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/da/messages.json b/keepassxc-browser/_locales/da/messages.json index 9d906204..ee9b4c88 100644 --- a/keepassxc-browser/_locales/da/messages.json +++ b/keepassxc-browser/_locales/da/messages.json @@ -766,6 +766,10 @@ "message": "Automatically fill in single-credential entries", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Automatically fill in single TOTP entries", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Lad KeePassXC-Browser udfylde loginoplysninger automatisk hvis den kun modtager én indtastning.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Advarsel! Automatisk udfyldning er ikke sikker. Brug funktionen på eget ansvar. KeePassXC-Browser forsøger automatisk at detektere loginfelter. Felter kan dog blive detekteret ukorrekt, hvilken muligvis udfylder usikre felter med følsomme data.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Use a compact version of the dropdown list to select credentials.", - "description": "Use compact (legacy) mode help text." + "message": "Use a compact version of the dropdown list to select credentials.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Når nye loginoplysninger gemmes, så gem kun domænet i stedet for den fulde URL.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Tillad Cross-Origin iframes.", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Slet", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/de/messages.json b/keepassxc-browser/_locales/de/messages.json index bcff8f84..9117a8d2 100644 --- a/keepassxc-browser/_locales/de/messages.json +++ b/keepassxc-browser/_locales/de/messages.json @@ -766,6 +766,10 @@ "message": "Einträge mit einzelnen Anmeldedaten automatisch ausfüllen", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Einzelne TOTP-Einträge automatisch ausfüllen", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Anmeldedaten von KeePassXC-Browser automatisch ausfüllen lassen, wenn er nur einen einzigen Eintrag erhält.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Warnung! Die Verwendung des automatischen Ausfüllens ist nicht sicher und erfolgt auf eigene Gefahr. KeePassXC-Browser versucht automatisch, Anmeldefelder zu erkennen. Sie können jedoch falsch erkannt werden, wodurch möglicherweise sensible Daten in unsichere Eingabefelder eingetragen werden.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Verwenden Sie eine kompakte Version der Drop-down-Liste, um Anmeldedaten auszuwählen.", - "description": "Use compact (legacy) mode help text." + "message": "Verwenden Sie eine kompakte Version der Drop-down-Liste, um Anmeldedaten auszuwählen.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Beim Speichern neuer Anmeldedaten nur die Domain anstatt der vollständigen URL speichern.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Cross-Origin iframes zulassen", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Löschen", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/el/messages.json b/keepassxc-browser/_locales/el/messages.json index 0b63a76c..75b728e3 100644 --- a/keepassxc-browser/_locales/el/messages.json +++ b/keepassxc-browser/_locales/el/messages.json @@ -766,6 +766,10 @@ "message": "Automatically fill in single-credential entries", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Automatically fill in single TOTP entries", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Αφήστε το KeePassXC-Browser να συμπληρώνει αυτόματα τα διαπιστευτήρια εάν λάβει μόνο μία καταχώρηση.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Προειδοποίηση! Η χρήση της αυτόματης συμπλήρωσης δεν είναι ασφαλής. Χρησιμοποιήστε το με δική σας ευθύνη. Το KeePassXC-Browser προσπαθεί αυτόματα να εντοπίσει πεδία σύνδεσης. Ωστόσο, ενδέχεται να εντοπιστούν εσφαλμένα, ενδεχομένως γεμίζοντας ευαίσθητα δεδομένα σε μη ασφαλή πεδία εισαγωγής.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Use a compact version of the dropdown list to select credentials.", - "description": "Use compact (legacy) mode help text." + "message": "Use a compact version of the dropdown list to select credentials.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Κατά την αποθήκευση νέων διαπιστευτηρίων, αποθηκεύστε μόνο το domain αντί για την πλήρη διεύθυνση URL.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Να επιτρέπονται τα Cross-Origin iframes", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Διαγραφή", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/en_GB/messages.json b/keepassxc-browser/_locales/en_GB/messages.json index 60e66f0e..0d507348 100644 --- a/keepassxc-browser/_locales/en_GB/messages.json +++ b/keepassxc-browser/_locales/en_GB/messages.json @@ -766,6 +766,10 @@ "message": "Automatically fill in single-credential entries", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Automatically fill in single TOTP entries", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Let KeePassXC-Browser automatically fill in credentials if it receives only a single entry.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Warning! Using auto-fill is not safe. Use at your own risk. KeePassXC-Browser automatically tries to detect login fields. However, they may be detected incorrectly, possibly filling sensitive data to unsafe input fields.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Use a compact version of the dropdown list to select credentials.", - "description": "Use compact (legacy) mode help text." + "message": "Use a compact version of the dropdown list to select credentials.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "When saving new credentials, save only the domain instead of full URL.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Allow Cross-Origin iframes", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Delete", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/es/messages.json b/keepassxc-browser/_locales/es/messages.json index 5c3046c6..d7d166d4 100644 --- a/keepassxc-browser/_locales/es/messages.json +++ b/keepassxc-browser/_locales/es/messages.json @@ -24,7 +24,7 @@ "description": "Dismiss HTTP Auth button title text." }, "reconnectButtonTitle": { - "message": "Reconecta la base de datos actual activa a KeePassXC-Browser.", + "message": "Reconectar la base de datos actual activa a KeePassXC-Browser.", "description": "Reconnect button title text." }, "redetectButtonTitle": { @@ -48,7 +48,7 @@ "description": "Remove button title on Site Preferences tab." }, "reopenDatabaseButtonTitle": { - "message": "Vuelve a Abrir la base de datos actual activa.", + "message": "Reabrir la base de datos activa actual.", "description": "Reopen database button title text." }, "usernameButtonTitle": { @@ -240,11 +240,11 @@ "description": "Error notification shown when not connected to KeePassXC." }, "errorCurrentDatabaseNotConnected": { - "message": "Current database is not connected.", + "message": "La base de datos actual no está conectada.", "description": "Error notification shown when current database is not connected during action." }, "passwordGeneratorErrorTooLong": { - "message": "Error:\nLa contraseña generada es más larga que la longitud permitida!", + "message": "Error: La contraseña generada es más larga que la longitud permitida!", "description": "A warning text shown in the password generator." }, "passwordGeneratorErrorTooLongCut": { @@ -335,7 +335,7 @@ "description": "Choose String Fields a selection text when choosing Custom Login Fields." }, "defineHelpText": { - "message": "Por favor confirme su selección o elija más campos como Campos de cadena.", + "message": "Confirme su selección o elija más campos como Campos de cadena.", "description": "Confirm a selection text when choosing Custom Login Fields which contains string fields." }, "defineKeyboardText": { @@ -343,7 +343,7 @@ "description": "Help text when choosing Custom Login Fields." }, "defineChooseCustomLoginFieldText": { - "message": "Campo de presentaciónElija un campo de presentación Personalizado", + "message": "Elija un campo de inicio de sesión personalizado", "description": "Help text for Custom Login Field banner." }, "username": { @@ -371,7 +371,7 @@ "description": "Alert message when trying to fill username and/or password when multiple credentials are found." }, "credentialsMultipleFoundSecondLine": { - "message": "Click the KeePassXC-Browser icon for more options.", + "message": "Haz clic en el icono KeePassXC-Browser para ver más opciones.", "description": "Alert message when trying to fill username and/or password when multiple credentials are found." }, "credentialsNoUsernameFound": { @@ -479,7 +479,7 @@ "description": "Checking status message in popup." }, "popupNotConfigured": { - "message": "KeePassXC-Browser has not been configured. Click the connect button to pair with KeePassXC.", + "message": "KeePassXC-Browser no ha sido configurado. Haga clic en el botón de conexión para emparejarse con KeePassXC.", "description": "A popup message shown when the extension has not been connected to KeePassXC." }, "popupNeedReconfigure": { @@ -487,7 +487,7 @@ "description": "A popup message shown when the extension has been disconnected from KeePassXC." }, "popupNeedReconfigureMessage": { - "message": "Click the reconnect button to establish a new connection.", + "message": "Haz clic en el botón de reconexión para establecer una nueva conexión.", "description": "A popup message shown when reconnect is needed." }, "popupConfiguredNotAssociated": { @@ -527,7 +527,7 @@ "description": "A message shown choosing what credentials user wants to update." }, "rememberChooseGroup": { - "message": "Please choose a group to store new credentials.", + "message": "Elija un grupo para almacenar las nuevas credenciales.", "description": "A message shown choosing what group user wants to use for new credentials." }, "rememberInfoDefaultGroupNotFound": { @@ -639,7 +639,7 @@ "description": "Saved Custom Login Fields tab text." }, "optionsSitePreferencesTab": { - "message": "preferencias del sitio", + "message": "Preferencias del sitio", "description": "Site Preferences fields tab text." }, "optionsAboutTab": { @@ -659,7 +659,7 @@ "description": "Custom Login Fields page header." }, "optionsMenuSitePreferences": { - "message": "preferencias del sitio", + "message": "Preferencias del sitio", "description": "Site Preferences page header." }, "optionsMenuAbout": { @@ -691,7 +691,7 @@ "description": "Check for updates button text." }, "optionsButtonRemoveNow": { - "message": "Sí, retirar ahora", + "message": "Sí, eliminar ahora", "description": "Confirm button text when removing database key or Custom Login Fields." }, "optionsButtonCancel": { @@ -715,11 +715,11 @@ "description": "Default group options text." }, "optionsDefaultGroupHelpText": { - "message": "Separe el grupo con barras diagonales, por ejemplo: Grupo/Grupo-Hijo.", + "message": "Separe el grupo con barras inclinadas, por ejemplo: Grupo/ChildGroup.", "description": "Default group help text." }, "optionsLabelDefaultPasskeyGroup": { - "message": "Default group for saving new passkeys:", + "message": "Grupo por defecto para guardar nuevas claves de acceso:", "description": "Default passkey group options text." }, "optionsLabelDefaultGroupCheckboxText": { @@ -743,7 +743,7 @@ "description": "Use dynamic input field detection checkbox text." }, "optionsUseObserverHelpText": { - "message": "Útil con páginas que usan ventanas emergentes o diálogos dinámicos. Deshabilitar la característica para reducir la carga de CPU en máquinas lentas. Cuando se desactivan las credenciales solo pueden ser insertadas usando atajos de teclado, el menú contextual o la extensión emergente.", + "message": "Útil con páginas que utilizan ventanas emergentes o diálogos dinámicos. Deshabilite esta función para reducir la carga de la CPU en máquinas lentas. Cuando está desactivada, las credenciales sólo se pueden insertar mediante atajos de teclado, el menú contextual o la ventana emergente de extensión.", "description": "Use dynamic input field detection help text." }, "optionsCheckboxOTPIcons": { @@ -766,6 +766,10 @@ "message": "Rellenar apuntes de credenciales únicas automáticamente", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Rellenar apuntes de TOPT únicas automáticamente", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -795,7 +799,7 @@ "description": "Use monochrome toolbar icon checkbox text." }, "optionsCheckboxUseCompactMode": { - "message": "Usar Modo Compacto.", + "message": "Usar modo compacto.", "description": "Whether the compact mode (legacy dropdown) should be enabled." }, "optionsSaveDomainOnly": { @@ -831,7 +835,7 @@ "description": "Text above radio buttons in the settings page." }, "optionsRadioThreeDays": { - "message": "every three days", + "message": "cada tres días", "description": "Radio button text." }, "optionsRadioWeek": { @@ -914,6 +918,10 @@ "message": "Permitir que KeePassXC-Browser complete las credenciales automáticamente si recibe solo una entrada.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Advertencia! Usar el autorellenado no es seguro. Úseló bajo su propio riesgo. KeePassXC-Browser intenta detectar automáticamente los campos de inicio de sesión. Sin embargo, pueden ser detectados incorrectamente, con la posibilidad de rellenar datos sensibles en capos de entrada inseguros.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Mostrar la lista de selección de credenciales de forma compacta.", - "description": "Use compact (legacy) mode help text." + "message": "Mostrar la lista de selección de credenciales de forma compacta.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Al guardar nuevas credenciales, guarde solo el dominio en lugar de la URL completa.", @@ -1043,7 +1051,7 @@ "description": "Confirmation text when removing database from the list." }, "optionsDatabasesRemoveIdentifierConfirmFirst": { - "message": "Do you really want to remove the following identifier from the database list: $1?", + "message": "¿Realmente desea eliminar el siguiente identificador de la lista de la base de datos? $1?", "description": "Confirmation text when removing database from the list." }, "optionsDatabasesRemoveIdentifierConfirmSecond": { @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Permitir Cross-Origin iframes", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Eliminar", "description": "Site Preferences list column title." @@ -1327,7 +1335,7 @@ "description": "Passkeys settings title in settings page." }, "optionsPasskeysEnable": { - "message": "Habilitar passkeys.", + "message": "Habilitar claves de acceso.", "description": "Enabled passkeys option text." }, "optionsPasskeysEnableHelpText": { @@ -1335,11 +1343,11 @@ "description": "Passkeys option help text." }, "optionsPasskeysEnableFallback": { - "message": "Habilitar respaldo passkeys.", + "message": "Habilitar respaldo de claves de acceso.", "description": "Enabled passkeys fallback option text." }, "optionsPasskeysEnableFallbackHelpText": { - "message": "Habilitado, una petición fallida o cancelada a KeePassXC provocará la petición del navegador a los propios passkeys internos. Deshabilitado, la conexión a KeePassXC es requerida y la petición cancelada fallará. Prederterminado: habilitado.", + "message": "Si está habilitada, una solicitud fallida o cancelada a KeePassXC activará la solicitud de claves de acceso interna del navegador. Si está deshabilitado, se requiere la conexión a KeePassXC y la solicitud cancelada fallará. Predeterminado: habilitado.", "description": "Passkeys fallback option help text." }, "openNewTab": { diff --git a/keepassxc-browser/_locales/fi/messages.json b/keepassxc-browser/_locales/fi/messages.json index 522276a4..f201f344 100644 --- a/keepassxc-browser/_locales/fi/messages.json +++ b/keepassxc-browser/_locales/fi/messages.json @@ -240,7 +240,7 @@ "description": "Error notification shown when not connected to KeePassXC." }, "errorCurrentDatabaseNotConnected": { - "message": "Current database is not connected.", + "message": "Tietokantaa ei ole yhdistetty.", "description": "Error notification shown when current database is not connected during action." }, "passwordGeneratorErrorTooLong": { @@ -766,6 +766,10 @@ "message": "Täytä yksittäinen tietue automaattisesti", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Täytä vastaava tietue automaattisesti", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Täytä yksittäiset TOTP-kentät automaattisesti", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Salli KeePassXC-Browserin täyttää kirjautumistiedot automaattisesti, jos se noutaa vain yksittäisen tietueen.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Täyttää tietueen tiedot automaattisesti, jos se vaaditaan toisen kerran.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Varoitus! Automaattinen täydennys ei ole turvallinen. Käytä omalla vastuulla. KeePassXC-Browser yrittää automaattisesti tunnistaa kirjautumiskentät. On mahollista, että yksityistä tietoa täydennetään kenttiin jotka eivät ole turvallisia.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Käytä kompaktia versiota listasta, kun valitset sivulla tietueita.", - "description": "Use compact (legacy) mode help text." + "message": "Käytä kompaktia versiota listasta, kun valitset sivulla tietueita.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Kun tallennetaan uusia tietueita, tallenna täydellisen URL-osoitteen sijaan vain sivuston verkkotunnus.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Salli iframe-upotukset muilta sivustoilta", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Poista", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/fr/messages.json b/keepassxc-browser/_locales/fr/messages.json index 82173a62..1a0a33cf 100644 --- a/keepassxc-browser/_locales/fr/messages.json +++ b/keepassxc-browser/_locales/fr/messages.json @@ -766,6 +766,10 @@ "message": "Remplir automatiquement les entrées ne contenant qu'un identifiant", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Remplir automatiquement les entrées ne contenant qu'un seul TOTP", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Laisse KeePassXC-Browser remplir les identifiants automatiquement si une seule entrée est retournée.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Attention ! Le remplissage automatique n'est pas recommandé. Vous l'utilisez à vos risques. KeePassXC-Browser tente de détecter automatiquement les champs d'identification. Cependant, la détection peut être erronée et entraîner le remplissage de champs non sûrs avec des données sensibles.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Use a compact version of the dropdown list to select credentials.", - "description": "Use compact (legacy) mode help text." + "message": "Use a compact version of the dropdown list to select credentials.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Lorsqu'un nouvel identifiant est ajouté, n'enregistrer que le domaine au lieu de l'URL complète.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Autoriser les iframes Cross–Origin", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Supprimer", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/he/messages.json b/keepassxc-browser/_locales/he/messages.json index e1755fc8..15280c4b 100644 --- a/keepassxc-browser/_locales/he/messages.json +++ b/keepassxc-browser/_locales/he/messages.json @@ -4,7 +4,7 @@ "description": "Name of the extension." }, "addSitePreferenceButtonTitle": { - "message": "הוספת העדפות אתר למען URL זה.", + "message": "הוספת העדפות אתר לכתובת URL זו.", "description": "Add button title text on Site Preferences tab." }, "allowIframeButtonTitle": { @@ -12,31 +12,31 @@ "description": "Allow Cross-Origin iframes button title text." }, "connectButtonTitle": { - "message": "להתחבר למסד נתונים פעיל נוכחי מדפדפן־KeePassXC.", + "message": "חבר את מסד הנתונים הפעיל הנוכחי לתוסף KeePassXC.", "description": "Connect button title text." }, "copyDebugInfoButtonTitle": { - "message": "העתקת מידע ניפוי תקלים ללוח גזירים.", + "message": "העתק מידע ניפוי באגים ללוח.", "description": "Copy debug info button title text on About tab." }, "dismissHttpAuthButtonTitle": { - "message": "Dismisses Basic HTTP Auth.", + "message": "מבטל אימות HTTP בסיסי.", "description": "Dismiss HTTP Auth button title text." }, "reconnectButtonTitle": { - "message": "להתחבר מחדש למסד נתונים פעיל נוכחי מדפדפן־KeePassXC.", + "message": "חבר מחדש את מסד הנתונים הפעיל הנוכחי לתוסף KeePassXC.", "description": "Reconnect button title text." }, "redetectButtonTitle": { - "message": "Redetects all input fields on the page.", + "message": "מזהה מחדש את כל שדות הקלט בדף.", "description": "Redetect login fields button title text." }, "reloadButtonTitle": { - "message": "Reloads the extension and reconnects to KeePassXC.", + "message": "טוען מחדש את התוסף ומתחבר מחדש ל- KeePassXC.", "description": "Reload button title text." }, "removeConnectedDatabaseButtonTitle": { - "message": "הסרת מסדי נתונים מחוברים מדפדפן־KeePassXC.", + "message": "הסרת מסדי נתונים מחוברים מתוסף KeePassXC.", "description": "Remove button title on Connected Databases tab." }, "removeCustomLoginFieldsButtonTitle": { @@ -260,7 +260,7 @@ "description": "Password icon title text." }, "passwordGeneratorNotSupported": { - "message": "Launching the password generator is not supported in this KeePassXC version. Please update KeePassXC to a newer version." + "message": "מחולל סיסמאות אינו נתמך בגרסת KeePassXC זו. שקול את עדכון KeePassXC לגרסה חדשה יותר." }, "usernameFieldText": { "message": "מילוי נתוני־אמנה מ־KeePassXC", @@ -766,6 +766,10 @@ "message": "מילוי אוטומטי של רשומות עם אישור יחיד.", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "מילוי אוטומטי של רשומות עם TOTP יחיד.", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "לאפשר לדפדפן־KeePassXC למלא נתוני־אמנה באופן אוטומטי בקבלת רק ערך יחיד.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "אזהרה! השימוש באפשרות מילוי־אוטומטי אינה בטוחה. השימוש על אחריות המשתמש בלבד. KeePassXC-Browser מנסה לזהות באופן אוטומטי שדות התחברות. יחד עם זאת, שדות ההתחברות עלולות להיות מזוהות באופן שגוי, דבר שעשוי אולי לאכלס נתונים רגישים, בשדות קלט לא בטוחים.", "description": "Auto-Fill Single Entry warning text." @@ -927,7 +935,7 @@ "description": "Autocomplete Usernames option help text." }, "optionsShowGroupNameInAutocompleteHelpText": { - "message": "When credentials are returned from different groups, the group name will be shown. Only affects the compact mode.", + "message": "כאשר אישורים מוחזרים מקבוצות שונות, שם הקבוצה יוצג. משפיע רק על המצב הקומפקטי.", "description": "Show group name in autocomplete help text." }, "optionsShowNotificationsHelpText": { @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Use a compact version of the dropdown list to select credentials.", - "description": "Use compact (legacy) mode help text." + "message": "השתמש בגרסה קומפקטית של הרשימה הנפתחת כדי לבחור אישורים.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "בעת שמירת נתוני־אמנה חדשים, לשמור רק את שם המתחם במקום את מען ה־URL המלא.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Allow Cross-Origin iframes", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "מחיקה", "description": "Site Preferences list column title." @@ -1339,7 +1347,7 @@ "description": "Enabled passkeys fallback option text." }, "optionsPasskeysEnableFallbackHelpText": { - "message": "When enabled, a failed or canceled request to KeePassXC will trigger the browser's own internal passkeys request. If disabled, connection to KeePassXC is required and canceled request will fail. Default: enabled.", + "message": "כאשר הגדרה זו מופעלת, בקשה שנכשלה או בוטלה ל- KeePassXC תפעיל את בקשת המפתחות הפנימיים של הדפדפן עצמו. אם מושבת, נדרש חיבור ל- KeePassXC והבקשה שבוטלה תיכשל. ברירת מחדל: מופעלת.", "description": "Passkeys fallback option help text." }, "openNewTab": { diff --git a/keepassxc-browser/_locales/hu/messages.json b/keepassxc-browser/_locales/hu/messages.json index a64a2932..e7179b2d 100644 --- a/keepassxc-browser/_locales/hu/messages.json +++ b/keepassxc-browser/_locales/hu/messages.json @@ -766,6 +766,10 @@ "message": "Önálló hitelesítésiadat-bejegyzések automatikus kitöltése", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Önálló TOTP-bejegyzések automatikus kitöltése", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "A KeePassXC-böngésző automatikusan kitölthesse a hitelesítési adatokat, ha csak egy önálló bejegyzést kap.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Figyelmeztetés! Az automatikus kitöltés használata nem biztonságos! Saját felelősségére használja. A KeePassXC-böngésző megpróbálja automatikusan érzékelni a belépési mezőket. Azonban, lehet, hogy ezek rosszul kerülnek felderítésre és így az érzékeny adatok nem biztonságos bemeneti mezőkbe lesznek feltöltve.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "A legördülő lista kompakt változatának alkalmazása a hitelesítő adatok kiválasztásához.", - "description": "Use compact (legacy) mode help text." + "message": "A legördülő lista kompakt változatának alkalmazása a hitelesítő adatok kiválasztásához.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Új hitelesítési adatok mentésekor csak a tartományt mentse el a teljes URL helyett.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Cross-Origin iframe-ek engedélyezése", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Törlés", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/id/messages.json b/keepassxc-browser/_locales/id/messages.json index 82b7903f..ab108401 100644 --- a/keepassxc-browser/_locales/id/messages.json +++ b/keepassxc-browser/_locales/id/messages.json @@ -766,6 +766,10 @@ "message": "Automatically fill in single-credential entries", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Automatically fill in single TOTP entries", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Biarkan KeePassXC-Browser mengisi kredensial secara otomatis ketika hanya menerima satu entri.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Peringatan! Menggunakan pengisian otomatis tidak aman. Gunakan dengan risiko Anda sendiri. KeePassXC-Browser mendeteksi kolom masuk secara otomatis. Tetapi, mereka dapat dideteksi secara salah, kemungkinan dapat mengisi data sensitif ke kolom masukan yang berbahaya.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Use a compact version of the dropdown list to select credentials.", - "description": "Use compact (legacy) mode help text." + "message": "Use a compact version of the dropdown list to select credentials.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Ketika menyimpan kredensial baru, hanya simpan domainnya daripada URL penuhnya.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Perbolehkan iframe lintas sumber", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Hapus", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/it/messages.json b/keepassxc-browser/_locales/it/messages.json index 24d96f88..bdff4b40 100644 --- a/keepassxc-browser/_locales/it/messages.json +++ b/keepassxc-browser/_locales/it/messages.json @@ -240,7 +240,7 @@ "description": "Error notification shown when not connected to KeePassXC." }, "errorCurrentDatabaseNotConnected": { - "message": "Current database is not connected.", + "message": "Il database corrente non è connesso.", "description": "Error notification shown when current database is not connected during action." }, "passwordGeneratorErrorTooLong": { @@ -371,7 +371,7 @@ "description": "Alert message when trying to fill username and/or password when multiple credentials are found." }, "credentialsMultipleFoundSecondLine": { - "message": "Click the KeePassXC-Browser icon for more options.", + "message": "Premi l'icona di KeePassXC-Browser per ulteriori opzioni.", "description": "Alert message when trying to fill username and/or password when multiple credentials are found." }, "credentialsNoUsernameFound": { @@ -479,7 +479,7 @@ "description": "Checking status message in popup." }, "popupNotConfigured": { - "message": "KeePassXC-Browser has not been configured. Click the connect button to pair with KeePassXC.", + "message": "KeePassXC-Browser non è stato configurato. Premi il pulsante connetti per associarlo a KeePassXC.", "description": "A popup message shown when the extension has not been connected to KeePassXC." }, "popupNeedReconfigure": { @@ -487,7 +487,7 @@ "description": "A popup message shown when the extension has been disconnected from KeePassXC." }, "popupNeedReconfigureMessage": { - "message": "Click the reconnect button to establish a new connection.", + "message": "Premi il pulsante riconnetti per stabilire una nuova connessione.", "description": "A popup message shown when reconnect is needed." }, "popupConfiguredNotAssociated": { @@ -527,7 +527,7 @@ "description": "A message shown choosing what credentials user wants to update." }, "rememberChooseGroup": { - "message": "Please choose a group to store new credentials.", + "message": "Scegli un gruppo per memorizzare le nuove credenziali.", "description": "A message shown choosing what group user wants to use for new credentials." }, "rememberInfoDefaultGroupNotFound": { @@ -719,7 +719,7 @@ "description": "Default group help text." }, "optionsLabelDefaultPasskeyGroup": { - "message": "Default group for saving new passkeys:", + "message": "Gruppo predefinito per il salvataggio delle nuove passkeys:", "description": "Default passkey group options text." }, "optionsLabelDefaultGroupCheckboxText": { @@ -766,6 +766,10 @@ "message": "Compila automaticamente le voci a credenziale singola", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Compila automaticamente singole voci TOTP", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -831,7 +835,7 @@ "description": "Text above radio buttons in the settings page." }, "optionsRadioThreeDays": { - "message": "every three days", + "message": "ogni tre giorni", "description": "Radio button text." }, "optionsRadioWeek": { @@ -914,6 +918,10 @@ "message": "Lascia che KeePassXC-Browser compili automaticamente le credenziali se riceve solo una singola voce.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Attenzione! L'uso del riempimento automatico non è sicuro. Usalo a tuo rischio. KeePassXC-Browser tenta automaticamente di rilevare i campi di accesso. Tuttavia, potrebbero essere rilevati in modo errato, portando all'inserimento di dati sensibili in campi di input non sicuri. ", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Utilizza una versione compatta del menù a discesa per scegliere le credenziali.", - "description": "Use compact (legacy) mode help text." + "message": "Utilizza una versione compatta del menù a discesa per scegliere le credenziali.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Al salvataggio di nuove credenziali salva solo il dominio al posto dell'URL completa.", @@ -1043,7 +1051,7 @@ "description": "Confirmation text when removing database from the list." }, "optionsDatabasesRemoveIdentifierConfirmFirst": { - "message": "Do you really want to remove the following identifier from the database list: $1?", + "message": "Vuoi davvero rimuovere l'identificatore $1 dall'elenco del database? ", "description": "Confirmation text when removing database from the list." }, "optionsDatabasesRemoveIdentifierConfirmSecond": { @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Permetti iframes Cross-Origin", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Elimina", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/ja/messages.json b/keepassxc-browser/_locales/ja/messages.json index a2b93733..4d4a6600 100644 --- a/keepassxc-browser/_locales/ja/messages.json +++ b/keepassxc-browser/_locales/ja/messages.json @@ -28,7 +28,7 @@ "description": "Reconnect button title text." }, "redetectButtonTitle": { - "message": "ページのすべての入力欄を再検出します。", + "message": "ページのすべての入力フィールドを再検出します。", "description": "Redetect login fields button title text." }, "reloadButtonTitle": { @@ -52,7 +52,7 @@ "description": "Reopen database button title text." }, "usernameButtonTitle": { - "message": "Adds Username-only Detection to the current page.", + "message": "ユーザー名のみ検出オプションを現在のページに追加します。", "description": "Add Username-only detection button title text." }, "contextMenuFillUsernameAndPassword": { @@ -240,7 +240,7 @@ "description": "Error notification shown when not connected to KeePassXC." }, "errorCurrentDatabaseNotConnected": { - "message": "Current database is not connected.", + "message": "現在のデータベースには接続されていません。", "description": "Error notification shown when current database is not connected during action." }, "passwordGeneratorErrorTooLong": { @@ -260,7 +260,7 @@ "description": "Password icon title text." }, "passwordGeneratorNotSupported": { - "message": "Launching the password generator is not supported in this KeePassXC version. Please update KeePassXC to a newer version." + "message": "このバージョンの KeePassXC はパスワードジェネレーターの起動に対応していません。最新の KeePassXC にアップデートしてください。" }, "usernameFieldText": { "message": "KeePassXC から認証情報を補完します。", @@ -371,7 +371,7 @@ "description": "Alert message when trying to fill username and/or password when multiple credentials are found." }, "credentialsMultipleFoundSecondLine": { - "message": "Click the KeePassXC-Browser icon for more options.", + "message": "KeePassXC-Browser のアイコンをクリックすると、その他のオプションを確認できます。", "description": "Alert message when trying to fill username and/or password when multiple credentials are found." }, "credentialsNoUsernameFound": { @@ -479,7 +479,7 @@ "description": "Checking status message in popup." }, "popupNotConfigured": { - "message": "KeePassXC-Browser has not been configured. Click the connect button to pair with KeePassXC.", + "message": "KeePassXC-Browser はまだ設定されていません。接続ボタンをクリックして KeePassXC とペアリングしてください。", "description": "A popup message shown when the extension has not been connected to KeePassXC." }, "popupNeedReconfigure": { @@ -487,7 +487,7 @@ "description": "A popup message shown when the extension has been disconnected from KeePassXC." }, "popupNeedReconfigureMessage": { - "message": "Click the reconnect button to establish a new connection.", + "message": "再接続ボタンをクリックすると新しい接続を確立します。", "description": "A popup message shown when reconnect is needed." }, "popupConfiguredNotAssociated": { @@ -527,7 +527,7 @@ "description": "A message shown choosing what credentials user wants to update." }, "rememberChooseGroup": { - "message": "Please choose a group to store new credentials.", + "message": "新しい資格情報を保存するグループを選択してください。", "description": "A message shown choosing what group user wants to use for new credentials." }, "rememberInfoDefaultGroupNotFound": { @@ -766,6 +766,10 @@ "message": "単一の資格情報エントリーに自動入力する", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "単一の TOTP エントリーに自動入力する", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -831,7 +835,7 @@ "description": "Text above radio buttons in the settings page." }, "optionsRadioThreeDays": { - "message": "every three days", + "message": "3 日ごと", "description": "Radio button text." }, "optionsRadioWeek": { @@ -914,6 +918,10 @@ "message": "エントリーに対する資格情報が単一の場合は、KeePassXC-Browser に自動入力させます。", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "警告!自動入力は安全ではありません。自己責任で使用してください。KeePassXC-Browser が自動的にログインフィールドを検出しますが、検出に失敗して安全ではない入力フィールドに機密データを入力してしまう可能性があります。", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "資格情報を選択するドロップダウンリストでコンパクト版を使用します。", - "description": "Use compact (legacy) mode help text." + "message": "資格情報を選択するドロップダウンリストでコンパクト版を使用します。", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "新しい資格情報を保存する場合、完全な URL の代わりにドメインのみを保存します。", @@ -1043,7 +1051,7 @@ "description": "Confirmation text when removing database from the list." }, "optionsDatabasesRemoveIdentifierConfirmFirst": { - "message": "Do you really want to remove the following identifier from the database list: $1?", + "message": "本当にデータベースから識別子 $1 を削除しますか?", "description": "Confirmation text when removing database from the list." }, "optionsDatabasesRemoveIdentifierConfirmSecond": { @@ -1083,13 +1091,13 @@ "description": "Site Preferences list column title." }, "optionsColumnImprovedInputFieldDetection": { - "message": "Improved Input Field Detection", + "message": "高度な入力フィールド検出", "description": "Improved Input Field Detection column text." }, "optionsColumnAllowIframes": { "message": "クロスオリジン iframe を許可する", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "削除", "description": "Site Preferences list column title." @@ -1203,11 +1211,11 @@ "description": "Site Preferences info text, third part." }, "optionsSitePreferencesTabHelpTextFourth": { - "message": "ユーザー名のみを検出することで、KeePassXC-Browser はユーザー名とパスワードが別々のページにあるウェブサイトでのログイン情報の入力を可能にします。", + "message": "ユーザー名のみ検出オプションにより、ユーザー名とパスワードが別々のページに分かれているウェブサイトで KeePassXC-Browser がログイン情報を補完できるようになります。", "description": "Site Preferences info text, fourth part." }, "optionsSitePreferencesImprovedInputFieldDetectionHelpText": { - "message": "Improved Input Field Detection allows more detailed dynamic input field detection. However, it might affect the page performance. Use with caution.", + "message": "高度な入力フィールド検出オプションにより、さらに詳細な入力フィールドの動的検出ができるようになります。ただし、ページのパフォーマンスに影響を与える可能性があり、使用には注意が必要です。", "description": "Improved Input Field Detection help text." }, "optionsSitePreferencesAllowIframesHelpText": { @@ -1227,7 +1235,7 @@ "description": "Confirmation text when removing site from Site Preferences." }, "optionsSitePreferencesConfirmationHelpText": { - "message": "KeePassXC-Browser はユーザー名のみの検出を削除し、このサイトのすべての機能を有効にします。", + "message": "KeePassXC-Browser はユーザー名のみ検出オプションを削除し、このサイトですべての機能を有効にします。", "description": "Part of confirmation text when removing Site Preferences." }, "optionsSitePreferencesTableCaption": { diff --git a/keepassxc-browser/_locales/ko/messages.json b/keepassxc-browser/_locales/ko/messages.json index 9c19e132..858e6f49 100644 --- a/keepassxc-browser/_locales/ko/messages.json +++ b/keepassxc-browser/_locales/ko/messages.json @@ -766,6 +766,10 @@ "message": "Automatically fill in single-credential entries", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Automatically fill in single TOTP entries", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "자격 증명이 하나만 있을 때 KeePassXC-브라우저에서 자동으로 입력합니다.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "경고! 자동 입력은 안전하지 않을 수 있습니다. 주의하여 사용하십시오. KeePassXC-브라우저에서는 로그인 필드 자동 감지를 시도하지만, 필드가 잘못 감지되었을 경우에는 안전하지 않은 입력 필드에 민감한 정보를 입력할 수도 있습니다.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Use a compact version of the dropdown list to select credentials.", - "description": "Use compact (legacy) mode help text." + "message": "Use a compact version of the dropdown list to select credentials.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "새 자격 증명을 저장할 때 전체 URL 대신 도메인만 저장합니다.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "교차 출처 iframe 허용", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "삭제", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/lt/messages.json b/keepassxc-browser/_locales/lt/messages.json index f7c4fc46..bac2279c 100644 --- a/keepassxc-browser/_locales/lt/messages.json +++ b/keepassxc-browser/_locales/lt/messages.json @@ -192,11 +192,11 @@ "description": "Invalid user verification." }, "errorMessagePasskeysEmptyPublicKey": { - "message": "Empty public key.", + "message": "Tuščias viešasis raktas.", "description": "Empty public key." }, "errorMessagePasskeysInvalidUrlProvided": { - "message": "Invalid URL provided.", + "message": "Pateiktas netinkamas URL.", "description": "Invalid URL provided." }, "errorMessagePasskeysOriginNotAllowed": { @@ -232,7 +232,7 @@ "description": "user.id does not match the required length." }, "errorMessagePasskeysContextIsNotSecure": { - "message": "Context is not secure.", + "message": "Kontekstas yra nesaugus.", "description": "Context is not secure." }, "errorNotConnected": { @@ -240,7 +240,7 @@ "description": "Error notification shown when not connected to KeePassXC." }, "errorCurrentDatabaseNotConnected": { - "message": "Current database is not connected.", + "message": "Dabartinė duomenų bazė yra neprijungta.", "description": "Error notification shown when current database is not connected during action." }, "passwordGeneratorErrorTooLong": { @@ -591,7 +591,7 @@ "description": "A popup message shown when web page has multiple password fields." }, "popupUsername": { - "message": "Username:", + "message": "Naudotojo vardas:", "description": "A username field name shown on credential update." }, "popupButtonNew": { @@ -603,11 +603,11 @@ "description": "Update button text in popup when updating credentials." }, "popupButtonCancel": { - "message": "Cancel", + "message": "Atsisakyti", "description": "Cancel button text in popup when updating credentials." }, "popupButtonBack": { - "message": "Back", + "message": "Atgal", "description": "Back button text in popup when updating credentials." }, "popupButtonIgnore": { @@ -659,7 +659,7 @@ "description": "Custom Login Fields page header." }, "optionsMenuSitePreferences": { - "message": "Site Preferences", + "message": "Svetainės nuostatos", "description": "Site Preferences page header." }, "optionsMenuAbout": { @@ -766,6 +766,10 @@ "message": "Automatically fill in single-credential entries", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Automatically fill in single TOTP entries", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -831,7 +835,7 @@ "description": "Text above radio buttons in the settings page." }, "optionsRadioThreeDays": { - "message": "every three days", + "message": "kas tris dienas", "description": "Radio button text." }, "optionsRadioWeek": { @@ -914,6 +918,10 @@ "message": "Leiskite \"KeePassXC-Browser\" automatiškai užpildyti kredencialus, jei ji gauna tik vieną įrašą.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Warning! Using auto-fill is not safe. Use at your own risk. KeePassXC-Browser automatically tries to detect login fields. However, they may be detected incorrectly, possibly filling sensitive data to unsafe input fields.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Use a compact version of the dropdown list to select credentials.", - "description": "Use compact (legacy) mode help text." + "message": "Use a compact version of the dropdown list to select credentials.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Įrašydami naujus kredencialus, įrašykite tik domeną, o ne visą URL.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Allow Cross-Origin iframes", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Ištrinti", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/my/messages.json b/keepassxc-browser/_locales/my/messages.json index 75fd533f..350832cc 100644 --- a/keepassxc-browser/_locales/my/messages.json +++ b/keepassxc-browser/_locales/my/messages.json @@ -766,6 +766,10 @@ "message": "Automatically fill in single-credential entries", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Automatically fill in single TOTP entries", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "ဖြည့်သွင်းရမည့်အရာ တစ်ခုတည်း လက်ခံရရှိပါက KeePassXC-ဘရောက်ဇာအား အထောက်အထားများကို အလိုအလျောက် ဖြည့်ခွင့်ပြုပါ။\n", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Warning! Using auto-fill is not safe. Use at your own risk. KeePassXC-Browser automatically tries to detect login fields. However, they may be detected incorrectly, possibly filling sensitive data to unsafe input fields.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Use a compact version of the dropdown list to select credentials.", - "description": "Use compact (legacy) mode help text." + "message": "Use a compact version of the dropdown list to select credentials.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "အထောက်အထားသစ်များ သိမ်းချိန်တွင် URL အပြည့်အစုံအစား ဒိုမိန်းကိုသာ သိမ်းပါ။", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Allow Cross-Origin iframes", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "ဖျက်ရန်", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/nb/messages.json b/keepassxc-browser/_locales/nb/messages.json index a5d88e3e..a3b13471 100644 --- a/keepassxc-browser/_locales/nb/messages.json +++ b/keepassxc-browser/_locales/nb/messages.json @@ -766,6 +766,10 @@ "message": "Automatically fill in single-credential entries", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Automatically fill in single TOTP entries", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "La KeePassXC–Browser automatisk fylle ut identifikasjon hvis det bare blir mottatt en enkelt oppføring.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Advarsel! Det er ikke trygt å bruke automatisk utfylling. Bruk på egen risiko. KeePassXC-Browser prøver automatisk å oppdage påloggingsfelt. De kan imidlertid oppdages feil, og muligens fylle ut sensitive data til usikre inndatafelt.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Use a compact version of the dropdown list to select credentials.", - "description": "Use compact (legacy) mode help text." + "message": "Use a compact version of the dropdown list to select credentials.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Ved lagring av ny identifikasjon, lagres bare domenet i stedet for fullstendig URL.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Allow Cross-Origin iframes", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Slette", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/nl/messages.json b/keepassxc-browser/_locales/nl/messages.json index c732fce1..7b6d672a 100644 --- a/keepassxc-browser/_locales/nl/messages.json +++ b/keepassxc-browser/_locales/nl/messages.json @@ -766,6 +766,10 @@ "message": "Enkelvoudige inloggegevens automatisch invullen", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Relevante inloggegevens automatisch invullen", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Enkelvoudige TOTP-gegevens automatisch invullen", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Laat KeePassXC-Browser automatisch inloggegevens invullen als er maar één invoerveld wordt gedetecteerd.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Relevante inloggegevens automatisch invullen als een tweede invoer nodig is.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Waarschuwing! Het gebruik van Automatisch invullen is niet veilig. Gebruik op eigen risico. KeePassXC-Browser probeert automatisch inlogvelden te detecteren. Ze kunnen echter onjuist worden gedetecteerd, waardoor mogelijk gevoelige gegevens worden ingevuld naar onveilige invoervelden.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Gebruik een compacte versie van de keuzelijst om inloggegevens te selecteren.", - "description": "Use compact (legacy) mode help text." + "message": "Gebruik een compacte versie van de keuzelijst om inloggegevens te selecteren.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Sla bij het opslaan van nieuwe inloggegevens alleen het domein op in plaats van de volledige URL.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Cross-origin iframes toestaan", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Verwijderen", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/pl/messages.json b/keepassxc-browser/_locales/pl/messages.json index 2fc6de74..72497bda 100644 --- a/keepassxc-browser/_locales/pl/messages.json +++ b/keepassxc-browser/_locales/pl/messages.json @@ -766,6 +766,10 @@ "message": "Automatycznie wypełnij pojedyncze wpisy", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatycznie wypełnij odpowiednie wpisy danych uwierzytelniających", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Automatycznie wypełniaj pojedyncze wpisy TOTP", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Pozwól KeePassXC-Browser automatycznie wypełnić dane uwierzytelniające, jeśli otrzyma tylko jeden wpis.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatycznie wypełnij odpowiednie dane uwierzytelniające, jeśli potrzebne jest drugie wypełnienie.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Ostrzeżenie! Korzystanie z automatycznego wypełniania nie jest bezpieczne. Używaj na własne ryzyko. KeePassXC‑Browser automatycznie próbuje wykryć pola logowania. Mogą jednak zostać nieprawidłowo wykryte, prawdopodobnie wypełniając poufne dane w niebezpiecznych polach wejściowych.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Użyj kompaktowej wersji listy rozwijanej, aby wybrać dane uwierzytelniające.", - "description": "Use compact (legacy) mode help text." + "message": "Użyj kompaktowej wersji listy rozwijanej, aby wybrać dane uwierzytelniające.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Zapisując nowe dane uwierzytelniające, zapisz tylko domenę zamiast pełnego adresu URL.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Zezwalaj na ramki iframe z różnych źródeł", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Usuwanie", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/pt_BR/messages.json b/keepassxc-browser/_locales/pt_BR/messages.json index 535324a8..6588c169 100644 --- a/keepassxc-browser/_locales/pt_BR/messages.json +++ b/keepassxc-browser/_locales/pt_BR/messages.json @@ -240,7 +240,7 @@ "description": "Error notification shown when not connected to KeePassXC." }, "errorCurrentDatabaseNotConnected": { - "message": "Current database is not connected.", + "message": "O banco de dados atual não está conectado.", "description": "Error notification shown when current database is not connected during action." }, "passwordGeneratorErrorTooLong": { @@ -766,6 +766,10 @@ "message": "Preencher automaticamente entradas de credencial única", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Preencher automaticamente entradas TOTP únicas", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Deixe o KeePassXC-Browser preencher automaticamente as credenciais se receber apenas uma única entrada.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Aviso! Usando preenchimento automático não é seguro. Uso por sua própria conta e risco. KeePassXC-Browser automaticamente tentará detectar os campos de login. De qualquer forma, eles podem ser detectados incorretamente, possibilitando preenchimento de dados sensíveis em campos de entrada não seguros.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Usar uma versão compacta da lista suspensa para selecionar credenciais.", - "description": "Use compact (legacy) mode help text." + "message": "Usar uma versão compacta da lista suspensa para selecionar credenciais.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Ao salvar novas credenciais, salve apenas o domínio em vez da URL completa.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Permitir Iframes de Origem Cruzada", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Excluir", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/pt_PT/messages.json b/keepassxc-browser/_locales/pt_PT/messages.json index bbd4333c..930034c5 100644 --- a/keepassxc-browser/_locales/pt_PT/messages.json +++ b/keepassxc-browser/_locales/pt_PT/messages.json @@ -766,6 +766,10 @@ "message": "Preencher automaticamente as entradas de credenciais únicas", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Preencher automaticamente as entradas TOTP únicas", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Permitir a KeePassXC-Browser preencher automaticamente as credenciais se receber apenas uma única entrada", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Aviso! O uso de preenchimento automático não é seguro. Use por sua conta e risco. KeePassXC-Browser tenta detetar automaticamente campos de autenticação. Contudo, estes campos podem ser detetados de forma incorreta levando ao preenchimento de dados confidenciais em campos de entrada inseguros.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Usa uma versão compacta da lista pendente para selecionar as credenciais.", - "description": "Use compact (legacy) mode help text." + "message": "Usa uma versão compacta da lista pendente para selecionar as credenciais.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Ao guardar as novas credenciais, guardar apenas o domínio e não o URL", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Permitir molduras \"Cross-Origin\"", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Eliminar", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/ro/messages.json b/keepassxc-browser/_locales/ro/messages.json index ac4a27f6..ff0f9253 100644 --- a/keepassxc-browser/_locales/ro/messages.json +++ b/keepassxc-browser/_locales/ro/messages.json @@ -766,6 +766,10 @@ "message": "Automatically fill in single-credential entries", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Automatically fill in single TOTP entries", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Permiteți KeePassXC-Browser să completeze automat credențialele dacă primește doar o singură intrare.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Atenție! Folosirea sistemului de autocompletare nu este sigură. Utilizați-o pe propriul risc. KeePassXC-Browser încearcă să detecteze automat câmpurile de conectare. Cu toate acestea, este posibil ca acestea să fie detectate incorect, completând eventual date sensibile în câmpuri de introducere nesigure.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Use a compact version of the dropdown list to select credentials.", - "description": "Use compact (legacy) mode help text." + "message": "Use a compact version of the dropdown list to select credentials.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Când salvați acreditările noi, Salvați numai domeniul în loc de URL-ul complet.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Allow Cross-Origin iframes", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Şterge", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/ru/messages.json b/keepassxc-browser/_locales/ru/messages.json index 8e317ace..b3025fbb 100644 --- a/keepassxc-browser/_locales/ru/messages.json +++ b/keepassxc-browser/_locales/ru/messages.json @@ -766,6 +766,10 @@ "message": "Автозаполнение элементов с единственными учётными данными", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Автоматически заполнять одиночные записи TOTP", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Разрешить KeePassXC-Browser автоматически заполнять учётные данные, если он получает только одну запись.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Внимание! Использование автозаполнения небезопасно. Используйте его на своё усмотрение. KeePassXC-Browser автоматически пытается обнаружить поля ввода учётных данных. Однако они могут быть обнаружены неправильно, что может привести к заполнению конфиденциальных данных в небезопасных полях.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Компактная версия выпадающего списка для выбора учетных данных.", - "description": "Use compact (legacy) mode help text." + "message": "Компактная версия выпадающего списка для выбора учетных данных.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "При сохранении новых учётных данных сохранять только домен, а не полный URL.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Разрешить Cross-Origin iframes", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Удалить", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/sl/messages.json b/keepassxc-browser/_locales/sl/messages.json index 51ce3f62..96460aca 100644 --- a/keepassxc-browser/_locales/sl/messages.json +++ b/keepassxc-browser/_locales/sl/messages.json @@ -766,6 +766,10 @@ "message": "Automatically fill in single-credential entries", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Automatically fill in single TOTP entries", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Naj KeePassXC-Browser samodejno vnese poverilnice, če pridobi samo en vnos.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Warning! Using auto-fill is not safe. Use at your own risk. KeePassXC-Browser automatically tries to detect login fields. However, they may be detected incorrectly, possibly filling sensitive data to unsafe input fields.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Use a compact version of the dropdown list to select credentials.", - "description": "Use compact (legacy) mode help text." + "message": "Use a compact version of the dropdown list to select credentials.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Pri shranjevanju novih povernic, namesto celotnega URL-ja shranite samo domeno spletnega mesta.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Allow Cross-Origin iframes", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Izbriši", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/sv/messages.json b/keepassxc-browser/_locales/sv/messages.json index e31c928e..dfb42d3b 100644 --- a/keepassxc-browser/_locales/sv/messages.json +++ b/keepassxc-browser/_locales/sv/messages.json @@ -766,6 +766,10 @@ "message": "Fyll automatiskt i enstaka inloggningsuppgifter.", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Fyll automatiskt i relevanta inloggningsuppgifter.", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Fyll automatiskt i enstaka TOTP-poster", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Låt KeePassXC-Browser fylla i inloggningsuppgifter automatiskt om den bara tar emot ett inlägg.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Fyll automatiskt i relevanta inloggningsuppgifter om en andra inmatning behövs.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Varning! Användning av auto-skriv är inte säkert. Använd det på egen risk. KeePassXC-Browser försöker automatiskt identifiera inloggningsfält. De kan dock identifieras felaktigt och eventuellt fyllas i med känslig data i osäkra indatafält.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Använd en kompakt version av listrutan för att välja inloggningsuppgifter.", - "description": "Use compact (legacy) mode help text." + "message": "Använd en kompakt version av listrutan för att välja inloggningsuppgifter.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Spara enbart domänen istället för hela URL:en när nya inloggningsuppgifter sparas.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Tillåt iframes", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Ta bort", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/tr/messages.json b/keepassxc-browser/_locales/tr/messages.json index 20470b45..551fcda2 100644 --- a/keepassxc-browser/_locales/tr/messages.json +++ b/keepassxc-browser/_locales/tr/messages.json @@ -766,6 +766,10 @@ "message": "Tek kimlik doğrulama bilgisi kayıtları otomatik olarak doldurulsun", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Tekil tek kullanımlık parola kayıtları otomatik olarak doldurulsun", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Yalnızca tek bir kayıt alınırsa KeePassXC-Browser otomatik olarak kimlik bilgilerini doldurabilsin.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Uyarı! Otomatik doldurmayı kullanmanın güvenli olmadığını bilerek kullanın. KeePassXC-Browser, oturum açma alanlarını otomatik olarak algılamaya çalışır. Ancak bazen bu alanlar hatalı olarak algılanabilir ve hassas veriler güvenli olmayan alanlara doldurularak görülebilir.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Kimlik doğrulama bilgilerini seçmek için açılan listenin sıkıştırılmış sürümünü kullanır.", - "description": "Use compact (legacy) mode help text." + "message": "Kimlik doğrulama bilgilerini seçmek için açılan listenin sıkıştırılmış sürümünü kullanır.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Yeni kimlik doğrulama bilgileri kaydedilirken, tam adres yerine yalnızca etki alanını kaydeder.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Başka siteden iframe bulunabilsin", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Dil", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/uk/messages.json b/keepassxc-browser/_locales/uk/messages.json index 31faf268..5053638d 100644 --- a/keepassxc-browser/_locales/uk/messages.json +++ b/keepassxc-browser/_locales/uk/messages.json @@ -240,7 +240,7 @@ "description": "Error notification shown when not connected to KeePassXC." }, "errorCurrentDatabaseNotConnected": { - "message": "Current database is not connected.", + "message": "Поточна база даних не підключена.", "description": "Error notification shown when current database is not connected during action." }, "passwordGeneratorErrorTooLong": { @@ -766,6 +766,10 @@ "message": "Автоматично заповнювати записи з одним обліковим записом", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "Автоматично заповнювати записи з одним TOTP", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "Дозволити KeePassXC-Browser автоматично заповнювати облікові дані, якщо виявлено єдиний запис.", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "Обережно! Використання автозаповнення може бути небезпечним. Користуйтеся на власний ризик. KeePassXC-Browser намагається автоматично виявити поля входу. Однак, вони можуть бути неправильно розпізнані, що збільшує ймовірність заповнення вразливих даних у незахищених полях.", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "Використовувати компактну версію випадаючого списку для вибору облікових даних.", - "description": "Use compact (legacy) mode help text." + "message": "Використовувати компактну версію випадаючого списку для вибору облікових даних.", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "Для нових облікових даних зберігати лише домен, а не URL-адресу цілком.", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "Дозволити Cross-Origin iframes", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "Видалити", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/zh_CN/messages.json b/keepassxc-browser/_locales/zh_CN/messages.json index d0c2f039..78b393ea 100644 --- a/keepassxc-browser/_locales/zh_CN/messages.json +++ b/keepassxc-browser/_locales/zh_CN/messages.json @@ -766,6 +766,10 @@ "message": "自动填充单凭据条目", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "Automatically fill in relevant credential entries", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "自动填充单 TOTP 条目", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "只接收到一条条目时,KeePassXC-Browser 将自动填充凭据。", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "Automatically fill in the relevant credential if a second fill is needed.", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "警告!使用自动填充并不安全。您需要自担风险。KeePassXC-Browser 会尝试自动检测登录字段。但是,自动检测可能不准确,导致在不安全的输入字段内填写敏感信息。", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "使用紧凑版本的下拉列表来选择凭据。", - "description": "Use compact (legacy) mode help text." + "message": "使用紧凑版本的下拉列表来选择凭据。", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "保存新凭据时,只保存域名而非完整 URL。", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "允许跨域 iframe 框架", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "删除", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/_locales/zh_TW/messages.json b/keepassxc-browser/_locales/zh_TW/messages.json index af285b72..1223933d 100644 --- a/keepassxc-browser/_locales/zh_TW/messages.json +++ b/keepassxc-browser/_locales/zh_TW/messages.json @@ -766,6 +766,10 @@ "message": "自動填入單一憑證條目", "description": "Automatically fill-in single credential entry checkbox text." }, + "optionsCheckboxAutoFillRelevantCredential": { + "message": "自動填入相關的憑證項目", + "description": "Automatically fill-in relevant credential entry checkbox text." + }, "optionsCheckboxAutoFillSingleTotp": { "message": "自動填入單一 TOTP 條目", "description": "Automatically fill-in single TOTP entries checkbox text." @@ -914,6 +918,10 @@ "message": "若 KeePassXC-Browser 只接收到單一項目,將自動填入憑證。", "description": "Auto-Fill Single Entry option help text." }, + "optionsAutoFillRelevantCredentialHelpText": { + "message": "若需要第二次填入,將自動填入相關憑證。", + "description": "Auto-Fill Relevant Credential option help text." + }, "optionsAutoFillSingleEntryWarning": { "message": "警告!使用自動填入並不安全。使用請自擔風險。KeePassXC-Browser 會嘗試自動偵測登錄欄位。然而,自動偵測可能不準確,導致在不安全的輸入欄位內填寫敏感資料。", "description": "Auto-Fill Single Entry warning text." @@ -939,8 +947,8 @@ "description": "Use monochrome toolbar icon option help text." }, "optionsUseCompactModeHelpText": { - "message": "使用緊湊版本的下拉選單來選擇憑證。", - "description": "Use compact (legacy) mode help text." + "message": "使用緊湊版本的下拉選單來選擇憑證。", + "description": "Use compact (legacy) mode help text." }, "optionsSaveDomainOnlyHelpText": { "message": "儲存新憑證時,只儲存域名而非完整的網址 (URL)。", @@ -1089,7 +1097,7 @@ "optionsColumnAllowIframes": { "message": "允許跨來源 iframe 框架", "description": "Allow iframes column text." - }, + }, "optionsColumnDelete": { "message": "刪除", "description": "Site Preferences list column title." diff --git a/keepassxc-browser/manifest.json b/keepassxc-browser/manifest.json index 6a4f5f8f..8ff9c8f1 100755 --- a/keepassxc-browser/manifest.json +++ b/keepassxc-browser/manifest.json @@ -1,8 +1,8 @@ { "manifest_version": 2, "name": "KeePassXC-Browser", - "version": "1.9.6", - "version_name": "1.9.6", + "version": "1.9.7", + "version_name": "1.9.7", "minimum_chrome_version": "93", "description": "__MSG_extensionDescription__", "author": "KeePassXC Team", diff --git a/package-lock.json b/package-lock.json index c10e803c..aeff3c74 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "keepassxc-browser", - "version": "1.9.6", + "version": "1.9.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "keepassxc-browser", - "version": "1.9.6", + "version": "1.9.7", "license": "GPL-3.0", "dependencies": { "@npmcli/fs": "^2.1.0" diff --git a/package.json b/package.json index a165c210..dbba2a90 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "keepassxc-browser", - "version": "1.9.6", + "version": "1.9.7", "description": "KeePassXC-Browser", "main": "build.js", "devDependencies": {