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
commit 5a596ae40c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;