yh-i18n 2.3.0 → 2.3.1

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/excelTool.ts CHANGED
@@ -63,6 +63,7 @@ export async function exportExcel(total) {
63
63
  th: '泰语',
64
64
  vi: '越南语',
65
65
  tr: '土耳其语',
66
+ fa_IR: '波斯语',
66
67
  };
67
68
  Config.i18nList.forEach((item) => {
68
69
  columns.push({
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@ import {StoreDefinition} from 'pinia';
9
9
  * vi 越南语(越南)
10
10
  * tr 土耳其语(土耳其)
11
11
  */
12
- type I18nList = 'zh_CN' | 'en_US' | 'th' | 'vi' | 'tr';
12
+ type I18nList = 'zh_CN' | 'en_US' | 'th' | 'vi' | 'tr' | 'fa_IR';
13
13
 
14
14
  declare global {
15
15
  interface Window {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yh-i18n",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "对于国际化的封装",
5
5
  "main": "index.js",
6
6
  "scripts": {