Files
nexusphp/resources/lang/zh_CN/torrent.php

96 lines
4.0 KiB
PHP
Raw Normal View History

2021-05-18 02:37:39 +08:00
<?php
return [
'pos_state_normal' => '普通',
'pos_state_sticky' => '一级置顶',
'pos_state_r_sticky' => '二级置顶',
2021-05-18 02:37:39 +08:00
'index' => [
'page_title' => '种子列表',
],
'show' => [
'page_title' => '种子详情',
'basic_category' => '类型',
'basic_audio_codec' => '音频编码',
'basic_codec' => '视频编码',
'basic_media' => '媒介',
'basic_source' => '来源',
'basic_standard' => '分辨率',
'basic_team' => '制作组',
'size' => '大小',
'comments_label' => '评论',
2021-05-20 23:30:34 +08:00
'times_completed_label' => '完成',
2021-05-18 02:37:39 +08:00
'peers_count_label' => '同伴',
2021-05-20 23:30:34 +08:00
'thank_users_count_label' => '谢谢',
2021-05-18 02:37:39 +08:00
'numfiles_label' => '文件',
2021-12-14 16:22:03 +08:00
'bookmark_yes_label' => '已收藏',
2022-03-30 15:37:11 +08:00
'bookmark_no_label' => '收藏',
'reward_logs_label' => '赠魔',
'reward_yes_label' => '已赠魔',
'reward_no_label' => '赠魔',
'download_label' => '下载',
'thanks_yes_label' => '已谢谢',
'thanks_no_label' => '谢谢',
2022-03-31 16:28:08 +08:00
],
'pick_info' => [
'normal' => '普通',
'hot' => '热门',
'classic' => '经典',
'recommended' => '推荐',
],
2022-05-05 22:19:48 +08:00
'claim_already' => '此种子已经认领',
'no_snatch' => '没有下载过此种子',
'can_no_be_claimed_yet' => '还不能被认领',
2022-05-06 15:50:26 +08:00
'claim_number_reach_user_maximum' => '认领达到人数上限',
'claim_number_reach_torrent_maximum' => '认领达到种子数上限',
'claim_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' => '审核拒绝',
'notify_subject' => '种子审核拒绝',
'notify_msg' => '你的种子:[url=:detail_url]:torrent_name[/url] 被 :operator 审核拒绝,原因::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' => '审核通过',
'notify_subject' => '种子审核通过',
'notify_msg' => '你的种子:[url=:detail_url]:torrent_name[/url] 被 :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' => '标记未审核',
'notify_subject' => '种子标记未审核',
'notify_msg' => '你的种子:[url=:detail_url]:torrent_name[/url] 被 :operator 标记未审核',
],
\App\Models\TorrentOperationLog::ACTION_TYPE_EDIT => [
'type_text' => '编辑',
'notify_subject' => '种子被编辑',
'notify_msg' => '你的种子:[url=:detail_url]:torrent_name[/url] 被 :operator 编辑',
],
\App\Models\TorrentOperationLog::ACTION_TYPE_DELETE => [
'type_text' => '删除',
'notify_subject' => '种子被删除',
'notify_msg' => '你的种子::torrent_name 被 :operator 删除',
2022-06-14 01:07:05 +08:00
]
],
2022-08-16 18:31:04 +08:00
'owner_update_torrent_subject' => '审核拒绝种子已更新',
'owner_update_torrent_msg' => '种子:[url=:detail_url]:torrent_name[/url] 已被作者更新,可以检查是否符合要求并审核通过',
2022-06-15 15:43:33 +08:00
'approval' => [
'modal_title' => '种子审核',
'status_label' => '审核状态',
'comment_label' => '备注(可选)',
'status_text' => [
\App\Models\Torrent::APPROVAL_STATUS_NONE => '未审',
\App\Models\Torrent::APPROVAL_STATUS_ALLOW => '通过',
\App\Models\Torrent::APPROVAL_STATUS_DENY => '拒绝',
],
'deny_comment_show' => '审核不通过,原因::reason',
2022-08-16 18:31:04 +08:00
'logs_label' => '审核记录',
2022-06-14 13:50:50 +08:00
],
2022-09-19 18:48:03 +08:00
'show_hide_media_info' => '显示/隐藏原始 MediaInfo',
2022-10-02 21:14:11 +08:00
'promotion_time_types' => [
\App\Models\Torrent::PROMOTION_TIME_TYPE_GLOBAL => '全局',
\App\Models\Torrent::PROMOTION_TIME_TYPE_PERMANENT => '永久',
\App\Models\Torrent::PROMOTION_TIME_TYPE_DEADLINE => '直到',
],
2023-02-11 16:08:48 +08:00
'paid_torrent' => '收费种子',
2021-05-18 02:37:39 +08:00
];