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。请使用更大的区块大小重新制作种子文件,或者将内容分为多个种子发布。",
|
||
);
|
||
|
||
?>
|