mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
31 lines
757 B
PHP
31 lines
757 B
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 [
|
|
'yes' => 'はい',
|
|
'no' => 'いいえ',
|
|
'cancel' => 'キャンセル',
|
|
'optional' => 'Optional',
|
|
'close' => '閉じる',
|
|
'home' => 'ホーム',
|
|
'explicit' => '過激な内容を含む',
|
|
'powered_by' => '提供: {castopod}',
|
|
'go_back' => '戻る',
|
|
'play_episode_button' => [
|
|
'play' => '再生',
|
|
'playing' => '再生中',
|
|
],
|
|
'read_more' => '続きを読む',
|
|
'read_less' => '閉じる',
|
|
'see_more' => 'もっと見る',
|
|
'see_less' => '表示を減らす',
|
|
'legal_notice' => '法的事項',
|
|
];
|