Merge pull request #17180 from Viruzaum/untitled-translation-fix

fix/i18n: Fix missing translation of default title of AddTextContentModel
This commit is contained in:
Tim Jaeryang Baek
2025-09-03 18:05:56 +04:00
committed by GitHub

View File

@@ -14,7 +14,7 @@
import VoiceRecording from '$lib/components/chat/MessageInput/VoiceRecording.svelte';
export let show = false;
let name = 'Untitled';
let name = $i18n.t('Untitled');
let content = '';
let voiceInput = false;