mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
default collection is i18n
This commit is contained in:
@@ -105,7 +105,7 @@ export class CreateOrganizationComponent {
|
|||||||
try {
|
try {
|
||||||
this.formPromise = this.cryptoService.makeShareKey().then((shareKey) => {
|
this.formPromise = this.cryptoService.makeShareKey().then((shareKey) => {
|
||||||
key = shareKey[0].encryptedString;
|
key = shareKey[0].encryptedString;
|
||||||
return this.cryptoService.encrypt('Default Collection', shareKey[1]);
|
return this.cryptoService.encrypt(this.i18nService.t('defaultCollection'), shareKey[1]);
|
||||||
}).then((collection) => {
|
}).then((collection) => {
|
||||||
collectionCt = collection.encryptedString;
|
collectionCt = collection.encryptedString;
|
||||||
if (this.selfHosted || this.plan === 'free') {
|
if (this.selfHosted || this.plan === 'free') {
|
||||||
|
|||||||
@@ -1668,5 +1668,8 @@
|
|||||||
},
|
},
|
||||||
"leftOrganization": {
|
"leftOrganization": {
|
||||||
"message": "You have left the organization."
|
"message": "You have left the organization."
|
||||||
|
},
|
||||||
|
"defaultCollection": {
|
||||||
|
"message": "Default Collection"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user