mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-29 11:20:36 +01:00
fix(locale): remove emoji fallback for Chinese (#3134)
This commit is contained in:
55
src/runtime/locale/zh_cn.ts
Normal file
55
src/runtime/locale/zh_cn.ts
Normal file
@@ -0,0 +1,55 @@
|
||||
import { defineLocale } from '../composables/defineLocale'
|
||||
|
||||
export default defineLocale({
|
||||
name: '简体中文',
|
||||
code: 'zh-CN',
|
||||
messages: {
|
||||
inputMenu: {
|
||||
noMatch: '没有匹配的数据',
|
||||
noData: '没有数据',
|
||||
create: '创建 "{label}"'
|
||||
},
|
||||
calendar: {
|
||||
prevYear: '去年',
|
||||
nextYear: '明年',
|
||||
prevMonth: '上个月',
|
||||
nextMonth: '下个月'
|
||||
},
|
||||
inputNumber: {
|
||||
increment: '增加',
|
||||
decrement: '减少'
|
||||
},
|
||||
commandPalette: {
|
||||
placeholder: '输入命令或搜索...',
|
||||
noMatch: '没有匹配的数据',
|
||||
noData: '没有数据',
|
||||
close: '关闭'
|
||||
},
|
||||
selectMenu: {
|
||||
noMatch: '没有匹配的数据',
|
||||
noData: '没有数据',
|
||||
create: '创建 "{label}"',
|
||||
search: '搜索...'
|
||||
},
|
||||
toast: {
|
||||
close: '关闭'
|
||||
},
|
||||
carousel: {
|
||||
prev: '上一页',
|
||||
next: '下一页',
|
||||
goto: '跳转到第 {slide} 页'
|
||||
},
|
||||
modal: {
|
||||
close: '关闭'
|
||||
},
|
||||
slideover: {
|
||||
close: '关闭'
|
||||
},
|
||||
alert: {
|
||||
close: '关闭'
|
||||
},
|
||||
table: {
|
||||
noData: '没有数据'
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user