2022-04-05 15:45:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2023-08-27 13:26:06 +00:00
|
|
|
use Modules\Admin\Config\Admin;
|
|
|
|
|
2022-04-05 15:45:54 +00:00
|
|
|
/**
|
|
|
|
* @copyright 2020 Ad Aures
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
return [
|
|
|
|
'label' => 'breadcrumb',
|
2023-08-27 13:26:06 +00:00
|
|
|
config(Admin::class)
|
2022-04-05 15:45:54 +00:00
|
|
|
->gateway => 'الرئيسية',
|
|
|
|
'podcasts' => 'بودكاستات',
|
|
|
|
'episodes' => 'حلقات',
|
2022-10-14 16:12:14 +00:00
|
|
|
'subscriptions' => 'subscriptions',
|
2022-04-05 15:45:54 +00:00
|
|
|
'contributors' => 'مساهمون',
|
|
|
|
'pages' => 'صفحات',
|
|
|
|
'settings' => 'الإعدادات',
|
|
|
|
'theme' => 'الحلة',
|
2022-10-20 07:55:28 +00:00
|
|
|
'about' => 'about',
|
2022-04-05 15:45:54 +00:00
|
|
|
'add' => 'إضافة',
|
|
|
|
'new' => 'جديد',
|
|
|
|
'edit' => 'تعديل',
|
|
|
|
'persons' => 'أشخاص',
|
2022-09-23 15:51:26 +00:00
|
|
|
'publish' => 'نشر',
|
|
|
|
'publish-edit' => 'تعديل المنشور',
|
2022-10-14 16:12:14 +00:00
|
|
|
'publish-date-edit' => 'edit publication date',
|
2022-04-05 15:45:54 +00:00
|
|
|
'unpublish' => 'unpublish',
|
|
|
|
'delete' => 'احذف',
|
2022-10-20 07:55:28 +00:00
|
|
|
'remove' => 'remove',
|
2022-04-05 15:45:54 +00:00
|
|
|
'fediverse' => 'الفديفرس',
|
2022-11-25 17:44:19 +00:00
|
|
|
'blocked-actors' => 'blocked actors',
|
|
|
|
'blocked-domains' => 'blocked domains',
|
2022-04-05 15:45:54 +00:00
|
|
|
'users' => 'مستخدمون',
|
|
|
|
'my-account' => 'حسابي',
|
|
|
|
'change-password' => 'تغيير الكلمة السرية',
|
2023-06-21 17:17:32 +00:00
|
|
|
'imports' => 'imports',
|
2023-11-29 17:27:10 +00:00
|
|
|
'sync-feeds' => 'synchronize feeds',
|
2022-04-05 15:45:54 +00:00
|
|
|
'platforms' => 'منصات',
|
2022-04-14 13:11:07 +00:00
|
|
|
'social' => 'شبكات التواصل الاجتماعي',
|
2022-04-05 15:45:54 +00:00
|
|
|
'funding' => 'funding',
|
2023-11-29 17:27:10 +00:00
|
|
|
'monetization-other' => 'other monetization',
|
2022-04-05 15:45:54 +00:00
|
|
|
'analytics' => 'analytics',
|
|
|
|
'locations' => 'locations',
|
2022-04-14 13:11:07 +00:00
|
|
|
'webpages' => 'صفحات ويب',
|
|
|
|
'unique-listeners' => 'مستمعون فريدون',
|
2022-04-05 15:45:54 +00:00
|
|
|
'players' => 'players',
|
2022-09-23 15:51:26 +00:00
|
|
|
'listening-time' => 'وقت الاستماع',
|
2022-04-05 15:45:54 +00:00
|
|
|
'time-periods' => 'time periods',
|
|
|
|
'soundbites' => 'soundbites',
|
|
|
|
'video-clips' => 'video clips',
|
|
|
|
'embed' => 'embeddable player',
|
2022-09-23 15:51:26 +00:00
|
|
|
'notifications' => 'الإشعارات',
|
2022-10-14 16:12:14 +00:00
|
|
|
'suspend' => 'suspend',
|
2022-04-05 15:45:54 +00:00
|
|
|
];
|