mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-30 19:57:55 +01:00
feat(locale): add Hebrew language (#3181)
This commit is contained in:
54
src/runtime/locale/he.ts
Normal file
54
src/runtime/locale/he.ts
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
import { defineLocale } from '../composables/defineLocale'
|
||||||
|
|
||||||
|
export default defineLocale({
|
||||||
|
name: 'Hebrew',
|
||||||
|
code: 'he',
|
||||||
|
dir: 'rtl',
|
||||||
|
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: 'אין נתונים להצגה'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
@@ -28,3 +28,4 @@ export { default as uk } from './uk'
|
|||||||
export { default as vi } from './vi'
|
export { default as vi } from './vi'
|
||||||
export { default as zh_cn } from './zh_cn'
|
export { default as zh_cn } from './zh_cn'
|
||||||
export { default as zh_tw } from './zh_tw'
|
export { default as zh_tw } from './zh_tw'
|
||||||
|
export { default as he } from './he'
|
||||||
|
|||||||
Reference in New Issue
Block a user