Skip to content

Commit c48a456

Browse files
committed
UpdateStyle
1 parent bc62fa4 commit c48a456

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

client/src/locales/en-US.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2117,18 +2117,18 @@
21172117
},
21182118
"OrganizationRecovery": {
21192119
"title": "Access recovery",
2120-
"description": "Set up recovery options in case you lose access (forgotten password, lost login details, etc.) to your account from a device or browser.",
2120+
"description": "Set up recovery options in case you lose your access (forgotten password, lost login details, etc.) from a device or browser.",
21212121
"advice": "We strongly recommend creating recovery files for each organization.",
21222122
"file": {
21232123
"title": "Recovery files",
2124-
"description": "A recovery file and a secret key allow you to regain access to your data once assembled.",
2125-
"info": "You need to save recovery file and recovery key in a secure place, if possible in separate places, as both are needed to recover a device's access to an organization.",
2124+
"description": "A recovery file combined with a secret key allow you to restore access to your data once assembled.",
2125+
"info": "You need to save this recovery file and this secret key in a secure place, if possible in separate places, as both are needed to recover a device's access to an organization.",
21262126
"downloaded": "Files downloaded",
21272127
"action": "Create recovery files"
21282128
},
21292129
"device": {
21302130
"title": "Trusted devices or browsers",
2131-
"description": "Add secondary devices or browsers (Chrome or Firefox) as a backup access this organization.",
2131+
"description": "Add secondary devices or browsers (Chrome or Firefox) as backup accesses to this organization.",
21322132
"activeDevices": "1 other active device/browser | {count} other active devices/browsers",
21332133
"action": "Add a device"
21342134
},

client/src/locales/fr-FR.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2118,12 +2118,12 @@
21182118
},
21192119
"OrganizationRecovery": {
21202120
"title": "Récupération d'accès",
2121-
"description": "Activez des moyens de récupération en cas de perte de votre accès (mot de passe oublié, authentification perdue, etc.) à votre compte depuis un appareil ou un navigateur.",
2121+
"description": "Activez des moyens de récupération en cas de perte de votre accès (mot de passe oublié, authentification perdue, etc.) depuis un appareil ou un navigateur.",
21222122
"advice": "Nous vous conseillons de créer des fichiers de récupération pour chaque organisation.",
21232123
"file": {
21242124
"title": "Fichiers de récupération",
2125-
"description": "Un fichier de restauration et une clé secrète vous permettent, une fois assemblés, de retrouver l'accès à vos données.",
2126-
"info": "Ils comportent un fichier de récupération et une clé de récupération. Il est nécessaire de les sauvegarder dans des emplacements sûrs, de préférence dans deux emplacements séparés, sachant que les deux sont nécessaires pour restaurer un accès perdu d'un appareil à une organisation.",
2125+
"description": "Un fichier de récupération et une clé secrète vous permettent, une fois assemblés, de retrouver l'accès à vos données.",
2126+
"info": "Il est nécessaire de sauvegarder ce fichier de récupération et cette clé secrète dans des emplacements sûrs, de préférence dans deux emplacements séparés, sachant que les deux sont nécessaires pour restaurer un accès perdu d'un appareil à une organisation.",
21272127
"downloaded": "Fichiers téléchargés",
21282128
"action": "Créer des fichiers de récupération"
21292129
},

client/src/views/devices/DevicesPage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ async function refreshDevicesList(): Promise<void> {
8686
8787
async function onAddDeviceClick(): Promise<void> {
8888
const modalResult = await openDeviceGreetModal(informationManager.value);
89-
if (modalResult.role === MsModalResult.Confirm) {
89+
if (modalResult === MsModalResult.Confirm) {
9090
await refreshDevicesList();
9191
}
9292
}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ msTest('Check if restore-password section is displayed', async ({ myProfilePage
7070
await expect(restorePassword).toBeVisible();
7171
await expect(restorePassword.locator('.recovery-method-content-text__title')).toHaveText('Recovery files');
7272
await expect(restorePassword.locator('.recovery-method-content-text__description')).toHaveText(
73-
'A recovery file and a secret key allow you to regain access to your data once assembled.',
73+
'A recovery file combined with a secret key allow you to restore access to your data once assembled.',
7474
);
7575
await expect(restorePassword.locator('.action-button')).toHaveText('Create recovery files');
7676
});
@@ -296,7 +296,7 @@ msTest('Recovery page file flow', async ({ myProfilePage }) => {
296296
await expect(recoveryFileSection).toBeVisible();
297297
await expect(recoveryFileSection.locator('.recovery-method-content-text__title')).toHaveText('Recovery files');
298298
await expect(recoveryFileSection.locator('.recovery-method-content-text__description')).toHaveText(
299-
'A recovery file and a secret key allow you to regain access to your data once assembled.',
299+
'A recovery file combined with a secret key allow you to restore access to your data once assembled.',
300300
);
301301
await expect(recoveryFileSection.locator('.action-button')).toHaveText('Create recovery files');
302302
await expect(recoveryFileSection.locator('.badge-inactive')).toHaveText('Inactive');
@@ -333,7 +333,7 @@ msTest('Recovery page device flow', async ({ myProfilePage }) => {
333333
await expect(backupDeviceSection).toBeVisible();
334334
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(
336-
'Add secondary devices or browsers (Chrome or Firefox) as a backup access this organization.',
336+
'Add secondary devices or browsers (Chrome or Firefox) as backup accesses to this organization.',
337337
);
338338
await expect(backupDeviceSection.locator('.action-button')).toHaveText('Add a device');
339339
await expect(backupDeviceSection.locator('.badge-active')).toHaveText('Active');

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ for (const error of ['invalid-passphrase', 'invalid-file']) {
142142
await expect(recoveryFileSection).toBeVisible();
143143
await expect(recoveryFileSection.locator('.recovery-method-content-text__title')).toHaveText('Recovery files');
144144
await expect(recoveryFileSection.locator('.recovery-method-content-text__description')).toHaveText(
145-
'A recovery file and a secret key allow you to regain access to your data once assembled.',
145+
'A recovery file combined with a secret key allow you to restore access to your data once assembled.',
146146
);
147147
await expect(recoveryFileSection.locator('.action-button')).toHaveText('Create recovery files');
148148
await expect(recoveryFileSection.locator('.badge-inactive')).toHaveText('Inactive');

0 commit comments

Comments
 (0)