mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-05 07:20:58 +08:00
43 lines
1.2 KiB
PHP
43 lines
1.2 KiB
PHP
<?php
|
|
|
|
$lang_delete_target = array
|
|
(
|
|
'en' => array
|
|
(
|
|
'msg_torrent_deleted' => "Your torrent was deleted",
|
|
'msg_the_torrent_you_uploaded' => "The torrent you uploaded '",
|
|
'msg_was_deleted_by' => "' was delete by ",
|
|
'msg_reason_is' => ". The reason: ",
|
|
),
|
|
'chs' => array
|
|
(
|
|
'msg_torrent_deleted' => "种子被删除",
|
|
'msg_the_torrent_you_uploaded' => "你上传的种子'",
|
|
'msg_was_deleted_by' => "'被管理员",
|
|
'msg_reason_is' => "删除。原因:",
|
|
),
|
|
'cht' => array
|
|
(
|
|
'msg_torrent_deleted' => "種子被刪除",
|
|
'msg_the_torrent_you_uploaded' => "你上傳的種子'",
|
|
'msg_was_deleted_by' => "'被管理員",
|
|
'msg_reason_is' => "刪除。原因:",
|
|
),
|
|
'ko' => array
|
|
(
|
|
'msg_torrent_deleted' => "토런트가 삭제되었습니다",
|
|
'msg_the_torrent_you_uploaded' => "업로드한 토런트가 '",
|
|
'msg_was_deleted_by' => "' 관리자에 의해 삭제가 되었습니다 ",
|
|
'msg_reason_is' => ". 삭제 이유: ",
|
|
),
|
|
'ja' => array
|
|
(
|
|
'msg_torrent_deleted' => "Your torrent was deleted",
|
|
'msg_the_torrent_you_uploaded' => "The torrent you uploaded '",
|
|
'msg_was_deleted_by' => "' was delete by ",
|
|
'msg_reason_is' => ". The reason: ",
|
|
),
|
|
);
|
|
|
|
?>
|