diff --git a/src/app/settings/create-organization.component.ts b/src/app/settings/create-organization.component.ts index 62d4715489..aeac2ea956 100644 --- a/src/app/settings/create-organization.component.ts +++ b/src/app/settings/create-organization.component.ts @@ -105,7 +105,7 @@ export class CreateOrganizationComponent { try { this.formPromise = this.cryptoService.makeShareKey().then((shareKey) => { key = shareKey[0].encryptedString; - return this.cryptoService.encrypt('Default Collection', shareKey[1]); + return this.cryptoService.encrypt(this.i18nService.t('defaultCollection'), shareKey[1]); }).then((collection) => { collectionCt = collection.encryptedString; if (this.selfHosted || this.plan === 'free') { diff --git a/src/locales/en/messages.json b/src/locales/en/messages.json index 5f2c90d7ac..4d5bde7efd 100644 --- a/src/locales/en/messages.json +++ b/src/locales/en/messages.json @@ -1668,5 +1668,8 @@ }, "leftOrganization": { "message": "You have left the organization." + }, + "defaultCollection": { + "message": "Default Collection" } }