Skip to content

Commit d4d758f

Browse files
committed
AddStyle
1 parent 00cbcd8 commit d4d758f

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

client/src/locales/en-US.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
"devices": "My devices",
189189
"authentication": "Authentication",
190190
"account": "Account",
191-
"recovery": "Recovery file",
191+
"recovery": "Organization recovery",
192192
"contactUs": "Contact us",
193193
"documentation": "Documentation",
194194
"logout": "Log out",

client/src/locales/fr-FR.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
"devices": "Mes appareils",
188188
"authentication": "Authentification",
189189
"account": "Compte",
190-
"recovery": "Fichier de récupération",
190+
"recovery": "Récupération d'organisation",
191191
"contactUs": "Nous contacter",
192192
"documentation": "Documentation",
193193
"logout": "Déconnexion",

client/src/views/profile/OrganizationRecoveryPage.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ async function goToExportRecoveryDevice(): Promise<void> {
225225
cssClass: 'export-recovery-modal',
226226
componentProps: {
227227
organizationId: orgId.value,
228+
informationManager: informationManager.value,
228229
},
229230
canDismiss: true,
230231
backdropDismiss: true,

client/tests/e2e/specs/my_profile_page.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ msTest('Check if restore-password section is displayed', async ({ myProfilePage
6868
await myProfilePage.locator('.menu-list__item').nth(3).click();
6969
const restorePassword = myProfilePage.locator('.recovery-section--file');
7070
await expect(restorePassword).toBeVisible();
71-
await expect(restorePassword.locator('.recovery-method-content-text__title')).toHaveText('Recovery File');
71+
await expect(restorePassword.locator('.recovery-method-content-text__title')).toHaveText('Recovery files');
7272
await expect(restorePassword.locator('.recovery-method-content-text__description')).toHaveText(
7373
'A recovery file and a secret key allow you to regain access to your data once assembled.',
7474
);
@@ -294,7 +294,7 @@ msTest('Recovery page file flow', async ({ myProfilePage }) => {
294294
const recoveryFileSection = myProfilePage.locator('.recovery-section--file');
295295

296296
await expect(recoveryFileSection).toBeVisible();
297-
await expect(recoveryFileSection.locator('.recovery-method-content-text__title')).toHaveText('Recovery File');
297+
await expect(recoveryFileSection.locator('.recovery-method-content-text__title')).toHaveText('Recovery files');
298298
await expect(recoveryFileSection.locator('.recovery-method-content-text__description')).toHaveText(
299299
'A recovery file and a secret key allow you to regain access to your data once assembled.',
300300
);
@@ -331,7 +331,7 @@ msTest('Recovery page device flow', async ({ myProfilePage }) => {
331331
const backupDeviceSection = myProfilePage.locator('.recovery-section--device');
332332

333333
await expect(backupDeviceSection).toBeVisible();
334-
await expect(backupDeviceSection.locator('.recovery-method-content-text__title')).toHaveText('Backups devices or browsers');
334+
await expect(backupDeviceSection.locator('.recovery-method-content-text__title')).toHaveText('Trusted devices or browsers');
335335
await expect(backupDeviceSection.locator('.recovery-method-content-text__description')).toHaveText(
336336
'Simply add secondary devices or browsers (Chrome or Firefox) to recover your account.',
337337
);

0 commit comments

Comments
 (0)