From 55e625a2accc9a06749b49c872887364cec804ae Mon Sep 17 00:00:00 2001
From: Mees Frensel <33722705+meesfrensel@users.noreply.github.com>
Date: Wed, 25 Feb 2026 18:35:25 +0100
Subject: [PATCH] fix(web): error page i18n (#26517)
---
i18n/en.json | 1 +
web/src/lib/components/pages/SharedLinkErrorPage.svelte | 5 +++--
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/i18n/en.json b/i18n/en.json
index 2d77cc3f2f..b99dac5609 100644
--- a/i18n/en.json
+++ b/i18n/en.json
@@ -1074,6 +1074,7 @@
"failed_to_update_notification_status": "Failed to update notification status",
"incorrect_email_or_password": "Incorrect email or password",
"library_folder_already_exists": "This import path already exists.",
+ "page_not_found": "Page not found :/",
"paths_validation_failed": "{paths, plural, one {# path} other {# paths}} failed validation",
"profile_picture_transparent_pixels": "Profile pictures cannot have transparent pixels. Please zoom in and/or move the image.",
"quota_higher_than_disk_size": "You set a quota higher than the disk size",
diff --git a/web/src/lib/components/pages/SharedLinkErrorPage.svelte b/web/src/lib/components/pages/SharedLinkErrorPage.svelte
index 590f4cb270..be03417d85 100644
--- a/web/src/lib/components/pages/SharedLinkErrorPage.svelte
+++ b/web/src/lib/components/pages/SharedLinkErrorPage.svelte
@@ -1,13 +1,14 @@
- Oops! Error - Immich
+ {$t('error')} - Immich
- Page not found :/
+ {$t('errors.page_not_found')}
{#if page.error?.message}
{page.error.message}
{/if}