feat(locale): add Hebrew language (#3181)

This commit is contained in:
Sagiv
2025-01-27 11:50:48 +02:00
committed by GitHub
parent 2006ec0646
commit f3958773d6
2 changed files with 55 additions and 0 deletions

54
src/runtime/locale/he.ts Normal file
View 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: 'אין נתונים להצגה'
}
}
})

View File

@@ -28,3 +28,4 @@ export { default as uk } from './uk'
export { default as vi } from './vi'
export { default as zh_cn } from './zh_cn'
export { default as zh_tw } from './zh_tw'
export { default as he } from './he'