-
Notifications
You must be signed in to change notification settings - Fork 587
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(locale): add support for Arabic (#2582)
- Loading branch information
1 parent
febda5c
commit 602a667
Showing
2 changed files
with
38 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,37 @@ | ||
import { defineLocale } from '../composables/defineLocale' | ||
|
||
export default defineLocale('العربية', { | ||
inputMenu: { | ||
noMatch: 'لا توجد نتائج مطابقة', | ||
noData: 'لا توجد بيانات' | ||
}, | ||
commandPalette: { | ||
noMatch: 'لا توجد نتائج مطابقة', | ||
noData: 'لا توجد بيانات', | ||
close: 'إغلاق' | ||
}, | ||
selectMenu: { | ||
noMatch: 'لا توجد نتائج مطابقة', | ||
noData: 'لا توجد بيانات' | ||
}, | ||
toast: { | ||
close: 'إغلاق' | ||
}, | ||
carousel: { | ||
prev: 'السابق', | ||
next: 'التالي', | ||
goto: 'الذهاب إلي شريحة {slide}' | ||
}, | ||
modal: { | ||
close: 'إغلاق' | ||
}, | ||
slideover: { | ||
close: 'إغلاق' | ||
}, | ||
alert: { | ||
close: 'إغلاق' | ||
}, | ||
table: { | ||
noData: 'لا توجد بيانات' | ||
} | ||
}) |
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