2021-06-01 01:28:46 +08:00
< ? php
return [
'pos_state_normal' => 'Normal' ,
2021-06-05 16:02:01 +08:00
'pos_state_sticky' => 'Sticky first' ,
'pos_state_r_sticky' => 'Sticky second' ,
2021-06-01 01:28:46 +08:00
'index' => [
'page_title' => 'Torrent list' ,
],
'show' => [
'page_title' => 'Torrent detail' ,
'basic_category' => 'Category' ,
'basic_audio_codec' => 'Audio codec' ,
'basic_codec' => 'Video codec' ,
'basic_media' => 'Media' ,
'basic_source' => 'Source' ,
'basic_standard' => 'Standard' ,
'basic_team' => 'Team' ,
'size' => 'Size' ,
'comments_label' => 'Comments' ,
2021-12-14 16:22:03 +08:00
'times_completed_label' => 'Snatched' ,
2021-06-01 01:28:46 +08:00
'peers_count_label' => 'Peers' ,
2021-12-14 16:22:03 +08:00
'thank_users_count_label' => 'Thanks' ,
'numfiles_label' => 'Files' ,
'bookmark_yes_label' => 'Bookmarked' ,
'bookmark_no_label' => 'Add to bookmark' ,
2022-03-31 16:28:08 +08:00
'reward_logs_label' => 'Reward' ,
'reward_yes_label' => 'Rewarded' ,
'reward_no_label' => 'Reward' ,
'download_label' => 'Download' ,
'thanks_yes_label' => 'Thanked' ,
'thanks_no_label' => 'Thank' ,
],
'pick_info' => [
'normal' => 'Normal' ,
'hot' => 'Hot' ,
'classic' => 'Classic' ,
'recommended' => 'Recommend' ,
],
2022-05-05 22:19:48 +08:00
'claim_already' => 'Claimed already' ,
'no_snatch' => 'Never download this torrent yet' ,
'can_no_be_claimed_yet' => 'Can not be claimed yet' ,
2022-05-06 15:50:26 +08:00
'claim_number_reach_user_maximum' => 'The maximum number of user is reached' ,
'claim_number_reach_torrent_maximum' => 'The maximum number of torrent is reached' ,
'claim_disabled' => 'Claim is disabled' ,
2022-06-14 01:07:05 +08:00
'operation_log' => [
2022-06-15 15:43:33 +08:00
\App\Models\TorrentOperationLog :: ACTION_TYPE_APPROVAL_DENY => [
2022-08-16 18:31:04 +08:00
'type_text' => 'Allowed' ,
'notify_subject' => 'Torrent was allowed' ,
'notify_msg' => 'Your torrent: [url=:detail_url]:torrent_name[/url] was allowed by :operator, Reason: :reason' ,
2022-06-14 01:07:05 +08:00
],
2022-06-15 15:43:33 +08:00
\App\Models\TorrentOperationLog :: ACTION_TYPE_APPROVAL_ALLOW => [
2022-08-16 18:31:04 +08:00
'type_text' => 'Denied' ,
'notify_subject' => 'Torrent was denied' ,
'notify_msg' => 'Your torrent: [url=:detail_url]:torrent_name[/url] denied by :operator' ,
2022-06-16 02:29:11 +08:00
],
\App\Models\TorrentOperationLog :: ACTION_TYPE_APPROVAL_NONE => [
2022-08-16 18:31:04 +08:00
'type_text' => 'Not reviewed' ,
'notify_subject' => 'Torrent was mark as not reviewed' ,
'notify_msg' => 'Your torrent: [url=:detail_url]:torrent_name[/url] was mark as not reviewed by :operator' ,
2022-06-14 01:07:05 +08:00
]
],
2022-08-16 18:31:04 +08:00
'owner_update_torrent_subject' => 'Denied torrent have been updated' ,
'owner_update_torrent_msg' => 'Torrent: [url=:detail_url]:torrent_name[/url] has been updated by the owner, you can check if it meets the requirements and allow' ,
2022-06-15 15:43:33 +08:00
'approval' => [
'modal_title' => 'Torrent approval' ,
'status_label' => 'Approval status' ,
'comment_label' => 'Comment(optional)' ,
'status_text' => [
2022-06-24 14:55:10 +08:00
\App\Models\Torrent :: APPROVAL_STATUS_NONE => 'Not reviewed' ,
2022-08-16 18:31:04 +08:00
\App\Models\Torrent :: APPROVAL_STATUS_ALLOW => 'Allowed' ,
\App\Models\Torrent :: APPROVAL_STATUS_DENY => 'Denied' ,
2022-06-15 15:43:33 +08:00
],
2022-06-24 14:55:10 +08:00
'deny_comment_show' => 'Denied, reason: :reason' ,
2022-08-16 18:31:04 +08:00
'logs_label' => 'Approval logs'
2022-06-14 13:50:50 +08:00
],
2022-09-19 18:48:03 +08:00
'show_hide_media_info' => 'Show/Hide raw MediaInfo' ,
2022-10-02 21:14:11 +08:00
'promotion_time_types' => [
\App\Models\Torrent :: PROMOTION_TIME_TYPE_GLOBAL => 'Global' ,
\App\Models\Torrent :: PROMOTION_TIME_TYPE_PERMANENT => 'Permanent' ,
\App\Models\Torrent :: PROMOTION_TIME_TYPE_DEADLINE => 'Until' ,
],
2021-06-01 01:28:46 +08:00
];