Quellcode durchsuchen

fix: issue with nbsp in i18next-parser

Ased Mammad vor 1 Jahr
Ursprung
Commit
48e8b45dc9

+ 1 - 0
src/lib/i18n/locales/de/translation.json

@@ -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",

+ 1 - 0
src/lib/i18n/locales/en/translation.json

@@ -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",

+ 1 - 0
src/lib/i18n/locales/fa/translation.json

@@ -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",

+ 1 - 0
src/lib/i18n/locales/fr/translation.json

@@ -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",

+ 1 - 0
src/lib/i18n/locales/uk/translation.json

@@ -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",

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

@@ -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>
 

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

@@ -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>