6 |
kaklik |
1 |
<?php
|
|
|
2 |
// ------------------------------------------------------------------------- //
|
|
|
3 |
// Coppermine Photo Gallery 1.3.2 //
|
|
|
4 |
// ------------------------------------------------------------------------- //
|
|
|
5 |
// Copyright (C) 2002,2003 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 |
// $Id: chinese_big5.php,v 1.11 2004/12/29 23:03:46 chtito Exp $
|
|
|
18 |
// ------------------------------------------------------------------------- //
|
|
|
19 |
|
|
|
20 |
// info about translators and translated language
|
|
|
21 |
$lang_translation_info = array(
|
|
|
22 |
'lang_name_english' => 'Chinese Tranditional BIG5',
|
|
|
23 |
'lang_name_native' => '¤¤¤åÁcÅéBIG5',
|
|
|
24 |
'lang_country_code' => 'tw',
|
|
|
25 |
'trans_name'=> 'CapriSkye and monkey',
|
|
|
26 |
'trans_email' => 'admin@capriskye.com',
|
|
|
27 |
'trans_website' => 'http://open.38.com/',
|
|
|
28 |
'trans_date' => '2004-09-28',
|
|
|
29 |
);
|
|
|
30 |
|
|
|
31 |
$lang_charset = 'BIG5';
|
|
|
32 |
$lang_text_dir = 'ltr'; // ('ltr' for left to right, 'rtl' for right to left)
|
|
|
33 |
|
|
|
34 |
// shortcuts for Byte, Kilo, Mega
|
|
|
35 |
$lang_byte_units = array('Bytes', 'KB', 'MB');
|
|
|
36 |
|
|
|
37 |
// Day of weeks and months
|
|
|
38 |
$lang_day_of_week = array('¬P´Á¤é', '¬P´Á¤@', '¬P´Á¤G', '¬P´Á¤T', '¬P´Á¥|', '¬P´Á¤', '¬P´Á¤»');
|
|
|
39 |
$lang_month = array('¤@¤ë', '¤G¤ë', '¤T¤ë', '¥|¤ë', '¤¤ë', '¤»¤ë', '¤C¤ë', '¤K¤ë', '¤E¤ë', '¤Q¤ë', '¤Q¤@¤ë', '¤Q¤G¤ë');
|
|
|
40 |
|
|
|
41 |
// Some common strings
|
|
|
42 |
$lang_yes = '¬O';
|
|
|
43 |
$lang_no = '§_';
|
|
|
44 |
$lang_back = 'ªð¦^';
|
|
|
45 |
$lang_continue = 'Ä~Äò';
|
|
|
46 |
$lang_info = '°T®§';
|
|
|
47 |
$lang_error = '¿ù»~';
|
|
|
48 |
|
|
|
49 |
// The various date formats
|
|
|
50 |
// See http://www.php.net/manual/en/function.strftime.php to define the variable below
|
|
|
51 |
$album_date_fmt = '%B %d, %Y';
|
|
|
52 |
$lastcom_date_fmt = '%m/%d/%y at %H:%M'; //cpg1.3.0
|
|
|
53 |
$lastup_date_fmt = '%B %d, %Y';
|
|
|
54 |
$register_date_fmt = '%B %d, %Y';
|
|
|
55 |
$lasthit_date_fmt = '%B %d, %Y at %I:%M %p'; //cpg1.3.0
|
|
|
56 |
$comment_date_fmt = '%B %d, %Y at %I:%M %p'; //cpg1.3.0
|
|
|
57 |
|
|
|
58 |
// For the word censor
|
|
|
59 |
$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*');
|
|
|
60 |
|
|
|
61 |
$lang_meta_album_names = array(
|
|
|
62 |
'random' => 'ÀH¾÷¹Ï¤ù', //cpg1.3.0
|
|
|
63 |
'lastup' => '³Ì·s¤W¶Ç',
|
|
|
64 |
'lastalb'=> '³Ìªñ§ó·s',
|
|
|
65 |
'lastcom' => '³Ì·s¯d¨¥',
|
|
|
66 |
'topn' => '¼öªù¹Ï¤ù',
|
|
|
67 |
'toprated' => '³Ì°ªµû¤À',
|
|
|
68 |
'lasthits' => '³ÌªñÅã¥Ü',
|
|
|
69 |
'search' => '·j´Mµ²ªG',
|
|
|
70 |
'favpics'=> '³Ì·R¹Ï¤ù', //cpg1.3.0
|
|
|
71 |
);
|
|
|
72 |
|
|
|
73 |
$lang_errors = array(
|
|
|
74 |
'access_denied' => '§A¨S¦³¨Ï¥Î¥»¶ªºÅv.',
|
|
|
75 |
'perm_denied' => '§A¨S¦³Åv°õ¦æ¦¹°Ê§@.',
|
|
|
76 |
'param_missing' => 'µ{¦¡³Q©I¥s¦Ó¨S¦³»Ýnªº°Ñ¼Æ.',
|
|
|
77 |
'non_exist_ap' => '©Ò¿ï¾Üªº ¬Ûï/¹Ï¤ù ¤£¦s¦b !', //cpg1.3.0
|
|
|
78 |
'quota_exceeded' => '¶W¹LºÏºÐ°tÃB<br /><br />§Aªº°tÃB¦³ [quota]K, ¤w¨Ï¥Îªº¦³ [space]K, ¥[¤J¦¹¹Ï¤ù·|¶W¹L¾Ö¦³ªº°tÃB.', //cpg1.3.0
|
|
|
79 |
'gd_file_type_err' => '·í¨Ï¥Î GD ¹Ï¹³µ{¦¡®w¥u®e³\ JPEG / PNG ¹ÏÀÉ.',
|
|
|
80 |
'invalid_image' => '§A¤W¶ÇªºÀɮפv¸g·lÃa, ©Î¬O GD ¹Ï¹³µ{¦¡®w¤£¯à³B²z',
|
|
|
81 |
'resize_failed' => 'µLªk«Ø¥ßÁY¹Ï©ÎÅܧó¹ÏÀɤؤo.',
|
|
|
82 |
'no_img_to_display' => '¨S¦³¹Ï¤ù¥i¥HÅã¥Ü.',
|
|
|
83 |
'non_exist_cat' => '©Ò¿ï¾ÜªºÃþ§O¨Ã¤£¦s¦b.',
|
|
|
84 |
'orphan_cat' => '³oÓ¤lÃþ§O¦s©ó¤@Ó¤£¦s¦bªº¥ÀÃþ§O, ½Ð¥ý¦ÜÃþ§OºÞ²z×¥¿³oÓ°ÝÃD.', //cpg1.3.0
|
|
|
85 |
'directory_ro' => '¥Ø¿ý \'%s\' µLªk¼g¤J, ¾ÉPµLªk§R°£¹Ï¤ù', //cpg1.3.0
|
|
|
86 |
'non_exist_comment' => '©Ò¿ï¾Üªº¯d¨¥¨Ã¤£¦s¦b.',
|
|
|
87 |
'pic_in_invalid_album' => '¦¹¹Ï¤ù¦s©ó¤£¦s¦bªº¬Ûï (%s)!?', //cpg1.3.0
|
|
|
88 |
'banned' => '±z¥Ø«e³Q¸T¤î¨Ï¥Î¥»¯¸.',
|
|
|
89 |
'not_with_udb' => '¥Ñ©ó¥»¬Ûï¤w©M½×¾Âµ{¦¡¾ã¦X, ¦¹¥\¯à¤w°±¤î¨Ï¥Î. ¥i¯à¬O¥Ø«e³]©w¤£¤ä´©¦¹¥\¯à, ©Î¤w¥Ñ½×¾Â³B²z.',
|
|
|
90 |
'offline_title' => 'Â÷½u', //cpg1.3.0
|
|
|
91 |
'offline_text' => '¬Ûï¥Ø«e¬OÂ÷½uª¬ºA - ½Ðµy«á¦A¸Õ', //cpg1.3.0
|
|
|
92 |
'ecards_empty' => '¥Ø«e¨S¦³¹q¤l¥d¤ùªº¬ö¿ý¥iÅã¥Ü. ½ÐÀˬd¬Ûï³]©w¤¤¬O§_±Ò¥Î¬ö¿ý¹q¤l¥d¤ù¥\¯à!', //cpg1.3.0
|
|
|
93 |
'action_failed' => '°Ê§@¥¢±Ñ. Coppermine µLªk°õ¦æ±zªºn¨D.', //cpg1.3.0
|
|
|
94 |
'no_zip' => 'µLªk°õ¦æZIPÀ£ÁYÀÉ. ½ÐÁpµ¸±zªº¬ÛïºÞ²zû.', //cpg1.3.0
|
|
|
95 |
'zip_type' => '±z¨S¦³¤W¶ÇZIPÀ£ÁYÀɪºÅv.', //cpg1.3.0
|
|
|
96 |
);
|
|
|
97 |
|
|
|
98 |
$lang_bbcode_help = '°Ñ¦Ò½s½X: <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
|
|
|
99 |
|
|
|
100 |
// ------------------------------------------------------------------------- //
|
|
|
101 |
// File theme.php
|
|
|
102 |
// ------------------------------------------------------------------------- //
|
|
|
103 |
//
|
|
|
104 |
$lang_main_menu = array(
|
|
|
105 |
'alb_list_title' => 'ªð¦^¬Ûï¥Ø¿ý',
|
|
|
106 |
'alb_list_lnk' => '¬Ûï¥Ø¿ý',
|
|
|
107 |
'my_gal_title' => 'ªð¦^§Úªº¬Ûï',
|
|
|
108 |
'my_gal_lnk' => '§Úªº¬Ûï',
|
|
|
109 |
'my_prof_lnk' => '§ÚªºÓ¤H¸ê®Æ',
|
|
|
110 |
'adm_mode_title' => 'ÂରºÞ²z¼Ò¦¡',
|
|
|
111 |
'adm_mode_lnk' => 'ºÞ²z¼Ò¦¡',
|
|
|
112 |
'usr_mode_title' => 'Âର·|û¼Ò¦¡',
|
|
|
113 |
'usr_mode_lnk' => '·|û¼Ò¦¡',
|
|
|
114 |
'upload_pic_title' => '¤W¶Ç¹Ï¤ù¦Ü¬Ûï', //cpg1.3.0
|
|
|
115 |
'upload_pic_lnk' => '¤W¶Ç¹Ï¤ù', //cpg1.3.0
|
|
|
116 |
'register_title' => '«Ø¥ß·|û±b¸¹',
|
|
|
117 |
'register_lnk' => 'µù¥U',
|
|
|
118 |
'login_lnk' => 'µn¤J',
|
|
|
119 |
'logout_lnk' => 'µn¥X',
|
|
|
120 |
'lastup_lnk' => '³Ì·s¤W¶Ç',
|
|
|
121 |
'lastcom_lnk' => '³Ì·s¯d¨¥',
|
|
|
122 |
'topn_lnk' => '¼öªù¹Ï¤ù',
|
|
|
123 |
'toprated_lnk' => '³Ì°ªµû¤À',
|
|
|
124 |
'search_lnk' => '·j´M',
|
|
|
125 |
'fav_lnk' => '§Úªº³Ì·R',
|
|
|
126 |
'memberlist_title' => 'Åã¥Ü·|û¦W³æ', //cpg1.3.0
|
|
|
127 |
'memberlist_lnk' => '·|û¦W³æ', //cpg1.3.0
|
|
|
128 |
'faq_title' => '"Coppermine" ¬Û諸±`¨£°ÝÃD¸Ñµª', //cpg1.3.0
|
|
|
129 |
'faq_lnk' => '±`¨£°ÝÃD¸Ñµª', //cpg1.3.0
|
|
|
130 |
);
|
|
|
131 |
|
|
|
132 |
$lang_gallery_admin_menu = array(
|
|
|
133 |
'upl_app_lnk' => '®Öã¤W¶Ç',
|
|
|
134 |
'config_lnk' => '³]©w',
|
|
|
135 |
'albums_lnk' => '¬Ûï',
|
|
|
136 |
'categories_lnk' => 'Ãþ§O',
|
|
|
137 |
'users_lnk' => '·|û',
|
|
|
138 |
'groups_lnk' => '¸s²Õ',
|
|
|
139 |
'comments_lnk' => 'Æ[¬Ý¯d¨¥', //cpg1.3.0
|
|
|
140 |
'searchnew_lnk' => '¾ã§å¥[¤J¹Ï¤ù', //cpg1.3.0
|
|
|
141 |
'util_lnk' => 'ºÞ²z¤u¨ã', //cpg1.3.0
|
|
|
142 |
'ban_lnk' => 'ªý¾×·|û',
|
|
|
143 |
'db_ecard_lnk' => 'Åã¥Ü¹q¤l¥d¤ù', //cpg1.3.0
|
|
|
144 |
);
|
|
|
145 |
|
|
|
146 |
$lang_user_admin_menu = array(
|
|
|
147 |
'albmgr_lnk' => '«Ø¥ß/±Æ§Ç §Úªº¬Ûï',
|
|
|
148 |
'modifyalb_lnk' => '½s¿è§Úªº¬Ûï',
|
|
|
149 |
'my_prof_lnk' => '§ÚªºÓ¤H¸ê®Æ',
|
|
|
150 |
);
|
|
|
151 |
|
|
|
152 |
$lang_cat_list = array(
|
|
|
153 |
'category' => 'Ãþ§O',
|
|
|
154 |
'albums' => '¬Ûï',
|
|
|
155 |
'pictures' => '¹Ï¤ù', //cpg1.3.0
|
|
|
156 |
);
|
|
|
157 |
|
|
|
158 |
$lang_album_list = array(
|
|
|
159 |
'album_on_page' => '%d Ó¬Ûï¦b %d ¶',
|
|
|
160 |
);
|
|
|
161 |
|
|
|
162 |
$lang_thumb_view = array(
|
|
|
163 |
'date' => '¤é´Á',
|
|
|
164 |
//Sort by filename and title
|
|
|
165 |
'name' => 'ÀɦW',
|
|
|
166 |
'title' => '¼ÐÃD',
|
|
|
167 |
'sort_da' => '¨Ì¤é´Á±Æ§Ç ¥Ñ»·¦Üªñ',
|
|
|
168 |
'sort_dd' => '¨Ì¤é´Á±Æ§Ç ¥Ñªñ¦Ü»·',
|
|
|
169 |
'sort_na' => '¨Ì¦WºÙ±Æ§Ç ¥Ñ¤p¦Ü¤j',
|
|
|
170 |
'sort_nd' => '¨Ì¦WºÙ±Æ§Ç ¥Ñ¤j¦Ü¤p',
|
|
|
171 |
'sort_ta' => '¨Ì¼ÐÃD±Æ§Ç ¥Ñ¤p¦Ü¤j',
|
|
|
172 |
'sort_td' => '¨Ì¼ÐÃD±Æ§Ç ¥Ñ¤j¦Ü¤p',
|
|
|
173 |
'download_zip' => '¤U¸ü¦¨ Zip ÀÉ', //cpg1.3.0
|
|
|
174 |
'pic_on_page' => '%d ±i¹Ï¤ù¦b %d ¶',
|
|
|
175 |
'user_on_page' => '%d ¦W·|û¦b %d ¶', //cpg1.3.0
|
|
|
176 |
);
|
|
|
177 |
|
|
|
178 |
$lang_img_nav_bar = array(
|
|
|
179 |
'thumb_title' => 'ªð¦^ÁY¹Ï¶',
|
|
|
180 |
'pic_info_title' => 'Åã¥Ü/ÁôÂà ¹Ï¤ù¸ê°T', //cpg1.3.0
|
|
|
181 |
'slideshow_title' => '³sÄò¼½©ñ',
|
|
|
182 |
'ecard_title' => '§â¹Ï¤ù¥H¹q¤l¥d¤ù±H¥X', //cpg1.3.0
|
|
|
183 |
'ecard_disabled' => '¹q¤l¥d¤ù¥\¯à¥Ø«e°±¥Î',
|
|
|
184 |
'ecard_disabled_msg' => '±z¨S¦³±H¹q¤l¥d¤ùªºÅv', //js-alert //cpg1.3.0
|
|
|
185 |
'prev_title' => 'Åã¥Ü«e¤@±i¹Ï¤ù', //cpg1.3.0
|
|
|
186 |
'next_title' => 'Åã¥Ü¤U¤@±i¹Ï¤ù', //cpg1.3.0
|
|
|
187 |
'pic_pos' => '¹Ï¤ù %s/%s', //cpg1.3.0
|
|
|
188 |
);
|
|
|
189 |
|
|
|
190 |
$lang_rate_pic = array(
|
|
|
191 |
'rate_this_pic' => '¹ï¹Ï¤ùµû¤À', //cpg1.3.0
|
|
|
192 |
'no_votes' => '(ÁÙ¨S¦³¤Hµû¤À)',
|
|
|
193 |
'rating' => '(¥Ø«e±o¤À : %s / 5 ©ó %s Óµû¤À)',
|
|
|
194 |
'rubbish' => '©üË ¤£¬Ý¤]½}',
|
|
|
195 |
'poor' => '¦³ÂI®t«l',
|
|
|
196 |
'fair' => '´¶´¶³q³q',
|
|
|
197 |
'good' => '«Ü¦n',
|
|
|
198 |
'excellent' => '«D±`¥X¦â',
|
|
|
199 |
'great' => '¥s§Ú²Ä¤@¦W',
|
|
|
200 |
);
|
|
|
201 |
|
|
|
202 |
// ------------------------------------------------------------------------- //
|
|
|
203 |
// File include/exif.inc.php
|
|
|
204 |
// ------------------------------------------------------------------------- //
|
|
|
205 |
|
|
|
206 |
// void
|
|
|
207 |
|
|
|
208 |
// ------------------------------------------------------------------------- //
|
|
|
209 |
// File include/functions.inc.php
|
|
|
210 |
// ------------------------------------------------------------------------- //
|
|
|
211 |
|
|
|
212 |
$lang_cpg_die = array(
|
|
|
213 |
INFORMATION => $lang_info,
|
|
|
214 |
ERROR => $lang_error,
|
|
|
215 |
CRITICAL_ERROR => 'ºò«æ¿ù»~',
|
|
|
216 |
'file' => 'ÀÉ®×: ',
|
|
|
217 |
'line' => '¦æ¼Æ: ',
|
|
|
218 |
);
|
|
|
219 |
|
|
|
220 |
$lang_display_thumbnails = array(
|
|
|
221 |
'filename' => 'ÀɮצWºÙ: ',
|
|
|
222 |
'filesize' => 'Àɮפj¤p: ',
|
|
|
223 |
'dimensions' => '¹Ï¤ù¤Ø¤o: ',
|
|
|
224 |
'date_added' => '¥[¤J¤é´Á: ', //cpg1.3.0
|
|
|
225 |
);
|
|
|
226 |
|
|
|
227 |
$lang_get_pic_data = array(
|
|
|
228 |
'n_comments' => '%s Ó¯d¨¥',
|
|
|
229 |
'n_views' => '%s ¦¸Æ[¬Ý',
|
|
|
230 |
'n_votes' => '(%s Óµû¤À)',
|
|
|
231 |
);
|
|
|
232 |
|
|
|
233 |
$lang_cpg_debug_output = array(
|
|
|
234 |
'debug_info' => '°£¿ù°T®§', //cpg1.3.0
|
|
|
235 |
'select_all' => '¥þ¿ï', //cpg1.3.0
|
|
|
236 |
'copy_and_paste_instructions' => '¦pªG§An¦bCoppermine¤ä´©½×¾Â¤Wn¨D¨ó§U, ½Æ»s¨Ã¶K¤W³oÓ°£¿ù°T®§¨ì§Aªºµoªí¤å³¹¤º. µoªí¤å³¹«e½Ðª`·N¥Î***¨Ó¨ú¥N±zªº±K½X.', //cpg1.3.0
|
|
|
237 |
'phpinfo' => 'Åã¥ÜPHP°T®§ (phpinfo)', //cpg1.3.0
|
|
|
238 |
);
|
|
|
239 |
|
|
|
240 |
$lang_language_selection = array(
|
|
|
241 |
'reset_language' => '¹w³]»y¨t', //cpg1.3.0
|
|
|
242 |
'choose_language' => '¿ï¾Ü§Aªº»y¨t', //cpg1.3.0
|
|
|
243 |
);
|
|
|
244 |
|
|
|
245 |
$lang_theme_selection = array(
|
|
|
246 |
'reset_theme' => '¹w³]§G´º', //cpg1.3.0
|
|
|
247 |
'choose_theme' => '¿ï¾Ü§G´º', //cpg1.3.0
|
|
|
248 |
);
|
|
|
249 |
|
|
|
250 |
// ------------------------------------------------------------------------- //
|
|
|
251 |
// File include/init.inc.php
|
|
|
252 |
// ------------------------------------------------------------------------- //
|
|
|
253 |
|
|
|
254 |
// void
|
|
|
255 |
|
|
|
256 |
// ------------------------------------------------------------------------- //
|
|
|
257 |
// File include/picmgmt.inc.php
|
|
|
258 |
// ------------------------------------------------------------------------- //
|
|
|
259 |
|
|
|
260 |
// void
|
|
|
261 |
|
|
|
262 |
// ------------------------------------------------------------------------- //
|
|
|
263 |
// File include/smilies.inc.php
|
|
|
264 |
// ------------------------------------------------------------------------- //
|
|
|
265 |
|
|
|
266 |
if (defined('SMILIES_PHP')) $lang_smilies_inc_php = array(
|
|
|
267 |
'Exclamation' => '·P¼Û',
|
|
|
268 |
'Question' => 'ºÃ°Ý',
|
|
|
269 |
'Very Happy' => '«Ü°ª¿³',
|
|
|
270 |
'Smile' => '·L¯º',
|
|
|
271 |
'Sad' => '´d«s',
|
|
|
272 |
'Surprised' => 'Åå³Y',
|
|
|
273 |
'Shocked' => '¾_Åå',
|
|
|
274 |
'Confused' => '©üË',
|
|
|
275 |
'Cool' => '«Ü´Î',
|
|
|
276 |
'Laughing' => 'µo¯º',
|
|
|
277 |
'Mad' => 'µo¨g',
|
|
|
278 |
'Razz' => '¼J¯º',
|
|
|
279 |
'Embarassed' => 'Àª§¼',
|
|
|
280 |
'Crying or Very sad' => 'Àzú',
|
|
|
281 |
'Evil or Very Mad' => '´c¬r',
|
|
|
282 |
'Twisted Evil' => '¥j©Ç',
|
|
|
283 |
'Rolling Eyes' => '±ÛÂ઺²´·ú',
|
|
|
284 |
'Wink' => '¯w²´',
|
|
|
285 |
'Idea' => '¥D·N',
|
|
|
286 |
'Arrow' => '½bÀY',
|
|
|
287 |
'Neutral' => '¤¤¥ß',
|
|
|
288 |
'Mr. Green' => '®æªL¥ý¥Í',
|
|
|
289 |
);
|
|
|
290 |
|
|
|
291 |
// ------------------------------------------------------------------------- //
|
|
|
292 |
// File addpic.php
|
|
|
293 |
// ------------------------------------------------------------------------- //
|
|
|
294 |
|
|
|
295 |
// void
|
|
|
296 |
|
|
|
297 |
// ------------------------------------------------------------------------- //
|
|
|
298 |
// File admin.php
|
|
|
299 |
// ------------------------------------------------------------------------- //
|
|
|
300 |
|
|
|
301 |
if (defined('ADMIN_PHP')) $lang_admin_php = array(
|
|
|
302 |
|
|
|
303 |
1 => '¥¿¶i¤JºÞ²z¼Ò¦¡...',
|
|
|
304 |
);
|
|
|
305 |
|
|
|
306 |
// ------------------------------------------------------------------------- //
|
|
|
307 |
// File albmgr.php
|
|
|
308 |
// ------------------------------------------------------------------------- //
|
|
|
309 |
|
|
|
310 |
if (defined('ALBMGR_PHP')) $lang_albmgr_php = array(
|
|
|
311 |
'alb_need_name' => '±z»Ýnµ¹¬Ûï¤@Ó¦WºÙ !', //js-alert
|
|
|
312 |
'confirm_modifs' => '½T©wn°µ³o¨Çקï¶Ü ?', //js-alert
|
|
|
313 |
'no_change' => '±z¨S¦³°µ¥ô¦ó§ïÅÜ !', //js-alert
|
|
|
314 |
'new_album' => '·s¬Ûï',
|
|
|
315 |
'confirm_delete1' => '½T©wn§R°£¦¹¬Ûï¶Ü ?', //js-alert
|
|
|
316 |
'confirm_delete2' => '\n©Ò¦³¹Ï¤ù¤Î¯d¨¥³£·|§R°£ !', //js-alert
|
|
|
317 |
'select_first' => '½Ð¥ý¿ï¾Ü¤@Ó¬Ûï', //js-alert
|
|
|
318 |
'alb_mrg' => '¬ÛïºÞ²zû',
|
|
|
319 |
'my_gallery' => '* §Úªº¬Ûï *',
|
|
|
320 |
'no_category' => '* ¨S¦³Ãþ§O *',
|
|
|
321 |
'delete' => '§R°£',
|
|
|
322 |
'new' => '·s¼W',
|
|
|
323 |
'apply_modifs' => 'קï',
|
|
|
324 |
'select_category' => '¿ï¾ÜÃþ§O',
|
|
|
325 |
);
|
|
|
326 |
|
|
|
327 |
// ------------------------------------------------------------------------- //
|
|
|
328 |
// File catmgr.php
|
|
|
329 |
// ------------------------------------------------------------------------- //
|
|
|
330 |
|
|
|
331 |
if (defined('CATMGR_PHP')) $lang_catmgr_php = array(
|
|
|
332 |
'miss_param' => '\'%s\'¾Þ§@©Ò»Ýnªº°Ñ¼Æ¨Ã¥¼´£¨Ñ !',
|
|
|
333 |
'unknown_cat' => '¸ê®Æ®w¸Ì¨S¦³±z©Ò¿ïªºÃþ§O',
|
|
|
334 |
'usergal_cat_ro' => '·|û¬ÛïÃþ§O¤£¯à§R°£ !',
|
|
|
335 |
'manage_cat' => 'Ãþ§OºÞ²z',
|
|
|
336 |
'confirm_delete' => '½T©wn§R°£¦¹Ãþ§O¶Ü', //js-alert
|
|
|
337 |
'category' => 'Ãþ§O',
|
|
|
338 |
'operations' => '¾Þ§@',
|
|
|
339 |
'move_into' => '²¾°Ê¨ì',
|
|
|
340 |
'update_create' => '§ó·s/«Ø¥ß Ãþ§O',
|
|
|
341 |
'parent_cat' => '¥ÀÃþ§O',
|
|
|
342 |
'cat_title' => 'Ãþ§O¼ÐÃD',
|
|
|
343 |
'cat_thumb' => 'Ãþ§OÁY¹Ï', //cpg1.3.0
|
|
|
344 |
'cat_desc' => 'Ãþ§O²¤¶',
|
|
|
345 |
);
|
|
|
346 |
|
|
|
347 |
// ------------------------------------------------------------------------- //
|
|
|
348 |
// File config.php
|
|
|
349 |
// ------------------------------------------------------------------------- //
|
|
|
350 |
|
|
|
351 |
if (defined('CONFIG_PHP')) $lang_config_php = array(
|
|
|
352 |
'title' => '³]©w',
|
|
|
353 |
'restore_cfg' => '¦^´_ì©l³]©w',
|
|
|
354 |
'save_cfg' => 'Àx¦s·s³]©w',
|
|
|
355 |
'notes' => 'ª`·N',
|
|
|
356 |
'info' => '°T®§',
|
|
|
357 |
'upd_success' => '³]©w¤w§ó·s',
|
|
|
358 |
'restore_success' => 'ì©l³]©w¤w¦^´_',
|
|
|
359 |
'name_a' => '±Æ§Ç¨Ì¦WºÙ ¥Ñ¤p¦Ü¤j',
|
|
|
360 |
'name_d' => '±Æ§Ç¨Ì¦WºÙ ¥Ñ¤j¦Ü¤p',
|
|
|
361 |
'title_a' => '±Æ§Ç¨Ì¼ÐÃD ¥Ñ¤p¦Ü¤j',
|
|
|
362 |
'title_d' => '±Æ§Ç¨Ì¼ÐÃD ¥Ñ¤j¦Ü¤p',
|
|
|
363 |
'date_a' => '±Æ§Ç¨Ì¤é´Á ¥Ñ»·¦Üªñ',
|
|
|
364 |
'date_d' => '±Æ§Ç¨Ì¤é´Á ¥Ñªñ¦Ü»·',
|
|
|
365 |
'th_any' => '³Ì¤j¥~Æ[',
|
|
|
366 |
'th_ht' => '°ª«×',
|
|
|
367 |
'th_wd' => '¼e«×',
|
|
|
368 |
'label' => '¼ÐÅÒ', //cpg1.3.0
|
|
|
369 |
'item' => '¶µ¥Ø', //cpg1.3.0
|
|
|
370 |
'debug_everyone' => '¥ô¦ó¤H', //cpg1.3.0
|
|
|
371 |
'debug_admin' => 'ºÞ²zû±M¥Î', //cpg1.3.0
|
|
|
372 |
);
|
|
|
373 |
|
|
|
374 |
if (defined('CONFIG_PHP')) $lang_config_data = array(
|
|
|
375 |
'°ò¥»³]©w',
|
|
|
376 |
array('¬Ûï¦WºÙ', 'gallery_name', 0),
|
|
|
377 |
array('¬Ûï´yz', 'gallery_description', 0),
|
|
|
378 |
array('¬ÛïºÞ²zûªº¹q¤l¶l¥ó', 'gallery_admin_email', 0),
|
|
|
379 |
array('¦b¹q¤l¥d¤ù¤ºÅã¥Ü\'Æ[¬Ý§ó¦h¹Ï¤ù\'ªº³sµ²', 'ecards_more_pic_target', 0),
|
|
|
380 |
array('¬Ûï¥Ø«eÂ÷½u¤¤', 'offline', 1), //cpg1.3.0
|
|
|
381 |
array('¬ö¿ý¹q¤l¥d¤ù', 'log_ecards', 1), //cpg1.3.0
|
|
|
382 |
array('¤¹³\±N³Ì·Rªº¹Ï¤ù¤U¸ü¦¨ZIPÀÉ', 'enable_zipdownload', 1), //cpg1.3.0
|
|
|
383 |
|
|
|
384 |
'»y¨t, §G´º & ¤å¦r½s½X³]©w',
|
|
|
385 |
array('»y¨t', 'lang', 5),
|
|
|
386 |
array('§G´º', 'theme', 6),
|
|
|
387 |
array('Åã¥Ü»y¨t¦Cªí', 'language_list', 8), //cpg1.3.0
|
|
|
388 |
array('Åã¥Ü»y¨t°êºX', 'language_flags', 8), //cpg1.3.0
|
|
|
389 |
array('¦b»y¨t¦Cªí¤ºÅã¥Ü "«³]"', 'language_reset', 1), //cpg1.3.0
|
|
|
390 |
array('Åã¥Ü§G´º¦Cªí', 'theme_list', 8), //cpg1.3.0
|
|
|
391 |
array('¦b§G´º¦Cªí¤ºÅã¥Ü "«³]"', 'theme_reset', 1), //cpg1.3.0
|
|
|
392 |
array('Åã¥Ü FAQ', 'display_faq', 1), //cpg1.3.0
|
|
|
393 |
array('Åã¥Ü bbcode ²¤¶', 'show_bbcode_help', 1), //cpg1.3.0
|
|
|
394 |
array('¤å¦r½s½X', 'charset', 4), //cpg1.3.0
|
|
|
395 |
|
|
|
396 |
'¬Ûï¥Ø¿ýÅã¥Ü',
|
|
|
397 |
array('¥Dnªí®æ¼e«× (¹³¯À©Î %)', 'main_table_width', 0),
|
|
|
398 |
array('¦P¤@¼h¦¸ªº¤lÃþ§OÅã¥Ü¼Æ¶q', 'subcat_level', 0),
|
|
|
399 |
array('¬ÛïÅã¥Ü¼Æ¶q', 'albums_per_page', 0),
|
|
|
400 |
array('¬Ûï¥Ø¿ý¤ºªº¬ÛïÄæ¼Æ', 'album_list_cols', 0),
|
|
|
401 |
array('ÁY¹Ï¹³¯À', 'alb_list_thumb_size', 0),
|
|
|
402 |
array('¥D¶ªº¤º®e', 'main_page_layout', 0),
|
|
|
403 |
array('Åã¥Ü¤ÀÃþ¤¤²Ä¤@¼hªº¬ÛïÁY¹Ï','first_level',1),
|
|
|
404 |
|
|
|
405 |
'ÁY¹ÏÅã¥Ü',
|
|
|
406 |
array('ÁY¹Ï¶Äæ¼Æ', 'thumbcols', 0),
|
|
|
407 |
array('ÁY¹Ï¶¦C¼Æ', 'thumbrows', 0),
|
|
|
408 |
array('ªí®æÅã¥Ü³Ì°ªÓ¼Æ', 'max_tabs', 10), //cpg1.3.0
|
|
|
409 |
array('Åã¥Ü¹Ï¤ù»¡©ú©óÁY¹Ï¤U¤è (³s¼ÐÃD)', 'caption_in_thumbview', 1), //cpg1.3.0
|
|
|
410 |
array('Åã¥ÜÆ[¬Ý¦¸¼Æ©óÁY¹Ï¤U¤è', 'views_in_thumbview', 1), //cpg1.3.0
|
|
|
411 |
array('Åã¥Ü¯d¨¥¼Æ©óÁY¹Ï¤U¤è', 'display_comment_count', 1),
|
|
|
412 |
array('Åã¥Ü¤W¶ÇªÌ¦WºÙ©óÁY¹Ï¤U¤è', 'display_uploader', 1), //cpg1.3.0
|
|
|
413 |
array('¹Ï¤ùªº¹w³]±Æ§Ç', 'default_sort_order', 3), //cpg1.3.0
|
|
|
414 |
array('\'¼öªù§ë²¼\'»Ýnªº³Ì¤Ö§ë²¼¼Æ', 'min_votes_for_rating', 0), //cpg1.3.0
|
|
|
415 |
|
|
|
416 |
'¹Ï¤ùÅã¥Ü & ¯d¨¥³]©w',
|
|
|
417 |
array('¹Ï¤ùÅã¥Üªºªí®æ¼e«× (¹³¯À©Î %)', 'picture_table_width', 0), //cpg1.3.0
|
|
|
418 |
array('¹Ï¤ù¸ê°Tªº¹w³]¬°Åã¥Ü', 'display_pic_info', 1), //cpg1.3.0
|
|
|
419 |
array('¯d¨¥¤º¹LÂo¤£¨}µü·J', 'filter_bad_words', 1),
|
|
|
420 |
array('¯d¨¥¥i¥H¨Ï¥Î¯ºÁy¹Ï¥Ü', 'enable_smilies', 1),
|
|
|
421 |
array('¤¹³\·|û¦b¦P¤@±i¹Ï¤ù ³sÄòµoªí¯d¨¥(Ãö³¬Äé¤ô«OÅ@)', 'disable_comment_flood_protect', 1), //cpg1.3.0
|
|
|
422 |
array('¹Ï¤ù²¤¶ªº³Ì¤jªø«×', 'max_img_desc_length', 0),
|
|
|
423 |
array('¤å¦rªº³Ì¤j¦r¼Æ', 'max_com_wlength', 0),
|
|
|
424 |
array('¯d¨¥ªº³Ì¤j¦æ¼Æ', 'max_com_lines', 0),
|
|
|
425 |
array('¯d¨¥ªº³Ì¤jªø«×', 'max_com_size', 0),
|
|
|
426 |
array('Åã¥Ü¹Ï¤ù¹wÄý¦C', 'display_film_strip', 1),
|
|
|
427 |
array('¹Ï¤ù¹wÄý¦Cªº¹Ï¤ù¼Æ', 'max_film_strip_items', 0),
|
|
|
428 |
array('¦³¯d¨¥®É¥Î¹q¤l¶l¥ó³qª¾ºÞ²zû', 'email_comment_notification', 1), //cpg1.3.0
|
|
|
429 |
array('³sÄò¼·©ñ¶¡¹j®É¶¡ (²@¬í). 1 ¬í = 1000 ²@¬í', 'slideshow_interval', 0), //cpg1.3.0
|
|
|
430 |
|
|
|
431 |
'¹Ï¤ù¤ÎÁY¹Ï³]©w', //cpg1.3.0
|
|
|
432 |
array('JPEG ®æ¦¡«~½è', 'jpeg_qual', 0),
|
|
|
433 |
array('ÁY¹Ï³Ì¤j¤Ø¤o <a href="#notice2" class="clickable_option">**</a>', 'thumb_width', 0), //cpg1.3.0
|
|
|
434 |
array('¨Ï¥Î¤Ø¤o ( ¼e¡B°ª©ÎÁY¹Ï³Ì¤jÃäªø )<b>**</b>', 'thumb_use', 7),
|
|
|
435 |
array('«Ø¥ß¤¤¯Å¹Ï¤ù','make_intermediate',1),
|
|
|
436 |
array('¤¤¯Å¹Ï¤ù/¼v¤ù³Ì¤j¤Ø¤o <a href="#notice2" class="clickable_option">**</a>', 'picture_width', 0), //cpg1.3.0
|
|
|
437 |
array('¤W¶Ç¹ÏÀɪº³Ì¤j¨î (KB)', 'max_upl_size', 0), //cpg1.3.0
|
|
|
438 |
array('¤W¶Ç¹Ï¤ù/¼v¤ùªº³Ì¤j¼e«×©Î³Ì°ª¤Ø¤o (¹³¯À)', 'max_upl_width_height', 0), //cpg1.3.0
|
|
|
439 |
|
|
|
440 |
'¹Ï¤ù©MÁY¹Ïªº¶i¶¥³]©w', //cpg1.3.0
|
|
|
441 |
array('Åã¥Ü¨p¤H¬Ûï¹Ï¤ùµ¹¥¼µn¤J·|û','show_private',1), //cpg1.3.0
|
|
|
442 |
array('ÀɮצWºÙ¤£±µ¨üªº¦r²Å', 'forbiden_fname_char',0), //cpg1.3.0
|
|
|
443 |
//array('¤W¶Ç¹ÏÀÉ¥i±µ¨üªº°ÆÀɦW', 'allowed_file_extensions',0), //cpg1.3.0
|
|
|
444 |
array('¤¹³\ªº¹Ï¤ùÀÉÃþ«¬', 'allowed_img_types',0), //cpg1.3.0
|
|
|
445 |
array('¤¹³\ªº¼v¤ùÀÉÃþ«¬', 'allowed_mov_types',0), //cpg1.3.0
|
|
|
446 |
array('¤¹³\ªºÁnµÀÉÃþ«¬', 'allowed_snd_types',0), //cpg1.3.0
|
|
|
447 |
array('¤¹³\ªº¤å¥óÀÉÃþ«¬', 'allowed_doc_types',0), //cpg1.3.0
|
|
|
448 |
array('«Ø¥ßÁY¹Ïªº¤èªk','thumb_method',2), //cpg1.3.0
|
|
|
449 |
array('ImageMagick \'convert\' µ{¦¡ªº¸ô®| (¨Ò¦p /usr/bin/X11/)', 'impath', 0), //cpg1.3.0
|
|
|
450 |
//array('¥i±µ¨üªº¹ÏÀÉÃþ«¬(¥u¹ï ImageMagick ¦³®Ä)', 'allowed_img_types',0), //cpg1.3.0
|
|
|
451 |
array('ImageMagick ªº©R¥O¦C¿ï¶µ', 'im_options', 0), //cpg1.3.0
|
|
|
452 |
array('Ū¨ú JPEG Àɮתº EXIF ¸ê®Æ', 'read_exif_data', 1), //cpg1.3.0
|
|
|
453 |
array('Ū¨ú JPEG Àɮתº IPTC ¸ê®Æ', 'read_iptc_data', 1), //cpg1.3.0
|
|
|
454 |
array('¬Ûï¸ô®| <a href="#notice1" class="clickable_option">*</a>', 'fullpath', 0), //cpg1.3.0
|
|
|
455 |
array('·|û¹ÏÀɸô®| <a href="#notice1" class="clickable_option">*</a>', 'userpics', 0), //cpg1.3.0
|
|
|
456 |
array('¤¤¯Å¹ÏÀɪº«e¸m¦r¤¸ <a href="#notice1" class="clickable_option">*</a>', 'normal_pfx', 0), //cpg1.3.0
|
|
|
457 |
array('ÁY¹ÏÀɪº«e¸m¦r¤¸ <a href="#notice1" class="clickable_option">*</a>', 'thumb_pfx', 0), //cpg1.3.0
|
|
|
458 |
array('©ñ¸m¹ÏÀɥؿýªº¹w³]Åv', 'default_dir_mode', 0), //cpg1.3.0
|
|
|
459 |
array('¤W¶Ç¹Ï¤ùªº¹w³]Åv', 'default_file_mode', 0), //cpg1.3.0
|
|
|
460 |
|
|
|
461 |
'·|û³]©w',
|
|
|
462 |
array('¤¹³\·s·|ûµù¥U', 'allow_user_registration', 1),
|
|
|
463 |
array('µù¥U»Ýn¹q¤l¶l¥óÅçÃÒ', 'reg_requires_valid_email', 1),
|
|
|
464 |
array('¦³¨Ï¥ÎªÌµù¥U®É¥Î¹q¤l¶l¥ó³qª¾ºÞ²zû', 'reg_notify_admin_email', 1), //cpg1.3.0
|
|
|
465 |
array('¤¹³\¨âÓ·|û¨Ï¥Î¦P¤@Ó¹q¤l¶l¥ó', 'allow_duplicate_emails_addr', 1),
|
|
|
466 |
array('·|û¥i¥H¦³¨p¤Hªº¬Ûï (ª`·N: ¦pªG§A¤Á´« ¬O¨ì§_ ¥ô¦ó¥Ø«e¨p¤H¬Ûï±NÅܦ¨¤½¶}¬Ûï)', 'allow_private_albums', 1), //cpg1.3.0
|
|
|
467 |
array('¦³·|û¤W¶ÇÀÉ®×µ¥«Ý®Öã®É³qª¾ºÞ²zû', 'upl_notify_admin_email', 1), //cpg1.3.0
|
|
|
468 |
array('¤¹³\µn¤Jªº·|û¬d¬Ý·|û¦W³æ', 'allow_memberlist', 1), //cpg1.3.0
|
|
|
469 |
|
|
|
470 |
'¼v¹³Â²¤¶ªº¦ÛqÄæ¦ì (¦pªG¤£¨Ï¥Î½Ð¯d¤UªÅ¥Õ)',
|
|
|
471 |
array('Äæ¦ì 1 ªº¦WºÙ', 'user_field1_name', 0),
|
|
|
472 |
array('Äæ¦ì 2 ªº¦WºÙ', 'user_field2_name', 0),
|
|
|
473 |
array('Äæ¦ì 3 ªº¦WºÙ', 'user_field3_name', 0),
|
|
|
474 |
array('Äæ¦ì 4 ªº¦WºÙ', 'user_field4_name', 0),
|
|
|
475 |
|
|
|
476 |
'Cookies ³]©w',
|
|
|
477 |
array('¨Ï¥Îªº cookie ¦WºÙ (»P½×¾Âµ{¦¡¾ã¦X®É, ½T©w¥¦©M½×¾Âªºcookie¤£¦P)', 'cookie_name', 0),
|
|
|
478 |
array('¨Ï¥Îªº cookie ¸ô®|', 'cookie_path', 0),
|
|
|
479 |
|
|
|
480 |
'¨ä¥L³]©w',
|
|
|
481 |
array('±Ò°Ê°£¿ù¼Ò¦¡', 'debug_mode', 9), //cpg1.3.0
|
|
|
482 |
array('¦b°£¿ù¼Ò¦¡®ÉÅã¥Ü´£¥Ü', 'debug_notice', 1), //cpg1.3.0
|
|
|
483 |
|
|
|
484 |
'<br /><div align="left"><a name="notice1"></a>(*) Y¬Û鷺¦³¹Ï¤ù, ¼Ð¥Ü¦³ * ªºÄæ¦ìªí¥Ü¤£¥i§ó§ï.<br />
|
|
|
485 |
<a name="notice2"></a>(**) §ïÅܳoÓ³]©w¥u¼vÅT¤w¸g¥[¤JªºÀÉ®×, ¦pªG¨º¨ÇÀɮפw¸g¦b¬Û鷺¤F,³oÓ³]©w¤£¥²§ïÅÜ. µL½×¦p¦ó,§A¥i¥H±q ºÞ²zû¥\¯à¿ï³æ¸Ì ½Õ¾ã¬J¦³ªºÀÉ®×,±q "<a href="util.php">ºÞ²z¤u¨ã</a> (½Õ¾ã¹Ï¤ù¤Ø¤o)" </div><br />', //cpg1.3.0
|
|
|
486 |
);
|
|
|
487 |
|
|
|
488 |
// ------------------------------------------------------------------------- //
|
|
|
489 |
// File db_ecard.php //cpg1.3.0
|
|
|
490 |
// ------------------------------------------------------------------------- //
|
|
|
491 |
|
|
|
492 |
if (defined('DB_ECARD_PHP')) $lang_db_ecard_php = array(
|
|
|
493 |
'title' => '±H¥X¹q¤l¥d¤ù', //cpg1.3.0
|
|
|
494 |
'ecard_sender' => '±H¥óªÌ', //cpg1.3.0
|
|
|
495 |
'ecard_recipient' => '¦¬¥óªÌ', //cpg1.3.0
|
|
|
496 |
'ecard_date' => '¤é´Á', //cpg1.3.0
|
|
|
497 |
'ecard_display' => 'Åã¥Ü¹q¤l¥d¤ù', //cpg1.3.0
|
|
|
498 |
'ecard_name' => '¦WºÙ', //cpg1.3.0
|
|
|
499 |
'ecard_email' => '¹q¤l¶l¥ó', //cpg1.3.0
|
|
|
500 |
'ecard_ip' => 'IP #', //cpg1.3.0
|
|
|
501 |
'ecard_ascending' => '¤É¾', //cpg1.3.0
|
|
|
502 |
'ecard_descending' => '°¾', //cpg1.3.0
|
|
|
503 |
'ecard_sorted' => '±Æ§Ç', //cpg1.3.0
|
|
|
504 |
'ecard_by_date' => '¨Ì¤é´Á', //cpg1.3.0
|
|
|
505 |
'ecard_by_sender_name' => '¨Ì±H¥óªÌ¦WºÙ', //cpg1.3.0
|
|
|
506 |
'ecard_by_sender_email' => '¨Ì±H¥óªÌ¶l¥ó', //cpg1.3.0
|
|
|
507 |
'ecard_by_sender_ip' => '¨Ì±H¥óªÌªº IP ¦ì§}', //cpg1.3.0
|
|
|
508 |
'ecard_by_recipient_name' => '¨Ì¦¬¥óªÌ¦WºÙ', //cpg1.3.0
|
|
|
509 |
'ecard_by_recipient_email' => '¨Ì¦¬¥óªÌ¶l¥ó', //cpg1.3.0
|
|
|
510 |
'ecard_number' => 'Åã¥Ü¬ö¿ý %s ¨ì %s ¦b %s', //cpg1.3.0
|
|
|
511 |
'ecard_goto_page' => '¨ì¶¦¸', //cpg1.3.0
|
|
|
512 |
'ecard_records_per_page' => '¶¦¸¬ö¿ý', //cpg1.3.0
|
|
|
513 |
'check_all' => '¥þ¿ï', //cpg1.3.0
|
|
|
514 |
'uncheck_all' => '³£¤£¿ï', //cpg1.3.0
|
|
|
515 |
'ecards_delete_selected' => '§R°£¿ï¨úªº¥d¤ù', //cpg1.3.0
|
|
|
516 |
'ecards_delete_confirm' => '§A½T©wn§R°£¬ö¿ý? ½ÐÂI¿ï!', //cpg1.3.0
|
|
|
517 |
'ecards_delete_sure' => '§Ú½T©w', //cpg1.3.0
|
|
|
518 |
);
|
|
|
519 |
|
|
|
520 |
// ------------------------------------------------------------------------- //
|
|
|
521 |
// File db_input.php
|
|
|
522 |
// ------------------------------------------------------------------------- //
|
|
|
523 |
|
|
|
524 |
if (defined('DB_INPUT_PHP')) $lang_db_input_php = array(
|
|
|
525 |
'empty_name_or_com' => '½Ð¿é¤J±zªº¦W¦r©M¯d¨¥',
|
|
|
526 |
'com_added' => '±zªº¯d¨¥¤w¸g¥[¤J',
|
|
|
527 |
'alb_need_title' => '±z¥²¶·¬°¬Ûï´£¨Ñ¤@Ó¼ÐÃD !',
|
|
|
528 |
'no_udp_needed' => '¨S¦³§ó·sªº¥²n',
|
|
|
529 |
'alb_updated' => '¬Ûï¤w¸g§ó·s',
|
|
|
530 |
'unknown_album' => '©Ò¿ï¾Üªº¬Û藍¦s¦b©Î±z¨S¦³Åv¤W¶ÇÀɮר즹¬Ûï',
|
|
|
531 |
'no_pic_uploaded' => '¨S¦³Àɮ׳Q¤W¶Ç !<br /><br />¦pªG±z½T©w¦³¿ï¾ÜÀɮפW¶Ç, ½ÐÀˬd¦øªA¾¹¬O§_¤¹³\¤W¶ÇÀÉ®×...', //cpg1.3.0
|
|
|
532 |
'err_mkdir' => 'µLªk«Ø¥ß¥Ø¿ý %s !',
|
|
|
533 |
'dest_dir_ro' => '¥Ø¿ý %s µLªk¼g¤J !',
|
|
|
534 |
'err_move' => 'µLªk²¾°Ê %s ¨ì %s !',
|
|
|
535 |
'err_fsize_too_large' => '±z¤W¶Çªº¹Ï¤ù¤Ó¤j (¤£¯à¶W¹L %s x %s) !', //cpg1.3.0
|
|
|
536 |
'err_imgsize_too_large' => '±z¤W¶Çªº¹ÏÀɤӤj (¤£¯à¶W¹L %s KB) !',
|
|
|
537 |
'err_invalid_img' => '¤W¶ÇªºÀɮר䣬O®e³\ªº¹Ï¤ù®æ¦¡ !',
|
|
|
538 |
'allowed_img_types' => '±z¥u¥i¥H¤W¶Ç %s ±i¹Ï¤ù.',
|
|
|
539 |
'err_insert_pic' => 'ÀÉ®× \'%s\' µLªk¥[¤J¦¹¬Ûï ', //cpg1.3.0
|
|
|
540 |
'upload_success' => 'ÀɮפW¶Ç§¹¦¨!<br /><br />·íºÞ²zªÌ®Öã«á´N¥i¥H¬Ý¨ìÀɮפF.', //cpg1.3.0
|
|
|
541 |
'notify_admin_email_subject' => '%s - ¤W¶ÇÀɮ׳qª¾', //cpg1.3.0
|
|
|
542 |
'notify_admin_email_body' => '%s¦³¤W¶ÇÀÉ®× »Ýn§Aªº®Öã. ½Ð¬d¾\ %s', //cpg1.3.0
|
|
|
543 |
'info' => '°T®§',
|
|
|
544 |
'com_added' => '¯d¨¥¤w¥[¤J',
|
|
|
545 |
'alb_updated' => '¬Ûï¤w¸g§ó·s',
|
|
|
546 |
'err_comment_empty' => '¯d¨¥¬OªÅªº !',
|
|
|
547 |
'err_invalid_fext' => '¥u¦³¤U¦Cªº°ÆÀɦW¤~¤¹³\¤W¶Ç : <br /><br />%s.',
|
|
|
548 |
'no_flood' => '©êºp, ¦¹¹Ï¤ù³Ì«á¤@Ó¯d¨¥¬O±z´£¨Ñ<br /><br />±z¥u¥i¥Hקï±zªº¯d¨¥', //cpg1.3.0
|
|
|
549 |
'redirect_msg' => '¶±Âಾ¤¤.<br /><br /><br />«ö \'Ä~Äò\' ¦pªG¶±¨S¦³¦Û°Ê¨ê·s',
|
|
|
550 |
'upl_success' => '¤w¸g¥[¤J±zªº¹Ï¤ù', //cpg1.3.0
|
|
|
551 |
'email_comment_subject' => '¤w¸g¦³¯d¨¥µoªí¦bºô¸ô¬Ûï', //cpg1.3.0
|
|
|
552 |
'email_comment_body' => '¤w¸g¦³¯d¨¥µoªí¦b±zªº¬Ûï. ½Ð¬d¾\'', //cpg1.3.0
|
|
|
553 |
);
|
|
|
554 |
|
|
|
555 |
// ------------------------------------------------------------------------- //
|
|
|
556 |
// File delete.php
|
|
|
557 |
// ------------------------------------------------------------------------- //
|
|
|
558 |
|
|
|
559 |
if (defined('DELETE_PHP')) $lang_delete_php = array(
|
|
|
560 |
'caption' => '»¡©ú',
|
|
|
561 |
'fs_pic' => 'ì¹Ï',
|
|
|
562 |
'del_success' => '§¹¦¨§R°£',
|
|
|
563 |
'ns_pic' => '¼Ð·Ç¤Ø¤o¹Ï¤ù',
|
|
|
564 |
'err_del' => 'µLªk§R°£',
|
|
|
565 |
'thumb_pic' => 'ÁY¹Ï',
|
|
|
566 |
'comment' => '¯d¨¥',
|
|
|
567 |
'im_in_alb' => '¬Û鷺¹Ï¤ù',
|
|
|
568 |
'alb_del_success' => '¬Ûï \'%s\' ¤w§R°£',
|
|
|
569 |
'alb_mgr' => '¬ÛïºÞ²z',
|
|
|
570 |
'err_invalid_data' => '±µ¦¬¨ì¤£¥¿½Tªº¸ê®Æ©ó \'%s\'',
|
|
|
571 |
'create_alb' => '«Ø¥ß¬Ûï \'%s\'',
|
|
|
572 |
'update_alb' => '§ó·s¬Ûï \'%s\' ¼ÐÃD¬° \'%s\' ¯Á¤Þ¬° \'%s\'',
|
|
|
573 |
'del_pic' => '§R°£¹Ï¤ù', //cpg1.3.0
|
|
|
574 |
'del_alb' => '§R°£¬Ûï',
|
|
|
575 |
'del_user' => '§R°£·|û',
|
|
|
576 |
'err_unknown_user' => '©Ò¿ï¾Üªº·|û¤£¦s¦b !',
|
|
|
577 |
'comment_deleted' => '¯d¨¥¤w§R°£',
|
|
|
578 |
);
|
|
|
579 |
|
|
|
580 |
// ------------------------------------------------------------------------- //
|
|
|
581 |
// File displayecard.php
|
|
|
582 |
// ------------------------------------------------------------------------- //
|
|
|
583 |
|
|
|
584 |
// Void
|
|
|
585 |
|
|
|
586 |
// ------------------------------------------------------------------------- //
|
|
|
587 |
// File displayimage.php
|
|
|
588 |
// ------------------------------------------------------------------------- //
|
|
|
589 |
|
|
|
590 |
if (defined('DISPLAYIMAGE_PHP')){
|
|
|
591 |
|
|
|
592 |
$lang_display_image_php = array(
|
|
|
593 |
'confirm_del' => '½T©wn§R°£¦¹¹Ï¤ù¶Ü ? \\n¯d¨¥¤]·|³Q§R°£.', //js-alert //cpg1.3.0
|
|
|
594 |
'del_pic' => '§R°£¦¹¹Ï¤ù', //cpg1.3.0
|
|
|
595 |
'size' => '%s x %s ¹³¯À',
|
|
|
596 |
'views' => '%s ¦¸',
|
|
|
597 |
'slideshow' => '³sÄò¼½©ñ',
|
|
|
598 |
'stop_slideshow' => '°±¤î¼½©ñ',
|
|
|
599 |
'view_fs' => 'ÂI¿ï¹Ï¤ù¥HÆ[¬Ýì¹Ï',
|
|
|
600 |
'edit_pic' => '½s¿è»¡©ú', //cpg1.3.0
|
|
|
601 |
'crop_pic' => 'µô°Å»P±ÛÂà', //cpg1.3.0
|
|
|
602 |
);
|
|
|
603 |
|
|
|
604 |
$lang_picinfo = array(
|
|
|
605 |
'title' =>'¹Ï¤ù¸ê°T', //cpg1.3.0
|
|
|
606 |
'Filename' => 'ÀɮצWºÙ',
|
|
|
607 |
'Album name' => '¬Ûï¦WºÙ',
|
|
|
608 |
'Rating' => 'µû¤À (%s ¦¸§ë²¼)',
|
|
|
609 |
'Keywords' => 'ÃöÁä¦r',
|
|
|
610 |
'File Size' => 'Àɮפj¤p',
|
|
|
611 |
'Dimensions' => '¤Ø¤o',
|
|
|
612 |
'Displayed' => 'Åã¥Ü',
|
|
|
613 |
'Camera' => '¬Û¾÷',
|
|
|
614 |
'Date taken' => '©çÄá¤é´Á',
|
|
|
615 |
'Aperture' => '¥ú°é',
|
|
|
616 |
'Exposure time' => 'Ãn¥ú®É¶¡',
|
|
|
617 |
'Focal length' => 'µJ¶Z',
|
|
|
618 |
'Comment' => '¯d¨¥',
|
|
|
619 |
'addFav'=>'¥[¨ì§Úªº³Ì·R', //cpg1.3.0
|
|
|
620 |
'addFavPhrase'=>'§Úªº³Ì·R', //cpg1.3.0
|
|
|
621 |
'remFav'=>'±q§Úªº³Ì·R²¾°£', //cpg1.3.0
|
|
|
622 |
'iptcTitle'=>'IPTC ¼ÐÃD', //cpg1.3.0
|
|
|
623 |
'iptcCopyright'=>'IPTC ª©Åv', //cpg1.3.0
|
|
|
624 |
'iptcKeywords'=>'IPTC ÃöÁä¦r', //cpg1.3.0
|
|
|
625 |
'iptcCategory'=>'IPTC Ãþ§O', //cpg1.3.0
|
|
|
626 |
'iptcSubCategories'=>'IPTC ¤lÃþ§O', //cpg1.3.0
|
|
|
627 |
);
|
|
|
628 |
|
|
|
629 |
$lang_display_comments = array(
|
|
|
630 |
'OK' => 'OK',
|
|
|
631 |
'edit_title' => '½s¿è¦¹¯d¨¥',
|
|
|
632 |
'confirm_delete' => '½T©wn§R°£¦¹¯d¨¥ ?', //js-alert
|
|
|
633 |
'add_your_comment' => '¥[¤J§Aªº¯d¨¥',
|
|
|
634 |
'name'=>'¦WºÙ',
|
|
|
635 |
'comment'=>'¯d¨¥',
|
|
|
636 |
'your_name' => 'µL¦W¤ó',
|
|
|
637 |
);
|
|
|
638 |
|
|
|
639 |
$lang_fullsize_popup = array(
|
|
|
640 |
'click_to_close' => 'ÂI¿ï¹Ï¤ù¨ÓÃö³¬µøµ¡',
|
|
|
641 |
);
|
|
|
642 |
|
|
|
643 |
}
|
|
|
644 |
|
|
|
645 |
// ------------------------------------------------------------------------- //
|
|
|
646 |
// File ecard.php
|
|
|
647 |
// ------------------------------------------------------------------------- //
|
|
|
648 |
|
|
|
649 |
if (defined('ECARDS_PHP') || defined('DISPLAYECARD_PHP')) $lang_ecard_php =array(
|
|
|
650 |
'title' => '±H¥X ¹q¤l¥d¤ù',
|
|
|
651 |
'invalid_email' => '<b>ĵ§i</b> : ¤£¥¿½Tªº¹q¤l¶l¥ó¦a§} !',
|
|
|
652 |
'ecard_title' => '%s ±Hµ¹§A¤@±i¹q¤l¥d¤ù',
|
|
|
653 |
'error_not_image' => '¹q¤l¥d¤ù¥u¯à±H¥X¹Ï¤ù.', //cpg1.3.0
|
|
|
654 |
'view_ecard' => '¦pªG ¹q¤l¥d¤ù µLªk¥¿½TÅã¥Ü, ½Ð«ö¦¹³sµ²',
|
|
|
655 |
'view_more_pics' => '«ö¦¹³sµ²¬Ý§ó¦h¹Ï¤ù !',
|
|
|
656 |
'send_success' => '§Aªº ¹q¤l¥d¤ù ¤w±H¥X',
|
|
|
657 |
'send_failed' => '©êºp, ¥»¦øªA¾¹µLªk¬°§A±H¥X ¹q¤l¥d¤ù...',
|
|
|
658 |
'from' => '¥Ñ',
|
|
|
659 |
'your_name' => '§Aªº¦WºÙ',
|
|
|
660 |
'your_email' => '§Aªº¹q¤l¶l¥ó',
|
|
|
661 |
'to' => 'µ¹',
|
|
|
662 |
'rcpt_name' => '¦¬¥óªÌ¦WºÙ',
|
|
|
663 |
'rcpt_email' => '¦¬¥óªÌ¹q¤l¶l¥ó',
|
|
|
664 |
'greetings' => '¼ÐÃD',
|
|
|
665 |
'message' => '°T®§¤º®e',
|
|
|
666 |
);
|
|
|
667 |
|
|
|
668 |
// ------------------------------------------------------------------------- //
|
|
|
669 |
// File editpics.php
|
|
|
670 |
// ------------------------------------------------------------------------- //
|
|
|
671 |
|
|
|
672 |
if (defined('EDITPICS_PHP')) $lang_editpics_php = array(
|
|
|
673 |
'pic_info' => 'Àɮ׸ê®Æ', //cpg1.3.0
|
|
|
674 |
'album' => '¬Ûï',
|
|
|
675 |
'title' => '¼ÐÃD',
|
|
|
676 |
'desc' => '´yz',
|
|
|
677 |
'keywords' => 'ÃöÁä¦r',
|
|
|
678 |
'pic_info_str' => '%s × %s - %s KB - %s ¦¸Æ[¬Ý - %s ¦¸µû¤À',
|
|
|
679 |
'approve' => '®Öã¹Ï¤ù', //cpg1.3.0
|
|
|
680 |
'postpone_app' => '©µ¿ð®Öã',
|
|
|
681 |
'del_pic' => '§R°£¹Ï¤ù', //cpg1.3.0
|
|
|
682 |
'read_exif' => '¦A¦¸Åª¨ú EXIF ¸ê®Æ', //cpg1.3.0
|
|
|
683 |
'reset_view_count' => '«³]Æ[¬Ýp¼Æ¾¹',
|
|
|
684 |
'reset_votes' => '«³]µû¤À',
|
|
|
685 |
'del_comm' => '§R°£¯d¨¥',
|
|
|
686 |
'upl_approval' => '®Öã¤W¶Ç',
|
|
|
687 |
'edit_pics' => '½s¿è¹Ï¤ù', //cpg1.3.0
|
|
|
688 |
'see_next' => 'Æ[¬Ý¤U¤@±i¹Ï¤ù', //cpg1.3.0
|
|
|
689 |
'see_prev' => 'Æ[¬Ý«e¤@±i¹Ï¤ù', //cpg1.3.0
|
|
|
690 |
'n_pic' => '%s ±i¹Ï¤ù', //cpg1.3.0
|
|
|
691 |
'n_of_pic_to_disp' => '¹Ï¤ùÅã¥Ü¼Æ¶q', //cpg1.3.0
|
|
|
692 |
'apply' => 'קï', //cpg1.3.0
|
|
|
693 |
'crop_title' => 'CPG ¹Ï¤ù½s¿è¾¹', //cpg1.3.0
|
|
|
694 |
'preview' => '¹wÄý', //cpg1.3.0
|
|
|
695 |
'save' => '¦sÀÉ', //cpg1.3.0
|
|
|
696 |
'save_thumb' =>'¦s¦¨ÁY¹Ï', //cpg1.3.0
|
|
|
697 |
'sel_on_img' =>'¿ï¾Üªº°Ï°ì¥²¶·¦b¹Ï¤ù½d³ò¤º!', //js-alert //cpg1.3.0
|
|
|
698 |
);
|
|
|
699 |
|
|
|
700 |
// ------------------------------------------------------------------------- //
|
|
|
701 |
// File faq.php //cpg1.3.0
|
|
|
702 |
// ------------------------------------------------------------------------- //
|
|
|
703 |
|
|
|
704 |
if (defined('FAQ_PHP')) $lang_faq_php = array(
|
|
|
705 |
'faq' => '±`¨£°ÝÃD¸Ñµª', //cpg1.3.0
|
|
|
706 |
'toc' => '¥Ø¿ý', //cpg1.3.0
|
|
|
707 |
'question' => '°ÝÃD: ', //cpg1.3.0
|
|
|
708 |
'answer' => '¸Ñµª: ', //cpg1.3.0
|
|
|
709 |
);
|
|
|
710 |
|
|
|
711 |
if (defined('FAQ_PHP')) $lang_faq_data = array(
|
|
|
712 |
'¤@¯ë©Ê°ÝÃD»P¸Ñµª', //cpg1.3.0
|
|
|
713 |
array('¬°¤°»ònµù¥U?', 'ºÞ²zû¨M©w¨Ï¥ÎªÌ¬O§_»Ýnµù¥U. µù¥U¦¨¬°·|û¥iÀò±oÃB¥~ªº¥\¯à,¦p ¤W¶ÇÀÉ®×,¦³ §Úªº³Ì·R¦Cªí, ¹ï¼v¹³µû¤À¤Îµoªí¯d¨¥ µ¥µ¥.', 'allow_user_registration', '0'), //cpg1.3.0
|
|
|
714 |
array('¦p¦óµù¥U?', '¨ì "µù¥U" ¥h¶ñ¼gÄæ¦ì¤ºªº¸ê®Æ (³¡¤ÀÄæ¦ì¬O¿ï¶ñªº).<br />¦pªGºÞ²zû¶}±ÒEmail ±Ò¥Î¥\¯à ,¦b§A½T»{°e¥Xµù¥U¸ê®Æ«á §A·|¦¬¨ì¤@«Ê»{ÃÒ«H ±H¨ì§A©Ò¶ñ¼gªº«H½c¤º, ¸Ì±·|»¡©ú¦p¦ó±Ò¥Î§Aªº·|û¸ê®æ. ·|ûµn¤J«e ¥²¶·¥ý§¹¦¨±Ò¥Î°Ê§@.', 'allow_user_registration', '1'), //cpg1.3.0
|
|
|
715 |
array('¦p¦óµn¤J?', '¨ì "µn¤J", ¶ñ¤J§Aªº·|û¦WºÙ¤Î±K½X ¥B¤Ä¿ï "°O¦í§Ú" ¤U¦¸§A¦A¨Óªº®ÉÔ´N·|¦Û°Êµn¤J¤F.<br /><b>ª`·N:¦pªG§AÂI¿ï "°O¦í§Ú Me" ,Cookies ¥\¯à¥²¶·¶}±Ò,¥B¥»¯¸ªºcookie¦s¦b§Aªº¹q¸£¤¤..</b>', 'offline', 0), //cpg1.3.0
|
|
|
716 |
array('¬°¦óµLªkµn¤J?', '§A¤w¸gµù¥U¨Ã±Ò¥Î±b¸¹¤F¶Ü(¦^Âл{ÃÒ¶l¥óªº³sµ²)?. ¨ºÓ³sµ²±N·|±Ò¥Î§Aªº±b¸¹. ¨ä¥Lµn¤J°ÝÃD ½ÐÁpµ¸ºô¯¸ºÞ²zû.', 'offline', 0), //cpg1.3.0
|
|
|
717 |
array('§Ñ°O±K½X¤F«ç»ò¿ì ?', '¦pªG³oÓºô¯¸¦³ "§Ñ°O±K½X¤F" ªº³sµ²,´N«ö¥¦. ¤£µM´NÁpµ¸ºô¯¸ºÞ²zû ½Ð¥Lµ¹§A¤@Ó·sªº±K½X.', 'offline', 0), //cpg1.3.0
|
|
|
718 |
array('§ÚªºemailÅܧó¤F«ç»ò¿ì ?', '¥unµn¤J ¨Ã¥B¨ì "§ÚªºÓ¤H¸ê®Æ" Åܧó§Aªº¹q¤l¶l¥ó¦a§}´N¥i¥H¤F', 'offline', 0), //cpg1.3.0
|
|
|
719 |
array('¦p¦ó§â¹Ï¤ù¦s¨ì "§Úªº³Ì·R "?', 'ÂI¿ï¹Ï¤ù¨Ã¥BÂI«ö "¼v¹³¸ê°T" ³sµ² (<img src="images/info.gif" width="16" height="16" border="0" alt="Picture information" />); ¦b¼v¹³¸ê°T³]©w¸Ì±«ö "¥[¤J§Úªº³Ì·R".<br />ºÞ²zû¥i¯à¦³¹w³]"¼v¹³¸ê°T; .<br />ª`·N:Cookies ¥\¯à¥²¶·¶}±Ò,¥B¥»¯¸ªºcookie¦s¦b§Aªº¹q¸£¤¤.', 'offline', 0), //cpg1.3.0
|
|
|
720 |
array('¦p¦ó¹ï¹Ï¤ùµû¤À ?', 'ÂI«ö¸Ó¼v¹³ÁY¹Ï,¦b¼v¹³©³¤U¥i¥HÂI¿ï§Aªºµû¤À.', 'offline', 0), //cpg1.3.0
|
|
|
721 |
array('¦p¦óµoªí¯d¨¥ ?', 'ÂI«ö¸Ó¼v¹³ÁY¹Ï,¦b¼v¹³©³¤U¥i¥Hµoªí¯d¨¥.', 'offline', 0), //cpg1.3.0
|
|
|
722 |
array('¦p¦ó¤W¶Ç¹Ï¤ù ?', '¨ì "¤W¶Ç¹Ï¤ù"¨Ã¿ï¾Ü§An¤W¶Ç¨ìþ¤@Ó¬Ûï,«ö "ÂsÄý" ¥BÂI¿ïn¤W¶Çªº¹Ï¤ù «ö "¶}±Ò" (§A¥i¥H¥[¤J¼v¹³¼ÐÃD¤Î´yz) µM«á«ö "½T»{"', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
723 |
array('n±qþ¸Ì¤W¶Ç¹Ï¤ù ?', '§A¥i¥H¤W¶Ç¹Ï¤ù¦b "§Úªº¬Ûï". ºÞ²zû¥i¯à¤¹³\§A¤W¶Ç¹Ï¤ù¨ì¥D¬Û鷺.', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
724 |
array('þºØ®æ¦¡©Î¤j¤pªº¼v¹³¥i¥H¤W¶Ç?', '®æ¦¡¸ò¤j¤p (jpg,gif,..etc.) ®Ú¾ÚºÞ²zûªº³]©w.', 'offline', 0), //cpg1.3.0
|
|
|
725 |
array('¤°»ò¬O "§Úªº¬Ûï"?', '"§Úªº¬Ûï" ¬OÓ¤Hªº¬Ûï,Åý·|û¥i¥H¤W¶Ç¤ÎºÞ¸Ì¼v¹³.', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
726 |
array('¦p¦ó·s¼W,×§ï ©Î§R°£¬Ûï ±q "§Úªº¬Ûï"?', '§A¥²¶·¦b "ºÞ²z¼Ò¦¡"<br />¨ì "·s¼W/±Æ§Ç §Úªº¬Ûï"«ö "·s¼WNew". Åܧó "·s¬Ûï" ¨ì§Anªº¦WºÙ.<br />§A¥i¥H¹ï§Aªº¨C¤@Ó¬Ûï«·s©R¦W.<br />«ö "קï;.', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
727 |
array('§Ún¦p¦ó¸T¤î¨ä¥L·|û¬Ý§Úªº¬Ûï?', '§A¥²¶·¦b "ºÞ²z¼Ò¦¡"<br />¨ì "Åܧó§Úªº¬Ûï. ¦b "§ó·s¬Ûï" Äæ¦ì, ¿ï¾Ü§AnÅܧ󪺬Ûï.<br />¦b³o¸Ì, §A¥i¥HÅܧó¬Ûï¦WºÙ ´yz ÁY¹Ï ,¤Î¨îÆ[¬Ý ¯d¨¥ µû¤À ªºÅv.<br />«ö "§ó·s¬Ûï".', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
728 |
array('¦p¦óÆ[¬Ý¨ä¥L·|ûªº¬Ûï?', '¨ì "¬Ûï¥Ø¿ý" ¿ï¾Ü "·|û¬Ûï".', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
729 |
array('¤°»ò¬O cookies?', 'Cookies ¬Oºô¯¸©ñ¦b§A¹q¸£¤¤ªº¤å¦r¸ê®Æ.<br />Cookies ³q±`Åý¨Ï¥ÎªÌ¦A¦¸¦^¨ìºô¯¸®É¦Û°Êµn¤J ¨Ã°O¿ý¨ä¥L³]©w¸ê®Æ.', 'offline', 0), //cpg1.3.0
|
|
|
730 |
array('¦bþ¸Ì¥i¥H¨ú±o³oÓ¬Ûïµ{¦¡?', 'Coppermine ¬O°ò©óGNU GPLªº§K¶O¦h´CÅé¬Ûï. ¥¦¬O¥þ¥\¯àªº ¥B¤ä´©¤£¦Pªº¥¥x. ½Ð¨ì<a href="http://coppermine.sf.net/">Coppermine ªººô¯¸</a> ¨ú±o§ó¦hªº¸ê°T ©Î¬O¤U¸ü¥¦.', 'offline', 0), //cpg1.3.0
|
|
|
731 |
|
|
|
732 |
'ºô¯¸¾É¤Þ', //cpg1.3.0
|
|
|
733 |
array('¤°»ò¬O "¬Ûï¥Ø¿ý "?', '³o±NÅã¥Ü¾ãÓ¬Ûï ¥]§t¨C¤@Ó¤ÀÃþ. ÁY¹Ï¥i¥H³sµ²¨ìÃþ§O¤¤.', 'offline', 0), //cpg1.3.0
|
|
|
734 |
array('¤°»ò¬O "§Úªº¬Ûï "?', '³o¶µ¥\¯àÅý·|û«Ø¥ß¦Û¤vªº¬Ûï,¥i¼W¥[,§R°£,קï¬Ûï. ¨Ã¥B¥i¤W¶ÇÀɮרì¬Ûï¸Ì.', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
735 |
array('¦³¤°»ò®t²§¦b "ºÞ²z¼Ò¦¡" ©M "·|û¼Ò¦¡"?', '³o¶µ¥\¯à, ¦bºÞ²z¼Ò¦¡®É, ¤¹³\·|ûקï¥L̦ۤvªº¬Ûï (¦pªGºÞ²zû¤¹³\ªº¸Ü).', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
736 |
array('¤°»ò¬O "¤W¶Ç¹Ï¤ù "?', '³o¶µ¥\¯à¤¹³\·|û¤W¶Ç¼v¹³(Àɮפj¤p¤Î®æ¦¡¨ÌºÞ²zû³]©w) ¨ì«ü©wªº¬Ûï.', 'allow_private_albums', 0), //cpg1.3.0
|
|
|
737 |
array('¤°»ò¬O "³Ì·s¤W¶Ç "?', '³o¶µ¥\¯àÅã¥Ü³Ì·s¤W¶Ç¨ì¬Û諸ÀÉ®×.', 'offline', 0), //cpg1.3.0
|
|
|
738 |
array('¤°»ò¬O "³Ì·s¯d¨¥ "?', '³o¶µ¥\¯à·|û¹ï¼v¹³µoªíªº³Ì·s¯d¨¥.', 'offline', 0), //cpg1.3.0
|
|
|
739 |
array('¤°»ò¬O "¼öªù¹Ï¤ù "?', '³o¶µ¥\¯àÅã¥Ü³QÆ[¬Ý³Ì¦h¦¸ªº¼v¹³,¤£½×¬O·|û©Î³X«È.', 'offline', 0), //cpg1.3.0
|
|
|
740 |
array('¤°»ò¬O "³Ì°ªµû¤À "?', '³o¶µ¥\¯àÅã¥Ü·|ûµû¤À³Ì°ªªº¼v¹³, Åã¥Ü¥§¡¤À¼Æ(¨Ò¦p: ¤Ó·|û¦Uµ¹¤@Óµû¤À <img src="images/rating3.gif" width="65" height="14" border="0" alt="" />: ¼v¹³±N¦³¥§¡µû¤À <img src="images/rating3.gif" width="65" height="14" border="0" alt="" /> ;¤Ó·|ûµû¤À±q 1 ¨ì 5 (1,2,3,4,5) ¥§¡µ²ªG±N¬O <img src="images/rating3.gif" width="65" height="14" border="0" alt="" /> .)<br />µû¤À±q <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" /> (³Ì®t).', 'offline', 0), //cpg1.3.0
|
|
|
741 |
array('¤°»ò¬O "§Úªº³Ì·R "?', '³o¶µ¥\¯àÅý·|ûÀx¦s³ß·Rªº¼v¹³,»Ýn¦³cookie¸ê°T.', 'offline', 0), //cpg1.3.0
|
|
|
742 |
);
|
|
|
743 |
|
|
|
744 |
|
|
|
745 |
// ------------------------------------------------------------------------- //
|
|
|
746 |
// File forgot_passwd.php //cpg1.3.0
|
|
|
747 |
// ------------------------------------------------------------------------- //
|
|
|
748 |
|
|
|
749 |
if (defined('FORGOT_PASSWD_PHP')) $lang_forgot_passwd_php = array(
|
|
|
750 |
'forgot_passwd' => '§Ñ°O±K½X', //cpg1.3.0
|
|
|
751 |
'err_already_logged_in' => '§A¤w¸gµn¤J¤F!', //cpg1.3.0
|
|
|
752 |
'enter_username_email' => '¿é¤J§Aªº·|û¦WºÙ©Î email ', //cpg1.3.0
|
|
|
753 |
'submit' => 'Ä~Äò', //cpg1.3.0
|
|
|
754 |
'failed_sending_email' => 'µLªk±H¥X±K½X´£¿ô¶l¥ó !', //cpg1.3.0
|
|
|
755 |
'email_sent' => '¤w¸g±N§Aªº·|û¦WºÙ»P±K½X±H¨ì %s', //cpg1.3.0
|
|
|
756 |
'err_unk_user' => '¨S¦³³oÓ·|û!', //cpg1.3.0
|
|
|
757 |
'passwd_reminder_subject' => '%s - ±K½X´£¿ô', //cpg1.3.0
|
|
|
758 |
'passwd_reminder_body' => '±zªºµn¤J¸ê®Æ¦p¤U:
|
|
|
759 |
Username: %s
|
|
|
760 |
Password: %s
|
|
|
761 |
«ö %s µn¤J.', //cpg1.3.0
|
|
|
762 |
);
|
|
|
763 |
|
|
|
764 |
// ------------------------------------------------------------------------- //
|
|
|
765 |
// File groupmgr.php
|
|
|
766 |
// ------------------------------------------------------------------------- //
|
|
|
767 |
|
|
|
768 |
if (defined('GROUPMGR_PHP')) $lang_groupmgr_php = array(
|
|
|
769 |
'group_name' => '¸s²Õ¦WºÙ',
|
|
|
770 |
'disk_quota' => 'ºÏºÐ°tÃB',
|
|
|
771 |
'can_rate' => '¤¹³\¹Ï¤ùµû¤À', //cpg1.3.0
|
|
|
772 |
'can_send_ecards' => '¤¹³\±H¥X¥d¤ù',
|
|
|
773 |
'can_post_com' => '¤¹³\¶K¥X¯d¨¥',
|
|
|
774 |
'can_upload' => '¤¹³\¤W¶ÇÀÉ®×', //cpg1.3.0
|
|
|
775 |
'can_have_gallery' => '¤¹³\¨p¤H¬Ûï',
|
|
|
776 |
'apply' => 'קï',
|
|
|
777 |
'create_new_group' => '«Ø¥ß·s¸s²Õ',
|
|
|
778 |
'del_groups' => '§R°£©Ò¿ï¾Üªº¸s²Õ',
|
|
|
779 |
'confirm_del' => 'ĵ§i, ·í§R°£¤F¤@Ó¸s²Õ, ÄÝ©ó¸Ó¸s²Õªº¥Î¤á±N³QÂಾ¦Ü \'Registered\' ¸s²Õ¤¤ !\n\nn½T©wn§R°£¶Ü ?', //js-alert //cpg1.3.0
|
|
|
780 |
'title' => 'ºÞ²z·|û¸s²Õ',
|
|
|
781 |
'approval_1' => '¤½¶}¬Ûï¤W¶Ç®Öã (1)',
|
|
|
782 |
'approval_2' => '¨p¤H¬Ûï¤W¶Ç®Öã (2)',
|
|
|
783 |
'upload_form_config' => '¤W¶Ç®æ¦¡³]©w', //cpg1.3.0
|
|
|
784 |
'upload_form_config_values' => array( '¤W¶Ç¤@ÓÀÉ®×', '¦hÀɤW¶Ç', '¥u¤W¶ÇURI ', '¥u¤W¶ÇZIP ', 'File-URI', 'File-ZIP', 'URI-ZIP', 'File-URI-ZIP'), //cpg1.3.0
|
|
|
785 |
'custom_user_upload'=>'·|û¥i¥Îªº¤W¶Ç®Ø¼Æ¶q?', //cpg1.3.0
|
|
|
786 |
'num_file_upload'=>'³Ì¤j/¹ê»Ú ÀÉ®× ¤W¶Ç®Ø¼Æ¶q', //cpg1.3.0
|
|
|
787 |
'num_URI_upload'=>'³Ì¤j/¹ê»Ú URI ¤W¶Ç®Ø¼Æ¶q', //cpg1.3.0
|
|
|
788 |
'note1' => '<b>(1)</b> ¤W¶Ç¹Ï¤ù¦Ü¤½¶}¬Ûï»ÝºÞ²zû®Öã',
|
|
|
789 |
'note2' => '<b>(2)</b> ¤W¶Ç¹Ï¤ù¦Ü¨p¤H¬Ûï»ÝºÞ²zû®Öã',
|
|
|
790 |
'notes' => 'ª`·N',
|
|
|
791 |
);
|
|
|
792 |
|
|
|
793 |
// ------------------------------------------------------------------------- //
|
|
|
794 |
// File index.php
|
|
|
795 |
// ------------------------------------------------------------------------- //
|
|
|
796 |
|
|
|
797 |
if (defined('INDEX_PHP')){
|
|
|
798 |
|
|
|
799 |
$lang_index_php = array(
|
|
|
800 |
'welcome' => 'Åwªï !',
|
|
|
801 |
);
|
|
|
802 |
|
|
|
803 |
$lang_album_admin_menu = array(
|
|
|
804 |
'confirm_delete' => '½T©wn§R°£³o¬Ûï ? \\n©Ò¦³¹Ï¤ù¤Î¯d¨¥³£·|³Q§R°£.', //js-alert //cpg1.3.0
|
|
|
805 |
'delete' => '§R°£',
|
|
|
806 |
'modify' => 'ÄÝ©Ê',
|
|
|
807 |
'edit_pics' => '½s¿è', //cpg1.3.0
|
|
|
808 |
);
|
|
|
809 |
|
|
|
810 |
$lang_list_categories = array(
|
|
|
811 |
'home' => '¬Ûﺶ',
|
|
|
812 |
'stat1' => '<b>[pictures]</b> ±i¼v¹³©ó <b>[albums]</b> Ó¬Ûï¤Î <b>[cat]</b> ÓÃþ§O, ¦³ <b>[comments]</b> Ó¯d¨¥, ³QÆ[¬Ý <b>[views]</b> ¦¸', //cpg1.3.0
|
|
|
813 |
'stat2' => '<b>[pictures]</b> ±i¼v¹³©ó <b>[albums]</b> Ó¬Ûï, ³QÆ[¬Ý <b>[views]</b> ¦¸', //cpg1.3.0
|
|
|
814 |
'xx_s_gallery' => '%s\'s ¬Ûï',
|
|
|
815 |
'stat3' => '<b>[pictures]</b> ±i¼v¹³©ó <b>[albums]</b> Ó¬Ûï, ¦³ <b>[comments]</b> Ó¯d¨¥, ³QÆ[¬Ý <b>[views]</b> ¦¸', //cpg1.3.0
|
|
|
816 |
);
|
|
|
817 |
|
|
|
818 |
$lang_list_users = array(
|
|
|
819 |
'user_list' => '·|û¦Cªí',
|
|
|
820 |
'no_user_gal' => 'ÁÙ¨S¦³·|û¬Ûï',
|
|
|
821 |
'n_albums' => '%s Ó¬Ûï',
|
|
|
822 |
'n_pics' => '%s ±i¼v¹³', //cpg1.3.0
|
|
|
823 |
);
|
|
|
824 |
|
|
|
825 |
$lang_list_albums = array(
|
|
|
826 |
'n_pictures' => '%s ±i¼v¹³', //cpg1.3.0
|
|
|
827 |
'last_added' => ', ³Ì·s¼v¹³©ó %s',
|
|
|
828 |
);
|
|
|
829 |
|
|
|
830 |
}
|
|
|
831 |
|
|
|
832 |
// ------------------------------------------------------------------------- //
|
|
|
833 |
// File login.php
|
|
|
834 |
// ------------------------------------------------------------------------- //
|
|
|
835 |
|
|
|
836 |
if (defined('LOGIN_PHP')) $lang_login_php = array(
|
|
|
837 |
'login' => 'µn¤J',
|
|
|
838 |
'enter_login_pswd' => '¿é¤J·|û¦WºÙ©M±K½X',
|
|
|
839 |
'username' => '·|û¦WºÙ',
|
|
|
840 |
'password' => '±K½X',
|
|
|
841 |
'remember_me' => '°O¦í§Ú',
|
|
|
842 |
'welcome' => 'Åwªï %s ...',
|
|
|
843 |
'err_login' => '*** µLªkµn¤J. ½Ð«¸Õ ***',
|
|
|
844 |
'err_already_logged_in' => '±z¤w¸gµn¤J !',
|
|
|
845 |
'forgot_password_link' => '§Ñ°O±K½X¤F', //cpg1.3.0
|
|
|
846 |
);
|
|
|
847 |
|
|
|
848 |
// ------------------------------------------------------------------------- //
|
|
|
849 |
// File logout.php
|
|
|
850 |
// ------------------------------------------------------------------------- //
|
|
|
851 |
|
|
|
852 |
if (defined('LOGOUT_PHP')) $lang_logout_php = array(
|
|
|
853 |
'logout' => 'µn¥X',
|
|
|
854 |
'bye' => '¦A¨£ %s ...',
|
|
|
855 |
'err_not_loged_in' => '±zÁÙ¨S¦³µn¤J !',
|
|
|
856 |
);
|
|
|
857 |
|
|
|
858 |
// ------------------------------------------------------------------------- //
|
|
|
859 |
// File phpinfo.php //cpg1.3.0
|
|
|
860 |
// ------------------------------------------------------------------------- //
|
|
|
861 |
|
|
|
862 |
if (defined('PHPINFO_PHP')) $lang_phpinfo_php = array(
|
|
|
863 |
'php_info' => 'PHP ¸ê®Æ', //cpg1.3.0
|
|
|
864 |
'explanation' => '³o¬O¥Ñ PHP-function ²£¥Í <a href="http://www.php.net/phpinfo">phpinfo()</a>, Copermine ºI¨ú³¡¤À¤º®eÅã¥Ü.', //cpg1.3.0
|
|
|
865 |
'no_link' => 'Åý¨ä¥L¤H¬Ý¨ì§Aªº phpinfo ·|¦³¦w¥þ¤Wªº·ÀI, ³o´N¬O¬°¦ó ·í§A¥HºÞ²zû¨¤Àµn¤J®É¤~·|¬Ý¨ì¦¹¶ªºì¦]. §A¤£¯à±N¥»¶ªº³sµ²µ¹¨ä¥L¤H¦]¬°·|Åã¥Ü¦s¨ú¿ù»~.', //cpg1.3.0
|
|
|
866 |
);
|
|
|
867 |
|
|
|
868 |
// ------------------------------------------------------------------------- //
|
|
|
869 |
// File modifyalb.php
|
|
|
870 |
// ------------------------------------------------------------------------- //
|
|
|
871 |
|
|
|
872 |
if (defined('MODIFYALB_PHP')) $lang_modifyalb_php = array(
|
|
|
873 |
'upd_alb_n' => '§ó·s¬Ûï %s',
|
|
|
874 |
'general_settings' => '¤@¯ë³]©w',
|
|
|
875 |
'alb_title' => '¬Ûï¼ÐÃD',
|
|
|
876 |
'alb_cat' => '¬ÛïÃþ§O',
|
|
|
877 |
'alb_desc' => '¬Ûï´yz',
|
|
|
878 |
'alb_thumb' => '¬ÛïÁY¹Ï',
|
|
|
879 |
'alb_perm' => '¬ÛïÅv',
|
|
|
880 |
'can_view' => '¤¹³\Æ[¬Ý¬Û諸·|û',
|
|
|
881 |
'can_upload' => '³X«È¥i¤W¶Ç¹Ï¤ù',
|
|
|
882 |
'can_post_comments' => '³X«È¥iµoªí¯d¨¥',
|
|
|
883 |
'can_rate' => '³X«È¥i¬°¹Ï¤ùµû¤À',
|
|
|
884 |
'user_gal' => '·|û¬Ûï',
|
|
|
885 |
'no_cat' => '* ¨S¦³Ãþ§O *',
|
|
|
886 |
'alb_empty' => '¬Ûï¬OªÅªº',
|
|
|
887 |
'last_uploaded' => '³Ìªñ¤W¶Ç',
|
|
|
888 |
'public_alb' => '¥ô¦ó¤H (¤½¶}¬Ûï)',
|
|
|
889 |
'me_only' => '¥u¦³§Ú',
|
|
|
890 |
'owner_only' => '¥u¦³¬Ûï¾Ö¦³¤H (%s) ',
|
|
|
891 |
'groupp_only' => ' \'%s\' ¸s²Õªº·|û',
|
|
|
892 |
'err_no_alb_to_modify' => '¸ê®Æ®w¤º¨S¦³±z¥iק諸¬Ûï.',
|
|
|
893 |
'update' => '§ó·s¬Ûï', //cpg1.3.0
|
|
|
894 |
'notice1' => '(*) ®Ú¾Ú %s¸s²Õ%s ³]©w', //cpg1.3.0 (do not translate %s!)
|
|
|
895 |
);
|
|
|
896 |
|
|
|
897 |
// ------------------------------------------------------------------------- //
|
|
|
898 |
// File ratepic.php
|
|
|
899 |
// ------------------------------------------------------------------------- //
|
|
|
900 |
|
|
|
901 |
if (defined('RATEPIC_PHP')) $lang_rate_pic_php = array(
|
|
|
902 |
'already_rated' => '©êºp, ±z¤w¸g¬°¦¹¹Ï¤ùµû¤À', //cpg1.3.0
|
|
|
903 |
'rate_ok' => '±zªºµû¤À¤w¸g³Q±µ¨ü',
|
|
|
904 |
'forbidden' => '§A¤£¯à¹ï§A¦Û¤vªº¹Ï¤ùµû¤À.', //cpg1.3.0
|
|
|
905 |
);
|
|
|
906 |
|
|
|
907 |
// ------------------------------------------------------------------------- //
|
|
|
908 |
// File register.php & profile.php
|
|
|
909 |
// ------------------------------------------------------------------------- //
|
|
|
910 |
|
|
|
911 |
if (defined('REGISTER_PHP') || defined('PROFILE_PHP')) {
|
|
|
912 |
|
|
|
913 |
$lang_register_disclamer = <<<EOT
|
|
|
914 |
{SITE_NAME} ªººÞ²zû·|¾¨§Ö¾ã²z·|¤Þ°_¤Ï·Pªº¸ê®Æ, ¦ý§Ṳ́£¥i¯à¼f¬d¨C¤@¥÷¤å¥ó. ¦]¦¹±z¥²»Ý¦P·N©Ò¦³¤å¥ó¥u¬O¥Nªí§@ªÌªº¥ß³õ¤Î·N¨£, ¤£¥NªíºÞ²z¤Hûªº¥ß³õ (°£¤F¥Ñ¥L̶K¥X) ¨Ã¤£t¥ô¦óªk«ß³d¥ô.<br />
|
|
|
915 |
<br />
|
|
|
916 |
±z¥²»Ý¦P·N¤£¥i±i¶K¥ô¦ó¦â±¡, ¼É¤O, ¤£¨}, ¤£¥¿·í, ¤£°·±d, §«®`°ê®a¦w¥þ, ©Î¥ô¦ó¥i¯à¹Hªkªº¤å¥ó. {SITE_NAME} ¤Hû¦b¥ô¦ó®ÉÔ³£¦³Åv¹LÂo¨Ã½s¿è±z±i¶Kªº¤º®e. ¨Ã¥B·|û¯d¦b¥»¯¸¤ºªº¸ê®Æ¤w¦s¦b¸ê®Æ®w¤¤. ¥½¸g±zªº¦P·N, §Ṳ́£·|±N±zªº¸ê®ÆÂ൹¨ä¥L¤H¨Ï¥Î, ¤£¹L§Ṳ́£·|¬°¥ô¦ó¦]Àb«È¦æ¬°¦Ó¥~¬ªªº¸ê®Æt¥ô¦ó³d¥ô.<br />
|
|
|
917 |
<br />
|
|
|
918 |
¥»¯¸¨Ï¥Î cookies ¦b±zªº¹q¸£¤W¨ÓÀx¦s¸ê°T. ³o¼Ë¬O¤è«K±z§ó´r§ÖÂsÄý. ±zªº¹q¤l¶l¥ó¦a§}¥u¬OÅý§ÚÌ»{ÃÒ±zªº¸ê®Æ¦Ó¤w.<br />
|
|
|
919 |
<br />
|
|
|
920 |
«ö¤U '§Ú¦P·N' ¥Nªí±z¦P·N¥H¤W±ø´Ú.
|
|
|
921 |
EOT;
|
|
|
922 |
|
|
|
923 |
$lang_register_php = array(
|
|
|
924 |
'page_title' => '·|ûµù¥U',
|
|
|
925 |
'term_cond' => '±ø´Ú»P³W«h',
|
|
|
926 |
'i_agree' => '§Ú¦P·N',
|
|
|
927 |
'submit' => '½T»{µù¥U',
|
|
|
928 |
'err_user_exists' => '±z©Ò¶ñ¼gªº·|û¦WºÙ¤w³Q¨ä¥L·|û¨Ï¥Î, ½Ð«¿ï¤@Ó',
|
|
|
929 |
'err_password_mismatch' => '¨âÓ±K½X¤£¦X, ½Ð«¶ñ¤@¦¸',
|
|
|
930 |
'err_uname_short' => '·|û¦WºÙ¦Ü¤Ö»Ý 2 Ó¦r¤¸',
|
|
|
931 |
'err_password_short' => '±K½X¦Ü¤Ö»Ý 2 Ó¦r¤¸',
|
|
|
932 |
'err_uname_pass_diff' => '·|û¦WºÙ©M±K½X¤£¥i¥H¬Û¦P',
|
|
|
933 |
'err_invalid_email' => '¹q¤l¶l¥ó¤£¥¿½T',
|
|
|
934 |
'err_duplicate_email' => '³oÓ¹q¤l¶l¥ó¤w¸g³Q¨ä¥L·|û¨Ï¥Î',
|
|
|
935 |
'enter_info' => '¿é¤Jµù¥U¸ê®Æ',
|
|
|
936 |
'required_info' => '¥²¶ñªº¸ê®Æ',
|
|
|
937 |
'optional_info' => '¿ï¶ñªº¸ê®Æ',
|
|
|
938 |
'username' => '·|û¦WºÙ',
|
|
|
939 |
'password' => '·|û±K½X',
|
|
|
940 |
'password_again' => '½T»{±K½X',
|
|
|
941 |
'email' => '¹q¤l¶l¥ó',
|
|
|
942 |
'location' => '©~¦í¦a°Ï',
|
|
|
943 |
'interests' => '¿³½ì',
|
|
|
944 |
'website' => 'Ó¤Hºô¯¸',
|
|
|
945 |
'occupation' => '¾·~',
|
|
|
946 |
'error' => '¿ù»~',
|
|
|
947 |
'confirm_email_subject' => '%s - µù¥U»{ÃÒ',
|
|
|
948 |
'information' => '°T®§',
|
|
|
949 |
'failed_sending_email' => '©Òµù¥Uªº¹q¤l¶l¥óµLªk±H¥X !',
|
|
|
950 |
'thank_you' => '·PÁ±zªºµù¥U.<br /><br />¤@«Ê§t¦³¦p¦ó±Ò¥Î±b¸¹ªº¹q¤l¶l¥ó±N·|°e¨ì±z©Ò´£¨Ñªº«H½c.',
|
|
|
951 |
'acct_created' => '±zªº±b¸¹¤w¸g«Ø¥ß, ²{¦b±z¥i¥Hµn¤J',
|
|
|
952 |
'acct_active' => '±zªº±b¸¹¤w¸g±Ò¥Î, ²{¦b±z¥i¥Hµn¤J',
|
|
|
953 |
'acct_already_act' => '±zªº±b¸¹¤w¸g±Ò¥Î !',
|
|
|
954 |
'acct_act_failed' => '¦¹±b¸¹µLªk±Ò¥Î !',
|
|
|
955 |
'err_unk_user' => '©Ò¿ï¾Üªº·|û¨Ã¤£¦s¦b !',
|
|
|
956 |
'x_s_profile' => '%s\'ªºÓ¤H¸ê®Æ',
|
|
|
957 |
'group' => '¸s²Õ',
|
|
|
958 |
'reg_date' => '¥[¤J¤é´Á',
|
|
|
959 |
'disk_usage' => 'ºÏºÐ¨Ï¥Î¶q',
|
|
|
960 |
'change_pass' => 'קï±K½X',
|
|
|
961 |
'current_pass' => '¥Ø«eªº±K½X',
|
|
|
962 |
'new_pass' => '·s±K½X',
|
|
|
963 |
'new_pass_again' => '½T»{·s±K½X',
|
|
|
964 |
'err_curr_pass' => '¥Ø«eªº±K½X¤£¥¿½T',
|
|
|
965 |
'apply_modif' => 'קï',
|
|
|
966 |
'change_pass' => 'קï±K½X',
|
|
|
967 |
'update_success' => '§AªºÓ¤H¸ê®Æ¤w¸g§ó·s',
|
|
|
968 |
'pass_chg_success' => '§Aªº±K½X¤w¸gקï',
|
|
|
969 |
'pass_chg_error' => '§Aªº±K½X¨S¦³×§ï',
|
|
|
970 |
'notify_admin_email_subject' => '%s - µù¥U³qª¾', //cpg1.3.0
|
|
|
971 |
'notify_admin_email_body' => '¦³¤@Ó·s·|û¦WºÙ "%s" ¤w¸g¦b§Aªº¬Ûïµù¥U', //cpg1.3.0
|
|
|
972 |
);
|
|
|
973 |
|
|
|
974 |
$lang_register_confirm_email = <<<EOT
|
|
|
975 |
·PÁ±z¦b {SITE_NAME} ªºµù¥U
|
|
|
976 |
|
|
|
977 |
±zªº·|û¦WºÙ : "{USER_NAME}"
|
|
|
978 |
±zªº±K½X : "{PASSWORD}"
|
|
|
979 |
|
|
|
980 |
½Ð±z«ö¤U±ªº³sµ²¥H±Ò°Ê±zªº±b¸¹
|
|
|
981 |
©ÎªÌ§â¦¹³sµ²¶K¨ìÂsÄý¾¹¤W.
|
|
|
982 |
|
|
|
983 |
{ACT_LINK}
|
|
|
984 |
|
|
|
985 |
Åwªï§A(©p),
|
|
|
986 |
|
|
|
987 |
{SITE_NAME} ºÞ²z¤p²Õ
|
|
|
988 |
|
|
|
989 |
EOT;
|
|
|
990 |
|
|
|
991 |
}
|
|
|
992 |
|
|
|
993 |
// ------------------------------------------------------------------------- //
|
|
|
994 |
// File reviewcom.php
|
|
|
995 |
// ------------------------------------------------------------------------- //
|
|
|
996 |
|
|
|
997 |
if (defined('REVIEWCOM_PHP')) $lang_reviewcom_php = array(
|
|
|
998 |
'title' => 'Æ[¬Ý¯d¨¥',
|
|
|
999 |
'no_comment' => 'ÁÙ¨S¦³¯d¨¥¥i¥HÆ[¬Ý',
|
|
|
1000 |
'n_comm_del' => '%s Ó¯d¨¥¤w§R°£',
|
|
|
1001 |
'n_comm_disp' => 'Åã¥Üªº¯d¨¥¼Æ¶q',
|
|
|
1002 |
'see_prev' => '¬Ý«e¤@Ó',
|
|
|
1003 |
'see_next' => '¬Ý¤U¤@Ó',
|
|
|
1004 |
'del_comm' => '§R°£©Ò¿ïªº¯d¨¥',
|
|
|
1005 |
);
|
|
|
1006 |
|
|
|
1007 |
|
|
|
1008 |
// ------------------------------------------------------------------------- //
|
|
|
1009 |
// File search.php - OK
|
|
|
1010 |
// ------------------------------------------------------------------------- //
|
|
|
1011 |
|
|
|
1012 |
if (defined('SEARCH_PHP')) $lang_search_php = array(
|
|
|
1013 |
|
|
|
1014 |
);
|
|
|
1015 |
|
|
|
1016 |
// ------------------------------------------------------------------------- //
|
|
|
1017 |
// File searchnew.php
|
|
|
1018 |
// ------------------------------------------------------------------------- //
|
|
|
1019 |
|
|
|
1020 |
if (defined('SEARCHNEW_PHP')) $lang_search_new_php = array(
|
|
|
1021 |
'page_title' => '·j´M·s¹Ï¤ù', //cpg1.3.0
|
|
|
1022 |
'select_dir' => '¿ï¾Ü¥Ø¿ý',
|
|
|
1023 |
'select_dir_msg' => '¥»¥\¯à¥i¥HÅý§A¥Î FTP ¤W¶Ç¾ã§å¹Ï¤ù.<br /><br />½Ð¿ï¾Ü§A¤w¤W¶Ç¹Ï¤ùªº¥Ø¿ý', //cpg1.3.0
|
|
|
1024 |
'no_pic_to_add' => '¨S¦³¹Ï¤ù¥i¥H¥[¤J', //cpg1.3.0
|
|
|
1025 |
'need_one_album' => '¨Ï¥Î¦¹¥\¯à¥²»Ý¦Ü¤Ön¦³¤@Ó¬Ûï',
|
|
|
1026 |
'warning' => 'ĵ§i',
|
|
|
1027 |
'change_perm' => 'µ{¦¡µLªk¼g¤J³oӥؿý, ½ÐקïÅv¦Ü 755 ©Î 777 «á¦A¸Õ¤@¦¸ !', //cpg1.3.0
|
|
|
1028 |
'target_album' => '<b>§â¹Ï¤ù¥Ñ "</b>%s<b>" ©ñ¨ì </b>%s', //cpg1.3.0
|
|
|
1029 |
'folder' => '¸ê®Æ§¨',
|
|
|
1030 |
'image' => '¹Ï¤ù',
|
|
|
1031 |
'album' => '¬Ûï',
|
|
|
1032 |
'result' => 'µ²ªG',
|
|
|
1033 |
'dir_ro' => 'µLªk¼g¤J. ',
|
|
|
1034 |
'dir_cant_read' => 'µLªkŪ¨ú. ',
|
|
|
1035 |
'insert' => '·s¼W¹Ï¤ù¦Ü¬Ûï', //cpg1.3.0
|
|
|
1036 |
'list_new_pic' => '·s¹Ï¤ù¦Cªí', //cpg1.3.0
|
|
|
1037 |
'insert_selected' => '¥[¤J©Ò¿ï¾Üªº¹Ï¤ù', //cpg1.3.0
|
|
|
1038 |
'no_pic_found' => '¨S¦³§ä¨ì·s¹Ï¤ù', //cpg1.3.0
|
|
|
1039 |
'be_patient' => '½Ð@¤ßµ¥Ô, µ{¦¡»Ýn¤@ÂI®É¶¡¨Ó¥[¤J©Ò¿ï¹Ï¤ù', //cpg1.3.0
|
|
|
1040 |
'no_album' => '¨S¦³¿ï¾Üªº¬Ûï', //cpg1.3.0
|
|
|
1041 |
'notes' => '<ul>'.
|
|
|
1042 |
'<li><b>OK</b> : ªí¥Ü¹Ï¤ù¤w¦¨¥\³Q¥[¤J'.
|
|
|
1043 |
'<li><b>DP</b> : ªí¥Ü¹Ï¤ù«ÂЩΤw¦s¦b¸ê®Æ®w'.
|
|
|
1044 |
'<li><b>PB</b> : ªí¥Ü¹Ï¤ùµLªk¥[¤J, ½ÐÀˬd³]©w©Î¹Ï¤ù¦s©ñ¥Ø¿ýªºÅv'.
|
|
|
1045 |
'<li><b>NA</b> : ªí¥Ü§AÁÙ¨S¦³¿ï¾Ü¹Ï¤ùªº¬Ûï, «ö \'<a href="javascript:history.back(1)">ªð¦^</a>\' ¨Ã¿ï¾Ü¬Ûï. ¦pªG§A¨S¦³¬Ûï <a href="albmgr.php">½Ð¥ý«Ø¥ß¤@Ó</a></li>'.
|
|
|
1046 |
'<li>¦pªG OK, DP, PB \'²Å¸¹\' ¨S¦³Åã¥Ü½Ð«öÃa±¼ªº¹Ï¤ù¬d¬Ý PHP Åã¥Üªº¿ù»~°T®§'.
|
|
|
1047 |
'<li>¦pªGÂsÄý¾¹¹O®É, ½Ð«ö«·s¾ã²z'.
|
|
|
1048 |
'</ul>', //cpg1.3.0
|
|
|
1049 |
'select_album' => '¿ï¾Ü¬Ûï', //cpg1.3.0
|
|
|
1050 |
'check_all' => '¥þ¿ï', //cpg1.3.0
|
|
|
1051 |
'uncheck_all' => '³£¤£¿ï', //cpg1.3.0
|
|
|
1052 |
);
|
|
|
1053 |
|
|
|
1054 |
|
|
|
1055 |
// ------------------------------------------------------------------------- //
|
|
|
1056 |
// File thumbnails.php
|
|
|
1057 |
// ------------------------------------------------------------------------- //
|
|
|
1058 |
|
|
|
1059 |
// Void
|
|
|
1060 |
|
|
|
1061 |
// ------------------------------------------------------------------------- //
|
|
|
1062 |
// File banning.php
|
|
|
1063 |
// ------------------------------------------------------------------------- //
|
|
|
1064 |
|
|
|
1065 |
if (defined('BANNING_PHP')) $lang_banning_php = array(
|
|
|
1066 |
'title' => 'ªý¾×·|û',
|
|
|
1067 |
'user_name' => '·|û¦WºÙ',
|
|
|
1068 |
'ip_address' => 'IP¦ì§}',
|
|
|
1069 |
'expiry' => '´Á¡]ªÅ¥Õ¥Nªí¥Ã¤[°±Åv¡^',
|
|
|
1070 |
'edit_ban' => 'Àx¦sקï',
|
|
|
1071 |
'delete_ban' => '§R°£',
|
|
|
1072 |
'add_new' => '·s¼Wªý¾×·|û',
|
|
|
1073 |
'add_ban' => '·s¼W',
|
|
|
1074 |
'error_user' => '§ä¤£¨ì¸Ó·|ûªº¦WºÙ!§A¨S¥´¿ù§a.. ', //cpg1.3.0
|
|
|
1075 |
'error_specify' => '§A»Ýn¨ãÅé«ü©ú·|û¦WºÙ©ÎIP¦ì§}', //cpg1.3.0
|
|
|
1076 |
'error_ban_id' => 'µL®Äªº ID!', //cpg1.3.0
|
|
|
1077 |
'error_admin_ban' => '§O¾x¤F §AµLªk±N¦Û¤v°±Åv!', //cpg1.3.0
|
|
|
1078 |
'error_server_ban' => '§An±N¦Û¤vªº¦øªA¾¹°±Åv? «u..¤£n¦AAÄ_¤F...', //cpg1.3.0
|
|
|
1079 |
'error_ip_forbidden' => '§AµLªk¸T¤î³oÓ IP - ¥¦¬O non-routable!', //cpg1.3.0
|
|
|
1080 |
'lookup_ip' => '¬d¬Ý IP ¦ì§}', //cpg1.3.0
|
|
|
1081 |
'submit' => '°õ¦æ!', //cpg1.3.0
|
|
|
1082 |
);
|
|
|
1083 |
|
|
|
1084 |
// ------------------------------------------------------------------------- //
|
|
|
1085 |
// File upload.php
|
|
|
1086 |
// ------------------------------------------------------------------------- //
|
|
|
1087 |
|
|
|
1088 |
if (defined('UPLOAD_PHP')) $lang_upload_php = array(
|
|
|
1089 |
'title' => '¤W¶ÇÀÉ®×', //cpg1.3.0
|
|
|
1090 |
'custom_title' => '¤W¶Ç¿ï¶µªí', //cpg1.3.0
|
|
|
1091 |
'cust_instr_1' => '§A¥i¥H±q¤U¦C ¿ï¾Ü¤@Ó¤W¶Ç®Ø ¶i¦æ¤W¶Ç.', //cpg1.3.0
|
|
|
1092 |
'cust_instr_2' => '¿ï¾Ü¤W¶Ç®Ø¸¹', //cpg1.3.0
|
|
|
1093 |
'cust_instr_3' => 'ÀɮפW¶Ç®Ø: %s', //cpg1.3.0
|
|
|
1094 |
'cust_instr_4' => 'URI/URL ¤W¶Ç®Ø: %s', //cpg1.3.0
|
|
|
1095 |
'cust_instr_5' => 'URI/URL ¤W¶Ç®Ø:', //cpg1.3.0
|
|
|
1096 |
'cust_instr_6' => 'ÀɮפW¶Ç®Ø:', //cpg1.3.0
|
|
|
1097 |
'cust_instr_7' => '½Ð¿é¤J±z¥Ø«e»Ýnªº ¨C¤@ºØ¤W¶Ç®Øªº¼Æ¶q. µM«á«ö \'Ä~Äò\'. ', //cpg1.3.0
|
|
|
1098 |
'reg_instr_1' => 'µL®Äªº¿ï¶µªí°Ê§@.', //cpg1.3.0
|
|
|
1099 |
'reg_instr_2' => '²{¦b §A¥i¥H¥Î¥H¤Uªº¤W¶Ç®Ø ¤W¶Ç§AªºÀÉ®×. ¨C¤@Ó¤W¶ÇÀɮתº¤j¤p¤£¥i¥H¶W¹L %s KB . ZIP ÀɮפW¶Ç¦b \'ÀɮפW¶Ç\' and \'URI/URL ¤W¶Ç\' °Ï .', //cpg1.3.0
|
|
|
1100 |
'reg_instr_3' => '¦pªG§An¤W¶ÇÀ£ÁYÀÉ©În¸ÑÀ£ÁY, ¥²¶·¨Ï¥ÎÀɮפW¶Ç®Ø \'¸ÑÀ£ÁYZIP ¤W¶Ç\' °Ï.', //cpg1.3.0
|
|
|
1101 |
'reg_instr_4' => '¦pªG¿ï¾Ü¥H URI/URL ¤W¶Ç, ½Ð¿é¤JÀɮ׳sµ²¸ô®| ¦p: http://www.mysite.com/images/example.jpg', //cpg1.3.0
|
|
|
1102 |
'reg_instr_5' => '§¹¦¨¿ï¶µªí«á,½Ð«ö \'Ä~Äò\'.', //cpg1.3.0
|
|
|
1103 |
'reg_instr_6' => '¸ÑÀ£ÁYZIP ¤W¶Ç:', //cpg1.3.0
|
|
|
1104 |
'reg_instr_7' => 'ÀÉ®× ¤W¶Ç:', //cpg1.3.0
|
|
|
1105 |
'reg_instr_8' => 'URI/URL ¤W¶Ç:', //cpg1.3.0
|
|
|
1106 |
'error_report' => '¿ù»~³ø§i', //cpg1.3.0
|
|
|
1107 |
'error_instr' => '¤U¦C¤W¶Ç¹J¨ì¿ù»~:', //cpg1.3.0
|
|
|
1108 |
'file_name_url' => 'ÀÉ®× ¦WºÙ/URL', //cpg1.3.0
|
|
|
1109 |
'error_message' => '¿ù»~°T®§', //cpg1.3.0
|
|
|
1110 |
'no_post' => 'ÀɮרS¦³³Q¤W¶Ç.', //cpg1.3.0
|
|
|
1111 |
'forb_ext' => '¤£¤¹³\ªº°ÆÀɦW.', //cpg1.3.0
|
|
|
1112 |
'exc_php_ini' => 'Àɮ׶W¹Lphp.ini¤¹³\ªº¤j¤p.', //cpg1.3.0
|
|
|
1113 |
'exc_file_size' => 'Àɮ׶W¹LCPG¤¹³\ªº¤j¤p.', //cpg1.3.0
|
|
|
1114 |
'partial_upload' => '¥u¦³³¡¤À¤W¶Ç.', //cpg1.3.0
|
|
|
1115 |
'no_upload' => '¨S¦³¤W¶Ç.', //cpg1.3.0
|
|
|
1116 |
'unknown_code' => '¥¼ª¾ªº PHP ¤W¶Ç¿ù»~½X.', //cpg1.3.0
|
|
|
1117 |
'no_temp_name' => '¨S¦³¤W¶Ç - µL¼È¦sÀɦW.', //cpg1.3.0
|
|
|
1118 |
'no_file_size' => '¨S¦³¤º®e', //cpg1.3.0
|
|
|
1119 |
'impossible' => 'µLªk¶ÇÀÉ.', //cpg1.3.0
|
|
|
1120 |
'not_image' => '³o¤£¬O¼Ð·Ç¼v¹³ÀÉ', //cpg1.3.0
|
|
|
1121 |
'not_GD' => '³o¤£¬O GD °ÆÀɦW.', //cpg1.3.0
|
|
|
1122 |
'pixel_allowance' => '¼v¹³¤Ø¤o¤Ó¤j¤F.', //cpg1.3.0
|
|
|
1123 |
'incorrect_prefix' => '¤£¥¿½Tªº URI/URL «eºó', //cpg1.3.0
|
|
|
1124 |
'could_not_open_URI' => 'µLªk¶}±ÒURI.', //cpg1.3.0
|
|
|
1125 |
'unsafe_URI' => '¦w¥þ©Ê¥¼³Q»{ÃÒ.', //cpg1.3.0
|
|
|
1126 |
'meta_data_failure' => 'Âà´«¸ê®Æ¥¢±Ñ', //cpg1.3.0
|
|
|
1127 |
'http_401' => '401 ¥¼³Q±ÂÅvÂsÄý', //cpg1.3.0
|
|
|
1128 |
'http_402' => '402 ¦¹³B»Ý¥I¶OÂsÄý', //cpg1.3.0
|
|
|
1129 |
'http_403' => '403 ¥Ø«e¦¹³BÃö³¬¸T¤îÂsÄý', //cpg1.3.0
|
|
|
1130 |
'http_404' => '404 ¦øªA¾¹¨S¦³¦^À³', //cpg1.3.0
|
|
|
1131 |
'http_500' => '500 ¤º³¡¦øªA¾¹¿ù»~', //cpg1.3.0
|
|
|
1132 |
'http_503' => '503 ¦øªA¾¹µ¥«Ý¹L¤[ °±¤îªA°È', //cpg1.3.0
|
|
|
1133 |
'MIME_extraction_failure' => 'µLªk½T»{ MIME.', //cpg1.3.0
|
|
|
1134 |
'MIME_type_unknown' => '¥¼ª¾ªº MIME type', //cpg1.3.0
|
|
|
1135 |
'cant_create_write' => 'µLªk·s¼W¼g¤JÀÉ®×.', //cpg1.3.0
|
|
|
1136 |
'not_writable' => 'µLªk¼g¤J.', //cpg1.3.0
|
|
|
1137 |
'cant_read_URI' => 'µLªkŪ¨ú URI/URL', //cpg1.3.0
|
|
|
1138 |
'cant_open_write_file' => 'µLªk¶}±ÒURI .', //cpg1.3.0
|
|
|
1139 |
'cant_write_write_file' => 'µLªk¼g¤JURI .', //cpg1.3.0
|
|
|
1140 |
'cant_unzip' => 'µLªk¸ÑÀ£ÁY.', //cpg1.3.0
|
|
|
1141 |
'unknown' => '¥¼ª¾ªº¿ù»~', //cpg1.3.0
|
|
|
1142 |
'succ' => '¦¨¥\¤W¶Ç', //cpg1.3.0
|
|
|
1143 |
'success' => '%s ¤W¶Ç¤w¸g§¹¦¨.', //cpg1.3.0
|
|
|
1144 |
'add' => '½Ð«ö \'Ä~Äò\' ¼W¥[Àɮרì¬Ûï.', //cpg1.3.0
|
|
|
1145 |
'failure' => '¤W¶Ç¥¢±Ñ', //cpg1.3.0
|
|
|
1146 |
'f_info' => 'Àɮ׸ê°T', //cpg1.3.0
|
|
|
1147 |
'no_place' => '¥ý«eªºÀÉ®×µLªk³Q°t¸m.', //cpg1.3.0
|
|
|
1148 |
'yes_place' => '¥ý«eªºÀɮפw¸g°t¸m§¹¦¨.', //cpg1.3.0
|
|
|
1149 |
'max_fsize' => '³Ì¤j¤¹³\Àɮפj¤p¬O %s KB',
|
|
|
1150 |
'album' => '¬Ûï',
|
|
|
1151 |
'picture' => '¹Ï¤ù', //cpg1.3.0
|
|
|
1152 |
'pic_title' => '¹Ï¤ù¼ÐÃD', //cpg1.3.0
|
|
|
1153 |
'description' => '¹Ï¤ù´yz', //cpg1.3.0
|
|
|
1154 |
'keywords' => 'ÃöÁä¦r (¥HªÅ®æ°Ï¹j)',
|
|
|
1155 |
'err_no_alb_uploadables' => '¥Ø«e©|¥¼¦³¬Ûï¥i¥H¤W¶Ç¹Ï¤ù', //cpg1.3.0
|
|
|
1156 |
'place_instr_1' => '²{¦b ½Ð±N¹Ï¤ù©ñ¨ì¬Ûï. §A²{¦b¥i¥H¿é¤J³oÓÀɮתº¬ÛÃö¸ê°T.', //cpg1.3.0
|
|
|
1157 |
'place_instr_2' => '§ó¦hªº¹Ï¤ù»Ýn°t¸m. ½Ð«ö \'Ä~Äò\'.', //cpg1.3.0
|
|
|
1158 |
'process_complete' => '®¥³ß §A¤w¸g¦¨¥\ªº±N¥þ³¡ÀɮפW¶Ç¤F.', //cpg1.3.0
|
|
|
1159 |
);
|
|
|
1160 |
|
|
|
1161 |
// ------------------------------------------------------------------------- //
|
|
|
1162 |
// File usermgr.php
|
|
|
1163 |
// ------------------------------------------------------------------------- //
|
|
|
1164 |
|
|
|
1165 |
if (defined('USERMGR_PHP')) $lang_usermgr_php = array(
|
|
|
1166 |
'title' => '·|ûºÞ²z',
|
|
|
1167 |
'name_a' => '¦WºÙ ¥Ñ¤p¦Ü¤j',
|
|
|
1168 |
'name_d' => '¦WºÙ ¥Ñ¤j¦Ü¤p',
|
|
|
1169 |
'group_a' => '¸s²Õ ¥Ñ¤p¦Ü¤j',
|
|
|
1170 |
'group_d' => '¸s²Õ ¥Ñ¤j¦Ü¤p',
|
|
|
1171 |
'reg_a' => 'µù¥U¤é´Á ¥Ñ»·¦Üªñ',
|
|
|
1172 |
'reg_d' => 'µù¥U¤é´Á ¥Ñªñ¦Ü»·',
|
|
|
1173 |
'pic_a' => '¹Ï¤ù¼Æ ¥Ñ¤p¦Ü¤j',
|
|
|
1174 |
'pic_d' => '¹Ï¤ù¼Æ ¥Ñ¤j¦Ü¤p',
|
|
|
1175 |
'disku_a' => 'ºÏºÐ¥Î¶q ¥Ñ¤p¦Ü¤j',
|
|
|
1176 |
'disku_d' => 'ºÏºÐ¥Î¶q ¥Ñ¤j¦Ü¤p',
|
|
|
1177 |
'lv_a' => '³Ìªñ¨Ó³X ¥Ñªñ¦Ü»·', //cpg1.3.0
|
|
|
1178 |
'lv_d' => '³Ìªñ¨Ó³X ¥Ñ»·¦Üªñ', //cpg1.3.0
|
|
|
1179 |
'sort_by' => '·|û±Æ§Ç¨Ì',
|
|
|
1180 |
'err_no_users' => '·|û¸ê®Æªí¬OªÅªº !',
|
|
|
1181 |
'err_edit_self' => '±zµLªk½s¿è±zªºÓ¤H¸ê®Æ, ½Ð§Q¥Î \'§ÚªºÓ¤H¸ê®Æ\' ¨Ó½s¿è',
|
|
|
1182 |
'edit' => '½s¿è',
|
|
|
1183 |
'delete' => '§R°£',
|
|
|
1184 |
'name' => '·|û¦WºÙ',
|
|
|
1185 |
'group' => '¸s²Õ',
|
|
|
1186 |
'inactive' => '¥¼±Ò°Ê',
|
|
|
1187 |
'operations' => '¾Þ§@',
|
|
|
1188 |
'pictures' => '¹Ï¤ù', //cpg1.3.0
|
|
|
1189 |
'disk_space' => 'ºÏºÐ ¥Î¶q / ÃB',
|
|
|
1190 |
'registered_on' => 'µù¥U¤é',
|
|
|
1191 |
'last_visit' => '³Ìªñ¨Ó³X', //cpg1.3.0
|
|
|
1192 |
'u_user_on_p_pages' => '%d Ó·|û©ó %d ¶',
|
|
|
1193 |
'confirm_del' => '½T©wn§R°£³oÓ·|û¶Ü? \\n©Ò¦³¥Lªº¬Ûï¤Î¹Ï¤ù³£·|³Q§R°£.', //js-alert //cpg1.3.0
|
|
|
1194 |
'mail' => '¹q¤l¶l¥ó',
|
|
|
1195 |
'err_unknown_user' => '©Ò¿ï¾Üªº·|û¨Ã¤£¦s¦b !',
|
|
|
1196 |
'modify_user' => '½s¿è·|û',
|
|
|
1197 |
'notes' => 'ª`·N',
|
|
|
1198 |
'note_list' => '<li>¦pªG¤£·Q§ïÅܥثeªº±K½X, ½Ð±N "±K½X" ¦ì¯d¤UªÅ¥Õ',
|
|
|
1199 |
'password' => '±K½X',
|
|
|
1200 |
'user_active' => '·|û¤w±Ò°Ê',
|
|
|
1201 |
'user_group' => '·|û¸s²Õ',
|
|
|
1202 |
'user_email' => '·|û¹q¤l¶l¥ó',
|
|
|
1203 |
'user_web_site' => '·|ûºô§}',
|
|
|
1204 |
'create_new_user' => '«Ø¥ß·s·|û',
|
|
|
1205 |
'user_location' => '·|û¦a°Ï',
|
|
|
1206 |
'user_interests' => '·|û¿³½ì',
|
|
|
1207 |
'user_occupation' => '·|û¾·~',
|
|
|
1208 |
'latest_upload' => '³Ì·s¤W¶Ç', //cpg1.3.0
|
|
|
1209 |
'never' => '±q¥¼¦³', //cpg1.3.0
|
|
|
1210 |
);
|
|
|
1211 |
|
|
|
1212 |
// ------------------------------------------------------------------------- //
|
|
|
1213 |
// File util.php
|
|
|
1214 |
// ------------------------------------------------------------------------- //
|
|
|
1215 |
|
|
|
1216 |
if (defined('UTIL_PHP')) $lang_util_php = array(
|
|
|
1217 |
'title' => 'ºÞ²zû¤u¨ã (½Õ¾ã¹Ï¤ù¤j¤p)', //cpg1.3.0
|
|
|
1218 |
'what_it_does' => '¥\¯à',
|
|
|
1219 |
'what_update_titles' => '±qÀɮצWºÙ§ó·s¹Ï¤ù¼ÐÃD',
|
|
|
1220 |
'what_delete_title' => '§R°£¼ÐÃD',
|
|
|
1221 |
'what_rebuild' => '««ØÁY¹Ï¤Î½Õ¾ã¹Ï¤ù¤j¤p',
|
|
|
1222 |
'what_delete_originals' => '«·s½Õ¾ã«áªº¹Ï¤ù±N ¨ú¥N즳ªº¹Ï¤ù',
|
|
|
1223 |
'file' => 'ÀÉ®×',
|
|
|
1224 |
'title_set_to' => '¼ÐÃDÅܧó¬°',
|
|
|
1225 |
'submit_form' => '½T»{',
|
|
|
1226 |
'updated_succesfully' => '§ó·s ¤w¸g§¹¦¨',
|
|
|
1227 |
'error_create' => '²£¥Í¿ù»~',
|
|
|
1228 |
'continue' => 'Ä~Äò°õ¦æ¨ä¥Lªº¼v¹³',
|
|
|
1229 |
'main_success' => 'ÀÉ®× %s ¤w³]¬°¥D¹Ï', //cpg1.3.0
|
|
|
1230 |
'error_rename' => '¿ù»~ %s §ï¦W¬° %s',
|
|
|
1231 |
'error_not_found' => '§ä¤£¨ìÀÉ®× %s ',
|
|
|
1232 |
'back' => '¦^¥D¶',
|
|
|
1233 |
'thumbs_wait' => '§ó·sÁY¹Ï ¥B/©Î ½Õ¾ã¼v¹³¤Ø¤o, ½Ðµy«Ý...',
|
|
|
1234 |
'thumbs_continue_wait' => 'Ä~Äò §ó·sÁY¹Ï ¥B/©Î ½Õ¾ã¼v¹³¤Ø¤o...',
|
|
|
1235 |
'titles_wait' => '§ó·s¼ÐÃD, ½Ðµy«Ý...',
|
|
|
1236 |
'delete_wait' => '§R°£¼ÐÃD, ½Ðµy«Ý...',
|
|
|
1237 |
'replace_wait' => '«·s½Õ¾ã«áªº¹Ï¤ù±N ¨ú¥N즳ªº¹Ï¤ù¤¤, ½Ðµy«Ý...',
|
|
|
1238 |
'instruction' => '²©ö¾Þ§@»¡©ú',
|
|
|
1239 |
'instruction_action' => '½Ð¿ï¾Ü¾Þ§@',
|
|
|
1240 |
'instruction_parameter' => '³]©w°Ñ¼Æ',
|
|
|
1241 |
'instruction_album' => '¿ï¾Ü¬Ûï',
|
|
|
1242 |
'instruction_press' => '½Ð«ö %s',
|
|
|
1243 |
'update' => '§ó·sÁY¹Ï ¥B/©Î ½Õ¾ã¹Ï¤ù¤j¤p',
|
|
|
1244 |
'update_what' => 'n§ó·s¤°»ò',
|
|
|
1245 |
'update_thumb' => '¥u¦³ÁY¹Ï',
|
|
|
1246 |
'update_pic' => '¥u½Õ¾ã¹Ï¤ù¤j¤p',
|
|
|
1247 |
'update_both' => '§ó·sÁY¹Ï¥B½Õ¾ã¹Ï¤ù¤Ø¤o',
|
|
|
1248 |
'update_number' => '¨CÂI¿ï¤@¦¸n³B²zªº¹Ï¤ù¼Æ¥Ø',
|
|
|
1249 |
'update_option' => '(¦pªG±z¹J¨ì¾Þ§@µ{§Ç¹O®Éªº°ÝÃD¡A½Ð¸ÕµÛ°§C¦¹³]©w)',
|
|
|
1250 |
'filename_title' => 'ÀɮצWºÙ ⇒ ¹Ï¤ù¼ÐÃD', //cpg1.3.0
|
|
|
1251 |
'filename_how' => '¦p¦óקïÀɦW',
|
|
|
1252 |
'filename_remove' => '§R°£ .jpg ¨Ã±N _ (©³½u) ¥ÎªÅ®æ¨ú¥N',
|
|
|
1253 |
'filename_euro' => '±N 2003_11_23_13_20_20.jpg §ï¬° 23/11/2003 13:20',
|
|
|
1254 |
'filename_us' => '±N 2003_11_23_13_20_20.jpg §ï¬° 11/23/2003 13:20',
|
|
|
1255 |
'filename_time' => '±N 2003_11_23_13_20_20.jpg §ï¬° 13:20',
|
|
|
1256 |
'delete' => '§R°£¹Ï¤ù¼ÐÃD©Îì©l¤Ø¤oªº¹Ï¤ù', //cpg1.3.0
|
|
|
1257 |
'delete_title' => '§R°£¹Ï¤ù¼ÐÃD', //cpg1.3.0
|
|
|
1258 |
'delete_original' => '§R°£ì©l¤Ø¤oªº¹Ï¤ù',
|
|
|
1259 |
'delete_replace' => '§R°£ì©l¤Ø¤oªº¹Ï¤ù¨Ã¥H½Õ¾ã¤Ø¤oªº¹Ï¤ù¨ú¥N',
|
|
|
1260 |
'select_album' => '¿ï¾Ü¬Ûï',
|
|
|
1261 |
'delete_orphans' => '§R°£¹s´²ªº¯d¨¥(¹ï¥þ³¡ªº¬Ûï)', //cpg1.3.0
|
|
|
1262 |
'orphan_comment' => 'µo²{¹s´²ªº¯d¨¥', //cpg1.3.0
|
|
|
1263 |
'delete' => '§R°£', //cpg1.3.0
|
|
|
1264 |
'delete_all' => '¥þ³¡§R°£', //cpg1.3.0
|
|
|
1265 |
'comment' => '¯d¨¥: ', //cpg1.3.0
|
|
|
1266 |
'nonexist' => 'nªþ¥[ªºÀɮפ£¦s¦b # ', //cpg1.3.0
|
|
|
1267 |
'phpinfo' => 'Åã¥Ü phpinfo ¸ê®Æ', //cpg1.3.0
|
|
|
1268 |
'update_db' => '§ó·s¸ê®Æ®w', //cpg1.3.0
|
|
|
1269 |
'update_db_explanation' => '¦pªG©p¦³§ó·s CPG ÀÉ®×, ¥[¤Jקï©Î¥Ñ¥H«eªºª©¥»¤É¯Å, ½Ð½T©w°õ¦æ¤@¦¸¸ê®Æ®w§ó·s. ³o±N·|¦b CPG ¸ê®Æ®w·s¼W¥²nªº¸ê®Æªí ¤Î/©Î ³]©wÈ.', //cpg1.3.0
|
|
|
1270 |
);
|
|
|
1271 |
|
|
|
1272 |
?>
|