mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
31 lines
749 B
PHP
31 lines
749 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' => 'Ya',
|
|
'no' => 'Tidak',
|
|
'cancel' => 'Batal',
|
|
'optional' => 'Opsional',
|
|
'close' => 'Tutup',
|
|
'home' => 'Beranda',
|
|
'explicit' => 'Eksplisit',
|
|
'powered_by' => 'Didukung oleh {castopod}',
|
|
'go_back' => 'Kembali',
|
|
'play_episode_button' => [
|
|
'play' => 'Putar',
|
|
'playing' => 'Sedang Diputar',
|
|
],
|
|
'read_more' => 'Baca lebih lanjut',
|
|
'read_less' => 'Baca lebih singkat',
|
|
'see_more' => 'Lihat lebih banyak',
|
|
'see_less' => 'Lihat lebih sedikit',
|
|
'legal_notice' => 'Pemberitahuan hukum',
|
|
];
|