2022-04-05 15:45:54 +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 [
'season' => 'الموسم {seasonNumber}' ,
'season_abbr' => 'م{seasonNumber}' ,
'number' => 'الحلقة {episodeNumber}' ,
'number_abbr' => 'الحلقة {episodeNumber}' ,
'season_episode' => 'الموسم {seasonNumber} الحلقة {episodeNumber}' ,
2022-04-14 13:11:07 +00:00
'season_episode_abbr' => 'م{seasonNumber}ح{episodeNumber}' ,
2022-04-05 15:45:54 +00:00
'number_of_comments' => ' { numberOfComments , plural ,
one { # comment}
other { # comments}
} ' ,
'all_podcast_episodes' => 'كافة حلقات البودكاست' ,
'back_to_podcast' => 'العودة إلى البودكاست' ,
'edit' => 'تعديل' ,
2023-11-29 17:27:10 +00:00
'preview' => 'Preview' ,
2022-04-05 15:45:54 +00:00
'publish' => 'نشر' ,
2022-04-14 13:11:07 +00:00
'publish_edit' => 'تعديل المنشور' ,
2022-10-14 16:12:14 +00:00
'publish_date_edit' => 'Edit publication date' ,
2022-04-14 13:11:07 +00:00
'unpublish' => 'إلغاء النشر' ,
2022-04-05 15:45:54 +00:00
'publish_error' => 'Episode is already published.' ,
'publish_edit_error' => 'Episode is already published.' ,
'publish_cancel_error' => 'Episode is already published.' ,
2022-10-14 16:12:14 +00:00
'publish_date_edit_error' => 'Episode has not been published yet, you cannot edit its publication date.' ,
'publish_date_edit_future_error' => 'Episode\'s publication date can only be set to a past date! If you would like to reschedule it, unpublish it first.' ,
'publish_date_edit_success' => 'Episode\'s publication date has been updated successfully!' ,
2022-04-14 13:11:07 +00:00
'unpublish_error' => 'الحلقة غير منشورة.' ,
2022-04-05 15:45:54 +00:00
'delete' => 'احذف' ,
'go_to_page' => 'الانتقال إلى الصفحة' ,
'create' => 'إضافة حلقة' ,
'publication_status' => [
2022-04-14 13:11:07 +00:00
'published' => 'نُشِرَت' ,
2022-07-14 09:03:44 +00:00
'with_podcast' => 'Published' ,
2022-04-14 13:11:07 +00:00
'scheduled' => 'مُبَرمَجة' ,
'not_published' => 'غير منشورة' ,
2022-04-05 15:45:54 +00:00
],
2022-07-14 09:03:44 +00:00
'with_podcast_hint' => 'To be published at the same time as the podcast' ,
2022-04-05 15:45:54 +00:00
'list' => [
2022-07-04 13:27:21 +00:00
'search' => [
2022-09-23 15:51:26 +00:00
'placeholder' => 'البحث عن حلقة' ,
2022-07-04 13:27:21 +00:00
'clear' => 'Clear search' ,
'submit' => 'Search' ,
],
'number_of_episodes' => ' { numberOfEpisodes , plural ,
one { # episode}
other { # episodes}
} ' ,
2022-04-05 15:45:54 +00:00
'episode' => 'الحلقة' ,
2022-04-14 13:11:07 +00:00
'visibility' => 'الظهور' ,
2023-03-16 16:45:41 +00:00
'downloads' => 'Downloads' ,
2022-04-05 15:45:54 +00:00
'comments' => 'التعليقات' ,
'actions' => 'الإجراءات' ,
],
'messages' => [
2022-04-14 13:11:07 +00:00
'createSuccess' => 'تم إنشاء الحلقة بنجاح!' ,
'editSuccess' => 'تم تحديث الحلقة بنجاح!' ,
2022-07-14 09:03:44 +00:00
'publishSuccess' => ' { publication_status , select ,
published { Episode successfully published ! }
scheduled { Episode publication successfully scheduled ! }
with_podcast { This episode will be published at the same time as the podcast . }
other { This episode is not published . }
} ' ,
2022-04-14 13:11:07 +00:00
'publishCancelSuccess' => 'تم إلغاء نشر الحلقة بنجاح!' ,
2022-07-04 13:27:21 +00:00
'unpublishBeforeDeleteTip' => 'You must unpublish the episode before deleting it.' ,
2022-09-23 15:51:26 +00:00
'scheduleDateError' => 'الموعد المحدد يجب أن لا يكون فارغا!' ,
2022-07-04 13:27:21 +00:00
'deletePublishedEpisodeError' => 'Please unpublish the episode before deleting it.' ,
'deleteSuccess' => 'Episode successfully deleted!' ,
'deleteError' => ' Failed to delete episode { type , select ,
transcript { transcript }
chapters { chapters }
image { cover }
audio { audio }
other { media }
} . ' ,
'deleteFileError' => ' Failed to delete { type , select ,
transcript { transcript }
chapters { chapters }
image { cover }
audio { audio }
other { media }
2023-11-29 17:27:10 +00:00
} file { file_key } . You may manually remove it from your disk . ' ,
2022-07-04 13:27:21 +00:00
'sameSlugError' => 'An episode with the chosen slug already exists.' ,
2022-04-05 15:45:54 +00:00
],
'form' => [
'file_size_error' =>
'Your file size is too big! Max size is {0}. Increase the `memory_limit`, `upload_max_filesize` and `post_max_size` values in your php configuration file then restart your web server to upload your file.' ,
'audio_file' => 'ملف صوتي' ,
'audio_file_hint' => 'Choose an .mp3 or .m4a audio file.' ,
2022-04-14 13:11:07 +00:00
'info_section_title' => 'معلومات الحلقة' ,
'cover' => 'غلاف الحلقة' ,
2022-04-05 15:45:54 +00:00
'cover_hint' =>
'If you do not set a cover, the podcast cover will be used instead.' ,
2022-07-04 13:27:21 +00:00
'cover_size_hint' => 'Cover must be squared and at least 1400px wide and tall.' ,
2022-04-05 15:45:54 +00:00
'title' => 'العنوان' ,
'title_hint' =>
'Should contain a clear and concise episode name. Do not specify the episode or season numbers here.' ,
2022-04-14 13:11:07 +00:00
'permalink' => 'الرابط الدائم' ,
2022-04-05 15:45:54 +00:00
'season_number' => 'الموسم' ,
'episode_number' => 'الحلقة' ,
'type' => [
'label' => 'النوع' ,
'full' => 'Full' ,
'full_hint' => 'Complete content (the episode)' ,
'trailer' => 'Trailer' ,
'trailer_hint' => 'Short, promotional piece of content that represents a preview of the current show' ,
'bonus' => 'Bonus' ,
'bonus_hint' => 'Extra content for the show (for example, behind the scenes info or interviews with the cast) or cross-promotional content for another show' ,
],
2022-10-14 16:12:14 +00:00
'premium_title' => 'Premium' ,
'premium' => 'Episode must be accessible to premium subscribers only' ,
2022-04-05 15:45:54 +00:00
'parental_advisory' => [
'label' => 'Parental advisory' ,
'hint' => 'Does the episode contain explicit content?' ,
'undefined' => 'undefined' ,
'clean' => 'Clean' ,
'explicit' => 'Explicit' ,
],
'show_notes_section_title' => 'عرض الملاحظات' ,
'show_notes_section_subtitle' =>
'Up to 4000 characters, be clear and concise. Show notes help potential listeners in finding the episode.' ,
'description' => 'الوصف' ,
'description_footer' => 'Description footer' ,
'description_footer_hint' =>
'This text is added at the end of each episode description, it is a good place to input your social links for example.' ,
2022-04-14 13:11:07 +00:00
'additional_files_section_title' => 'ملفات إضافية' ,
2022-04-05 15:45:54 +00:00
'additional_files_section_subtitle' =>
2022-04-21 12:53:47 +00:00
'These files may be used by other platforms to provide better experience to your audience. See the {podcastNamespaceLink} for more information.' ,
2022-04-05 15:45:54 +00:00
'location_section_title' => 'Location' ,
'location_section_subtitle' => 'What place is this episode about?' ,
'location_name' => 'Location name or address' ,
'location_name_hint' => 'This can be a real or fictional location' ,
'transcript' => 'Transcript (subtitles / closed captions)' ,
'transcript_hint' => 'Only .srt are allowed.' ,
'transcript_download' => 'Download transcript' ,
'transcript_file' => 'Transcript file (.srt)' ,
'transcript_remote_url' => 'Remote url for transcript' ,
'transcript_file_delete' => 'Delete transcript file' ,
'chapters' => 'الفصول' ,
'chapters_hint' => 'File must be in JSON Chapters format.' ,
'chapters_download' => 'Download chapters' ,
'chapters_file' => 'Chapters file' ,
'chapters_remote_url' => 'Remote url for chapters file' ,
'chapters_file_delete' => 'Delete chapters file' ,
'advanced_section_title' => 'Advanced Parameters' ,
'advanced_section_subtitle' =>
'If you need RSS tags that Castopod does not handle, set them here.' ,
'custom_rss' => 'Custom RSS tags for the episode' ,
'custom_rss_hint' => 'This will be injected within the ❬item❭ tag.' ,
2022-07-14 09:03:44 +00:00
'block' => 'Episode should be hidden from public catalogues' ,
2022-04-05 15:45:54 +00:00
'block_hint' =>
2022-07-14 09:03:44 +00:00
'The episode show or hide status: toggling this on prevents the episode from appearing in Apple Podcasts, Google Podcasts, and any third party apps that pull shows from these directories. (Not guaranteed)' ,
2022-04-05 15:45:54 +00:00
'submit_create' => 'إنشاء حلقة' ,
'submit_edit' => 'حفظ الحلقة' ,
],
'publish_form' => [
'back_to_episode_dashboard' => 'Back to episode dashboard' ,
'post' => 'Your announcement post' ,
'post_hint' =>
" Write a message to announce the publication of your episode. The message will be broadcasted to all your followers in the fediverse and be featured in your podcast's homepage. " ,
2022-04-14 13:11:07 +00:00
'message_placeholder' => 'اكتب رسالتك…' ,
'publication_date' => 'تاريخ النشر' ,
2022-04-05 15:45:54 +00:00
'publication_method' => [
'now' => 'الآن' ,
'schedule' => 'برمجة' ,
2022-07-14 09:03:44 +00:00
'with_podcast' => 'Publish alongside podcast' ,
2022-04-05 15:45:54 +00:00
],
'scheduled_publication_date' => 'Scheduled publication date' ,
'scheduled_publication_date_clear' => 'Clear publication date' ,
'scheduled_publication_date_hint' =>
'You can schedule the episode release by setting a future publication date. This field must be formatted as YYYY-MM-DD HH:mm' ,
'submit' => 'Publish' ,
2022-04-14 13:11:07 +00:00
'submit_edit' => 'تعديل المنشور' ,
'cancel_publication' => 'إلغاء المنشور' ,
2022-04-05 15:45:54 +00:00
'message_warning' => 'You did not write a message for your announcement post!' ,
'message_warning_hint' => 'Having a message increases social engagement, resulting in a better visibility for your episode.' ,
'message_warning_submit' => 'Publish anyways' ,
],
2022-10-14 16:12:14 +00:00
'publish_date_edit_form' => [
'new_publication_date' => 'New publication date' ,
'new_publication_date_hint' => 'Must be set to a past date.' ,
'submit' => 'Edit publication date' ,
],
2022-04-05 15:45:54 +00:00
'unpublish_form' => [
'disclaimer' =>
2022-07-21 16:21:26 +00:00
" Unpublishing the episode will delete all the comments and posts associated with it and remove it from the podcast's RSS feed. " ,
2022-04-05 15:45:54 +00:00
'understand' => 'I understand, I want to unpublish the episode' ,
2022-04-14 13:11:07 +00:00
'submit' => 'إلغاء النشر' ,
2022-04-05 15:45:54 +00:00
],
'delete_form' => [
'disclaimer' =>
2022-07-04 13:27:21 +00:00
" Deleting the episode will delete all media files, comments, video clips and soundbites associated with it. " ,
2022-04-05 15:45:54 +00:00
'understand' => 'I understand, I want to delete the episode' ,
2022-07-04 13:27:21 +00:00
'submit' => 'Delete' ,
2022-04-05 15:45:54 +00:00
],
'embed' => [
'title' => 'Embeddable player' ,
'label' =>
'Pick a theme color, copy the embeddable player to clipboard, then paste it on your website.' ,
'clipboard_iframe' => 'Copy embeddable player to clipboard' ,
'clipboard_url' => 'Copy address to clipboard' ,
2022-04-14 13:11:07 +00:00
'dark' => 'داكن' ,
'dark-transparent' => 'داكن شفاف' ,
2022-04-05 15:45:54 +00:00
'light' => 'Light' ,
'light-transparent' => 'Light transparent' ,
],
2023-11-29 17:27:10 +00:00
'publication_status_banner' => [
'draft_mode' => 'draft mode' ,
'text' => ' { publication_status , select ,
published { This episode is not yet published . }
scheduled { This episode is scheduled for publication on { publication_date } . }
with_podcast { This episode will be published at the same time as the podcast . }
other { This episode is not yet published . }
} ' ,
'preview' => 'Preview' ,
],
2022-04-05 15:45:54 +00:00
];