mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
66 lines
2.7 KiB
PHP
66 lines
2.7 KiB
PHP
<?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 [
|
||
'persons' => 'افراد',
|
||
'all_persons' => 'تمامی افراد',
|
||
'no_person' => 'هیچکس پیدا نشد!',
|
||
'create' => 'ایجاد یک نفر',
|
||
'view' => 'دیدن فرد',
|
||
'edit' => 'ویرایش فرد',
|
||
'delete' => 'حذف فرد',
|
||
'messages' => [
|
||
'createSuccess' => 'فرد با موفّقیت ساخته شد!',
|
||
'editSuccess' => 'فرد با موفّقیت بهروز شد!',
|
||
'deleteSuccess' => 'فرد برداشته شد!',
|
||
],
|
||
'form' => [
|
||
'avatar' => 'چهرک',
|
||
'avatar_size_hint' =>
|
||
'چهرک باید مربّعی بوده و کمینه ۴۰۰ پیکسل پنها و بلندا داشته باشد.',
|
||
'full_name' => 'نام کامل',
|
||
'full_name_hint' => 'This is the full name or alias of the person.',
|
||
'unique_name' => 'نام یکتا',
|
||
'unique_name_hint' => 'استفاده شده برای نشانیها',
|
||
'information_url' => 'نشانی اطّلاعات',
|
||
'information_url_hint' =>
|
||
'Url to a relevant resource of information about the person, such as a homepage or third-party profile platform.',
|
||
'submit_create' => 'ایجاد فرد',
|
||
'submit_edit' => 'ذخیرهٔ فرد',
|
||
],
|
||
'podcast_form' => [
|
||
'title' => 'مدیریت افراد',
|
||
'add_section_title' => 'افزودن افراد به این پادکست',
|
||
'add_section_subtitle' => 'You may pick several persons and roles.',
|
||
'persons' => 'افراد',
|
||
'persons_hint' =>
|
||
'You may select one or several persons with the same roles. You need to create the persons first.',
|
||
'roles' => 'نقشها',
|
||
'roles_hint' =>
|
||
'You may select none, one or several roles for a person.',
|
||
'submit_add' => 'افزودن فرد(ها)',
|
||
'remove' => 'برداشتن',
|
||
],
|
||
'episode_form' => [
|
||
'title' => 'مدیریت افراد',
|
||
'add_section_title' => 'افزودن افراد به این قسمت',
|
||
'add_section_subtitle' => 'You may pick several persons and roles.',
|
||
'persons' => 'افراد',
|
||
'persons_hint' =>
|
||
'You may select one or several persons with the same roles. You need to create the persons first.',
|
||
'roles' => 'نقشها',
|
||
'roles_hint' =>
|
||
'You may select none, one or several roles for a person.',
|
||
'submit_add' => 'افزودن فرد(ها)',
|
||
'remove' => 'برداشتن',
|
||
],
|
||
'credits' => 'اعتبارها',
|
||
];
|