From 0f76d05546e85231abb3db5c43f174a01d513e66 Mon Sep 17 00:00:00 2001 From: "S. MohammadMahdi Zamanian" <76493524+MM25Zamanian@users.noreply.github.com> Date: Thu, 2 Jun 2022 16:46:11 +0430 Subject: [PATCH] add Persian translation * feat: fa translate * fix: fa localize name --- src/translations/fa.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/translations/fa.ts diff --git a/src/translations/fa.ts b/src/translations/fa.ts new file mode 100644 index 000000000..1382cf159 --- /dev/null +++ b/src/translations/fa.ts @@ -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;