mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-31 12:17:54 +01:00
feat(locale): add Tajik language (#3850)
This commit is contained in:
@@ -3,8 +3,8 @@ export { default as az } from './az'
|
|||||||
export { default as bg } from './bg'
|
export { default as bg } from './bg'
|
||||||
export { default as bn } from './bn'
|
export { default as bn } from './bn'
|
||||||
export { default as ca } from './ca'
|
export { default as ca } from './ca'
|
||||||
export { default as cs } from './cs'
|
|
||||||
export { default as ckb } from './ckb'
|
export { default as ckb } from './ckb'
|
||||||
|
export { default as cs } from './cs'
|
||||||
export { default as da } from './da'
|
export { default as da } from './da'
|
||||||
export { default as de } from './de'
|
export { default as de } from './de'
|
||||||
export { default as el } from './el'
|
export { default as el } from './el'
|
||||||
@@ -33,6 +33,7 @@ export { default as ru } from './ru'
|
|||||||
export { default as sk } from './sk'
|
export { default as sk } from './sk'
|
||||||
export { default as sv } from './sv'
|
export { default as sv } from './sv'
|
||||||
export { default as th } from './th'
|
export { default as th } from './th'
|
||||||
|
export { default as tj } from './tj'
|
||||||
export { default as tr } from './tr'
|
export { default as tr } from './tr'
|
||||||
export { default as uk } from './uk'
|
export { default as uk } from './uk'
|
||||||
export { default as ur } from './ur'
|
export { default as ur } from './ur'
|
||||||
|
|||||||
56
src/runtime/locale/tj.ts
Normal file
56
src/runtime/locale/tj.ts
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
import type { Messages } from '../types'
|
||||||
|
import { defineLocale } from '../composables/defineLocale'
|
||||||
|
|
||||||
|
export default defineLocale<Messages>({
|
||||||
|
name: 'Тоҷикӣ',
|
||||||
|
code: 'tj',
|
||||||
|
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