Skip to content

Commit 48e8b45

Browse files
committed
fix: issue with nbsp in i18next-parser
1 parent f605bd9 commit 48e8b45

File tree

7 files changed

+9
-2
lines changed

7 files changed

+9
-2
lines changed

src/lib/i18n/locales/de/translation.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@
293293
"to": "für",
294294
"To access the available model names for downloading,": "Um auf die verfügbaren Modellnamen zum Herunterladen zuzugreifen,",
295295
"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading,",
296+
"to chat input.": "to chat input.",
296297
"Toggle settings": "Einstellungen umschalten",
297298
"Toggle sidebar": "Seitenleiste umschalten",
298299
"Top K": "Top K",

src/lib/i18n/locales/en/translation.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@
293293
"to": "to",
294294
"To access the available model names for downloading,": "To access the available model names for downloading,",
295295
"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading,",
296+
"to chat input.": "to chat input.",
296297
"Toggle settings": "Toggle settings",
297298
"Toggle sidebar": "Toggle sidebar",
298299
"Top K": "Top K",

src/lib/i18n/locales/fa/translation.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@
293293
"to": "به",
294294
"To access the available model names for downloading,": "برای دسترسی به نام مدل های موجود برای دانلود،",
295295
"To access the GGUF models available for downloading,": "برای دسترسی به مدل\u200cهای GGUF موجود برای دانلود،",
296+
"to chat input.": "در ورودی گپ.",
296297
"Toggle settings": "نمایش/عدم نمایش تنظیمات",
297298
"Toggle sidebar": "نمایش/عدم نمایش نوار کناری",
298299
"Top K": "Top K",

src/lib/i18n/locales/fr/translation.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@
293293
"to": "à",
294294
"To access the available model names for downloading,": "Pour accéder aux noms de modèles disponibles pour le téléchargement,",
295295
"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading,",
296+
"to chat input.": "to chat input.",
296297
"Toggle settings": "Basculer les paramètres",
297298
"Toggle sidebar": "Basculer la barre latérale",
298299
"Top K": "Top K",

src/lib/i18n/locales/uk/translation.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,7 @@
293293
"to": "до",
294294
"To access the available model names for downloading,": "Щоб отримати доступ до назв доступних для завантаження моделей,",
295295
"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading,",
296+
"to chat input.": "для вводу в чат.",
296297
"Toggle settings": "Переключити налаштування",
297298
"Toggle sidebar": "Переключити бокову панель",
298299
"Top K": "Top K",

src/routes/(app)/prompts/create/+page.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@
167167
class=" text-gray-600 dark:text-gray-300 font-medium"
168168
>
169169
/{command}
170-
</span>" &nbsp;{$i18n.t('to chat input.')}
170+
</span>" &nbsp;
171+
{$i18n.t('to chat input.')}
171172
</div>
172173
</div>
173174

src/routes/(app)/prompts/edit/+page.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@
150150
class=" text-gray-600 dark:text-gray-300 font-medium"
151151
>
152152
/{command}
153-
</span>" &nbsp;{$i18n.t('to chat input.')}
153+
</span>" &nbsp;
154+
{$i18n.t('to chat input.')}
154155
</div>
155156
</div>
156157

0 commit comments

Comments
 (0)