Commit d021abb5 authored by crowdin's avatar crowdin Committed by Yassine Doghri
Browse files

feat(i18n): add 7 new languages + update german translations

add Breton, Dutch, Indonesian, Italian, Portuguese, Spanish and Swedish
parent 5f423557
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
<?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 [
    'title' => "{actorDisplayName}'s comment for {episodeTitle}",
    'back_to_comments' => 'Back to comments',
    'form' => [
        'episode_message_placeholder' => 'Write a comment…',
        'reply_to_placeholder' => 'Reply to @{actorUsername}',
        'submit' => 'Send',
        'submit_reply' => 'Reply',
    ],
    'likes' => '{numberOfLikes, plural,
        one {# like}
        other {# likes}
    }',
    'replies' => '{numberOfReplies, plural,
        one {# reply}
        other {# replies}
    }',
    'like' => 'Like',
    'reply' => 'Reply',
    'view_replies' => 'View replies ({numberOfReplies})',
    'block_actor' => 'Block user @{actorUsername}',
    'block_domain' => 'Block domain @{actorDomain}',
    'delete' => 'Delete comment',
];
+29 −0
Original line number Diff line number Diff line
<?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 [
    'yes' => 'Yes',
    'no' => 'No',
    'cancel' => 'Cancel',
    'optional' => 'Optional',
    'close' => 'Close',
    'home' => 'Home',
    'explicit' => 'Explicit',
    'powered_by' => 'Powered by {castopod}',
    'go_back' => 'Go back',
    'play_episode_button' => [
        'play' => 'Play',
        'playing' => 'Playing',
    ],
    'read_more' => 'Read more',
    'read_less' => 'Read less',
    'see_more' => 'See more',
    'see_less' => 'See less',
];
+33 −0
Original line number Diff line number Diff line
<?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' => 'Season {seasonNumber}',
    'season_abbr' => 'S{seasonNumber}',
    'number' => 'Episode {episodeNumber}',
    'number_abbr' => 'Ep. {episodeNumber}',
    'season_episode' => 'Season {seasonNumber} episode {episodeNumber}',
    'season_episode_abbr' => 'S{seasonNumber}:E{episodeNumber}',
    'persons' => '{personsCount, plural,
        one {# person}
        other {# persons}
    }',
    'persons_list' => 'Persons',
    'back_to_episodes' => 'Back to episodes of {podcast}',
    'comments' => 'Comments',
    'activity' => 'Activity',
    'description' => 'Episode description',
    'number_of_comments' => '{numberOfComments, plural,
        one {# comment}
        other {# comments}
    }',
    'all_podcast_episodes' => 'All podcast episodes',
    'back_to_podcast' => 'Go back to podcast',
];
+37 −0
Original line number Diff line number Diff line
<?php

declare(strict_types=1);

/**
 * @copyright  2021 Ad Aures
 * @license    https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
 * @link       https://castopod.org/
 */

return [
    'your_handle' => 'Your handle',
    'your_handle_hint' => 'Enter the @username@domain you want to act from.',
    'follow' => [
        'label' => 'Follow',
        'title' => 'Follow {actorDisplayName}',
        'subtitle' => 'You are going to follow:',
        'accountNotFound' => 'The account could not be found.',
        'remoteFollowNotAllowed' => 'Seems like the account server does not allow remote follows…',
        'submit' => 'Proceed to follow',
    ],
    'favourite' => [
        'title' => "Favourite {actorDisplayName}'s post",
        'subtitle' => 'You are going to favourite:',
        'submit' => 'Proceed to favourite',
    ],
    'reblog' => [
        'title' => "Share {actorDisplayName}'s post",
        'subtitle' => 'You are going to share:',
        'submit' => 'Proceed to share',
    ],
    'reply' => [
        'title' => "Reply to {actorDisplayName}'s post",
        'subtitle' => 'You are going to reply to:',
        'submit' => 'Proceed to reply',
    ],
];
+20 −0
Original line number Diff line number Diff line
<?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 [
    'all_podcasts' => 'All podcasts',
    'sort_by' => 'Sort by',
    'sort_options' => [
        'activity' => 'Recent activity',
        'created_desc' => 'Newest first',
        'created_asc' => 'Oldest first',
    ],
    'no_podcast' => 'No podcast found',
];
Loading