From 20a3db975dc97ee3340182f08cbd9aa684f352c8 Mon Sep 17 00:00:00 2001 From: pkrolkgp <32438012+pkrolkgp@users.noreply.github.com> Date: Wed, 17 Apr 2024 12:28:32 +0000 Subject: [PATCH 1/3] Update translation.json fix translated variable names to original --- src/lib/i18n/locales/pl-pl/translation.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/i18n/locales/pl-pl/translation.json b/src/lib/i18n/locales/pl-pl/translation.json index d9865377..e8b38d17 100644 --- a/src/lib/i18n/locales/pl-pl/translation.json +++ b/src/lib/i18n/locales/pl-pl/translation.json @@ -158,7 +158,7 @@ "Full Screen Mode": "Tryb pełnoekranowy", "General": "Ogólne", "General Settings": "Ogólne ustawienia", - "Hello, {{name}}": "Witaj, {{nazwa}}", + "Hello, {{name}}": "Witaj, {{name}}", "Hide": "Ukryj", "Hide Additional Params": "Ukryj dodatkowe parametry", "How can I help you today?": "Jak mogę Ci dzisiaj pomóc?", @@ -193,8 +193,8 @@ "Mirostat Eta": "Mirostat Eta", "Mirostat Tau": "Mirostat Tau", "MMMM DD, YYYY": "MMMM DD, YYYY", - "Model '{{modelName}}' has been successfully downloaded.": "Model '{{nazwaModelu}}' został pomyślnie pobrany.", - "Model '{{modelTag}}' is already in queue for downloading.": "Model '{{nazwaModelu}}' jest już w kolejce do pobrania.", + "Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' został pomyślnie pobrany.", + "Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' jest już w kolejce do pobrania.", "Model {{embedding_model}} update complete!": "Aktualizacja modelu {{embedding_model}} zakończona pomyślnie!", "Model {{embedding_model}} update failed or not required!": "Model {{embedding_model}} aktualizacja nie powiodła się lub nie jest wymagana!", "Model {{modelId}} not found": "Model {{modelId}} nie został znaleziony", From b5372bf715a79059f7007412740909e10a591cbb Mon Sep 17 00:00:00 2001 From: Valentino Stillhardt <4715129+Fusseldieb@users.noreply.github.com> Date: Wed, 17 Apr 2024 11:08:02 -0300 Subject: [PATCH 2/3] Fixed malformed date string --- src/lib/i18n/locales/pt-BR/translation.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index 5d5369e4..0a81b682 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -190,7 +190,7 @@ "Mirostat": "Mirostat", "Mirostat Eta": "Mirostat Eta", "Mirostat Tau": "Mirostat Tau", - "MMMM DD, YYYY": "MMMM DD, AAAA", + "MMMM DD, YYYY": "DD/MM/YYYY", "Model '{{modelName}}' has been successfully downloaded.": "O modelo '{{modelName}}' foi baixado com sucesso.", "Model '{{modelTag}}' is already in queue for downloading.": "O modelo '{{modelTag}}' já está na fila para download.", "Model {{modelId}} not found": "Modelo {{modelId}} não encontrado", From 9dad7e7c9abb255ef0db2978ecb9a2c4c72653f5 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Wed, 17 Apr 2024 15:22:21 -0500 Subject: [PATCH 3/3] fix --- src/routes/(app)/+layout.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes/(app)/+layout.svelte b/src/routes/(app)/+layout.svelte index 2000d87c..391fdebb 100644 --- a/src/routes/(app)/+layout.svelte +++ b/src/routes/(app)/+layout.svelte @@ -106,6 +106,7 @@ // IndexedDB Not Found } + await models.set(await getModels()); await settings.set(JSON.parse(localStorage.getItem('settings') ?? '{}')); await modelfiles.set(await getModelfiles(localStorage.token));