@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.
@@ -59,6 +59,7 @@
59
59
  },
60
60
  "lang": {
61
61
  "ar": "阿拉伯語",
62
+ "bg-BG": "保加利亞語",
62
63
  "bn": "孟加拉語",
63
64
  "cs-CZ": "捷克語",
64
65
  "da-DK": "丹麥語",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "0.142.9",
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",
@@ -61,6 +61,7 @@ export default {
61
61
  },
62
62
  lang: {
63
63
  'ar': '阿拉伯语',
64
+ 'bg-BG': '保加利亚语',
64
65
  'bn': '孟加拉语',
65
66
  'cs-CZ': '捷克语',
66
67
  'da-DK': '丹麦语',
@@ -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'];