Files
nexusphp/resources/lang/en/torrent.php
2023-02-11 16:18:50 +08:00

96 lines
4.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
return [
'pos_state_normal' => 'Normal',
'pos_state_sticky' => 'Sticky first',
'pos_state_r_sticky' => 'Sticky second',
'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',
'times_completed_label' => 'Snatched',
'peers_count_label' => 'Peers',
'thank_users_count_label' => 'Thanks',
'numfiles_label' => 'Files',
'bookmark_yes_label' => 'Bookmarked',
'bookmark_no_label' => 'Add to bookmark',
'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',
],
'claim_already' => 'Claimed already',
'no_snatch' => 'Never download this torrent yet',
'can_no_be_claimed_yet' => 'Can not be claimed yet',
'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',
'operation_log' => [
\App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_DENY => [
'type_text' => 'Allowed',
'notify_subject' => 'Torrent was allowed',
'notify_msg' => 'Your torrent[url=:detail_url]:torrent_name[/url] was allowed by :operator, Reason: :reason',
],
\App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_ALLOW => [
'type_text' => 'Denied',
'notify_subject' => 'Torrent was denied',
'notify_msg' => 'Your torrent: [url=:detail_url]:torrent_name[/url] denied by :operator',
],
\App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_NONE => [
'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',
],
\App\Models\TorrentOperationLog::ACTION_TYPE_EDIT => [
'type_text' => 'Edit',
'notify_subject' => 'Torrent was edited',
'notify_msg' => 'Your torrent: [url=:detail_url]:torrent_name[/url] was edited by :operator',
],
\App\Models\TorrentOperationLog::ACTION_TYPE_DELETE => [
'type_text' => 'Delete',
'notify_subject' => 'Torrent was deleted',
'notify_msg' => 'Your torrent: :torrent_name was deleted by :operator',
]
],
'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',
'approval' => [
'modal_title' => 'Torrent approval',
'status_label' => 'Approval status',
'comment_label' => 'Comment(optional)',
'status_text' => [
\App\Models\Torrent::APPROVAL_STATUS_NONE => 'Not reviewed',
\App\Models\Torrent::APPROVAL_STATUS_ALLOW => 'Allowed',
\App\Models\Torrent::APPROVAL_STATUS_DENY => 'Denied',
],
'deny_comment_show' => 'Denied, reason: :reason',
'logs_label' => 'Approval logs'
],
'show_hide_media_info' => 'Show/Hide raw MediaInfo',
'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',
],
'paid_torrent' => 'Paid torrent',
];