2022-07-04 13:27:21 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @copyright 2020 Ad Aures
|
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
|
* @link https://castopod.org/
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
return [
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'persons' => 'افراد',
|
|
|
|
|
'all_persons' => 'تمامی افراد',
|
|
|
|
|
'no_person' => 'هیچکس پیدا نشد!',
|
|
|
|
|
'create' => 'ایجاد یک نفر',
|
|
|
|
|
'view' => 'دیدن فرد',
|
|
|
|
|
'edit' => 'ویرایش فرد',
|
|
|
|
|
'delete' => 'حذف فرد',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
'messages' => [
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'createSuccess' => 'فرد با موفّقیت ساخته شد!',
|
|
|
|
|
'editSuccess' => 'فرد با موفّقیت بهروز شد!',
|
|
|
|
|
'deleteSuccess' => 'فرد برداشته شد!',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
],
|
|
|
|
|
'form' => [
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'avatar' => 'چهرک',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
'avatar_size_hint' =>
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'چهرک باید مربّعی بوده و کمینه ۴۰۰ پیکسل پنها و بلندا داشته باشد.',
|
|
|
|
|
'full_name' => 'نام کامل',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
'full_name_hint' => 'This is the full name or alias of the person.',
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'unique_name' => 'نام یکتا',
|
|
|
|
|
'unique_name_hint' => 'استفاده شده برای نشانیها',
|
|
|
|
|
'information_url' => 'نشانی اطّلاعات',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
'information_url_hint' =>
|
|
|
|
|
'Url to a relevant resource of information about the person, such as a homepage or third-party profile platform.',
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'submit_create' => 'ایجاد فرد',
|
|
|
|
|
'submit_edit' => 'ذخیرهٔ فرد',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
],
|
|
|
|
|
'podcast_form' => [
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'title' => 'مدیریت افراد',
|
|
|
|
|
'add_section_title' => 'افزودن افراد به این پادکست',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
'add_section_subtitle' => 'You may pick several persons and roles.',
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'persons' => 'افراد',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
'persons_hint' =>
|
|
|
|
|
'You may select one or several persons with the same roles. You need to create the persons first.',
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'roles' => 'نقشها',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
'roles_hint' =>
|
|
|
|
|
'You may select none, one or several roles for a person.',
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'submit_add' => 'افزودن فرد(ها)',
|
|
|
|
|
'remove' => 'برداشتن',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
],
|
|
|
|
|
'episode_form' => [
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'title' => 'مدیریت افراد',
|
|
|
|
|
'add_section_title' => 'افزودن افراد به این قسمت',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
'add_section_subtitle' => 'You may pick several persons and roles.',
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'persons' => 'افراد',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
'persons_hint' =>
|
|
|
|
|
'You may select one or several persons with the same roles. You need to create the persons first.',
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'roles' => 'نقشها',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
'roles_hint' =>
|
|
|
|
|
'You may select none, one or several roles for a person.',
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'submit_add' => 'افزودن فرد(ها)',
|
|
|
|
|
'remove' => 'برداشتن',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
],
|
2023-07-27 10:49:25 +00:00
|
|
|
|
'credits' => 'اعتبارها',
|
2022-07-04 13:27:21 +00:00
|
|
|
|
];
|