mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-15 05:00:49 +08:00
38 lines
947 B
PHP
38 lines
947 B
PHP
<?php
|
|
|
|
$lang_subtitles_target = array
|
|
(
|
|
'en' => array
|
|
(
|
|
'msg_deleted_your_sub' => " deleted the subtitle that you uploaded. ",
|
|
'msg_your_sub_deleted' => "Your subtitle was deleted",
|
|
'msg_reason_is' => "The reason: ",
|
|
),
|
|
'chs' => array
|
|
(
|
|
'msg_deleted_your_sub' => "删除了你上传的字幕。",
|
|
'msg_your_sub_deleted' => "字幕被删除",
|
|
'msg_reason_is' => "原因:",
|
|
),
|
|
'cht' => array
|
|
(
|
|
'msg_deleted_your_sub' => "刪除了你上傳的字幕。",
|
|
'msg_your_sub_deleted' => "字幕被刪除",
|
|
'msg_reason_is' => "原因:",
|
|
),
|
|
'ko' => array
|
|
(
|
|
'msg_deleted_your_sub' => " 업로드한 자막이 삭제되었습니다. ",
|
|
'msg_your_sub_deleted' => "자막이 삭제되었습니다.",
|
|
'msg_reason_is' => "삭제 이유: ",
|
|
),
|
|
'ja' => array
|
|
(
|
|
'msg_deleted_your_sub' => " deleted the subtitle that you uploaded. ",
|
|
'msg_your_sub_deleted' => "Your subtitle was deleted",
|
|
'msg_reason_is' => "The reason: ",
|
|
),
|
|
);
|
|
|
|
?>
|