mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Update to 1.9.6
This commit is contained in:
parent
bab92a11f7
commit
b73245529d
36 changed files with 177 additions and 48 deletions
|
|
@ -1,3 +1,12 @@
|
|||
1.9.6 (2024-12-25)
|
||||
=========================
|
||||
- Add all_urls host permission to Chrome manifest file [#2421]
|
||||
- Add new Predefined Sites (Qt, Max) [#2398]
|
||||
- Add a new notification when trying to fill without a connected database [#2405]
|
||||
- Fix disabling passkeys fallback checkbox when the feature is not in use [#2420]
|
||||
- Fix input field identification [2411] [#2418]
|
||||
- Passkeys: Fix some constant value definitions (thanks a2kolbasov) [#2416]
|
||||
|
||||
1.9.5 (2024-11-27)
|
||||
=========================
|
||||
- Add support for checkboxes with Custom Login Fields [#2372]
|
||||
|
|
|
|||
4
dist/manifest_chromium.json
vendored
4
dist/manifest_chromium.json
vendored
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"manifest_version": 3,
|
||||
"name": "KeePassXC-Browser",
|
||||
"version": "1.9.5",
|
||||
"version_name": "1.9.5",
|
||||
"version": "1.9.6",
|
||||
"version_name": "1.9.6",
|
||||
"minimum_chrome_version": "93",
|
||||
"description": "__MSG_extensionDescription__",
|
||||
"author": "KeePassXC Team",
|
||||
|
|
|
|||
2
dist/manifest_firefox.json
vendored
2
dist/manifest_firefox.json
vendored
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"name": "KeePassXC-Browser",
|
||||
"version": "1.9.5",
|
||||
"version": "1.9.6",
|
||||
"description": "__MSG_extensionDescription__",
|
||||
"author": "KeePassXC Team",
|
||||
"icons": {
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Няма връзка с KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Текущото хранилище не е свързано.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Грешка: Генерираната парола е по-дълга от разрешената дължина!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Nepřipojeno ke KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Chyba:\nVytvořené heslo je delší než délka, která je možná!\nBylo zkráceno, aby se vešlo.\n\nZapamatujte se nové heslo!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Ikke forbundet til KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Fejl: den generet adgangskode er længere end den tilladte længde!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Nicht mit KeePassXC verbunden.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Aktuelle Datenbank ist nicht verbunden.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Fehler:\nDas generierte Passwort ist länger als die zulässige Länge!\nEs wurde auf die Länge abgeschnitten.\n\nBitte merken Sie sich das neue Passwort!",
|
||||
|
|
@ -359,11 +363,11 @@
|
|||
"description": "Shown when no username is set in the credentials."
|
||||
},
|
||||
"credentialsNoLoginsFound": {
|
||||
"message": "Fehler:\nKeine Anmeldungen gefunden.",
|
||||
"message": "Keine Anmeldungen gefunden.",
|
||||
"description": "Shown when no credentials are found for the current page."
|
||||
},
|
||||
"credentialsMultipleFound": {
|
||||
"message": "Fehler:\nIn KeePassXC wurde mehr als eine Anmeldung gefunden!\nKlicken Sie auf das KeePassXC-Browser-Symbol für weitere Optionen.",
|
||||
"message": "In KeePassXC wurde mehr als eine Anmeldung gefunden!",
|
||||
"description": "Alert message when trying to fill username and/or password when multiple credentials are found."
|
||||
},
|
||||
"credentialsMultipleFoundSecondLine": {
|
||||
|
|
@ -371,7 +375,7 @@
|
|||
"description": "Alert message when trying to fill username and/or password when multiple credentials are found."
|
||||
},
|
||||
"credentialsNoUsernameFound": {
|
||||
"message": "Fehler:\nKeine Anmeldedaten für den angegebenen Benutzernamen gefunden.",
|
||||
"message": "Keine Anmeldedaten für den angegebenen Benutzernamen gefunden.",
|
||||
"description": "Alert message when no credentials are found for the given username."
|
||||
},
|
||||
"credentialsNoTOTPFound": {
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Δεν είναι συνδεδεμένο με το KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Σφάλμα: Ο κωδικός πρόσβασης που δημιουργήθηκε είναι μεγαλύτερος από το επιτρεπόμενο μήκος!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Not connected to KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Error: The generated password is longer than the allowed length!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "No conectado a KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"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!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Ei yhteyttä KeePassXC:hen.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Virhe:\nLuotu salasana on sallittua pidempi!\nSalasana on leikattu sopivan pituiseksi.\n\nMuista uusi salasana!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Non connecté à KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Erreur:\nLe mot de passe généré est plus long que la longueur autorisée !\nIl a été tronqué à la longueur maximale.\n\nVeuillez vous souvenir du nouveau mot de passe !",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "לא מחובר ל־KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "שגיאה: הססמה שנוצרה ארוכה מהאורך המותר!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Nincs kapcsolat a KeePassXC-vel.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "A jelenlegi adatbázis nincs csatlakoztatva.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Hiba:\nAz előállított jelszó hosszabb mint a megengedett hossz!\nLe lesz vágva a megengedett legnagyobb hossznál.\n\nJegyezze meg az új jelszót!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Tidak tersambung dengan KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Galat: Sandi yang dibuat melebihi panjang maksimum yang diizinkan!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Non connesso a KeePassXC",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Errore: la password generata è più lunga della lunghezza consentita.",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "KeePassXC に接続していません。",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "エラー: 許可された長さよりも長いパスワードが生成されました!",
|
||||
|
|
@ -259,7 +263,7 @@
|
|||
"message": "Launching the password generator is not supported in this KeePassXC version. Please update KeePassXC to a newer version."
|
||||
},
|
||||
"usernameFieldText": {
|
||||
"message": "KeePassXC から認証情報を反映",
|
||||
"message": "KeePassXC から認証情報を補完します。",
|
||||
"description": "Username field icon hover text."
|
||||
},
|
||||
"usernameFieldTextNoCredentials": {
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "KeePassXC에 연결되지 않았습니다.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "오류:\n생성된 암호가 입력이 허용된 암호보다 더 깁니다!\n허용된 길이에 맞춰서 암호를 잘랐습니다.\n\n새 암호를 기억하십시오!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Neprisijungta prie KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Klaida: sugeneruotas slaptažodis yra ilgesnis nei leistinas ilgis!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "KeePassXC နှင့် ချိတ်ဆက်မထားပါ။",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "ပြဿနာ - ထုတ်လုပ်လိုက်သော စကားဝှက်သည် ခွင့်ပြုထားသည့်အရှည်ထက် ပိုနေသည်။",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Ikke koblet til KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Feil: Det genererte passordet er lengre enn den tillatte lengden.",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Niet verbonden met KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Huidige database is niet verbonden.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Fout: Het gegenereerde wachtwoord is langer dan is toegestaan!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Brak podłączenia do KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Bieżąca baza danych nie jest podłączona.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Błąd: Wygenerowane hasło jest dłuższe niż dozwolona długość!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Não está conectado ao KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Erro: A senha gerada é maior que o tamanho permitido!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Não existe uma ligação a KeePassXC",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Erro: a palavra-passe gerada tem um tamanho superior ao permitido!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Nu este conectat la KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Eroare: parola generată este mai lungă decât lungimea permisă!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Не подключён к KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "ОШИБКА:\nсгенерированный пароль длиннее допустимого!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Ni vzpostavljena povezava s KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Napaka: ustvarjeno geslo je daljše od dovoljene dolžine!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Inte ansluten till KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Aktuell databas är inte ansluten.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Fel:\nDet genererade lösenordet är längre än den tillåtna längden!\nDet har kortats ned för att passa längden.\n\nVänligen kom ihåg det nya lösenordet!",
|
||||
|
|
@ -475,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 har inte konfigurerats. Tryck på anslutningsknappen för att parkoppla med KeePassXC.",
|
||||
"description": "A popup message shown when the extension has not been connected to KeePassXC."
|
||||
},
|
||||
"popupNeedReconfigure": {
|
||||
|
|
@ -483,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": "Tryck på återanslut-knappen för att upprätta en ny anslutning.",
|
||||
"description": "A popup message shown when reconnect is needed."
|
||||
},
|
||||
"popupConfiguredNotAssociated": {
|
||||
|
|
@ -523,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": "Välj en grupp, för att lagra nya inloggningsuppgifter.",
|
||||
"description": "A message shown choosing what group user wants to use for new credentials."
|
||||
},
|
||||
"rememberInfoDefaultGroupNotFound": {
|
||||
|
|
@ -715,7 +719,7 @@
|
|||
"description": "Default group help text."
|
||||
},
|
||||
"optionsLabelDefaultPasskeyGroup": {
|
||||
"message": "Default group for saving new passkeys:",
|
||||
"message": "Standardgrupp för att spara nya passnycklar:",
|
||||
"description": "Default passkey group options text."
|
||||
},
|
||||
"optionsLabelDefaultGroupCheckboxText": {
|
||||
|
|
@ -827,7 +831,7 @@
|
|||
"description": "Text above radio buttons in the settings page."
|
||||
},
|
||||
"optionsRadioThreeDays": {
|
||||
"message": "every three days",
|
||||
"message": "var 3:e dag",
|
||||
"description": "Radio button text."
|
||||
},
|
||||
"optionsRadioWeek": {
|
||||
|
|
@ -1039,7 +1043,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": "Vill du verkligen ta bort följande identifierare från databaslistan: $1?",
|
||||
"description": "Confirmation text when removing database from the list."
|
||||
},
|
||||
"optionsDatabasesRemoveIdentifierConfirmSecond": {
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "KeePassXC ile bağlantı kurulmamış.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Geçerli veri tabanı ile bağlantı kurulamadı.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Hata: Oluşturulan parola izin verilen boyuttan daha uzun!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "Не під'єднано до KeePassXC.",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "Current database is not connected.",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "Помилка: Згенерований пароль довший ніж дозволено!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "未连接到 KeePassXC。",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "当前数据库未连接。",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "错误:生成的密码超过了允许的长度!",
|
||||
|
|
|
|||
|
|
@ -237,7 +237,11 @@
|
|||
},
|
||||
"errorNotConnected": {
|
||||
"message": "未連接至 KeePassXC。",
|
||||
"description": "Error notification shown when not connected to KeePassXC"
|
||||
"description": "Error notification shown when not connected to KeePassXC."
|
||||
},
|
||||
"errorCurrentDatabaseNotConnected": {
|
||||
"message": "目前資料庫尚未連接。",
|
||||
"description": "Error notification shown when current database is not connected during action."
|
||||
},
|
||||
"passwordGeneratorErrorTooLong": {
|
||||
"message": "錯誤:\n產生的密碼超出允許的長度!\n已將其截斷已符合長度。\n\n請記住新的密碼!",
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"name": "KeePassXC-Browser",
|
||||
"version": "1.9.5",
|
||||
"version_name": "1.9.5",
|
||||
"version": "1.9.6",
|
||||
"version_name": "1.9.6",
|
||||
"minimum_chrome_version": "93",
|
||||
"description": "__MSG_extensionDescription__",
|
||||
"author": "KeePassXC Team",
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "keepassxc-browser",
|
||||
"version": "1.9.5",
|
||||
"version": "1.9.6",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "keepassxc-browser",
|
||||
"version": "1.9.5",
|
||||
"version": "1.9.6",
|
||||
"license": "GPL-3.0",
|
||||
"dependencies": {
|
||||
"@npmcli/fs": "^2.1.0"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "keepassxc-browser",
|
||||
"version": "1.9.5",
|
||||
"version": "1.9.6",
|
||||
"description": "KeePassXC-Browser",
|
||||
"main": "build.js",
|
||||
"devDependencies": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue