Skip to content

Replace "Edition" by "Editing" #856

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ test.describe('Doc Visibility: Public', () => {
).toBeVisible();

await page.getByLabel('Visibility mode').click();
await page.getByLabel('Edition').click();
await page.getByLabel('Editing').click();

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

const urlDoc = page.url();
await page.getByLabel('Visibility mode').click();
await page.getByLabel('Edition').click();
await page.getByLabel('Editing').click();

await expect(
page.getByText('The document visibility has been updated.').first(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const useTranslatedShareSettings = () => {

const linkModeTranslations = {
[LinkRole.READER]: t('Reading'),
[LinkRole.EDITOR]: t('Edition'),
[LinkRole.EDITOR]: t('Editing'),
};

const linkReachChoices = {
Expand Down
6 changes: 3 additions & 3 deletions src/frontend/apps/impress/src/i18n/translations.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"Download anyway": "Trotzdem herunterladen",
"Download your document in a .docx or .pdf format.": "Ihr Dokument als .docx- oder .pdf-Datei herunterladen.",
"E-mail:": "E-Mail:",
"Edition": "Bearbeiten",
"Editing": "Bearbeiten",
"Editor": "Editor",
"Editor unavailable": "Editor nicht verfügbar",
"Emojify": "Emojifizieren",
Expand Down Expand Up @@ -283,7 +283,7 @@
"Download anyway": "Télécharger malgré tout",
"Download your document in a .docx or .pdf format.": "Téléchargez votre document au format .docx ou .pdf.",
"E-mail:": "E-mail:",
"Edition": "Édition",
"Editing": "Édition",
"Editor": "Éditeur",
"Editor unavailable": "Éditeur indisponible",
"Empty template": "Sans modèle",
Expand Down Expand Up @@ -507,7 +507,7 @@
"Download anyway": "Download alsnog",
"Download your document in a .docx or .pdf format.": "Download jouw document in .docx of .pdf formaat.",
"E-mail:": "Email:",
"Edition": "Editie",
"Editing": "Editie",
"Editor": "Bewerker",
"Editor unavailable": "Editor onbereikbaar",
"Emojify": "Maak met emoji's",
Expand Down
Loading