feat(locale): add support for Arabic (#2582)

This commit is contained in:
Muhammad Mahmoud
2024-11-09 14:49:50 +02:00
committed by GitHub
parent febda5c2b6
commit 602a667343
2 changed files with 38 additions and 0 deletions

37
src/runtime/locale/ar.ts Normal file
View File

@@ -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: 'لا توجد بيانات'
}
})

View File

@@ -1,3 +1,4 @@
export { default as ar } from './ar'
export { default as de } from './de'
export { default as en } from './en'
export { default as fr } from './fr'