diff --git a/.browserslistrc b/.browserslistrc
new file mode 100644
index 00000000000..ff3f1ffc4c7
--- /dev/null
+++ b/.browserslistrc
@@ -0,0 +1 @@
+> 0.5%, last 3 major versions, Firefox ESR, not dead
diff --git a/.eslintrc.json b/.eslintrc.json
index ce9c4a33426..1a3849aee30 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -97,6 +97,11 @@
// Node
"./libs/node/**/*",
+ //Generator
+ "./libs/tools/generator/components/**/*",
+ "./libs/tools/generator/core/**/*",
+ "./libs/tools/generator/extensions/**/*",
+
// Import/export
"./libs/importer/**/*",
"./libs/tools/export/vault-export/vault-export-core/**/*"
@@ -182,6 +187,33 @@
]
}
},
+ {
+ "files": ["libs/tools/generator/components/src/**/*.ts"],
+ "rules": {
+ "no-restricted-imports": [
+ "error",
+ { "patterns": ["@bitwarden/generator-components/*", "src/**/*"] }
+ ]
+ }
+ },
+ {
+ "files": ["libs/tools/generator/core/src/**/*.ts"],
+ "rules": {
+ "no-restricted-imports": [
+ "error",
+ { "patterns": ["@bitwarden/generator-core/*", "src/**/*"] }
+ ]
+ }
+ },
+ {
+ "files": ["libs/tools/generator/extensions/src/**/*.ts"],
+ "rules": {
+ "no-restricted-imports": [
+ "error",
+ { "patterns": ["@bitwarden/generator-extensions/*", "src/**/*"] }
+ ]
+ }
+ },
{
"files": ["libs/tools/export/vault-export/vault-export-core/src/**/*.ts"],
"rules": {
diff --git a/apps/browser/src/_locales/ar/messages.json b/apps/browser/src/_locales/ar/messages.json
index c4a07015412..c4251626401 100644
--- a/apps/browser/src/_locales/ar/messages.json
+++ b/apps/browser/src/_locales/ar/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "إلغاء القفل"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "إظهار خيارات قائمة السياق"
},
@@ -799,12 +802,39 @@
"message": "داكن مُشمس",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "تصدير الخزنة"
},
"fileFormat": {
"message": "صيغة الملف"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "تحذير",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "خطأ"
},
diff --git a/apps/browser/src/_locales/az/messages.json b/apps/browser/src/_locales/az/messages.json
index 8b3632da1ba..76615435f7b 100644
--- a/apps/browser/src/_locales/az/messages.json
+++ b/apps/browser/src/_locales/az/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Kilidi aç"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Konteks menyu seçimlərini göstər"
},
@@ -799,12 +802,39 @@
"message": "Günəşli tünd",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Anbarı xaricə köçür"
},
"fileFormat": {
"message": "Fayl formatı"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "XƏBƏRDARLIQ",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Xəta"
},
diff --git a/apps/browser/src/_locales/be/messages.json b/apps/browser/src/_locales/be/messages.json
index 5409816accf..6ee3fffdfa5 100644
--- a/apps/browser/src/_locales/be/messages.json
+++ b/apps/browser/src/_locales/be/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Разблакіраваць"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Паказваць параметры кантэкстнага меню"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Экспартаваць сховішча"
},
"fileFormat": {
"message": "Фармат файла"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "ПАПЯРЭДЖАННЕ",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Памылка"
},
diff --git a/apps/browser/src/_locales/bg/messages.json b/apps/browser/src/_locales/bg/messages.json
index e6f6cfc14d8..337467ddfe9 100644
--- a/apps/browser/src/_locales/bg/messages.json
+++ b/apps/browser/src/_locales/bg/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Отключване"
},
+ "additionalOptions": {
+ "message": "Допълнителни настройки"
+ },
"enableContextMenuItem": {
"message": "Показване на опции в контекстното меню"
},
@@ -799,12 +802,39 @@
"message": "Преекспонирано тъмен",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Изнасяне от"
+ },
"exportVault": {
"message": "Изнасяне на трезора"
},
"fileFormat": {
"message": "Формат на файла"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "Изнесеният файл ще бъде защитен с парола, която ще бъде необходима за дешифриране на файла."
+ },
+ "filePassword": {
+ "message": "Парола на файла"
+ },
+ "exportPasswordDescription": {
+ "message": "Парола ще се използва при изнасянето и при внасянето на този файл"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Използвайте ключа си за шифриране, който се получава чрез комбиниране на потребителското име на регистрацията Ви и главната парола. С него изнасянето ще се шифрира и внасянето ще бъда възможно само в текущата регистрация в Битуорден."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Задайте парола за файла, за да шифровате изнесените данни. Ще можете да внесете данните във всяка регистрация в Битуорден използвайки паролата за дешифриране."
+ },
+ "exportTypeHeading": {
+ "message": "Вид изнасяне"
+ },
+ "accountRestricted": {
+ "message": "Регистрацията е ограничена"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "Дънните в полетата „Парола на файла“ и „Потвърждаване на паролата на файла“ не съвпадат."
+ },
"warning": {
"message": "ВНИМАНИЕ",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Изнасяне на трезора на организацията"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Ще бъдат изнесени само записите от трезора свързан с $ORGANIZATION$. Записите в отделните лични трезори и тези в други организации няма да бъдат включени.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Грешка"
},
diff --git a/apps/browser/src/_locales/bn/messages.json b/apps/browser/src/_locales/bn/messages.json
index 1635de5bb8b..541bebd427b 100644
--- a/apps/browser/src/_locales/bn/messages.json
+++ b/apps/browser/src/_locales/bn/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "ভল্ট রফতানি"
},
"fileFormat": {
"message": "ফাইলের ধরণ"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "সতর্কতা",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/bs/messages.json b/apps/browser/src/_locales/bs/messages.json
index db55f4784e4..cd82d91cefc 100644
--- a/apps/browser/src/_locales/bs/messages.json
+++ b/apps/browser/src/_locales/bs/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Export vault"
},
"fileFormat": {
"message": "File format"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "WARNING",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/ca/messages.json b/apps/browser/src/_locales/ca/messages.json
index 01f66bffd64..fe2a25e6595 100644
--- a/apps/browser/src/_locales/ca/messages.json
+++ b/apps/browser/src/_locales/ca/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Desbloqueja"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Mostra les opcions del menú contextual"
},
@@ -799,12 +802,39 @@
"message": "Solaritzat fosc",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Exporta caixa forta"
},
"fileFormat": {
"message": "Format de fitxer"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "ADVERTIMENT",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/cs/messages.json b/apps/browser/src/_locales/cs/messages.json
index 2939bba1468..3b9507fdf21 100644
--- a/apps/browser/src/_locales/cs/messages.json
+++ b/apps/browser/src/_locales/cs/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Odemknout"
},
+ "additionalOptions": {
+ "message": "Další volby"
+ },
"enableContextMenuItem": {
"message": "Zobrazit volby v kontextovém menu"
},
@@ -799,12 +802,39 @@
"message": "Tmavý (solarizovaný)",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Exportovat z"
+ },
"exportVault": {
"message": "Exportovat trezor"
},
"fileFormat": {
"message": "Formát souboru"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "Tento soubor exportu bude chráněn heslem a k dešifrování bude vyžadovat heslo souboru."
+ },
+ "filePassword": {
+ "message": "Heslo souboru"
+ },
+ "exportPasswordDescription": {
+ "message": "Toto heslo bude použito pro export a import tohoto souboru"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Pro zašifrování exportu a omezení importu pouze na aktuální účet Bitwardenu použijte šifrovací klíč Vašeho účtu odvozený z uživatelského jména a hlavního hesla."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Nastavte heslo pro šifrování exportu a importujte ho do libovolného účtu Bitwardenu pomocí hesla pro dešifrování."
+ },
+ "exportTypeHeading": {
+ "message": "Typ exportu"
+ },
+ "accountRestricted": {
+ "message": "Účet je omezený"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "\"Heslo souboru\" a \"Potvrzení hesla souboru\" se neshodují."
+ },
"warning": {
"message": "VAROVÁNÍ",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exportování trezoru organizace"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Exportován bude jen trezor organizace přidružený k položce $ORGANIZATION$. Osobní položky trezoru a položky z jiných organizací nebudou zahrnuty.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Chyba"
},
diff --git a/apps/browser/src/_locales/cy/messages.json b/apps/browser/src/_locales/cy/messages.json
index 58f7bc95446..6bfa7de69f3 100644
--- a/apps/browser/src/_locales/cy/messages.json
+++ b/apps/browser/src/_locales/cy/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Datgloi"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Allforio'r gell"
},
"fileFormat": {
"message": "Fformat y ffeil"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "RHYBUDD",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Gwall"
},
diff --git a/apps/browser/src/_locales/da/messages.json b/apps/browser/src/_locales/da/messages.json
index 8f27f95be02..32266ceb31f 100644
--- a/apps/browser/src/_locales/da/messages.json
+++ b/apps/browser/src/_locales/da/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Oplås"
},
+ "additionalOptions": {
+ "message": "Yderligere indstillinger"
+ },
"enableContextMenuItem": {
"message": "Vis indstillinger i kontekstmenuen"
},
@@ -799,12 +802,39 @@
"message": "Solariseret mørk",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Eksportér fra"
+ },
"exportVault": {
"message": "Eksportér boks"
},
"fileFormat": {
"message": "Filformat"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "Denne fileksport vil være adgangskodebeskyttet og kræve filadgangskoden at dekryptere."
+ },
+ "filePassword": {
+ "message": "Filadgangskode"
+ },
+ "exportPasswordDescription": {
+ "message": "Denne adgangskode vil blive brugt ved eksport og import af denne fil"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Brug kontokrypteringsnøglen, dannet af kontobrugernavn og Hovedadgangskode, for at kryptere eksporten og hindre import til andre end den aktuelle Bitwarden-konto."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Opsæt en adgangskode til både at kryptere eksporten samt dekryptere denne ved import til enhver Bitwarden-konto."
+ },
+ "exportTypeHeading": {
+ "message": "Eksporttype"
+ },
+ "accountRestricted": {
+ "message": "Konto begrænset"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“Filadgangskode” og “Bekræft filadgangskode“ matcher ikke."
+ },
"warning": {
"message": "ADVARSEL",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Eksport af organisationsboks"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Kun organisationsboksen tilknyttet $ORGANIZATION$ eksporteres. Emner i individuelle bokse eller andre organisationer medtages ikke.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Fejl"
},
diff --git a/apps/browser/src/_locales/de/messages.json b/apps/browser/src/_locales/de/messages.json
index 8a7c3e0067d..05c731aa37a 100644
--- a/apps/browser/src/_locales/de/messages.json
+++ b/apps/browser/src/_locales/de/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Entsperren"
},
+ "additionalOptions": {
+ "message": "Weitere Optionen"
+ },
"enableContextMenuItem": {
"message": "Kontextmenüoptionen anzeigen"
},
@@ -799,12 +802,39 @@
"message": "Solarized Dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export aus"
+ },
"exportVault": {
"message": "Tresor exportieren"
},
"fileFormat": {
"message": "Dateiformat"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "Dieser Datei-Export ist passwortgeschützt und erfordert das Dateipasswort zum Entschlüsseln."
+ },
+ "filePassword": {
+ "message": "Dateipasswort"
+ },
+ "exportPasswordDescription": {
+ "message": "Dieses Passwort wird zum Exportieren und Importieren dieser Datei verwendet"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Verwende den Verschlüsselungscode deines Kontos, abgeleitet vom Benutzernamen und Master-Passwort, um den Export zu verschlüsseln und den Import auf das aktuelle Bitwarden-Konto zu beschränken."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Lege ein Dateipasswort fest, um den Export zu verschlüsseln und importiere ihn in ein beliebiges Bitwarden-Konto, wobei das Passwort zum Entschlüsseln genutzt wird."
+ },
+ "exportTypeHeading": {
+ "message": "Exporttyp"
+ },
+ "accountRestricted": {
+ "message": "Konto eingeschränkt"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "„Dateipasswort“ und „Dateipasswort bestätigen“ stimmen nicht überein."
+ },
"warning": {
"message": "ACHTUNG",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Tresor der Organisation wird exportiert"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Nur der mit $ORGANIZATION$ verbundene Organisationstresor wird exportiert. Einträge in persönlichen Tresoren oder anderen Organisationen werden nicht berücksichtigt.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Fehler"
},
diff --git a/apps/browser/src/_locales/el/messages.json b/apps/browser/src/_locales/el/messages.json
index 365f8475a07..da376f6c6a0 100644
--- a/apps/browser/src/_locales/el/messages.json
+++ b/apps/browser/src/_locales/el/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Ξεκλείδωμα"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Εμφάνιση επιλογών μενού περιβάλλοντος"
},
@@ -799,12 +802,39 @@
"message": "Solarized Σκούρο",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Εξαγωγή Vault"
},
"fileFormat": {
"message": "Μορφή αρχείου"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "ΠΡΟΕΙΔΟΠΟΙΗΣΗ",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Σφάλμα"
},
diff --git a/apps/browser/src/_locales/en/messages.json b/apps/browser/src/_locales/en/messages.json
index 8d0f6fe31eb..426f570d643 100644
--- a/apps/browser/src/_locales/en/messages.json
+++ b/apps/browser/src/_locales/en/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
diff --git a/apps/browser/src/_locales/en_GB/messages.json b/apps/browser/src/_locales/en_GB/messages.json
index ffde447604b..0ff4085900c 100644
--- a/apps/browser/src/_locales/en_GB/messages.json
+++ b/apps/browser/src/_locales/en_GB/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Export vault"
},
"fileFormat": {
"message": "File format"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "WARNING",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organisation vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organisation vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organisations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/en_IN/messages.json b/apps/browser/src/_locales/en_IN/messages.json
index 3ceedc40deb..bb1ae5f7318 100644
--- a/apps/browser/src/_locales/en_IN/messages.json
+++ b/apps/browser/src/_locales/en_IN/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarised Dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Export vault"
},
"fileFormat": {
"message": "File format"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "WARNING",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organisation vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organisation vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organisations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/es/messages.json b/apps/browser/src/_locales/es/messages.json
index 3550fa68c03..1134f941513 100644
--- a/apps/browser/src/_locales/es/messages.json
+++ b/apps/browser/src/_locales/es/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Desbloquear"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Mostrar las opciones de menú contextuales"
},
@@ -799,12 +802,39 @@
"message": "Solarized Dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Exportar desde"
+ },
"exportVault": {
"message": "Exportar caja fuerte"
},
"fileFormat": {
"message": "Formato de archivo"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "Esta exportación de archivo estará protegida por contraseña y requerirá la contraseña del archivo para descifrarla."
+ },
+ "filePassword": {
+ "message": "Contraseña del archivo"
+ },
+ "exportPasswordDescription": {
+ "message": "Esta contraseña se utilizará para exportar e importar este archivo"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Utiliza la clave de cifrado de tu cuenta, derivada del nombre de usuario y la contraseña maestra de tu cuenta, para cifrar la exportación y restringir la importación solo a la cuenta actual de Bitwarden."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Establece una contraseña de archivo para cifrar la exportación e importarlo a cualquier cuenta de Bitwarden utilizando la contraseña para el descifrado."
+ },
+ "exportTypeHeading": {
+ "message": "Tipo de exportación"
+ },
+ "accountRestricted": {
+ "message": "Cuenta restringida"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "\"Contraseña de archivo\" y \"Confirmar contraseña de archivo\" no coinciden."
+ },
"warning": {
"message": "ADVERTENCIA",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exportando caja fuerte de la organización"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Solo se exportará la caja fuerte de la organización asociada a $ORGANIZATION$. Los elementos en las cajas fuertes individuales o de otras organizaciones no serán incluidos.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/et/messages.json b/apps/browser/src/_locales/et/messages.json
index 8fb5274c52f..03267c79d7b 100644
--- a/apps/browser/src/_locales/et/messages.json
+++ b/apps/browser/src/_locales/et/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Lukusta lahti"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Kuva parema kliki menüü valikud"
},
@@ -799,12 +802,39 @@
"message": "Solarized tume",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Ekspordi hoidla"
},
"fileFormat": {
"message": "Failivorming"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "HOIATUS",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Viga"
},
diff --git a/apps/browser/src/_locales/eu/messages.json b/apps/browser/src/_locales/eu/messages.json
index 60339f16b14..3d0e37f4147 100644
--- a/apps/browser/src/_locales/eu/messages.json
+++ b/apps/browser/src/_locales/eu/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Erakutsi laster-menuko aukerak"
},
@@ -799,12 +802,39 @@
"message": "Solarized iluna",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Esportatu kutxa gotorra"
},
"fileFormat": {
"message": "Fitxategiaren formatua"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "KONTUZ",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Akatsa"
},
diff --git a/apps/browser/src/_locales/fa/messages.json b/apps/browser/src/_locales/fa/messages.json
index a493a1c24bf..5b55561a6a8 100644
--- a/apps/browser/src/_locales/fa/messages.json
+++ b/apps/browser/src/_locales/fa/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "باز کردن قفل"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "نمایش گزینههای منوی زمینه"
},
@@ -799,12 +802,39 @@
"message": "تاریک خورشیدی",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "برون ریزی گاوصندوق"
},
"fileFormat": {
"message": "فرمت پرونده"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "اخطار",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "خطا"
},
diff --git a/apps/browser/src/_locales/fi/messages.json b/apps/browser/src/_locales/fi/messages.json
index 05d2d3ed952..42251e9e42b 100644
--- a/apps/browser/src/_locales/fi/messages.json
+++ b/apps/browser/src/_locales/fi/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Avaa"
},
+ "additionalOptions": {
+ "message": "Lisäasetukset"
+ },
"enableContextMenuItem": {
"message": "Näytä sisältövalikon valinnat"
},
@@ -799,12 +802,39 @@
"message": "Solarized, tumma",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Vie lähteestä"
+ },
"exportVault": {
"message": "Vie holvi"
},
"fileFormat": {
"message": "Tiedostomuoto"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "Tämä vientitiedosto suojataan salasanalla, joka on syötettävä ja salauksen purkamiseksi."
+ },
+ "filePassword": {
+ "message": "Tiedoston salasana"
+ },
+ "exportPasswordDescription": {
+ "message": "Tätä salasanaa käytetään tämän tiedoston viennissä ja tuonnissa"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Salaa vienti ja rajoita tuonti vain nykyiselle Bitwarden-tilille tilisi käyttäjätunnukseen ja pääsalasanaan pohjautuvalla salausavaimella."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Salaa vientitiedosto salasanalla, joka mahdollistaa sen tuonnin mille tahansa Bitwarden-tilille."
+ },
+ "exportTypeHeading": {
+ "message": "Viennin tyyppi"
+ },
+ "accountRestricted": {
+ "message": "Rajoitettu tilille"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "\"Tiedoston salasana\" ja \"Vahvista tiedoston salasana\" eivät täsmää."
+ },
"warning": {
"message": "VAROITUS",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Organisaation holvin vienti"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Vain organisaatioon $ORGANIZATION$ liitetyn holvin kohteet viedään. Yksityisen holvin ja muiden organisaatioiden kohteita ei sisällytetä.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Virhe"
},
diff --git a/apps/browser/src/_locales/fil/messages.json b/apps/browser/src/_locales/fil/messages.json
index 061da97446b..86f8209e1cd 100644
--- a/apps/browser/src/_locales/fil/messages.json
+++ b/apps/browser/src/_locales/fil/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "I-unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Ipakita ang mga opsyon ng menu ng konteksto"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "I-export vault"
},
"fileFormat": {
"message": "Format ng file"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "BABALA",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Mali"
},
diff --git a/apps/browser/src/_locales/fr/messages.json b/apps/browser/src/_locales/fr/messages.json
index c062390f228..53df48d0004 100644
--- a/apps/browser/src/_locales/fr/messages.json
+++ b/apps/browser/src/_locales/fr/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Déverrouiller"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Afficher les options du menu contextuel"
},
@@ -799,12 +802,39 @@
"message": "Solarized Dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Exporter le coffre"
},
"fileFormat": {
"message": "Format de fichier"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "AVERTISSEMENT",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Erreur"
},
diff --git a/apps/browser/src/_locales/gl/messages.json b/apps/browser/src/_locales/gl/messages.json
index b92e05269eb..dd29c8a071c 100644
--- a/apps/browser/src/_locales/gl/messages.json
+++ b/apps/browser/src/_locales/gl/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Desbloquear"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarizado escuro",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Exportar caixa forte"
},
"fileFormat": {
"message": "Formato de ficheiro"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "ADVERTENCIA",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Erro"
},
diff --git a/apps/browser/src/_locales/he/messages.json b/apps/browser/src/_locales/he/messages.json
index fd49f7e55e8..c191df36bf8 100644
--- a/apps/browser/src/_locales/he/messages.json
+++ b/apps/browser/src/_locales/he/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "יצוא כספת"
},
"fileFormat": {
"message": "פורמט קובץ"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "אזהרה",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "שגיאה"
},
diff --git a/apps/browser/src/_locales/hi/messages.json b/apps/browser/src/_locales/hi/messages.json
index 48c55b30a83..d6ac94bec32 100644
--- a/apps/browser/src/_locales/hi/messages.json
+++ b/apps/browser/src/_locales/hi/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "संदर्भ मेनू विकल्प दिखाएं"
},
@@ -799,12 +802,39 @@
"message": "सौरीकृत अंधेरा",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Export Vault"
},
"fileFormat": {
"message": "File Format"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "चेतावनी",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "एरर"
},
diff --git a/apps/browser/src/_locales/hr/messages.json b/apps/browser/src/_locales/hr/messages.json
index ac452af85ee..8b9f96fa5c4 100644
--- a/apps/browser/src/_locales/hr/messages.json
+++ b/apps/browser/src/_locales/hr/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Otključaj"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Prikaži opcije kotekstualnog izbornika"
},
@@ -799,12 +802,39 @@
"message": "Solarized Dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Izvezi trezor"
},
"fileFormat": {
"message": "Format datoteke"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "UPOZORENJE",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Pogreška"
},
diff --git a/apps/browser/src/_locales/hu/messages.json b/apps/browser/src/_locales/hu/messages.json
index 8b937375a63..8ff50ea4f08 100644
--- a/apps/browser/src/_locales/hu/messages.json
+++ b/apps/browser/src/_locales/hu/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Feloldás"
},
+ "additionalOptions": {
+ "message": "Kiegészítő opciók"
+ },
"enableContextMenuItem": {
"message": "Helyi menü opciók megjelenítése"
},
@@ -799,12 +802,39 @@
"message": "Szolarizált sötét",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Exportálás innen:"
+ },
"exportVault": {
"message": "Széf exportálása"
},
"fileFormat": {
"message": "Fájlformátum"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "Ez a fájl exportálás jelszóval védett és a visszafejtéshez a fájl jelszó megadása szükséges."
+ },
+ "filePassword": {
+ "message": "Fájl jelszó"
+ },
+ "exportPasswordDescription": {
+ "message": "Ezt a jelszó kerül használatba a fájl exportálására és importálására."
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Használjuk a fiók felhasználónevéből és mesterjelszavából származó fióktitkosítási kulcsot az exportálás titkosításához és az importálást csak az aktuális Bitwarden fiókra korlátozzuk."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Állítsunk be egy fájl jelszót az exportálás titkosításához és importáljuk azt bármely Bitwarden fiókba a visszafejtéshez használt jelszó használatával."
+ },
+ "exportTypeHeading": {
+ "message": "Exportálási típus"
+ },
+ "accountRestricted": {
+ "message": "Korlátozott fiók"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "A “Fájl jelszó” és a “Fájl jelszó megerősítés“ nem egyezik."
+ },
"warning": {
"message": "FIGYELEM",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Szervezeti széf exportálása"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Csak $ORGANIZATION$ névvel társított szervezeti széf kerül exportálásra. Ebbe nem kerülnek be a személyes és más szervezeti széf elemek.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Hiba"
},
diff --git a/apps/browser/src/_locales/id/messages.json b/apps/browser/src/_locales/id/messages.json
index b151dbbf21f..19770da2782 100644
--- a/apps/browser/src/_locales/id/messages.json
+++ b/apps/browser/src/_locales/id/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Gelap Solarized",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Ekspor Brankas"
},
"fileFormat": {
"message": "Format Berkas"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "PERINGATAN",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Galat"
},
diff --git a/apps/browser/src/_locales/it/messages.json b/apps/browser/src/_locales/it/messages.json
index 938eb7671e0..614068b1f4d 100644
--- a/apps/browser/src/_locales/it/messages.json
+++ b/apps/browser/src/_locales/it/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Sblocca"
},
+ "additionalOptions": {
+ "message": "Opzioni aggiuntive"
+ },
"enableContextMenuItem": {
"message": "Mostra opzioni nel menu contestuale"
},
@@ -799,12 +802,39 @@
"message": "Scuro solarizzato",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Esporta da"
+ },
"exportVault": {
"message": "Esporta cassaforte"
},
"fileFormat": {
"message": "Formato file"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "Questo file esportato sarà protetto e richiederà la password del file per decifrarlo."
+ },
+ "filePassword": {
+ "message": "Password del file"
+ },
+ "exportPasswordDescription": {
+ "message": "La password sarà utilizzata per importare ed esportare questo file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Usa la chiave di crittografia dell'account, derivata dal nome utente e dalla password principale del tuo account, per crittografare il file di esportazione e limitare l'importazione solo all'account Bitwarden corrente."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Imposta una password del file per crittografare il file esportato e importarlo in qualsiasi account Bitwarden usando la password per decrittografarlo."
+ },
+ "exportTypeHeading": {
+ "message": "Tipo di esportazione"
+ },
+ "accountRestricted": {
+ "message": "Account limitato"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "Le due password del file non corrispondono."
+ },
"warning": {
"message": "ATTENZIONE",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Esportando cassaforte dell'organizzazione"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Solo la cassaforte dell'organizzazione associata a $ORGANIZATION$ sarà esportata. Elementi nelle casseforti individuali o in altre organizzazioni non saranno inclusi.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Errore"
},
diff --git a/apps/browser/src/_locales/ja/messages.json b/apps/browser/src/_locales/ja/messages.json
index cb78bd7fda5..9113b95a7d3 100644
--- a/apps/browser/src/_locales/ja/messages.json
+++ b/apps/browser/src/_locales/ja/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "ロック解除"
},
+ "additionalOptions": {
+ "message": "追加オプション"
+ },
"enableContextMenuItem": {
"message": "コンテキストメニューオプションを表示"
},
@@ -799,12 +802,39 @@
"message": "Solarized ダーク",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "エクスポート元"
+ },
"exportVault": {
"message": "保管庫のエクスポート"
},
"fileFormat": {
"message": "ファイル形式"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "エクスポートするファイルはパスワードで保護され、復号するにはファイルパスワードが必要になります。"
+ },
+ "filePassword": {
+ "message": "ファイルパスワード"
+ },
+ "exportPasswordDescription": {
+ "message": "このパスワードはこのファイルのエクスポートとインポート時に使用します"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "アカウントのユーザー名とマスターパスワードから得られる暗号化キーを使用してエクスポートするデータを暗号化し、現在の Bitwarden アカウントのみがインポートできるよう制限します。"
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "エクスポートを暗号化するためのファイルパスワードを設定します。そのパスワードを使用して、任意の Bitwarden アカウントにインポートします。"
+ },
+ "exportTypeHeading": {
+ "message": "エクスポートの種類"
+ },
+ "accountRestricted": {
+ "message": "アカウント制限"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "「ファイルパスワード」と「ファイルパスワードの確認」が一致しません。"
+ },
"warning": {
"message": "警告",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "組織保管庫のエクスポート"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "$ORGANIZATION$ に関連付けられた組織保管庫のみがエクスポートされます。個々の保管庫または他の組織にあるアイテムは含まれません。",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "エラー"
},
diff --git a/apps/browser/src/_locales/ka/messages.json b/apps/browser/src/_locales/ka/messages.json
index 62347f4acf4..6abd24dafc8 100644
--- a/apps/browser/src/_locales/ka/messages.json
+++ b/apps/browser/src/_locales/ka/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Export vault"
},
"fileFormat": {
"message": "File format"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "WARNING",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/km/messages.json b/apps/browser/src/_locales/km/messages.json
index 64f3623b5af..c3f03166b25 100644
--- a/apps/browser/src/_locales/km/messages.json
+++ b/apps/browser/src/_locales/km/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Export vault"
},
"fileFormat": {
"message": "File format"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "WARNING",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/kn/messages.json b/apps/browser/src/_locales/kn/messages.json
index 7556ee6afd6..e5e1f708f66 100644
--- a/apps/browser/src/_locales/kn/messages.json
+++ b/apps/browser/src/_locales/kn/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "ಡಾರ್ಕ್ ಸೌರ",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "ರಫ್ತು ವಾಲ್ಟ್"
},
"fileFormat": {
"message": "ಕಡತದ ಮಾದರಿ"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "ಎಚ್ಚರಿಕೆ",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/ko/messages.json b/apps/browser/src/_locales/ko/messages.json
index 86295d469a7..552446ef766 100644
--- a/apps/browser/src/_locales/ko/messages.json
+++ b/apps/browser/src/_locales/ko/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "잠금 해제"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized Dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "보관함 내보내기"
},
"fileFormat": {
"message": "파일 형식"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "경고",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "오류"
},
diff --git a/apps/browser/src/_locales/lt/messages.json b/apps/browser/src/_locales/lt/messages.json
index 6f0fc1bbb62..e44efc99da1 100644
--- a/apps/browser/src/_locales/lt/messages.json
+++ b/apps/browser/src/_locales/lt/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Atrakinti"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Rodyti kontekstinio meniu pasririnkimus"
},
@@ -799,12 +802,39 @@
"message": "Saulėtas tamsą",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Eksportuoti saugyklą"
},
"fileFormat": {
"message": "Failo formatas"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "ĮSPĖJIMAS",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Klaida"
},
diff --git a/apps/browser/src/_locales/lv/messages.json b/apps/browser/src/_locales/lv/messages.json
index a7b50ae2a47..ac202682bab 100644
--- a/apps/browser/src/_locales/lv/messages.json
+++ b/apps/browser/src/_locales/lv/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Atslēgt"
},
+ "additionalOptions": {
+ "message": "Papildu iespējas"
+ },
"enableContextMenuItem": {
"message": "Rādīt konteksta izvēlnes iespējas"
},
@@ -799,12 +802,39 @@
"message": "Solarized Dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Izgūt no"
+ },
"exportVault": {
"message": "Izgūt glabātavas saturu"
},
"fileFormat": {
"message": "Datnes veids"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "Šī datņu izgūšana būs aizsargāta ar paroli, un būs nepieciešama datnes parole, lai to atšifrētu."
+ },
+ "filePassword": {
+ "message": "Datnes parole"
+ },
+ "exportPasswordDescription": {
+ "message": "Šī parole tiks izmantota, lai izgūtu un ievietotu šo datni"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Jāizmanto konta šifrēšanas atslēga, kas iegūta no lietotājvārda un galvenās paroles, lai šifrētu izguvi un atļautu ievietošanu tikai pašreizējā Bitwarden kontā."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Uzstādīt paroli, lai šifrētu izguvi un tad to ievietotu jebkurā Bitwarden kontā, izmantojot atšifrēšanas paroli."
+ },
+ "exportTypeHeading": {
+ "message": "Izgūšanas veids"
+ },
+ "accountRestricted": {
+ "message": "Konts ir ierobežots"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "\"Datnes parole\" un \"Apstiprināt datnes paroli\" vērtības nesakrīt."
+ },
"warning": {
"message": "UZMANĪBU",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -813,7 +843,7 @@
"message": "Apstiprināt glabātavas satura izgūšanu"
},
"exportWarningDesc": {
- "message": "Šī izguve satur glabātavas datus nešifrētā veidā. Izdoto datni nevajadzētu glabāt vai sūtīt nedrošos veidos (piemēram, e-pastā). Izdzēst to uzreiz pēc izmantošanas."
+ "message": "Šī izguve satur glabātavas datus nešifrētā veidā. Izgūto datni nevajadzētu glabāt vai sūtīt nedrošos veidos (piemēram, e-pastā). Tā ir jāizdzēš uzreiz pēc izmantošanas."
},
"encExportKeyWarningDesc": {
"message": "Šī izguve šifrē datus ar konta šifrēšanas atslēgu. Ja tā jebkad tiks mainīta, izvadi vajadzētu veikt vēlreiz, jo vairs nebūs iespējams atšifrēt šo datni."
@@ -2171,7 +2201,7 @@
"message": "Sesijai iestājās noildze. Lūgums mēģināt pieteikties vēlreiz."
},
"exportingPersonalVaultTitle": {
- "message": "Izdod personīgo glabātavu"
+ "message": "Izgūst personīgo glabātavu"
},
"exportingIndividualVaultDescription": {
"message": "Tiks izgūti tikai atsevišķi glabātavas vienumi, kas ir saistīti ar $EMAIL$. Apvienības glabātavas vienumi netiks iekļauti. Tiks izgūta tikai glabātavas vienumu informācija, un saistītie pielikumi netiks iekļauti.",
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Izgūst apvienības glabātavu"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Tiks izgūta tikai apvienības glabātava, kas ir saistīta ar $ORGANIZATION$. Atsevišķu glabātavu vai citu apvienību vienumi netiks iekļauti.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Kļūda"
},
@@ -2907,7 +2949,7 @@
"message": "Kļūda izguves datnes atšifrēšanā. Izmantotā atslēga neatbilst tai, kas tika izmantota satura izgūšanai."
},
"invalidFilePassword": {
- "message": "Nederīga datnes parole, lūgums izmantot to paroli, kas tika ievadīta izdošanas datnes izveidošanas brīdī."
+ "message": "Nederīga datnes parole, lūgums izmantot to paroli, kas tika ievadīta izgūšanas datnes izveidošanas brīdī."
},
"importDestination": {
"message": "Ievietošanas galamērķis"
diff --git a/apps/browser/src/_locales/ml/messages.json b/apps/browser/src/_locales/ml/messages.json
index fba3e5486a5..d2a9b2db389 100644
--- a/apps/browser/src/_locales/ml/messages.json
+++ b/apps/browser/src/_locales/ml/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "വാൾട് എക്സ്പോർട്"
},
"fileFormat": {
"message": "ഫയൽ ഫോർമാറ്റ്"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "മുന്നറിയിപ്പ്",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/mr/messages.json b/apps/browser/src/_locales/mr/messages.json
index fe984cb8302..6407be2c68d 100644
--- a/apps/browser/src/_locales/mr/messages.json
+++ b/apps/browser/src/_locales/mr/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Export vault"
},
"fileFormat": {
"message": "File format"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "WARNING",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/my/messages.json b/apps/browser/src/_locales/my/messages.json
index 64f3623b5af..c3f03166b25 100644
--- a/apps/browser/src/_locales/my/messages.json
+++ b/apps/browser/src/_locales/my/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Export vault"
},
"fileFormat": {
"message": "File format"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "WARNING",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/nb/messages.json b/apps/browser/src/_locales/nb/messages.json
index 6993e1f648c..d2feb8798e5 100644
--- a/apps/browser/src/_locales/nb/messages.json
+++ b/apps/browser/src/_locales/nb/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Lås opp"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Vis alternativer for kontekstmeny"
},
@@ -799,12 +802,39 @@
"message": "Solarisert mørk",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Eksporter hvelvet"
},
"fileFormat": {
"message": "Filformat"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "ADVARSEL",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Feil"
},
diff --git a/apps/browser/src/_locales/ne/messages.json b/apps/browser/src/_locales/ne/messages.json
index 64f3623b5af..c3f03166b25 100644
--- a/apps/browser/src/_locales/ne/messages.json
+++ b/apps/browser/src/_locales/ne/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Export vault"
},
"fileFormat": {
"message": "File format"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "WARNING",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/nl/messages.json b/apps/browser/src/_locales/nl/messages.json
index 36a8ad9470a..07c69ec596c 100644
--- a/apps/browser/src/_locales/nl/messages.json
+++ b/apps/browser/src/_locales/nl/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Ontgrendelen"
},
+ "additionalOptions": {
+ "message": "Extra instellingen"
+ },
"enableContextMenuItem": {
"message": "Contextmenu-opties weergeven"
},
@@ -799,12 +802,39 @@
"message": "Overbelicht donker",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Exporteren vanuit"
+ },
"exportVault": {
"message": "Kluis exporteren"
},
"fileFormat": {
"message": "Bestandsindeling"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "We beveiligen deze bestandsexport met een wachtwoord beveiligd, je hebt het bestandswachtwoord nodig om het te decoderen."
+ },
+ "filePassword": {
+ "message": "Bestandswachtwoord"
+ },
+ "exportPasswordDescription": {
+ "message": "We gebruiken dit wachtwoord bij het exporteren en importeren van dit bestand"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Gebruik de encryptiesleutel van je account, afgeleid van je gebruikersnaam en hoodfwachtwoord, om de export te versleutelen en importeren te beperken tot het huidige Bitwarden-account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Stel een bestandswachtwoord in om de export te versleutelen en te importeren naar een willekeurig Bitwarden-account met het wachtwoord voor decoderen."
+ },
+ "exportTypeHeading": {
+ "message": "Exporttype"
+ },
+ "accountRestricted": {
+ "message": "Account beperkt"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "\"Bestandswachtwoord\" en \"Bestandswachtwoord bevestigen\" komen niet overeen."
+ },
"warning": {
"message": "WAARSCHUWING",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Organisatiekluis exporteren"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Exporteert alleen de organisatiekluis van $ORGANIZATION$. Geen persoonlijke kluis-items of items van andere organisaties.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Fout"
},
diff --git a/apps/browser/src/_locales/nn/messages.json b/apps/browser/src/_locales/nn/messages.json
index 64f3623b5af..c3f03166b25 100644
--- a/apps/browser/src/_locales/nn/messages.json
+++ b/apps/browser/src/_locales/nn/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Export vault"
},
"fileFormat": {
"message": "File format"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "WARNING",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/or/messages.json b/apps/browser/src/_locales/or/messages.json
index 64f3623b5af..c3f03166b25 100644
--- a/apps/browser/src/_locales/or/messages.json
+++ b/apps/browser/src/_locales/or/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Export vault"
},
"fileFormat": {
"message": "File format"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "WARNING",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/pl/messages.json b/apps/browser/src/_locales/pl/messages.json
index d5e3940682f..c9959508c95 100644
--- a/apps/browser/src/_locales/pl/messages.json
+++ b/apps/browser/src/_locales/pl/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Odblokuj"
},
+ "additionalOptions": {
+ "message": "Dodatkowe opcje"
+ },
"enableContextMenuItem": {
"message": "Pokaż opcje menu kontekstowego"
},
@@ -799,12 +802,39 @@
"message": "Solarized Dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Eksportuj z"
+ },
"exportVault": {
"message": "Eksportuj sejf"
},
"fileFormat": {
"message": "Format pliku"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "Plik będzie chroniony hasłem, które będzie wymagane do odszyfrowania pliku."
+ },
+ "filePassword": {
+ "message": "Hasło do pliku"
+ },
+ "exportPasswordDescription": {
+ "message": "Hasło będzie używane do eksportowania i importowania pliku"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Użyj klucza szyfrowania konta, pochodzącego z nazwy użytkownika konta i hasła głównego, aby zaszyfrować eksport i ograniczyć import tylko do bieżącego konta Bitwarden."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Ustaw hasło dla pliku, aby zaszyfrować eksport i zaimportować je na dowolne konto Bitwarden przy użyciu hasła do odszyfrowania."
+ },
+ "exportTypeHeading": {
+ "message": "Rodzaj eksportu"
+ },
+ "accountRestricted": {
+ "message": "Konto ograniczone"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“Hasło pliku” i “Potwierdź hasło pliku“ nie pasują do siebie."
+ },
"warning": {
"message": "UWAGA",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Eksportowanie sejfu organizacji"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Tylko sejf organizacji powiązany z $ORGANIZATION$ zostanie wyeksportowany. Pozycje w poszczególnych sejfach lub innych organizacji nie będą uwzględnione.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Błąd"
},
diff --git a/apps/browser/src/_locales/pt_BR/messages.json b/apps/browser/src/_locales/pt_BR/messages.json
index 0a65acf9586..7f247311df6 100644
--- a/apps/browser/src/_locales/pt_BR/messages.json
+++ b/apps/browser/src/_locales/pt_BR/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Desbloquear"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Mostrar opções de menu de contexto"
},
@@ -799,12 +802,39 @@
"message": "Solarized (escuro)",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Exportar Cofre"
},
"fileFormat": {
"message": "Formato de arquivo"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "AVISO",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Erro"
},
diff --git a/apps/browser/src/_locales/pt_PT/messages.json b/apps/browser/src/_locales/pt_PT/messages.json
index 7f4b488fa37..bcbddaff0a2 100644
--- a/apps/browser/src/_locales/pt_PT/messages.json
+++ b/apps/browser/src/_locales/pt_PT/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Desbloquear"
},
+ "additionalOptions": {
+ "message": "Opções adicionais"
+ },
"enableContextMenuItem": {
"message": "Mostrar opções do menu de contexto"
},
@@ -799,12 +802,39 @@
"message": "Solarized (escuro)",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Exportar de"
+ },
"exportVault": {
"message": "Exportar cofre"
},
"fileFormat": {
"message": "Formato do ficheiro"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "A exportação deste ficheiro será protegida por uma palavra-passe e exigirá a palavra-passe do ficheiro para ser desencriptada."
+ },
+ "filePassword": {
+ "message": "Palavra-passe do ficheiro"
+ },
+ "exportPasswordDescription": {
+ "message": "Esta palavra-passe será utilizada para exportar e importar este ficheiro"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Utilize a chave de encriptação da sua conta, derivada do nome de utilizador e da palavra-passe mestra da sua conta, para encriptar a exportação e restringir a importação apenas à conta Bitwarden atual."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Defina uma palavra-passe do ficheiro para encriptar a exportação e importe-a para qualquer conta Bitwarden utilizando a palavra-passe de desencriptação."
+ },
+ "exportTypeHeading": {
+ "message": "Tipo de exportação"
+ },
+ "accountRestricted": {
+ "message": "Conta restringida"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "\"Palavra-passe do ficheiro\" e \"Confirmar palavra-passe do ficheiro\" não correspondem."
+ },
"warning": {
"message": "AVISO",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "A exportar o cofre da organização"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Apenas o cofre da organização associado a $ORGANIZATION$ será exportado. Os itens em cofres individuais ou noutras organizações não serão incluídos.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Erro"
},
diff --git a/apps/browser/src/_locales/ro/messages.json b/apps/browser/src/_locales/ro/messages.json
index 7c5cd8a3acd..a9dae9496b6 100644
--- a/apps/browser/src/_locales/ro/messages.json
+++ b/apps/browser/src/_locales/ro/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Deblocare"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Afișați opțiunile meniului contextual"
},
@@ -799,12 +802,39 @@
"message": "Întuneric solarizat",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Export seif"
},
"fileFormat": {
"message": "Format fișier"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "AVERTISMENT",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Eroare"
},
diff --git a/apps/browser/src/_locales/ru/messages.json b/apps/browser/src/_locales/ru/messages.json
index cbabda5066a..438a04e9639 100644
--- a/apps/browser/src/_locales/ru/messages.json
+++ b/apps/browser/src/_locales/ru/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Разблокировать"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Показать опции контекстного меню"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Экспорт из"
+ },
"exportVault": {
"message": "Экспорт хранилища"
},
"fileFormat": {
"message": "Формат файла"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "Экспорт этого файла будет защищен паролем, и для расшифровки потребуется пароль файла."
+ },
+ "filePassword": {
+ "message": "Пароль к файлу"
+ },
+ "exportPasswordDescription": {
+ "message": "Этот пароль будет использоваться для экспорта и импорта этого файла"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Использовать ключ шифрования вашего аккаунта, полученный из имени пользователя и мастер-пароля, для шифрования экспорта и ограничения импорта только для текущего аккаунта Bitwarden."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Установите пароль файла для шифрования экспорта и импортируйте его в любую учетную запись Bitwarden, используя пароль для расшифровки."
+ },
+ "exportTypeHeading": {
+ "message": "Тип экспорта"
+ },
+ "accountRestricted": {
+ "message": "Ограничено аккаунтом"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "\"Пароль к файлу\" и \"Подтверждение пароля к файлу\" не совпадают."
+ },
"warning": {
"message": "ВНИМАНИЕ",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Экспорт хранилища организации"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Будет экспортировано только хранилище организации, связанное с $ORGANIZATION$. Элементы из личных хранилищ и из других организаций включены не будут.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Ошибка"
},
diff --git a/apps/browser/src/_locales/si/messages.json b/apps/browser/src/_locales/si/messages.json
index b9078c4c0f8..9fa1bb2339c 100644
--- a/apps/browser/src/_locales/si/messages.json
+++ b/apps/browser/src/_locales/si/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "අඳුරු අඳුරු",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "අපනයන සුරක්ෂිතාගාරය"
},
"fileFormat": {
"message": "ගොනු ආකෘතිය"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "අවවාදයයි",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/sk/messages.json b/apps/browser/src/_locales/sk/messages.json
index 63bc7a317c0..b9d7ec78cda 100644
--- a/apps/browser/src/_locales/sk/messages.json
+++ b/apps/browser/src/_locales/sk/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Odomknúť"
},
+ "additionalOptions": {
+ "message": "Ďalšie možnosti"
+ },
"enableContextMenuItem": {
"message": "Zobraziť možnosti kontextovej ponuky"
},
@@ -799,12 +802,39 @@
"message": "Solarized – tmavý",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Exportovať z"
+ },
"exportVault": {
"message": "Export trezoru"
},
"fileFormat": {
"message": "Formát Súboru"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "Tento exportovaný súbor bude chránený heslom a na dešifrovanie bude potrebné heslo súboru."
+ },
+ "filePassword": {
+ "message": "Heslo súboru"
+ },
+ "exportPasswordDescription": {
+ "message": "Toto heslo sa použije na export a import tohto súboru"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Na zašifrovanie exportu a obmedzenie importu len na aktuálny účet Bitwarden použite šifrovací kľúč účtu odvodený z používateľského mena a hlavného hesla účtu."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Nastavte heslo súboru na zašifrovanie exportu a importujte ho do akéhokoľvek účtu Bitwarden pomocou hesla na dešifrovanie."
+ },
+ "exportTypeHeading": {
+ "message": "Typ exportu"
+ },
+ "accountRestricted": {
+ "message": "Obmedzený účet"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "\"Heslo súboru\" a \"Potvrdiť heslo súboru\" sa nezhodujú."
+ },
"warning": {
"message": "UPOZORNENIE",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exportovanie trezora organizácie"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Exportované budú iba položky trezora organizácie spojené s $ORGANIZATION$. Položky osobného trezora a položky z iných organizácií nebudú zahrnuté.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Chyba"
},
diff --git a/apps/browser/src/_locales/sl/messages.json b/apps/browser/src/_locales/sl/messages.json
index c12a31436fd..7333c0d91cc 100644
--- a/apps/browser/src/_locales/sl/messages.json
+++ b/apps/browser/src/_locales/sl/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Prikaži možnosti kontekstnega menuja"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Izvoz trezorja"
},
"fileFormat": {
"message": "Format datoteke"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "OPOZORILO",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Napaka"
},
diff --git a/apps/browser/src/_locales/sr/messages.json b/apps/browser/src/_locales/sr/messages.json
index 941b38132a4..3d15f246499 100644
--- a/apps/browser/src/_locales/sr/messages.json
+++ b/apps/browser/src/_locales/sr/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Откључај"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Прикажи контекстни мени"
},
@@ -799,12 +802,39 @@
"message": "Solarized црно",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Извоз сефа"
},
"fileFormat": {
"message": "Формат датотеке"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "УПОЗОРЕЊЕ",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Грешка"
},
diff --git a/apps/browser/src/_locales/sv/messages.json b/apps/browser/src/_locales/sv/messages.json
index 585d8e2d9a0..210f2358e04 100644
--- a/apps/browser/src/_locales/sv/messages.json
+++ b/apps/browser/src/_locales/sv/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Lås upp"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Visa alternativ för snabbmenyn"
},
@@ -799,12 +802,39 @@
"message": "Solarized mörk",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Exportera valv"
},
"fileFormat": {
"message": "Filformat"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "VARNING",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Fel"
},
diff --git a/apps/browser/src/_locales/te/messages.json b/apps/browser/src/_locales/te/messages.json
index 64f3623b5af..c3f03166b25 100644
--- a/apps/browser/src/_locales/te/messages.json
+++ b/apps/browser/src/_locales/te/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Show context menu options"
},
@@ -799,12 +802,39 @@
"message": "Solarized dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Export vault"
},
"fileFormat": {
"message": "File format"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "WARNING",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/th/messages.json b/apps/browser/src/_locales/th/messages.json
index bd708d0d6e4..f6fc2f4c1de 100644
--- a/apps/browser/src/_locales/th/messages.json
+++ b/apps/browser/src/_locales/th/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Unlock"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "แสดงตัวเลือกเมนูบริบท"
},
@@ -799,12 +802,39 @@
"message": "Solarized Dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Export Vault"
},
"fileFormat": {
"message": "File Format"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "คำเตือน",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Error"
},
diff --git a/apps/browser/src/_locales/tr/messages.json b/apps/browser/src/_locales/tr/messages.json
index 596e779913a..4bee651cdbe 100644
--- a/apps/browser/src/_locales/tr/messages.json
+++ b/apps/browser/src/_locales/tr/messages.json
@@ -185,7 +185,7 @@
"message": "Tarayıcınızın uzantı sitesine gitmek ister misiniz?"
},
"continueToBrowserExtensionStoreDesc": {
- "message": "Help others find out if Bitwarden is right for them. Visit your browser's extension store and leave a rating now."
+ "message": "Bitwarden'ı başkalarına da tanımak ister misiniz? Tarayıcınızın uzantı mağazasını ziyaret edip Bitwarden'ı değerlendirin."
},
"changeMasterPasswordOnWebConfirmation": {
"message": "Ana parolanızı Bitwarden web uygulamasında değiştirebilirsiniz."
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Kilidi aç"
},
+ "additionalOptions": {
+ "message": "Ek seçenekler"
+ },
"enableContextMenuItem": {
"message": "Bağlam menüsü seçeneklerini göster"
},
@@ -799,12 +802,39 @@
"message": "Solarized koyu",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Kasayı dışa aktar"
},
"fileFormat": {
"message": "Dosya biçimi"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "Dosya parolası"
+ },
+ "exportPasswordDescription": {
+ "message": "Bu parola, bu dosyayı dışa ve içe aktarmak için kullanılacaktır"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Dışa aktarmayı şifrelemek ve içe aktarmayı yalnızca mevcut Bitwarden hesabıyla kısıtlamak için, hesabınızın kullanıcı adı ve ana parolasından türetilen hesap şifreleme anahtarınızı kullanın."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Dışa aktardığınız dosyayı şifrelemek ve bir Bitwarden hesabına içe aktarmak için kullanacağınız parolayı belirleyin."
+ },
+ "exportTypeHeading": {
+ "message": "Dışa aktarma türü"
+ },
+ "accountRestricted": {
+ "message": "Hesap kısıtlı"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "\"Dosya parolası\" ile \"Dosya parolasını onaylayın\" eşleşmiyor."
+ },
"warning": {
"message": "UYARI",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Kuruluş kasasını dışa aktarma"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Hata"
},
@@ -2548,7 +2590,7 @@
"message": "Creating account on"
},
"checkYourEmail": {
- "message": "Check your email"
+ "message": "E-postanızı kontrol edin"
},
"followTheLinkInTheEmailSentTo": {
"message": "Follow the link in the email sent to"
@@ -2560,10 +2602,10 @@
"message": "No email?"
},
"goBack": {
- "message": "Go back"
+ "message": "Geri dönüp"
},
"toEditYourEmailAddress": {
- "message": "to edit your email address."
+ "message": "e-posta adresinizi düzenleyin."
},
"eu": {
"message": "AB",
diff --git a/apps/browser/src/_locales/uk/messages.json b/apps/browser/src/_locales/uk/messages.json
index 43861e99e93..571206dbb81 100644
--- a/apps/browser/src/_locales/uk/messages.json
+++ b/apps/browser/src/_locales/uk/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Розблокувати"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Показувати в контекстному меню"
},
@@ -799,12 +802,39 @@
"message": "Solarized темна",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Експортувати сховище"
},
"fileFormat": {
"message": "Формат файлу"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "ПОПЕРЕДЖЕННЯ",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Помилка"
},
diff --git a/apps/browser/src/_locales/vi/messages.json b/apps/browser/src/_locales/vi/messages.json
index 3d6bd434b1a..c8469e97dc6 100644
--- a/apps/browser/src/_locales/vi/messages.json
+++ b/apps/browser/src/_locales/vi/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "Mở khóa"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "Hiển thị tuỳ chọn menu ngữ cảnh"
},
@@ -799,12 +802,39 @@
"message": "Solarized Dark",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "Xuất kho lưu trữ"
},
"fileFormat": {
"message": "File Format"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "CẢNH BÁO",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "Lỗi"
},
diff --git a/apps/browser/src/_locales/zh_CN/messages.json b/apps/browser/src/_locales/zh_CN/messages.json
index f8464f892f8..76181730097 100644
--- a/apps/browser/src/_locales/zh_CN/messages.json
+++ b/apps/browser/src/_locales/zh_CN/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "解锁"
},
+ "additionalOptions": {
+ "message": "附加选项"
+ },
"enableContextMenuItem": {
"message": "显示上下文菜单选项"
},
@@ -799,12 +802,39 @@
"message": "过曝暗",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "导出自"
+ },
"exportVault": {
"message": "导出密码库"
},
"fileFormat": {
"message": "文件格式"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "此文件导出将受密码保护,需要文件密码才能解密。"
+ },
+ "filePassword": {
+ "message": "文件密码"
+ },
+ "exportPasswordDescription": {
+ "message": "此密码将用于导出和导入此文件"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "使用衍生自您账户的用户名和主密码的加密密钥,以加密此导出并限制只能导入到当前的 Bitwarden 账户。"
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "设置一个密码用来加密导出的数据,并使用此密码解密以导入到任意 Bitwarden 账户。"
+ },
+ "exportTypeHeading": {
+ "message": "导出类型"
+ },
+ "accountRestricted": {
+ "message": "账户受限"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "「文件密码」与「确认文件密码」不一致。"
+ },
"warning": {
"message": "警告",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "正在导出组织密码库"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "仅会导出与 $ORGANIZATION$ 关联的组织密码库数据。不包括个人密码库和其他组织中的项目。",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "错误"
},
diff --git a/apps/browser/src/_locales/zh_TW/messages.json b/apps/browser/src/_locales/zh_TW/messages.json
index a3a7bbfb686..79d8b51382e 100644
--- a/apps/browser/src/_locales/zh_TW/messages.json
+++ b/apps/browser/src/_locales/zh_TW/messages.json
@@ -762,6 +762,9 @@
"notificationUnlock": {
"message": "解鎖"
},
+ "additionalOptions": {
+ "message": "Additional options"
+ },
"enableContextMenuItem": {
"message": "顯示內容選單選項"
},
@@ -799,12 +802,39 @@
"message": "Solarized Dark 主題",
"description": "'Solarized' is a noun and the name of a color scheme. It should not be translated."
},
+ "exportFrom": {
+ "message": "Export from"
+ },
"exportVault": {
"message": "匯出密碼庫"
},
"fileFormat": {
"message": "檔案格式"
},
+ "fileEncryptedExportWarningDesc": {
+ "message": "This file export will be password protected and require the file password to decrypt."
+ },
+ "filePassword": {
+ "message": "File password"
+ },
+ "exportPasswordDescription": {
+ "message": "This password will be used to export and import this file"
+ },
+ "accountRestrictedOptionDescription": {
+ "message": "Use your account encryption key, derived from your account's username and Master Password, to encrypt the export and restrict import to only the current Bitwarden account."
+ },
+ "passwordProtectedOptionDescription": {
+ "message": "Set a file password to encrypt the export and import it to any Bitwarden account using the password for decryption."
+ },
+ "exportTypeHeading": {
+ "message": "Export type"
+ },
+ "accountRestricted": {
+ "message": "Account restricted"
+ },
+ "filePasswordAndConfirmFilePasswordDoNotMatch": {
+ "message": "“File password” and “Confirm file password“ do not match."
+ },
"warning": {
"message": "警告",
"description": "WARNING (should stay in capitalized letters if the language permits)"
@@ -2182,6 +2212,18 @@
}
}
},
+ "exportingOrganizationVaultTitle": {
+ "message": "Exporting organization vault"
+ },
+ "exportingOrganizationVaultDesc": {
+ "message": "Only the organization vault associated with $ORGANIZATION$ will be exported. Items in individual vaults or other organizations will not be included.",
+ "placeholders": {
+ "organization": {
+ "content": "$1",
+ "example": "ACME Moving Co."
+ }
+ }
+ },
"error": {
"message": "錯誤"
},
diff --git a/apps/browser/src/autofill/popup/settings/autofill.component.html b/apps/browser/src/autofill/popup/settings/autofill.component.html
index 56c67fba093..30e00d4e641 100644
--- a/apps/browser/src/autofill/popup/settings/autofill.component.html
+++ b/apps/browser/src/autofill/popup/settings/autofill.component.html
@@ -122,6 +122,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -139,5 +187,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/apps/browser/src/autofill/popup/settings/autofill.component.ts b/apps/browser/src/autofill/popup/settings/autofill.component.ts
index 1c6583331f4..7b8a1c32b44 100644
--- a/apps/browser/src/autofill/popup/settings/autofill.component.ts
+++ b/apps/browser/src/autofill/popup/settings/autofill.component.ts
@@ -4,13 +4,18 @@ import { firstValueFrom } from "rxjs";
import { AutofillOverlayVisibility } from "@bitwarden/common/autofill/constants";
import { AutofillSettingsServiceAbstraction } from "@bitwarden/common/autofill/services/autofill-settings.service";
import { DomainSettingsService } from "@bitwarden/common/autofill/services/domain-settings.service";
-import { InlineMenuVisibilitySetting } from "@bitwarden/common/autofill/types";
+import {
+ InlineMenuVisibilitySetting,
+ ClearClipboardDelaySetting,
+} from "@bitwarden/common/autofill/types";
import {
UriMatchStrategy,
UriMatchStrategySetting,
} from "@bitwarden/common/models/domain/domain-service";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
+import { MessagingService } from "@bitwarden/common/platform/abstractions/messaging.service";
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
+import { VaultSettingsService } from "@bitwarden/common/vault/abstractions/vault-settings/vault-settings.service";
import { DialogService } from "@bitwarden/components";
import { BrowserApi } from "../../../platform/browser/browser-api";
@@ -30,8 +35,14 @@ export class AutofillComponent implements OnInit {
enableAutoFillOnPageLoad = false;
autoFillOnPageLoadDefault = false;
autoFillOnPageLoadOptions: any[];
+ enableContextMenuItem = false;
+ enableAutoTotpCopy = false; // TODO: Does it matter if this is set to false or true?
+ clearClipboard: ClearClipboardDelaySetting;
+ clearClipboardOptions: any[];
defaultUriMatch: UriMatchStrategySetting = UriMatchStrategy.Domain;
uriMatchOptions: any[];
+ showCardsCurrentTab = false;
+ showIdentitiesCurrentTab = false;
autofillKeyboardHelperText: string;
accountSwitcherEnabled = false;
@@ -42,6 +53,8 @@ export class AutofillComponent implements OnInit {
private autofillService: AutofillService,
private dialogService: DialogService,
private autofillSettingsService: AutofillSettingsServiceAbstraction,
+ private messagingService: MessagingService,
+ private vaultSettingsService: VaultSettingsService,
) {
this.autoFillOverlayVisibilityOptions = [
{
@@ -61,6 +74,15 @@ export class AutofillComponent implements OnInit {
{ name: i18nService.t("autoFillOnPageLoadYes"), value: true },
{ name: i18nService.t("autoFillOnPageLoadNo"), value: false },
];
+ this.clearClipboardOptions = [
+ { name: i18nService.t("never"), value: null },
+ { name: i18nService.t("tenSeconds"), value: 10 },
+ { name: i18nService.t("twentySeconds"), value: 20 },
+ { name: i18nService.t("thirtySeconds"), value: 30 },
+ { name: i18nService.t("oneMinute"), value: 60 },
+ { name: i18nService.t("twoMinutes"), value: 120 },
+ { name: i18nService.t("fiveMinutes"), value: 300 },
+ ];
this.uriMatchOptions = [
{ name: i18nService.t("baseDomain"), value: UriMatchStrategy.Domain },
{ name: i18nService.t("host"), value: UriMatchStrategy.Host },
@@ -95,6 +117,14 @@ export class AutofillComponent implements OnInit {
this.autofillSettingsService.autofillOnPageLoadDefault$,
);
+ this.enableContextMenuItem = await firstValueFrom(
+ this.autofillSettingsService.enableContextMenu$,
+ );
+
+ this.enableAutoTotpCopy = await firstValueFrom(this.autofillSettingsService.autoCopyTotp$);
+
+ this.clearClipboard = await firstValueFrom(this.autofillSettingsService.clearClipboardDelay$);
+
const defaultUriMatch = await firstValueFrom(
this.domainSettingsService.defaultUriMatchStrategy$,
);
@@ -102,6 +132,12 @@ export class AutofillComponent implements OnInit {
const command = await this.platformUtilsService.getAutofillKeyboardShortcut();
await this.setAutofillKeyboardHelperText(command);
+
+ this.showCardsCurrentTab = await firstValueFrom(this.vaultSettingsService.showCardsCurrentTab$);
+
+ this.showIdentitiesCurrentTab = await firstValueFrom(
+ this.vaultSettingsService.showIdentitiesCurrentTab$,
+ );
}
async updateAutoFillOverlayVisibility() {
@@ -241,4 +277,25 @@ export class AutofillComponent implements OnInit {
async privacyPermissionGranted(): Promise
{
return await BrowserApi.permissionsGranted(["privacy"]);
}
+
+ async updateContextMenuItem() {
+ await this.autofillSettingsService.setEnableContextMenu(this.enableContextMenuItem);
+ this.messagingService.send("bgUpdateContextMenu");
+ }
+
+ async updateAutoTotpCopy() {
+ await this.autofillSettingsService.setAutoCopyTotp(this.enableAutoTotpCopy);
+ }
+
+ async saveClearClipboard() {
+ await this.autofillSettingsService.setClearClipboardDelay(this.clearClipboard);
+ }
+
+ async updateShowCardsCurrentTab() {
+ await this.vaultSettingsService.setShowCardsCurrentTab(this.showCardsCurrentTab);
+ }
+
+ async updateShowIdentitiesCurrentTab() {
+ await this.vaultSettingsService.setShowIdentitiesCurrentTab(this.showIdentitiesCurrentTab);
+ }
}
diff --git a/apps/browser/src/popup/app-routing.animations.ts b/apps/browser/src/popup/app-routing.animations.ts
index b2fa53caba8..065331bd414 100644
--- a/apps/browser/src/popup/app-routing.animations.ts
+++ b/apps/browser/src/popup/app-routing.animations.ts
@@ -196,9 +196,6 @@ export const routerTransition = trigger("routerTransition", [
transition("vault-settings => sync", inSlideLeft),
transition("sync => vault-settings", outSlideRight),
- transition("tabs => options", inSlideLeft),
- transition("options => tabs", outSlideRight),
-
// Appearance settings
transition("tabs => appearance", inSlideLeft),
transition("appearance => tabs", outSlideRight),
diff --git a/apps/browser/src/popup/app-routing.module.ts b/apps/browser/src/popup/app-routing.module.ts
index 9e0377a2f9a..934bf0759a2 100644
--- a/apps/browser/src/popup/app-routing.module.ts
+++ b/apps/browser/src/popup/app-routing.module.ts
@@ -65,7 +65,6 @@ import { VaultSettingsComponent } from "../vault/popup/settings/vault-settings.c
import { extensionRefreshRedirect, extensionRefreshSwap } from "./extension-refresh-route-utils";
import { debounceNavigationGuard } from "./services/debounce-navigation.service";
-import { OptionsComponent } from "./settings/options.component";
import { TabsV2Component } from "./tabs-v2.component";
import { TabsComponent } from "./tabs.component";
@@ -309,12 +308,6 @@ const routes: Routes = [
canActivate: [AuthGuard],
data: { state: "premium" },
},
- {
- path: "options",
- component: OptionsComponent,
- canActivate: [AuthGuard],
- data: { state: "options" },
- },
{
path: "appearance",
component: AppearanceComponent,
diff --git a/apps/browser/src/popup/app.module.ts b/apps/browser/src/popup/app.module.ts
index e16c33de3ae..86f4d9fa768 100644
--- a/apps/browser/src/popup/app.module.ts
+++ b/apps/browser/src/popup/app.module.ts
@@ -82,7 +82,6 @@ import { AppRoutingModule } from "./app-routing.module";
import { AppComponent } from "./app.component";
import { UserVerificationComponent } from "./components/user-verification.component";
import { ServicesModule } from "./services/services.module";
-import { OptionsComponent } from "./settings/options.component";
import { TabsV2Component } from "./tabs-v2.component";
import { TabsComponent } from "./tabs.component";
@@ -149,7 +148,6 @@ import "../platform/popup/locales";
LoginComponent,
LoginViaAuthRequestComponent,
LoginDecryptionOptionsComponent,
- OptionsComponent,
NotificationsSettingsComponent,
AppearanceComponent,
GeneratorComponent,
diff --git a/apps/browser/src/popup/settings/options.component.html b/apps/browser/src/popup/settings/options.component.html
deleted file mode 100644
index 0382eb5b866..00000000000
--- a/apps/browser/src/popup/settings/options.component.html
+++ /dev/null
@@ -1,135 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/browser/src/popup/settings/options.component.ts b/apps/browser/src/popup/settings/options.component.ts
deleted file mode 100644
index cfcc81bb22c..00000000000
--- a/apps/browser/src/popup/settings/options.component.ts
+++ /dev/null
@@ -1,126 +0,0 @@
-import { Component, OnInit } from "@angular/core";
-import { firstValueFrom } from "rxjs";
-
-import { AutofillSettingsServiceAbstraction } from "@bitwarden/common/autofill/services/autofill-settings.service";
-import { DomainSettingsService } from "@bitwarden/common/autofill/services/domain-settings.service";
-import { ClearClipboardDelaySetting } from "@bitwarden/common/autofill/types";
-import {
- UriMatchStrategy,
- UriMatchStrategySetting,
-} from "@bitwarden/common/models/domain/domain-service";
-import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
-import { MessagingService } from "@bitwarden/common/platform/abstractions/messaging.service";
-import { VaultSettingsService } from "@bitwarden/common/vault/abstractions/vault-settings/vault-settings.service";
-
-import { enableAccountSwitching } from "../../platform/flags";
-
-@Component({
- selector: "app-options",
- templateUrl: "options.component.html",
-})
-export class OptionsComponent implements OnInit {
- enableAutoFillOnPageLoad = false;
- autoFillOnPageLoadDefault = false;
- autoFillOnPageLoadOptions: any[];
- enableAutoTotpCopy = false; // TODO: Does it matter if this is set to false or true?
- enableContextMenuItem = false;
- showCardsCurrentTab = false;
- showIdentitiesCurrentTab = false;
- showClearClipboard = true;
- defaultUriMatch: UriMatchStrategySetting = UriMatchStrategy.Domain;
- uriMatchOptions: any[];
- clearClipboard: ClearClipboardDelaySetting;
- clearClipboardOptions: any[];
- showGeneral = true;
- showDisplay = true;
- accountSwitcherEnabled = false;
-
- constructor(
- private messagingService: MessagingService,
- private autofillSettingsService: AutofillSettingsServiceAbstraction,
- private domainSettingsService: DomainSettingsService,
- i18nService: I18nService,
- private vaultSettingsService: VaultSettingsService,
- ) {
- this.uriMatchOptions = [
- { name: i18nService.t("baseDomain"), value: UriMatchStrategy.Domain },
- { name: i18nService.t("host"), value: UriMatchStrategy.Host },
- { name: i18nService.t("startsWith"), value: UriMatchStrategy.StartsWith },
- { name: i18nService.t("regEx"), value: UriMatchStrategy.RegularExpression },
- { name: i18nService.t("exact"), value: UriMatchStrategy.Exact },
- { name: i18nService.t("never"), value: UriMatchStrategy.Never },
- ];
- this.clearClipboardOptions = [
- { name: i18nService.t("never"), value: null },
- { name: i18nService.t("tenSeconds"), value: 10 },
- { name: i18nService.t("twentySeconds"), value: 20 },
- { name: i18nService.t("thirtySeconds"), value: 30 },
- { name: i18nService.t("oneMinute"), value: 60 },
- { name: i18nService.t("twoMinutes"), value: 120 },
- { name: i18nService.t("fiveMinutes"), value: 300 },
- ];
- this.autoFillOnPageLoadOptions = [
- { name: i18nService.t("autoFillOnPageLoadYes"), value: true },
- { name: i18nService.t("autoFillOnPageLoadNo"), value: false },
- ];
-
- this.accountSwitcherEnabled = enableAccountSwitching();
- }
-
- async ngOnInit() {
- this.enableAutoFillOnPageLoad = await firstValueFrom(
- this.autofillSettingsService.autofillOnPageLoad$,
- );
-
- this.autoFillOnPageLoadDefault = await firstValueFrom(
- this.autofillSettingsService.autofillOnPageLoadDefault$,
- );
-
- this.enableContextMenuItem = await firstValueFrom(
- this.autofillSettingsService.enableContextMenu$,
- );
-
- this.showCardsCurrentTab = await firstValueFrom(this.vaultSettingsService.showCardsCurrentTab$);
- this.showIdentitiesCurrentTab = await firstValueFrom(
- this.vaultSettingsService.showIdentitiesCurrentTab$,
- );
-
- this.enableAutoTotpCopy = await firstValueFrom(this.autofillSettingsService.autoCopyTotp$);
-
- const defaultUriMatch = await firstValueFrom(
- this.domainSettingsService.defaultUriMatchStrategy$,
- );
- this.defaultUriMatch = defaultUriMatch == null ? UriMatchStrategy.Domain : defaultUriMatch;
-
- this.clearClipboard = await firstValueFrom(this.autofillSettingsService.clearClipboardDelay$);
- }
-
- async updateContextMenuItem() {
- await this.autofillSettingsService.setEnableContextMenu(this.enableContextMenuItem);
- this.messagingService.send("bgUpdateContextMenu");
- }
-
- async updateAutoTotpCopy() {
- await this.autofillSettingsService.setAutoCopyTotp(this.enableAutoTotpCopy);
- }
-
- async updateAutoFillOnPageLoad() {
- await this.autofillSettingsService.setAutofillOnPageLoad(this.enableAutoFillOnPageLoad);
- }
-
- async updateAutoFillOnPageLoadDefault() {
- await this.autofillSettingsService.setAutofillOnPageLoadDefault(this.autoFillOnPageLoadDefault);
- }
-
- async updateShowCardsCurrentTab() {
- await this.vaultSettingsService.setShowCardsCurrentTab(this.showCardsCurrentTab);
- }
-
- async updateShowIdentitiesCurrentTab() {
- await this.vaultSettingsService.setShowIdentitiesCurrentTab(this.showIdentitiesCurrentTab);
- }
-
- async saveClearClipboard() {
- await this.autofillSettingsService.setClearClipboardDelay(this.clearClipboard);
- }
-}
diff --git a/apps/browser/src/tools/popup/settings/settings.component.html b/apps/browser/src/tools/popup/settings/settings.component.html
index 7dba3d0a3de..c547229653e 100644
--- a/apps/browser/src/tools/popup/settings/settings.component.html
+++ b/apps/browser/src/tools/popup/settings/settings.component.html
@@ -42,14 +42,6 @@
{{ "vault" | i18n }}
-