-
Notifications
You must be signed in to change notification settings - Fork 622
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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: 'אין נתונים להצגה', | ||
}, | ||
}, | ||
}) |