mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
<?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' => 'Ikuti',
|
|
'title' => 'Ikuti {actorDisplayName}',
|
|
'subtitle' => 'Anda akan mengikuti:',
|
|
'accountNotFound' => 'Akun tidak ditemukan.',
|
|
'remoteFollowNotAllowed' => 'Seems like the account server does not allow remote follows…',
|
|
'submit' => 'Lanjut mengikuti',
|
|
],
|
|
'favourite' => [
|
|
'title' => "Favoritkan postingan {actorDisplayName}",
|
|
'subtitle' => 'Anda akan memfavoritkan:',
|
|
'submit' => 'Lanjut memfavoritkan',
|
|
],
|
|
'reblog' => [
|
|
'title' => "Bagikan postingan {actorDisplayName}",
|
|
'subtitle' => 'Anda akan membagikan:',
|
|
'submit' => 'Lanjut membagikan',
|
|
],
|
|
'reply' => [
|
|
'title' => "Balas postingan {actorDisplayName}",
|
|
'subtitle' => 'Anda akan membalas:',
|
|
'submit' => 'Lanjut membalas',
|
|
],
|
|
];
|