[FEAT]-Adjust Translations for temporary chat

This commit is contained in:
Erik
2025-04-01 08:21:03 +02:00
parent e0ec2cdeb0
commit abba7c128c
5 changed files with 27 additions and 20 deletions

View File

@@ -29,6 +29,8 @@
$: models = modelIds.map((id) => $_models.find((m) => m.id === id));
const tempChatTooltipText = 'This chat wont appear in history and your messages will not be saved.';
onMount(() => {
mounted = true;
});
@@ -67,15 +69,15 @@
</div>
{#if $temporaryChatEnabled}
<Tooltip
content="This chat won't appear in history and your messages will not be saved."
className="w-fit"
placement="top-start"
>
<div class="flex items-center gap-2 text-gray-500 font-medium text-lg my-2 w-fit">
<EyeSlash strokeWidth="2.5" className="size-5" /> Temporary Chat
</div>
</Tooltip>
<Tooltip
content={$i18n.t(tempChatTooltipText)}
className="w-full flex justify-center mb-0.5"
placement="top"
>
<div class="flex items-center gap-2 text-gray-500 font-medium text-lg my-2 w-fit">
<EyeSlash strokeWidth="2.5" className="size-5" />{$i18n.t('Temporary Chat')}
</div>
</Tooltip>
{/if}
<div

View File

@@ -87,20 +87,22 @@
$: models = selectedModels.map((id) => $_models.find((m) => m.id === id));
const tempChatTooltipText = 'This chat wont appear in history and your messages will not be saved.';
onMount(() => {});
</script>
<div class="m-auto w-full max-w-6xl px-2 @2xl:px-20 translate-y-6 py-24 text-center">
{#if $temporaryChatEnabled}
<Tooltip
content="This chat won't appear in history and your messages will not be saved."
className="w-full flex justify-center mb-0.5"
placement="top"
>
<div class="flex items-center gap-2 text-gray-500 font-medium text-lg my-2 w-fit">
<EyeSlash strokeWidth="2.5" className="size-5" /> Temporary Chat
</div>
</Tooltip>
<Tooltip
content={$i18n.t(tempChatTooltipText)}
className="w-full flex justify-center mb-0.5"
placement="top"
>
<div class="flex items-center gap-2 text-gray-500 font-medium text-lg my-2 w-fit">
<EyeSlash strokeWidth="2.5" className="size-5" />{$i18n.t('Temporary Chat')}
</div>
</Tooltip>
{/if}
<div