From 53f69ace6c9968ee3448c9814c41018d76927604 Mon Sep 17 00:00:00 2001 From: Jannik Streidl Date: Tue, 5 Mar 2024 14:06:27 +0100 Subject: [PATCH] fixed you var + added ua translation for the new playground --- src/lib/components/chat/Messages/UserMessage.svelte | 4 ++-- src/lib/i18n/locales/de/common.json | 2 +- src/lib/i18n/locales/fa/common.json | 3 ++- src/lib/i18n/locales/ua/common.json | 13 ++++++++++++- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/src/lib/components/chat/Messages/UserMessage.svelte b/src/lib/components/chat/Messages/UserMessage.svelte index be47b7a84..b6f1d3487 100644 --- a/src/lib/components/chat/Messages/UserMessage.svelte +++ b/src/lib/components/chat/Messages/UserMessage.svelte @@ -67,13 +67,13 @@ {#if $modelfiles.map((modelfile) => modelfile.tagName).includes(message.user)} {$modelfiles.find((modelfile) => modelfile.tagName === message.user)?.title} {:else} - {$i18n.t('Sie')} + {$i18n.t('You')} {message?.user ?? ''} {/if} {:else if $settings.showUsername} {user.name} {:else} - {$i18n.t('Sie')} + {$i18n.t('You')} {/if} {#if message.timestamp} diff --git a/src/lib/i18n/locales/de/common.json b/src/lib/i18n/locales/de/common.json index ddf2bf8e9..ca812e832 100644 --- a/src/lib/i18n/locales/de/common.json +++ b/src/lib/i18n/locales/de/common.json @@ -322,5 +322,5 @@ "Write a prompt suggestion (e.g. Who are you?)": "Schreiben Sie einen Prompt-Vorschlag (z.B. Wer bist du?)", "Write a summary in 50 words that summarizes [topic or keyword]": "Schreibe eine kurze Zusammenfassung in 50 Wörtern, die [Thema oder Schlüsselwort] zusammenfasst.", "You're a helpful assistant.": "Du bist ein hilfreicher Assistent.", - "You're now logged in.": "Sie sind jetzt angemeldet." + "You": "Sie" } diff --git a/src/lib/i18n/locales/fa/common.json b/src/lib/i18n/locales/fa/common.json index ce6c34b8e..ffede9d70 100644 --- a/src/lib/i18n/locales/fa/common.json +++ b/src/lib/i18n/locales/fa/common.json @@ -322,5 +322,6 @@ "Add message": "Add message", "Enter a user message here": "Enter a user message here", "Enter an assistant message here": "Enter an assistant message here", - "Drop any files here to add to the conversation": "Drop any files here to add to the conversation" + "Drop any files here to add to the conversation": "Drop any files here to add to the conversation", + "You": "You" } diff --git a/src/lib/i18n/locales/ua/common.json b/src/lib/i18n/locales/ua/common.json index 297fb3da1..dc279a642 100644 --- a/src/lib/i18n/locales/ua/common.json +++ b/src/lib/i18n/locales/ua/common.json @@ -311,5 +311,16 @@ "Whisper (Local)": "Шепіт (локально)", "Write a prompt suggestion (e.g. Who are you?)": "Напишіть запит (напр. Хто ти?)", "Write a summary in 50 words that summarizes [topic or keyword]": "Напишіть стислий зміст у 50 слів, який узагальнює [тему або ключове слово]", - "You're now logged in.": "Ви увійшли в систему." + "You're now logged in.": "Ви увійшли в систему.", + "You": "Ви", + "Playground": "Майданчик", + "Add message": "Додати повідомлення", + "Enter a user message here": "Введіть тут повідомлення користувача", + "Enter an assistant message here": "Введіть тут повідомлення асистента", + "Drop any files here to add to the conversation": "Перетягніть сюди файли, щоб додати до розмови", + "You're a helpful assistant.": "Ви корисний асистент.", + "assistant": "асистент", + "Submit": "Надіслати", + "Chat": "Чат", + "Text Completion": "Завершення тексту" }