Merge pull request #1590 from open-webui/dev
All checks were successful
Python CI / Format Backend (3.11) (pull_request) Successful in 29s
Frontend Build / Format & Build Frontend (pull_request) Successful in 1m48s

dev
This commit is contained in:
Timothy Jaeryang Baek 2024-04-17 13:23:58 -07:00 committed by GitHub
commit e0ebd7aeaf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 4 deletions

View file

@ -158,7 +158,7 @@
"Full Screen Mode": "Tryb pełnoekranowy", "Full Screen Mode": "Tryb pełnoekranowy",
"General": "Ogólne", "General": "Ogólne",
"General Settings": "Ogólne ustawienia", "General Settings": "Ogólne ustawienia",
"Hello, {{name}}": "Witaj, {{nazwa}}", "Hello, {{name}}": "Witaj, {{name}}",
"Hide": "Ukryj", "Hide": "Ukryj",
"Hide Additional Params": "Ukryj dodatkowe parametry", "Hide Additional Params": "Ukryj dodatkowe parametry",
"How can I help you today?": "Jak mogę Ci dzisiaj pomóc?", "How can I help you today?": "Jak mogę Ci dzisiaj pomóc?",
@ -193,8 +193,8 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{nazwaModelu}}' został pomyślnie pobrany.", "Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' został pomyślnie pobrany.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{nazwaModelu}}' jest już w kolejce do pobrania.", "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 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 {{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", "Model {{modelId}} not found": "Model {{modelId}} nie został znaleziony",

View file

@ -190,7 +190,7 @@
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "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 '{{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 '{{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", "Model {{modelId}} not found": "Modelo {{modelId}} não encontrado",

View file

@ -106,6 +106,7 @@
// IndexedDB Not Found // IndexedDB Not Found
} }
await models.set(await getModels());
await settings.set(JSON.parse(localStorage.getItem('settings') ?? '{}')); await settings.set(JSON.parse(localStorage.getItem('settings') ?? '{}'));
await modelfiles.set(await getModelfiles(localStorage.token)); await modelfiles.set(await getModelfiles(localStorage.token));