Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Persian language #2649

Merged
merged 1 commit into from
Mar 18, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
116 changes: 116 additions & 0 deletions src/i18n/locale/fa.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
const traitInputAttr = { placeholder: 'متن را اینجا وارد کنید' };

export default {
assetManager: {
addButton: 'افزودن تصویر',
inputPlh: 'http://path/to/the/image.jpg',
modalTitle: 'انتخاب تصویر',
uploadTitle: 'فایل را انتخاب کنید یا در این مکان رها کنید'
},
// Here just as a reference, GrapesJS core doesn't contain any block,
// so this should be omitted from other local files
blockManager: {
labels: {
// 'block-id': 'Block Label',
},
categories: {
// 'category-id': 'Category Label',
}
},
domComponents: {
names: {
'': 'باکس',
wrapper: 'یدنه',
text: 'متن',
comment: 'اظهار نظر',
image: 'تصویر',
video: 'ویدئو',
label: 'برچسب',
link: 'پیوند',
map: 'نقشه',
tfoot: 'پا جدول',
tbody: 'بدنه جدول',
thead: 'سر جدول',
table: 'جدول',
row: 'ردیف جدول',
cell: 'سلول جدول'
}
},
deviceManager: {
device: 'دستگاه',
devices: {
desktop: 'دسک تاپ',
tablet: 'تبلت',
mobileLandscape: 'موبایل خوابیده',
mobilePortrait: 'موبایل ایستاده'
}
},
panels: {
buttons: {
titles: {
preview: 'پیش نمایش',
fullscreen: 'تمام صفحه',
'sw-visibility': 'مشاهده اجزاء',
'export-template': 'نمایش کد',
'open-sm': 'باز کردن مدیریت استایل',
'open-tm': 'تنظیمات',
'open-layers': 'باز کردن مدیریت لایه‌ها',
'open-blocks': 'باز کردن مدیریت بلوک‌ها'
}
}
},
selectorManager: {
label: 'کلاس‌ها',
selected: 'انتخاب شده',
emptyState: '- حالت -',
states: {
hover: 'هاور',
active: 'کلیک',
'nth-of-type(2n)': 'زوج/فرد'
}
},
styleManager: {
empty: 'قبل از استفاده از مدیریت استایل یک عنصر را انتخاب کنید',
layer: 'لایه',
fileButton: 'تصاویر',
sectors: {
general: 'کلی',
layout: 'چیدمان',
typography: 'شیوه نگارش',
decorations: 'تزئینات',
extra: 'اضافی',
flex: 'فلکس',
dimension: 'ابعاد'
},
// The core library generates the name by their `property` name
properties: {
// float: 'Float',
},
traitManager: {
empty: 'قبل از استفاده از مدیر ویژگی ، یک عنصر را انتخاب کنید',
label: 'تنظیمات جزء',
traits: {
// The core library generates the name by their `name` property
labels: {
// id: 'Id',
// alt: 'Alt',
// title: 'Title',
// href: 'Href',
},
// In a simple trait, like text input, these are used on input attributes
attributes: {
id: traitInputAttr,
alt: traitInputAttr,
title: traitInputAttr,
href: { placeholder: 'مثال: https://google.com' }
},
// In a trait like select, these are used to translate option names
options: {
target: {
false: 'پنجره فعلی',
_blank: 'پنجره جدید'
}
}
}
}
};