diff --git a/src/lib/components/AddFilesPlaceholder.svelte b/src/lib/components/AddFilesPlaceholder.svelte
index 3cbd04541..3bdbe9281 100644
--- a/src/lib/components/AddFilesPlaceholder.svelte
+++ b/src/lib/components/AddFilesPlaceholder.svelte
@@ -1,8 +1,13 @@
+
+
📄
-Add Files
+{$i18n.t('Add Files')}
- Drop any files here to add to the conversation
+ {$i18n.t('Drop any files here to add to the conversation')}
diff --git a/src/lib/components/layout/Sidebar.svelte b/src/lib/components/layout/Sidebar.svelte
index ee9c9785d..704d3f73e 100644
--- a/src/lib/components/layout/Sidebar.svelte
+++ b/src/lib/components/layout/Sidebar.svelte
@@ -628,7 +628,7 @@
/>
- Playground
+ {$i18n.t('Playground')}
{/if}
diff --git a/src/lib/components/playground/ChatCompletion.svelte b/src/lib/components/playground/ChatCompletion.svelte
index e3d822d61..38e579ac0 100644
--- a/src/lib/components/playground/ChatCompletion.svelte
+++ b/src/lib/components/playground/ChatCompletion.svelte
@@ -1,5 +1,7 @@
- {$i18n.t('Admin Panel')} | `${$WEBUI_NAME}`
+ {$i18n.t('Admin Panel')} | ${$WEBUI_NAME}
{#key selectedUser}
diff --git a/src/routes/(app)/documents/+page.svelte b/src/routes/(app)/documents/+page.svelte
index 0197f6986..2253ff630 100644
--- a/src/routes/(app)/documents/+page.svelte
+++ b/src/routes/(app)/documents/+page.svelte
@@ -152,9 +152,7 @@
-
- {`Documents | ${$WEBUI_NAME}`}
-
+ {$i18n.t('Documents')} | {$WEBUI_NAME}
{#if dragged}
diff --git a/src/routes/(app)/modelfiles/+page.svelte b/src/routes/(app)/modelfiles/+page.svelte
index 414587e8b..09667c995 100644
--- a/src/routes/(app)/modelfiles/+page.svelte
+++ b/src/routes/(app)/modelfiles/+page.svelte
@@ -73,7 +73,7 @@
- {`Modelfiles | ${$WEBUI_NAME}`}
+ {$i18n.t('Modelfiles')} | {$WEBUI_NAME}
diff --git a/src/routes/(app)/playground/+page.svelte b/src/routes/(app)/playground/+page.svelte
index b7f5ef25e..91a8cb96a 100644
--- a/src/routes/(app)/playground/+page.svelte
+++ b/src/routes/(app)/playground/+page.svelte
@@ -1,7 +1,7 @@