add Persian translation

* feat: fa translate

* fix: fa localize name
This commit is contained in:
S. MohammadMahdi Zamanian
2022-06-02 16:46:11 +04:30
committed by GitHub
parent 293f49e178
commit 0f76d05546

26
src/translations/fa.ts Normal file
View File

@@ -0,0 +1,26 @@
import { registerTranslation } from '../utilities/localize';
import type { Translation } from '../utilities/localize';
const translation: Translation = {
$code: 'fa',
$name: 'فارسی',
$dir: 'rtl',
clearEntry: 'پاک کردن ورودی',
close: 'بستن',
copy: 'کپی',
currentValue: 'مقدار فعلی',
hidePassword: 'پنهان کردن رمز',
progress: 'پیشرفت',
remove: 'حذف',
resize: 'تغییر اندازه',
scrollToEnd: 'اسکرول به انتها',
scrollToStart: 'اسکرول به ابتدا',
selectAColorFromTheScreen: 'انتخاب یک رنگ از صفحه نمایش',
showPassword: 'نمایش دادن رمز',
toggleColorFormat: 'تغییر فرمت رنگ'
};
registerTranslation(translation);
export default translation;