diff --git a/src/lib/components/admin/Functions.svelte b/src/lib/components/admin/Functions.svelte index 676aff9e3d..00f36d0992 100644 --- a/src/lib/components/admin/Functions.svelte +++ b/src/lib/components/admin/Functions.svelte @@ -302,7 +302,7 @@ - {$i18n.t('Functions')} • {$WEBUI_NAME} + {$i18n.t('Functions')} / {$WEBUI_NAME} diff --git a/src/lib/components/automations/AutomationEditor.svelte b/src/lib/components/automations/AutomationEditor.svelte index 0524f45dc0..32d3a81d9f 100644 --- a/src/lib/components/automations/AutomationEditor.svelte +++ b/src/lib/components/automations/AutomationEditor.svelte @@ -221,7 +221,7 @@ - {automation.name || $i18n.t('Automation')} • {$WEBUI_NAME} + {automation.name || $i18n.t('Automation')} / {$WEBUI_NAME} {:else} - #{channel?.name ?? 'Channel'} • Open WebUI + #{channel?.name ?? 'Channel'} / Open WebUI {/if} diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index d059846625..e963cfddca 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -3504,7 +3504,7 @@ {$settings.showChatTitleInTab !== false && $chatTitle - ? `${$chatTitle.length > 30 ? `${$chatTitle.slice(0, 30)}...` : $chatTitle} • ${$WEBUI_NAME}` + ? `${$chatTitle.length > 30 ? `${$chatTitle.slice(0, 30)}...` : $chatTitle} / ${$WEBUI_NAME}` : `${$WEBUI_NAME}`} diff --git a/src/lib/components/notes/NoteEditor.svelte b/src/lib/components/notes/NoteEditor.svelte index 53b24dcfde..0ff1c7f5a8 100644 --- a/src/lib/components/notes/NoteEditor.svelte +++ b/src/lib/components/notes/NoteEditor.svelte @@ -962,7 +962,7 @@ ${content} {note?.title - ? `${note?.title.length > 30 ? `${note?.title.slice(0, 30)}...` : note?.title} • ${$WEBUI_NAME}` + ? `${note?.title.length > 30 ? `${note?.title.slice(0, 30)}...` : note?.title} / ${$WEBUI_NAME}` : `${$WEBUI_NAME}`} diff --git a/src/lib/components/notes/Notes.svelte b/src/lib/components/notes/Notes.svelte index acb8e6b138..d6ada1a58b 100644 --- a/src/lib/components/notes/Notes.svelte +++ b/src/lib/components/notes/Notes.svelte @@ -337,7 +337,7 @@ - {$i18n.t('Notes')} • {$WEBUI_NAME} + {$i18n.t('Notes')} / {$WEBUI_NAME} diff --git a/src/lib/components/workspace/Knowledge.svelte b/src/lib/components/workspace/Knowledge.svelte index e5787b0abf..6d778cde66 100644 --- a/src/lib/components/workspace/Knowledge.svelte +++ b/src/lib/components/workspace/Knowledge.svelte @@ -259,7 +259,7 @@ - {$i18n.t('Knowledge')} • {$WEBUI_NAME} + {$i18n.t('Knowledge')} / {$WEBUI_NAME} diff --git a/src/lib/components/workspace/Models.svelte b/src/lib/components/workspace/Models.svelte index c12c83b8f5..3dd78bea8c 100644 --- a/src/lib/components/workspace/Models.svelte +++ b/src/lib/components/workspace/Models.svelte @@ -433,7 +433,7 @@ - {$i18n.t('Models')} • {$WEBUI_NAME} + {$i18n.t('Models')} / {$WEBUI_NAME} diff --git a/src/lib/components/workspace/Prompts.svelte b/src/lib/components/workspace/Prompts.svelte index 01a14d678a..bfe8c48d94 100644 --- a/src/lib/components/workspace/Prompts.svelte +++ b/src/lib/components/workspace/Prompts.svelte @@ -358,7 +358,7 @@ - {$i18n.t('Prompts')} • {$WEBUI_NAME} + {$i18n.t('Prompts')} / {$WEBUI_NAME} diff --git a/src/lib/components/workspace/Skills.svelte b/src/lib/components/workspace/Skills.svelte index a20af5cd7f..99da0e3506 100644 --- a/src/lib/components/workspace/Skills.svelte +++ b/src/lib/components/workspace/Skills.svelte @@ -249,7 +249,7 @@ - {$i18n.t('Skills')} • {$WEBUI_NAME} + {$i18n.t('Skills')} / {$WEBUI_NAME} diff --git a/src/lib/components/workspace/Tools.svelte b/src/lib/components/workspace/Tools.svelte index 9270db8ea5..b3fd29094e 100644 --- a/src/lib/components/workspace/Tools.svelte +++ b/src/lib/components/workspace/Tools.svelte @@ -282,7 +282,7 @@ - {$i18n.t('Tools')} • {$WEBUI_NAME} + {$i18n.t('Tools')} / {$WEBUI_NAME} diff --git a/src/routes/(app)/admin/+layout.svelte b/src/routes/(app)/admin/+layout.svelte index 5774d3e494..36938c8ecd 100644 --- a/src/routes/(app)/admin/+layout.svelte +++ b/src/routes/(app)/admin/+layout.svelte @@ -27,7 +27,7 @@ - {$i18n.t('Admin Panel')} • {$WEBUI_NAME} + {$i18n.t('Admin Panel')} / {$WEBUI_NAME} diff --git a/src/routes/(app)/automations/+page.svelte b/src/routes/(app)/automations/+page.svelte index b0e062bc9b..8ccc1f8f05 100644 --- a/src/routes/(app)/automations/+page.svelte +++ b/src/routes/(app)/automations/+page.svelte @@ -339,7 +339,7 @@ - {$i18n.t('Automations')} • {$WEBUI_NAME} + {$i18n.t('Automations')} / {$WEBUI_NAME} - {$i18n.t('Calendar')} • {$WEBUI_NAME} + {$i18n.t('Calendar')} / {$WEBUI_NAME} - {$i18n.t('Home')} • {$WEBUI_NAME} + {$i18n.t('Home')} / {$WEBUI_NAME} diff --git a/src/routes/(app)/notes/+layout.svelte b/src/routes/(app)/notes/+layout.svelte index 1942b3d576..e9b3c873dd 100644 --- a/src/routes/(app)/notes/+layout.svelte +++ b/src/routes/(app)/notes/+layout.svelte @@ -24,7 +24,7 @@ - {$i18n.t('Notes')} • {$WEBUI_NAME} + {$i18n.t('Notes')} / {$WEBUI_NAME} diff --git a/src/routes/(app)/playground/+layout.svelte b/src/routes/(app)/playground/+layout.svelte index c51d6c26cb..81223250c7 100644 --- a/src/routes/(app)/playground/+layout.svelte +++ b/src/routes/(app)/playground/+layout.svelte @@ -10,7 +10,7 @@ - {$i18n.t('Playground')} • {$WEBUI_NAME} + {$i18n.t('Playground')} / {$WEBUI_NAME} diff --git a/src/routes/(app)/workspace/+layout.svelte b/src/routes/(app)/workspace/+layout.svelte index ab711a397d..c5edeb5369 100644 --- a/src/routes/(app)/workspace/+layout.svelte +++ b/src/routes/(app)/workspace/+layout.svelte @@ -107,7 +107,7 @@ - {$i18n.t('Workspace')} • {$WEBUI_NAME} + {$i18n.t('Workspace')} / {$WEBUI_NAME} diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 0cc89d86ae..1a5c080d7c 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -539,7 +539,7 @@ if ($isLastActiveTab) { if ($settings?.notificationEnabled ?? false) { - new Notification(`${data.title} • Open WebUI`, { + new Notification(`${data.title} / Open WebUI`, { body: timeStr, icon: `${WEBUI_BASE_URL}/static/favicon.png` }); @@ -674,7 +674,7 @@ if ($isLastActiveTab) { if ($settings?.notificationEnabled ?? false) { - new Notification(`${displayTitle} • Open WebUI`, { + new Notification(`${displayTitle} / Open WebUI`, { body: contentPreview, icon: `${WEBUI_BASE_URL}/static/favicon.png` }); @@ -781,7 +781,7 @@ if ($isLastActiveTab) { if ($settings?.notificationEnabled ?? false) { - new Notification(`${title} • Open WebUI`, { + new Notification(`${title} / Open WebUI`, { body: data?.content, icon: `${WEBUI_API_BASE_URL}/users/${data?.user?.id}/profile/image` }); diff --git a/src/routes/s/[id]/+page.svelte b/src/routes/s/[id]/+page.svelte index 09d7189005..cfec88bcfc 100644 --- a/src/routes/s/[id]/+page.svelte +++ b/src/routes/s/[id]/+page.svelte @@ -149,7 +149,7 @@ {title - ? `${title.length > 30 ? `${title.slice(0, 30)}...` : title} • ${$WEBUI_NAME}` + ? `${title.length > 30 ? `${title.slice(0, 30)}...` : title} / ${$WEBUI_NAME}` : `${$WEBUI_NAME}`}