Files
ui/src/runtime/locale/he.ts
2025-01-27 10:50:48 +01:00

55 lines
1.2 KiB
TypeScript

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: 'אין נתונים להצגה'
}
}
})