Skip to content

Commit 8efc673

Browse files
committed
🌐(frontend) update visibility label
Update "Edition" to "Editing" in document sharing interface. Signed-off-by: mellkior <[email protected]>
1 parent de8e812 commit 8efc673

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/frontend/apps/e2e/__tests__/app-impress/doc-visibility.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ test.describe('Doc Visibility: Public', () => {
291291
).toBeVisible();
292292

293293
await page.getByLabel('Visibility mode').click();
294-
await page.getByLabel('Edition').click();
294+
await page.getByLabel('Editing').click();
295295

296296
await expect(
297297
page.getByText('The document visibility has been updated.').first(),
@@ -472,7 +472,7 @@ test.describe('Doc Visibility: Authenticated', () => {
472472

473473
const urlDoc = page.url();
474474
await page.getByLabel('Visibility mode').click();
475-
await page.getByLabel('Edition').click();
475+
await page.getByLabel('Editing').click();
476476

477477
await expect(
478478
page.getByText('The document visibility has been updated.').first(),

src/frontend/apps/impress/src/features/docs/doc-share/hooks/useTranslatedShareSettings.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const useTranslatedShareSettings = () => {
1313

1414
const linkModeTranslations = {
1515
[LinkRole.READER]: t('Reading'),
16-
[LinkRole.EDITOR]: t('Edition'),
16+
[LinkRole.EDITOR]: t('Editing'),
1717
};
1818

1919
const linkReachChoices = {

src/frontend/apps/impress/src/i18n/translations.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"Download anyway": "Trotzdem herunterladen",
6565
"Download your document in a .docx or .pdf format.": "Ihr Dokument als .docx- oder .pdf-Datei herunterladen.",
6666
"E-mail:": "E-Mail:",
67-
"Edition": "Bearbeiten",
67+
"Editing": "Bearbeiten",
6868
"Editor": "Editor",
6969
"Editor unavailable": "Editor nicht verfügbar",
7070
"Emojify": "Emojifizieren",
@@ -283,7 +283,7 @@
283283
"Download anyway": "Télécharger malgré tout",
284284
"Download your document in a .docx or .pdf format.": "Téléchargez votre document au format .docx ou .pdf.",
285285
"E-mail:": "E-mail:",
286-
"Edition": "Édition",
286+
"Editing": "Édition",
287287
"Editor": "Éditeur",
288288
"Editor unavailable": "Éditeur indisponible",
289289
"Empty template": "Sans modèle",
@@ -507,7 +507,7 @@
507507
"Download anyway": "Download alsnog",
508508
"Download your document in a .docx or .pdf format.": "Download jouw document in .docx of .pdf formaat.",
509509
"E-mail:": "Email:",
510-
"Edition": "Editie",
510+
"Editing": "Editie",
511511
"Editor": "Bewerker",
512512
"Editor unavailable": "Editor onbereikbaar",
513513
"Emojify": "Maak met emoji's",

0 commit comments

Comments
 (0)