6 |
kaklik |
1 |
<?php
|
|
|
2 |
// ------------------------------------------------------------------------- //
|
|
|
3 |
// Coppermine Photo Gallery 1.3.2 //
|
|
|
4 |
// ------------------------------------------------------------------------- //
|
|
|
5 |
// Copyright (C) 2002-2004 Gregory DEMAR //
|
|
|
6 |
// http://www.chezgreg.net/coppermine/ //
|
|
|
7 |
// ------------------------------------------------------------------------- //
|
|
|
8 |
// Updated by the Coppermine Dev Team //
|
|
|
9 |
// (http://coppermine.sf.net/team/) //
|
|
|
10 |
// see /docs/credits.html for details //
|
|
|
11 |
// ------------------------------------------------------------------------- //
|
|
|
12 |
// This program is free software; you can redistribute it and/or modify //
|
|
|
13 |
// it under the terms of the GNU General Public License as published by //
|
|
|
14 |
// the Free Software Foundation; either version 2 of the License, or //
|
|
|
15 |
// (at your option) any later version. //
|
|
|
16 |
// ------------------------------------------------------------------------- //
|
|
|
17 |
// ENCODING CHECK; SHOULD BE YEN BETA MU: ¥ ß µ
|
|
|
18 |
// ------------------------------------------------------------------------- //
|
|
|
19 |
// CVS version: $Id: chinese_gb-utf-8.php,v 1.12 2005/01/01 11:55:33 chtito Exp $
|
|
|
20 |
// ------------------------------------------------------------------------- //
|
|
|
21 |
|
|
|
22 |
// info about translators and translated language
|
|
|
23 |
$lang_translation_info = array(
|
|
|
24 |
'lang_name_english' => 'Chinese',
|
|
|
25 |
'lang_name_native' => '简体中文(GB2312)',
|
|
|
26 |
'lang_country_code' => 'zh',
|
|
|
27 |
'trans_name'=> 'Cheng Dong',
|
|
|
28 |
'trans_email' => 'ccdong@gmail.com',
|
|
|
29 |
'trans_website' => 'http://www.thirdclassroom.com/',
|
|
|
30 |
'trans_date' => '2004-11-14',
|
|
|
31 |
);
|
|
|
32 |
|
|
|
33 |
$lang_charset = 'utf-8';
|
|
|
34 |
$lang_text_dir = 'ltr'; // ('ltr' for left to right, 'rtl' for right to left)
|
|
|
35 |
|
|
|
36 |
// shortcuts for Byte, Kilo, Mega
|
|
|
37 |
$lang_byte_units = array('Bytes', 'KB', 'MB');
|
|
|
38 |
|
|
|
39 |
// Day of weeks and months
|
|
|
40 |
$lang_day_of_week = array('星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六');
|
|
|
41 |
$lang_month = array('一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月');
|
|
|
42 |
|
|
|
43 |
// Some common strings
|
|
|
44 |
$lang_yes = '是';
|
|
|
45 |
$lang_no = '否';
|
|
|
46 |
$lang_back = '返回';
|
|
|
47 |
$lang_continue = '继续';
|
|
|
48 |
$lang_info = '讯息';
|
|
|
49 |
$lang_error = '错误';
|
|
|
50 |
|
|
|
51 |
// The various date formats
|
|
|
52 |
// See http://www.php.net/manual/en/function.strftime.php to define the variable below
|
|
|
53 |
$album_date_fmt = '%B %d, %Y';
|
|
|
54 |
$lastcom_date_fmt = '%m/%d/%y at %H:%M'; //cpg1.3.0
|
|
|
55 |
$lastup_date_fmt = '%B %d, %Y';
|
|
|
56 |
$register_date_fmt = '%B %d, %Y';
|
|
|
57 |
$lasthit_date_fmt = '%B %d, %Y at %I:%M %p'; //cpg1.3.0
|
|
|
58 |
$comment_date_fmt = '%B %d, %Y at %I:%M %p'; //cpg1.3.0
|
|
|
59 |
|
|
|
60 |
// For the word censor
|
|
|
61 |
$lang_bad_words = array('*fuck*', 'asshole', 'assramer', 'bitch*', 'c0ck', 'clits', 'Cock', 'cum', 'cunt*', 'dago', 'daygo', 'dego', 'dick*', 'dildo', 'fanculo', 'feces', 'foreskin', 'Fu\(*', 'fuk*', 'honkey', 'hore', 'injun', 'kike', 'lesbo', 'masturbat*', 'motherfucker', 'nazis', 'nigger*', 'nutsack', 'penis', 'phuck', 'poop', 'pussy', 'scrotum', 'shit', 'slut', 'titties', 'titty', 'twaty', 'wank*', 'whore', 'wop*');
|
|
|
62 |
|
|
|
63 |
$lang_meta_album_names = array(
|
|
|
64 |
'random' => '随机图片', //cpg1.3.0
|
|
|
65 |
'lastup' => '最新上传',
|
|
|
66 |
'lastalb'=> '最近更新',
|
|
|
67 |
'lastcom' => '最新留言',
|
|
|
68 |
'topn' => '热门图片',
|
|
|
69 |
'toprated' => '最高评分',
|
|
|
70 |
'lasthits' => '最近显示',
|
|
|
71 |
'search' => '搜寻结果',
|
|
|
72 |
'favpics'=> '最爱图片', //cpg1.3.0
|
|
|
73 |
);
|
|
|
74 |
|
|
|
75 |
$lang_errors = array(
|
|
|
76 |
'access_denied' => '你没有使用本页的权限.',
|
|
|
77 |
'perm_denied' => '你没有权限执行此动作.',
|
|
|
78 |
'param_missing' => '程序被呼叫而没有需要的参数.',
|
|
|
79 |
'non_exist_ap' => '所选择的 相簿/图片 不存在 !', //cpg1.3.0
|
|
|
80 |
'quota_exceeded' => '超过空间配额<br /><br />你的配额有 [quota]K, 已使用的有 [space]K, 加入此图片会超过配额.', //cpg1.3.0
|
|
|
81 |
'gd_file_type_err' => '当使用 GD 图像程序库只容许 JPEG / PNG 图档.',
|
|
|
82 |
'invalid_image' => '你上传的文档己经损坏, 或是 GD 图像程序库不能处理',
|
|
|
83 |
'resize_failed' => '无法建立缩图或变更图档尺寸.',
|
|
|
84 |
'no_img_to_display' => '没有图片可以显示.',
|
|
|
85 |
'non_exist_cat' => '所选择的类别并不存在.',
|
|
|
86 |
'orphan_cat' => '这个子类别存于一个不存在的父类别, 请先至类别管理修正这个问题.', //cpg1.3.0
|
|
|
87 |
'directory_ro' => '目录 \'%s\' 无法写入, 导致图片无法删除', //cpg1.3.0
|
|
|
88 |
'non_exist_comment' => '所选择的留言并不存在.',
|
|
|
89 |
'pic_in_invalid_album' => '此图片存于不存在的相簿 (%s)!?', //cpg1.3.0
|
|
|
90 |
'banned' => '你目前被禁止使用本站.',
|
|
|
91 |
|
|
|
92 |
'not_with_udb' => '由于本相簿已和论坛程序整合, 此功能停止使用. 可能是目前设定不支援, 或已由论坛处理.',
|
|
|
93 |
'offline_title' => '离线', //cpg1.3.0
|
|
|
94 |
'offline_text' => '相簿目前离线- 请稍后再试', //cpg1.3.0
|
|
|
95 |
'ecards_empty' => '目前没有电子卡片的纪录可显示. 请检查相簿设定中是否启用电子卡片日志!', //cpg1.3.0
|
|
|
96 |
'action_failed' => '动作失败. Coppermine 无法执行你的要求.', //cpg1.3.0
|
|
|
97 |
'no_zip' => '无法执行ZIP压缩文件. 请联络你的相簿管理员.', //cpg1.3.0
|
|
|
98 |
'zip_type' => '你没有权限上传ZIP压缩文件.', //cpg1.3.0
|
|
|
99 |
);
|
|
|
100 |
|
|
|
101 |
$lang_bbcode_help = '参考编码: <li>[b]<b>Bold</b>[/b]</li> <li>[i]<i>Italic</i>[/i]</li> <li>[url=http://yoursite.com/]Url Text[/url]</li> <li>[email]user@domain.com[/email]</li>'; //cpg1.3.0
|
|
|
102 |
|
|
|
103 |
// ------------------------------------------------------------------------- //
|
|
|
104 |
// File theme.php
|
|
|
105 |
// ------------------------------------------------------------------------- //
|
|
|
106 |
|
|
|
107 |
$lang_main_menu = array(
|
|
|
108 |
'alb_list_title' => '返回相簿目录',
|
|
|
109 |
'alb_list_lnk' => '相簿目录',
|
|
|
110 |
'my_gal_title' => '返回我的相簿',
|
|
|
111 |
'my_gal_lnk' => '我的相簿',
|
|
|
112 |
'my_prof_lnk' => '我的个人资料',
|
|
|
113 |
'adm_mode_title' => '转为管理模式',
|
|
|
114 |
'adm_mode_lnk' => '管理模式',
|
|
|
115 |
'usr_mode_title' => '转为会员模式',
|
|
|
116 |
'usr_mode_lnk' => '会员模式',
|
|
|
117 |
'upload_pic_title' => '上传图片至相簿', //cpg1.3.0
|
|
|
118 |
'upload_pic_lnk' => '上传图片', //cpg1.3.0
|
|
|
119 |
'register_title' => '建立会员帐号',
|
|
|
120 |
'register_lnk' => '注册',
|
|
|
121 |
'login_lnk' => '登入',
|
|
|
122 |
'logout_lnk' => '登出',
|
|
|
123 |
'lastup_lnk' => '最新上传',
|
|
|
124 |
'lastcom_lnk' => '最新留言',
|
|
|
125 |
'topn_lnk' => '热门图片',
|
|
|
126 |
'toprated_lnk' => '最高评分',
|
|
|
127 |
'search_lnk' => '搜寻',
|
|
|
128 |
'fav_lnk' => '我的最爱',
|
|
|
129 |
'memberlist_title' => '显示会员列表', //cpg1.3.0
|
|
|
130 |
'memberlist_lnk' => '会员列表', //cpg1.3.0
|
|
|
131 |
'faq_title' => '相簿的常见问题解答 "Coppermine"', //cpg1.3.0
|
|
|
132 |
'faq_lnk' => '常见问题解答', //cpg1.3.0
|
|
|
133 |
);
|
|
|
134 |
|
|
|
135 |
$lang_gallery_admin_menu = array(
|
|
|
136 |
'upl_app_lnk' => '核准上传',
|
|
|
137 |
'config_lnk' => '设定',
|
|
|
138 |
'albums_lnk' => '相簿',
|
|
|
139 |
'categories_lnk' => '类别',
|
|
|
140 |
'users_lnk' => '会员',
|
|
|
141 |
'groups_lnk' => '群组',
|
|
|
142 |
'comments_lnk' => '观看留言', //cpg1.3.0
|
|
|
143 |
'searchnew_lnk' => '整批加入图片', //cpg1.3.0
|
|
|
144 |
'util_lnk' => '管理员工具箱', //cpg1.3.0
|
|
|
145 |
'ban_lnk' => '停权会员',
|
|
|
146 |
'db_ecard_lnk' => '显示电子卡片', //cpg1.3.0
|
|
|
147 |
);
|
|
|
148 |
|
|
|
149 |
$lang_user_admin_menu = array(
|
|
|
150 |
'albmgr_lnk' => '建立/排序 我的相簿',
|
|
|
151 |
'modifyalb_lnk' => '编辑我的相簿',
|
|
|
152 |
'my_prof_lnk' => '我的个人资料',
|
|
|
153 |
);
|
|
|
154 |
|
|
|
155 |
$lang_cat_list = array(
|
|
|
156 |
'category' => '类别',
|
|
|
157 |
'albums' => '相簿',
|
|
|
158 |
'pictures' => '图片', //cpg1.3.0
|
|
|
159 |
);
|
|
|
160 |
|
|
|
161 |
$lang_album_list = array(
|
|
|
162 |
'album_on_page' => '%d 相簿在 %d 页',
|
|
|
163 |
);
|
|
|
164 |
|
|
|
165 |
$lang_thumb_view = array(
|
|
|
166 |
'date' => '日期',
|
|
|
167 |
//Sort by filename and title
|
|
|
168 |
'name' => '档名',
|
|
|
169 |
'title' => '标题',
|
|
|
170 |
'sort_da' => '依日期排序 由远至近',
|
|
|
171 |
'sort_dd' => '依日期排序 由近至远',
|
|
|
172 |
'sort_na' => '依名称排序 由小至大',
|
|
|
173 |
'sort_nd' => '依名称排序 由大至小',
|
|
|
174 |
'sort_ta' => '依标题排序 由小至大',
|
|
|
175 |
'sort_td' => '依标题排序 由大至小',
|
|
|
176 |
'download_zip' => '下载成 Zip 档', //cpg1.3.0
|
|
|
177 |
'pic_on_page' => '%d 图片在 %d 页',
|
|
|
178 |
'user_on_page' => '%d 会员在 %d 页', //cpg1.3.0
|
|
|
179 |
);
|
|
|
180 |
|
|
|
181 |
$lang_img_nav_bar = array(
|
|
|
182 |
'thumb_title' => '返回缩图页',
|
|
|
183 |
'pic_info_title' => '显示/隐藏 图片资讯', //cpg1.3.0
|
|
|
184 |
'slideshow_title' => '连续播放',
|
|
|
185 |
'ecard_title' => '把图片以电子卡片寄出', //cpg1.3.0
|
|
|
186 |
'ecard_disabled' => '电子卡片功能目前停用',
|
|
|
187 |
'ecard_disabled_msg' => '你没有权限寄电子卡片', //js-alert //cpg1.3.0
|
|
|
188 |
'prev_title' => '观看前一张图片', //cpg1.3.0
|
|
|
189 |
'next_title' => '观看下一张图片', //cpg1.3.0
|
|
|
190 |
'pic_pos' => '图片 %s/%s', //cpg1.3.0
|
|
|
191 |
);
|
|
|
192 |
|
|
|
193 |
$lang_rate_pic = array(
|
|
|
194 |
'rate_this_pic' => '对图片评分', //cpg1.3.0
|
|
|
195 |
'no_votes' => '(还没有人评分)',
|
|
|
196 |
'rating' => '(目前得分 : %s / 5 于 %s 个评分)',
|
|
|
197 |
'rubbish' => '昏倒 不看也罢',
|
|
|
198 |
'poor' => '有点差劲',
|
|
|
199 |
'fair' => '普普通通',
|
|
|
200 |
'good' => '很好',
|
|
|
201 |
'excellent' => '非常出色',
|
|
|
202 |
'great' => '最佳图片',
|
|
|
203 |
);
|
|
|
204 |
|
|
|
205 |
// ------------------------------------------------------------------------- //
|
|
|
206 |
// File include/exif.inc.php
|
|
|
207 |
// ------------------------------------------------------------------------- //
|
|
|
208 |
|
|
|
209 |
// void
|
|
|
210 |
|
|
|
211 |
// ------------------------------------------------------------------------- //
|
|
|
212 |
// File include/functions.inc.php
|
|
|
213 |
// ------------------------------------------------------------------------- //
|
|
|
214 |
|
|
|
215 |
$lang_cpg_die = array(
|
|
|
216 |
INFORMATION => $lang_info,
|
|
|
217 |
ERROR => $lang_error,
|
|
|
218 |
CRITICAL_ERROR => '紧急错误',
|
|
|
219 |
'file' => '文档: ',
|
|
|
220 |
'line' => '行数: ',
|
|
|
221 |
);
|
|
|
222 |
|
|
|
223 |
$lang_display_thumbnails = array(
|
|
|
224 |
'filename' => '文档名称 : ',
|
|
|
225 |
'filesize' => '文档大小 : ',
|
|
|
226 |
'dimensions' => '影像尺寸 : ',
|
|
|
227 |
'date_added' => '加入日期 : ', //cpg1.3.0
|
|
|
228 |
);
|
|
|
229 |
|
|
|
230 |
$lang_get_pic_data = array(
|
|
|
231 |
'n_comments' => '%s 个留言',
|
|
|
232 |
'n_views' => '%s 次观看',
|
|
|
233 |
'n_votes' => '(%s 个评分)',
|
|
|
234 |
);
|
|
|
235 |
|
|
|
236 |
$lang_cpg_debug_output = array(
|
|
|
237 |
'debug_info' => '除错讯息', //cpg1.3.0
|
|
|
238 |
'select_all' => '全选', //cpg1.3.0
|
|
|
239 |
'copy_and_paste_instructions' => '如果你要在Coppermine支援论坛上要求协助, 复制并贴上 这个除错讯息到你的发表文章内. 发表文章前请确定用***取代你的密码.', //cpg1.3.0
|
|
|
240 |
'phpinfo' => '显示php讯息', //cpg1.3.0
|
|
|
241 |
);
|
|
|
242 |
|
|
|
243 |
$lang_language_selection = array(
|
|
|
244 |
'reset_language' => '预设语言', //cpg1.3.0
|
|
|
245 |
'choose_language' => '选择你的语言', //cpg1.3.0
|
|
|
246 |
);
|
|
|
247 |
|
|
|
248 |
$lang_theme_selection = array(
|
|
|
249 |
'reset_theme' => '预设布景主题', //cpg1.3.0
|
|
|
250 |
'choose_theme' => '选择布景主题', //cpg1.3.0
|
|
|
251 |
);
|
|
|
252 |
|
|
|
253 |
// ------------------------------------------------------------------------- //
|
|
|
254 |
// File include/init.inc.php
|
|
|
255 |
// ------------------------------------------------------------------------- //
|
|
|
256 |
|
|
|
257 |
// void
|
|
|
258 |
|
|
|
259 |
// ------------------------------------------------------------------------- //
|
|
|
260 |
// File include/picmgmt.inc.php
|
|
|
261 |
// ------------------------------------------------------------------------- //
|
|
|
262 |
|
|
|
263 |
// void
|
|
|
264 |
|
|
|
265 |
// ------------------------------------------------------------------------- //
|
|
|
266 |
// File include/smilies.inc.php
|
|
|
267 |
// ------------------------------------------------------------------------- //
|
|
|
268 |
|
|
|
269 |
if (defined('SMILIES_PHP')) $lang_smilies_inc_php = array(
|
|
|
270 |
'Exclamation' => '感叹',
|
|
|
271 |
'Question' => '疑问',
|
|
|
272 |
'Very Happy' => '很高兴',
|
|
|
273 |
'Smile' => '微笑',
|
|
|
274 |
'Sad' => '悲哀',
|
|
|
275 |
'Surprised' => '惊讶',
|
|
|
276 |
'Shocked' => '震惊',
|
|
|
277 |
'Confused' => '昏倒',
|
|
|
278 |
'Cool' => '很棒',
|
|
|
279 |
'Laughing' => '发笑',
|
|
|
280 |
'Mad' => '发狂',
|
|
|
281 |
'Razz' => '嘲笑',
|
|
|
282 |
'Embarassed' => '尴尬',
|
|
|
283 |
'Crying or Very sad' => '嚎哭',
|
|
|
284 |
'Evil or Very Mad' => '恶毒',
|
|
|
285 |
'Twisted Evil' => '古怪',
|
|
|
286 |
'Rolling Eyes' => '旋转的眼睛',
|
|
|
287 |
'Wink' => '眨眼',
|
|
|
288 |
'Idea' => '主意',
|
|
|
289 |
'Arrow' => '箭头',
|
|
|
290 |
'Neutral' => '中立',
|
|
|
291 |
'Mr. Green' => '格林先生',
|
|
|
292 |
);
|
|
|
293 |
|
|
|
294 |
// ------------------------------------------------------------------------- //
|
|
|
295 |
// File addpic.php
|
|
|
296 |
// ------------------------------------------------------------------------- //
|
|
|
297 |
|
|
|
298 |
// void
|
|
|
299 |
|
|
|
300 |
// ------------------------------------------------------------------------- //
|
|
|
301 |
// File admin.php
|
|
|
302 |
// ------------------------------------------------------------------------- //
|
|
|
303 |
|
|
|
304 |
if (defined('ADMIN_PHP')) $lang_admin_php = array(
|
|
|
305 |
|
|
|
306 |
1 => '正进入管理模式...',
|
|
|
307 |
);
|
|
|
308 |
|
|
|
309 |
// ------------------------------------------------------------------------- //
|
|
|
310 |
// File albmgr.php
|
|
|
311 |
// ------------------------------------------------------------------------- //
|
|
|
312 |
|
|
|
313 |
if (defined('ALBMGR_PHP')) $lang_albmgr_php = array(
|
|
|
314 |
'alb_need_name' => '您需要给相簿一个名称 !', //js-alert
|
|
|
315 |
'confirm_modifs' => '确定要做这些修改吗 ?', //js-alert
|
|
|
316 |
'no_change' => '您没有做任何改变 !', //js-alert
|
|
|
317 |
'new_album' => '新相簿',
|
|
|
318 |
'confirm_delete1' => '确定要删除此相簿吗 ?', //js-alert
|
|
|
319 |
'confirm_delete2' => '\n所有图片及留言都会删除 !', //js-alert
|
|
|
320 |
'select_first' => '请先选择一个相簿', //js-alert
|
|
|
321 |
'alb_mrg' => '相簿管理员',
|
|
|
322 |
'my_gallery' => '* 我的相簿 *',
|
|
|
323 |
'no_category' => '* 没有类别 *',
|
|
|
324 |
'delete' => '删除',
|
|
|
325 |
'new' => '新增',
|
|
|
326 |
'apply_modifs' => '修改',
|
|
|
327 |
'select_category' => '选择类别',
|
|
|
328 |
);
|
|
|
329 |
|
|
|
330 |
// ------------------------------------------------------------------------- //
|
|
|
331 |
// File catmgr.php
|
|
|
332 |
// ------------------------------------------------------------------------- //
|
|
|
333 |
|
|
|
334 |
if (defined('CATMGR_PHP')) $lang_catmgr_php = array(
|
|
|
335 |
'miss_param' => '\'%s\'操作所需要的参数并未提供 !',
|
|
|
336 |
'unknown_cat' => '所选择的类别并不存在于资料库',
|
|
|
337 |
'usergal_cat_ro' => '会员相簿类别不能删除 !',
|
|
|
338 |
'manage_cat' => '类别管理',
|
|
|
339 |
'confirm_delete' => '确定要删除此类别吗', //js-alert
|
|
|
340 |
'category' => '类别',
|
|
|
341 |
'operations' => '操作',
|
|
|
342 |
'move_into' => '搬移至',
|
|
|
343 |
'update_create' => '更新/建立 类别',
|
|
|
344 |
'parent_cat' => '父类别',
|
|
|
345 |
'cat_title' => '类别标题',
|
|
|
346 |
'cat_thumb' => '类别缩图', //cpg1.3.0
|
|
|
347 |
'cat_desc' => '类别描述',
|
|
|
348 |
);
|
|
|
349 |
|
|
|
350 |
// ------------------------------------------------------------------------- //
|
|
|
351 |
// File config.php
|
|
|
352 |
// ------------------------------------------------------------------------- //
|
|
|
353 |
|
|
|
354 |
if (defined('CONFIG_PHP')) $lang_config_php = array(
|
|
|
355 |
'title' => '设定',
|
|
|
356 |
'restore_cfg' => '回复原始设定',
|
|
|
357 |
'save_cfg' => '储存新设定',
|
|
|
358 |
|
|
|
359 |
'notes' => '注意',
|
|
|
360 |
'info' => '讯息',
|
|
|
361 |
'upd_success' => '设定已更新',
|
|
|
362 |
'restore_success' => '原始设定已回复',
|
|
|
363 |
'name_a' => '排序依名称 由小至大',
|
|
|
364 |
'name_d' => '排序依名称 由大至小',
|
|
|
365 |
'title_a' => '排序依标题 由小至大',
|
|
|
366 |
'title_d' => '排序依标题 由大至小',
|
|
|
367 |
'date_a' => '排序依日期 由远至近',
|
|
|
368 |
'date_d' => '排序依日期 由近至远',
|
|
|
369 |
'th_any' => '最大外观',
|
|
|
370 |
'th_ht' => '高度',
|
|
|
371 |
'th_wd' => '宽度',
|
|
|
372 |
'label' => '标签', //cpg1.3.0
|
|
|
373 |
'item' => '项目', //cpg1.3.0
|
|
|
374 |
'debug_everyone' => '任何人', //cpg1.3.0
|
|
|
375 |
'debug_admin' => '管理员专用', //cpg1.3.0
|
|
|
376 |
);
|
|
|
377 |
|
|
|
378 |
if (defined('CONFIG_PHP')) $lang_config_data = array(
|
|
|
379 |
'基本设定',
|
|
|
380 |
array('相簿名称', 'gallery_name', 0),
|
|
|
381 |
array('相簿描述', 'gallery_description', 0),
|
|
|
382 |
array('相簿管理员电子邮件', 'gallery_admin_email', 0),
|
|
|
383 |
array('在电子卡片内显示\'观看更多图片\'的网址', 'ecards_more_pic_target', 0),
|
|
|
384 |
array('相簿目前离线中', 'offline', 1), //cpg1.3.0
|
|
|
385 |
array('电子卡片日志', 'log_ecards', 1), //cpg1.3.0
|
|
|
386 |
array('允许将最爱的图片下载成ZIP档', 'enable_zipdownload', 1), //cpg1.3.0
|
|
|
387 |
|
|
|
388 |
'语系, 布景 & 文字编码设定',
|
|
|
389 |
array('语言', 'lang', 5),
|
|
|
390 |
array('布景', 'theme', 6),
|
|
|
391 |
array('显示语言列表', 'language_list', 1), //cpg1.3.0
|
|
|
392 |
array('显示语言国旗', 'language_flags', 8), //cpg1.3.0
|
|
|
393 |
array('显示 "重设" 在语言选择', 'language_reset', 1), //cpg1.3.0
|
|
|
394 |
array('显示布景列表', 'theme_list', 1), //cpg1.3.0
|
|
|
395 |
array('显示 "重设" 在布景选择', 'theme_reset', 1), //cpg1.3.0
|
|
|
396 |
array('显示 FAQ', 'display_faq', 1), //cpg1.3.0
|
|
|
397 |
array('显示 bbcode help', 'show_bbcode_help', 1), //cpg1.3.0
|
|
|
398 |
array('文字编码', 'charset', 4), //cpg1.3.0
|
|
|
399 |
|
|
|
400 |
'相簿目录显示',
|
|
|
401 |
array('主要表格宽度 (像素或 %)', 'main_table_width', 0),
|
|
|
402 |
array('同一层次的子类别显示个数', 'subcat_level', 0),
|
|
|
403 |
array('相簿显示个数', 'albums_per_page', 0),
|
|
|
404 |
array('相簿目录页相簿栏数', 'album_list_cols', 0),
|
|
|
405 |
array('缩图像素', 'alb_list_thumb_size', 0),
|
|
|
406 |
array('主页的内容', 'main_page_layout', 0),
|
|
|
407 |
array('显示分类中第一层的相簿缩图','first_level',1),
|
|
|
408 |
|
|
|
409 |
'缩图显示',
|
|
|
410 |
array('缩图页栏数', 'thumbcols', 0),
|
|
|
411 |
array('缩图页列数', 'thumbrows', 0),
|
|
|
412 |
array('表格显示最高个数', 'max_tabs', 10), //cpg1.3.0
|
|
|
413 |
array('显示图片说明于缩图下方 (附加的标题)', 'caption_in_thumbview', 1), //cpg1.3.0
|
|
|
414 |
array('显示观看次数于缩图下方', 'views_in_thumbview', 1), //cpg1.3.0
|
|
|
415 |
array('显示留言数于缩图下方', 'display_comment_count', 1),
|
|
|
416 |
array('显示上传者名称于缩图下方', 'display_uploader', 1), //cpg1.3.0
|
|
|
417 |
array('图片的原始排序次序', 'default_sort_order', 3), //cpg1.3.0
|
|
|
418 |
array('\'热门投票\'需要最少投票数', 'min_votes_for_rating', 0), //cpg1.3.0
|
|
|
419 |
|
|
|
420 |
'图片显示 & 留言设定',
|
|
|
421 |
array('图片显示的表格宽度 (像素或 %)', 'picture_table_width', 0), //cpg1.3.0
|
|
|
422 |
array('图片资讯预设显示', 'display_pic_info', 1), //cpg1.3.0
|
|
|
423 |
array('留言内过滤不良词语', 'filter_bad_words', 1),
|
|
|
424 |
array('留言可以使用笑脸图示', 'enable_smilies', 1),
|
|
|
425 |
array('允许会员在同一张图片 连续发表留言(关闭灌水保护)', 'disable_comment_flood_protect', 1), //cpg1.3.0
|
|
|
426 |
array('图片描述内容的最大长度', 'max_img_desc_length', 0),
|
|
|
427 |
array('描述内容的最大字数', 'max_com_wlength', 0),
|
|
|
428 |
array('留言的最大行数', 'max_com_lines', 0),
|
|
|
429 |
array('留言的最大长度', 'max_com_size', 0),
|
|
|
430 |
array('显示图片预览列', 'display_film_strip', 1),
|
|
|
431 |
array('图片预览列的图片数', 'max_film_strip_items', 0),
|
|
|
432 |
array('有留言时 用电子邮件通知管理员', 'email_comment_notification', 1), //cpg1.3.0
|
|
|
433 |
array('连续拨放间隔几 毫秒(1 秒 = 1000 毫秒)', 'slideshow_interval', 0), //cpg1.3.0
|
|
|
434 |
|
|
|
435 |
'图片及缩图设定', //cpg1.3.0
|
|
|
436 |
array('JPEG 格式品质', 'jpeg_qual', 0),
|
|
|
437 |
array('缩图最大尺寸 <a href="#notice2" class="clickable_option">**</a>', 'thumb_width', 0), //cpg1.3.0
|
|
|
438 |
array('使用尺寸 ( 宽、高或缩图最大边长 )<b>**</b>', 'thumb_use', 7),
|
|
|
439 |
array('建立中级图片','make_intermediate',1),
|
|
|
440 |
array('中级图片/影片最大尺寸 <a href="#notice2" class="clickable_option">**</a>', 'picture_width', 0), //cpg1.3.0
|
|
|
441 |
array('上传图档的最大限制 (KB)', 'max_upl_size', 0), //cpg1.3.0
|
|
|
442 |
array('上传图片/影片最大宽或高尺寸 (像素)', 'max_upl_width_height', 0), //cpg1.3.0
|
|
|
443 |
|
|
|
444 |
'图片和缩图的进阶设定', //cpg1.3.0
|
|
|
445 |
array('显示私人相簿图片给未登入会员','show_private',1), //cpg1.3.0
|
|
|
446 |
array('文档名称不接受的字符', 'forbiden_fname_char',0), //cpg1.3.0
|
|
|
447 |
//array('上传图档可接受的扩展名', 'allowed_file_extensions',0), //cpg1.3.0
|
|
|
448 |
array('可接受的图片档类型', 'allowed_img_types',0), //cpg1.3.0
|
|
|
449 |
array('可接受的影片档类型', 'allowed_mov_types',0), //cpg1.3.0
|
|
|
450 |
array('可接受的声音档类型', 'allowed_snd_types',0), //cpg1.3.0
|
|
|
451 |
array('可接受的文件档类型', 'allowed_doc_types',0), //cpg1.3.0
|
|
|
452 |
array('建立缩图的方法','thumb_method',2), //cpg1.3.0
|
|
|
453 |
array('ImageMagick \'convert\' 程序的路径 (例如 /usr/bin/X11/)', 'impath', 0), //cpg1.3.0
|
|
|
454 |
//array('可接受的图档类型(只对 ImageMagick 有效)', 'allowed_img_types',0), //cpg1.3.0
|
|
|
455 |
array('ImageMagick 的命令列选项', 'im_options', 0), //cpg1.3.0
|
|
|
456 |
array('读取 JPEG 文档的 EXIF 资料', 'read_exif_data', 1), //cpg1.3.0
|
|
|
457 |
array('读取 JPEG 文档的 IPTC 资料', 'read_iptc_data', 1), //cpg1.3.0
|
|
|
458 |
array('相簿路径 <a href="#notice1" class="clickable_option">*</a>', 'fullpath', 0), //cpg1.3.0
|
|
|
459 |
array('会员图档路径 <a href="#notice1" class="clickable_option">*</a>', 'userpics', 0), //cpg1.3.0
|
|
|
460 |
array('中级图档的前置字元 <a href="#notice1" class="clickable_option">*</a>', 'normal_pfx', 0), //cpg1.3.0
|
|
|
461 |
array('缩图档的前置字元 <a href="#notice1" class="clickable_option">*</a>', 'thumb_pfx', 0), //cpg1.3.0
|
|
|
462 |
array('放置图档目录的预设权限', 'default_dir_mode', 0), //cpg1.3.0
|
|
|
463 |
array('上传图片的预设权限', 'default_file_mode', 0), //cpg1.3.0
|
|
|
464 |
|
|
|
465 |
'会员设定',
|
|
|
466 |
array('允许新会员注册', 'allow_user_registration', 1),
|
|
|
467 |
array('注册需要电子邮件验证', 'reg_requires_valid_email', 1),
|
|
|
468 |
array('有使用者注册时 用电子邮件通知管理员', 'reg_notify_admin_email', 1), //cpg1.3.0
|
|
|
469 |
array('允许两个会员使用同一个电子邮件地址', 'allow_duplicate_emails_addr', 1),
|
|
|
470 |
array('会员可以有私人的相簿 (注意: 如果你切换 是到否 任何目前私人相簿将变成公开相簿)', 'allow_private_albums', 1), //cpg1.3.0
|
|
|
471 |
array('有会员上传文档等待核准时 通知管理员', 'upl_notify_admin_email', 1), //cpg1.3.0
|
|
|
472 |
array('允许登入的会员查看会员列表', 'allow_memberlist', 1), //cpg1.3.0
|
|
|
473 |
|
|
|
474 |
'影像描述的自订栏位 (如果不使用请留下空白)',
|
|
|
475 |
array('栏位 1 名称', 'user_field1_name', 0),
|
|
|
476 |
array('栏位 2 名称', 'user_field2_name', 0),
|
|
|
477 |
array('栏位 3 名称', 'user_field3_name', 0),
|
|
|
478 |
array('栏位 4 名称', 'user_field4_name', 0),
|
|
|
479 |
|
|
|
480 |
'Cookies settings',
|
|
|
481 |
array('使用的 cookie 名称 (与论坛程序整合时, 确定它和论坛的cookie不同)', 'cookie_name', 0),
|
|
|
482 |
array('使用的 cookie 路径', 'cookie_path', 0),
|
|
|
483 |
|
|
|
484 |
'其他设定',
|
|
|
485 |
array('启动除错模式', 'debug_mode', 9), //cpg1.3.0
|
|
|
486 |
array('在除错模式时显示提示', 'debug_notice', 1), //cpg1.3.0
|
|
|
487 |
|
|
|
488 |
'<br /><div align="left"><a name="notice1"></a>(*) 若相簿内有图片, 标示有 * 的栏位表示不可更改.<br />
|
|
|
489 |
<a name="notice2"></a>(**) 改变这个设定只影响已经加入的文档, 如果那些文档已经在相簿内了,这个设定不必改变. 无论如何,你可以从 管理员功能选单里 调整既有的文档,从 "<a href="util.php">管理员工具箱</a> (调整图片尺寸)" </div><br />', //cpg1.3.0
|
|
|
490 |
);
|
|
|
491 |
|
|
|
492 |
// ------------------------------------------------------------------------- //
|
|
|
493 |
// File db_ecard.php //cpg1.3.0
|
|
|
494 |
// ------------------------------------------------------------------------- //
|
|
|
495 |
|
|
|
496 |
if (defined('DB_ECARD_PHP')) $lang_db_ecard_php = array(
|
|
|
497 |
'title' => '寄出电子卡片', //cpg1.3.0
|
|
|
498 |
'ecard_sender' => '发信人', //cpg1.3.0
|
|
|
499 |
'ecard_recipient' => '收信人', //cpg1.3.0
|
|
|
500 |
'ecard_date' => '日期', //cpg1.3.0
|
|
|
501 |
'ecard_display' => '显示电子卡片', //cpg1.3.0
|
|
|
502 |
'ecard_name' => '名称', //cpg1.3.0
|
|
|
503 |
'ecard_email' => '电子邮件地址', //cpg1.3.0
|
|
|
504 |
'ecard_ip' => 'IP #', //cpg1.3.0
|
|
|
505 |
'ecard_ascending' => '升序', //cpg1.3.0
|
|
|
506 |
'ecard_descending' => '降序', //cpg1.3.0
|
|
|
507 |
'ecard_sorted' => '排序', //cpg1.3.0
|
|
|
508 |
'ecard_by_date' => '按日期', //cpg1.3.0
|
|
|
509 |
'ecard_by_sender_name' => '按发信人名称', //cpg1.3.0
|
|
|
510 |
'ecard_by_sender_email' => '按发信人邮件', //cpg1.3.0
|
|
|
511 |
'ecard_by_sender_ip' => '按发信人的 IP 位址', //cpg1.3.0
|
|
|
512 |
'ecard_by_recipient_name' => '按收信人名称', //cpg1.3.0
|
|
|
513 |
'ecard_by_recipient_email' => '按收信人邮件', //cpg1.3.0
|
|
|
514 |
'ecard_number' => '显示纪录 %s 到 %s 在 %s', //cpg1.3.0
|
|
|
515 |
'ecard_goto_page' => '到页次', //cpg1.3.0
|
|
|
516 |
'ecard_records_per_page' => '页次纪录', //cpg1.3.0
|
|
|
517 |
'check_all' => '全选', //cpg1.3.0
|
|
|
518 |
'uncheck_all' => '都不选', //cpg1.3.0
|
|
|
519 |
'ecards_delete_selected' => '删除已经选择的卡片', //cpg1.3.0
|
|
|
520 |
'ecards_delete_confirm' => '你确定要删除纪录? 请点选!', //cpg1.3.0
|
|
|
521 |
'ecards_delete_sure' => '我确定', //cpg1.3.0
|
|
|
522 |
);
|
|
|
523 |
|
|
|
524 |
|
|
|
525 |
// ------------------------------------------------------------------------- //
|
|
|
526 |
// File db_input.php
|
|
|
527 |
// ------------------------------------------------------------------------- //
|
|
|
528 |
|
|
|
529 |
if (defined('DB_INPUT_PHP')) $lang_db_input_php = array(
|
|
|
530 |
'empty_name_or_com' => '请输入你的名字和留言',
|
|
|
531 |
'com_added' => '您的留言已经加入',
|
|
|
532 |
'alb_need_title' => '您必须为相簿提供一个标题 !',
|
|
|
533 |
'no_udp_needed' => '没有更新的必要',
|
|
|
534 |
'alb_updated' => '相簿已经更新',
|
|
|
535 |
'unknown_album' => '所选择的相簿不存在或您没有权限上传文档到此相簿',
|
|
|
536 |
'no_pic_uploaded' => '没有文档被上传 !<br /><br />如果您确定有选择文档上传, 请检查服务器是否允许上传文档...', //cpg1.3.0
|
|
|
537 |
'err_mkdir' => '无法建立目录 %s !',
|
|
|
538 |
'dest_dir_ro' => '目录 %s 无法写入 !',
|
|
|
539 |
'err_move' => '无法搬移 %s 到 %s !',
|
|
|
540 |
'err_fsize_too_large' => '您上传的图片太大 (不能超过 %s x %s) !', //cpg1.3.0
|
|
|
541 |
'err_imgsize_too_large' => '您上传的图档太大 (不能超过 %s KB) !',
|
|
|
542 |
'err_invalid_img' => '上传的文档并不是容许的图片格式 !',
|
|
|
543 |
'allowed_img_types' => '您只可以上传 %s 张图片.',
|
|
|
544 |
'err_insert_pic' => '文档 \'%s\' 无法加入此相簿 ', //cpg1.3.0
|
|
|
545 |
'upload_success' => '文档上传完成!<br /><br />当管理者核准后就可以看到文档了.', //cpg1.3.0
|
|
|
546 |
'notify_admin_email_subject' => '%s - 上传文档通知', //cpg1.3.0
|
|
|
547 |
'notify_admin_email_body' => '%s有上传文档 需要你的核准. 请查阅 %s', //cpg1.3.0
|
|
|
548 |
'info' => '讯息',
|
|
|
549 |
'com_added' => '留言已加入',
|
|
|
550 |
'alb_updated' => '相簿已经更新',
|
|
|
551 |
'err_comment_empty' => '留言是空的 !',
|
|
|
552 |
'err_invalid_fext' => '只有下列的扩展名才容许 : <br /><br />%s.',
|
|
|
553 |
'no_flood' => '抱歉, 此图片最后一个留言是您提供<br /><br />您可以修改您的留言', //cpg1.3.0
|
|
|
554 |
'redirect_msg' => '页面转移中.<br /><br /><br />按 \'继续\' 如果页面没有自动刷新',
|
|
|
555 |
'upl_success' => '已经加入您的图片', //cpg1.3.0
|
|
|
556 |
'email_comment_subject' => '已经有留言发表在网路相簿', //cpg1.3.0
|
|
|
557 |
'email_comment_body' => '已经有留言发表在您的相簿.请查阅', //cpg1.3.0
|
|
|
558 |
);
|
|
|
559 |
|
|
|
560 |
// ------------------------------------------------------------------------- //
|
|
|
561 |
// File delete.php
|
|
|
562 |
// ------------------------------------------------------------------------- //
|
|
|
563 |
|
|
|
564 |
if (defined('DELETE_PHP')) $lang_delete_php = array(
|
|
|
565 |
'caption' => '说明',
|
|
|
566 |
'fs_pic' => '原图',
|
|
|
567 |
'del_success' => '完成删除',
|
|
|
568 |
'ns_pic' => '标准尺寸图片',
|
|
|
569 |
'err_del' => '无法删除',
|
|
|
570 |
'thumb_pic' => '缩图',
|
|
|
571 |
'comment' => '留言',
|
|
|
572 |
'im_in_alb' => '相簿内图片',
|
|
|
573 |
'alb_del_success' => '相簿 \'%s\' 已删除',
|
|
|
574 |
'alb_mgr' => '相簿管理',
|
|
|
575 |
'err_invalid_data' => '接收到不正确的资料于 \'%s\'',
|
|
|
576 |
'create_alb' => '建立相簿 \'%s\'',
|
|
|
577 |
'update_alb' => '更新相簿 \'%s\' 标题为 \'%s\' 索引为 \'%s\'',
|
|
|
578 |
'del_pic' => '删除图片', //cpg1.3.0
|
|
|
579 |
'del_alb' => '删除相簿',
|
|
|
580 |
'del_user' => '删除会员',
|
|
|
581 |
'err_unknown_user' => '所选择的会员不存在 !',
|
|
|
582 |
'comment_deleted' => '留言已删除',
|
|
|
583 |
);
|
|
|
584 |
|
|
|
585 |
// ------------------------------------------------------------------------- //
|
|
|
586 |
// File displayecard.php
|
|
|
587 |
// ------------------------------------------------------------------------- //
|
|
|
588 |
|
|
|
589 |
// Void
|
|
|
590 |
|
|
|
591 |
// ------------------------------------------------------------------------- //
|
|
|
592 |
// File displayimage.php
|
|
|
593 |
// ------------------------------------------------------------------------- //
|
|
|
594 |
|
|
|
595 |
if (defined('DISPLAYIMAGE_PHP')){
|
|
|
596 |
|
|
|
597 |
$lang_display_image_php = array(
|
|
|
598 |
'confirm_del' => '确定要删除此图片吗 ? \\n留言也会被删除.', //js-alert //cpg1.3.0
|
|
|
599 |
'del_pic' => '删除此图片', //cpg1.3.0
|
|
|
600 |
'size' => '%s x %s 像素',
|
|
|
601 |
'views' => '%s 次',
|
|
|
602 |
'slideshow' => '连续播放',
|
|
|
603 |
'stop_slideshow' => '停止播放',
|
|
|
604 |
'view_fs' => '点选图片以观看原图',
|
|
|
605 |
'edit_pic' => '编辑说明', //cpg1.3.0
|
|
|
606 |
'crop_pic' => '裁剪与旋转', //cpg1.3.0
|
|
|
607 |
);
|
|
|
608 |
|
|
|
609 |
$lang_picinfo = array(
|
|
|
610 |
'title' =>'图片资讯', //cpg1.3.0
|
|
|
611 |
'Filename' => '文档名称',
|
|
|
612 |
'Album name' => '相簿名称',
|
|
|
613 |
'Rating' => '评分 (%s 次投票)',
|
|
|
614 |
'Keywords' => '关键字',
|
|
|
615 |
'File Size' => '文档大小',
|
|
|
616 |
'Dimensions' => '尺寸',
|
|
|
617 |
'Displayed' => '显示',
|
|
|
618 |
'Camera' => '相机',
|
|
|
619 |
'Date taken' => '拍摄日期',
|
|
|
620 |
'Aperture' => '光圈',
|
|
|
621 |
'Exposure time' => '曝光时间',
|
|
|
622 |
'Focal length' => '焦距',
|
|
|
623 |
'Comment' => '留言',
|
|
|
624 |
'addFav'=>'加到我的最爱', //cpg1.3.0
|
|
|
625 |
'addFavPhrase'=>'我的最爱', //cpg1.3.0
|
|
|
626 |
'remFav'=>'从我的最爱移除', //cpg1.3.0
|
|
|
627 |
'iptcTitle'=>'IPTC 标题', //cpg1.3.0
|
|
|
628 |
'iptcCopyright'=>'IPTC 版权', //cpg1.3.0
|
|
|
629 |
'iptcKeywords'=>'IPTC 关键字', //cpg1.3.0
|
|
|
630 |
'iptcCategory'=>'IPTC 类别', //cpg1.3.0
|
|
|
631 |
'iptcSubCategories'=>'IPTC 子类别', //cpg1.3.0
|
|
|
632 |
);
|
|
|
633 |
|
|
|
634 |
$lang_display_comments = array(
|
|
|
635 |
'OK' => 'OK',
|
|
|
636 |
'edit_title' => '编辑此留言',
|
|
|
637 |
'confirm_delete' => '确定要删除此留言 ?', //js-alert
|
|
|
638 |
'add_your_comment' => '加入你的留言',
|
|
|
639 |
'name'=>'名称',
|
|
|
640 |
'comment'=>'留言',
|
|
|
641 |
'your_name' => '留言',
|
|
|
642 |
);
|
|
|
643 |
|
|
|
644 |
$lang_fullsize_popup = array(
|
|
|
645 |
'click_to_close' => '点选图片以关闭视窗',
|
|
|
646 |
);
|
|
|
647 |
|
|
|
648 |
}
|
|
|
649 |
|
|
|
650 |
// ------------------------------------------------------------------------- //
|
|
|
651 |
// File ecard.php
|
|
|
652 |
// ------------------------------------------------------------------------- //
|
|
|
653 |
|
|
|
654 |
if (defined('ECARDS_PHP') || defined('DISPLAYECARD_PHP')) $lang_ecard_php =array(
|
|
|
655 |
'title' => '寄出 电子卡片',
|
|
|
656 |
'invalid_email' => '<b>警告</b> : 不正确的电子邮件地址 !',
|
|
|
657 |
'ecard_title' => '%s 寄来给你的 电子卡片',
|
|
|
658 |
'error_not_image' => '电子卡片只能寄出图片.', //cpg1.3.0
|
|
|
659 |
'view_ecard' => '如果 电子卡片 无法正确显示, 请按此连结',
|
|
|
660 |
'view_more_pics' => '按此连结看更多图片 !',
|
|
|
661 |
'send_success' => '你的 电子卡片 寄出',
|
|
|
662 |
'send_failed' => '抱歉, 本服务器无法为你寄出 电子卡片...',
|
|
|
663 |
'from' => '由',
|
|
|
664 |
'your_name' => '你的名称',
|
|
|
665 |
'your_email' => '你的电子邮件地址',
|
|
|
666 |
'to' => '给',
|
|
|
667 |
'rcpt_name' => '收信人名称',
|
|
|
668 |
'rcpt_email' => '收信人电子邮件地址',
|
|
|
669 |
'greetings' => '问候语',
|
|
|
670 |
'message' => '讯息内容',
|
|
|
671 |
);
|
|
|
672 |
|
|
|
673 |
// ------------------------------------------------------------------------- //
|
|
|
674 |
// File editpics.php
|
|
|
675 |
// ------------------------------------------------------------------------- //
|
|
|
676 |
|
|
|
677 |
if (defined('EDITPICS_PHP')) $lang_editpics_php = array(
|
|
|
678 |
'pic_info' => 'File info', //cpg1.3.0
|
|
|
679 |
'album' => '相簿',
|
|
|
680 |
'title' => '标题',
|
|
|
681 |
'desc' => '描述',
|
|
|
682 |
'keywords' => '关键字',
|
|
|
683 |
'pic_info_str' => '%s × %s - %s KB - %s 次观看 - %s 次评分',
|
|
|
684 |
'approve' => '核准图片', //cpg1.3.0
|
|
|
685 |
'postpone_app' => '延迟核准',
|
|
|
686 |
'del_pic' => '删除图片', //cpg1.3.0
|
|
|
687 |
'read_exif' => '再次读取EXIF 讯息', //cpg1.3.0
|
|
|
688 |
'reset_view_count' => '重设观看计数器',
|
|
|
689 |
'reset_votes' => '重设评分',
|
|
|
690 |
'del_comm' => '删除留言',
|
|
|
691 |
'upl_approval' => '核准上传',
|
|
|
692 |
'edit_pics' => '编辑图片', //cpg1.3.0
|
|
|
693 |
'see_next' => '观看下一张图片', //cpg1.3.0
|
|
|
694 |
'see_prev' => '观看前一张图片', //cpg1.3.0
|
|
|
695 |
'n_pic' => '%s 张图片', //cpg1.3.0
|
|
|
696 |
'n_of_pic_to_disp' => '图片显示数量', //cpg1.3.0
|
|
|
697 |
'apply' => '修改', //cpg1.3.0
|
|
|
698 |
'crop_title' => 'Coppermine 图片编辑器', //cpg1.3.0
|
|
|
699 |
'preview' => '预览', //cpg1.3.0
|
|
|
700 |
'save' => '存档', //cpg1.3.0
|
|
|
701 |
'save_thumb' =>'存成缩图', //cpg1.3.0
|
|
|
702 |
'sel_on_img' =>'动作已经完成!', //js-alert //cpg1.3.0
|
|
|
703 |
);
|
|
|
704 |
|
|
|
705 |
// ------------------------------------------------------------------------- //
|
|
|
706 |
// File faq.php //cpg1.3.0
|
|
|
707 |
// ------------------------------------------------------------------------- //
|
|
|
708 |
|
|
|
709 |
if (defined('FAQ_PHP')) $lang_faq_php = array(
|
|
|
710 |
'faq' => '常见问题解答', //cpg1.3.0
|
|
|
711 |
'toc' => '目录', //cpg1.3.0
|
|
|
712 |
'question' => '问题: ', //cpg1.3.0
|
|
|
713 |
'answer' => '解答: ', //cpg1.3.0
|
|
|
714 |
);
|
|
|
715 |
|
|
|
716 |
if (defined('FAQ_PHP')) $lang_faq_data = array(
|
|
|
717 |
'一般性问题与解答', //cpg1.3.0
|
|
|
718 |
array('为什么要注册?', '管理员决定使用者是否需要注册. 注册成为会员可获得额外的功能,如 上传文档,有 我的最爱列表, 对影像评分及发表留言 等等.', 'allow_user_registration', '0'), //cpg1.3.0
|
|
|
719 |
array('如何注册?', '到 "注册" 去填写栏位内的资料 (部分栏位是选填的).<br />如果管理员开启Email 启用功能 ,在你确认送出注册资料后 你会收到一封认证信 寄到你所填写的信箱内, 里面会说明如何启用你的会员资格. 会员登入前 必须先完成启用动作.', 'allow_user_registration', '1'), //cpg1.3.0
|
|
|
720 |
array('如何登入?', '到 "登入", 填入你的会员名称及密码 且勾选 "记住我" 下次你再来的时候就会自动登入了.<br /><b>注意:如果你点选 "记住我 Me" ,Cookies 功能必须开启,且本站的cookie存在你的电脑中..</b>', 'offline', 0), //cpg1.3.0
|
|
|
721 |
array('为何无法登入?', '你已经注册並启用帐号了吗(回复认证邮件的连结)?. 那个连结将会启用你的帐号. 其他登入问题 请联络网站管理员.', 'offline', 0), //cpg1.3.0
|
|
|
722 |
array('忘记密码了怎么办 ?', '如果这个网站有 "忘记密码了" 的连结,就按它. 不然就联络网站管理员 请他给你一个新的密码.', 'offline', 0), //cpg1.3.0
|
|
|
723 |
array('我的email变更了怎么办 ?', '只要登入 並且到 "我的个人资料" 变更你的电子邮件地址就可以了', 'offline', 0), //cpg1.3.0
|
|
|
724 |
array('如何把图片存到 "我的最爱 "?', '点选图片并且点按 "影像资讯" 连结 (<img src="images/info.gif" width="16" height="16" border="0" alt="Picture information" />); 在影像资讯设定里面按 "加入我的最爱".<br />管理员可能有预设"影像资讯; .<br />注意:Cookies 功能必须开启,且本站的cookie存在你的电脑中.', 'offline', 0), //cpg1.3.0
|
|
|
725 |
array('如何对图片评分 ?', '点按该影像缩图,在影像底下可以点选你的评分.', 'offline', 0), //cpg1.3.0
|
|
|
726 |
array('如何发表留言 ?', '点按该影像缩图,在影像底下可以发表留言.', 'offline', 0), //cpg1.3.0
|
|
|
727 |
array('如何上传图片 ?', '到 "上传图片"并选择你要上传到哪一个相簿,按 "浏览" 且点选要上传的图片 按 "开启" (你可以加入影像标题及描述) 然后按 "确认"', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
728 |
array('要从哪里上传图片 ?', '你可以上传图片在 "我的相簿". 管理员可能允许你上传图片到主相簿内.', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
729 |
array('哪种格式或大小的影像可以上传?', '格式跟大小 (jpg,gif,..etc.) 根据管理员的设定.', 'offline', 0), //cpg1.3.0
|
|
|
730 |
array('什么是 "我的相簿"?', '"我的相簿" 是个人的相簿,让会员可以上传及管里影像.', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
731 |
array('如何新增,修改 或删除相簿 从 "我的相簿"?', '你必须在 "管理模式"<br />到 "新增/排序 我的相簿"按 "新增New". 变更 "新相簿" 到你要的名称.<br />你可以对你的每一个相簿重新命名.<br />按 "修改;.', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
732 |
array('我要如何禁止其他会员看我的相簿?', '你必须在 "管理模式"<br />到 "变更我的相簿. 在 "更新相簿" 栏位, 选择你要变更的相簿.<br />在这里, 你可以变更相簿名称 描述 缩图 ,及限制观看 留言 评分 的权限.<br />按 "更新相簿".', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
733 |
array('如何观看其他会员的相簿?', '到 "相簿目录" 选择 "会员相簿".', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
734 |
array('什么是 cookies?', 'Cookies 是网站放在你电脑中的文字资料.<br />Cookies 通常让使用者再次回到网站时自动登入 並记录其他设定资料.', 'offline', 0), //cpg1.3.0
|
|
|
735 |
array('在哪里可以取得这个相簿程序?', 'Coppermine 是基于GNU GPL的免费多媒体相簿. 它是全功能的 且支援不同的平台. 请到<a href="http://coppermine.sf.net/">Coppermine 的网站</a> 取得更多的资讯 或是下载它.', 'offline', 0), //cpg1.3.0
|
|
|
736 |
|
|
|
737 |
'网站导引', //cpg1.3.0
|
|
|
738 |
array('什么是 "相簿目录 "?', '这将显示整个相簿 包含每一个分类. 缩图可以连结到类别中.', 'offline', 0), //cpg1.3.0
|
|
|
739 |
array('什么是 "我的相簿 "?', '这项功能让会员建立自己的相簿,可增加,删除,修改相簿. 並且可上传文档到相簿里.', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
740 |
array('有什么差异在 "管理模式" 和 "会员模式"?', '这项功能, 在管理模式时, 允许会员修改他们自己的相簿 (如果管理员允许的话).', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
741 |
array('什么是 "上传图片 "?', '这项功能允许会员上传影像(文档大小及格式依管理员设定) 到指定的相簿.', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
742 |
array('什么是 "最新上传 "?', '这项功能显示最新上传到相簿的文档.', 'offline', 0), //cpg1.3.0
|
|
|
743 |
array('什么是 "最新留言 "?', '这项功能会员对影像发表的最新留言.', 'offline', 0), //cpg1.3.0
|
|
|
744 |
array('什么是 "热门图片 "?', '这项功能显示被观看最多次的影像,不论是会员或访客.', 'offline', 0), //cpg1.3.0
|
|
|
745 |
array('什么是 "最高评分 "?', '这项功能显示会员评分最高的影像, 显示平均分数(例如: 五个会员各给一个评分 <img src="images/rating3.gif" width="65" height="14" border="0" alt="" />: 影像将有平均评分 <img src="images/rating3.gif" width="65" height="14" border="0" alt="" /> ;五个会员评分从 1 到 5 (1,2,3,4,5) 平均结果将是 <img src="images/rating3.gif" width="65" height="14" border="0" alt="" /> .)<br />评分从 <img src="images/rating5.gif" width="65" height="14" border="0" alt="best" /> (最佳) 到 <img src="images/rating0.gif" width="65" height="14" border="0" alt="worst" /> (最差).', 'offline', 0), //cpg1.3.0
|
|
|
746 |
array('什么是 "我的最爱 "?', '这项功能让会员储存喜爱的影像,需要有cookie资讯.', 'offline', 0), //cpg1.3.0
|
|
|
747 |
);
|
|
|
748 |
|
|
|
749 |
|
|
|
750 |
// ------------------------------------------------------------------------- //
|
|
|
751 |
// File forgot_passwd.php //cpg1.3.0
|
|
|
752 |
// ------------------------------------------------------------------------- //
|
|
|
753 |
|
|
|
754 |
if (defined('FORGOT_PASSWD_PHP')) $lang_forgot_passwd_php = array(
|
|
|
755 |
'forgot_passwd' => '忘记密码了', //cpg1.3.0
|
|
|
756 |
'err_already_logged_in' => '你已经登入了!', //cpg1.3.0
|
|
|
757 |
'enter_username_email' => '输入你的会员名称或 email ', //cpg1.3.0
|
|
|
758 |
'submit' => '确认', //cpg1.3.0
|
|
|
759 |
'failed_sending_email' => '无法寄出密码提醒邮件 !', //cpg1.3.0
|
|
|
760 |
'email_sent' => '已经将你的会员名称与密码寄到 %s', //cpg1.3.0
|
|
|
761 |
'err_unk_user' => '没有这个会员!', //cpg1.3.0
|
|
|
762 |
'passwd_reminder_subject' => '%s - 密码提醒', //cpg1.3.0
|
|
|
763 |
'passwd_reminder_body' => '您的登入资料如下:
|
|
|
764 |
Username: %s
|
|
|
765 |
Password: %s
|
|
|
766 |
按 %s 登入.', //cpg1.3.0
|
|
|
767 |
);
|
|
|
768 |
|
|
|
769 |
// ------------------------------------------------------------------------- //
|
|
|
770 |
// File groupmgr.php
|
|
|
771 |
// ------------------------------------------------------------------------- //
|
|
|
772 |
|
|
|
773 |
if (defined('GROUPMGR_PHP')) $lang_groupmgr_php = array(
|
|
|
774 |
'group_name' => '群组名称',
|
|
|
775 |
'disk_quota' => '空间配额',
|
|
|
776 |
'can_rate' => '容许为图片评分', //cpg1.3.0
|
|
|
777 |
'can_send_ecards' => '容许寄出卡片',
|
|
|
778 |
'can_post_com' => '容许贴出留言',
|
|
|
779 |
'can_upload' => '容许上传文档', //cpg1.3.0
|
|
|
780 |
'can_have_gallery' => '容许有个人相簿',
|
|
|
781 |
'apply' => '修改',
|
|
|
782 |
'create_new_group' => '建立新群组',
|
|
|
783 |
'del_groups' => '删除所选择的群组',
|
|
|
784 |
'confirm_del' => '警告, 当删除了一个群组, 属于该群组的用户将被转移至 \'Registered\' 群组中 !\n\nn确定要删除 ?', //js-alert //cpg1.3.0
|
|
|
785 |
'title' => '管理会员群组',
|
|
|
786 |
'approval_1' => '公开相簿上传核准 (1)',
|
|
|
787 |
'approval_2' => '私人相簿上传核准 (2)',
|
|
|
788 |
'upload_form_config' => '上传格式设定', //cpg1.3.0
|
|
|
789 |
'upload_form_config_values' => array( '上传一个文档', '多档上传', '只上传URI ', '只上传ZIP ', 'File-URI', 'File-ZIP', 'URI-ZIP', 'File-URI-ZIP'), //cpg1.3.0
|
|
|
790 |
'custom_user_upload'=>'会员可用的上传框数量?', //cpg1.3.0
|
|
|
791 |
'num_file_upload'=>'最大/实际 文档 上传框数量', //cpg1.3.0
|
|
|
792 |
'num_URI_upload'=>'最大/实际 URI 上传框数量', //cpg1.3.0
|
|
|
793 |
'note1' => '<b>(1)</b> 上传图片至公开相簿需管理员核准',
|
|
|
794 |
'note2' => '<b>(2)</b> 上传图片至私人相簿需管理员核准',
|
|
|
795 |
'notes' => '注意',
|
|
|
796 |
);
|
|
|
797 |
|
|
|
798 |
// ------------------------------------------------------------------------- //
|
|
|
799 |
// File index.php
|
|
|
800 |
// ------------------------------------------------------------------------- //
|
|
|
801 |
|
|
|
802 |
if (defined('INDEX_PHP')){
|
|
|
803 |
|
|
|
804 |
$lang_index_php = array(
|
|
|
805 |
'welcome' => '欢 迎 !',
|
|
|
806 |
);
|
|
|
807 |
|
|
|
808 |
$lang_album_admin_menu = array(
|
|
|
809 |
'confirm_delete' => '确定要删除这相簿 ? \\n所有图片及留言都会删除.', //js-alert //cpg1.3.0
|
|
|
810 |
'delete' => '删除',
|
|
|
811 |
'modify' => '属性',
|
|
|
812 |
'edit_pics' => '编辑', //cpg1.3.0
|
|
|
813 |
);
|
|
|
814 |
|
|
|
815 |
$lang_list_categories = array(
|
|
|
816 |
'home' => '相簿首页',
|
|
|
817 |
'stat1' => '<b>[pictures]</b> 张影像于 <b>[albums]</b> 个相簿及 <b>[cat]</b> 个类别, 有 <b>[comments]</b> 个留言, 被观看 <b>[views]</b> 次', //cpg1.3.0
|
|
|
818 |
'stat2' => '<b>[pictures]</b> 张影像于 <b>[albums]</b> 个相簿, 被观看 <b>[views]</b> 次', //cpg1.3.0
|
|
|
819 |
'xx_s_gallery' => '%s\'s 相簿',
|
|
|
820 |
'stat3' => '<b>[pictures]</b> 张影像于 <b>[albums]</b> 个相簿, 有 <b>[comments]</b> 个留言, 被观看 <b>[views]</b> 次', //cpg1.3.0
|
|
|
821 |
);
|
|
|
822 |
|
|
|
823 |
$lang_list_users = array(
|
|
|
824 |
'user_list' => '会员列表',
|
|
|
825 |
'no_user_gal' => '还没有会员相簿',
|
|
|
826 |
'n_albums' => '%s 个相簿',
|
|
|
827 |
'n_pics' => '%s 张影像', //cpg1.3.0
|
|
|
828 |
);
|
|
|
829 |
|
|
|
830 |
$lang_list_albums = array(
|
|
|
831 |
'n_pictures' => '%s 张影像', //cpg1.3.0
|
|
|
832 |
'last_added' => ', 最新影像于 %s',
|
|
|
833 |
);
|
|
|
834 |
|
|
|
835 |
}
|
|
|
836 |
|
|
|
837 |
// ------------------------------------------------------------------------- //
|
|
|
838 |
// File login.php
|
|
|
839 |
// ------------------------------------------------------------------------- //
|
|
|
840 |
|
|
|
841 |
if (defined('LOGIN_PHP')) $lang_login_php = array(
|
|
|
842 |
'login' => '登入',
|
|
|
843 |
'enter_login_pswd' => '输入会员名称和密码',
|
|
|
844 |
'username' => '会员名称',
|
|
|
845 |
'password' => '密码',
|
|
|
846 |
'remember_me' => '记住我',
|
|
|
847 |
'welcome' => '欢迎 %s ...',
|
|
|
848 |
'err_login' => '*** 无法登入. 请重试 ***',
|
|
|
849 |
'err_already_logged_in' => '您已经登入 !',
|
|
|
850 |
'forgot_password_link' => '忘记密码了', //cpg1.3.0
|
|
|
851 |
);
|
|
|
852 |
|
|
|
853 |
// ------------------------------------------------------------------------- //
|
|
|
854 |
// File logout.php
|
|
|
855 |
// ------------------------------------------------------------------------- //
|
|
|
856 |
|
|
|
857 |
if (defined('LOGOUT_PHP')) $lang_logout_php = array(
|
|
|
858 |
'logout' => '登出',
|
|
|
859 |
'bye' => '再见 %s ...',
|
|
|
860 |
'err_not_loged_in' => '您还没有登入 !',
|
|
|
861 |
);
|
|
|
862 |
|
|
|
863 |
// ------------------------------------------------------------------------- //
|
|
|
864 |
// File phpinfo.php //cpg1.3.0
|
|
|
865 |
// ------------------------------------------------------------------------- //
|
|
|
866 |
|
|
|
867 |
if (defined('PHPINFO_PHP')) $lang_phpinfo_php = array(
|
|
|
868 |
'php_info' => 'PHP 资讯', //cpg1.3.0
|
|
|
869 |
'explanation' => '这是由PHP-function 产生 <a href="http://www.php.net/phpinfo">phpinfo()</a>, Copermine 截取部分内容显示.', //cpg1.3.0
|
|
|
870 |
'no_link' => '其他人看到你的 phpinfo 会有安全上的风险, 这就是为何 当你以管理员身分登入时才会看到此页的原因. 你不能将本页的连结给其他人, 因为它们将会遇到存取错误.', //cpg1.3.0
|
|
|
871 |
);
|
|
|
872 |
|
|
|
873 |
// ------------------------------------------------------------------------- //
|
|
|
874 |
// File modifyalb.php
|
|
|
875 |
// ------------------------------------------------------------------------- //
|
|
|
876 |
|
|
|
877 |
if (defined('MODIFYALB_PHP')) $lang_modifyalb_php = array(
|
|
|
878 |
'upd_alb_n' => '更新相簿 %s',
|
|
|
879 |
'general_settings' => '一般设定',
|
|
|
880 |
'alb_title' => '相簿标题',
|
|
|
881 |
'alb_cat' => '相簿类别',
|
|
|
882 |
'alb_desc' => '相簿描述',
|
|
|
883 |
'alb_thumb' => '相簿缩图',
|
|
|
884 |
'alb_perm' => '相簿权限',
|
|
|
885 |
'can_view' => '相簿可观看',
|
|
|
886 |
'can_upload' => '访客可上传图片',
|
|
|
887 |
'can_post_comments' => '访客可发表留言',
|
|
|
888 |
'can_rate' => '访客可为图片评分',
|
|
|
889 |
'user_gal' => '会员相簿',
|
|
|
890 |
'no_cat' => '* 没有类别 *',
|
|
|
891 |
'alb_empty' => '相簿是空的',
|
|
|
892 |
'last_uploaded' => '最近上传',
|
|
|
893 |
'public_alb' => '任何人 (公开相簿)',
|
|
|
894 |
'me_only' => '只有我',
|
|
|
895 |
'owner_only' => '只有相簿拥有人 (%s) ',
|
|
|
896 |
'groupp_only' => '群组 \'%s\' 会员',
|
|
|
897 |
'err_no_alb_to_modify' => '资料库内没有您可修改的相簿.',
|
|
|
898 |
'update' => '更新相簿', //cpg1.3.0
|
|
|
899 |
'notice1' => '(*) 根据 %s群组%s 设定', //cpg1.3.0 (do not translate %s!)
|
|
|
900 |
);
|
|
|
901 |
|
|
|
902 |
// ------------------------------------------------------------------------- //
|
|
|
903 |
// File ratepic.php
|
|
|
904 |
// ------------------------------------------------------------------------- //
|
|
|
905 |
|
|
|
906 |
if (defined('RATEPIC_PHP')) $lang_rate_pic_php = array(
|
|
|
907 |
'already_rated' => '抱歉, 您已经为此图片评分', //cpg1.3.0
|
|
|
908 |
'rate_ok' => '您的评分已经被接受',
|
|
|
909 |
'forbidden' => '你不能对你自己的图片评分.', //cpg1.3.0
|
|
|
910 |
);
|
|
|
911 |
|
|
|
912 |
// ------------------------------------------------------------------------- //
|
|
|
913 |
// File register.php & profile.php
|
|
|
914 |
// ------------------------------------------------------------------------- //
|
|
|
915 |
|
|
|
916 |
if (defined('REGISTER_PHP') || defined('PROFILE_PHP')) {
|
|
|
917 |
|
|
|
918 |
$lang_register_disclamer = <<<EOT
|
|
|
919 |
{SITE_NAME} 的管理员会尽快整理会引起反感的资料, 但我们不可能审查每一份文件. 因此您必需同意所有文件只是代表作者的立场及意见, 不代表管理人员的立场 (除了由他们贴出) 並不负任何法律责任.<br />
|
|
|
920 |
<br />
|
|
|
921 |
您必需同意不可张贴任何色情, 暴力, 不良, 不正当, 不健康, 妨害国家安全, 或任何可能违法的文件. {SITE_NAME} 人员在任何时候都有权过滤並编辑您张贴的内容. 並且会员留在本站内的资料已存在资料库中. 末经您的同意, 我们不会将您的资料转给其他人使用, 不过我们不会为任何因骇客行为而外洩的资料负任何责任.<br />
|
|
|
922 |
<br />
|
|
|
923 |
本站使用 cookies 在您的电脑上来储存资讯. 这样是方便您更愉快浏览. 您的电子邮件地址只是让我们认证您的资料而已.<br />
|
|
|
924 |
<br />
|
|
|
925 |
按下 '我同意' 代表您同意以上条款.
|
|
|
926 |
EOT;
|
|
|
927 |
|
|
|
928 |
$lang_register_php = array(
|
|
|
929 |
'page_title' => '会员注册',
|
|
|
930 |
'term_cond' => '条款与规则',
|
|
|
931 |
'i_agree' => '我同意',
|
|
|
932 |
'submit' => '确认注册',
|
|
|
933 |
'err_user_exists' => '您所填写的会员名称已被人使用, 请重选一个',
|
|
|
934 |
'err_password_mismatch' => '两个密码不合, 请重填一次',
|
|
|
935 |
'err_uname_short' => '会员名称至少需 2 个字节',
|
|
|
936 |
'err_password_short' => '密码至少需 2 个字节',
|
|
|
937 |
'err_uname_pass_diff' => '会员名称和密码不可以相同',
|
|
|
938 |
'err_invalid_email' => '电子邮件地址不正确',
|
|
|
939 |
'err_duplicate_email' => '这个电子邮件地址已经被其他人使用过了',
|
|
|
940 |
'enter_info' => '输入注册资料',
|
|
|
941 |
'required_info' => '必填的资料',
|
|
|
942 |
'optional_info' => '选填的资料',
|
|
|
943 |
'username' => '会员名称',
|
|
|
944 |
'password' => '密码',
|
|
|
945 |
'password_again' => '确认密码',
|
|
|
946 |
'email' => '电子邮件地址',
|
|
|
947 |
'location' => '所在地区',
|
|
|
948 |
'interests' => '兴趣',
|
|
|
949 |
'website' => '个人网站',
|
|
|
950 |
'occupation' => '职业',
|
|
|
951 |
'error' => '错娱',
|
|
|
952 |
'confirm_email_subject' => '%s - 注册认证',
|
|
|
953 |
'information' => '讯息',
|
|
|
954 |
'failed_sending_email' => '所注册的电子邮件地址无法寄出 !',
|
|
|
955 |
'thank_you' => '感谢您的注册.<br /><br />一封内含有如何启用帐号的资讯电子邮件将被送到您所提供的信箱.',
|
|
|
956 |
'acct_created' => '您的帐号已经建立, 现在您可以登入',
|
|
|
957 |
'acct_active' => '您的帐号已经启用, 现在您可以登入',
|
|
|
958 |
'acct_already_act' => '您的帐号已经启用 !',
|
|
|
959 |
'acct_act_failed' => '此帐号无法启用 !',
|
|
|
960 |
'err_unk_user' => '所选择的会员并不存在 !',
|
|
|
961 |
'x_s_profile' => '%s\'的个人资料',
|
|
|
962 |
'group' => '群组',
|
|
|
963 |
'reg_date' => '加入',
|
|
|
964 |
'disk_usage' => '空间使用量',
|
|
|
965 |
'change_pass' => '修改密码',
|
|
|
966 |
'current_pass' => '现行密码',
|
|
|
967 |
'new_pass' => '新密码',
|
|
|
968 |
'new_pass_again' => '确认新密码',
|
|
|
969 |
'err_curr_pass' => '现行密码不正确',
|
|
|
970 |
'apply_modif' => '修改',
|
|
|
971 |
'change_pass' => '修改密码',
|
|
|
972 |
'update_success' => '你的个人资料已经更新',
|
|
|
973 |
'pass_chg_success' => '你的密码已经修改',
|
|
|
974 |
'pass_chg_error' => '你的密码没有修改',
|
|
|
975 |
'notify_admin_email_subject' => '%s - 注册通知', //cpg1.3.0
|
|
|
976 |
'notify_admin_email_body' => '有一个新会员名称 "%s" 已经在你的相簿注册', //cpg1.3.0
|
|
|
977 |
);
|
|
|
978 |
|
|
|
979 |
$lang_register_confirm_email = <<<EOT
|
|
|
980 |
感谢您在 {SITE_NAME} 的注册
|
|
|
981 |
|
|
|
982 |
您的会员名称 : "{USER_NAME}"
|
|
|
983 |
您的密码 : "{PASSWORD}"
|
|
|
984 |
|
|
|
985 |
请您按下面的连结以启动您的帐号
|
|
|
986 |
或者把此连结贴上浏览器上.
|
|
|
987 |
|
|
|
988 |
{ACT_LINK}
|
|
|
989 |
|
|
|
990 |
欢迎你(妳),
|
|
|
991 |
|
|
|
992 |
{SITE_NAME} 敬上
|
|
|
993 |
|
|
|
994 |
EOT;
|
|
|
995 |
|
|
|
996 |
}
|
|
|
997 |
|
|
|
998 |
// ------------------------------------------------------------------------- //
|
|
|
999 |
// File reviewcom.php
|
|
|
1000 |
// ------------------------------------------------------------------------- //
|
|
|
1001 |
|
|
|
1002 |
if (defined('REVIEWCOM_PHP')) $lang_reviewcom_php = array(
|
|
|
1003 |
'title' => '观看留言',
|
|
|
1004 |
'no_comment' => '还没有留言可以观看',
|
|
|
1005 |
'n_comm_del' => '%s 个留言已删除',
|
|
|
1006 |
'n_comm_disp' => '显示的留言数量',
|
|
|
1007 |
'see_prev' => '看前一个',
|
|
|
1008 |
'see_next' => '看下一个',
|
|
|
1009 |
'del_comm' => '删除所选的留言',
|
|
|
1010 |
);
|
|
|
1011 |
|
|
|
1012 |
|
|
|
1013 |
// ------------------------------------------------------------------------- //
|
|
|
1014 |
// File search.php - OK
|
|
|
1015 |
// ------------------------------------------------------------------------- //
|
|
|
1016 |
|
|
|
1017 |
if (defined('SEARCH_PHP')) $lang_search_php = array(
|
|
|
1018 |
|
|
|
1019 |
);
|
|
|
1020 |
|
|
|
1021 |
// ------------------------------------------------------------------------- //
|
|
|
1022 |
// File searchnew.php
|
|
|
1023 |
// ------------------------------------------------------------------------- //
|
|
|
1024 |
|
|
|
1025 |
if (defined('SEARCHNEW_PHP')) $lang_search_new_php = array(
|
|
|
1026 |
'page_title' => '搜寻新图片', //cpg1.3.0
|
|
|
1027 |
'select_dir' => '选择目录',
|
|
|
1028 |
'select_dir_msg' => '本功能可以让你用 FTP 上传整批图片.<br /><br />请选择你已上传图片的目录', //cpg1.3.0
|
|
|
1029 |
'no_pic_to_add' => '没有图片可以加入', //cpg1.3.0
|
|
|
1030 |
'need_one_album' => '使用此功能必需少要有一个相簿',
|
|
|
1031 |
'warning' => '警告',
|
|
|
1032 |
'change_perm' => '程序无法写入这个目录, 请修改权限至 755 或r 777 后再试一次 !', //cpg1.3.0
|
|
|
1033 |
'target_album' => '<b>把图片由 "</b>%s<b>" 到 </b>%s', //cpg1.3.0
|
|
|
1034 |
'folder' => '资料夹',
|
|
|
1035 |
'image' => '图片',
|
|
|
1036 |
'album' => '相簿',
|
|
|
1037 |
'result' => '结果',
|
|
|
1038 |
'dir_ro' => '无法写入. ',
|
|
|
1039 |
'dir_cant_read' => '无法读取. ',
|
|
|
1040 |
'insert' => '新增图片至相簿', //cpg1.3.0
|
|
|
1041 |
'list_new_pic' => '列出新图片', //cpg1.3.0
|
|
|
1042 |
'insert_selected' => '加入所选择的图片', //cpg1.3.0
|
|
|
1043 |
'no_pic_found' => '没有找到新图片', //cpg1.3.0
|
|
|
1044 |
'be_patient' => '请耐心等候, 程序需要一点时间来加入所选图片', //cpg1.3.0
|
|
|
1045 |
'no_album' => '没有相簿被选择', //cpg1.3.0
|
|
|
1046 |
'notes' => '<ul>'.
|
|
|
1047 |
'<li><b>OK</b> : 表示图片已成功被加入'.
|
|
|
1048 |
'<li><b>DP</b> : 表示图片重复或已存在资料库'.
|
|
|
1049 |
'<li><b>PB</b> : 表示图片无法加入, 请检查设定或图片存放目录的权限'.
|
|
|
1050 |
'<li><b>NA</b> : 表示你还没有选择图片的相簿, 按 \'<a href="javascript:history.back(1)">返回</a>\' 并选择相簿. 如果你没有相簿 <a href="albmgr.php">请先建立一个</a></li>'.
|
|
|
1051 |
'<li>如果 OK, DP, PB \'符号\' 没有显示请按坏掉的图片查看 PHP 显示的错误讯息'.
|
|
|
1052 |
'<li>如果浏览器逾时, 请按重新整理'.
|
|
|
1053 |
'</ul>', //cpg1.3.0
|
|
|
1054 |
'select_album' => '选择相簿', //cpg1.3.0
|
|
|
1055 |
'check_all' => '全选', //cpg1.3.0
|
|
|
1056 |
'uncheck_all' => '都不选', //cpg1.3.0
|
|
|
1057 |
);
|
|
|
1058 |
|
|
|
1059 |
|
|
|
1060 |
// ------------------------------------------------------------------------- //
|
|
|
1061 |
// File thumbnails.php
|
|
|
1062 |
// ------------------------------------------------------------------------- //
|
|
|
1063 |
|
|
|
1064 |
// Void
|
|
|
1065 |
|
|
|
1066 |
// ------------------------------------------------------------------------- //
|
|
|
1067 |
// File banning.php
|
|
|
1068 |
// ------------------------------------------------------------------------- //
|
|
|
1069 |
|
|
|
1070 |
if (defined('BANNING_PHP')) $lang_banning_php = array(
|
|
|
1071 |
'title' => '停权会员',
|
|
|
1072 |
'user_name' => '会员名称',
|
|
|
1073 |
'ip_address' => 'IP位址',
|
|
|
1074 |
'expiry' => '期限(空白代表永久停权)',
|
|
|
1075 |
'edit_ban' => '储存修改',
|
|
|
1076 |
'delete_ban' => '删除',
|
|
|
1077 |
'add_new' => '新增停权会员',
|
|
|
1078 |
'add_ban' => '新增',
|
|
|
1079 |
'error_user' => '找不到该使用者名称!你没打错吧.. ', //cpg1.3.0
|
|
|
1080 |
'error_specify' => '你需要具体指明使用者名称或IP位址', //cpg1.3.0
|
|
|
1081 |
'error_ban_id' => '无效的 ID!', //cpg1.3.0
|
|
|
1082 |
'error_admin_ban' => '别闹了 你无法将自己停权!', //cpg1.3.0
|
|
|
1083 |
'error_server_ban' => '你要将自己的服务器停权? 哎..不要再开玩笑了...', //cpg1.3.0
|
|
|
1084 |
'error_ip_forbidden' => '你无法禁止这个 IP - 它是 non-routable!', //cpg1.3.0
|
|
|
1085 |
'lookup_ip' => '查看IP 位址', //cpg1.3.0
|
|
|
1086 |
'submit' => '执行!', //cpg1.3.0
|
|
|
1087 |
);
|
|
|
1088 |
|
|
|
1089 |
// ------------------------------------------------------------------------- //
|
|
|
1090 |
// File upload.php
|
|
|
1091 |
// ------------------------------------------------------------------------- //
|
|
|
1092 |
|
|
|
1093 |
if (defined('UPLOAD_PHP')) $lang_upload_php = array(
|
|
|
1094 |
'title' => '上传文档', //cpg1.3.0
|
|
|
1095 |
'custom_title' => '上传选项表', //cpg1.3.0
|
|
|
1096 |
'cust_instr_1' => '你可以从下列 选择一个上传框 进行上传.', //cpg1.3.0
|
|
|
1097 |
'cust_instr_2' => '选择上传框号', //cpg1.3.0
|
|
|
1098 |
'cust_instr_3' => '文档上传框: %s', //cpg1.3.0
|
|
|
1099 |
'cust_instr_4' => 'URI/URL 上传框: %s', //cpg1.3.0
|
|
|
1100 |
'cust_instr_5' => 'URI/URL 上传框:', //cpg1.3.0
|
|
|
1101 |
'cust_instr_6' => '文档上传框:', //cpg1.3.0
|
|
|
1102 |
'cust_instr_7' => '请输入您目前需要的 每一种上传框的数量. 然后按 \'继续\'. ', //cpg1.3.0
|
|
|
1103 |
'reg_instr_1' => '无效的选项表动作.', //cpg1.3.0
|
|
|
1104 |
'reg_instr_2' => '现在 你可以用以下的上传框 上传你的文档. 每一个上传文档的大小不可以超过 %s KB . ZIP 文档上传在 \'文档上传\' and \'URI/URL 上传\' 区 .', //cpg1.3.0
|
|
|
1105 |
'reg_instr_3' => '如果你要上传压缩文件或要解压缩, 必须使用文档上传框 \'解压缩ZIP 上传\' 区.', //cpg1.3.0
|
|
|
1106 |
'reg_instr_4' => '如果选择以 URI/URL 上传, 请输入文档连结路径 如: http://www.mysite.com/images/example.jpg', //cpg1.3.0
|
|
|
1107 |
'reg_instr_5' => '完成选项表后,请按 \'继续\'.', //cpg1.3.0
|
|
|
1108 |
'reg_instr_6' => '解压缩ZIP 上传:', //cpg1.3.0
|
|
|
1109 |
'reg_instr_7' => '文档 上传:', //cpg1.3.0
|
|
|
1110 |
'reg_instr_8' => 'URI/URL 上传:', //cpg1.3.0
|
|
|
1111 |
'error_report' => '错误报告', //cpg1.3.0
|
|
|
1112 |
'error_instr' => '下列上传遇到错误:', //cpg1.3.0
|
|
|
1113 |
'file_name_url' => '文档 名称/URL', //cpg1.3.0
|
|
|
1114 |
'error_message' => '错误讯息', //cpg1.3.0
|
|
|
1115 |
'no_post' => '文档没有被上传.', //cpg1.3.0
|
|
|
1116 |
'forb_ext' => '不允许的扩展名.', //cpg1.3.0
|
|
|
1117 |
'exc_php_ini' => '文档超过php.ini允许的大小.', //cpg1.3.0
|
|
|
1118 |
'exc_file_size' => '文档超过CPG允许的大小.', //cpg1.3.0
|
|
|
1119 |
'partial_upload' => '只有部分上传.', //cpg1.3.0
|
|
|
1120 |
'no_upload' => '没有上传.', //cpg1.3.0
|
|
|
1121 |
'unknown_code' => '未知的 PHP 上传错误码.', //cpg1.3.0
|
|
|
1122 |
'no_temp_name' => '没有上传 - 无暂存档名.', //cpg1.3.0
|
|
|
1123 |
'no_file_size' => '没有内容', //cpg1.3.0
|
|
|
1124 |
'impossible' => '无法传档.', //cpg1.3.0
|
|
|
1125 |
'not_image' => '这不是标准影像文件', //cpg1.3.0
|
|
|
1126 |
'not_GD' => '这不是 GD 扩展名.', //cpg1.3.0
|
|
|
1127 |
'pixel_allowance' => '影像尺寸太大了.', //cpg1.3.0
|
|
|
1128 |
'incorrect_prefix' => '不正确的 URI/URL 前缀', //cpg1.3.0
|
|
|
1129 |
'could_not_open_URI' => '无法开启URI.', //cpg1.3.0
|
|
|
1130 |
'unsafe_URI' => '安全性未被认证.', //cpg1.3.0
|
|
|
1131 |
'meta_data_failure' => '转换资料失败', //cpg1.3.0
|
|
|
1132 |
'http_401' => '401 未被授权浏览', //cpg1.3.0
|
|
|
1133 |
'http_402' => '402 此处需付费浏览', //cpg1.3.0
|
|
|
1134 |
'http_403' => '403 目前此处关闭禁止浏览', //cpg1.3.0
|
|
|
1135 |
'http_404' => '404 服务器没有回应', //cpg1.3.0
|
|
|
1136 |
'http_500' => '500 内部服务器错误', //cpg1.3.0
|
|
|
1137 |
'http_503' => '503 服务器等待过久 停止服务', //cpg1.3.0
|
|
|
1138 |
'MIME_extraction_failure' => 'MIME 无法被测定.', //cpg1.3.0
|
|
|
1139 |
'MIME_type_unknown' => '未知的 MIME type', //cpg1.3.0
|
|
|
1140 |
'cant_create_write' => '无法新增写入文档.', //cpg1.3.0
|
|
|
1141 |
'not_writable' => '无法写入.', //cpg1.3.0
|
|
|
1142 |
'cant_read_URI' => '无法读取 URI/URL', //cpg1.3.0
|
|
|
1143 |
'cant_open_write_file' => '无法开启URI .', //cpg1.3.0
|
|
|
1144 |
'cant_write_write_file' => '无法写入URI .', //cpg1.3.0
|
|
|
1145 |
'cant_unzip' => '无法 unzip.', //cpg1.3.0
|
|
|
1146 |
'unknown' => '未知的错误', //cpg1.3.0
|
|
|
1147 |
'succ' => '成功上传', //cpg1.3.0
|
|
|
1148 |
'success' => '%s 上传已经成功.', //cpg1.3.0
|
|
|
1149 |
'add' => '请按 \'继续\' 增加文档到相簿.', //cpg1.3.0
|
|
|
1150 |
'failure' => '上传失败', //cpg1.3.0
|
|
|
1151 |
'f_info' => '文档资讯', //cpg1.3.0
|
|
|
1152 |
'no_place' => '先前的文档无法被配置.', //cpg1.3.0
|
|
|
1153 |
'yes_place' => '先前的文档已经配置成功.', //cpg1.3.0
|
|
|
1154 |
'max_fsize' => '最大允许文档大小是 %s KB',
|
|
|
1155 |
'album' => '相簿',
|
|
|
1156 |
'picture' => '图片', //cpg1.3.0
|
|
|
1157 |
'pic_title' => '图片标题', //cpg1.3.0
|
|
|
1158 |
'description' => '图片描述', //cpg1.3.0
|
|
|
1159 |
'keywords' => '关键字 (以空格区隔)',
|
|
|
1160 |
'err_no_alb_uploadables' => '目前尚未有相簿可以上传图片', //cpg1.3.0
|
|
|
1161 |
'place_instr_1' => '现在 请将图片放到相簿. 你现在可以输入这个文档的相关资讯.', //cpg1.3.0
|
|
|
1162 |
'place_instr_2' => '更多的图片需要配置. 请按 \'继续\'.', //cpg1.3.0
|
|
|
1163 |
'process_complete' => '恭喜 你已经将全部的成功文档上传了.', //cpg1.3.0
|
|
|
1164 |
);
|
|
|
1165 |
|
|
|
1166 |
// ------------------------------------------------------------------------- //
|
|
|
1167 |
// File usermgr.php
|
|
|
1168 |
// ------------------------------------------------------------------------- //
|
|
|
1169 |
|
|
|
1170 |
if (defined('USERMGR_PHP')) $lang_usermgr_php = array(
|
|
|
1171 |
'title' => '会员管理',
|
|
|
1172 |
'name_a' => '名称 由小至大',
|
|
|
1173 |
'name_d' => '名称 由大至小',
|
|
|
1174 |
'group_a' => '群组 由小至大',
|
|
|
1175 |
'group_d' => '群组 由大至小',
|
|
|
1176 |
'reg_a' => '注册日期 由远至近',
|
|
|
1177 |
'reg_d' => '注册日期 由近至远',
|
|
|
1178 |
'pic_a' => '图片数 由小至大',
|
|
|
1179 |
'pic_d' => '图片数 由大至小',
|
|
|
1180 |
'disku_a' => '已用配额 由小至大',
|
|
|
1181 |
'disku_d' => '已用配额 由大至小',
|
|
|
1182 |
'lv_a' => '最近来访 由近至远', //cpg1.3.0
|
|
|
1183 |
'lv_d' => '最近来访 由远至近', //cpg1.3.0
|
|
|
1184 |
'sort_by' => '会员排序依',
|
|
|
1185 |
'err_no_users' => '会员资料表是空的 !',
|
|
|
1186 |
'err_edit_self' => '您无法编辑您的个人资料, 请利用 \'我的个人资料\' 来编辑',
|
|
|
1187 |
'edit' => '编辑',
|
|
|
1188 |
'delete' => '删除',
|
|
|
1189 |
'name' => '会员名称',
|
|
|
1190 |
'group' => '群组',
|
|
|
1191 |
'inactive' => '未启动',
|
|
|
1192 |
'operations' => '操作',
|
|
|
1193 |
'pictures' => '图片', //cpg1.3.0
|
|
|
1194 |
'disk_space' => '磁碟 用量 / 限额',
|
|
|
1195 |
'registered_on' => '注册日',
|
|
|
1196 |
'last_visit' => '最近来访', //cpg1.3.0
|
|
|
1197 |
'u_user_on_p_pages' => '%d 个会员于 %d 页',
|
|
|
1198 |
'confirm_del' => '确定要删除这个会员吗? \\n所有他的相簿及图片都会被删除.', //js-alert //cpg1.3.0
|
|
|
1199 |
'mail' => '电子邮件',
|
|
|
1200 |
'err_unknown_user' => '所选择的会员并不存在 !',
|
|
|
1201 |
'modify_user' => '编辑会员',
|
|
|
1202 |
'notes' => '注意',
|
|
|
1203 |
'note_list' => '<li>如果不想改变现行密码, 请将 "密码" 位留下空白',
|
|
|
1204 |
'password' => '密码',
|
|
|
1205 |
'user_active' => '会员已启动',
|
|
|
1206 |
'user_group' => '会员群组',
|
|
|
1207 |
'user_email' => '会员电子邮件',
|
|
|
1208 |
'user_web_site' => '会员网址',
|
|
|
1209 |
'create_new_user' => '建立新会员',
|
|
|
1210 |
'user_location' => '会员地区',
|
|
|
1211 |
'user_interests' => '会员兴趣',
|
|
|
1212 |
'user_occupation' => '会员职业',
|
|
|
1213 |
'latest_upload' => '最新上传', //cpg1.3.0
|
|
|
1214 |
'never' => '从未有', //cpg1.3.0
|
|
|
1215 |
);
|
|
|
1216 |
|
|
|
1217 |
// ------------------------------------------------------------------------- //
|
|
|
1218 |
// File util.php
|
|
|
1219 |
// ------------------------------------------------------------------------- //
|
|
|
1220 |
|
|
|
1221 |
if (defined('UTIL_PHP')) $lang_util_php = array(
|
|
|
1222 |
'title' => '管理员工具 (调整图片大小)', //cpg1.3.0
|
|
|
1223 |
'what_it_does' => '功能',
|
|
|
1224 |
'what_update_titles' => '从文档名称更新图片标题',
|
|
|
1225 |
'what_delete_title' => '删除标题',
|
|
|
1226 |
'what_rebuild' => '重建缩图及调整图片大小',
|
|
|
1227 |
'what_delete_originals' => '重新调整后的图片将 取代原有的图片',
|
|
|
1228 |
'file' => '文档',
|
|
|
1229 |
'title_set_to' => '标题变更为',
|
|
|
1230 |
'submit_form' => '确认',
|
|
|
1231 |
'updated_succesfully' => '更新 已经成功',
|
|
|
1232 |
'error_create' => '产生错误',
|
|
|
1233 |
'continue' => '继续执行其他的影像',
|
|
|
1234 |
'main_success' => '文档 %s 已设为主图', //cpg1.3.0
|
|
|
1235 |
'error_rename' => '错误 %s 改名为 %s',
|
|
|
1236 |
'error_not_found' => '找不到文档 %s ',
|
|
|
1237 |
'back' => '回主页',
|
|
|
1238 |
'thumbs_wait' => '更新缩图 且/或 调整影像尺寸, 请稍候...',
|
|
|
1239 |
'thumbs_continue_wait' => '继续 更新缩图 且/或 调整影像尺寸...',
|
|
|
1240 |
'titles_wait' => '更新标题, 请稍候...',
|
|
|
1241 |
'delete_wait' => '删除标题, 请稍候...',
|
|
|
1242 |
'replace_wait' => '重新调整后的图片将 取代原有的图片中, 请稍候...',
|
|
|
1243 |
'instruction' => '简易操作说明',
|
|
|
1244 |
'instruction_action' => '请选择操作',
|
|
|
1245 |
'instruction_parameter' => '设定参数',
|
|
|
1246 |
'instruction_album' => '选择相簿',
|
|
|
1247 |
'instruction_press' => '请按 %s',
|
|
|
1248 |
'update' => '更新缩图 且/或 调整图片大小',
|
|
|
1249 |
'update_what' => '要更新什么',
|
|
|
1250 |
'update_thumb' => '只有缩图',
|
|
|
1251 |
'update_pic' => '只调整图片大小',
|
|
|
1252 |
'update_both' => '更新缩图且调整图片尺寸',
|
|
|
1253 |
'update_number' => '每点选一次要处理的图片数目',
|
|
|
1254 |
'update_option' => '(如果您遇到操作程序逾时的问题,请试着降低此设定)',
|
|
|
1255 |
'filename_title' => '文档名称 ⇒ 图片标题', //cpg1.3.0
|
|
|
1256 |
'filename_how' => '如何修改档名',
|
|
|
1257 |
'filename_remove' => '删除 .jpg 并将 _ (底线) 用空格取代',
|
|
|
1258 |
'filename_euro' => '将 2003_11_23_13_20_20.jpg 改为 23/11/2003 13:20',
|
|
|
1259 |
'filename_us' => '将 2003_11_23_13_20_20.jpg 改为 11/23/2003 13:20',
|
|
|
1260 |
'filename_time' => '将 2003_11_23_13_20_20.jpg 改为 13:20',
|
|
|
1261 |
'delete' => '删除图片标题或原始尺寸的图片', //cpg1.3.0
|
|
|
1262 |
'delete_title' => '删除图片标题', //cpg1.3.0
|
|
|
1263 |
'delete_original' => '删除原始尺寸的图片',
|
|
|
1264 |
'delete_replace' => '删除原始尺寸的图片並以调整尺寸的图片取代',
|
|
|
1265 |
'select_album' => '选择相簿',
|
|
|
1266 |
'delete_orphans' => '删除零散的留言(对全部的相簿)', //cpg1.3.0
|
|
|
1267 |
'orphan_comment' => '发现零散的留言', //cpg1.3.0
|
|
|
1268 |
'delete' => '删除', //cpg1.3.0
|
|
|
1269 |
'delete_all' => '全部删除', //cpg1.3.0
|
|
|
1270 |
'comment' => '留言: ', //cpg1.3.0
|
|
|
1271 |
'nonexist' => '要附加的文档不存在 # ', //cpg1.3.0
|
|
|
1272 |
'phpinfo' => '显示php资讯', //cpg1.3.0
|
|
|
1273 |
'update_db' => '更新资料库', //cpg1.3.0
|
|
|
1274 |
'update_db_explanation' => '如果您有更新 coppermine 文档, 加入修改或由以前的版本升级, 请确定执行一次资料库更新. 这将会在coppermine资料库新增必要的资料表 及/或 设定值.', //cpg1.3.0
|
|
|
1275 |
);
|
|
|
1276 |
|
|
|
1277 |
?>
|