Files
ui/src/runtime/locale/fa_ir.ts
Mohet 14fb21be00 feat(locale): add Persian language (#2682)
Co-authored-by: Ali Zemani <ali.ze@arianatech.ir>
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
2024-11-19 12:10:09 +01:00

49 lines
1.1 KiB
TypeScript

import { defineLocale } from '../composables/defineLocale'
export default defineLocale({
name: 'فارسی',
code: 'fa-IR',
dir: 'rtl',
messages: {
inputMenu: {
noMatch: 'داده‌ای یافت نشد',
noData: 'داده‌ای موجود نیست',
create: 'ایجاد "{label}"'
},
inputNumber: {
increment: 'افزایش',
decrement: 'کاهش'
},
commandPalette: {
noMatch: 'داده‌ای یافت نشد',
noData: 'داده‌ای موجود نیست',
close: 'بستن'
},
selectMenu: {
noMatch: 'داده‌ای یافت نشد',
noData: 'داده‌ای موجود نیست',
create: 'ایجاد "{label}"'
},
toast: {
close: 'بستن'
},
carousel: {
prev: 'قبلی',
next: 'بعدی',
goto: 'رفتن به اسلاید {slide}'
},
modal: {
close: 'بستن'
},
slideover: {
close: 'بستن'
},
alert: {
close: 'بستن'
},
table: {
noData: 'داده‌ای موجود نیست'
}
}
})