mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
56 lines
2.0 KiB
PHP
56 lines
2.0 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 [
|
||
'feed' => 'Ροή RSS Podcast',
|
||
'season' => 'Σεζόν {seasonNumber}',
|
||
'list_of_episodes_year' => '{year} επεισόδια ({episodeCount})',
|
||
'list_of_episodes_season' =>
|
||
'Σεζόν {seasonNumber} επεισόδεια ({episodeCount})',
|
||
'no_episode' => 'Δεν βρέθηκε επεισόδιο!',
|
||
'follow' => 'Ακολουθήστε',
|
||
'followTitle' => 'Ακολουθήστε το {actorDisplayName} στο fediverse!',
|
||
'followers' => '{numberOfFollowers, plural,
|
||
one {# ακόλουθος}
|
||
other {# ακόλουθοι}
|
||
}',
|
||
'posts' => '{numberOfPosts, plural,
|
||
one {# δημοσίευση}
|
||
other {# δημοσιεύσεις}
|
||
}',
|
||
'links' => 'Links',
|
||
'activity' => 'Δραστηριότητα',
|
||
'episodes' => 'Επεισόδια',
|
||
'episodes_title' => 'Επεισόδια του {podcastTitle}',
|
||
'about' => 'Σχετικά με',
|
||
'stats' => [
|
||
'title' => 'Στατιστικά',
|
||
'number_of_seasons' => '{0, plural,
|
||
one {# κύκλος}
|
||
other {# κύκλοι}
|
||
}',
|
||
'number_of_episodes' => '{0, plural,
|
||
one {# επισόδειο}
|
||
other {# επισόδεια}
|
||
}',
|
||
'first_published_at' => 'Το πρώτο επεισόδιο δημοσιεύθηκε στις {0, date, medium}',
|
||
],
|
||
'sponsor' => 'Χορηγός',
|
||
'funding_links' => 'Σύνδεσμοι χρηματοδότησης για το {podcastTitle}',
|
||
'find_on' => 'Βρείτε το {podcastTitle} στο',
|
||
'listen_on' => 'Ακούστε το',
|
||
'persons' => '{personsCount, plural,
|
||
one {# άτομο}
|
||
other {# άτομα}
|
||
}',
|
||
'persons_list' => 'Άτομα',
|
||
'castopod_website' => 'Castopod (website)',
|
||
];
|