Subversion Repositories svnkaklik

Rev

Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
6 kaklik 1
<?php
2
/*************************
3
  Coppermine Photo Gallery
4
  ************************
5
  Copyright (c) 2003-2005 Coppermine Dev Team
6
  v1.1 originaly written by Gregory DEMAR
7
 
8
  This program is free software; you can redistribute it and/or modify
9
  it under the terms of the GNU General Public License as published by
10
  the Free Software Foundation; either version 2 of the License, or
11
  (at your option) any later version.
12
  ********************************************
13
  Coppermine version: 1.3.3
14
  $Source: /cvsroot/coppermine/stable/lang/english-utf-8.php,v $
15
  $Revision: 1.13 $
16
  $Author: gaugau $
17
  $Date: 2005/04/19 21:54:08 $
18
**********************************************/
19
 
20
// info about translators and translated language
21
$lang_translation_info = array(
22
  'lang_name_english' => 'English',
23
  'lang_name_native' => 'English',
24
  'lang_country_code' => 'gb',
25
  'trans_name'=> 'Coppermine dev team',
26
  'trans_email' => '',
27
  'trans_website' => 'http://coppermine.sourceforge.net/',
28
  'trans_date' => '2004-03-18',
29
);
30
 
31
$lang_charset = 'utf-8';
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('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat');
39
$lang_month = array('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec');
40
 
41
// Some common strings
42
$lang_yes = 'Yes';
43
$lang_no  = 'No';
44
$lang_back = 'BACK';
45
$lang_continue = 'CONTINUE';
46
$lang_info = 'Information';
47
$lang_error = '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' => 'Random files', //cpg1.3.0
63
  'lastup' => 'Last additions',
64
  'lastalb'=> 'Last updated albums',
65
  'lastcom' => 'Last comments',
66
  'topn' => 'Most viewed',
67
  'toprated' => 'Top rated',
68
  'lasthits' => 'Last viewed',
69
  'search' => 'Search results',
70
  'favpics'=> 'Favourite Files', //cpg1.3.0
71
);
72
 
73
$lang_errors = array(
74
  'access_denied' => 'You don\'t have permission to access this page.',
75
  'perm_denied' => 'You don\'t have permission to perform this operation.',
76
  'param_missing' => 'Script called without the required parameter(s).',
77
  'non_exist_ap' => 'The selected album/file does not exist !', //cpg1.3.0
78
  'quota_exceeded' => 'Disk quota exceeded<br /><br />You have a space quota of [quota]K, your files currently use [space]K, adding this file would make you exceed your quota.', //cpg1.3.0
79
  'gd_file_type_err' => 'When using the GD image library allowed image types are only JPEG and PNG.',
80
  'invalid_image' => 'The image you have uploaded is corrupted or can\'t be handled by the GD library',
81
  'resize_failed' => 'Unable to create thumbnail or reduced size image.',
82
  'no_img_to_display' => 'No image to display',
83
  'non_exist_cat' => 'The selected category does not exist',
84
  'orphan_cat' => 'A category has a non-existing parent, run the category manager to correct the problem!', //cpg1.3.0
85
  'directory_ro' => 'Directory \'%s\' is not writable, files can\'t be deleted', //cpg1.3.0
86
  'non_exist_comment' => 'The selected comment does not exist.',
87
  'pic_in_invalid_album' => 'File is in a non existant album (%s)!?', //cpg1.3.0
88
  'banned' => 'You are currently banned from using this site.',
89
  'not_with_udb' => 'This function is disabled in Coppermine because it is integrated with forum software. Either what you are trying to do is not supported in this configuration, or the function should be handled by the forum software.',
90
  'offline_title' => 'Offline', //cpg1.3.0
91
  'offline_text' => 'Gallery is currently offline - check back soon', //cpg1.3.0
92
  'ecards_empty' => 'There are currently no ecard records to display. Check that you have enabled ecard logging in coppermine config!', //cpg1.3.0
93
  'action_failed' => 'Action failed.  Coppermine is unable to process your request.', //cpg1.3.0
94
  'no_zip' => 'The necessary libraries to process ZIP files are not available.  Please contact your Coppermine administrator.', //cpg1.3.0
95
  'zip_type' => 'You do not have permission to upload ZIP files.', //cpg1.3.0
96
);
97
 
98
$lang_bbcode_help = 'Following codes might be useful: <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' => 'Go to the album list',
106
  'alb_list_lnk' => 'Album list',
107
  'my_gal_title' => 'Go to my personal gallery',
108
  'my_gal_lnk' => 'My gallery',
109
  'my_prof_lnk' => 'My profile',
110
  'adm_mode_title' => 'Switch to admin mode',
111
  'adm_mode_lnk' => 'Admin mode',
112
  'usr_mode_title' => 'Switch to user mode',
113
  'usr_mode_lnk' => 'User mode',
114
  'upload_pic_title' => 'Upload a file into an album', //cpg1.3.0
115
  'upload_pic_lnk' => 'Upload file', //cpg1.3.0
116
  'register_title' => 'Create an account',
117
  'register_lnk' => 'Register',
118
  'login_lnk' => 'Login',
119
  'logout_lnk' => 'Logout',
120
  'lastup_lnk' => 'Last uploads',
121
  'lastcom_lnk' => 'Last comments',
122
  'topn_lnk' => 'Most viewed',
123
  'toprated_lnk' => 'Top rated',
124
  'search_lnk' => 'Search',
125
  'fav_lnk' => 'My Favorites',
126
  'memberlist_title' => 'Show Memberlist', //cpg1.3.0
127
  'memberlist_lnk' => 'Memberlist', //cpg1.3.0
128
  'faq_title' => 'Frequently Asked Questions on the picture gallery &quot;Coppermine&quot;', //cpg1.3.0
129
  'faq_lnk' => 'FAQ', //cpg1.3.0
130
);
131
 
132
$lang_gallery_admin_menu = array(
133
  'upl_app_lnk' => 'Upload approval',
134
  'config_lnk' => 'Config',
135
  'albums_lnk' => 'Albums',
136
  'categories_lnk' => 'Categories',
137
  'users_lnk' => 'Users',
138
  'groups_lnk' => 'Groups',
139
  'comments_lnk' => 'Review Comments', //cpg1.3.0
140
  'searchnew_lnk' => 'Batch add files', //cpg1.3.0
141
  'util_lnk' => 'Admin Tools', //cpg1.3.0
142
  'ban_lnk' => 'Ban Users',
143
  'db_ecard_lnk' => 'Display Ecards', //cpg1.3.0
144
);
145
 
146
$lang_user_admin_menu = array(
147
  'albmgr_lnk' => 'Create / order my albums',
148
  'modifyalb_lnk' => 'Modify my albums',
149
  'my_prof_lnk' => 'My profile',
150
);
151
 
152
$lang_cat_list = array(
153
  'category' => 'Category',
154
  'albums' => 'Albums',
155
  'pictures' => 'Files', //cpg1.3.0
156
);
157
 
158
$lang_album_list = array(
159
  'album_on_page' => '%d albums on %d page(s)',
160
);
161
 
162
$lang_thumb_view = array(
163
  'date' => 'DATE',
164
  //Sort by filename and title
165
  'name' => 'FILE NAME',
166
  'title' => 'TITLE',
167
  'sort_da' => 'Sort by date ascending',
168
  'sort_dd' => 'Sort by date descending',
169
  'sort_na' => 'Sort by name ascending',
170
  'sort_nd' => 'Sort by name descending',
171
  'sort_ta' => 'Sort by title ascending',
172
  'sort_td' => 'Sort by title descending',
173
  'download_zip' => 'Download as Zip file', //cpg1.3.0
174
  'pic_on_page' => '%d files on %d page(s)',
175
  'user_on_page' => '%d users on %d page(s)', //cpg1.3.0
176
);
177
 
178
$lang_img_nav_bar = array(
179
  'thumb_title' => 'Return to the thumbnail page',
180
  'pic_info_title' => 'Display/hide file information', //cpg1.3.0
181
  'slideshow_title' => 'Slideshow',
182
  'ecard_title' => 'Send this file as an e-card', //cpg1.3.0
183
  'ecard_disabled' => 'e-cards are disabled',
184
  'ecard_disabled_msg' => 'You don\'t have permission to send ecards', //js-alert //cpg1.3.0
185
  'prev_title' => 'See previous file', //cpg1.3.0
186
  'next_title' => 'See next file', //cpg1.3.0
187
  'pic_pos' => 'FILE %s/%s', //cpg1.3.0
188
);
189
 
190
$lang_rate_pic = array(
191
  'rate_this_pic' => 'Rate this file ', //cpg1.3.0
192
  'no_votes' => '(No vote yet)',
193
  'rating' => '(current rating : %s / 5 with %s votes)',
194
  'rubbish' => 'Rubbish',
195
  'poor' => 'Poor',
196
  'fair' => 'Fair',
197
  'good' => 'Good',
198
  'excellent' => 'Excellent',
199
  'great' => 'Great',
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 => 'Critical error',
216
  'file' => 'File: ',
217
  'line' => 'Line: ',
218
);
219
 
220
$lang_display_thumbnails = array(
221
  'filename' => 'Filename : ',
222
  'filesize' => 'Filesize : ',
223
  'dimensions' => 'Dimensions : ',
224
  'date_added' => 'Date added : ', //cpg1.3.0
225
);
226
 
227
$lang_get_pic_data = array(
228
  'n_comments' => '%s comments',
229
  'n_views' => '%s views',
230
  'n_votes' => '(%s votes)',
231
);
232
 
233
$lang_cpg_debug_output = array(
234
  'debug_info' => 'Debug Info', //cpg1.3.0
235
  'select_all' => 'Select All', //cpg1.3.0
236
  'copy_and_paste_instructions' => 'If you\'re going to request help on the coppermine support board, copy-and-paste this debug output into your posting. Make sure to replace any passwords from the query with *** before posting.', //cpg1.3.0
237
  'phpinfo' => 'display phpinfo', //cpg1.3.0
238
);
239
 
240
$lang_language_selection = array(
241
  'reset_language' => 'Default language', //cpg1.3.0
242
  'choose_language' => 'Choose your language', //cpg1.3.0
243
);
244
 
245
$lang_theme_selection = array(
246
  'reset_theme' => 'Default theme', //cpg1.3.0
247
  'choose_theme' => 'Choose a theme', //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' => 'Exclamation',
268
  'Question' => 'Question',
269
  'Very Happy' => 'Very Happy',
270
  'Smile' => 'Smile',
271
  'Sad' => 'Sad',
272
  'Surprised' => 'Surprised',
273
  'Shocked' => 'Shocked',
274
  'Confused' => 'Confused',
275
  'Cool' => 'Cool',
276
  'Laughing' => 'Laughing',
277
  'Mad' => 'Mad',
278
  'Razz' => 'Razz',
279
  'Embarassed' => 'Embarassed',
280
  'Crying or Very sad' => 'Crying or Very sad',
281
  'Evil or Very Mad' => 'Evil or Very Mad',
282
  'Twisted Evil' => 'Twisted Evil',
283
  'Rolling Eyes' => 'Rolling Eyes',
284
  'Wink' => 'Wink',
285
  'Idea' => 'Idea',
286
  'Arrow' => 'Arrow',
287
  'Neutral' => 'Neutral',
288
  'Mr. Green' => 'Mr. Green',
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 => 'Entering admin mode...',
304
);
305
 
306
// ------------------------------------------------------------------------- //
307
// File albmgr.php
308
// ------------------------------------------------------------------------- //
309
 
310
if (defined('ALBMGR_PHP')) $lang_albmgr_php = array(
311
  'alb_need_name' => 'Albums need to have a name !', //js-alert
312
  'confirm_modifs' => 'Are you sure you want to make these modifications ?', //js-alert
313
  'no_change' => 'You did not make any change !', //js-alert
314
  'new_album' => 'New album',
315
  'confirm_delete1' => 'Are you sure you want to delete this album ?', //js-alert
316
  'confirm_delete2' => '\nAll files and comments it contains will be lost !', //js-alert
317
  'select_first' => 'Select an album first', //js-alert
318
  'alb_mrg' => 'Album Manager',
319
  'my_gallery' => '* My gallery *',
320
  'no_category' => '* No category *',
321
  'delete' => 'Delete',
322
  'new' => 'New',
323
  'apply_modifs' => 'Apply modifications',
324
  'select_category' => 'Select category',
325
);
326
 
327
// ------------------------------------------------------------------------- //
328
// File catmgr.php
329
// ------------------------------------------------------------------------- //
330
 
331
if (defined('CATMGR_PHP')) $lang_catmgr_php = array(
332
  'miss_param' => 'Parameters required for \'%s\'operation not supplied !',
333
  'unknown_cat' => 'Selected category does not exist in database',
334
  'usergal_cat_ro' => 'User galleries category can\'t be deleted !',
335
  'manage_cat' => 'Manage categories',
336
  'confirm_delete' => 'Are you sure you want to DELETE this category', //js-alert
337
  'category' => 'Category',
338
  'operations' => 'Operations',
339
  'move_into' => 'Move into',
340
  'update_create' => 'Update/Create category',
341
  'parent_cat' => 'Parent category',
342
  'cat_title' => 'Category title',
343
  'cat_thumb' => 'Category thumbnail', //cpg1.3.0
344
  'cat_desc' => 'Category description',
345
);
346
 
347
// ------------------------------------------------------------------------- //
348
// File config.php
349
// ------------------------------------------------------------------------- //
350
 
351
if (defined('CONFIG_PHP')) $lang_config_php = array(
352
  'title' => 'Configuration',
353
  'restore_cfg' => 'Restore factory defaults',
354
  'save_cfg' => 'Save new configuration',
355
  'notes' => 'Notes',
356
  'info' => 'Information',
357
  'upd_success' => 'Coppermine configuration was updated',
358
  'restore_success' => 'Coppermine default configuration restored',
359
  'name_a' => 'Name ascending',
360
  'name_d' => 'Name descending',
361
  'title_a' => 'Title ascending',
362
  'title_d' => 'Title descending',
363
  'date_a' => 'Date ascending',
364
  'date_d' => 'Date descending',
365
  'th_any' => 'Max Aspect',
366
  'th_ht' => 'Height',
367
  'th_wd' => 'Width',
368
  'label' => 'label', //cpg1.3.0
369
  'item' => 'item', //cpg1.3.0
370
  'debug_everyone' => 'Everyone', //cpg1.3.0
371
  'debug_admin' => 'Admin only', //cpg1.3.0
372
        );
373
 
374
if (defined('CONFIG_PHP')) $lang_config_data = array(
375
  'General settings',
376
  array('Gallery name', 'gallery_name', 0),
377
  array('Gallery description', 'gallery_description', 0),
378
  array('Gallery administrator email', 'gallery_admin_email', 0),
379
  array('Target address for the \'See more pictures\' link in e-cards', 'ecards_more_pic_target', 0),
380
  array('Gallery is offline', 'offline', 1), //cpg1.3.0
381
  array('Log ecards', 'log_ecards', 1), //cpg1.3.0
382
  array('Allow ZIP-download of favorites', 'enable_zipdownload', 1), //cpg1.3.0
383
 
384
  'Language, Themes &amp; Charset settings',
385
  array('Language', 'lang', 5),
386
  array('Theme', 'theme', 6),
387
  array('Display language list', 'language_list', 1), //cpg1.3.0
388
  array('Display language flags', 'language_flags', 8), //cpg1.3.0
389
  array('Display &quot;reset&quot; in language selection', 'language_reset', 1), //cpg1.3.0
390
  array('Display theme list', 'theme_list', 1), //cpg1.3.0
391
  array('Display &quot;reset&quot; in theme selection', 'theme_reset', 1), //cpg1.3.0
392
  array('Display FAQ', 'display_faq', 1), //cpg1.3.0
393
  array('Display bbcode help', 'show_bbcode_help', 1), //cpg1.3.0
394
  array('Character encoding', 'charset', 4), //cpg1.3.0
395
 
396
  'Album list view',
397
  array('Width of the main table (pixels or %)', 'main_table_width', 0),
398
  array('Number of levels of categories to display', 'subcat_level', 0),
399
  array('Number of albums to display', 'albums_per_page', 0),
400
  array('Number of columns for the album list', 'album_list_cols', 0),
401
  array('Size of thumbnails in pixels', 'alb_list_thumb_size', 0),
402
  array('The content of the main page', 'main_page_layout', 0),
403
  array('Show first level album thumbnails in categories','first_level',1),
404
 
405
  'Thumbnail view',
406
  array('Number of columns on thumbnail page', 'thumbcols', 0),
407
  array('Number of rows on thumbnail page', 'thumbrows', 0),
408
  array('Maximum number of tabs to display', 'max_tabs', 10), //cpg1.3.0
409
  array('Display file caption (in addition to title) below the thumbnail', 'caption_in_thumbview', 1), //cpg1.3.0
410
  array('Display number of views below the thumbnail', 'views_in_thumbview', 1), //cpg1.3.0
411
  array('Display number of comments below the thumbnail', 'display_comment_count', 1),
412
  array('Display uploader name below the thumbnail', 'display_uploader', 1), //cpg1.3.0
413
  array('Default sort order for files', 'default_sort_order', 3), //cpg1.3.0
414
  array('Minimum number of votes for a file to appear in the \'top-rated\' list', 'min_votes_for_rating', 0), //cpg1.3.0
415
 
416
  'Image view &amp; Comment settings',
417
  array('Width of the table for file display (pixels or %)', 'picture_table_width', 0), //cpg1.3.0
418
  array('File information is visible by default', 'display_pic_info', 1), //cpg1.3.0
419
  array('Filter bad words in comments', 'filter_bad_words', 1),
420
  array('Allow smiles in comments', 'enable_smilies', 1),
421
  array('Allow several consecutive comments on one file from the same user (disable flood protection)', 'disable_comment_flood_protect', 1), //cpg1.3.0
422
  array('Max length for an image description', 'max_img_desc_length', 0),
423
  array('Max number of characters in a word', 'max_com_wlength', 0),
424
  array('Max number of lines in a comment', 'max_com_lines', 0),
425
  array('Maximum length of a comment', 'max_com_size', 0),
426
  array('Show film strip', 'display_film_strip', 1),
427
  array('Number of items in film strip', 'max_film_strip_items', 0),
428
  array('Notify admin of comments by email', 'email_comment_notification', 1), //cpg1.3.0
429
  array('Slideshow interval in milliseconds (1 second = 1000 milliseconds)', 'slideshow_interval', 0), //cpg1.3.0
430
 
431
  'Files and thumbnails settings', //cpg1.3.0
432
  array('Quality for JPEG files', 'jpeg_qual', 0),
433
  array('Max dimension of a thumbnail <a href="#notice2" class="clickable_option">**</a>', 'thumb_width', 0), //cpg1.3.0
434
  array('Use dimension ( width or height or Max aspect for thumbnail ) <a href="#notice2" class="clickable_option">**</a>', 'thumb_use', 7),
435
  array('Create intermediate pictures','make_intermediate',1),
436
  array('Max width or height of an intermediate picture/video <a href="#notice2" class="clickable_option">**</a>', 'picture_width', 0), //cpg1.3.0
437
  array('Max size for uploaded files (KB)', 'max_upl_size', 0), //cpg1.3.0
438
  array('Max width or height for uploaded pictures/videos (pixels)', 'max_upl_width_height', 0), //cpg1.3.0
439
 
440
  'Files and thumbnails advanced settings', //cpg1.3.0
441
  array('Show private album Icon to unlogged user','show_private',1), //cpg1.3.0
442
  array('Characters forbidden in filenames', 'forbiden_fname_char',0), //cpg1.3.0
443
  //array('Accepted file extensions for uploaded pictures', 'allowed_file_extensions',0), //cpg1.3.0
444
  array('Allowed image types', 'allowed_img_types',0), //cpg1.3.0
445
  array('Allowed movie types', 'allowed_mov_types',0), //cpg1.3.0
446
  array('Allowed audio types', 'allowed_snd_types',0), //cpg1.3.0
447
  array('Allowed document types', 'allowed_doc_types',0), //cpg1.3.0
448
  array('Method for resizing images','thumb_method',2), //cpg1.3.0
449
  array('Path to ImageMagick \'convert\' utility (example /usr/bin/X11/)', 'impath', 0), //cpg1.3.0
450
  //array('Allowed image types (only valid for ImageMagick)', 'allowed_img_types',0), //cpg1.3.0
451
  array('Command line options for ImageMagick', 'im_options', 0), //cpg1.3.0
452
  array('Read EXIF data in JPEG files', 'read_exif_data', 1), //cpg1.3.0
453
  array('Read IPTC data in JPEG files', 'read_iptc_data', 1), //cpg1.3.0
454
  array('The album directory <a href="#notice1" class="clickable_option">*</a>', 'fullpath', 0), //cpg1.3.0
455
  array('The directory for user files <a href="#notice1" class="clickable_option">*</a>', 'userpics', 0), //cpg1.3.0
456
  array('The prefix for intermediate pictures <a href="#notice1" class="clickable_option">*</a>', 'normal_pfx', 0), //cpg1.3.0
457
  array('The prefix for thumbnails <a href="#notice1" class="clickable_option">*</a>', 'thumb_pfx', 0), //cpg1.3.0
458
  array('Default mode for directories', 'default_dir_mode', 0), //cpg1.3.0
459
  array('Default mode for files', 'default_file_mode', 0), //cpg1.3.0
460
 
461
  'User settings',
462
  array('Allow new user registrations', 'allow_user_registration', 1),
463
  array('User registration requires email verification', 'reg_requires_valid_email', 1),
464
  array('Notify admin of user registration by email', 'reg_notify_admin_email', 1), //cpg1.3.0
465
  array('Allow two users to have the same email address', 'allow_duplicate_emails_addr', 1),
466
  array('Users can have private albums (Note: if you switch from \'yes\' to \'no\' any current private albums will become public)', 'allow_private_albums', 1), //cpg1.3.0
467
  array('Notify admin of user upload awaiting approval', 'upl_notify_admin_email', 1), //cpg1.3.0
468
  array('Allow logged in users to view memberlist', 'allow_memberlist', 1), //cpg1.3.0
469
 
470
  'Custom fields for image description (leave blank if unused)',
471
  array('Field 1 name', 'user_field1_name', 0),
472
  array('Field 2 name', 'user_field2_name', 0),
473
  array('Field 3 name', 'user_field3_name', 0),
474
  array('Field 4 name', 'user_field4_name', 0),
475
 
476
  'Cookies settings',
477
  array('Name of the cookie used by the script (when using bbs integration, make sure it differs from the bbs\'s cookie name)', 'cookie_name', 0),
478
  array('Path of the cookie used by the script', 'cookie_path', 0),
479
 
480
  'Miscellaneous settings',
481
  array('Enable debug mode', 'debug_mode', 9), //cpg1.3.0
482
  array('Display notices in debug mode', 'debug_notice', 1), //cpg1.3.0
483
 
484
  '<br /><div align="left"><a name="notice1"></a>(*) This settings mustn\'t be changed if you already have files in your database.<br />
485
  <a name="notice2"></a>(**) When changing this setting, only the files that are added from that point on are affected, so it is advisable that this setting must not be changed if there are already files in the gallery. You can, however, apply the changes to the existing files with the &quot;<a href="util.php">admin tools</a> (resize pictures)&quot; utility from the admin menu.</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' => 'Sent ecards', //cpg1.3.0
494
  'ecard_sender' => 'Sender', //cpg1.3.0
495
  'ecard_recipient' => 'Recipient', //cpg1.3.0
496
  'ecard_date' => 'Date', //cpg1.3.0
497
  'ecard_display' => 'Display ecard', //cpg1.3.0
498
  'ecard_name' => 'Name', //cpg1.3.0
499
  'ecard_email' => 'Email', //cpg1.3.0
500
  'ecard_ip' => 'IP #', //cpg1.3.0
501
  'ecard_ascending' => 'ascending', //cpg1.3.0
502
  'ecard_descending' => 'descending', //cpg1.3.0
503
  'ecard_sorted' => 'Sorted', //cpg1.3.0
504
  'ecard_by_date' => 'by date', //cpg1.3.0
505
  'ecard_by_sender_name' => 'by sender\'s name', //cpg1.3.0
506
  'ecard_by_sender_email' => 'by sender\'s email', //cpg1.3.0
507
  'ecard_by_sender_ip' => 'by sender\'s IP address', //cpg1.3.0
508
  'ecard_by_recipient_name' => 'by recipient\'s name', //cpg1.3.0
509
  'ecard_by_recipient_email' => 'by recipient\'s email', //cpg1.3.0
510
  'ecard_number' => 'displaying record %s to %s of %s', //cpg1.3.0
511
  'ecard_goto_page' => 'go to page', //cpg1.3.0
512
  'ecard_records_per_page' => 'Records per page', //cpg1.3.0
513
  'check_all' => 'Check All', //cpg1.3.0
514
  'uncheck_all' => 'Uncheck All', //cpg1.3.0
515
  'ecards_delete_selected' => 'Delete selected ecards', //cpg1.3.0
516
  'ecards_delete_confirm' => 'Are you sure you want to delete the records? Tick the checkbox!', //cpg1.3.0
517
  'ecards_delete_sure' => 'I\'m sure', //cpg1.3.0
518
);
519
 
520
 
521
// ------------------------------------------------------------------------- //
522
// File db_input.php
523
// ------------------------------------------------------------------------- //
524
 
525
if (defined('DB_INPUT_PHP')) $lang_db_input_php = array(
526
  'empty_name_or_com' => 'You need to type your name and a comment',
527
  'com_added' => 'Your comment was added',
528
  'alb_need_title' => 'You have to provide a title for the album !',
529
  'no_udp_needed' => 'No update needed.',
530
  'alb_updated' => 'The album was updated',
531
  'unknown_album' => 'Selected album does not exist or you don\'t have permission to upload in this album',
532
  'no_pic_uploaded' => 'No file was uploaded !<br /><br />If you have really selected a file to upload, check that the server allows file uploads...', //cpg1.3.0
533
  'err_mkdir' => 'Failed to create directory %s !',
534
  'dest_dir_ro' => 'Destination directory %s is not writable by the script !',
535
  'err_move' => 'Impossible to move %s to %s !',
536
  'err_fsize_too_large' => 'The size of file you have uploaded is too large (maximum allowed is %s x %s) !', //cpg1.3.0
537
  'err_imgsize_too_large' => 'The size of the file you have uploaded is too large (maximum allowed is %s KB) !',
538
  'err_invalid_img' => 'The file you have uploaded is not a valid image !',
539
  'allowed_img_types' => 'You can only upload %s images.',
540
  'err_insert_pic' => 'The file \'%s\' can\'t be inserted in the album ', //cpg1.3.0
541
  'upload_success' => 'Your file was uploaded successfully<br /><br />It will be visible after admin approval.', //cpg1.3.0
542
  'notify_admin_email_subject' => '%s - Upload notification', //cpg1.3.0
543
  'notify_admin_email_body' => 'A picture has been uploaded by %s that needs your approval. Visit %s', //cpg1.3.0
544
  'info' => 'Information',
545
  'com_added' => 'Comment added',
546
  'alb_updated' => 'Album updated',
547
  'err_comment_empty' => 'Your comment is empty !',
548
  'err_invalid_fext' => 'Only files with the following extensions are accepted : <br /><br />%s.',
549
  'no_flood' => 'Sorry but you are already the author of the last comment posted for this file<br /><br />Edit the comment you have posted if you want to modify it', //cpg1.3.0
550
  'redirect_msg' => 'You are being redirected.<br /><br /><br />Click \'CONTINUE\' if the page does not refresh automatically',
551
  'upl_success' => 'Your file was successfully added', //cpg1.3.0
552
  'email_comment_subject' => 'Comment posted on Coppermine Photo Gallery', //cpg1.3.0
553
  'email_comment_body' => 'Someone has posted a comment on your gallery. See it at', //cpg1.3.0
554
);
555
 
556
// ------------------------------------------------------------------------- //
557
// File delete.php
558
// ------------------------------------------------------------------------- //
559
 
560
if (defined('DELETE_PHP')) $lang_delete_php = array(
561
  'caption' => 'Caption',
562
  'fs_pic' => 'full size image',
563
  'del_success' => 'successfully deleted',
564
  'ns_pic' => 'normal size image',
565
  'err_del' => 'can\'t be deleted',
566
  'thumb_pic' => 'thumbnail',
567
  'comment' => 'comment',
568
  'im_in_alb' => 'image in album',
569
  'alb_del_success' => 'Album \'%s\' deleted',
570
  'alb_mgr' => 'Album Manager',
571
  'err_invalid_data' => 'Invalid data received in \'%s\'',
572
  'create_alb' => 'Creating album \'%s\'',
573
  'update_alb' => 'Updating album \'%s\' with title \'%s\' and index \'%s\'',
574
  'del_pic' => 'Delete file', //cpg1.3.0
575
  'del_alb' => 'Delete album',
576
  'del_user' => 'Delete user',
577
  'err_unknown_user' => 'The selected user does not exist !',
578
  'comment_deleted' => 'Comment was succesfully deleted',
579
);
580
 
581
// ------------------------------------------------------------------------- //
582
// File displayecard.php
583
// ------------------------------------------------------------------------- //
584
 
585
// Void
586
 
587
// ------------------------------------------------------------------------- //
588
// File displayimage.php
589
// ------------------------------------------------------------------------- //
590
 
591
if (defined('DISPLAYIMAGE_PHP')){
592
 
593
$lang_display_image_php = array(
594
  'confirm_del' => 'Are you sure you want to DELETE this file ? \\nComments will also be deleted.', //js-alert //cpg1.3.0
595
  'del_pic' => 'DELETE THIS FILE', //cpg1.3.0
596
  'size' => '%s x %s pixels',
597
  'views' => '%s times',
598
  'slideshow' => 'Slideshow',
599
  'stop_slideshow' => 'STOP SLIDESHOW',
600
  'view_fs' => 'Click to view full size image',
601
  'edit_pic' => 'Edit description', //cpg1.3.0
602
  'crop_pic' => 'Crop and Rotate', //cpg1.3.0
603
);
604
 
605
$lang_picinfo = array(
606
  'title' =>'File information', //cpg1.3.0
607
  'Filename' => 'Filename',
608
  'Album name' => 'Album name',
609
  'Rating' => 'Rating (%s votes)',
610
  'Keywords' => 'Keywords',
611
  'File Size' => 'File Size',
612
  'Dimensions' => 'Dimensions',
613
  'Displayed' => 'Displayed',
614
  'Camera' => 'Camera',
615
  'Date taken' => 'Date taken',
616
  'Aperture' => 'Aperture',
617
  'Exposure time' => 'Exposure time',
618
  'Focal length' => 'Focal length',
619
  'Comment' => 'Comment',
620
  'addFav'=>'Add to Favorites', //cpg1.3.0
621
  'addFavPhrase'=>'Favorites', //cpg1.3.0
622
  'remFav'=>'Remove from Favorites', //cpg1.3.0
623
  'iptcTitle'=>'IPTC Title', //cpg1.3.0
624
  'iptcCopyright'=>'IPTC Copyright', //cpg1.3.0
625
  'iptcKeywords'=>'IPTC Keywords', //cpg1.3.0
626
  'iptcCategory'=>'IPTC Category', //cpg1.3.0
627
  'iptcSubCategories'=>'IPTC Sub Categories', //cpg1.3.0
628
);
629
 
630
$lang_display_comments = array(
631
  'OK' => 'OK',
632
  'edit_title' => 'Edit this comment',
633
  'confirm_delete' => 'Are you sure you want to delete this comment ?', //js-alert
634
  'add_your_comment' => 'Add your comment',
635
  'name'=>'Name',
636
  'comment'=>'Comment',
637
  'your_name' => 'Anon',
638
);
639
 
640
$lang_fullsize_popup = array(
641
  'click_to_close' => 'Click image to close this window',
642
);
643
 
644
}
645
 
646
// ------------------------------------------------------------------------- //
647
// File ecard.php
648
// ------------------------------------------------------------------------- //
649
 
650
if (defined('ECARDS_PHP') || defined('DISPLAYECARD_PHP')) $lang_ecard_php =array(
651
  'title' => 'Send an e-card',
652
  'invalid_email' => '<b>Warning</b> : invalid email address !',
653
  'ecard_title' => 'An e-card from %s for you',
654
  'error_not_image' => 'Only images can be sent as an ecard.', //cpg1.3.0
655
  'view_ecard' => 'If the e-card does not display correctly, click this link',
656
  'view_more_pics' => 'Click this link to view more pictures !',
657
  'send_success' => 'Your ecard was sent',
658
  'send_failed' => 'Sorry but the server can\'t send your e-card...',
659
  'from' => 'From',
660
  'your_name' => 'Your name',
661
  'your_email' => 'Your email address',
662
  'to' => 'To',
663
  'rcpt_name' => 'Recipient name',
664
  'rcpt_email' => 'Recipient email address',
665
  'greetings' => 'Greetings',
666
  'message' => 'Message',
667
);
668
 
669
// ------------------------------------------------------------------------- //
670
// File editpics.php
671
// ------------------------------------------------------------------------- //
672
 
673
if (defined('EDITPICS_PHP')) $lang_editpics_php = array(
674
  'pic_info' => 'File&nbsp;info', //cpg1.3.0
675
  'album' => 'Album',
676
  'title' => 'Title',
677
  'desc' => 'Description',
678
  'keywords' => 'Keywords',
679
  'pic_info_str' => '%s &times; %s - %s KB - %s views - %s votes',
680
  'approve' => 'Approve file', //cpg1.3.0
681
  'postpone_app' => 'Postpone approval',
682
  'del_pic' => 'Delete file', //cpg1.3.0
683
  'read_exif' => 'Read EXIF info again', //cpg1.3.0
684
  'reset_view_count' => 'Reset view counter',
685
  'reset_votes' => 'Reset votes',
686
  'del_comm' => 'Delete comments',
687
  'upl_approval' => 'Upload approval',
688
  'edit_pics' => 'Edit files', //cpg1.3.0
689
  'see_next' => 'See next files', //cpg1.3.0
690
  'see_prev' => 'See previous files', //cpg1.3.0
691
  'n_pic' => '%s files', //cpg1.3.0
692
  'n_of_pic_to_disp' => 'Number of files to display', //cpg1.3.0
693
  'apply' => 'Apply modifications', //cpg1.3.0
694
  'crop_title' => 'Coppermine Picture Editor', //cpg1.3.0
695
  'preview' => 'Preview', //cpg1.3.0
696
  'save' => 'Save picture', //cpg1.3.0
697
  'save_thumb' =>'Save as thumbnail', //cpg1.3.0
698
  'sel_on_img' =>'The selection has to be entirely on the image!', //js-alert //cpg1.3.0
699
);
700
 
701
// ------------------------------------------------------------------------- //
702
// File faq.php //cpg1.3.0
703
// ------------------------------------------------------------------------- //
704
 
705
if (defined('FAQ_PHP')) $lang_faq_php = array(
706
  'faq' => 'Frequently Asked Questions', //cpg1.3.0
707
  'toc' => 'Table of contents', //cpg1.3.0
708
  'question' => 'Question: ', //cpg1.3.0
709
  'answer' => 'Answer: ', //cpg1.3.0
710
);
711
 
712
if (defined('FAQ_PHP')) $lang_faq_data = array(
713
  'General FAQ', //cpg1.3.0
714
  array('Why do I need to register?', 'Registration may or may not be required by the administrator. Registration gives a member additional features such as uploading, having a favorite list, rating pictures and posting comments etc.', 'allow_user_registration', '1'), //cpg1.3.0
715
  array('How do I register?', 'Go to &quot;Register&quot; and fill out the required fields (and the optional ones if you want to).<br />If the Administrator has Email Activation enabled, then after submitting your information you should recieve an email message at the address that you have submitted while registering, giving you instructions on how to activate your membership. Your membership must be activated in order for you to login.', 'allow_user_registration', '1'), //cpg1.3.0
716
  array('How Do I login?', 'Go to &quot;Login&quot;, submit your username and password and check &quot;Remember Me&quot; so you will be logged in on the site if you should leave it.<br /><b>IMPORTANT:Cookies must be enabled and the cookie from this site must not be deleted in order to use &quot;Remember Me&quot;.</b>', 'offline', 0), //cpg1.3.0
717
  array('Why can I not login?', 'Did you register and click the link that was sent to you via email?. The link will activate your account. For other login problems contact the site administrator.', 'offline', 0), //cpg1.3.0
718
  array('What if I forgot my password?', 'If this site has a &quot;Forgot password&quot; link then use it. Other than that contact the site administrator for a new password.', 'offline', 0), //cpg1.3.0
719
  //array('What if I changed my email address?', 'Just simply login and change your email address through &quot;Profile&quot;', 'offline', 0), //cpg1.3.0
720
  array('How do I save a picture to &quot;My Favorites&quot;?', 'Click on a picture and click on the &quot;picture info&quot; link (<img src="images/info.gif" width="16" height="16" border="0" alt="Picture information" />); scroll down to the picture information set and click &quot;Add to fav&quot;.<br />The administrator may have the &quot;picture information&quot; on by default.<br />IMPORTANT:Cookies must be enabled and the cookie from this site must not be deleted.', 'offline', 0), //cpg1.3.0
721
  array('How do I rate a file?', 'Click on a thumbnail and go to the bottom and choose a rating.', 'offline', 0), //cpg1.3.0
722
  array('How do I post a comment for a picture?', 'Click on a thumbnail and go to the bottom and post a comment.', 'offline', 0), //cpg1.3.0
723
	array('How do I upload a file?', 'Go to &quot;Upload&quot;and select the album that you want to upload to. Click &quot;Browse,&quot; find the file to upload, and click &quot;open.&quot; Add a title and description if you want. Click &quot;Submit&quot;', 'allow_private_albums', 1), //cpg1.3.0
724
  array('Where do I upload a picture to?', 'You will be able to upload a file to one of your albums in &quot;My Gallery&quot;. The Administrator may also allow you to upload a file to one or more of the albums in the Main Gallery.', 'allow_private_albums', 0), //cpg1.3.0
725
  array('What type and size of a file can I upload?', 'The size and type (jpg, png, etc.) is up to the administrator.', 'offline', 0), //cpg1.3.0
726
  //array('What is &quot;My Gallery&quot;?', '&quot;My Gallery&quot; is a personal gallery that the user can upload to and manage.', 'allow_private_albums', 0), //cpg1.3.0
727
  array('How do I create, rename or delete an album in &quot;My Gallery&quot;?', 'You should already be in &quot;Admin-Mode&quot;<br />Go to &quot;Create/Order My Albums&quot;and click &quot;New&quot;. Change &quot;New Album&quot; to your desired name.<br />You can also rename any of the albums in your gallery.<br />Click &quot;Apply Modifications&quot;.', 'allow_private_albums', 0), //cpg1.3.0
728
  array('How can I modify and restrict users from viewing my albums?', 'You should already be in &quot;Admin Mode&quot;<br />Go to &quot;Modify My Albums. On the &quot;Update Album&quot; bar, select the album that you want to modify.<br />Here, you can change the name, description, thumbnail picture, restrict viewing and comment/rating permissions.<br />Click &quot;Update Album&quot;.', 'allow_private_albums', 0), //cpg1.3.0
729
  array('How can I view other users\' galleries?', 'Go to &quot;Album List&quot; and select &quot;User Galleries&quot;.', 'allow_private_albums', 0), //cpg1.3.0
730
  array('What are cookies?', 'Cookies are a plain text piece of data that is sent from a website and is put on to your computer.<br />Cookies usually allow a user to leave and return to the site without having to login again and other various chores.', 'offline', 0), //cpg1.3.0
731
  array('Where can I get this program for my site?', 'Coppermine is a free Multimedia Gallery, released under GNU GPL. It is full of features and has been ported to various platforms. Visit the <a href="http://coppermine.sf.net/">Coppermine Home Page</a> to find out more or download it.', 'offline', 0), //cpg1.3.0
732
 
733
  'Navigating the Site', //cpg1.3.0
734
  array('What\'s &quot;Album List&quot;?', 'This will show you the entire category you are currently in, with a link to each album. If you are not in a category, it will show you the entire gallery with a link to each category. Thumbnails may be a link to the category.', 'offline', 0), //cpg1.3.0
735
  array('What\'s &quot;My Gallery&quot;?', 'This feature lets users create their own galleries and add, delete or modify albums as well as upload to them.', 'allow_private_albums', 1), //cpg1.3.0
736
  array('What\'s the difference between &quot;Admin Mode&quot; and &quot;User Mode&quot;?', 'This feature, when in admin-mode, allows a user to modify their gallery (as well as others if allowed by the administrator).', 'allow_private_albums', 0), //cpg1.3.0
737
  array('What\'s &quot;Upload Picture&quot;?', 'This feature allows a user to upload a file (size and type is set by the site administrator) to a gallery selected by either you or the administrator.', 'allow_private_albums', 0), //cpg1.3.0
738
  array('What\'s &quot;Last Uploads&quot;?', 'This feature shows the last uploads to the site.', 'offline', 0), //cpg1.3.0
739
  array('What\'s &quot;Last Comments&quot;?', 'This feature shows the last comments along with the files posted by users.', 'offline', 0), //cpg1.3.0
740
  array('What\'s &quot;Most Viewed&quot;?', 'This feature shows the most viewed files by all users (whether logged in or not).', 'offline', 0), //cpg1.3.0
741
  array('What\'s &quot;Top Rated&quot;?', 'This feature shows the top rated files rated by the users, showing the average rating (e.g: five users each gave a <img src="images/rating3.gif" width="65" height="14" border="0" alt="" />: the file would have an average rating of <img src="images/rating3.gif" width="65" height="14" border="0" alt="" /> ;Five users rated the file from 1 to 5 (1,2,3,4,5) would result in an average <img src="images/rating3.gif" width="65" height="14" border="0" alt="" /> .)<br />The ratings go from <img src="images/rating5.gif" width="65" height="14" border="0" alt="best" /> (best) to <img src="images/rating0.gif" width="65" height="14" border="0" alt="worst" /> (worst).', 'offline', 0), //cpg1.3.0
742
  array('What\'s &quot;My Favorites&quot;?', 'This feature will let a user store a favorite file in the cookie that was sent to your computer.', 'offline', 0), //cpg1.3.0
743
);
744
 
745
 
746
// ------------------------------------------------------------------------- //
747
// File forgot_passwd.php //cpg1.3.0
748
// ------------------------------------------------------------------------- //
749
 
750
if (defined('FORGOT_PASSWD_PHP')) $lang_forgot_passwd_php = array(
751
  'forgot_passwd' => 'Password reminder', //cpg1.3.0
752
  'err_already_logged_in' => 'You are already logged in !', //cpg1.3.0
753
  'enter_username_email' => 'Enter your username or email address', //cpg1.3.0
754
  'submit' => 'go', //cpg1.3.0
755
  'failed_sending_email' => 'The password reminder email can\'t be sent !', //cpg1.3.0
756
  'email_sent' => 'An email with your username and password was sent to %s', //cpg1.3.0
757
  'err_unk_user' => 'Selected user does not exist!', //cpg1.3.0
758
  'passwd_reminder_subject' => '%s - Password reminder', //cpg1.3.0
759
  'passwd_reminder_body' => 'You have requested to be reminded of your login data:
760
Username: %s
761
Password: %s
762
Click %s to log in.', //cpg1.3.0
763
);
764
 
765
// ------------------------------------------------------------------------- //
766
// File groupmgr.php
767
// ------------------------------------------------------------------------- //
768
 
769
if (defined('GROUPMGR_PHP')) $lang_groupmgr_php = array(
770
  'group_name' => 'Group name',
771
  'disk_quota' => 'Disk quota',
772
  'can_rate' => 'Can rate files', //cpg1.3.0
773
  'can_send_ecards' => 'Can send ecards',
774
  'can_post_com' => 'Can post comments',
775
  'can_upload' => 'Can upload files', //cpg1.3.0
776
  'can_have_gallery' => 'Can have a personal gallery',
777
  'apply' => 'Apply modifications',
778
  'create_new_group' => 'Create new group',
779
  'del_groups' => 'Delete selected group(s)',
780
  'confirm_del' => 'Warning, when you delete a group, users that belong to this group will be transferred to the \'Registered\' group !\n\nDo you want to proceed ?', //js-alert //cpg1.3.0
781
  'title' => 'Manage user groups',
782
  'approval_1' => 'Pub. Upl. approval (1)',
783
  'approval_2' => 'Priv. Upl. approval (2)',
784
  'upload_form_config' => 'Upload form configuration', //cpg1.3.0
785
  'upload_form_config_values' => array( 'Single file uploads only', 'Multiple file uploads only', 'URI uploads only', 'ZIP upload only', 'File-URI', 'File-ZIP', 'URI-ZIP', 'File-URI-ZIP'), //cpg1.3.0
786
  'custom_user_upload'=>'User may customize number of upload boxes?', //cpg1.3.0
787
  'num_file_upload'=>'Maximum/exact number of file upload boxes', //cpg1.3.0
788
  'num_URI_upload'=>'Maximum/exact number of URI upload boxes', //cpg1.3.0
789
  'note1' => '<b>(1)</b> Uploads in a public album need admin approval',
790
  'note2' => '<b>(2)</b> Uploads in an album that belong to the user need admin approval',
791
  'notes' => 'Notes',
792
);
793
 
794
// ------------------------------------------------------------------------- //
795
// File index.php
796
// ------------------------------------------------------------------------- //
797
 
798
if (defined('INDEX_PHP')){
799
 
800
$lang_index_php = array(
801
  'welcome' => 'Welcome !',
802
);
803
 
804
$lang_album_admin_menu = array(
805
  'confirm_delete' => 'Are you sure you want to DELETE this album ? \\nAll files and comments will also be deleted.', //js-alert //cpg1.3.0
806
  'delete' => 'DELETE',
807
  'modify' => 'PROPERTIES',
808
  'edit_pics' => 'EDIT FILES', //cpg1.3.0
809
);
810
 
811
$lang_list_categories = array(
812
  'home' => 'Home',
813
  'stat1' => '<b>[pictures]</b> files in <b>[albums]</b> albums and <b>[cat]</b> categories with <b>[comments]</b> comments viewed <b>[views]</b> times', //cpg1.3.0
814
  'stat2' => '<b>[pictures]</b> files in <b>[albums]</b> albums viewed <b>[views]</b> times', //cpg1.3.0
815
  'xx_s_gallery' => '%s\'s Gallery',
816
  'stat3' => '<b>[pictures]</b> files in <b>[albums]</b> albums with <b>[comments]</b> comments viewed <b>[views]</b> times', //cpg1.3.0
817
);
818
 
819
$lang_list_users = array(
820
  'user_list' => 'User list',
821
  'no_user_gal' => 'There are no user galleries',
822
  'n_albums' => '%s album(s)',
823
  'n_pics' => '%s file(s)', //cpg1.3.0
824
);
825
 
826
$lang_list_albums = array(
827
  'n_pictures' => '%s files', //cpg1.3.0
828
  'last_added' => ', last one added on %s',
829
);
830
 
831
}
832
 
833
// ------------------------------------------------------------------------- //
834
// File login.php
835
// ------------------------------------------------------------------------- //
836
 
837
if (defined('LOGIN_PHP')) $lang_login_php = array(
838
  'login' => 'Login',
839
  'enter_login_pswd' => 'Enter your username and password to login',
840
  'username' => 'Username',
841
  'password' => 'Password',
842
  'remember_me' => 'Remember me',
843
  'welcome' => 'Welcome %s ...',
844
  'err_login' => '*** Couldn\'t log in. Try again ***',
845
  'err_already_logged_in' => 'You are already logged in !',
846
  'forgot_password_link' => 'I forgot my password', //cpg1.3.0
847
);
848
 
849
// ------------------------------------------------------------------------- //
850
// File logout.php
851
// ------------------------------------------------------------------------- //
852
 
853
if (defined('LOGOUT_PHP')) $lang_logout_php = array(
854
  'logout' => 'Logout',
855
  'bye' => 'Bye bye %s ...',
856
  'err_not_loged_in' => 'You are not logged in !',
857
);
858
 
859
// ------------------------------------------------------------------------- //
860
// File phpinfo.php //cpg1.3.0
861
// ------------------------------------------------------------------------- //
862
 
863
if (defined('PHPINFO_PHP')) $lang_phpinfo_php = array(
864
  'php_info' => 'PHP info', //cpg1.3.0
865
  'explanation' => 'This is the output generated by the PHP-function <a href="http://www.php.net/phpinfo">phpinfo()</a>, displayed within Copermine (trimming the output at the right corner).', //cpg1.3.0
866
  'no_link' => 'Having others see your phpinfo can be a security risk, that\'s why this page is only visible when you\'re logged in as admin. You can not post a link to this page for others, they will be denied access.', //cpg1.3.0
867
);
868
 
869
// ------------------------------------------------------------------------- //
870
// File modifyalb.php
871
// ------------------------------------------------------------------------- //
872
 
873
if (defined('MODIFYALB_PHP')) $lang_modifyalb_php = array(
874
  'upd_alb_n' => 'Update album %s',
875
  'general_settings' => 'General settings',
876
  'alb_title' => 'Album title',
877
  'alb_cat' => 'Album category',
878
  'alb_desc' => 'Album description',
879
  'alb_thumb' => 'Album thumbnail',
880
  'alb_perm' => 'Permissions for this album',
881
  'can_view' => 'Album can be viewed by',
882
  'can_upload' => 'Visitors can upload files',
883
  'can_post_comments' => 'Visitors can post comments',
884
  'can_rate' => 'Visitors can rate files',
885
  'user_gal' => 'User Gallery',
886
  'no_cat' => '* No category *',
887
  'alb_empty' => 'Album is empty',
888
  'last_uploaded' => 'Last uploaded',
889
  'public_alb' => 'Everybody (public album)',
890
  'me_only' => 'Me only',
891
  'owner_only' => 'Album owner (%s) only',
892
  'groupp_only' => 'Members of the \'%s\' group',
893
  'err_no_alb_to_modify' => 'No album you can modify in the database.',
894
  'update' => 'Update album', //cpg1.3.0
895
  'notice1' => '(*) depending on %sgroups%s settings', //cpg1.3.0 (do not translate %s!)
896
);
897
 
898
// ------------------------------------------------------------------------- //
899
// File ratepic.php
900
// ------------------------------------------------------------------------- //
901
 
902
if (defined('RATEPIC_PHP')) $lang_rate_pic_php = array(
903
  'already_rated' => 'Sorry but you have already rated this file', //cpg1.3.0
904
  'rate_ok' => 'Your vote was accepted',
905
  'forbidden' => 'You can not rate your own files.', //cpg1.3.0
906
);
907
 
908
// ------------------------------------------------------------------------- //
909
// File register.php & profile.php
910
// ------------------------------------------------------------------------- //
911
 
912
if (defined('REGISTER_PHP') || defined('PROFILE_PHP')) {
913
 
914
$lang_register_disclamer = <<<EOT
915
While the administrators of {SITE_NAME} will attempt to remove or edit any generally objectionable material as quickly as possible, it is impossible to review every post. Therefore you acknowledge that all posts made to this site express the views and opinions of the author and not the administrators or webmaster (except for posts by these people) and hence will not be held liable.<br />
916
<br />
917
You agree not to post any abusive, obscene, vulgar, slanderous, hateful, threatening, sexually-orientated or any other material that may violate any applicable laws. You agree that the webmaster, administrator and moderators of {SITE_NAME} have the right to remove or edit any content at any time should they see fit. As a user you agree to any information you have entered above being stored in a database. While this information will not be disclosed to any third party without your consent the webmaster and administrator cannot be held responsible for any hacking attempt that may lead to the data being compromised.<br />
918
<br />
919
This site uses cookies to store information on your local computer. These cookies serve only to improve your viewing pleasure. The email address is used only for confirming your registration details and password.<br />
920
<br />
921
By clicking 'I agree' below you agree to be bound by these conditions.
922
EOT;
923
 
924
$lang_register_php = array(
925
  'page_title' => 'User registration',
926
  'term_cond' => 'Terms and conditions',
927
  'i_agree' => 'I agree',
928
  'submit' => 'Submit registration',
929
  'err_user_exists' => 'The username you have entered already exist, please choose a different one',
930
  'err_password_mismatch' => 'The two passwords does not match, please input them again',
931
  'err_uname_short' => 'Username must be 2 characters long minimum',
932
  'err_password_short' => 'Password must be 2 characters long minimum',
933
  'err_uname_pass_diff' => 'Username and password must be different',
934
  'err_invalid_email' => 'Email address is invalid',
935
  'err_duplicate_email' => 'Another user has already registered with the email address you entered',
936
  'enter_info' => 'Input registration information',
937
  'required_info' => 'Required information',
938
  'optional_info' => 'Optional information',
939
  'username' => 'Username',
940
  'password' => 'Password',
941
  'password_again' => 'Re-enter password',
942
  'email' => 'Email',
943
  'location' => 'Location',
944
  'interests' => 'Interests',
945
  'website' => 'Home page',
946
  'occupation' => 'Occupation',
947
  'error' => 'ERROR',
948
  'confirm_email_subject' => '%s - Registration confirmation',
949
  'information' => 'Information',
950
  'failed_sending_email' => 'The registration confirmation email can\'t be send !',
951
  'thank_you' => 'Thank you for registering.<br /><br />An email with information on how to activate your account was sent to the email address you provided.',
952
  'acct_created' => 'Your account has been created and you can now login with your username and password',
953
  'acct_active' => 'Your account is now active and you can login with your username and password',
954
  'acct_already_act' => 'Your account is already active !',
955
  'acct_act_failed' => 'This account can\'t be activated !',
956
  'err_unk_user' => 'Selected user does not exist !',
957
  'x_s_profile' => '%s\'s profile',
958
  'group' => 'Group',
959
  'reg_date' => 'Joined',
960
  'disk_usage' => 'Disk usage',
961
  'change_pass' => 'Change password',
962
  'current_pass' => 'Current password',
963
  'new_pass' => 'New password',
964
  'new_pass_again' => 'New password again',
965
  'err_curr_pass' => 'Current password is incorrect',
966
  'apply_modif' => 'Apply modifications',
967
  'change_pass' => 'Change my password',
968
  'update_success' => 'Your profile was updated',
969
  'pass_chg_success' => 'Your password was changed',
970
  'pass_chg_error' => 'Your password was not changed',
971
  'notify_admin_email_subject' => '%s - Registration notification', //cpg1.3.0
972
  'notify_admin_email_body' => 'A new user with the username "%s" has registered in your gallery', //cpg1.3.0
973
);
974
 
975
$lang_register_confirm_email = <<<EOT
976
Thank you for registering at {SITE_NAME}
977
 
978
Your username is : "{USER_NAME}"
979
Your password is : "{PASSWORD}"
980
 
981
In order to activate your account, you need to click on the link below
982
or copy and paste it in your web browser.
983
 
984
{ACT_LINK}
985
 
986
Regards,
987
 
988
The management of {SITE_NAME}
989
 
990
EOT;
991
 
992
}
993
 
994
// ------------------------------------------------------------------------- //
995
// File reviewcom.php
996
// ------------------------------------------------------------------------- //
997
 
998
if (defined('REVIEWCOM_PHP')) $lang_reviewcom_php = array(
999
  'title' => 'Review comments',
1000
  'no_comment' => 'There is no comment to review',
1001
  'n_comm_del' => '%s comment(s) deleted',
1002
  'n_comm_disp' => 'Number of comments to display',
1003
  'see_prev' => 'See previous',
1004
  'see_next' => 'See next',
1005
  'del_comm' => 'Delete selected comments',
1006
);
1007
 
1008
 
1009
// ------------------------------------------------------------------------- //
1010
// File search.php - OK
1011
// ------------------------------------------------------------------------- //
1012
 
1013
if (defined('SEARCH_PHP')) $lang_search_php = array(
1014
 
1015
);
1016
 
1017
// ------------------------------------------------------------------------- //
1018
// File searchnew.php
1019
// ------------------------------------------------------------------------- //
1020
 
1021
if (defined('SEARCHNEW_PHP')) $lang_search_new_php = array(
1022
  'page_title' => 'Search new files', //cpg1.3.0
1023
  'select_dir' => 'Select directory',
1024
  'select_dir_msg' => 'This function allows you to add a batch of file that your have uploaded to your server by FTP.<br /><br />Select the directory where you have uploaded your files', //cpg1.3.0
1025
  'no_pic_to_add' => 'There is no file to add', //cpg1.3.0
1026
  'need_one_album' => 'You need at least one album to use this function',
1027
  'warning' => 'Warning',
1028
  'change_perm' => 'the script can\'t write in this directory, you need to change its mode to 755 or 777 before trying to add the files !', //cpg1.3.0
1029
  'target_album' => '<b>Put files of &quot;</b>%s<b>&quot; into </b>%s', //cpg1.3.0
1030
  'folder' => 'Folder',
1031
  'image' => 'file',
1032
  'album' => 'Album',
1033
  'result' => 'Result',
1034
  'dir_ro' => 'Not writable. ',
1035
  'dir_cant_read' => 'Not readable. ',
1036
  'insert' => 'Adding new files to the gallery', //cpg1.3.0
1037
  'list_new_pic' => 'List of new files', //cpg1.3.0
1038
  'insert_selected' => 'Insert selected files', //cpg1.3.0
1039
  'no_pic_found' => 'No new file was found', //cpg1.3.0
1040
  'be_patient' => 'Please be patient, the script needs time to add the files', //cpg1.3.0
1041
  'no_album' => 'no album selected',  //cpg1.3.0
1042
  'notes' =>  '<ul>'.
1043
                          '<li><b>OK</b> : means that the file was succesfully added'.
1044
                          '<li><b>DP</b> : means that the file is a duplicate and is already in the database'.
1045
                          '<li><b>PB</b> : means that the file could not be added, check your configuration and the permission of directories where the files are located'.
1046
                          '<li><b>NA</b> : means that you haven\'t selected an album the files should go to, hit \'<a href="javascript:history.back(1)">back</a>\' and select an album. If you don\'t have an album <a href="albmgr.php">create one first</a></li>'.
1047
                          '<li>If the OK, DP, PB \'signs\' does not appear click on the broken file to see any error message produced by PHP'.
1048
                          '<li>If your browser timeouts, hit the reload button'.
1049
                          '</ul>', //cpg1.3.0
1050
  'select_album' => 'select album', //cpg1.3.0
1051
  'check_all' => 'Check All', //cpg1.3.0
1052
  'uncheck_all' => 'Uncheck All', //cpg1.3.0
1053
);
1054
 
1055
 
1056
// ------------------------------------------------------------------------- //
1057
// File thumbnails.php
1058
// ------------------------------------------------------------------------- //
1059
 
1060
// Void
1061
 
1062
// ------------------------------------------------------------------------- //
1063
// File banning.php
1064
// ------------------------------------------------------------------------- //
1065
 
1066
if (defined('BANNING_PHP')) $lang_banning_php = array(
1067
  'title' => 'Ban Users',
1068
  'user_name' => 'User Name',
1069
  'ip_address' => 'IP Address',
1070
  'expiry' => 'Expires (blank is permanent)',
1071
  'edit_ban' => 'Save Changes',
1072
  'delete_ban' => 'Delete',
1073
  'add_new' => 'Add New Ban',
1074
  'add_ban' => 'Add',
1075
  'error_user' => 'Cannot find user', //cpg1.3.0
1076
  'error_specify' => 'You need to specifiy either a user name or an IP address', //cpg1.3.0
1077
  'error_ban_id' => 'Invalid ban ID!', //cpg1.3.0
1078
  'error_admin_ban' => 'You cannnot ban yourself!', //cpg1.3.0
1079
  'error_server_ban' => 'You were going to ban your own server? Tsk tsk, cannot do that...', //cpg1.3.0
1080
  'error_ip_forbidden' => 'You cannnot ban this IP - it is non-routable!', //cpg1.3.0
1081
  'lookup_ip' => 'Lookup an IP address', //cpg1.3.0
1082
  'submit' => 'go!', //cpg1.3.0
1083
);
1084
 
1085
// ------------------------------------------------------------------------- //
1086
// File upload.php
1087
// ------------------------------------------------------------------------- //
1088
 
1089
if (defined('UPLOAD_PHP')) $lang_upload_php = array(
1090
  'title' => 'Upload file', //cpg1.3.0
1091
  'custom_title' => 'Customized Request Form', //cpg1.3.0
1092
  'cust_instr_1' => 'You may select a customized number of upload boxes. However, you may not select more than the limits listed below.', //cpg1.3.0
1093
  'cust_instr_2' => 'Box Number Requests', //cpg1.3.0
1094
  'cust_instr_3' => 'File upload boxes: %s', //cpg1.3.0
1095
  'cust_instr_4' => 'URI/URL upload boxes: %s', //cpg1.3.0
1096
  'cust_instr_5' => 'URI/URL upload boxes:', //cpg1.3.0
1097
  'cust_instr_6' => 'File upload boxes:', //cpg1.3.0
1098
  'cust_instr_7' => 'Please enter the number of each type of upload box you desire at this time.  Then click \'Continue\'. ', //cpg1.3.0
1099
  'reg_instr_1' => 'Invalid action for form creation.', //cpg1.3.0
1100
  'reg_instr_2' => 'Now you may upload your files using the upload boxes below. The size of files uploaded from your client to the server should not exceed %s KB each. ZIP files uploaded in the \'File Upload\' and \'URI/URL Upload\' sections will remain compressed.', //cpg1.3.0
1101
  'reg_instr_3' => 'If you want the zipped file or archive to be decompressed, you must use the file upload box provided in the \'Decompressive ZIP Upload\' area.', //cpg1.3.0
1102
  'reg_instr_4' => 'When using the URI/URL upload section, please enter the path to the file like so: http://www.mysite.com/images/example.jpg', //cpg1.3.0
1103
  'reg_instr_5' => 'When you have completed the form, please click \'Continue\'.', //cpg1.3.0
1104
  'reg_instr_6' => 'Decompressive ZIP Uploads:', //cpg1.3.0
1105
  'reg_instr_7' => 'File Uploads:', //cpg1.3.0
1106
  'reg_instr_8' => 'URI/URL Uploads:', //cpg1.3.0
1107
  'error_report' => 'Error Report', //cpg1.3.0
1108
  'error_instr' => 'The following uploads encountered errors:', //cpg1.3.0
1109
  'file_name_url' => 'File Name/URL', //cpg1.3.0
1110
  'error_message' => 'Error Message', //cpg1.3.0
1111
  'no_post' => 'File not uploaded by POST.', //cpg1.3.0
1112
  'forb_ext' => 'Forbidden file extension.', //cpg1.3.0
1113
  'exc_php_ini' => 'Exceeded filesize allowed in php.ini.', //cpg1.3.0
1114
  'exc_file_size' => 'Exceeded filesize permitted by CPG.', //cpg1.3.0
1115
  'partial_upload' => 'Only a partial upload.', //cpg1.3.0
1116
  'no_upload' => 'No upload occurred.', //cpg1.3.0
1117
  'unknown_code' => 'Unknown PHP upload error code.', //cpg1.3.0
1118
  'no_temp_name' => 'No upload - No temp name.', //cpg1.3.0
1119
  'no_file_size' => 'Contains no data/Corrupted', //cpg1.3.0
1120
  'impossible' => 'Impossible to move.', //cpg1.3.0
1121
  'not_image' => 'Not an image/corrupt', //cpg1.3.0
1122
  'not_GD' => 'Not a GD extension.', //cpg1.3.0
1123
  'pixel_allowance' => 'Pixel allowance exceeded.', //cpg1.3.0
1124
  'incorrect_prefix' => 'Incorrect URI/URL prefix', //cpg1.3.0
1125
  'could_not_open_URI' => 'Could not open URI.', //cpg1.3.0
1126
  'unsafe_URI' => 'Safety not verifiable.', //cpg1.3.0
1127
  'meta_data_failure' => 'Meta data failure', //cpg1.3.0
1128
  'http_401' => '401 Unauthorized', //cpg1.3.0
1129
  'http_402' => '402 Payment Required', //cpg1.3.0
1130
  'http_403' => '403 Forbidden', //cpg1.3.0
1131
  'http_404' => '404 Not Found', //cpg1.3.0
1132
  'http_500' => '500 Internal Server Error', //cpg1.3.0
1133
  'http_503' => '503 Service Unavailable', //cpg1.3.0
1134
  'MIME_extraction_failure' => 'MIME could not be determined.', //cpg1.3.0
1135
  'MIME_type_unknown' => 'Unknown MIME type', //cpg1.3.0
1136
  'cant_create_write' => 'Cannot create write file.', //cpg1.3.0
1137
  'not_writable' => 'Cannot write to write file.', //cpg1.3.0
1138
  'cant_read_URI' => 'Cannot read URI/URL', //cpg1.3.0
1139
  'cant_open_write_file' => 'Cannot open URI write file.', //cpg1.3.0
1140
  'cant_write_write_file' => 'Cannot write to URI write file.', //cpg1.3.0
1141
  'cant_unzip' => 'Cannot unzip.', //cpg1.3.0
1142
  'unknown' => 'Unknown error', //cpg1.3.0
1143
  'succ' => 'Successful Uploads', //cpg1.3.0
1144
  'success' => '%s uploads were successful.', //cpg1.3.0
1145
  'add' => 'Please click \'Continue\' to add the files to albums.', //cpg1.3.0
1146
  'failure' => 'Upload Failure', //cpg1.3.0
1147
  'f_info' => 'File Information', //cpg1.3.0
1148
  'no_place' => 'The previous file could not be placed.', //cpg1.3.0
1149
  'yes_place' => 'The previous file was placed successfully.', //cpg1.3.0
1150
  'max_fsize' => 'Maximum allowed file size is %s KB',
1151
  'album' => 'Album',
1152
  'picture' => 'File', //cpg1.3.0
1153
  'pic_title' => 'File title', //cpg1.3.0
1154
  'description' => 'File description', //cpg1.3.0
1155
  'keywords' => 'Keywords (separate with spaces)',
1156
  'err_no_alb_uploadables' => 'Sorry there is no album where you are allowed to upload files', //cpg1.3.0
1157
  'place_instr_1' => 'Please place the files in albums at this time.  You may also enter relevant information about each file now.', //cpg1.3.0
1158
  'place_instr_2' => 'More files need placement. Please click \'Continue\'.', //cpg1.3.0
1159
  'process_complete' => 'You have successfully placed all the files.', //cpg1.3.0
1160
);
1161
 
1162
// ------------------------------------------------------------------------- //
1163
// File usermgr.php
1164
// ------------------------------------------------------------------------- //
1165
 
1166
if (defined('USERMGR_PHP')) $lang_usermgr_php = array(
1167
  'title' => 'Manage users',
1168
  'name_a' => 'Name ascending',
1169
  'name_d' => 'Name descending',
1170
  'group_a' => 'Group ascending',
1171
  'group_d' => 'Group descending',
1172
  'reg_a' => 'Reg date ascending',
1173
  'reg_d' => 'Reg date descending',
1174
  'pic_a' => 'File count ascending',
1175
  'pic_d' => 'File count descending',
1176
  'disku_a' => 'Disk usage ascending',
1177
  'disku_d' => 'Disk usage descending',
1178
  'lv_a' => 'Last visit ascending', //cpg1.3.0
1179
  'lv_d' => 'Last visit descending', //cpg1.3.0
1180
  'sort_by' => 'Sort users by',
1181
  'err_no_users' => 'User table is empty !',
1182
  'err_edit_self' => 'You can\'t edit your own profile, use the \'My profile\' link for that',
1183
  'edit' => 'EDIT',
1184
  'delete' => 'DELETE',
1185
  'name' => 'User name',
1186
  'group' => 'Group',
1187
  'inactive' => 'Inactive',
1188
  'operations' => 'Operations',
1189
  'pictures' => 'Files', //cpg1.3.0
1190
  'disk_space' => 'Space used / Quota',
1191
  'registered_on' => 'Registered on',
1192
  'last_visit' => 'Last Visit', //cpg1.3.0
1193
  'u_user_on_p_pages' => '%d users on %d page(s)',
1194
  'confirm_del' => 'Are you sure you want to DELETE this user ? \\nAll his files and albums will also be deleted.', //js-alert //cpg1.3.0
1195
  'mail' => 'MAIL',
1196
  'err_unknown_user' => 'Selected user does not exist !',
1197
  'modify_user' => 'Modify user',
1198
  'notes' => 'Notes',
1199
  'note_list' => '<li>If you don\'t want to change the current password, leave the "password" field blank',
1200
  'password' => 'Password',
1201
  'user_active' => 'User is active',
1202
  'user_group' => 'User group',
1203
  'user_email' => 'User email',
1204
  'user_web_site' => 'User web site',
1205
  'create_new_user' => 'Create new user',
1206
  'user_location' => 'User location',
1207
  'user_interests' => 'User interests',
1208
  'user_occupation' => 'User occupation',
1209
  'latest_upload' => 'Recent uploads', //cpg1.3.0
1210
  'never' => 'never', //cpg1.3.0
1211
);
1212
 
1213
// ------------------------------------------------------------------------- //
1214
// File util.php
1215
// ------------------------------------------------------------------------- //
1216
 
1217
if (defined('UTIL_PHP')) $lang_util_php = array(
1218
  'title' => 'Admin utilities (Resize pictures)', //cpg1.3.0
1219
  'what_it_does' => 'What it does',
1220
  'what_update_titles' => 'Updates titles from filename',
1221
  'what_delete_title' => 'Deletes titles',
1222
  'what_rebuild' => 'Rebuilds thumbnails and resized photos',
1223
  'what_delete_originals' => 'Deletes original sized photos replacing them with the resized version',
1224
  'file' => 'File',
1225
  'title_set_to' => 'title set to',
1226
  'submit_form' => 'submit',
1227
  'updated_succesfully' => 'updated succesfully',
1228
  'error_create' => 'ERROR creating',
1229
  'continue' => 'Process more images',
1230
  'main_success' => 'The file %s was successfully used as main file', //cpg1.3.0
1231
  'error_rename' => 'Error renaming %s to %s',
1232
  'error_not_found' => 'The file %s was not found',
1233
  'back' => 'back to main',
1234
  'thumbs_wait' => 'Updating thumbnails and/or resized images, please wait...',
1235
  'thumbs_continue_wait' => 'Continuing to update thumbnails and/or resized images...',
1236
  'titles_wait' => 'Updating titles, please wait...',
1237
  'delete_wait' => 'Deleting titles, please wait...',
1238
  'replace_wait' => 'Deleting originals and replacing them with resized images, please wait..',
1239
  'instruction' => 'Quick instructions',
1240
  'instruction_action' => 'Select action',
1241
  'instruction_parameter' => 'Set parameters',
1242
  'instruction_album' => 'Select album',
1243
  'instruction_press' => 'Press %s',
1244
  'update' => 'Update thumbs and/or resized photos',
1245
  'update_what' => 'What should be updated',
1246
  'update_thumb' => 'Only thumbnails',
1247
  'update_pic' => 'Only resized pictures',
1248
  'update_both' => 'Both thumbnails and resized pictures',
1249
  'update_number' => 'Number of processed images per click',
1250
  'update_option' => '(Try setting this option lower if you experience timeout problems)',
1251
  'filename_title' => 'Filename &rArr; File title', //cpg1.3.0
1252
  'filename_how' => 'How should the filename be modified',
1253
  'filename_remove' => 'Remove the .jpg ending and replace _ (underscore) with spaces',
1254
  'filename_euro' => 'Change 2003_11_23_13_20_20.jpg to 23/11/2003 13:20',
1255
  'filename_us' => 'Change 2003_11_23_13_20_20.jpg to 11/23/2003 13:20',
1256
  'filename_time' => 'Change 2003_11_23_13_20_20.jpg to 13:20',
1257
  'delete' => 'Delete file titles or original size photos', //cpg1.3.0
1258
  'delete_title' => 'Delete file titles', //cpg1.3.0
1259
  'delete_original' => 'Delete original size photos',
1260
  'delete_replace' => 'Deletes the original images replacing them with the sized versions',
1261
  'select_album' => 'Select album',
1262
  'delete_orphans' => 'Delete orphaned comments (works on all albums)', //cpg1.3.0
1263
  'orphan_comment' => 'orphan comments found', //cpg1.3.0
1264
  'delete' => 'Delete', //cpg1.3.0
1265
  'delete_all' => 'Delete all', //cpg1.3.0
1266
  'comment' => 'Comment: ', //cpg1.3.0
1267
  'nonexist' => 'attached to non existant file # ', //cpg1.3.0
1268
  'phpinfo' => 'Display phpinfo', //cpg1.3.0
1269
  'update_db' => 'Update database', //cpg1.3.0
1270
  'update_db_explanation' => 'If you have replaced coppermine files, added a modification or upgraded from a previous version of coppermine, make sure to run the database update once. This will create the necessary tables and/or config values in your coppermine database.', //cpg1.3.0
1271
);
1272
 
1273
?>