@lobehub/chat 0.142.9 → 0.143.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.i18nrc.js +1 -0
- package/CHANGELOG.md +25 -0
- package/locales/ar/common.json +1 -0
- package/locales/bg-BG/chat.json +120 -0
- package/locales/bg-BG/common.json +180 -0
- package/locales/bg-BG/error.json +159 -0
- package/locales/bg-BG/market.json +32 -0
- package/locales/bg-BG/migration.json +45 -0
- package/locales/bg-BG/plugin.json +166 -0
- package/locales/bg-BG/setting.json +507 -0
- package/locales/bg-BG/tool.json +9 -0
- package/locales/bg-BG/welcome.json +14 -0
- package/locales/de-DE/common.json +1 -0
- package/locales/en-US/common.json +1 -0
- package/locales/es-ES/common.json +1 -0
- package/locales/fr-FR/common.json +1 -0
- package/locales/it-IT/common.json +1 -0
- package/locales/ja-JP/common.json +1 -0
- package/locales/ko-KR/common.json +1 -0
- package/locales/nl-NL/common.json +1 -0
- package/locales/pl-PL/common.json +1 -0
- package/locales/pt-BR/common.json +1 -0
- package/locales/ru-RU/common.json +1 -0
- package/locales/tr-TR/common.json +1 -0
- package/locales/vi-VN/common.json +1 -0
- package/locales/zh-CN/common.json +1 -0
- package/locales/zh-TW/common.json +1 -0
- package/package.json +1 -1
- package/src/locales/default/common.ts +1 -0
- package/src/locales/resources.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/chat",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.143.0",
|
|
4
4
|
"description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"framework",
|
package/src/locales/resources.ts
CHANGED
|
@@ -2,6 +2,7 @@ import resources from './default';
|
|
|
2
2
|
|
|
3
3
|
export const locales = [
|
|
4
4
|
'ar',
|
|
5
|
+
'bg-BG',
|
|
5
6
|
'de-DE',
|
|
6
7
|
'en-US',
|
|
7
8
|
'es-ES',
|
|
@@ -112,6 +113,10 @@ export const localeOptions: LocaleOptions = [
|
|
|
112
113
|
label: 'Tiếng Việt',
|
|
113
114
|
value: 'vi-VN',
|
|
114
115
|
},
|
|
116
|
+
{
|
|
117
|
+
label: 'Български',
|
|
118
|
+
value: 'bg-BG',
|
|
119
|
+
},
|
|
115
120
|
] as LocaleOptions;
|
|
116
121
|
|
|
117
122
|
export const supportLocales: string[] = [...locales, 'en', 'zh'];
|