This commit is contained in:
Timothy Jaeryang Baek
2026-07-23 13:18:04 -04:00
parent da7097565c
commit 49abfbdd15
20 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -302,7 +302,7 @@
<svelte:head>
<title>
{$i18n.t('Functions')} {$WEBUI_NAME}
{$i18n.t('Functions')} / {$WEBUI_NAME}
</title>
</svelte:head>
@@ -221,7 +221,7 @@
</script>
<svelte:head>
<title>{automation.name || $i18n.t('Automation')} {$WEBUI_NAME}</title>
<title>{automation.name || $i18n.t('Automation')} / {$WEBUI_NAME}</title>
</svelte:head>
<DeleteConfirmDialog
+2 -2
View File
@@ -309,10 +309,10 @@
} else {
return e.name;
}
}, '')} Open WebUI</title
}, '')} / Open WebUI</title
>
{:else}
<title>#{channel?.name ?? 'Channel'} Open WebUI</title>
<title>#{channel?.name ?? 'Channel'} / Open WebUI</title>
{/if}
</svelte:head>
+1 -1
View File
@@ -3504,7 +3504,7 @@
<svelte:head>
<title>
{$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}`}
</title>
</svelte:head>
+1 -1
View File
@@ -962,7 +962,7 @@ ${content}
<svelte:head>
<title>
{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}`}
</title>
</svelte:head>
+1 -1
View File
@@ -337,7 +337,7 @@
<svelte:head>
<title>
{$i18n.t('Notes')} {$WEBUI_NAME}
{$i18n.t('Notes')} / {$WEBUI_NAME}
</title>
</svelte:head>
@@ -259,7 +259,7 @@
<svelte:head>
<title>
{$i18n.t('Knowledge')} {$WEBUI_NAME}
{$i18n.t('Knowledge')} / {$WEBUI_NAME}
</title>
</svelte:head>
+1 -1
View File
@@ -433,7 +433,7 @@
<svelte:head>
<title>
{$i18n.t('Models')} {$WEBUI_NAME}
{$i18n.t('Models')} / {$WEBUI_NAME}
</title>
</svelte:head>
+1 -1
View File
@@ -358,7 +358,7 @@
<svelte:head>
<title>
{$i18n.t('Prompts')} {$WEBUI_NAME}
{$i18n.t('Prompts')} / {$WEBUI_NAME}
</title>
</svelte:head>
+1 -1
View File
@@ -249,7 +249,7 @@
<svelte:head>
<title>
{$i18n.t('Skills')} {$WEBUI_NAME}
{$i18n.t('Skills')} / {$WEBUI_NAME}
</title>
</svelte:head>
+1 -1
View File
@@ -282,7 +282,7 @@
<svelte:head>
<title>
{$i18n.t('Tools')} {$WEBUI_NAME}
{$i18n.t('Tools')} / {$WEBUI_NAME}
</title>
</svelte:head>
+1 -1
View File
@@ -27,7 +27,7 @@
<svelte:head>
<title>
{$i18n.t('Admin Panel')} {$WEBUI_NAME}
{$i18n.t('Admin Panel')} / {$WEBUI_NAME}
</title>
</svelte:head>
+1 -1
View File
@@ -339,7 +339,7 @@
</script>
<svelte:head>
<title>{$i18n.t('Automations')} {$WEBUI_NAME}</title>
<title>{$i18n.t('Automations')} / {$WEBUI_NAME}</title>
</svelte:head>
<DeleteConfirmDialog
+1 -1
View File
@@ -206,7 +206,7 @@
</script>
<svelte:head>
<title>{$i18n.t('Calendar')} {$WEBUI_NAME}</title>
<title>{$i18n.t('Calendar')} / {$WEBUI_NAME}</title>
</svelte:head>
<CalendarEventModal
+1 -1
View File
@@ -12,7 +12,7 @@
<svelte:head>
<title>
{$i18n.t('Home')} {$WEBUI_NAME}
{$i18n.t('Home')} / {$WEBUI_NAME}
</title>
</svelte:head>
+1 -1
View File
@@ -24,7 +24,7 @@
<svelte:head>
<title>
{$i18n.t('Notes')} {$WEBUI_NAME}
{$i18n.t('Notes')} / {$WEBUI_NAME}
</title>
</svelte:head>
+1 -1
View File
@@ -10,7 +10,7 @@
<svelte:head>
<title>
{$i18n.t('Playground')} {$WEBUI_NAME}
{$i18n.t('Playground')} / {$WEBUI_NAME}
</title>
</svelte:head>
+1 -1
View File
@@ -107,7 +107,7 @@
<svelte:head>
<title>
{$i18n.t('Workspace')} {$WEBUI_NAME}
{$i18n.t('Workspace')} / {$WEBUI_NAME}
</title>
</svelte:head>
+3 -3
View File
@@ -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`
});
+1 -1
View File
@@ -149,7 +149,7 @@
<svelte:head>
<title>
{title
? `${title.length > 30 ? `${title.slice(0, 30)}...` : title} ${$WEBUI_NAME}`
? `${title.length > 30 ? `${title.slice(0, 30)}...` : title} / ${$WEBUI_NAME}`
: `${$WEBUI_NAME}`}
</title>
</svelte:head>