2022-03-30 15:09:35 +00:00
|
|
|
<?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 [
|
2024-04-17 09:57:14 +00:00
|
|
|
'your_handle' => 'あなたのユーザー ID',
|
2022-03-30 15:09:35 +00:00
|
|
|
'your_handle_hint' => 'Enter the @username@domain you want to act from.',
|
|
|
|
'follow' => [
|
2024-02-05 17:03:36 +00:00
|
|
|
'label' => 'フォロー',
|
|
|
|
'title' => '{actorDisplayName} をフォロー',
|
2022-03-30 15:09:35 +00:00
|
|
|
'subtitle' => 'You are going to follow:',
|
2024-02-05 17:03:36 +00:00
|
|
|
'accountNotFound' => 'アカウントが見つかりませんでした',
|
2024-04-17 09:57:14 +00:00
|
|
|
'remoteFollowNotAllowed' => 'このアカウントサーバーはリモートフォローを許可しておりません',
|
|
|
|
'submit' => 'フォローする',
|
2022-03-30 15:09:35 +00:00
|
|
|
],
|
|
|
|
'favourite' => [
|
2024-04-17 09:57:14 +00:00
|
|
|
'title' => "お気に入りの {actorDisplayName}の投稿",
|
2022-03-30 15:09:35 +00:00
|
|
|
'subtitle' => 'You are going to favourite:',
|
2024-04-17 09:57:14 +00:00
|
|
|
'submit' => 'お気に入り登録する',
|
2022-03-30 15:09:35 +00:00
|
|
|
],
|
|
|
|
'reblog' => [
|
|
|
|
'title' => "Share {actorDisplayName}'s post",
|
|
|
|
'subtitle' => 'You are going to share:',
|
2024-04-17 09:57:14 +00:00
|
|
|
'submit' => '共有する',
|
2022-03-30 15:09:35 +00:00
|
|
|
],
|
|
|
|
'reply' => [
|
|
|
|
'title' => "Reply to {actorDisplayName}'s post",
|
|
|
|
'subtitle' => 'You are going to reply to:',
|
2024-04-17 09:57:14 +00:00
|
|
|
'submit' => '返信する',
|
2022-03-30 15:09:35 +00:00
|
|
|
],
|
|
|
|
];
|