diff --git a/src/frontend/apps/e2e/__tests__/app-impress/doc-export.spec.ts b/src/frontend/apps/e2e/__tests__/app-impress/doc-export.spec.ts
index eff9592a..db9cb820 100644
--- a/src/frontend/apps/e2e/__tests__/app-impress/doc-export.spec.ts
+++ b/src/frontend/apps/e2e/__tests__/app-impress/doc-export.spec.ts
@@ -29,9 +29,7 @@ test.describe('Doc Export', () => {
.first(),
).toBeVisible();
await expect(
- page.getByText(
- 'Upload your docs to a Microsoft Word, Open Office or PDF document',
- ),
+ page.getByText('Download your document in a .docx or .pdf format.'),
).toBeVisible();
await expect(
page.getByRole('combobox', { name: 'Template' }),
@@ -95,7 +93,7 @@ test.describe('Doc Export', () => {
.click();
await page.getByRole('combobox', { name: 'Format' }).click();
- await page.getByRole('option', { name: 'Word / Open Office' }).click();
+ await page.getByRole('option', { name: 'Docx' }).click();
await page
.getByRole('button', {
diff --git a/src/frontend/apps/impress/src/features/docs/doc-header/components/ModalExport.tsx b/src/frontend/apps/impress/src/features/docs/doc-header/components/ModalExport.tsx
index 4e72a6eb..7d7f1657 100644
--- a/src/frontend/apps/impress/src/features/docs/doc-header/components/ModalExport.tsx
+++ b/src/frontend/apps/impress/src/features/docs/doc-header/components/ModalExport.tsx
@@ -179,9 +179,7 @@ export const ModalExport = ({ onClose, doc }: ModalExportProps) => {
$gap="1rem"
>
- {t(
- 'Upload your docs to a Microsoft Word, Open Office or PDF document.',
- )}
+ {t('Download your document in a .docx or .pdf format.')}