From 3f5e531a3657ece7bb6abb76c3917a4838e505dd Mon Sep 17 00:00:00 2001 From: mohd-e-mustafa Date: Sat, 24 Apr 2021 00:05:47 +0500 Subject: [PATCH] Added persian translation --- public/locales/fa/bank-account-form.json | 9 +++++ public/locales/fa/bank-accounts-list.json | 6 ++++ public/locales/fa/client-fields.json | 10 ++++++ public/locales/fa/client-form.json | 36 +++++++++++++++++++ public/locales/fa/client-selector.json | 6 ++++ public/locales/fa/empty-state.json | 3 ++ public/locales/fa/import-modal.json | 6 ++++ public/locales/fa/invoice-bank-details.json | 5 +++ public/locales/fa/invoice-client-details.json | 8 +++++ .../locales/fa/invoice-company-details.json | 9 +++++ .../locales/fa/invoice-contact-details.json | 5 +++ public/locales/fa/invoice-controls.json | 12 +++++++ public/locales/fa/invoice-form.json | 3 ++ public/locales/fa/invoice-header.json | 10 ++++++ public/locales/fa/invoice-row.json | 7 ++++ public/locales/fa/invoice-rows-header.json | 7 ++++ public/locales/fa/invoice-totals.json | 5 +++ public/locales/fa/invoices-list.json | 7 ++++ public/locales/fa/invoices.json | 6 ++++ public/locales/fa/statuses.json | 9 +++++ public/locales/fa/team-fields.json | 10 ++++++ public/locales/fa/team-form.json | 36 +++++++++++++++++++ public/locales/fa/team-logo.json | 7 ++++ public/locales/fa/team-taxes.json | 10 ++++++ public/locales/fa/the-footer.json | 9 +++++ 25 files changed, 241 insertions(+) create mode 100644 public/locales/fa/bank-account-form.json create mode 100644 public/locales/fa/bank-accounts-list.json create mode 100644 public/locales/fa/client-fields.json create mode 100644 public/locales/fa/client-form.json create mode 100644 public/locales/fa/client-selector.json create mode 100644 public/locales/fa/empty-state.json create mode 100644 public/locales/fa/import-modal.json create mode 100644 public/locales/fa/invoice-bank-details.json create mode 100644 public/locales/fa/invoice-client-details.json create mode 100644 public/locales/fa/invoice-company-details.json create mode 100644 public/locales/fa/invoice-contact-details.json create mode 100644 public/locales/fa/invoice-controls.json create mode 100644 public/locales/fa/invoice-form.json create mode 100644 public/locales/fa/invoice-header.json create mode 100644 public/locales/fa/invoice-row.json create mode 100644 public/locales/fa/invoice-rows-header.json create mode 100644 public/locales/fa/invoice-totals.json create mode 100644 public/locales/fa/invoices-list.json create mode 100644 public/locales/fa/invoices.json create mode 100644 public/locales/fa/statuses.json create mode 100644 public/locales/fa/team-fields.json create mode 100644 public/locales/fa/team-form.json create mode 100644 public/locales/fa/team-logo.json create mode 100644 public/locales/fa/team-taxes.json create mode 100644 public/locales/fa/the-footer.json diff --git a/public/locales/fa/bank-account-form.json b/public/locales/fa/bank-account-form.json new file mode 100644 index 0000000..9f8584f --- /dev/null +++ b/public/locales/fa/bank-account-form.json @@ -0,0 +1,9 @@ +{ + "title": "حساب بانکی", + "bank_name": "نام بانک", + "account_no": "جزئیات حساب بانکی", + "loading": "بارگذاری", + "done": "انجام شده", + "create": "ايجاد كردن", + "notification_updated": "به روز شده" +} diff --git a/public/locales/fa/bank-accounts-list.json b/public/locales/fa/bank-accounts-list.json new file mode 100644 index 0000000..9ec3bd1 --- /dev/null +++ b/public/locales/fa/bank-accounts-list.json @@ -0,0 +1,6 @@ +{ + "loading": "بارگذاری", + "bank": "بانک", + "bank_account_details": "جزئیات حساب بانکی", + "add_bank_account": "حساب بانکی اضافه کنید" +} diff --git a/public/locales/fa/client-fields.json b/public/locales/fa/client-fields.json new file mode 100644 index 0000000..50ea10b --- /dev/null +++ b/public/locales/fa/client-fields.json @@ -0,0 +1,10 @@ +{ + "label": "برچسب", + "field": "رشته", + "delete_modal": { + "title": "قسمت را حذف کنید", + "ok_title": "حذف", + "cancel_title": "رد" + }, + "notification_deleted": "حذف شده" +} diff --git a/public/locales/fa/client-form.json b/public/locales/fa/client-form.json new file mode 100644 index 0000000..8da288d --- /dev/null +++ b/public/locales/fa/client-form.json @@ -0,0 +1,36 @@ +{ + "title": "مشتری", + "delete": "حذف", + "done": "انجام شده", + "create": "ايجاد كردن", + "loading": "بارگذاری", + "tabs": { + "general": "عمومی", + "invoicing": "صورتحساب", + "address": "نشانی" + }, + "general": { + "company_name": "نام شرکت", + "invoice_email": "پست الکترونیک" + }, + "invoicing": { + "currency": "واحد پول", + "rate": "نرخ ساعتی", + "has_tax": "مالیات اعمال کنید", + "bank_account": "حساب بانکی" + }, + "address": { + "company_address": "آدرس شرکت", + "company_postal_code": "کد پستی", + "company_city": "شهر", + "company_county": "شهرستان / ایالت", + "company_country": "کشور" + }, + "delete_modal": { + "title": "حذف مشتری", + "ok_title": "حذف", + "cancel_title": "رد" + }, + "notification_deleted": "حذف شده", + "notification_updated": "به روز شده" +} diff --git a/public/locales/fa/client-selector.json b/public/locales/fa/client-selector.json new file mode 100644 index 0000000..cfa7a84 --- /dev/null +++ b/public/locales/fa/client-selector.json @@ -0,0 +1,6 @@ +{ + "client": "مشتری", + "create": "ايجاد كردن", + "new": "جدید", + "suggest_placeholder": "مشتری جستجو کنید" +} diff --git a/public/locales/fa/empty-state.json b/public/locales/fa/empty-state.json new file mode 100644 index 0000000..dacad85 --- /dev/null +++ b/public/locales/fa/empty-state.json @@ -0,0 +1,3 @@ +{ + "content": "هنوز چیزی در اینجا نیست" +} diff --git a/public/locales/fa/import-modal.json b/public/locales/fa/import-modal.json new file mode 100644 index 0000000..c1e68da --- /dev/null +++ b/public/locales/fa/import-modal.json @@ -0,0 +1,6 @@ +{ + "title": "وارد کردن داده", + "warning": "داده های فعلی شما پاک شده و با داده های وارد شده رونویسی می شوند!", + "button_text": "وارد کردن پرونده را انتخاب کنید", + "import-error": "قالب JSON نامعتبر است" +} diff --git a/public/locales/fa/invoice-bank-details.json b/public/locales/fa/invoice-bank-details.json new file mode 100644 index 0000000..add901e --- /dev/null +++ b/public/locales/fa/invoice-bank-details.json @@ -0,0 +1,5 @@ +{ + "bank_name": "اضافه کردن بانک", + "bank_account_no": "جزئیات بانک را اضافه کنید", + "bank_account_modal_title": "حساب بانکی را انتخاب کنید" +} diff --git a/public/locales/fa/invoice-client-details.json b/public/locales/fa/invoice-client-details.json new file mode 100644 index 0000000..febac50 --- /dev/null +++ b/public/locales/fa/invoice-client-details.json @@ -0,0 +1,8 @@ +{ + "client_address": "نشانی", + "client_postal_code": "کد پستی", + "client_city": "شهر", + "client_county": "شهرستان / ایالت", + "client_country": "کشور", + "client_email": "ایمیل مشتری" +} diff --git a/public/locales/fa/invoice-company-details.json b/public/locales/fa/invoice-company-details.json new file mode 100644 index 0000000..421f5ee --- /dev/null +++ b/public/locales/fa/invoice-company-details.json @@ -0,0 +1,9 @@ +{ + "your_company_name": "نام شرکت شما", + "address": "نشانی", + "postal_code": "کد پستی", + "city": "شهر", + "county": "شهرستان / ایالت", + "country": "کشور", + "your_email": "ایمیل شما" +} diff --git a/public/locales/fa/invoice-contact-details.json b/public/locales/fa/invoice-contact-details.json new file mode 100644 index 0000000..ff8359e --- /dev/null +++ b/public/locales/fa/invoice-contact-details.json @@ -0,0 +1,5 @@ +{ + "add_website": "وب سایت اضافه کنید", + "add_email": "ایمیل اضافه کنید", + "add_phone": "تلفن اضافه کنید" +} diff --git a/public/locales/fa/invoice-controls.json b/public/locales/fa/invoice-controls.json new file mode 100644 index 0000000..33cc43d --- /dev/null +++ b/public/locales/fa/invoice-controls.json @@ -0,0 +1,12 @@ +{ + "back": "بازگشت", + "book": "کتاب", + "download_pdf": "بارگیری PDF", + "delete": "حذف", + "delete_modal": { + "title": "فاکتور را حذف کنید", + "ok_title": "حذف", + "cancel_title": "رد" + }, + "notification_deleted": "حذف شده" +} diff --git a/public/locales/fa/invoice-form.json b/public/locales/fa/invoice-form.json new file mode 100644 index 0000000..83a3578 --- /dev/null +++ b/public/locales/fa/invoice-form.json @@ -0,0 +1,3 @@ +{ + "insert_note": "درج یادداشت" +} diff --git a/public/locales/fa/invoice-header.json b/public/locales/fa/invoice-header.json new file mode 100644 index 0000000..fa17c24 --- /dev/null +++ b/public/locales/fa/invoice-header.json @@ -0,0 +1,10 @@ +{ + "invoice_title": "صورتحساب ", + "invoice_number": "شماره", + "issued_at": "صادر شده در: ", + "due_at": "سر رسید در:", + "late_fee": "هزینه دیرهنگام:", + "add_late_fee": "هزینه دیرکرد اضافه کنید", + "modal_issued_at_title": "صادر شده در", + "modal_due_at_title": "سر رسید در" +} diff --git a/public/locales/fa/invoice-row.json b/public/locales/fa/invoice-row.json new file mode 100644 index 0000000..94f7996 --- /dev/null +++ b/public/locales/fa/invoice-row.json @@ -0,0 +1,7 @@ +{ + "enter_item": "مورد را وارد کنید", + "enter_quantity": "مقدار را وارد کنید", + "enter_unit": "واحد وارد کنید", + "enter_price": "قیمت را وارد کنید", + "enter_tax": "مالیات را وارد کنید" +} diff --git a/public/locales/fa/invoice-rows-header.json b/public/locales/fa/invoice-rows-header.json new file mode 100644 index 0000000..cc7a530 --- /dev/null +++ b/public/locales/fa/invoice-rows-header.json @@ -0,0 +1,7 @@ +{ + "item": "مورد", + "quantity": "تعداد", + "unit": "واحد", + "price": "قیمت", + "sum": "جمع" +} diff --git a/public/locales/fa/invoice-totals.json b/public/locales/fa/invoice-totals.json new file mode 100644 index 0000000..6ec9333 --- /dev/null +++ b/public/locales/fa/invoice-totals.json @@ -0,0 +1,5 @@ +{ + "subtotal": "جمع کل", + "total": "جمع", + "add_currency": "ارز اضافه کنید" +} diff --git a/public/locales/fa/invoices-list.json b/public/locales/fa/invoices-list.json new file mode 100644 index 0000000..cb3ec7f --- /dev/null +++ b/public/locales/fa/invoices-list.json @@ -0,0 +1,7 @@ +{ + "invoice_number": "شمار.", + "client": "مشتری", + "issued_at": "صادر شده در", + "total": "Total", + "status": "وضعیت" +} diff --git a/public/locales/fa/invoices.json b/public/locales/fa/invoices.json new file mode 100644 index 0000000..55c5baa --- /dev/null +++ b/public/locales/fa/invoices.json @@ -0,0 +1,6 @@ +{ + "title": "فاکتورها", + "new_invoice": "فاکتور جدید", + "export": "صادرات", + "import": "وارد كردن" +} diff --git a/public/locales/fa/statuses.json b/public/locales/fa/statuses.json new file mode 100644 index 0000000..8ed0a58 --- /dev/null +++ b/public/locales/fa/statuses.json @@ -0,0 +1,9 @@ +{ + "statuses": { + "draft": "پیش نویس", + "booked": "رزرو", + "sent": "ارسال شد", + "paid": "پرداخت شده", + "cancelled": "لغو شد" + } +} diff --git a/public/locales/fa/team-fields.json b/public/locales/fa/team-fields.json new file mode 100644 index 0000000..1ffb89f --- /dev/null +++ b/public/locales/fa/team-fields.json @@ -0,0 +1,10 @@ +{ + "label": "برچسب", + "field": "رشته", + "delete_modal": { + "title": "قسمت را حذف کنید", + "ok_title": "حذف", + "cancel_title": "رد" + }, + "notification_delete": "حذف شده" +} diff --git a/public/locales/fa/team-form.json b/public/locales/fa/team-form.json new file mode 100644 index 0000000..79a4e7d --- /dev/null +++ b/public/locales/fa/team-form.json @@ -0,0 +1,36 @@ +{ + "title": "شرکت شما", + "done": "انجام شده", + "updated": "به روز شده", + "loading": "بارگذاری", + "tabs": { + "general": "عمومی", + "invoicing": "صورتحساب", + "address": "نشانی", + "taxes": "مالیات" + }, + "general": { + "company_name": "نام شرکت", + "contact_email": "پست الکترونیک", + "contact_phone": "تلفن", + "website": "سایت اینترنتی" + }, + "invoicing": { + "invoice_late_fee": "هزینه دیرهنگام (%)", + "invoice_due_days": "شرایط پرداخت ، روزها", + "currency": "ارز پیش فرض" + }, + "address": { + "company_address": "آدرس شرکت", + "company_postal_code": "کد پستی", + "company_city": "شهر", + "company_county": "شهرستان / ایالت", + "company_country": "کشور" + }, + "tax_modal": { + "title": "برای ردیف های فاکتور فعلی مالیات بازنویسی شود؟", + "ok_title": "زیاد نوشتن", + "cancel_title": "رد", + "taxes_updated": "مالیات به روز شد" + } +} diff --git a/public/locales/fa/team-logo.json b/public/locales/fa/team-logo.json new file mode 100644 index 0000000..67eb280 --- /dev/null +++ b/public/locales/fa/team-logo.json @@ -0,0 +1,7 @@ +{ + "modal_title": "آرم را انتخاب کنید", + "button_text": "از میان پرونده ها انتخاب کنید", + "logo_url": "آدرس اینترنتی وب را وارد کنید", + "logo_url_err": "آرم باید زیر 512 کیلوبایت باشد.", + "or": "یا" +} diff --git a/public/locales/fa/team-taxes.json b/public/locales/fa/team-taxes.json new file mode 100644 index 0000000..1c8b62d --- /dev/null +++ b/public/locales/fa/team-taxes.json @@ -0,0 +1,10 @@ +{ + "label": "برچسب", + "tax": "مالیات", + "delete_modal": { + "title": "حذف مالیات", + "ok_title": "حذف", + "cancel_title": "رد" + }, + "notification_deleted": "حذف شده" +} diff --git a/public/locales/fa/the-footer.json b/public/locales/fa/the-footer.json new file mode 100644 index 0000000..5bd7bb5 --- /dev/null +++ b/public/locales/fa/the-footer.json @@ -0,0 +1,9 @@ +{ + "lights-on": "چراغ روشن است", + "lights-off": "چراغ خاموش", + "title": "تمام داده های شما در مرورگر شما و نه در هر سرور ذخیره می شود.\n این برنامه واقعاً بدون سرور است و فقط شما به داده های خود دسترسی دارید.", + "what_about_my_data": "در مورد داده های من چطور؟", + "made_with": "ساخته شده با", + "by": "توسط", + "upgrade": "ارتقا دهید" +}