-
Notifications
You must be signed in to change notification settings - Fork 672
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
1 parent
4077073
commit 6db6763
Showing
7 changed files
with
132 additions
and
42 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
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 |
---|---|---|
|
@@ -56,6 +56,7 @@ switchLanguage() { | |
| 西班牙语 | es_ES | | ||
| 意大利语 | it_IT | | ||
| 越南语 | vi_VI | | ||
| 阿拉伯语 | ar_SA | | ||
|
||
## 增加语言包 | ||
|
||
|
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,84 @@ | ||
import { FullLocaleData } from '../locale.types'; | ||
|
||
export default { | ||
abbr: 'ar-SA', | ||
exception: { | ||
403: `عذراً، ليس لديك إذن للوصول إلى هذه الصفحة`, | ||
404: `عذراً، الصفحة التي تبحث عنها غير موجودة`, | ||
500: `عذراً، خطأ في الخادم`, | ||
backToHome: 'العودة إلى الصفحة الرئيسية' | ||
}, | ||
noticeIcon: { | ||
emptyText: 'لا توجد بيانات', | ||
clearText: 'مسح' | ||
}, | ||
reuseTab: { | ||
close: 'إغلاق العلامة', | ||
closeOther: 'إغلاق العلامات الأخرى', | ||
closeRight: 'إغلاق العلامات اليمنى', | ||
refresh: 'تحديث' | ||
}, | ||
tagSelect: { | ||
expand: 'توسيع', | ||
collapse: 'طي' | ||
}, | ||
miniProgress: { | ||
target: 'الهدف: ' | ||
}, | ||
st: { | ||
total: '{{range[0]}} - {{range[1]}} من {{total}}', | ||
filterConfirm: 'تأكيد', | ||
filterReset: 'إعادة تعيين' | ||
}, | ||
sf: { | ||
submit: 'حفظ', | ||
reset: 'إعادة تعيين', | ||
search: 'بحث', | ||
edit: 'تعديل', | ||
addText: 'إضافة', | ||
removeText: 'حذف', | ||
checkAllText: 'تحديد الكل', | ||
error: { | ||
'false schema': `القيمة المنطقية خاطئة`, | ||
$ref: `المرجع "{{ref}}" غير موجود`, | ||
additionalItems: `يجب ألا يحتوي على عناصر إضافية`, | ||
additionalProperties: `يجب ألا يحتوي على خصائص إضافية`, | ||
anyOf: `يجب أن يتطابق مع أحد النماذج في "anyOf"`, | ||
dependencies: `يجب أن يحتوي على الخصائص {{deps}} عندما تكون الخاصية {{property}} موجودة`, | ||
enum: `يجب أن يكون واحدًا من القيم المحددة`, | ||
format: `يجب أن يتوافق مع النمط "{{format}}"`, | ||
type: `يجب أن يكون {{type}}`, | ||
required: `مطلوب`, | ||
maxLength: `يجب ألا يكون أطول من {limit} حرف`, | ||
minLength: `يجب ألا يكون أقصر من {limit} حرف`, | ||
minimum: `يجب أن يكون أكبر من أو يساوي {comparison} {limit}`, | ||
formatMinimum: `يجب أن يكون أكبر من أو يساوي {comparison} {limit}`, | ||
maximum: `يجب أن يكون أقل من أو يساوي {comparison} {limit}`, | ||
formatMaximum: `يجب أن يكون أقل من أو يساوي {comparison} {limit}`, | ||
maxItems: `يجب ألا يكون أكثر من {limit} عنصر`, | ||
minItems: `يجب ألا يكون أقل من {limit} عنصر`, | ||
maxProperties: `يجب ألا يكون أكثر من {limit} خاصية`, | ||
minProperties: `يجب ألا يكون أقل من {limit} خاصية`, | ||
multipleOf: `يجب أن يكون مضاعفًا لـ {multipleOf}`, | ||
not: `لا يجب أن يتطابق مع النمط (not)`, | ||
oneOf: `يجب أن يتطابق مع أحد النماذج في "oneOf"`, | ||
pattern: `يجب أن يتطابق مع النمط "{pattern}"`, | ||
uniqueItems: `يجب ألا يحتوي على عناصر مكررة`, | ||
custom: `يجب أن يكون صالحًا`, | ||
propertyNames: `يجب أن تكون الخاصية صالحة`, | ||
patternRequired: `يجب أن تحتوي على خاصية تطابق النمط "{missingPattern}"`, | ||
switch: `يجب أن يكون {caseIndex} صالحًا`, | ||
const: `يجب أن يكون ثابتًا`, | ||
contains: `يجب أن يحتوي على قيمة صالحة`, | ||
formatExclusiveMaximum: `formatExclusiveMaximum يجب أن يكون قيمة منطقية`, | ||
formatExclusiveMinimum: `formatExclusiveMinimum يجب أن يكون قيمة منطقية`, | ||
if: `يجب أن يتوافق مع "{failingKeyword}"` | ||
} | ||
}, | ||
onboarding: { | ||
skip: `تخطي`, | ||
prev: `السابق`, | ||
next: `التالي`, | ||
done: `تم` | ||
} | ||
} as FullLocaleData; |
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
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
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
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