mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
34 lines
1.1 KiB
PHP
34 lines
1.1 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 [
|
|
'season' => 'الموسم {seasonNumber}',
|
|
'season_abbr' => 'م{seasonNumber}',
|
|
'number' => 'الحلقة {episodeNumber}',
|
|
'number_abbr' => 'الحلقة {episodeNumber}',
|
|
'season_episode' => 'الموسم {seasonNumber} الحلقة {episodeNumber}',
|
|
'season_episode_abbr' => 'م{seasonNumber}:ح{episodeNumber}',
|
|
'persons' => '{personsCount, plural,
|
|
one {# person}
|
|
other {# persons}
|
|
}',
|
|
'persons_list' => 'أشخاص',
|
|
'back_to_episodes' => 'العودة إلى حلقات {podcast}',
|
|
'comments' => 'التعليقات',
|
|
'activity' => 'النشاط',
|
|
'description' => 'وصف الحلقة',
|
|
'number_of_comments' => '{numberOfComments, plural,
|
|
one {# comment}
|
|
other {# comments}
|
|
}',
|
|
'all_podcast_episodes' => 'كافة حلقات البودكاست',
|
|
'back_to_podcast' => 'العودة إلى البودكاست',
|
|
];
|