Files
nexusphp/lang/_target/lang_comment.php

39 lines
1.5 KiB
PHP
Raw Normal View History

2020-12-26 01:42:23 +08:00
<?php
$lang_comment_target = array
(
'en' => array(
'msg_new_comment' => "New comment",
'msg_torrent_receive_comment' => "You have received a comment on your torrent ",
'msg_offer_receive_comment' => "You have received a comment on your offer ",
'msg_request_receive_comment' => "You have received a comment on your request "
),
'chs' => array(
'msg_new_comment' => "新评论",
'msg_torrent_receive_comment' => "你发布的种子收到了新评论 ",
'msg_offer_receive_comment' => "你发布的候选收到了新评论 ",
'msg_request_receive_comment' => "你发布的求种收到了新评论 "
),
'cht' => array(
'msg_new_comment' => "新評論",
'msg_torrent_receive_comment' => "你發布的種子收到了新評論 ",
'msg_offer_receive_comment' => "你發布的候選收到了新評論 ",
'msg_request_receive_comment' => "你發布的求種收到了新評論 "
),
'ko' => array(
'msg_new_comment' => "새 댓글",
'msg_torrent_receive_comment' => "당신이 올린 토런트에 새 댓글이 달렸습니다. ",
'msg_offer_receive_comment' => "당신이 제안한 토런트에 새 댓글이 달렸습니다. ",
'msg_request_receive_comment' => "당신이 요청한 토런트에 새 댓글이 달렸습니다. "
),
'ja' => array(
'msg_new_comment' => "New comment",
'msg_torrent_receive_comment' => "You have received a comment on your torrent ",
'msg_offer_receive_comment' => "You have received a comment on your offer ",
'msg_request_receive_comment' => "You have received a comment on your request "
),
);
2022-03-30 15:37:11 +08:00
return $lang_comment_target;
2020-12-26 01:42:23 +08:00
?>