1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | PhpWebGallery - a PHP based picture gallery | |
---|
4 | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | |
---|
5 | // | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net | |
---|
6 | // +-----------------------------------------------------------------------+ |
---|
7 | // | branch : BSF (Best So Far) |
---|
8 | // | file : $RCSfile$ |
---|
9 | // | last update : $Date: 2006-11-20 22:52:28 +0000 (Mon, 20 Nov 2006) $ |
---|
10 | // | last modifier : $Author: rub $ |
---|
11 | // | revision : $Revision: 1613 $ |
---|
12 | // +-----------------------------------------------------------------------+ |
---|
13 | // | This program is free software; you can redistribute it and/or modify | |
---|
14 | // | it under the terms of the GNU General Public License as published by | |
---|
15 | // | the Free Software Foundation | |
---|
16 | // | | |
---|
17 | // | This program is distributed in the hope that it will be useful, but | |
---|
18 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
19 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
20 | // | General Public License for more details. | |
---|
21 | // | | |
---|
22 | // | You should have received a copy of the GNU General Public License | |
---|
23 | // | along with this program; if not, write to the Free Software | |
---|
24 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
25 | // | USA. | |
---|
26 | // +-----------------------------------------------------------------------+ |
---|
27 | |
---|
28 | // Langage informations |
---|
29 | $lang_info['language_name'] = 'English'; |
---|
30 | $lang_info['country'] = 'Great Britain'; |
---|
31 | $lang_info['charset'] = 'iso-8859-1'; |
---|
32 | $lang_info['direction'] = 'ltr'; |
---|
33 | $lang_info['code'] = 'en'; |
---|
34 | |
---|
35 | $lang_table_translate_ascii7bits = array( |
---|
36 | chr( 0) => chr(0), |
---|
37 | chr( 1) => chr( 1), |
---|
38 | chr( 2) => chr( 2), |
---|
39 | chr( 3) => chr( 3), |
---|
40 | chr( 4) => chr( 4), |
---|
41 | chr( 5) => chr( 5), |
---|
42 | chr( 6) => chr( 6), |
---|
43 | chr( 7) => chr( 7), |
---|
44 | chr( 8) => chr( 8), |
---|
45 | chr( 9) => chr( 9), |
---|
46 | chr( 10) => chr( 10), |
---|
47 | chr( 11) => chr( 11), |
---|
48 | chr( 12) => chr( 12), |
---|
49 | chr( 13) => chr( 13), |
---|
50 | chr( 14) => chr( 14), |
---|
51 | chr( 15) => chr( 15), |
---|
52 | chr( 16) => chr( 16), |
---|
53 | chr( 17) => chr( 17), |
---|
54 | chr( 18) => chr( 18), |
---|
55 | chr( 19) => chr( 19), |
---|
56 | chr( 20) => chr( 20), |
---|
57 | chr( 21) => chr( 21), |
---|
58 | chr( 22) => chr( 22), |
---|
59 | chr( 23) => chr( 23), |
---|
60 | chr( 24) => chr( 24), |
---|
61 | chr( 25) => chr( 25), |
---|
62 | chr( 26) => chr( 26), |
---|
63 | chr( 27) => chr( 27), |
---|
64 | chr( 28) => chr( 28), |
---|
65 | chr( 29) => chr( 29), |
---|
66 | chr( 30) => chr( 30), |
---|
67 | chr( 31) => chr( 31), |
---|
68 | chr( 32) => chr( 32), |
---|
69 | chr( 33) => chr( 33), |
---|
70 | chr( 34) => chr( 34), |
---|
71 | chr( 35) => chr( 35), |
---|
72 | chr( 36) => chr( 36), |
---|
73 | chr( 37) => chr( 37), |
---|
74 | chr( 38) => chr( 38), |
---|
75 | chr( 39) => chr( 39), |
---|
76 | chr( 40) => chr( 40), |
---|
77 | chr( 41) => chr( 41), |
---|
78 | chr( 42) => chr( 42), |
---|
79 | chr( 43) => chr( 43), |
---|
80 | chr( 44) => chr( 44), |
---|
81 | chr( 45) => chr( 45), |
---|
82 | chr( 46) => chr( 46), |
---|
83 | chr( 47) => chr( 47), |
---|
84 | chr( 48) => chr( 48), |
---|
85 | chr( 49) => chr( 49), |
---|
86 | chr( 50) => chr( 50), |
---|
87 | chr( 51) => chr( 51), |
---|
88 | chr( 52) => chr( 52), |
---|
89 | chr( 53) => chr( 53), |
---|
90 | chr( 54) => chr( 54), |
---|
91 | chr( 55) => chr( 55), |
---|
92 | chr( 56) => chr( 56), |
---|
93 | chr( 57) => chr( 57), |
---|
94 | chr( 58) => chr( 58), |
---|
95 | chr( 59) => chr( 59), |
---|
96 | chr( 60) => chr( 60), |
---|
97 | chr( 61) => chr( 61), |
---|
98 | chr( 62) => chr( 62), |
---|
99 | chr( 63) => chr( 63), |
---|
100 | chr( 64) => chr( 64), |
---|
101 | chr( 65) => chr( 65), |
---|
102 | chr( 66) => chr( 66), |
---|
103 | chr( 67) => chr( 67), |
---|
104 | chr( 68) => chr( 68), |
---|
105 | chr( 69) => chr( 69), |
---|
106 | chr( 70) => chr( 70), |
---|
107 | chr( 71) => chr( 71), |
---|
108 | chr( 72) => chr( 72), |
---|
109 | chr( 73) => chr( 73), |
---|
110 | chr( 74) => chr( 74), |
---|
111 | chr( 75) => chr( 75), |
---|
112 | chr( 76) => chr( 76), |
---|
113 | chr( 77) => chr( 77), |
---|
114 | chr( 78) => chr( 78), |
---|
115 | chr( 79) => chr( 79), |
---|
116 | chr( 80) => chr( 80), |
---|
117 | chr( 81) => chr( 81), |
---|
118 | chr( 82) => chr( 82), |
---|
119 | chr( 83) => chr( 83), |
---|
120 | chr( 84) => chr( 84), |
---|
121 | chr( 85) => chr( 85), |
---|
122 | chr( 86) => chr( 86), |
---|
123 | chr( 87) => chr( 87), |
---|
124 | chr( 88) => chr( 88), |
---|
125 | chr( 89) => chr( 89), |
---|
126 | chr( 90) => chr( 90), |
---|
127 | chr( 91) => chr( 91), |
---|
128 | chr( 92) => chr( 92), |
---|
129 | chr( 93) => chr( 93), |
---|
130 | chr( 94) => chr( 94), |
---|
131 | chr( 95) => chr( 95), |
---|
132 | chr( 96) => chr( 96), |
---|
133 | chr( 97) => chr( 97), |
---|
134 | chr( 98) => chr( 98), |
---|
135 | chr( 99) => chr( 99), |
---|
136 | chr(100) => chr(100), |
---|
137 | chr(101) => chr(101), |
---|
138 | chr(102) => chr(102), |
---|
139 | chr(103) => chr(103), |
---|
140 | chr(104) => chr(104), |
---|
141 | chr(105) => chr(105), |
---|
142 | chr(106) => chr(106), |
---|
143 | chr(107) => chr(107), |
---|
144 | chr(108) => chr(108), |
---|
145 | chr(109) => chr(109), |
---|
146 | chr(110) => chr(110), |
---|
147 | chr(111) => chr(111), |
---|
148 | chr(112) => chr(112), |
---|
149 | chr(113) => chr(113), |
---|
150 | chr(114) => chr(114), |
---|
151 | chr(115) => chr(115), |
---|
152 | chr(116) => chr(116), |
---|
153 | chr(117) => chr(117), |
---|
154 | chr(118) => chr(118), |
---|
155 | chr(119) => chr(119), |
---|
156 | chr(120) => chr(120), |
---|
157 | chr(121) => chr(121), |
---|
158 | chr(122) => chr(122), |
---|
159 | chr(123) => chr(123), |
---|
160 | chr(124) => chr(124), |
---|
161 | chr(125) => chr(125), |
---|
162 | chr(126) => chr(126), |
---|
163 | chr(127) => chr(127), |
---|
164 | chr(128) => chr(128), |
---|
165 | chr(129) => chr( 95), |
---|
166 | chr(130) => chr( 44), |
---|
167 | chr(131) => chr(102), |
---|
168 | chr(132) => chr( 44), |
---|
169 | chr(133) => chr( 46), |
---|
170 | chr(134) => chr( 43), |
---|
171 | chr(135) => chr( 43), |
---|
172 | chr(136) => chr( 32), |
---|
173 | chr(137) => chr( 37), |
---|
174 | chr(138) => chr( 83), |
---|
175 | chr(139) => chr( 60), |
---|
176 | chr(140) => chr( 69), |
---|
177 | chr(141) => chr( 32), |
---|
178 | chr(142) => chr( 90), |
---|
179 | chr(143) => chr( 32), |
---|
180 | chr(144) => chr( 32), |
---|
181 | chr(145) => chr( 39), |
---|
182 | chr(146) => chr( 39), |
---|
183 | chr(147) => chr( 34), |
---|
184 | chr(148) => chr( 34), |
---|
185 | chr(149) => chr( 46), |
---|
186 | chr(150) => chr( 45), |
---|
187 | chr(151) => chr( 45), |
---|
188 | chr(152) => chr( 32), |
---|
189 | chr(153) => chr( 32), |
---|
190 | chr(154) => chr(115), |
---|
191 | chr(155) => chr( 62), |
---|
192 | chr(156) => chr(111), |
---|
193 | chr(157) => chr( 32), |
---|
194 | chr(158) => chr(122), |
---|
195 | chr(159) => chr( 89), |
---|
196 | chr(160) => chr( 32), |
---|
197 | chr(161) => chr( 33), |
---|
198 | chr(162) => chr( 99), |
---|
199 | chr(163) => chr( 76), |
---|
200 | chr(164) => chr( 32), |
---|
201 | chr(165) => chr( 86), |
---|
202 | chr(166) => chr(124), |
---|
203 | chr(167) => chr( 83), |
---|
204 | chr(168) => chr( 32), |
---|
205 | chr(169) => chr( 99), |
---|
206 | chr(170) => chr( 97), |
---|
207 | chr(171) => chr( 60), |
---|
208 | chr(172) => chr( 32), |
---|
209 | chr(173) => chr( 45), |
---|
210 | chr(174) => chr( 114), |
---|
211 | chr(175) => chr( 45), |
---|
212 | chr(176) => chr( 111), |
---|
213 | chr(177) => chr( 43), |
---|
214 | chr(178) => chr( 50), |
---|
215 | chr(179) => chr( 51), |
---|
216 | chr(180) => chr( 39), |
---|
217 | chr(181) => chr(117), |
---|
218 | chr(182) => chr( 32), |
---|
219 | chr(183) => chr( 46), |
---|
220 | chr(184) => chr( 97), |
---|
221 | chr(185) => chr( 49), |
---|
222 | chr(186) => chr(111), |
---|
223 | chr(187) => chr( 62), |
---|
224 | chr(188) => chr( 32), |
---|
225 | chr(189) => chr( 32), |
---|
226 | chr(190) => chr( 32), |
---|
227 | chr(191) => chr( 63), |
---|
228 | chr(192) => chr( 65), |
---|
229 | chr(193) => chr( 65), |
---|
230 | chr(194) => chr( 65), |
---|
231 | chr(195) => chr( 65), |
---|
232 | chr(196) => chr( 65), |
---|
233 | chr(197) => chr( 65), |
---|
234 | chr(198) => chr( 65), |
---|
235 | chr(199) => chr( 67), |
---|
236 | chr(200) => chr( 69), |
---|
237 | chr(201) => chr( 69), |
---|
238 | chr(202) => chr( 69), |
---|
239 | chr(203) => chr( 69), |
---|
240 | chr(204) => chr( 73), |
---|
241 | chr(205) => chr( 73), |
---|
242 | chr(206) => chr( 73), |
---|
243 | chr(207) => chr( 73), |
---|
244 | chr(208) => chr( 68), |
---|
245 | chr(209) => chr( 78), |
---|
246 | chr(210) => chr( 79), |
---|
247 | chr(211) => chr( 79), |
---|
248 | chr(212) => chr( 79), |
---|
249 | chr(213) => chr( 79), |
---|
250 | chr(214) => chr( 79), |
---|
251 | chr(215) => chr( 42), |
---|
252 | chr(216) => chr( 48), |
---|
253 | chr(217) => chr( 85), |
---|
254 | chr(218) => chr( 85), |
---|
255 | chr(219) => chr( 85), |
---|
256 | chr(220) => chr( 85), |
---|
257 | chr(221) => chr( 89), |
---|
258 | chr(222) => chr( 80), |
---|
259 | chr(223) => chr( 66), |
---|
260 | chr(224) => chr( 97), |
---|
261 | chr(225) => chr( 97), |
---|
262 | chr(226) => chr( 97), |
---|
263 | chr(227) => chr( 97), |
---|
264 | chr(228) => chr( 97), |
---|
265 | chr(229) => chr( 97), |
---|
266 | chr(230) => chr( 97), |
---|
267 | chr(231) => chr( 99), |
---|
268 | chr(232) => chr(101), |
---|
269 | chr(233) => chr(101), |
---|
270 | chr(234) => chr(101), |
---|
271 | chr(235) => chr(101), |
---|
272 | chr(236) => chr(105), |
---|
273 | chr(237) => chr(105), |
---|
274 | chr(238) => chr(105), |
---|
275 | chr(239) => chr(105), |
---|
276 | chr(240) => chr( 97), |
---|
277 | chr(241) => chr(110), |
---|
278 | chr(242) => chr(111), |
---|
279 | chr(243) => chr(111), |
---|
280 | chr(244) => chr(111), |
---|
281 | chr(245) => chr(111), |
---|
282 | chr(246) => chr(111), |
---|
283 | chr(247) => chr( 47), |
---|
284 | chr(248) => chr( 48), |
---|
285 | chr(249) => chr(117), |
---|
286 | chr(250) => chr(117), |
---|
287 | chr(251) => chr(117), |
---|
288 | chr(252) => chr(117), |
---|
289 | chr(253) => chr(117), |
---|
290 | chr(254) => chr( 98), |
---|
291 | chr(255) => chr(121) |
---|
292 | ); |
---|
293 | |
---|
294 | $lang['%.2f (rated %d times, standard deviation = %.2f)'] = '%.2f (rated %d times, standard deviation = %.2f)'; |
---|
295 | $lang['%d Kb'] = '%d Kb'; |
---|
296 | $lang['%d categories updated'] = '%d categories updated'; |
---|
297 | $lang['%d comments to validate'] = '%d comments to validate'; |
---|
298 | $lang['%d new comments'] = '%d new comments'; |
---|
299 | $lang['%d new elements'] = '%d new elements'; |
---|
300 | $lang['%d new users'] = '%d new users'; |
---|
301 | $lang['%d pictures are also linked to current tags'] = '%d pictures are also linked to current tags'; |
---|
302 | $lang['%d pictures'] = '%d pictures'; |
---|
303 | $lang['%d waiting elements'] = '%d waiting elements'; |
---|
304 | $lang['About'] = 'About'; |
---|
305 | $lang['All tags must match'] = 'All tags must match'; |
---|
306 | $lang['All tags'] = 'All tags'; |
---|
307 | $lang['Any tag'] = 'Any tag'; |
---|
308 | $lang['At least one listed rule must be satisfied.'] = 'At least one listed rule must be satisfied.'; |
---|
309 | $lang['At least one tag must match'] = 'At least one tag must match'; |
---|
310 | $lang['Author'] = 'Author'; |
---|
311 | $lang['Average rate'] = 'Average rate'; |
---|
312 | $lang['Categories'] = 'Categories'; |
---|
313 | $lang['Category'] = 'Category'; |
---|
314 | $lang['Close this window'] = 'Close this window'; |
---|
315 | $lang['Confirm Password'] = 'Confirm Password'; |
---|
316 | $lang['Connection settings'] = 'Connection settings'; |
---|
317 | $lang['Connection'] = 'Connection'; |
---|
318 | $lang['Contact webmaster'] = 'Contact webmaster'; |
---|
319 | $lang['Create a new account'] = 'Create a new account'; |
---|
320 | $lang['Created on'] = 'Created on'; |
---|
321 | $lang['Creation date'] = 'Creation date'; |
---|
322 | $lang['Current password is wrong'] = 'Current password is wrong'; |
---|
323 | $lang['Dimensions'] = 'Dimensions'; |
---|
324 | $lang['Display'] = 'Display'; |
---|
325 | $lang['Each listed rule must be satisfied.'] = 'Each listed rule must be satisfied.'; |
---|
326 | $lang['Email address is missing'] = 'Email address is missing'; |
---|
327 | $lang['Email address'] = 'Email address'; |
---|
328 | $lang['Enter your personnal informations'] = 'Enter your personnal informations'; |
---|
329 | $lang['Error sending email'] = 'Error sending email'; |
---|
330 | $lang['File name'] = 'File name'; |
---|
331 | $lang['File'] = 'File'; |
---|
332 | $lang['Filesize'] = 'Filesize'; |
---|
333 | $lang['Filter and display'] = 'Filter and display'; |
---|
334 | $lang['Filter'] = 'Filter'; |
---|
335 | $lang['Forgot your password?'] = 'Forgot your password?'; |
---|
336 | $lang['Go through the gallery as a visitor'] = 'Go through the gallery as a visitor'; |
---|
337 | $lang['Help'] = 'Help'; |
---|
338 | $lang['Identification'] = 'Identification'; |
---|
339 | $lang['Keyword'] = 'Keyword'; |
---|
340 | $lang['Keywords'] = 'Keywords'; |
---|
341 | $lang['Links'] = 'Links'; |
---|
342 | $lang['Mail address'] = 'Mail address'; |
---|
343 | $lang['N/A'] = 'N/A'; |
---|
344 | $lang['New on %s'] = 'New on %s'; |
---|
345 | $lang['New password confirmation does not correspond'] = 'New password confirmation does not correspond'; |
---|
346 | $lang['New password sent by email'] = 'New password sent by email'; |
---|
347 | $lang['No email address'] = 'No email address'; |
---|
348 | $lang['No user matches this email address'] = 'No user matches this email address'; |
---|
349 | $lang['Notification'] = 'Notification'; |
---|
350 | $lang['Number of items'] = 'Number of items'; |
---|
351 | $lang['Original dimensions'] = 'Original dimensions'; |
---|
352 | $lang['Password forgotten'] = 'Password forgotten'; |
---|
353 | $lang['Password'] = 'Password'; |
---|
354 | $lang['PhpWebGallery Help'] = 'PhpWebGallery Help'; |
---|
355 | $lang['Post date'] = 'Post date'; |
---|
356 | $lang['Posted on'] = 'Posted on'; |
---|
357 | $lang['Profile'] = 'Profile'; |
---|
358 | $lang['Quick connect'] = 'Quick connect'; |
---|
359 | $lang['RSS feed'] = 'RSS feed'; |
---|
360 | $lang['Rate'] = 'Rate'; |
---|
361 | $lang['Register'] = 'Register'; |
---|
362 | $lang['Registration'] = 'Registration'; |
---|
363 | $lang['Related tags'] = 'Related tags'; |
---|
364 | $lang['Reset'] = 'Reset'; |
---|
365 | $lang['Retrieve password'] = 'Retrieve password'; |
---|
366 | $lang['Search rules'] = 'Search rules'; |
---|
367 | $lang['Search tags'] = 'Search tags'; |
---|
368 | $lang['Search'] = 'Search'; |
---|
369 | $lang['See available tags'] = 'See available tags'; |
---|
370 | $lang['See pictures linked to this tag only'] = 'See pictures linked to this tag only'; |
---|
371 | $lang['Send new password'] = 'Send new password'; |
---|
372 | $lang['Since'] = 'Since'; |
---|
373 | $lang['Sort by'] = 'Sort by'; |
---|
374 | $lang['Sort order'] = 'Sort order'; |
---|
375 | $lang['Tag'] = 'Tag'; |
---|
376 | $lang['Tags'] = 'Tags'; |
---|
377 | $lang['The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'] = 'The RSS notification feed provides notification on news from this website : new pictures, updated categories, new comments. Use a RSS feed reader.'; |
---|
378 | $lang['Unknown feed identifier'] = 'Unknown feed identifier'; |
---|
379 | $lang['User comments'] = 'User comments'; |
---|
380 | $lang['Username'] = 'Username'; |
---|
381 | $lang['Visits'] = 'Visits'; |
---|
382 | $lang['Webmaster'] = 'Webmaster'; |
---|
383 | $lang['Week %d'] = 'Week %d'; |
---|
384 | $lang['about_page_title'] = 'About PhpWebGallery'; |
---|
385 | $lang['access_forbiden'] = 'You are not authorized to access the requested page'; |
---|
386 | $lang['add to caddie'] = 'add to caddie'; |
---|
387 | $lang['add_favorites_alt'] = 'Add to favorites'; |
---|
388 | $lang['add_favorites_hint'] = 'Add this picture to your favorites'; |
---|
389 | $lang['admin'] = 'Administration'; |
---|
390 | $lang['adviser_mode_enabled'] = 'Adviser mode enabled'; |
---|
391 | $lang['all'] = 'all'; |
---|
392 | $lang['all_categories'] = 'all categories'; |
---|
393 | $lang['ascending'] = 'ascending'; |
---|
394 | $lang['author(s) : %s'] = 'author(s) : %s'; |
---|
395 | $lang['auto_expand'] = 'Expand all categories'; |
---|
396 | $lang['became available after %s (%s)'] = 'posted after %s (%s)'; |
---|
397 | $lang['became available before %s (%s)'] = 'posted before %s (%s)'; |
---|
398 | $lang['became available between %s (%s) and %s (%s)'] = 'posted between %s (%s) and %s (%s)'; |
---|
399 | $lang['became available on %s'] = 'posted on %s'; |
---|
400 | $lang['best_rated_cat'] = 'Best rated'; |
---|
401 | $lang['best_rated_cat_hint'] = 'displays best rated items'; |
---|
402 | $lang['caddie'] = 'caddie'; |
---|
403 | $lang['calendar'] = 'Calendar'; |
---|
404 | $lang['calendar_any'] = 'All'; |
---|
405 | $lang['calendar_hint'] = 'displays each day with pictures, month per month'; |
---|
406 | $lang['calendar_picture_hint'] = 'displays pictures added on '; |
---|
407 | $lang['calendar_view'] = 'View'; |
---|
408 | $lang['chronology_monthly_calendar'] = 'Monthly calendar'; |
---|
409 | $lang['chronology_monthly_list'] = 'Monthly list'; |
---|
410 | $lang['chronology_weekly_list'] = 'Weekly list'; |
---|
411 | $lang['click_to_redirect'] = 'Click here if your browser does not automatically forward you'; |
---|
412 | $lang['comment date'] = 'comment date'; |
---|
413 | $lang['comment'] = 'Comment'; |
---|
414 | $lang['comment_added'] = 'Your comment has been registered'; |
---|
415 | $lang['comment_anti-flood'] = 'Anti-flood system : please wait for a moment before trying to post another comment'; |
---|
416 | $lang['comment_to_validate'] = 'An administrator must authorize your comment before it is visible.'; |
---|
417 | $lang['comment_user_exists'] = 'This login is already used by another user'; |
---|
418 | $lang['comments'] = 'Comments'; |
---|
419 | $lang['comments_add'] = 'Add a comment'; |
---|
420 | $lang['comments_del'] = 'delete this comment'; |
---|
421 | $lang['comments_title'] = 'Comments from the users of the site'; |
---|
422 | $lang['confirm_password_hint'] = 'You only have to confirm your new password if you wish to change it.'; |
---|
423 | $lang['created after %s (%s)'] = 'created after %s (%s)'; |
---|
424 | $lang['created before %s (%s)'] = 'created before %s (%s)'; |
---|
425 | $lang['created between %s (%s) and %s (%s)'] = 'created between %s (%s) and %s (%s)'; |
---|
426 | $lang['created on %s'] = 'created on %s'; |
---|
427 | $lang['customize'] = 'Customize'; |
---|
428 | $lang['customize_page_title'] = 'Your Gallery Customization '; |
---|
429 | $lang['customize_title'] = 'Customization'; |
---|
430 | $lang['day'][0] = 'Sunday'; |
---|
431 | $lang['day'][1] = 'Monday'; |
---|
432 | $lang['day'][2] = 'Tuesday'; |
---|
433 | $lang['day'][3] = 'Wednesday'; |
---|
434 | $lang['day'][4] = 'Thursday'; |
---|
435 | $lang['day'][5] = 'Friday'; |
---|
436 | $lang['day'][6] = 'Saturday'; |
---|
437 | $lang['days'] = 'days'; |
---|
438 | $lang['default_sort'] = 'Default'; |
---|
439 | $lang['del_favorites_alt'] = 'Delete from favorites'; |
---|
440 | $lang['del_favorites_hint'] = 'Delete this picture from your favorites'; |
---|
441 | $lang['delete'] = 'Delete'; |
---|
442 | $lang['descending'] = 'descending'; |
---|
443 | $lang['download'] = 'download'; |
---|
444 | $lang['download_hint'] = 'download this file'; |
---|
445 | $lang['edit category informations'] = 'edit category informations'; |
---|
446 | $lang['edit'] = 'edit'; |
---|
447 | $lang['err_date'] = 'wrong date'; |
---|
448 | $lang['excluded'] = 'excluded'; |
---|
449 | $lang['favorite_cat'] = 'My favorites'; |
---|
450 | $lang['favorite_cat_hint'] = 'displays my favorites pictures'; |
---|
451 | $lang['favorites'] = 'Favorites'; |
---|
452 | $lang['first_page'] = 'First'; |
---|
453 | $lang['gallery_locked_message'] = 'The gallery is locked for maintenance. Please, come back later.'; |
---|
454 | $lang['generation_time'] = 'Page generated in'; |
---|
455 | $lang['guest'] = 'guest'; |
---|
456 | $lang['hello'] = 'Hello'; |
---|
457 | $lang['hint_admin'] = 'available for administrators only'; |
---|
458 | $lang['hint_category'] = 'shows images at the root of this category'; |
---|
459 | $lang['hint_comments'] = 'See last users comments'; |
---|
460 | $lang['hint_customize'] = 'customize the appareance of the gallery'; |
---|
461 | $lang['hint_search'] = 'search'; |
---|
462 | $lang['home'] = 'Home'; |
---|
463 | $lang['home_hint'] = 'Back to the home page'; |
---|
464 | $lang['ident_forgotten_password'] = 'Forget your password ?'; |
---|
465 | $lang['ident_guest_visit'] = 'Go through the gallery as a visitor'; |
---|
466 | $lang['ident_register'] = 'Register'; |
---|
467 | $lang['ident_title'] = 'ident_title'; |
---|
468 | $lang['identification'] = 'Identification'; |
---|
469 | $lang['images_available'] = 'images in this category'; |
---|
470 | $lang['included'] = 'included'; |
---|
471 | $lang['invalid_pwd'] = 'Invalid password!'; |
---|
472 | $lang['language']='Language'; |
---|
473 | $lang['last %d days'] = 'last %d days'; |
---|
474 | $lang['last_page'] = 'Last'; |
---|
475 | $lang['link_info_image'] = 'Modify information'; |
---|
476 | $lang['logout'] = 'Logout'; |
---|
477 | $lang['mail_address'] = 'E-mail address'; |
---|
478 | $lang['mandatory'] = 'obligatory'; |
---|
479 | $lang['maxheight'] = 'Maximum height of the pictures'; |
---|
480 | $lang['maxheight_error'] = 'Maximum height must be a number superior to 50'; |
---|
481 | $lang['maxwidth'] = 'Maximum width of the pictures'; |
---|
482 | $lang['maxwidth_error'] = 'Maximum width must be a number superior to 50'; |
---|
483 | $lang['mode_created_hint'] = 'displays a calendar by creation date'; |
---|
484 | $lang['mode_normal_hint'] = 'return to normal view mode'; |
---|
485 | $lang['mode_posted_hint'] = 'displays a calendar by date posted'; |
---|
486 | $lang['month'][10] = 'October'; |
---|
487 | $lang['month'][11] = 'November'; |
---|
488 | $lang['month'][12] = 'December'; |
---|
489 | $lang['month'][1] = 'January'; |
---|
490 | $lang['month'][2] = 'February'; |
---|
491 | $lang['month'][3] = 'March'; |
---|
492 | $lang['month'][4] = 'April'; |
---|
493 | $lang['month'][5] = 'May'; |
---|
494 | $lang['month'][6] = 'June'; |
---|
495 | $lang['month'][7] = 'July'; |
---|
496 | $lang['month'][8] = 'August'; |
---|
497 | $lang['month'][9] = 'September'; |
---|
498 | $lang['most_visited_cat'] = 'Most visited'; |
---|
499 | $lang['most_visited_cat_hint'] = 'displays most visited pictures'; |
---|
500 | $lang['nb_image_line_error'] = 'The number of images per row must be a not null scalar'; |
---|
501 | $lang['nb_image_per_row'] = 'Number of images per row'; |
---|
502 | $lang['nb_line_page_error'] = 'The number of rows per page must be a not null scalar'; |
---|
503 | $lang['nb_row_per_page'] = 'Number of rows per page'; |
---|
504 | $lang['nbm_unknown_identifier'] = 'Unknown identifier'; |
---|
505 | $lang['new_password'] = 'New password'; |
---|
506 | $lang['new_password_hint'] = 'You only have to give a password if you wish to change it.'; |
---|
507 | $lang['new_rate'] = 'Rate this picture'; |
---|
508 | $lang['next_page'] = 'Next'; |
---|
509 | $lang['no'] = 'No'; |
---|
510 | $lang['no_category'] = 'Home'; |
---|
511 | $lang['no_rate'] = 'no rate'; |
---|
512 | $lang['notification'] = 'notification'; |
---|
513 | $lang['only_members'] = 'Only members can access this page'; |
---|
514 | $lang['password updated'] = 'password updated'; |
---|
515 | $lang['password'] = 'Password'; |
---|
516 | $lang['password_hint'] = 'You only have to give your password if you wish to change your e-mail'; |
---|
517 | $lang['periods_error'] = 'Recent period must be a positive integer value'; |
---|
518 | $lang['picture'] = 'picture'; |
---|
519 | $lang['picture_high'] = 'Click on the picture to see it in high definition'; |
---|
520 | $lang['picture_show_metadata'] = 'Show file metadata'; |
---|
521 | $lang['pictures'] = 'pictures'; |
---|
522 | $lang['powered_by'] = 'Powered by'; |
---|
523 | $lang['preferences'] = 'Preferences'; |
---|
524 | $lang['previous_page'] = 'Previous'; |
---|
525 | $lang['random_cat'] = 'Random pictures'; |
---|
526 | $lang['random_cat_hint'] = 'displays a set of random pictures'; |
---|
527 | $lang['recent_cats_cat'] = 'Last categories'; |
---|
528 | $lang['recent_cats_cat_hint'] = 'displays recently updated categories'; |
---|
529 | $lang['recent_image'] = 'Image within the'; |
---|
530 | $lang['recent_period'] = 'Recent period'; |
---|
531 | $lang['recent_pics_cat'] = 'Last pictures'; |
---|
532 | $lang['recent_pics_cat_hint'] = 'displays most recent pictures'; |
---|
533 | $lang['redirect_msg'] = 'Redirection...'; |
---|
534 | $lang['reg_confirm'] = 'Confirm password'; |
---|
535 | $lang['reg_err_login1'] = 'Please, enter a login'; |
---|
536 | $lang['reg_err_login2'] = 'login mustn\'t end with a space character'; |
---|
537 | $lang['reg_err_login3'] = 'login mustn\'t start with a space character'; |
---|
538 | $lang['reg_err_login5'] = 'this login is already used'; |
---|
539 | $lang['reg_err_mail_address'] = 'mail address must be like xxx@yyy.eee (example : jack@altern.org)'; |
---|
540 | $lang['reg_err_pass'] = 'please enter your password again'; |
---|
541 | $lang['register'] = 'register'; |
---|
542 | $lang['register_page_title'] = 'Registration'; |
---|
543 | $lang['register_title'] = 'Registration'; |
---|
544 | $lang['remember_me'] = 'Auto login'; |
---|
545 | $lang['representative'] = 'representative'; |
---|
546 | $lang['reset'] = 'Reset'; |
---|
547 | $lang['return to homepage'] = 'return to homepage'; |
---|
548 | $lang['search'] = 'Search'; |
---|
549 | $lang['search_ascending'] = 'Ascending'; |
---|
550 | $lang['search_author'] = 'Search for Author'; |
---|
551 | $lang['search_categories'] = 'Search in Categories'; |
---|
552 | $lang['search_date'] = 'Search by Date'; |
---|
553 | $lang['search_date_from'] = 'Date'; |
---|
554 | $lang['search_date_to'] = 'End-Date'; |
---|
555 | $lang['search_date_type'] = 'Kind of date'; |
---|
556 | $lang['search_descending'] = 'Descending'; |
---|
557 | $lang['search_keywords'] = 'Search for words'; |
---|
558 | $lang['search_mode_and'] = 'Search for all terms '; |
---|
559 | $lang['search_mode_or'] = 'Search for any terms'; |
---|
560 | $lang['search_one_clause_at_least'] = 'Empty query. No criteria has been entered.'; |
---|
561 | $lang['search_options'] = 'Search Options'; |
---|
562 | $lang['search_result'] = 'Search results'; |
---|
563 | $lang['search_sort'] = 'Sort results by'; |
---|
564 | $lang['search_subcats_included'] = 'Search in subcategories'; |
---|
565 | $lang['search_title'] = 'Search'; |
---|
566 | $lang['searched words : %s'] = 'searched words : %s'; |
---|
567 | $lang['send_mail'] = 'Contact'; |
---|
568 | $lang['set as category representative'] = 'set as category representative'; |
---|
569 | $lang['show_nb_comments'] = 'Show number of comments'; |
---|
570 | $lang['slideshow'] = 'slideshow'; |
---|
571 | $lang['slideshow_stop'] = 'stop the slideshow'; |
---|
572 | $lang['special_categories'] = 'Specials'; |
---|
573 | $lang['sql_queries_in'] = 'SQL queries in'; |
---|
574 | $lang['submit'] = 'Submit'; |
---|
575 | $lang['the beginning'] = 'the beginning'; |
---|
576 | $lang['theme'] = 'Interface theme'; |
---|
577 | $lang['thumbnails'] = 'Thumbnails'; |
---|
578 | $lang['title_comments'] = 'Users comments'; |
---|
579 | $lang['title_menu'] = 'Menu'; |
---|
580 | $lang['title_send_mail'] = 'A comment on your site'; |
---|
581 | $lang['today'] = 'today'; |
---|
582 | $lang['total'] = 'images'; |
---|
583 | $lang['update_rate'] = 'Update your rating'; |
---|
584 | $lang['update_wrong_dirname'] = 'wrong filename'; |
---|
585 | $lang['upload_advise'] = 'Choose an image to place in the category : '; |
---|
586 | $lang['upload_advise_filesize'] = 'the filesize of the picture must not exceed : '; |
---|
587 | $lang['upload_advise_filetype'] = 'the picture must be to the fileformat jpg, gif or png'; |
---|
588 | $lang['upload_advise_height'] = 'the height of the picture must not exceed : '; |
---|
589 | $lang['upload_advise_thumbnail'] = 'Optional, but recommended : choose a thumbnail to associate to '; |
---|
590 | $lang['upload_advise_width'] = 'the width of the picture must not exceed : '; |
---|
591 | $lang['upload_author'] = 'Author (eg "Pierrick LE GALL")'; |
---|
592 | $lang['upload_cannot_upload'] = 'can\'t upload the picture on the server'; |
---|
593 | $lang['upload_creation_date'] = 'Creation date (DD/MM/YYYY)'; |
---|
594 | $lang['upload_err_username'] = 'the username must be given'; |
---|
595 | $lang['upload_file_exists'] = 'A picture\'s name already used'; |
---|
596 | $lang['upload_filenotfound'] = 'You must choose a picture fileformat for the image'; |
---|
597 | $lang['upload_forbidden'] = 'You can\'t upload pictures in this category'; |
---|
598 | $lang['upload_name'] = 'Name of the picture'; |
---|
599 | $lang['upload_picture'] = 'Upload a picture'; |
---|
600 | $lang['upload_successful'] = 'Picture uploaded with success, an administrator will validate it as soon as possible'; |
---|
601 | $lang['upload_title'] = 'Upload a picture'; |
---|
602 | $lang['upload_username'] = 'Username'; |
---|
603 | $lang['useful when password forgotten'] = 'useful when password forgotten'; |
---|
604 | $lang['w_month'] = 'Month'; |
---|
605 | $lang['yes'] = 'Yes'; |
---|
606 | ?> |
---|