Skip to content

Commit

Permalink
fix: issue with nbsp in i18next-parser
Browse files Browse the repository at this point in the history
  • Loading branch information
asedmammad committed Mar 8, 2024
1 parent f605bd9 commit 48e8b45
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/lib/i18n/locales/de/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@
"to": "für",
"To access the available model names for downloading,": "Um auf die verfügbaren Modellnamen zum Herunterladen zuzugreifen,",
"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading,",
"to chat input.": "to chat input.",
"Toggle settings": "Einstellungen umschalten",
"Toggle sidebar": "Seitenleiste umschalten",
"Top K": "Top K",
Expand Down
1 change: 1 addition & 0 deletions src/lib/i18n/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@
"to": "to",
"To access the available model names for downloading,": "To access the available model names for downloading,",
"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading,",
"to chat input.": "to chat input.",
"Toggle settings": "Toggle settings",
"Toggle sidebar": "Toggle sidebar",
"Top K": "Top K",
Expand Down
1 change: 1 addition & 0 deletions src/lib/i18n/locales/fa/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@
"to": "به",
"To access the available model names for downloading,": "برای دسترسی به نام مدل های موجود برای دانلود،",
"To access the GGUF models available for downloading,": "برای دسترسی به مدل\u200cهای GGUF موجود برای دانلود،",
"to chat input.": "در ورودی گپ.",
"Toggle settings": "نمایش/عدم نمایش تنظیمات",
"Toggle sidebar": "نمایش/عدم نمایش نوار کناری",
"Top K": "Top K",
Expand Down
1 change: 1 addition & 0 deletions src/lib/i18n/locales/fr/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@
"to": "à",
"To access the available model names for downloading,": "Pour accéder aux noms de modèles disponibles pour le téléchargement,",
"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading,",
"to chat input.": "to chat input.",
"Toggle settings": "Basculer les paramètres",
"Toggle sidebar": "Basculer la barre latérale",
"Top K": "Top K",
Expand Down
1 change: 1 addition & 0 deletions src/lib/i18n/locales/uk/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@
"to": "до",
"To access the available model names for downloading,": "Щоб отримати доступ до назв доступних для завантаження моделей,",
"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading,",
"to chat input.": "для вводу в чат.",
"Toggle settings": "Переключити налаштування",
"Toggle sidebar": "Переключити бокову панель",
"Top K": "Top K",
Expand Down
3 changes: 2 additions & 1 deletion src/routes/(app)/prompts/create/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,8 @@
class=" text-gray-600 dark:text-gray-300 font-medium"
>
/{command}
</span>" &nbsp;{$i18n.t('to chat input.')}
</span>" &nbsp;
{$i18n.t('to chat input.')}
</div>
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/routes/(app)/prompts/edit/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@
class=" text-gray-600 dark:text-gray-300 font-medium"
>
/{command}
</span>" &nbsp;{$i18n.t('to chat input.')}
</span>" &nbsp;
{$i18n.t('to chat input.')}
</div>
</div>

Expand Down

0 comments on commit 48e8b45

Please sign in to comment.