mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
39 lines
1.5 KiB
PHP
39 lines
1.5 KiB
PHP
<?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 "
|
|
),
|
|
);
|
|
|
|
return $lang_comment_target;
|
|
?>
|