mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
32 lines
1.5 KiB
PHP
32 lines
1.5 KiB
PHP
|
|
<?php
|
|||
|
|
|
|||
|
|
$lang_takeupload = array
|
|||
|
|
(
|
|||
|
|
'std_upload_failed' => "上傳失敗!",
|
|||
|
|
'std_missing_form_data' => "請填寫必填項目",
|
|||
|
|
'std_empty_filename' => "文件名不能為空!",
|
|||
|
|
'std_zero_byte_nfo' => "NFO文件為空",
|
|||
|
|
'std_nfo_too_big' => "NFO文件過大!最大允許65,535 bytes.",
|
|||
|
|
'std_nfo_upload_failed' => "NFO檔上傳失敗",
|
|||
|
|
'std_blank_description' => "你必須填寫簡介!",
|
|||
|
|
'std_category_unselected' => "你必須選擇類型!",
|
|||
|
|
'std_invalid_filename' => "無效的文件名!",
|
|||
|
|
'std_filename_not_torrent' => "無效的文件名(不是.torrent文件).",
|
|||
|
|
'std_empty_file' => "空文件!",
|
|||
|
|
'std_not_bencoded_file' => "你在搞什麼鬼?你上傳的不是Bencode檔!",
|
|||
|
|
'std_not_a_dictionary' => "不是目錄",
|
|||
|
|
'std_dictionary_is_missing_key' => "目錄缺少值",
|
|||
|
|
'std_invalid_entry_in_dictionary' => "無效的目錄項",
|
|||
|
|
'std_invalid_dictionary_entry_type' => "無效的目錄項類型",
|
|||
|
|
'std_invalid_pieces' => "無效的文件塊",
|
|||
|
|
'std_missing_length_and_files' => "缺少長度和文件",
|
|||
|
|
'std_filename_errors' => "文件名錯誤",
|
|||
|
|
'std_uploaded_not_offered' => "你只能上傳通過候選的種子,請返回在<b>你的候選</b>中選擇合適項目後再上傳!",
|
|||
|
|
'std_unauthorized_upload_freely' => "你沒有自由上傳的權限!",
|
|||
|
|
'std_torrent_existed' => "該種子已存在!",
|
|||
|
|
'std_torrent_file_too_big' => "種子文件過大!最大允許",
|
|||
|
|
'std_remake_torrent_note' => " bytes。請使用更大的區塊大小重新制作種子,或者將內容分為多個種子發布。",
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
?>
|