NextGEN Gallery – WordPress Gallery Plugin - Version 1.0.2

Version Description

Download this release

Release Info

Developer alexrabe
Plugin Icon 128x128 NextGEN Gallery – WordPress Gallery Plugin
Version 1.0.2
Comparing to
See all releases

Code changes from version 1.0.1 to 1.0.2

admin/addgallery.php CHANGED
@@ -2,7 +2,7 @@
2
  if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); }
3
 
4
  // sometimes a error feedback is better than a white screen
5
- ini_set('error_reporting', E_ALL ^ E_NOTICE);
6
 
7
  function nggallery_admin_add_gallery() {
8
 
@@ -91,7 +91,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
91
 
92
  // Button Settings
93
  button_placeholder_id : "spanButtonPlaceholder",
94
- button_width: 272,
95
  button_height: 27,
96
  button_window_mode: SWFUpload.WINDOW_MODE.TRANSPARENT,
97
  button_cursor: SWFUpload.CURSOR.HAND,
@@ -209,8 +209,10 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
209
  <td><select name="zipgalselect">
210
  <option value="0" ><?php _e('a new gallery', 'nggallery') ?></option>
211
  <?php
212
- foreach($gallerylist as $gallery)
213
- echo '<option value="' . $gallery->gid . '" >' . $gallery->title . '</option>' . "\n";
 
 
214
  ?>
215
  </select>
216
  <br /><?php echo _e('Note : The upload limit on your server is ','nggallery') . "<strong>" . ini_get('upload_max_filesize') . "Byte</strong>\n"; ?>
@@ -254,9 +256,10 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
254
  <td><select name="galleryselect" id="galleryselect">
255
  <option value="0" ><?php _e('Choose gallery', 'nggallery') ?></option>
256
  <?php
257
- foreach($gallerylist as $gallery)
258
- echo '<option value="' . $gallery->gid . '" >' . $gallery->title . '</option>' ."\n";
259
- ?>
 
260
  </select>
261
  <br /><?php echo _e('Note : The upload limit on your server is ','nggallery') . "<strong>" . ini_get('upload_max_filesize') . "Byte</strong>\n"; ?>
262
  <br /><?php if ((IS_WPMU) && wpmu_enable_function('wpmuQuotaCheck')) display_space_usage(); ?></td>
2
  if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); }
3
 
4
  // sometimes a error feedback is better than a white screen
5
+ @ini_set('error_reporting', E_ALL ^ E_NOTICE);
6
 
7
  function nggallery_admin_add_gallery() {
8
 
91
 
92
  // Button Settings
93
  button_placeholder_id : "spanButtonPlaceholder",
94
+ button_width: 300,
95
  button_height: 27,
96
  button_window_mode: SWFUpload.WINDOW_MODE.TRANSPARENT,
97
  button_cursor: SWFUpload.CURSOR.HAND,
209
  <td><select name="zipgalselect">
210
  <option value="0" ><?php _e('a new gallery', 'nggallery') ?></option>
211
  <?php
212
+ foreach($gallerylist as $gallery) {
213
+ $name = ( empty($gallery->title) ) ? $gallery->name : $gallery->title;
214
+ echo '<option value="' . $gallery->gid . '" >' . $name . '</option>' . "\n";
215
+ }
216
  ?>
217
  </select>
218
  <br /><?php echo _e('Note : The upload limit on your server is ','nggallery') . "<strong>" . ini_get('upload_max_filesize') . "Byte</strong>\n"; ?>
256
  <td><select name="galleryselect" id="galleryselect">
257
  <option value="0" ><?php _e('Choose gallery', 'nggallery') ?></option>
258
  <?php
259
+ foreach($gallerylist as $gallery) {
260
+ $name = ( empty($gallery->title) ) ? $gallery->name : $gallery->title;
261
+ echo '<option value="' . $gallery->gid . '" >' . $name . '</option>' . "\n";
262
+ } ?>
263
  </select>
264
  <br /><?php echo _e('Note : The upload limit on your server is ','nggallery') . "<strong>" . ini_get('upload_max_filesize') . "Byte</strong>\n"; ?>
265
  <br /><?php if ((IS_WPMU) && wpmu_enable_function('wpmuQuotaCheck')) display_space_usage(); ?></td>
admin/functions.php CHANGED
@@ -110,7 +110,7 @@ class nggAdmin{
110
 
111
  // remove trailing slash at the end, if somebody use it
112
  if (substr($galleryfolder, -1) == '/') $galleryfolder = substr($galleryfolder, 0, -1);
113
- $gallerypath = WINABSPATH.$galleryfolder;
114
 
115
  if (!is_dir($gallerypath)) {
116
  nggGallery::show_error(__('Directory', 'nggallery').' <strong>'.$gallerypath.'</strong> '.__('doesn&#96;t exist!', 'nggallery'));
@@ -487,19 +487,21 @@ class nggAdmin{
487
  if ( $galleryID == '0' ) {
488
  //cleanup and take the zipfile name as folder name
489
  $foldername = sanitize_title(strtok ($filename, '.'));
 
490
  } else {
491
  // get foldername if selected
492
  $foldername = $wpdb->get_var("SELECT path FROM $wpdb->nggallery WHERE gid = '$galleryID' ");
493
  }
494
 
495
  if ( empty($foldername) ) {
496
- nggGallery::show_error( __('Could not get a vaild foldername', 'nggallery') );
497
  return false;
498
  }
499
 
500
  // set complete folder path
501
- $newfolder = WINABSPATH . $defaultpath . $foldername;
502
 
 
503
  if (!is_dir($newfolder)) {
504
  // create new directories
505
  if (!wp_mkdir_p ($newfolder)) {
@@ -521,7 +523,7 @@ class nggAdmin{
521
  $message = __('Zip-File successfully unpacked','nggallery').'<br />';
522
 
523
  // parse now the folder and add to database
524
- $message .= nggAdmin::import_gallery( $defaultpath . $foldername);
525
  nggGallery::show_message($message);
526
  }
527
 
110
 
111
  // remove trailing slash at the end, if somebody use it
112
  if (substr($galleryfolder, -1) == '/') $galleryfolder = substr($galleryfolder, 0, -1);
113
+ $gallerypath = WINABSPATH . $galleryfolder;
114
 
115
  if (!is_dir($gallerypath)) {
116
  nggGallery::show_error(__('Directory', 'nggallery').' <strong>'.$gallerypath.'</strong> '.__('doesn&#96;t exist!', 'nggallery'));
487
  if ( $galleryID == '0' ) {
488
  //cleanup and take the zipfile name as folder name
489
  $foldername = sanitize_title(strtok ($filename, '.'));
490
+ $foldername = $defaultpath . $foldername;
491
  } else {
492
  // get foldername if selected
493
  $foldername = $wpdb->get_var("SELECT path FROM $wpdb->nggallery WHERE gid = '$galleryID' ");
494
  }
495
 
496
  if ( empty($foldername) ) {
497
+ nggGallery::show_error( __('Could not get a valid foldername', 'nggallery') );
498
  return false;
499
  }
500
 
501
  // set complete folder path
502
+ $newfolder = WINABSPATH . $foldername;
503
 
504
+ // check first if the traget folder exist
505
  if (!is_dir($newfolder)) {
506
  // create new directories
507
  if (!wp_mkdir_p ($newfolder)) {
523
  $message = __('Zip-File successfully unpacked','nggallery').'<br />';
524
 
525
  // parse now the folder and add to database
526
+ $message .= nggAdmin::import_gallery( $foldername);
527
  nggGallery::show_message($message);
528
  }
529
 
admin/install.php CHANGED
@@ -130,6 +130,8 @@ function ngg_default_options() {
130
  $ngg_options['usePermalinks'] = false; // use permalinks for parameters
131
  $ngg_options['graphicLibrary'] = 'gd'; // default graphic library
132
  $ngg_options['imageMagickDir'] = '/usr/local/bin/'; // default path to ImageMagick
 
 
133
 
134
  // Tags / categories
135
  $ngg_options['activateTags'] = false; // append related images
130
  $ngg_options['usePermalinks'] = false; // use permalinks for parameters
131
  $ngg_options['graphicLibrary'] = 'gd'; // default graphic library
132
  $ngg_options['imageMagickDir'] = '/usr/local/bin/'; // default path to ImageMagick
133
+ $ngg_options['useMediaRSS'] = true; // activate the global Media RSS file
134
+ $ngg_options['usePicLens'] = true; // activate the PicLens Link for galleries
135
 
136
  // Tags / categories
137
  $ngg_options['activateTags'] = false; // append related images
admin/js/swfupload.handler.js CHANGED
@@ -16,7 +16,7 @@ function initSWFUpload() {
16
  jQuery("#swfupload_btn").click( function() { submitFiles(); } );
17
  jQuery("#imagefiles")
18
  .after("<div id='uploadQueue'></div>")
19
- .after("<input id='imagefiles' type='button' class='uploadform' value='" + ngg_swf_upload.customSettings.browse + "' />")
20
  .after("<input type='text' id='txtFileName' readonly='readonly' />")
21
  .remove();
22
  jQuery("#imagefiles").click( function() { fileBrowse(); } );
16
  jQuery("#swfupload_btn").click( function() { submitFiles(); } );
17
  jQuery("#imagefiles")
18
  .after("<div id='uploadQueue'></div>")
19
+ .after("<input id='imagefiles' type='button' class='button-secondary uploadform' value='" + ngg_swf_upload.customSettings.browse + "' />")
20
  .after("<input type='text' id='txtFileName' readonly='readonly' />")
21
  .remove();
22
  jQuery("#imagefiles").click( function() { fileBrowse(); } );
admin/settings.php CHANGED
@@ -25,6 +25,8 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
25
  // the path should always end with a slash
26
  $ngg->options['gallerypath'] = trailingslashit($ngg->options['gallerypath']);
27
  $ngg->options['imageMagickDir'] = trailingslashit($ngg->options['imageMagickDir']);
 
 
28
  }
29
  // Save options
30
  update_option('ngg_options', $ngg->options);
@@ -113,7 +115,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
113
  <h2><?php _e('General Options','nggallery'); ?></h2>
114
  <form name="generaloptions" method="post">
115
  <?php wp_nonce_field('ngg_settings') ?>
116
- <input type="hidden" name="page_options" value="gallerypath,deleteImg,usePicLens,usePermalinks,graphicLibrary,imageMagickDir,activateTags,appendType,maxImages" />
117
  <table class="form-table ngg-options">
118
  <tr valign="top">
119
  <th align="left"><?php _e('Gallery path','nggallery') ?></th>
@@ -137,6 +139,11 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
137
  <input <?php if (IS_WPMU) echo 'readonly = "readonly"'; ?> type="text" size="35" name="imageMagickDir" value="<?php echo $ngg->options['imageMagickDir']; ?>" /></label>
138
  </td>
139
  </tr>
 
 
 
 
 
140
  <tr>
141
  <th align="left"><?php _e('Activate PicLens/CoolIris support','nggallery') ?> (<a href="http://www.cooliris.com">CoolIris</a>)</th>
142
  <td><input type="checkbox" name="usePicLens" value="1" <?php checked('1', $ngg->options['usePicLens']); ?> />
@@ -451,7 +458,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
451
  <h2><?php _e('Slideshow','nggallery'); ?></h2>
452
  <?php if (!NGGALLERY_IREXIST) { ?><p><div id="message" class="error fade"><p><?php _e('The imagerotator.swf is not in the nggallery folder, the slideshow will not work.','nggallery') ?></p></div></p><?php }?>
453
  <p><?php _e('The settings are used in the JW Image Rotator Version', 'nggallery') ?> 3.17 .
454
- <?php _e('See more information for the Flash Player on the web page', 'nggallery') ?> <a href="http://www.jeroenwijering.com/?item=JW_Image_Rotator" target="_blank" >JW Image Rotator from Jeroen Wijering</a>.
455
  </p>
456
  <table class="form-table ngg-options">
457
  <tr>
25
  // the path should always end with a slash
26
  $ngg->options['gallerypath'] = trailingslashit($ngg->options['gallerypath']);
27
  $ngg->options['imageMagickDir'] = trailingslashit($ngg->options['imageMagickDir']);
28
+ // the custom sortorder must be ascending
29
+ $ngg->options['galSortDir'] = ($ngg->options['galSort'] == 'sortorder') ? 'ASC' : $ngg->options['galSortDir'];
30
  }
31
  // Save options
32
  update_option('ngg_options', $ngg->options);
115
  <h2><?php _e('General Options','nggallery'); ?></h2>
116
  <form name="generaloptions" method="post">
117
  <?php wp_nonce_field('ngg_settings') ?>
118
+ <input type="hidden" name="page_options" value="gallerypath,deleteImg,useMediaRSS,usePicLens,usePermalinks,graphicLibrary,imageMagickDir,activateTags,appendType,maxImages" />
119
  <table class="form-table ngg-options">
120
  <tr valign="top">
121
  <th align="left"><?php _e('Gallery path','nggallery') ?></th>
139
  <input <?php if (IS_WPMU) echo 'readonly = "readonly"'; ?> type="text" size="35" name="imageMagickDir" value="<?php echo $ngg->options['imageMagickDir']; ?>" /></label>
140
  </td>
141
  </tr>
142
+ <tr>
143
+ <th align="left"><?php _e('Activate Media RSS feed','nggallery') ?></th>
144
+ <td><input type="checkbox" name="useMediaRSS" value="1" <?php checked('1', $ngg->options['useMediaRSS']); ?> />
145
+ <span class="setting-description"><?php _e('A RSS feed will be added to you blog header. Usefull for CoolIris/PicLens','nggallery') ?></span></td>
146
+ </tr>
147
  <tr>
148
  <th align="left"><?php _e('Activate PicLens/CoolIris support','nggallery') ?> (<a href="http://www.cooliris.com">CoolIris</a>)</th>
149
  <td><input type="checkbox" name="usePicLens" value="1" <?php checked('1', $ngg->options['usePicLens']); ?> />
458
  <h2><?php _e('Slideshow','nggallery'); ?></h2>
459
  <?php if (!NGGALLERY_IREXIST) { ?><p><div id="message" class="error fade"><p><?php _e('The imagerotator.swf is not in the nggallery folder, the slideshow will not work.','nggallery') ?></p></div></p><?php }?>
460
  <p><?php _e('The settings are used in the JW Image Rotator Version', 'nggallery') ?> 3.17 .
461
+ <?php _e('See more information for the Flash Player on the web page', 'nggallery') ?> <a href="http://www.longtailvideo.com/players/jw-image-rotator/" target="_blank" >JW Image Rotator from Jeroen Wijering</a>.
462
  </p>
463
  <table class="form-table ngg-options">
464
  <tr>
admin/tinymce/window.php CHANGED
@@ -42,10 +42,11 @@ global $wpdb;
42
  <td><select id="gallerytag" name="gallerytag" style="width: 200px">
43
  <option value="0"><?php _e("No gallery", 'nggallery'); ?></option>
44
  <?php
45
- $gallerylist = $wpdb->get_results("SELECT * FROM $wpdb->nggallery ORDER BY name ASC");
46
  if(is_array($gallerylist)) {
47
  foreach($gallerylist as $gallery) {
48
- echo '<option value="'.$gallery->gid.'" >'.$gallery->name.'</option>'."\n";
 
49
  }
50
  }
51
  ?>
@@ -70,10 +71,10 @@ global $wpdb;
70
  <td><select id="albumtag" name="albumtag" style="width: 200px">
71
  <option value="0"><?php _e("No album", 'nggallery'); ?></option>
72
  <?php
73
- $albumlist = $wpdb->get_results("SELECT * FROM $wpdb->nggalbum ORDER BY name ASC");
74
  if(is_array($albumlist)) {
75
  foreach($albumlist as $album) {
76
- echo '<option value="'.$album->id.'" >'.$album->name.'</option>'."\n";
77
  }
78
  }
79
  ?>
@@ -97,10 +98,10 @@ global $wpdb;
97
  <td><select id="singlepictag" name="singlepictag" style="width: 200px">
98
  <option value="0"><?php _e("No picture", 'nggallery'); ?></option>
99
  <?php
100
- $picturelist = $wpdb->get_results("SELECT * FROM $wpdb->nggpictures ORDER BY filename ASC");
101
  if(is_array($picturelist)) {
102
  foreach($picturelist as $picture) {
103
- echo '<option value="'.$picture->pid.'" >'.$picture->filename.'</option>'."\n";
104
  }
105
  }
106
  ?>
42
  <td><select id="gallerytag" name="gallerytag" style="width: 200px">
43
  <option value="0"><?php _e("No gallery", 'nggallery'); ?></option>
44
  <?php
45
+ $gallerylist = $wpdb->get_results("SELECT * FROM $wpdb->nggallery ORDER BY gid DESC");
46
  if(is_array($gallerylist)) {
47
  foreach($gallerylist as $gallery) {
48
+ $name = ( empty($gallery->title) ) ? $gallery->name : $gallery->title;
49
+ echo '<option value="' . $gallery->gid . '" >' . $gallery->gid . ' - ' . $name . '</option>' . "\n";
50
  }
51
  }
52
  ?>
71
  <td><select id="albumtag" name="albumtag" style="width: 200px">
72
  <option value="0"><?php _e("No album", 'nggallery'); ?></option>
73
  <?php
74
+ $albumlist = $wpdb->get_results("SELECT * FROM $wpdb->nggalbum ORDER BY id DESC");
75
  if(is_array($albumlist)) {
76
  foreach($albumlist as $album) {
77
+ echo '<option value="' . $album->id . '" >' . $album->id . ' - ' . $album->name . '</option>'."\n";
78
  }
79
  }
80
  ?>
98
  <td><select id="singlepictag" name="singlepictag" style="width: 200px">
99
  <option value="0"><?php _e("No picture", 'nggallery'); ?></option>
100
  <?php
101
+ $picturelist = $wpdb->get_results("SELECT * FROM $wpdb->nggpictures ORDER BY pid DESC");
102
  if(is_array($picturelist)) {
103
  foreach($picturelist as $picture) {
104
+ echo '<option value="' . $picture->pid . '" >'. $picture->pid . ' - ' . $picture->filename.'</option>'."\n";
105
  }
106
  }
107
  ?>
changelog.txt CHANGED
@@ -1,6 +1,21 @@
1
  NextGEN Gallery
2
  by Alex Rabe & NextGEN DEV Team
3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  V1.0.1 - 11.12.2008
5
  - Bugfix : Change upgrade routine, import_date_time could cause a memory problem
6
  - Bugfix : Help pages will not show up in non-english enviroment
1
  NextGEN Gallery
2
  by Alex Rabe & NextGEN DEV Team
3
 
4
+ V1.0.2 - 19.12.2008
5
+ - Added : Option to enable/disable the MediaRSS Feed
6
+ - Added : For flash under FF3/WIN we should use outline: none;
7
+ - Added : Use sort order also for Media RSS
8
+ - Changed : Descending order for TinyMCE Editor
9
+ - Changed : Added screencolor flashvar as bgcolor for the flash slideshow
10
+ - Changed : Remove link to gallery in sidebar widget
11
+ - Bugfix : Check for empty gallery title and show name instead
12
+ - Bugfix : Album id=all / Album id=0 didn't show content
13
+ - Bugfix : Check for a empty description and alttext
14
+ - Bugfix : Remove HTML tags from slideshow
15
+ - Bugfix : Load SWFobject always when the imagerotator exist
16
+ - Bugfix : Zip-Upload in existing gallery failed
17
+ - Bugifx : Typo in functions.php (THX to David Horat)
18
+
19
  V1.0.1 - 11.12.2008
20
  - Bugfix : Change upgrade routine, import_date_time could cause a memory problem
21
  - Bugfix : Help pages will not show up in non-english enviroment
css/Black_Minimalism.css CHANGED
@@ -234,7 +234,8 @@ it's only a template design
234
  .slideshow {
235
  margin-left: auto;
236
  margin-right: auto;
237
- text-align:center;
 
238
  }
239
 
240
  .slideshowlink {
234
  .slideshow {
235
  margin-left: auto;
236
  margin-right: auto;
237
+ text-align:center;
238
+ outline: none;
239
  }
240
 
241
  .slideshowlink {
css/hovereffect.css CHANGED
@@ -283,7 +283,8 @@ This is a template stylesheet which doesn't support description below the thumbn
283
  .slideshow {
284
  margin-left: auto;
285
  margin-right: auto;
286
- text-align:center;
 
287
  }
288
 
289
  .slideshowlink {
283
  .slideshow {
284
  margin-left: auto;
285
  margin-right: auto;
286
+ text-align:center;
287
+ outline: none;
288
  }
289
 
290
  .slideshowlink {
css/ngg_dkret3.css CHANGED
@@ -228,7 +228,8 @@ it's only a template design
228
  .slideshow {
229
  margin-left: auto;
230
  margin-right: auto;
231
- text-align:center;
 
232
  }
233
 
234
  .slideshowlink {
228
  .slideshow {
229
  margin-left: auto;
230
  margin-right: auto;
231
+ text-align:center;
232
+ outline: none;
233
  }
234
 
235
  .slideshowlink {
css/ngg_k2.css CHANGED
@@ -239,7 +239,8 @@ it's only a template design
239
  .slideshow {
240
  margin-left: auto;
241
  margin-right: auto;
242
- text-align:center;
 
243
  }
244
 
245
  .slideshowlink {
239
  .slideshow {
240
  margin-left: auto;
241
  margin-right: auto;
242
+ text-align:center;
243
+ outline: none;
244
  }
245
 
246
  .slideshowlink {
css/ngg_shadow.css CHANGED
@@ -228,7 +228,8 @@ it's only a template design
228
  .slideshow {
229
  margin-left: auto;
230
  margin-right: auto;
231
- text-align:center;
 
232
  }
233
 
234
  .slideshowlink {
228
  .slideshow {
229
  margin-left: auto;
230
  margin-right: auto;
231
+ text-align:center;
232
+ outline: none;
233
  }
234
 
235
  .slideshowlink {
css/ngg_shadow2.css CHANGED
@@ -236,7 +236,8 @@ it's only a template design
236
  .slideshow {
237
  margin-left: auto;
238
  margin-right: auto;
239
- text-align:center;
 
240
  }
241
 
242
  .slideshowlink {
236
  .slideshow {
237
  margin-left: auto;
238
  margin-right: auto;
239
+ text-align:center;
240
+ outline: none;
241
  }
242
 
243
  .slideshowlink {
css/nggallery.css CHANGED
@@ -252,7 +252,8 @@ html>body .ngg-album {
252
  .slideshow {
253
  margin-left: auto;
254
  margin-right: auto;
255
- text-align:center;
 
256
  }
257
 
258
  .slideshowlink {
252
  .slideshow {
253
  margin-left: auto;
254
  margin-right: auto;
255
+ text-align:center;
256
+ outline: none;
257
  }
258
 
259
  .slideshowlink {
lang/nggallery-de_DE.mo CHANGED
Binary file
lang/nggallery-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-12-11 20:28+0100\n"
6
- "PO-Revision-Date: 2008-12-11 20:29+0100\n"
7
  "Last-Translator: Alex Rabe <no@email.com>\n"
8
  "Language-Team: Alex Rabe\n"
9
  "MIME-Version: 1.0\n"
@@ -18,27 +18,27 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPath-1: ..\n"
20
 
21
- #: ../nggallery.php:151
22
  msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB higher"
23
  msgstr "Tut mir leid, aber NextGEN Galerie benötigt minimum 16MB Speicher (Memory Limit) oder mehr"
24
 
25
- #: ../nggallery.php:178
26
  msgid "Picture tag"
27
  msgstr "Bilder Stichwort"
28
 
29
- #: ../nggallery.php:179
30
  msgid "Picture tag: %2$l."
31
  msgstr "Bilder Stichwort: %2$l."
32
 
33
- #: ../nggallery.php:180
34
  msgid "Separate picture tags with commas."
35
  msgstr "Trenne Stichwörter mittels Komma"
36
 
37
- #: ../nggallery.php:274
38
  msgid "L O A D I N G"
39
  msgstr "B I T T E W A R T E N"
40
 
41
- #: ../nggallery.php:275
42
  msgid "Click to Close"
43
  msgstr "Klicken zum Schliessen "
44
 
@@ -46,24 +46,24 @@ msgstr "Klicken zum Schliessen "
46
  msgid "The <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player</a> and <a href=\"http://www.mozilla.com/firefox/\">a browser with Javascript support</a> are needed.."
47
  msgstr "Es wird der <a href=\"http://www.macromedia.com/go/getflashplayer\">Adobe Flash Player</a> benötigt und <a href=\"http://www.mozilla.com/firefox/\">im Browser muss Javascript</a> aktiviert sein.."
48
 
49
- #: ../nggfunctions.php:95
50
- #: ../nggfunctions.php:387
51
  msgid "[Gallery not found]"
52
  msgstr "[Galerie nicht gefunden]"
53
 
54
- #: ../nggfunctions.php:274
55
  msgid "[Album not found]"
56
  msgstr "[Album nicht gefunden]"
57
 
58
- #: ../nggfunctions.php:489
59
  msgid "[SinglePic not found]"
60
  msgstr "[Bild nicht gefunden]"
61
 
62
- #: ../nggfunctions.php:608
63
  msgid "Related images for"
64
  msgstr "Verwandte Bilder von"
65
 
66
- #: ../nggfunctions.php:643
67
  #: ../admin/admin.php:30
68
  msgid "Overview"
69
  msgstr "Übersicht"
@@ -190,8 +190,8 @@ msgid "Upload failed!"
190
  msgstr "Upload fehlgeschlagen!"
191
 
192
  #: ../admin/addgallery.php:55
193
- #: ../admin/functions.php:548
194
- #: ../admin/functions.php:638
195
  msgid "No gallery selected !"
196
  msgstr "Keine Galerie ausgewählt !"
197
 
@@ -521,7 +521,7 @@ msgid "Update"
521
  msgstr "Aktualisiere"
522
 
523
  #: ../admin/album.php:147
524
- #: ../admin/manage-galleries.php:54
525
  #: ../admin/manage-images.php:377
526
  msgid "Delete"
527
  msgstr "Lösche"
@@ -614,7 +614,7 @@ msgstr "ist schreibgeschützt !"
614
 
615
  #: ../admin/functions.php:48
616
  #: ../admin/functions.php:58
617
- #: ../admin/functions.php:511
618
  msgid "Unable to create directory "
619
  msgstr "Kann Verzeichnis nicht erstellen "
620
 
@@ -664,7 +664,7 @@ msgid "successfully created!"
664
  msgstr "erfolgreich erstellt!"
665
 
666
  #: ../admin/functions.php:161
667
- #: ../admin/functions.php:620
668
  #: ../admin/manage-images.php:207
669
  #: ../admin/manage.php:136
670
  msgid "Create new thumbnails"
@@ -693,104 +693,104 @@ msgstr "ist schreibgeschützt !"
693
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
694
  msgstr "Die hochgeladene Datei war keine korrekte Zip-Datei. Servermeldung :"
695
 
696
- #: ../admin/functions.php:496
697
- msgid "Could not get a vaild foldername"
698
  msgstr "Konnte keinen gültigen Verzeichnisnamen finden"
699
 
700
- #: ../admin/functions.php:506
701
  #, php-format
702
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
703
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
704
 
705
- #: ../admin/functions.php:521
706
  msgid "Zip-File successfully unpacked"
707
  msgstr "Zip-Datei erfolgreich entpackt"
708
 
709
- #: ../admin/functions.php:556
710
- #: ../admin/functions.php:665
711
  msgid "Failure in database, no gallery path set !"
712
  msgstr "Datenbankfehler! Kein Galerie-Pfad gesetzt !"
713
 
714
- #: ../admin/functions.php:577
715
- #: ../admin/functions.php:659
716
  msgid "is no valid image file!"
717
  msgstr "ist keine zulässige Bilddatei !"
718
 
719
- #: ../admin/functions.php:591
720
- #: ../admin/functions.php:767
721
- #: ../admin/functions.php:835
722
  #, php-format
723
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
724
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
725
 
726
- #: ../admin/functions.php:598
727
- #: ../admin/functions.php:682
728
  msgid "Error, the file could not moved to : "
729
  msgstr "Fehler: Diese Datei kann nicht verschoben werden zu :"
730
 
731
- #: ../admin/functions.php:603
732
- #: ../admin/functions.php:686
733
  msgid "Error, the file permissions could not set"
734
  msgstr "Fehler: Die Berechtigungen für diese Datei können nicht gesetzt werden"
735
 
736
- #: ../admin/functions.php:624
737
  msgid " Image(s) successfully added"
738
  msgstr " Bild(er) erfolgreich hinzugefügt"
739
 
740
- #: ../admin/functions.php:647
741
  msgid "Invalid upload. Error Code : "
742
  msgstr "Ungültiger Upload. Fehler Code :"
743
 
744
- #: ../admin/functions.php:696
745
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
746
  msgstr "Schade, dein freier Speicher scheint aufgebraucht zu sein. Bitte lösche zuerst ein paar Bilder."
747
 
748
- #: ../admin/functions.php:723
749
  #, php-format
750
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
751
  msgstr "SAFE MODE Einschränkungen ist aktiv. Du must das Verzeichnis <strong>%s</strong> manuell anlegen."
752
 
753
- #: ../admin/functions.php:724
754
  #, php-format
755
  msgid "When safe_mode is on, PHP checks to see if the owner (%s) of the current script matches the owner (%s) of the file to be operated on by a file function or its directory"
756
  msgstr "Wenn der Safe-Mode eingeschaltet ist, überprüft PHP ob der Besitzer (%s) des Skript mit dem Besitzer (%s) der Datei/Verzeichnis übereinstimmt."
757
 
758
- #: ../admin/functions.php:761
759
- #: ../admin/functions.php:829
760
  msgid "The destination gallery does not exist"
761
  msgstr "Die ausgewählte Galerie existiert nicht"
762
 
763
- #: ../admin/functions.php:792
764
  #, php-format
765
  msgid "Failed to move image %1$s to %2$s"
766
  msgstr "Konte das Bild %1$s nicht nach %2$s verschieben"
767
 
768
- #: ../admin/functions.php:810
769
  #, php-format
770
  msgid "Moved %1$s picture(s) to gallery : %2$s ."
771
  msgstr " %1$s Bild(er) in Galerie : %2$s verschoben."
772
 
773
- #: ../admin/functions.php:862
774
  #, php-format
775
  msgid "Failed to copy image %1$s to %2$s"
776
  msgstr "Konnte das Bild %1$s nicht nach %2$s kopieren"
777
 
778
- #: ../admin/functions.php:874
779
  #, php-format
780
  msgid "Failed to copy database row for picture %s"
781
  msgstr "Fehler bei der Datenbank-Operation für Bild %s"
782
 
783
- #: ../admin/functions.php:882
784
  #, php-format
785
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) &raquo; The file already existed in the destination gallery."
786
  msgstr "Bild %1$s (%2$s) als Bild %3$s (%4$s) kopiert &raquo; Die Datei existierte bereits."
787
 
788
- #: ../admin/functions.php:885
789
  #, php-format
790
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
791
  msgstr "Bild %1$s (%2$s) kopiert als Bild %3$s (%4$s)"
792
 
793
- #: ../admin/functions.php:894
794
  #, php-format
795
  msgid "Copied %1$s picture(s) to gallery: %2$s ."
796
  msgstr "Kopiere %1$s Bild(er) in die Galerie : %2$s ."
@@ -803,11 +803,11 @@ msgstr "Tut mir leid, aber NextGEN Galerie benötigt zwingend die Rolle \"Admini
803
  msgid "NextGEN Gallery : Tables could not created, please check your database settings"
804
  msgstr "NextGEN Gallery : Tabellen konnten nicht erstellt werden, überprüfe deine Datenbank"
805
 
806
- #: ../admin/install.php:156
807
  msgid "[Show as slideshow]"
808
  msgstr "[Zeige als Diashow]"
809
 
810
- #: ../admin/install.php:157
811
  msgid "[Show picture list]"
812
  msgstr "[Zeige Bilder-Liste]"
813
 
@@ -839,15 +839,15 @@ msgstr "Anzahl"
839
  msgid "Action"
840
  msgstr "Aktion"
841
 
842
- #: ../admin/manage-galleries.php:41
843
  msgid "Edit"
844
  msgstr "Bearbeiten"
845
 
846
- #: ../admin/manage-galleries.php:54
847
  msgid "Delete this gallery ?"
848
  msgstr "Diese Galerie löschen ?"
849
 
850
- #: ../admin/manage-galleries.php:61
851
  #: ../admin/manage-images.php:392
852
  msgid "No entries found"
853
  msgstr "Keine Einträge gefunden"
@@ -1165,7 +1165,7 @@ msgid "Alignment"
1165
  msgstr "Ausrichtung"
1166
 
1167
  #: ../admin/media-upload.php:198
1168
- #: ../admin/settings.php:320
1169
  msgid "None"
1170
  msgstr "Keiner"
1171
 
@@ -1185,7 +1185,7 @@ msgid "Right"
1185
  msgstr "Rechts"
1186
 
1187
  #: ../admin/media-upload.php:208
1188
- #: ../admin/settings.php:423
1189
  msgid "Size"
1190
  msgstr "Größe"
1191
 
@@ -1443,7 +1443,7 @@ msgid "General Options"
1443
  msgstr "Allg. Optionen"
1444
 
1445
  #: ../admin/settings.php:102
1446
- #: ../admin/settings.php:272
1447
  msgid "Thumbnails"
1448
  msgstr "Thumbnails"
1449
 
@@ -1452,19 +1452,19 @@ msgid "Images"
1452
  msgstr "Bilder"
1453
 
1454
  #: ../admin/settings.php:105
1455
- #: ../admin/settings.php:309
1456
  msgid "Effects"
1457
  msgstr "Effekte"
1458
 
1459
  #: ../admin/settings.php:106
1460
- #: ../admin/settings.php:347
1461
  #: ../admin/tinymce/window.php:118
1462
  msgid "Watermark"
1463
  msgstr "Wasserzeichen"
1464
 
1465
  #: ../admin/settings.php:107
1466
- #: ../admin/settings.php:273
1467
- #: ../admin/settings.php:451
1468
  #: ../admin/tinymce/window.php:57
1469
  msgid "Slideshow"
1470
  msgstr "Slideshow"
@@ -1507,411 +1507,419 @@ msgid "ImageMagick (Experimental). Path to the library :"
1507
  msgstr "ImageMagick (Experimental). Pfad zur Bibliothek :"
1508
 
1509
  #: ../admin/settings.php:141
 
 
 
 
 
 
 
 
1510
  msgid "Activate PicLens/CoolIris support"
1511
  msgstr "Aktiviere PicLens/CoolIris"
1512
 
1513
- #: ../admin/settings.php:143
1514
  msgid "When you activate this option, some javascript is added to your site footer. Make sure that wp_footer is called in your theme."
1515
  msgstr "Dieser Effekt fügt ein neues Javascript zu deinem Theme hinzu. Beachte das wp_footer() in deinen Vorlagen aufgerufen wird."
1516
 
1517
- #: ../admin/settings.php:146
1518
  msgid "Tags / Categories"
1519
  msgstr "Stichwörter / Kategorien"
1520
 
1521
- #: ../admin/settings.php:149
1522
  msgid "Activate related images"
1523
  msgstr "Verwandte Bilder anzeigen"
1524
 
1525
- #: ../admin/settings.php:151
1526
  msgid "This option will append related images to every post"
1527
  msgstr "Diese Option hängt verwandte Bilder an jeden Beitrag"
1528
 
1529
- #: ../admin/settings.php:155
1530
  msgid "Match with"
1531
  msgstr "Vergleiche mit"
1532
 
1533
- #: ../admin/settings.php:156
1534
  msgid "Categories"
1535
  msgstr "Kategorien"
1536
 
1537
- #: ../admin/settings.php:161
1538
  msgid "Max. number of images"
1539
  msgstr "Max. Anzahl der Bilder"
1540
 
1541
- #: ../admin/settings.php:163
1542
  msgid "0 will show all images"
1543
  msgstr "0 zeige alle verwandten Bilder"
1544
 
1545
- #: ../admin/settings.php:174
1546
  msgid "Thumbnail settings"
1547
  msgstr "Thumbnail Einstellungen"
1548
 
1549
- #: ../admin/settings.php:178
1550
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1551
  msgstr "Bitte beachten : Änderungen der Einstellungen werden erst übernommen, wenn Du neue Thumbnails unter -> \"Gallery verwalten\" erstellst"
1552
 
1553
- #: ../admin/settings.php:181
1554
  msgid "Width x height (in pixel)"
1555
  msgstr "Breite x Höhe (in Pixel)"
1556
 
1557
- #: ../admin/settings.php:183
1558
  msgid "These values are maximum values "
1559
  msgstr "Diese Angaben sind maximale Angaben."
1560
 
1561
- #: ../admin/settings.php:186
1562
  msgid "Set fix dimension"
1563
  msgstr "Setze fixe Größe"
1564
 
1565
- #: ../admin/settings.php:188
1566
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1567
  msgstr "Ignoriere Bildseitenverhältnis"
1568
 
1569
- #: ../admin/settings.php:191
1570
  msgid "Crop square thumbnail from image"
1571
  msgstr "Mittige Thumbnails aus Bildern ausschneiden"
1572
 
1573
- #: ../admin/settings.php:193
1574
  msgid "Create square thumbnails, use only the width setting :"
1575
  msgstr "Erstellt viereckige Thumbnails, nutzt nur den Wert der Breite :"
1576
 
1577
- #: ../admin/settings.php:196
1578
  msgid "Thumbnail quality"
1579
  msgstr "Thumbnail Qualität"
1580
 
1581
- #: ../admin/settings.php:207
1582
  msgid "Image settings"
1583
  msgstr "Bild Einstellungen"
1584
 
1585
- #: ../admin/settings.php:213
1586
  msgid "Resize Images"
1587
  msgstr "Bilder verkleinern"
1588
 
1589
- #: ../admin/settings.php:217
1590
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1591
  msgstr "Breite x Höhe (in Pixel). NextGEN Galerie beachtet das Seitenverhältnis."
1592
 
1593
- #: ../admin/settings.php:220
1594
  msgid "Image quality"
1595
  msgstr "Bild Qualität"
1596
 
1597
- #: ../admin/settings.php:225
1598
  msgid "Single picture"
1599
  msgstr "Einzelbilder"
1600
 
1601
- #: ../admin/settings.php:228
1602
  msgid "Cache single pictures"
1603
  msgstr "Nutze Cache für Einzelbidler"
1604
 
1605
- #: ../admin/settings.php:231
1606
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1607
  msgstr "Erstellt ein Cache-Bild für jedes Einzelbild (singlepic). Reduziert die CPU Belastung."
1608
 
1609
- #: ../admin/settings.php:234
1610
  msgid "Clear cache folder"
1611
  msgstr "Lösche Cache Verzeichnis"
1612
 
1613
- #: ../admin/settings.php:236
1614
  msgid "Proceed now"
1615
  msgstr "Jetzt durchführen"
1616
 
1617
- #: ../admin/settings.php:252
1618
  msgid "Deactivate gallery page link"
1619
  msgstr "Keine Seitenverzweigung"
1620
 
1621
- #: ../admin/settings.php:254
1622
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1623
  msgstr "Ein Album benötigt dann keinen Link zur Seite. Die Galerie wird direkt angezeigt."
1624
 
1625
- #: ../admin/settings.php:258
1626
  msgid "Number of images per page"
1627
  msgstr "Anzahl der Bilder pro Seite"
1628
 
1629
- #: ../admin/settings.php:260
1630
  msgid "0 will disable pagination, all images on one page"
1631
  msgstr "0 schaltet Blätterfunktion ab ( = alle Bilder auf einer Seite )"
1632
 
1633
- #: ../admin/settings.php:264
1634
  msgid "Integrate slideshow"
1635
  msgstr "Slideshow verwenden"
1636
 
1637
- #: ../admin/settings.php:271
1638
  msgid "Show first"
1639
  msgstr "Zeige als Erstes"
1640
 
1641
- #: ../admin/settings.php:277
1642
  msgid "Show ImageBrowser"
1643
  msgstr "Zeige Bilder Browser"
1644
 
1645
- #: ../admin/settings.php:279
1646
  msgid "The gallery will open the ImageBrowser instead the effect."
1647
  msgstr "Es wird der Bilder Browser angezeigt (Kein JavaScript Effekt)"
1648
 
1649
- #: ../admin/settings.php:283
1650
  msgid "Sort options"
1651
  msgstr "Sortierung"
1652
 
1653
- #: ../admin/settings.php:286
1654
  msgid "Sort thumbnails"
1655
  msgstr "Thumbnails sortieren"
1656
 
1657
- #: ../admin/settings.php:288
1658
  msgid "Custom order"
1659
  msgstr "Benutzerdefiniert"
1660
 
1661
- #: ../admin/settings.php:291
1662
  msgid "Alt / Title text"
1663
  msgstr "Alt / Titel Text"
1664
 
1665
- #: ../admin/settings.php:292
1666
  msgid "Date / Time"
1667
  msgstr "Datum/Zeit"
1668
 
1669
- #: ../admin/settings.php:296
1670
  msgid "Sort direction"
1671
  msgstr "Sortierreihenfolge"
1672
 
1673
- #: ../admin/settings.php:313
1674
  msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
1675
  msgstr "Hier kannst Du den Effekt für die Thumbnails auswählen. NextGEN Galerie wird den benötigten HTML Code verwenden. Bitte beachte, das nur der Thickbox Effekt automatisch in Dein Theme von Wordpress integriert wird. Alle anderen Effekte mußt Du selbst in die header.php eintragen (JS)."
1676
 
1677
- #: ../admin/settings.php:314
1678
  msgid "With the placeholder"
1679
  msgstr "Mit Platzhalter"
1680
 
1681
- #: ../admin/settings.php:314
1682
  msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
1683
  msgstr "Du kannst eine Navigation durch die Bilder aktivieren (hängt vom Effekt ab). Ändere nur die Codezeile falls Du einen anderen Effekt für die Thumbnails verwendest oder einfach weißt, was Du tust."
1684
 
1685
- #: ../admin/settings.php:317
1686
  msgid "JavaScript Thumbnail effect"
1687
  msgstr "JavaScript Thumbnail Effekt"
1688
 
1689
- #: ../admin/settings.php:321
1690
  msgid "Thickbox"
1691
  msgstr "Thickbox"
1692
 
1693
- #: ../admin/settings.php:322
1694
  msgid "Lightbox"
1695
  msgstr "Lightbox"
1696
 
1697
- #: ../admin/settings.php:323
1698
  msgid "Highslide"
1699
  msgstr "Highslide"
1700
 
1701
- #: ../admin/settings.php:324
1702
  msgid "Shutter"
1703
  msgstr "Shutter"
1704
 
1705
- #: ../admin/settings.php:325
1706
  msgid "Custom"
1707
  msgstr "Eigener"
1708
 
1709
- #: ../admin/settings.php:330
1710
  msgid "Link Code line"
1711
  msgstr "Link Code Zeile"
1712
 
1713
- #: ../admin/settings.php:348
1714
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1715
  msgstr "Bitte beachten : Das Wasserzeichen kann nur unter der Galerieverwaltung gesetzt werden. "
1716
 
1717
- #: ../admin/settings.php:353
1718
  msgid "Preview"
1719
  msgstr "Vorschau"
1720
 
1721
- #: ../admin/settings.php:355
1722
  #: ../admin/settings.php:360
 
1723
  msgid "Position"
1724
  msgstr "Position"
1725
 
1726
- #: ../admin/settings.php:380
1727
  msgid "Offset"
1728
  msgstr "Abstand"
1729
 
1730
- #: ../admin/settings.php:396
1731
  msgid "Use image as watermark"
1732
  msgstr "Benutze Bild als Wasserzeichen"
1733
 
1734
- #: ../admin/settings.php:399
1735
  msgid "URL to file"
1736
  msgstr "URL zur Datei"
1737
 
1738
- #: ../admin/settings.php:401
1739
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
1740
  msgstr "Der Dateizugriff von URL's ist auf diesem Server deaktiviert (allow_url_fopen)"
1741
 
1742
- #: ../admin/settings.php:404
1743
  msgid "Use text as watermark"
1744
  msgstr "Benutze Text als Wasserzeichen"
1745
 
1746
- #: ../admin/settings.php:407
1747
  msgid "Font"
1748
  msgstr "Schriftart"
1749
 
1750
- #: ../admin/settings.php:416
1751
  msgid "This function will not work, cause you need the FreeType library"
1752
  msgstr "Diese Funktion benötigt die FreeType Bibliothek"
1753
 
1754
- #: ../admin/settings.php:418
1755
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
1756
  msgstr "Du kannst mehr Schriftarten in das Verzeichniss <strong>nggallery/fonts</strong> hochladen."
1757
 
1758
- #: ../admin/settings.php:427
1759
  msgid "Color"
1760
  msgstr "Farbe"
1761
 
1762
- #: ../admin/settings.php:429
1763
  msgid "(hex w/o #)"
1764
  msgstr "(hex w/o #)"
1765
 
1766
- #: ../admin/settings.php:432
1767
  msgid "Text"
1768
  msgstr "Text"
1769
 
1770
- #: ../admin/settings.php:436
1771
  msgid "Opaque"
1772
  msgstr "Transparenz"
1773
 
1774
- #: ../admin/settings.php:452
1775
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
1776
  msgstr "Die Datei imagerotator.swf ist nicht im Plugin Verzeichniss -> so wird die Slideshow nicht funktionieren."
1777
 
1778
- #: ../admin/settings.php:453
1779
  msgid "The settings are used in the JW Image Rotator Version"
1780
  msgstr "Die Einstellungen werden im JW Image Rotator benutzt , in der Version"
1781
 
1782
- #: ../admin/settings.php:454
1783
  msgid "See more information for the Flash Player on the web page"
1784
  msgstr "Weitere Informationen auf der Flash Player Homepage"
1785
 
1786
- #: ../admin/settings.php:458
1787
  msgid "Default size (W x H)"
1788
  msgstr "Standard Größe (B x H)"
1789
 
1790
- #: ../admin/settings.php:463
1791
  msgid "Shuffle mode"
1792
  msgstr "Shuffle Modus"
1793
 
1794
- #: ../admin/settings.php:467
1795
  msgid "Show next image on click"
1796
  msgstr "Zeige nächstes Bild bei Klick"
1797
 
1798
- #: ../admin/settings.php:471
1799
  msgid "Show navigation bar"
1800
  msgstr "Zeige Navigations-Leiste"
1801
 
1802
- #: ../admin/settings.php:475
1803
  msgid "Show loading icon"
1804
  msgstr "Zeige Lade-Bildchen"
1805
 
1806
- #: ../admin/settings.php:479
1807
  msgid "Use watermark logo"
1808
  msgstr "Wasserzeichen anzeigen"
1809
 
1810
- #: ../admin/settings.php:481
1811
  msgid "You can change the logo at the watermark settings"
1812
  msgstr "Du kannst den Pfad in Einstellungen für da Wasserzeichen angeben"
1813
 
1814
- #: ../admin/settings.php:484
1815
  msgid "Stretch image"
1816
  msgstr "Bild dehnen"
1817
 
1818
- #: ../admin/settings.php:487
1819
  msgid "true"
1820
  msgstr "Ja"
1821
 
1822
- #: ../admin/settings.php:488
1823
  msgid "false"
1824
  msgstr "Nein"
1825
 
1826
- #: ../admin/settings.php:489
1827
  msgid "fit"
1828
  msgstr "Passend"
1829
 
1830
- #: ../admin/settings.php:490
1831
  msgid "none"
1832
  msgstr "keiner"
1833
 
1834
- #: ../admin/settings.php:495
1835
  msgid "Duration time"
1836
  msgstr "Dauer"
1837
 
1838
- #: ../admin/settings.php:496
1839
  msgid "sec."
1840
  msgstr "Sek."
1841
 
1842
- #: ../admin/settings.php:499
1843
  msgid "Transition / Fade effect"
1844
  msgstr "Fade Effekt"
1845
 
1846
- #: ../admin/settings.php:502
1847
  msgid "fade"
1848
  msgstr "Fade"
1849
 
1850
- #: ../admin/settings.php:503
1851
  msgid "bgfade"
1852
  msgstr "BGFade"
1853
 
1854
- #: ../admin/settings.php:504
1855
  msgid "slowfade"
1856
  msgstr "Slowfade"
1857
 
1858
- #: ../admin/settings.php:505
1859
  msgid "circles"
1860
  msgstr "Kreise"
1861
 
1862
- #: ../admin/settings.php:506
1863
  msgid "bubbles"
1864
  msgstr "Blasen"
1865
 
1866
- #: ../admin/settings.php:507
1867
  msgid "blocks"
1868
  msgstr "Blöcke"
1869
 
1870
- #: ../admin/settings.php:508
1871
  msgid "fluids"
1872
  msgstr "Fluids"
1873
 
1874
- #: ../admin/settings.php:509
1875
  msgid "flash"
1876
  msgstr "Flash"
1877
 
1878
- #: ../admin/settings.php:510
1879
  msgid "lines"
1880
  msgstr "Linien"
1881
 
1882
- #: ../admin/settings.php:511
1883
  msgid "random"
1884
  msgstr "Zufall"
1885
 
1886
- #: ../admin/settings.php:515
1887
  msgid "Use slow zooming effect"
1888
  msgstr "nutze Zoom Effekt"
1889
 
1890
- #: ../admin/settings.php:519
1891
  msgid "Background Color"
1892
  msgstr "Hintergrund (BG) Farbe"
1893
 
1894
- #: ../admin/settings.php:524
1895
  msgid "Texts / Buttons Color"
1896
  msgstr "Text- / Button Farbe"
1897
 
1898
- #: ../admin/settings.php:529
1899
  msgid "Rollover / Active Color"
1900
  msgstr "Rollover / Aktiv (Link) Farbe"
1901
 
1902
- #: ../admin/settings.php:534
1903
  msgid "Screen Color"
1904
  msgstr "Seiten Farbe"
1905
 
1906
- #: ../admin/settings.php:539
1907
  msgid "Background music (URL)"
1908
  msgstr "Hintergrundmusik (URL)"
1909
 
1910
- #: ../admin/settings.php:543
1911
  msgid "Try XHTML validation (with CDATA)"
1912
  msgstr "Integriere XHTML Validierung (mittels CDATA)"
1913
 
1914
- #: ../admin/settings.php:545
1915
  msgid "Important : Could causes problem at some browser. Please recheck your page."
1916
  msgstr "Wichtig : Es könnnten Probleme bei einigen Browser auftauchen. Unbedingt Seite prüfen."
1917
 
@@ -2487,7 +2495,7 @@ msgstr "Format"
2487
  msgid "Album overview"
2488
  msgstr "Album Übersicht"
2489
 
2490
- #: ../lib/shortcodes.php:268
2491
  msgid "[Pictures not found]"
2492
  msgstr "[Bilder nicht gefunden]"
2493
 
@@ -2616,7 +2624,7 @@ msgid "Link to the main image feed"
2616
  msgstr "Link zum Bilder-Feed"
2617
 
2618
  #: ../widgets/media-rss-widget.php:153
2619
- #: ../widgets/widgets.php:134
2620
  msgid "Title:"
2621
  msgstr "Titel:"
2622
 
@@ -2649,71 +2657,71 @@ msgstr "NextGEN Diashow"
2649
  msgid "<a href=\"http://www.macromedia.com/go/getflashplayer\">Get the Flash Player</a> to see the slideshow."
2650
  msgstr "<a href=\"http://www.macromedia.com/go/getflashplayer\">Lade Dir den Flash Player</a> um die Diashow zu sehen."
2651
 
2652
- #: ../widgets/widgets.php:136
2653
  msgid "Select Gallery:"
2654
  msgstr "Wähle Galerie"
2655
 
2656
- #: ../widgets/widgets.php:138
2657
  msgid "All images"
2658
  msgstr "Alle Bilder"
2659
 
2660
- #: ../widgets/widgets.php:151
2661
  msgid "Height:"
2662
  msgstr "Höhe:"
2663
 
2664
- #: ../widgets/widgets.php:152
2665
  msgid "Width:"
2666
  msgstr "Breite:"
2667
 
2668
- #: ../widgets/widgets.php:185
2669
  msgid "Add recent or random images from the galleries"
2670
  msgstr "Füge die neusten Bilder oder Zufallsbilder aus NextGEN Gallery ein"
2671
 
2672
- #: ../widgets/widgets.php:187
2673
  msgid "NextGEN Widget"
2674
  msgstr "NextGEN Widget"
2675
 
2676
- #: ../widgets/widgets.php:285
2677
  msgid "Title :"
2678
  msgstr "Titel :"
2679
 
2680
- #: ../widgets/widgets.php:291
2681
  msgid "Show :"
2682
  msgstr "Zeige als :"
2683
 
2684
- #: ../widgets/widgets.php:297
2685
  msgid "Orginal images"
2686
  msgstr "Orginal Bilder"
2687
 
2688
- #: ../widgets/widgets.php:305
2689
  msgid "recent added "
2690
  msgstr "zuletzt hinzugefügt"
2691
 
2692
- #: ../widgets/widgets.php:310
2693
  msgid "Width x Height :"
2694
  msgstr "Breite x Höhe :"
2695
 
2696
- #: ../widgets/widgets.php:317
2697
  msgid "Select :"
2698
  msgstr "Wähle :"
2699
 
2700
- #: ../widgets/widgets.php:319
2701
  msgid "All galleries"
2702
  msgstr "Alle Galerien"
2703
 
2704
- #: ../widgets/widgets.php:320
2705
  msgid "Only which are not listed"
2706
  msgstr "Nur ungelistete"
2707
 
2708
- #: ../widgets/widgets.php:321
2709
  msgid "Only which are listed"
2710
  msgstr "Nur gelistete"
2711
 
2712
- #: ../widgets/widgets.php:327
2713
  msgid "Gallery ID :"
2714
  msgstr "Galerie ID :"
2715
 
2716
- #: ../widgets/widgets.php:329
2717
  msgid "Gallery IDs, separated by commas."
2718
  msgstr "Galerie ID's, mit Kommas getrennt"
2719
 
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-15 12:50+0100\n"
6
+ "PO-Revision-Date: 2008-12-15 12:50+0100\n"
7
  "Last-Translator: Alex Rabe <no@email.com>\n"
8
  "Language-Team: Alex Rabe\n"
9
  "MIME-Version: 1.0\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPath-1: ..\n"
20
 
21
+ #: ../nggallery.php:153
22
  msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB higher"
23
  msgstr "Tut mir leid, aber NextGEN Galerie benötigt minimum 16MB Speicher (Memory Limit) oder mehr"
24
 
25
+ #: ../nggallery.php:180
26
  msgid "Picture tag"
27
  msgstr "Bilder Stichwort"
28
 
29
+ #: ../nggallery.php:181
30
  msgid "Picture tag: %2$l."
31
  msgstr "Bilder Stichwort: %2$l."
32
 
33
+ #: ../nggallery.php:182
34
  msgid "Separate picture tags with commas."
35
  msgstr "Trenne Stichwörter mittels Komma"
36
 
37
+ #: ../nggallery.php:276
38
  msgid "L O A D I N G"
39
  msgstr "B I T T E W A R T E N"
40
 
41
+ #: ../nggallery.php:277
42
  msgid "Click to Close"
43
  msgstr "Klicken zum Schliessen "
44
 
46
  msgid "The <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player</a> and <a href=\"http://www.mozilla.com/firefox/\">a browser with Javascript support</a> are needed.."
47
  msgstr "Es wird der <a href=\"http://www.macromedia.com/go/getflashplayer\">Adobe Flash Player</a> benötigt und <a href=\"http://www.mozilla.com/firefox/\">im Browser muss Javascript</a> aktiviert sein.."
48
 
49
+ #: ../nggfunctions.php:96
50
+ #: ../nggfunctions.php:393
51
  msgid "[Gallery not found]"
52
  msgstr "[Galerie nicht gefunden]"
53
 
54
+ #: ../nggfunctions.php:278
55
  msgid "[Album not found]"
56
  msgstr "[Album nicht gefunden]"
57
 
58
+ #: ../nggfunctions.php:495
59
  msgid "[SinglePic not found]"
60
  msgstr "[Bild nicht gefunden]"
61
 
62
+ #: ../nggfunctions.php:614
63
  msgid "Related images for"
64
  msgstr "Verwandte Bilder von"
65
 
66
+ #: ../nggfunctions.php:649
67
  #: ../admin/admin.php:30
68
  msgid "Overview"
69
  msgstr "Übersicht"
190
  msgstr "Upload fehlgeschlagen!"
191
 
192
  #: ../admin/addgallery.php:55
193
+ #: ../admin/functions.php:550
194
+ #: ../admin/functions.php:640
195
  msgid "No gallery selected !"
196
  msgstr "Keine Galerie ausgewählt !"
197
 
521
  msgstr "Aktualisiere"
522
 
523
  #: ../admin/album.php:147
524
+ #: ../admin/manage-galleries.php:55
525
  #: ../admin/manage-images.php:377
526
  msgid "Delete"
527
  msgstr "Lösche"
614
 
615
  #: ../admin/functions.php:48
616
  #: ../admin/functions.php:58
617
+ #: ../admin/functions.php:513
618
  msgid "Unable to create directory "
619
  msgstr "Kann Verzeichnis nicht erstellen "
620
 
664
  msgstr "erfolgreich erstellt!"
665
 
666
  #: ../admin/functions.php:161
667
+ #: ../admin/functions.php:622
668
  #: ../admin/manage-images.php:207
669
  #: ../admin/manage.php:136
670
  msgid "Create new thumbnails"
693
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
694
  msgstr "Die hochgeladene Datei war keine korrekte Zip-Datei. Servermeldung :"
695
 
696
+ #: ../admin/functions.php:497
697
+ msgid "Could not get a valid foldername"
698
  msgstr "Konnte keinen gültigen Verzeichnisnamen finden"
699
 
700
+ #: ../admin/functions.php:508
701
  #, php-format
702
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
703
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
704
 
705
+ #: ../admin/functions.php:523
706
  msgid "Zip-File successfully unpacked"
707
  msgstr "Zip-Datei erfolgreich entpackt"
708
 
709
+ #: ../admin/functions.php:558
710
+ #: ../admin/functions.php:667
711
  msgid "Failure in database, no gallery path set !"
712
  msgstr "Datenbankfehler! Kein Galerie-Pfad gesetzt !"
713
 
714
+ #: ../admin/functions.php:579
715
+ #: ../admin/functions.php:661
716
  msgid "is no valid image file!"
717
  msgstr "ist keine zulässige Bilddatei !"
718
 
719
+ #: ../admin/functions.php:593
720
+ #: ../admin/functions.php:769
721
+ #: ../admin/functions.php:837
722
  #, php-format
723
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
724
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
725
 
726
+ #: ../admin/functions.php:600
727
+ #: ../admin/functions.php:684
728
  msgid "Error, the file could not moved to : "
729
  msgstr "Fehler: Diese Datei kann nicht verschoben werden zu :"
730
 
731
+ #: ../admin/functions.php:605
732
+ #: ../admin/functions.php:688
733
  msgid "Error, the file permissions could not set"
734
  msgstr "Fehler: Die Berechtigungen für diese Datei können nicht gesetzt werden"
735
 
736
+ #: ../admin/functions.php:626
737
  msgid " Image(s) successfully added"
738
  msgstr " Bild(er) erfolgreich hinzugefügt"
739
 
740
+ #: ../admin/functions.php:649
741
  msgid "Invalid upload. Error Code : "
742
  msgstr "Ungültiger Upload. Fehler Code :"
743
 
744
+ #: ../admin/functions.php:698
745
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
746
  msgstr "Schade, dein freier Speicher scheint aufgebraucht zu sein. Bitte lösche zuerst ein paar Bilder."
747
 
748
+ #: ../admin/functions.php:725
749
  #, php-format
750
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
751
  msgstr "SAFE MODE Einschränkungen ist aktiv. Du must das Verzeichnis <strong>%s</strong> manuell anlegen."
752
 
753
+ #: ../admin/functions.php:726
754
  #, php-format
755
  msgid "When safe_mode is on, PHP checks to see if the owner (%s) of the current script matches the owner (%s) of the file to be operated on by a file function or its directory"
756
  msgstr "Wenn der Safe-Mode eingeschaltet ist, überprüft PHP ob der Besitzer (%s) des Skript mit dem Besitzer (%s) der Datei/Verzeichnis übereinstimmt."
757
 
758
+ #: ../admin/functions.php:763
759
+ #: ../admin/functions.php:831
760
  msgid "The destination gallery does not exist"
761
  msgstr "Die ausgewählte Galerie existiert nicht"
762
 
763
+ #: ../admin/functions.php:794
764
  #, php-format
765
  msgid "Failed to move image %1$s to %2$s"
766
  msgstr "Konte das Bild %1$s nicht nach %2$s verschieben"
767
 
768
+ #: ../admin/functions.php:812
769
  #, php-format
770
  msgid "Moved %1$s picture(s) to gallery : %2$s ."
771
  msgstr " %1$s Bild(er) in Galerie : %2$s verschoben."
772
 
773
+ #: ../admin/functions.php:864
774
  #, php-format
775
  msgid "Failed to copy image %1$s to %2$s"
776
  msgstr "Konnte das Bild %1$s nicht nach %2$s kopieren"
777
 
778
+ #: ../admin/functions.php:876
779
  #, php-format
780
  msgid "Failed to copy database row for picture %s"
781
  msgstr "Fehler bei der Datenbank-Operation für Bild %s"
782
 
783
+ #: ../admin/functions.php:884
784
  #, php-format
785
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) &raquo; The file already existed in the destination gallery."
786
  msgstr "Bild %1$s (%2$s) als Bild %3$s (%4$s) kopiert &raquo; Die Datei existierte bereits."
787
 
788
+ #: ../admin/functions.php:887
789
  #, php-format
790
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
791
  msgstr "Bild %1$s (%2$s) kopiert als Bild %3$s (%4$s)"
792
 
793
+ #: ../admin/functions.php:896
794
  #, php-format
795
  msgid "Copied %1$s picture(s) to gallery: %2$s ."
796
  msgstr "Kopiere %1$s Bild(er) in die Galerie : %2$s ."
803
  msgid "NextGEN Gallery : Tables could not created, please check your database settings"
804
  msgstr "NextGEN Gallery : Tabellen konnten nicht erstellt werden, überprüfe deine Datenbank"
805
 
806
+ #: ../admin/install.php:158
807
  msgid "[Show as slideshow]"
808
  msgstr "[Zeige als Diashow]"
809
 
810
+ #: ../admin/install.php:159
811
  msgid "[Show picture list]"
812
  msgstr "[Zeige Bilder-Liste]"
813
 
839
  msgid "Action"
840
  msgstr "Aktion"
841
 
842
+ #: ../admin/manage-galleries.php:42
843
  msgid "Edit"
844
  msgstr "Bearbeiten"
845
 
846
+ #: ../admin/manage-galleries.php:55
847
  msgid "Delete this gallery ?"
848
  msgstr "Diese Galerie löschen ?"
849
 
850
+ #: ../admin/manage-galleries.php:62
851
  #: ../admin/manage-images.php:392
852
  msgid "No entries found"
853
  msgstr "Keine Einträge gefunden"
1165
  msgstr "Ausrichtung"
1166
 
1167
  #: ../admin/media-upload.php:198
1168
+ #: ../admin/settings.php:325
1169
  msgid "None"
1170
  msgstr "Keiner"
1171
 
1185
  msgstr "Rechts"
1186
 
1187
  #: ../admin/media-upload.php:208
1188
+ #: ../admin/settings.php:428
1189
  msgid "Size"
1190
  msgstr "Größe"
1191
 
1443
  msgstr "Allg. Optionen"
1444
 
1445
  #: ../admin/settings.php:102
1446
+ #: ../admin/settings.php:277
1447
  msgid "Thumbnails"
1448
  msgstr "Thumbnails"
1449
 
1452
  msgstr "Bilder"
1453
 
1454
  #: ../admin/settings.php:105
1455
+ #: ../admin/settings.php:314
1456
  msgid "Effects"
1457
  msgstr "Effekte"
1458
 
1459
  #: ../admin/settings.php:106
1460
+ #: ../admin/settings.php:352
1461
  #: ../admin/tinymce/window.php:118
1462
  msgid "Watermark"
1463
  msgstr "Wasserzeichen"
1464
 
1465
  #: ../admin/settings.php:107
1466
+ #: ../admin/settings.php:278
1467
+ #: ../admin/settings.php:456
1468
  #: ../admin/tinymce/window.php:57
1469
  msgid "Slideshow"
1470
  msgstr "Slideshow"
1507
  msgstr "ImageMagick (Experimental). Pfad zur Bibliothek :"
1508
 
1509
  #: ../admin/settings.php:141
1510
+ msgid "Activate Media RSS feed"
1511
+ msgstr "Aktiviere Media RSS Feed"
1512
+
1513
+ #: ../admin/settings.php:143
1514
+ msgid "A RSS feed will be added to you blog header. Usefull for CoolIris/PicLens"
1515
+ msgstr "Ein Bilder-RSS Feed wird zum Blog hinzugefügt"
1516
+
1517
+ #: ../admin/settings.php:146
1518
  msgid "Activate PicLens/CoolIris support"
1519
  msgstr "Aktiviere PicLens/CoolIris"
1520
 
1521
+ #: ../admin/settings.php:148
1522
  msgid "When you activate this option, some javascript is added to your site footer. Make sure that wp_footer is called in your theme."
1523
  msgstr "Dieser Effekt fügt ein neues Javascript zu deinem Theme hinzu. Beachte das wp_footer() in deinen Vorlagen aufgerufen wird."
1524
 
1525
+ #: ../admin/settings.php:151
1526
  msgid "Tags / Categories"
1527
  msgstr "Stichwörter / Kategorien"
1528
 
1529
+ #: ../admin/settings.php:154
1530
  msgid "Activate related images"
1531
  msgstr "Verwandte Bilder anzeigen"
1532
 
1533
+ #: ../admin/settings.php:156
1534
  msgid "This option will append related images to every post"
1535
  msgstr "Diese Option hängt verwandte Bilder an jeden Beitrag"
1536
 
1537
+ #: ../admin/settings.php:160
1538
  msgid "Match with"
1539
  msgstr "Vergleiche mit"
1540
 
1541
+ #: ../admin/settings.php:161
1542
  msgid "Categories"
1543
  msgstr "Kategorien"
1544
 
1545
+ #: ../admin/settings.php:166
1546
  msgid "Max. number of images"
1547
  msgstr "Max. Anzahl der Bilder"
1548
 
1549
+ #: ../admin/settings.php:168
1550
  msgid "0 will show all images"
1551
  msgstr "0 zeige alle verwandten Bilder"
1552
 
1553
+ #: ../admin/settings.php:179
1554
  msgid "Thumbnail settings"
1555
  msgstr "Thumbnail Einstellungen"
1556
 
1557
+ #: ../admin/settings.php:183
1558
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1559
  msgstr "Bitte beachten : Änderungen der Einstellungen werden erst übernommen, wenn Du neue Thumbnails unter -> \"Gallery verwalten\" erstellst"
1560
 
1561
+ #: ../admin/settings.php:186
1562
  msgid "Width x height (in pixel)"
1563
  msgstr "Breite x Höhe (in Pixel)"
1564
 
1565
+ #: ../admin/settings.php:188
1566
  msgid "These values are maximum values "
1567
  msgstr "Diese Angaben sind maximale Angaben."
1568
 
1569
+ #: ../admin/settings.php:191
1570
  msgid "Set fix dimension"
1571
  msgstr "Setze fixe Größe"
1572
 
1573
+ #: ../admin/settings.php:193
1574
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1575
  msgstr "Ignoriere Bildseitenverhältnis"
1576
 
1577
+ #: ../admin/settings.php:196
1578
  msgid "Crop square thumbnail from image"
1579
  msgstr "Mittige Thumbnails aus Bildern ausschneiden"
1580
 
1581
+ #: ../admin/settings.php:198
1582
  msgid "Create square thumbnails, use only the width setting :"
1583
  msgstr "Erstellt viereckige Thumbnails, nutzt nur den Wert der Breite :"
1584
 
1585
+ #: ../admin/settings.php:201
1586
  msgid "Thumbnail quality"
1587
  msgstr "Thumbnail Qualität"
1588
 
1589
+ #: ../admin/settings.php:212
1590
  msgid "Image settings"
1591
  msgstr "Bild Einstellungen"
1592
 
1593
+ #: ../admin/settings.php:218
1594
  msgid "Resize Images"
1595
  msgstr "Bilder verkleinern"
1596
 
1597
+ #: ../admin/settings.php:222
1598
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1599
  msgstr "Breite x Höhe (in Pixel). NextGEN Galerie beachtet das Seitenverhältnis."
1600
 
1601
+ #: ../admin/settings.php:225
1602
  msgid "Image quality"
1603
  msgstr "Bild Qualität"
1604
 
1605
+ #: ../admin/settings.php:230
1606
  msgid "Single picture"
1607
  msgstr "Einzelbilder"
1608
 
1609
+ #: ../admin/settings.php:233
1610
  msgid "Cache single pictures"
1611
  msgstr "Nutze Cache für Einzelbidler"
1612
 
1613
+ #: ../admin/settings.php:236
1614
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1615
  msgstr "Erstellt ein Cache-Bild für jedes Einzelbild (singlepic). Reduziert die CPU Belastung."
1616
 
1617
+ #: ../admin/settings.php:239
1618
  msgid "Clear cache folder"
1619
  msgstr "Lösche Cache Verzeichnis"
1620
 
1621
+ #: ../admin/settings.php:241
1622
  msgid "Proceed now"
1623
  msgstr "Jetzt durchführen"
1624
 
1625
+ #: ../admin/settings.php:257
1626
  msgid "Deactivate gallery page link"
1627
  msgstr "Keine Seitenverzweigung"
1628
 
1629
+ #: ../admin/settings.php:259
1630
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1631
  msgstr "Ein Album benötigt dann keinen Link zur Seite. Die Galerie wird direkt angezeigt."
1632
 
1633
+ #: ../admin/settings.php:263
1634
  msgid "Number of images per page"
1635
  msgstr "Anzahl der Bilder pro Seite"
1636
 
1637
+ #: ../admin/settings.php:265
1638
  msgid "0 will disable pagination, all images on one page"
1639
  msgstr "0 schaltet Blätterfunktion ab ( = alle Bilder auf einer Seite )"
1640
 
1641
+ #: ../admin/settings.php:269
1642
  msgid "Integrate slideshow"
1643
  msgstr "Slideshow verwenden"
1644
 
1645
+ #: ../admin/settings.php:276
1646
  msgid "Show first"
1647
  msgstr "Zeige als Erstes"
1648
 
1649
+ #: ../admin/settings.php:282
1650
  msgid "Show ImageBrowser"
1651
  msgstr "Zeige Bilder Browser"
1652
 
1653
+ #: ../admin/settings.php:284
1654
  msgid "The gallery will open the ImageBrowser instead the effect."
1655
  msgstr "Es wird der Bilder Browser angezeigt (Kein JavaScript Effekt)"
1656
 
1657
+ #: ../admin/settings.php:288
1658
  msgid "Sort options"
1659
  msgstr "Sortierung"
1660
 
1661
+ #: ../admin/settings.php:291
1662
  msgid "Sort thumbnails"
1663
  msgstr "Thumbnails sortieren"
1664
 
1665
+ #: ../admin/settings.php:293
1666
  msgid "Custom order"
1667
  msgstr "Benutzerdefiniert"
1668
 
1669
+ #: ../admin/settings.php:296
1670
  msgid "Alt / Title text"
1671
  msgstr "Alt / Titel Text"
1672
 
1673
+ #: ../admin/settings.php:297
1674
  msgid "Date / Time"
1675
  msgstr "Datum/Zeit"
1676
 
1677
+ #: ../admin/settings.php:301
1678
  msgid "Sort direction"
1679
  msgstr "Sortierreihenfolge"
1680
 
1681
+ #: ../admin/settings.php:318
1682
  msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
1683
  msgstr "Hier kannst Du den Effekt für die Thumbnails auswählen. NextGEN Galerie wird den benötigten HTML Code verwenden. Bitte beachte, das nur der Thickbox Effekt automatisch in Dein Theme von Wordpress integriert wird. Alle anderen Effekte mußt Du selbst in die header.php eintragen (JS)."
1684
 
1685
+ #: ../admin/settings.php:319
1686
  msgid "With the placeholder"
1687
  msgstr "Mit Platzhalter"
1688
 
1689
+ #: ../admin/settings.php:319
1690
  msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
1691
  msgstr "Du kannst eine Navigation durch die Bilder aktivieren (hängt vom Effekt ab). Ändere nur die Codezeile falls Du einen anderen Effekt für die Thumbnails verwendest oder einfach weißt, was Du tust."
1692
 
1693
+ #: ../admin/settings.php:322
1694
  msgid "JavaScript Thumbnail effect"
1695
  msgstr "JavaScript Thumbnail Effekt"
1696
 
1697
+ #: ../admin/settings.php:326
1698
  msgid "Thickbox"
1699
  msgstr "Thickbox"
1700
 
1701
+ #: ../admin/settings.php:327
1702
  msgid "Lightbox"
1703
  msgstr "Lightbox"
1704
 
1705
+ #: ../admin/settings.php:328
1706
  msgid "Highslide"
1707
  msgstr "Highslide"
1708
 
1709
+ #: ../admin/settings.php:329
1710
  msgid "Shutter"
1711
  msgstr "Shutter"
1712
 
1713
+ #: ../admin/settings.php:330
1714
  msgid "Custom"
1715
  msgstr "Eigener"
1716
 
1717
+ #: ../admin/settings.php:335
1718
  msgid "Link Code line"
1719
  msgstr "Link Code Zeile"
1720
 
1721
+ #: ../admin/settings.php:353
1722
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1723
  msgstr "Bitte beachten : Das Wasserzeichen kann nur unter der Galerieverwaltung gesetzt werden. "
1724
 
1725
+ #: ../admin/settings.php:358
1726
  msgid "Preview"
1727
  msgstr "Vorschau"
1728
 
 
1729
  #: ../admin/settings.php:360
1730
+ #: ../admin/settings.php:365
1731
  msgid "Position"
1732
  msgstr "Position"
1733
 
1734
+ #: ../admin/settings.php:385
1735
  msgid "Offset"
1736
  msgstr "Abstand"
1737
 
1738
+ #: ../admin/settings.php:401
1739
  msgid "Use image as watermark"
1740
  msgstr "Benutze Bild als Wasserzeichen"
1741
 
1742
+ #: ../admin/settings.php:404
1743
  msgid "URL to file"
1744
  msgstr "URL zur Datei"
1745
 
1746
+ #: ../admin/settings.php:406
1747
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
1748
  msgstr "Der Dateizugriff von URL's ist auf diesem Server deaktiviert (allow_url_fopen)"
1749
 
1750
+ #: ../admin/settings.php:409
1751
  msgid "Use text as watermark"
1752
  msgstr "Benutze Text als Wasserzeichen"
1753
 
1754
+ #: ../admin/settings.php:412
1755
  msgid "Font"
1756
  msgstr "Schriftart"
1757
 
1758
+ #: ../admin/settings.php:421
1759
  msgid "This function will not work, cause you need the FreeType library"
1760
  msgstr "Diese Funktion benötigt die FreeType Bibliothek"
1761
 
1762
+ #: ../admin/settings.php:423
1763
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
1764
  msgstr "Du kannst mehr Schriftarten in das Verzeichniss <strong>nggallery/fonts</strong> hochladen."
1765
 
1766
+ #: ../admin/settings.php:432
1767
  msgid "Color"
1768
  msgstr "Farbe"
1769
 
1770
+ #: ../admin/settings.php:434
1771
  msgid "(hex w/o #)"
1772
  msgstr "(hex w/o #)"
1773
 
1774
+ #: ../admin/settings.php:437
1775
  msgid "Text"
1776
  msgstr "Text"
1777
 
1778
+ #: ../admin/settings.php:441
1779
  msgid "Opaque"
1780
  msgstr "Transparenz"
1781
 
1782
+ #: ../admin/settings.php:457
1783
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
1784
  msgstr "Die Datei imagerotator.swf ist nicht im Plugin Verzeichniss -> so wird die Slideshow nicht funktionieren."
1785
 
1786
+ #: ../admin/settings.php:458
1787
  msgid "The settings are used in the JW Image Rotator Version"
1788
  msgstr "Die Einstellungen werden im JW Image Rotator benutzt , in der Version"
1789
 
1790
+ #: ../admin/settings.php:459
1791
  msgid "See more information for the Flash Player on the web page"
1792
  msgstr "Weitere Informationen auf der Flash Player Homepage"
1793
 
1794
+ #: ../admin/settings.php:463
1795
  msgid "Default size (W x H)"
1796
  msgstr "Standard Größe (B x H)"
1797
 
1798
+ #: ../admin/settings.php:468
1799
  msgid "Shuffle mode"
1800
  msgstr "Shuffle Modus"
1801
 
1802
+ #: ../admin/settings.php:472
1803
  msgid "Show next image on click"
1804
  msgstr "Zeige nächstes Bild bei Klick"
1805
 
1806
+ #: ../admin/settings.php:476
1807
  msgid "Show navigation bar"
1808
  msgstr "Zeige Navigations-Leiste"
1809
 
1810
+ #: ../admin/settings.php:480
1811
  msgid "Show loading icon"
1812
  msgstr "Zeige Lade-Bildchen"
1813
 
1814
+ #: ../admin/settings.php:484
1815
  msgid "Use watermark logo"
1816
  msgstr "Wasserzeichen anzeigen"
1817
 
1818
+ #: ../admin/settings.php:486
1819
  msgid "You can change the logo at the watermark settings"
1820
  msgstr "Du kannst den Pfad in Einstellungen für da Wasserzeichen angeben"
1821
 
1822
+ #: ../admin/settings.php:489
1823
  msgid "Stretch image"
1824
  msgstr "Bild dehnen"
1825
 
1826
+ #: ../admin/settings.php:492
1827
  msgid "true"
1828
  msgstr "Ja"
1829
 
1830
+ #: ../admin/settings.php:493
1831
  msgid "false"
1832
  msgstr "Nein"
1833
 
1834
+ #: ../admin/settings.php:494
1835
  msgid "fit"
1836
  msgstr "Passend"
1837
 
1838
+ #: ../admin/settings.php:495
1839
  msgid "none"
1840
  msgstr "keiner"
1841
 
1842
+ #: ../admin/settings.php:500
1843
  msgid "Duration time"
1844
  msgstr "Dauer"
1845
 
1846
+ #: ../admin/settings.php:501
1847
  msgid "sec."
1848
  msgstr "Sek."
1849
 
1850
+ #: ../admin/settings.php:504
1851
  msgid "Transition / Fade effect"
1852
  msgstr "Fade Effekt"
1853
 
1854
+ #: ../admin/settings.php:507
1855
  msgid "fade"
1856
  msgstr "Fade"
1857
 
1858
+ #: ../admin/settings.php:508
1859
  msgid "bgfade"
1860
  msgstr "BGFade"
1861
 
1862
+ #: ../admin/settings.php:509
1863
  msgid "slowfade"
1864
  msgstr "Slowfade"
1865
 
1866
+ #: ../admin/settings.php:510
1867
  msgid "circles"
1868
  msgstr "Kreise"
1869
 
1870
+ #: ../admin/settings.php:511
1871
  msgid "bubbles"
1872
  msgstr "Blasen"
1873
 
1874
+ #: ../admin/settings.php:512
1875
  msgid "blocks"
1876
  msgstr "Blöcke"
1877
 
1878
+ #: ../admin/settings.php:513
1879
  msgid "fluids"
1880
  msgstr "Fluids"
1881
 
1882
+ #: ../admin/settings.php:514
1883
  msgid "flash"
1884
  msgstr "Flash"
1885
 
1886
+ #: ../admin/settings.php:515
1887
  msgid "lines"
1888
  msgstr "Linien"
1889
 
1890
+ #: ../admin/settings.php:516
1891
  msgid "random"
1892
  msgstr "Zufall"
1893
 
1894
+ #: ../admin/settings.php:520
1895
  msgid "Use slow zooming effect"
1896
  msgstr "nutze Zoom Effekt"
1897
 
1898
+ #: ../admin/settings.php:524
1899
  msgid "Background Color"
1900
  msgstr "Hintergrund (BG) Farbe"
1901
 
1902
+ #: ../admin/settings.php:529
1903
  msgid "Texts / Buttons Color"
1904
  msgstr "Text- / Button Farbe"
1905
 
1906
+ #: ../admin/settings.php:534
1907
  msgid "Rollover / Active Color"
1908
  msgstr "Rollover / Aktiv (Link) Farbe"
1909
 
1910
+ #: ../admin/settings.php:539
1911
  msgid "Screen Color"
1912
  msgstr "Seiten Farbe"
1913
 
1914
+ #: ../admin/settings.php:544
1915
  msgid "Background music (URL)"
1916
  msgstr "Hintergrundmusik (URL)"
1917
 
1918
+ #: ../admin/settings.php:548
1919
  msgid "Try XHTML validation (with CDATA)"
1920
  msgstr "Integriere XHTML Validierung (mittels CDATA)"
1921
 
1922
+ #: ../admin/settings.php:550
1923
  msgid "Important : Could causes problem at some browser. Please recheck your page."
1924
  msgstr "Wichtig : Es könnnten Probleme bei einigen Browser auftauchen. Unbedingt Seite prüfen."
1925
 
2495
  msgid "Album overview"
2496
  msgstr "Album Übersicht"
2497
 
2498
+ #: ../lib/shortcodes.php:272
2499
  msgid "[Pictures not found]"
2500
  msgstr "[Bilder nicht gefunden]"
2501
 
2624
  msgstr "Link zum Bilder-Feed"
2625
 
2626
  #: ../widgets/media-rss-widget.php:153
2627
+ #: ../widgets/widgets.php:135
2628
  msgid "Title:"
2629
  msgstr "Titel:"
2630
 
2657
  msgid "<a href=\"http://www.macromedia.com/go/getflashplayer\">Get the Flash Player</a> to see the slideshow."
2658
  msgstr "<a href=\"http://www.macromedia.com/go/getflashplayer\">Lade Dir den Flash Player</a> um die Diashow zu sehen."
2659
 
2660
+ #: ../widgets/widgets.php:137
2661
  msgid "Select Gallery:"
2662
  msgstr "Wähle Galerie"
2663
 
2664
+ #: ../widgets/widgets.php:139
2665
  msgid "All images"
2666
  msgstr "Alle Bilder"
2667
 
2668
+ #: ../widgets/widgets.php:152
2669
  msgid "Height:"
2670
  msgstr "Höhe:"
2671
 
2672
+ #: ../widgets/widgets.php:153
2673
  msgid "Width:"
2674
  msgstr "Breite:"
2675
 
2676
+ #: ../widgets/widgets.php:186
2677
  msgid "Add recent or random images from the galleries"
2678
  msgstr "Füge die neusten Bilder oder Zufallsbilder aus NextGEN Gallery ein"
2679
 
2680
+ #: ../widgets/widgets.php:188
2681
  msgid "NextGEN Widget"
2682
  msgstr "NextGEN Widget"
2683
 
2684
+ #: ../widgets/widgets.php:286
2685
  msgid "Title :"
2686
  msgstr "Titel :"
2687
 
2688
+ #: ../widgets/widgets.php:292
2689
  msgid "Show :"
2690
  msgstr "Zeige als :"
2691
 
2692
+ #: ../widgets/widgets.php:298
2693
  msgid "Orginal images"
2694
  msgstr "Orginal Bilder"
2695
 
2696
+ #: ../widgets/widgets.php:306
2697
  msgid "recent added "
2698
  msgstr "zuletzt hinzugefügt"
2699
 
2700
+ #: ../widgets/widgets.php:311
2701
  msgid "Width x Height :"
2702
  msgstr "Breite x Höhe :"
2703
 
2704
+ #: ../widgets/widgets.php:318
2705
  msgid "Select :"
2706
  msgstr "Wähle :"
2707
 
2708
+ #: ../widgets/widgets.php:320
2709
  msgid "All galleries"
2710
  msgstr "Alle Galerien"
2711
 
2712
+ #: ../widgets/widgets.php:321
2713
  msgid "Only which are not listed"
2714
  msgstr "Nur ungelistete"
2715
 
2716
+ #: ../widgets/widgets.php:322
2717
  msgid "Only which are listed"
2718
  msgstr "Nur gelistete"
2719
 
2720
+ #: ../widgets/widgets.php:328
2721
  msgid "Gallery ID :"
2722
  msgstr "Galerie ID :"
2723
 
2724
+ #: ../widgets/widgets.php:330
2725
  msgid "Gallery IDs, separated by commas."
2726
  msgstr "Galerie ID's, mit Kommas getrennt"
2727
 
lang/nggallery.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2008-12-11 20:27+0100\n"
6
- "PO-Revision-Date: 2008-12-11 20:27+0100\n"
7
  "Last-Translator: Alex Rabe <no@email.com>\n"
8
  "Language-Team: Alex Rabe\n"
9
  "MIME-Version: 1.0\n"
@@ -17,27 +17,27 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPath-1: ..\n"
19
 
20
- #: ../nggallery.php:151
21
  msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB higher"
22
  msgstr ""
23
 
24
- #: ../nggallery.php:178
25
  msgid "Picture tag"
26
  msgstr ""
27
 
28
- #: ../nggallery.php:179
29
  msgid "Picture tag: %2$l."
30
  msgstr ""
31
 
32
- #: ../nggallery.php:180
33
  msgid "Separate picture tags with commas."
34
  msgstr ""
35
 
36
- #: ../nggallery.php:274
37
  msgid "L O A D I N G"
38
  msgstr ""
39
 
40
- #: ../nggallery.php:275
41
  msgid "Click to Close"
42
  msgstr ""
43
 
@@ -45,24 +45,24 @@ msgstr ""
45
  msgid "The <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player</a> and <a href=\"http://www.mozilla.com/firefox/\">a browser with Javascript support</a> are needed.."
46
  msgstr ""
47
 
48
- #: ../nggfunctions.php:95
49
- #: ../nggfunctions.php:387
50
  msgid "[Gallery not found]"
51
  msgstr ""
52
 
53
- #: ../nggfunctions.php:274
54
  msgid "[Album not found]"
55
  msgstr ""
56
 
57
- #: ../nggfunctions.php:489
58
  msgid "[SinglePic not found]"
59
  msgstr ""
60
 
61
- #: ../nggfunctions.php:608
62
  msgid "Related images for"
63
  msgstr ""
64
 
65
- #: ../nggfunctions.php:643
66
  #: ../admin/admin.php:30
67
  msgid "Overview"
68
  msgstr ""
@@ -189,8 +189,8 @@ msgid "Upload failed!"
189
  msgstr ""
190
 
191
  #: ../admin/addgallery.php:55
192
- #: ../admin/functions.php:548
193
- #: ../admin/functions.php:638
194
  msgid "No gallery selected !"
195
  msgstr ""
196
 
@@ -520,7 +520,7 @@ msgid "Update"
520
  msgstr ""
521
 
522
  #: ../admin/album.php:147
523
- #: ../admin/manage-galleries.php:54
524
  #: ../admin/manage-images.php:377
525
  msgid "Delete"
526
  msgstr ""
@@ -613,7 +613,7 @@ msgstr ""
613
 
614
  #: ../admin/functions.php:48
615
  #: ../admin/functions.php:58
616
- #: ../admin/functions.php:511
617
  msgid "Unable to create directory "
618
  msgstr ""
619
 
@@ -663,7 +663,7 @@ msgid "successfully created!"
663
  msgstr ""
664
 
665
  #: ../admin/functions.php:161
666
- #: ../admin/functions.php:620
667
  #: ../admin/manage-images.php:207
668
  #: ../admin/manage.php:136
669
  msgid "Create new thumbnails"
@@ -692,104 +692,104 @@ msgstr ""
692
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
693
  msgstr ""
694
 
695
- #: ../admin/functions.php:496
696
- msgid "Could not get a vaild foldername"
697
  msgstr ""
698
 
699
- #: ../admin/functions.php:506
700
  #, php-format
701
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
702
  msgstr ""
703
 
704
- #: ../admin/functions.php:521
705
  msgid "Zip-File successfully unpacked"
706
  msgstr ""
707
 
708
- #: ../admin/functions.php:556
709
- #: ../admin/functions.php:665
710
  msgid "Failure in database, no gallery path set !"
711
  msgstr ""
712
 
713
- #: ../admin/functions.php:577
714
- #: ../admin/functions.php:659
715
  msgid "is no valid image file!"
716
  msgstr ""
717
 
718
- #: ../admin/functions.php:591
719
- #: ../admin/functions.php:767
720
- #: ../admin/functions.php:835
721
  #, php-format
722
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
723
  msgstr ""
724
 
725
- #: ../admin/functions.php:598
726
- #: ../admin/functions.php:682
727
  msgid "Error, the file could not moved to : "
728
  msgstr ""
729
 
730
- #: ../admin/functions.php:603
731
- #: ../admin/functions.php:686
732
  msgid "Error, the file permissions could not set"
733
  msgstr ""
734
 
735
- #: ../admin/functions.php:624
736
  msgid " Image(s) successfully added"
737
  msgstr ""
738
 
739
- #: ../admin/functions.php:647
740
  msgid "Invalid upload. Error Code : "
741
  msgstr ""
742
 
743
- #: ../admin/functions.php:696
744
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
745
  msgstr ""
746
 
747
- #: ../admin/functions.php:723
748
  #, php-format
749
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
750
  msgstr ""
751
 
752
- #: ../admin/functions.php:724
753
  #, php-format
754
  msgid "When safe_mode is on, PHP checks to see if the owner (%s) of the current script matches the owner (%s) of the file to be operated on by a file function or its directory"
755
  msgstr ""
756
 
757
- #: ../admin/functions.php:761
758
- #: ../admin/functions.php:829
759
  msgid "The destination gallery does not exist"
760
  msgstr ""
761
 
762
- #: ../admin/functions.php:792
763
  #, php-format
764
  msgid "Failed to move image %1$s to %2$s"
765
  msgstr ""
766
 
767
- #: ../admin/functions.php:810
768
  #, php-format
769
  msgid "Moved %1$s picture(s) to gallery : %2$s ."
770
  msgstr ""
771
 
772
- #: ../admin/functions.php:862
773
  #, php-format
774
  msgid "Failed to copy image %1$s to %2$s"
775
  msgstr ""
776
 
777
- #: ../admin/functions.php:874
778
  #, php-format
779
  msgid "Failed to copy database row for picture %s"
780
  msgstr ""
781
 
782
- #: ../admin/functions.php:882
783
  #, php-format
784
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) &raquo; The file already existed in the destination gallery."
785
  msgstr ""
786
 
787
- #: ../admin/functions.php:885
788
  #, php-format
789
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
790
  msgstr ""
791
 
792
- #: ../admin/functions.php:894
793
  #, php-format
794
  msgid "Copied %1$s picture(s) to gallery: %2$s ."
795
  msgstr ""
@@ -802,11 +802,11 @@ msgstr ""
802
  msgid "NextGEN Gallery : Tables could not created, please check your database settings"
803
  msgstr ""
804
 
805
- #: ../admin/install.php:156
806
  msgid "[Show as slideshow]"
807
  msgstr ""
808
 
809
- #: ../admin/install.php:157
810
  msgid "[Show picture list]"
811
  msgstr ""
812
 
@@ -838,15 +838,15 @@ msgstr ""
838
  msgid "Action"
839
  msgstr ""
840
 
841
- #: ../admin/manage-galleries.php:41
842
  msgid "Edit"
843
  msgstr ""
844
 
845
- #: ../admin/manage-galleries.php:54
846
  msgid "Delete this gallery ?"
847
  msgstr ""
848
 
849
- #: ../admin/manage-galleries.php:61
850
  #: ../admin/manage-images.php:392
851
  msgid "No entries found"
852
  msgstr ""
@@ -1158,7 +1158,7 @@ msgid "Alignment"
1158
  msgstr ""
1159
 
1160
  #: ../admin/media-upload.php:198
1161
- #: ../admin/settings.php:320
1162
  msgid "None"
1163
  msgstr ""
1164
 
@@ -1178,7 +1178,7 @@ msgid "Right"
1178
  msgstr ""
1179
 
1180
  #: ../admin/media-upload.php:208
1181
- #: ../admin/settings.php:423
1182
  msgid "Size"
1183
  msgstr ""
1184
 
@@ -1436,7 +1436,7 @@ msgid "General Options"
1436
  msgstr ""
1437
 
1438
  #: ../admin/settings.php:102
1439
- #: ../admin/settings.php:272
1440
  msgid "Thumbnails"
1441
  msgstr ""
1442
 
@@ -1445,19 +1445,19 @@ msgid "Images"
1445
  msgstr ""
1446
 
1447
  #: ../admin/settings.php:105
1448
- #: ../admin/settings.php:309
1449
  msgid "Effects"
1450
  msgstr ""
1451
 
1452
  #: ../admin/settings.php:106
1453
- #: ../admin/settings.php:347
1454
  #: ../admin/tinymce/window.php:118
1455
  msgid "Watermark"
1456
  msgstr ""
1457
 
1458
  #: ../admin/settings.php:107
1459
- #: ../admin/settings.php:273
1460
- #: ../admin/settings.php:451
1461
  #: ../admin/tinymce/window.php:57
1462
  msgid "Slideshow"
1463
  msgstr ""
@@ -1500,411 +1500,419 @@ msgid "ImageMagick (Experimental). Path to the library :"
1500
  msgstr ""
1501
 
1502
  #: ../admin/settings.php:141
1503
- msgid "Activate PicLens/CoolIris support"
1504
  msgstr ""
1505
 
1506
  #: ../admin/settings.php:143
1507
- msgid "When you activate this option, some javascript is added to your site footer. Make sure that wp_footer is called in your theme."
1508
  msgstr ""
1509
 
1510
  #: ../admin/settings.php:146
 
 
 
 
 
 
 
 
1511
  msgid "Tags / Categories"
1512
  msgstr ""
1513
 
1514
- #: ../admin/settings.php:149
1515
  msgid "Activate related images"
1516
  msgstr ""
1517
 
1518
- #: ../admin/settings.php:151
1519
  msgid "This option will append related images to every post"
1520
  msgstr ""
1521
 
1522
- #: ../admin/settings.php:155
1523
  msgid "Match with"
1524
  msgstr ""
1525
 
1526
- #: ../admin/settings.php:156
1527
  msgid "Categories"
1528
  msgstr ""
1529
 
1530
- #: ../admin/settings.php:161
1531
  msgid "Max. number of images"
1532
  msgstr ""
1533
 
1534
- #: ../admin/settings.php:163
1535
  msgid "0 will show all images"
1536
  msgstr ""
1537
 
1538
- #: ../admin/settings.php:174
1539
  msgid "Thumbnail settings"
1540
  msgstr ""
1541
 
1542
- #: ../admin/settings.php:178
1543
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1544
  msgstr ""
1545
 
1546
- #: ../admin/settings.php:181
1547
  msgid "Width x height (in pixel)"
1548
  msgstr ""
1549
 
1550
- #: ../admin/settings.php:183
1551
  msgid "These values are maximum values "
1552
  msgstr ""
1553
 
1554
- #: ../admin/settings.php:186
1555
  msgid "Set fix dimension"
1556
  msgstr ""
1557
 
1558
- #: ../admin/settings.php:188
1559
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1560
  msgstr ""
1561
 
1562
- #: ../admin/settings.php:191
1563
  msgid "Crop square thumbnail from image"
1564
  msgstr ""
1565
 
1566
- #: ../admin/settings.php:193
1567
  msgid "Create square thumbnails, use only the width setting :"
1568
  msgstr ""
1569
 
1570
- #: ../admin/settings.php:196
1571
  msgid "Thumbnail quality"
1572
  msgstr ""
1573
 
1574
- #: ../admin/settings.php:207
1575
  msgid "Image settings"
1576
  msgstr ""
1577
 
1578
- #: ../admin/settings.php:213
1579
  msgid "Resize Images"
1580
  msgstr ""
1581
 
1582
- #: ../admin/settings.php:217
1583
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1584
  msgstr ""
1585
 
1586
- #: ../admin/settings.php:220
1587
  msgid "Image quality"
1588
  msgstr ""
1589
 
1590
- #: ../admin/settings.php:225
1591
  msgid "Single picture"
1592
  msgstr ""
1593
 
1594
- #: ../admin/settings.php:228
1595
  msgid "Cache single pictures"
1596
  msgstr ""
1597
 
1598
- #: ../admin/settings.php:231
1599
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1600
  msgstr ""
1601
 
1602
- #: ../admin/settings.php:234
1603
  msgid "Clear cache folder"
1604
  msgstr ""
1605
 
1606
- #: ../admin/settings.php:236
1607
  msgid "Proceed now"
1608
  msgstr ""
1609
 
1610
- #: ../admin/settings.php:252
1611
  msgid "Deactivate gallery page link"
1612
  msgstr ""
1613
 
1614
- #: ../admin/settings.php:254
1615
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1616
  msgstr ""
1617
 
1618
- #: ../admin/settings.php:258
1619
  msgid "Number of images per page"
1620
  msgstr ""
1621
 
1622
- #: ../admin/settings.php:260
1623
  msgid "0 will disable pagination, all images on one page"
1624
  msgstr ""
1625
 
1626
- #: ../admin/settings.php:264
1627
  msgid "Integrate slideshow"
1628
  msgstr ""
1629
 
1630
- #: ../admin/settings.php:271
1631
  msgid "Show first"
1632
  msgstr ""
1633
 
1634
- #: ../admin/settings.php:277
1635
  msgid "Show ImageBrowser"
1636
  msgstr ""
1637
 
1638
- #: ../admin/settings.php:279
1639
  msgid "The gallery will open the ImageBrowser instead the effect."
1640
  msgstr ""
1641
 
1642
- #: ../admin/settings.php:283
1643
  msgid "Sort options"
1644
  msgstr ""
1645
 
1646
- #: ../admin/settings.php:286
1647
  msgid "Sort thumbnails"
1648
  msgstr ""
1649
 
1650
- #: ../admin/settings.php:288
1651
  msgid "Custom order"
1652
  msgstr ""
1653
 
1654
- #: ../admin/settings.php:291
1655
  msgid "Alt / Title text"
1656
  msgstr ""
1657
 
1658
- #: ../admin/settings.php:292
1659
  msgid "Date / Time"
1660
  msgstr ""
1661
 
1662
- #: ../admin/settings.php:296
1663
  msgid "Sort direction"
1664
  msgstr ""
1665
 
1666
- #: ../admin/settings.php:313
1667
  msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
1668
  msgstr ""
1669
 
1670
- #: ../admin/settings.php:314
1671
  msgid "With the placeholder"
1672
  msgstr ""
1673
 
1674
- #: ../admin/settings.php:314
1675
  msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
1676
  msgstr ""
1677
 
1678
- #: ../admin/settings.php:317
1679
  msgid "JavaScript Thumbnail effect"
1680
  msgstr ""
1681
 
1682
- #: ../admin/settings.php:321
1683
  msgid "Thickbox"
1684
  msgstr ""
1685
 
1686
- #: ../admin/settings.php:322
1687
  msgid "Lightbox"
1688
  msgstr ""
1689
 
1690
- #: ../admin/settings.php:323
1691
  msgid "Highslide"
1692
  msgstr ""
1693
 
1694
- #: ../admin/settings.php:324
1695
  msgid "Shutter"
1696
  msgstr ""
1697
 
1698
- #: ../admin/settings.php:325
1699
  msgid "Custom"
1700
  msgstr ""
1701
 
1702
- #: ../admin/settings.php:330
1703
  msgid "Link Code line"
1704
  msgstr ""
1705
 
1706
- #: ../admin/settings.php:348
1707
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1708
  msgstr ""
1709
 
1710
- #: ../admin/settings.php:353
1711
  msgid "Preview"
1712
  msgstr ""
1713
 
1714
- #: ../admin/settings.php:355
1715
  #: ../admin/settings.php:360
 
1716
  msgid "Position"
1717
  msgstr ""
1718
 
1719
- #: ../admin/settings.php:380
1720
  msgid "Offset"
1721
  msgstr ""
1722
 
1723
- #: ../admin/settings.php:396
1724
  msgid "Use image as watermark"
1725
  msgstr ""
1726
 
1727
- #: ../admin/settings.php:399
1728
  msgid "URL to file"
1729
  msgstr ""
1730
 
1731
- #: ../admin/settings.php:401
1732
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
1733
  msgstr ""
1734
 
1735
- #: ../admin/settings.php:404
1736
  msgid "Use text as watermark"
1737
  msgstr ""
1738
 
1739
- #: ../admin/settings.php:407
1740
  msgid "Font"
1741
  msgstr ""
1742
 
1743
- #: ../admin/settings.php:416
1744
  msgid "This function will not work, cause you need the FreeType library"
1745
  msgstr ""
1746
 
1747
- #: ../admin/settings.php:418
1748
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
1749
  msgstr ""
1750
 
1751
- #: ../admin/settings.php:427
1752
  msgid "Color"
1753
  msgstr ""
1754
 
1755
- #: ../admin/settings.php:429
1756
  msgid "(hex w/o #)"
1757
  msgstr ""
1758
 
1759
- #: ../admin/settings.php:432
1760
  msgid "Text"
1761
  msgstr ""
1762
 
1763
- #: ../admin/settings.php:436
1764
  msgid "Opaque"
1765
  msgstr ""
1766
 
1767
- #: ../admin/settings.php:452
1768
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
1769
  msgstr ""
1770
 
1771
- #: ../admin/settings.php:453
1772
  msgid "The settings are used in the JW Image Rotator Version"
1773
  msgstr ""
1774
 
1775
- #: ../admin/settings.php:454
1776
  msgid "See more information for the Flash Player on the web page"
1777
  msgstr ""
1778
 
1779
- #: ../admin/settings.php:458
1780
  msgid "Default size (W x H)"
1781
  msgstr ""
1782
 
1783
- #: ../admin/settings.php:463
1784
  msgid "Shuffle mode"
1785
  msgstr ""
1786
 
1787
- #: ../admin/settings.php:467
1788
  msgid "Show next image on click"
1789
  msgstr ""
1790
 
1791
- #: ../admin/settings.php:471
1792
  msgid "Show navigation bar"
1793
  msgstr ""
1794
 
1795
- #: ../admin/settings.php:475
1796
  msgid "Show loading icon"
1797
  msgstr ""
1798
 
1799
- #: ../admin/settings.php:479
1800
  msgid "Use watermark logo"
1801
  msgstr ""
1802
 
1803
- #: ../admin/settings.php:481
1804
  msgid "You can change the logo at the watermark settings"
1805
  msgstr ""
1806
 
1807
- #: ../admin/settings.php:484
1808
  msgid "Stretch image"
1809
  msgstr ""
1810
 
1811
- #: ../admin/settings.php:487
1812
  msgid "true"
1813
  msgstr ""
1814
 
1815
- #: ../admin/settings.php:488
1816
  msgid "false"
1817
  msgstr ""
1818
 
1819
- #: ../admin/settings.php:489
1820
  msgid "fit"
1821
  msgstr ""
1822
 
1823
- #: ../admin/settings.php:490
1824
  msgid "none"
1825
  msgstr ""
1826
 
1827
- #: ../admin/settings.php:495
1828
  msgid "Duration time"
1829
  msgstr ""
1830
 
1831
- #: ../admin/settings.php:496
1832
  msgid "sec."
1833
  msgstr ""
1834
 
1835
- #: ../admin/settings.php:499
1836
  msgid "Transition / Fade effect"
1837
  msgstr ""
1838
 
1839
- #: ../admin/settings.php:502
1840
  msgid "fade"
1841
  msgstr ""
1842
 
1843
- #: ../admin/settings.php:503
1844
  msgid "bgfade"
1845
  msgstr ""
1846
 
1847
- #: ../admin/settings.php:504
1848
  msgid "slowfade"
1849
  msgstr ""
1850
 
1851
- #: ../admin/settings.php:505
1852
  msgid "circles"
1853
  msgstr ""
1854
 
1855
- #: ../admin/settings.php:506
1856
  msgid "bubbles"
1857
  msgstr ""
1858
 
1859
- #: ../admin/settings.php:507
1860
  msgid "blocks"
1861
  msgstr ""
1862
 
1863
- #: ../admin/settings.php:508
1864
  msgid "fluids"
1865
  msgstr ""
1866
 
1867
- #: ../admin/settings.php:509
1868
  msgid "flash"
1869
  msgstr ""
1870
 
1871
- #: ../admin/settings.php:510
1872
  msgid "lines"
1873
  msgstr ""
1874
 
1875
- #: ../admin/settings.php:511
1876
  msgid "random"
1877
  msgstr ""
1878
 
1879
- #: ../admin/settings.php:515
1880
  msgid "Use slow zooming effect"
1881
  msgstr ""
1882
 
1883
- #: ../admin/settings.php:519
1884
  msgid "Background Color"
1885
  msgstr ""
1886
 
1887
- #: ../admin/settings.php:524
1888
  msgid "Texts / Buttons Color"
1889
  msgstr ""
1890
 
1891
- #: ../admin/settings.php:529
1892
  msgid "Rollover / Active Color"
1893
  msgstr ""
1894
 
1895
- #: ../admin/settings.php:534
1896
  msgid "Screen Color"
1897
  msgstr ""
1898
 
1899
- #: ../admin/settings.php:539
1900
  msgid "Background music (URL)"
1901
  msgstr ""
1902
 
1903
- #: ../admin/settings.php:543
1904
  msgid "Try XHTML validation (with CDATA)"
1905
  msgstr ""
1906
 
1907
- #: ../admin/settings.php:545
1908
  msgid "Important : Could causes problem at some browser. Please recheck your page."
1909
  msgstr ""
1910
 
@@ -2473,7 +2481,7 @@ msgstr ""
2473
  msgid "Album overview"
2474
  msgstr ""
2475
 
2476
- #: ../lib/shortcodes.php:268
2477
  msgid "[Pictures not found]"
2478
  msgstr ""
2479
 
@@ -2602,7 +2610,7 @@ msgid "Link to the main image feed"
2602
  msgstr ""
2603
 
2604
  #: ../widgets/media-rss-widget.php:153
2605
- #: ../widgets/widgets.php:134
2606
  msgid "Title:"
2607
  msgstr ""
2608
 
@@ -2635,71 +2643,71 @@ msgstr ""
2635
  msgid "<a href=\"http://www.macromedia.com/go/getflashplayer\">Get the Flash Player</a> to see the slideshow."
2636
  msgstr ""
2637
 
2638
- #: ../widgets/widgets.php:136
2639
  msgid "Select Gallery:"
2640
  msgstr ""
2641
 
2642
- #: ../widgets/widgets.php:138
2643
  msgid "All images"
2644
  msgstr ""
2645
 
2646
- #: ../widgets/widgets.php:151
2647
  msgid "Height:"
2648
  msgstr ""
2649
 
2650
- #: ../widgets/widgets.php:152
2651
  msgid "Width:"
2652
  msgstr ""
2653
 
2654
- #: ../widgets/widgets.php:185
2655
  msgid "Add recent or random images from the galleries"
2656
  msgstr ""
2657
 
2658
- #: ../widgets/widgets.php:187
2659
  msgid "NextGEN Widget"
2660
  msgstr ""
2661
 
2662
- #: ../widgets/widgets.php:285
2663
  msgid "Title :"
2664
  msgstr ""
2665
 
2666
- #: ../widgets/widgets.php:291
2667
  msgid "Show :"
2668
  msgstr ""
2669
 
2670
- #: ../widgets/widgets.php:297
2671
  msgid "Orginal images"
2672
  msgstr ""
2673
 
2674
- #: ../widgets/widgets.php:305
2675
  msgid "recent added "
2676
  msgstr ""
2677
 
2678
- #: ../widgets/widgets.php:310
2679
  msgid "Width x Height :"
2680
  msgstr ""
2681
 
2682
- #: ../widgets/widgets.php:317
2683
  msgid "Select :"
2684
  msgstr ""
2685
 
2686
- #: ../widgets/widgets.php:319
2687
  msgid "All galleries"
2688
  msgstr ""
2689
 
2690
- #: ../widgets/widgets.php:320
2691
  msgid "Only which are not listed"
2692
  msgstr ""
2693
 
2694
- #: ../widgets/widgets.php:321
2695
  msgid "Only which are listed"
2696
  msgstr ""
2697
 
2698
- #: ../widgets/widgets.php:327
2699
  msgid "Gallery ID :"
2700
  msgstr ""
2701
 
2702
- #: ../widgets/widgets.php:329
2703
  msgid "Gallery IDs, separated by commas."
2704
  msgstr ""
2705
 
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-12-15 12:50+0100\n"
6
+ "PO-Revision-Date: 2008-12-15 12:50+0100\n"
7
  "Last-Translator: Alex Rabe <no@email.com>\n"
8
  "Language-Team: Alex Rabe\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
  "X-Poedit-SearchPath-1: ..\n"
19
 
20
+ #: ../nggallery.php:153
21
  msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB higher"
22
  msgstr ""
23
 
24
+ #: ../nggallery.php:180
25
  msgid "Picture tag"
26
  msgstr ""
27
 
28
+ #: ../nggallery.php:181
29
  msgid "Picture tag: %2$l."
30
  msgstr ""
31
 
32
+ #: ../nggallery.php:182
33
  msgid "Separate picture tags with commas."
34
  msgstr ""
35
 
36
+ #: ../nggallery.php:276
37
  msgid "L O A D I N G"
38
  msgstr ""
39
 
40
+ #: ../nggallery.php:277
41
  msgid "Click to Close"
42
  msgstr ""
43
 
45
  msgid "The <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player</a> and <a href=\"http://www.mozilla.com/firefox/\">a browser with Javascript support</a> are needed.."
46
  msgstr ""
47
 
48
+ #: ../nggfunctions.php:96
49
+ #: ../nggfunctions.php:393
50
  msgid "[Gallery not found]"
51
  msgstr ""
52
 
53
+ #: ../nggfunctions.php:278
54
  msgid "[Album not found]"
55
  msgstr ""
56
 
57
+ #: ../nggfunctions.php:495
58
  msgid "[SinglePic not found]"
59
  msgstr ""
60
 
61
+ #: ../nggfunctions.php:614
62
  msgid "Related images for"
63
  msgstr ""
64
 
65
+ #: ../nggfunctions.php:649
66
  #: ../admin/admin.php:30
67
  msgid "Overview"
68
  msgstr ""
189
  msgstr ""
190
 
191
  #: ../admin/addgallery.php:55
192
+ #: ../admin/functions.php:550
193
+ #: ../admin/functions.php:640
194
  msgid "No gallery selected !"
195
  msgstr ""
196
 
520
  msgstr ""
521
 
522
  #: ../admin/album.php:147
523
+ #: ../admin/manage-galleries.php:55
524
  #: ../admin/manage-images.php:377
525
  msgid "Delete"
526
  msgstr ""
613
 
614
  #: ../admin/functions.php:48
615
  #: ../admin/functions.php:58
616
+ #: ../admin/functions.php:513
617
  msgid "Unable to create directory "
618
  msgstr ""
619
 
663
  msgstr ""
664
 
665
  #: ../admin/functions.php:161
666
+ #: ../admin/functions.php:622
667
  #: ../admin/manage-images.php:207
668
  #: ../admin/manage.php:136
669
  msgid "Create new thumbnails"
692
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
693
  msgstr ""
694
 
695
+ #: ../admin/functions.php:497
696
+ msgid "Could not get a valid foldername"
697
  msgstr ""
698
 
699
+ #: ../admin/functions.php:508
700
  #, php-format
701
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
702
  msgstr ""
703
 
704
+ #: ../admin/functions.php:523
705
  msgid "Zip-File successfully unpacked"
706
  msgstr ""
707
 
708
+ #: ../admin/functions.php:558
709
+ #: ../admin/functions.php:667
710
  msgid "Failure in database, no gallery path set !"
711
  msgstr ""
712
 
713
+ #: ../admin/functions.php:579
714
+ #: ../admin/functions.php:661
715
  msgid "is no valid image file!"
716
  msgstr ""
717
 
718
+ #: ../admin/functions.php:593
719
+ #: ../admin/functions.php:769
720
+ #: ../admin/functions.php:837
721
  #, php-format
722
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
723
  msgstr ""
724
 
725
+ #: ../admin/functions.php:600
726
+ #: ../admin/functions.php:684
727
  msgid "Error, the file could not moved to : "
728
  msgstr ""
729
 
730
+ #: ../admin/functions.php:605
731
+ #: ../admin/functions.php:688
732
  msgid "Error, the file permissions could not set"
733
  msgstr ""
734
 
735
+ #: ../admin/functions.php:626
736
  msgid " Image(s) successfully added"
737
  msgstr ""
738
 
739
+ #: ../admin/functions.php:649
740
  msgid "Invalid upload. Error Code : "
741
  msgstr ""
742
 
743
+ #: ../admin/functions.php:698
744
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
745
  msgstr ""
746
 
747
+ #: ../admin/functions.php:725
748
  #, php-format
749
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
750
  msgstr ""
751
 
752
+ #: ../admin/functions.php:726
753
  #, php-format
754
  msgid "When safe_mode is on, PHP checks to see if the owner (%s) of the current script matches the owner (%s) of the file to be operated on by a file function or its directory"
755
  msgstr ""
756
 
757
+ #: ../admin/functions.php:763
758
+ #: ../admin/functions.php:831
759
  msgid "The destination gallery does not exist"
760
  msgstr ""
761
 
762
+ #: ../admin/functions.php:794
763
  #, php-format
764
  msgid "Failed to move image %1$s to %2$s"
765
  msgstr ""
766
 
767
+ #: ../admin/functions.php:812
768
  #, php-format
769
  msgid "Moved %1$s picture(s) to gallery : %2$s ."
770
  msgstr ""
771
 
772
+ #: ../admin/functions.php:864
773
  #, php-format
774
  msgid "Failed to copy image %1$s to %2$s"
775
  msgstr ""
776
 
777
+ #: ../admin/functions.php:876
778
  #, php-format
779
  msgid "Failed to copy database row for picture %s"
780
  msgstr ""
781
 
782
+ #: ../admin/functions.php:884
783
  #, php-format
784
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) &raquo; The file already existed in the destination gallery."
785
  msgstr ""
786
 
787
+ #: ../admin/functions.php:887
788
  #, php-format
789
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
790
  msgstr ""
791
 
792
+ #: ../admin/functions.php:896
793
  #, php-format
794
  msgid "Copied %1$s picture(s) to gallery: %2$s ."
795
  msgstr ""
802
  msgid "NextGEN Gallery : Tables could not created, please check your database settings"
803
  msgstr ""
804
 
805
+ #: ../admin/install.php:158
806
  msgid "[Show as slideshow]"
807
  msgstr ""
808
 
809
+ #: ../admin/install.php:159
810
  msgid "[Show picture list]"
811
  msgstr ""
812
 
838
  msgid "Action"
839
  msgstr ""
840
 
841
+ #: ../admin/manage-galleries.php:42
842
  msgid "Edit"
843
  msgstr ""
844
 
845
+ #: ../admin/manage-galleries.php:55
846
  msgid "Delete this gallery ?"
847
  msgstr ""
848
 
849
+ #: ../admin/manage-galleries.php:62
850
  #: ../admin/manage-images.php:392
851
  msgid "No entries found"
852
  msgstr ""
1158
  msgstr ""
1159
 
1160
  #: ../admin/media-upload.php:198
1161
+ #: ../admin/settings.php:325
1162
  msgid "None"
1163
  msgstr ""
1164
 
1178
  msgstr ""
1179
 
1180
  #: ../admin/media-upload.php:208
1181
+ #: ../admin/settings.php:428
1182
  msgid "Size"
1183
  msgstr ""
1184
 
1436
  msgstr ""
1437
 
1438
  #: ../admin/settings.php:102
1439
+ #: ../admin/settings.php:277
1440
  msgid "Thumbnails"
1441
  msgstr ""
1442
 
1445
  msgstr ""
1446
 
1447
  #: ../admin/settings.php:105
1448
+ #: ../admin/settings.php:314
1449
  msgid "Effects"
1450
  msgstr ""
1451
 
1452
  #: ../admin/settings.php:106
1453
+ #: ../admin/settings.php:352
1454
  #: ../admin/tinymce/window.php:118
1455
  msgid "Watermark"
1456
  msgstr ""
1457
 
1458
  #: ../admin/settings.php:107
1459
+ #: ../admin/settings.php:278
1460
+ #: ../admin/settings.php:456
1461
  #: ../admin/tinymce/window.php:57
1462
  msgid "Slideshow"
1463
  msgstr ""
1500
  msgstr ""
1501
 
1502
  #: ../admin/settings.php:141
1503
+ msgid "Activate Media RSS feed"
1504
  msgstr ""
1505
 
1506
  #: ../admin/settings.php:143
1507
+ msgid "A RSS feed will be added to you blog header. Usefull for CoolIris/PicLens"
1508
  msgstr ""
1509
 
1510
  #: ../admin/settings.php:146
1511
+ msgid "Activate PicLens/CoolIris support"
1512
+ msgstr ""
1513
+
1514
+ #: ../admin/settings.php:148
1515
+ msgid "When you activate this option, some javascript is added to your site footer. Make sure that wp_footer is called in your theme."
1516
+ msgstr ""
1517
+
1518
+ #: ../admin/settings.php:151
1519
  msgid "Tags / Categories"
1520
  msgstr ""
1521
 
1522
+ #: ../admin/settings.php:154
1523
  msgid "Activate related images"
1524
  msgstr ""
1525
 
1526
+ #: ../admin/settings.php:156
1527
  msgid "This option will append related images to every post"
1528
  msgstr ""
1529
 
1530
+ #: ../admin/settings.php:160
1531
  msgid "Match with"
1532
  msgstr ""
1533
 
1534
+ #: ../admin/settings.php:161
1535
  msgid "Categories"
1536
  msgstr ""
1537
 
1538
+ #: ../admin/settings.php:166
1539
  msgid "Max. number of images"
1540
  msgstr ""
1541
 
1542
+ #: ../admin/settings.php:168
1543
  msgid "0 will show all images"
1544
  msgstr ""
1545
 
1546
+ #: ../admin/settings.php:179
1547
  msgid "Thumbnail settings"
1548
  msgstr ""
1549
 
1550
+ #: ../admin/settings.php:183
1551
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1552
  msgstr ""
1553
 
1554
+ #: ../admin/settings.php:186
1555
  msgid "Width x height (in pixel)"
1556
  msgstr ""
1557
 
1558
+ #: ../admin/settings.php:188
1559
  msgid "These values are maximum values "
1560
  msgstr ""
1561
 
1562
+ #: ../admin/settings.php:191
1563
  msgid "Set fix dimension"
1564
  msgstr ""
1565
 
1566
+ #: ../admin/settings.php:193
1567
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1568
  msgstr ""
1569
 
1570
+ #: ../admin/settings.php:196
1571
  msgid "Crop square thumbnail from image"
1572
  msgstr ""
1573
 
1574
+ #: ../admin/settings.php:198
1575
  msgid "Create square thumbnails, use only the width setting :"
1576
  msgstr ""
1577
 
1578
+ #: ../admin/settings.php:201
1579
  msgid "Thumbnail quality"
1580
  msgstr ""
1581
 
1582
+ #: ../admin/settings.php:212
1583
  msgid "Image settings"
1584
  msgstr ""
1585
 
1586
+ #: ../admin/settings.php:218
1587
  msgid "Resize Images"
1588
  msgstr ""
1589
 
1590
+ #: ../admin/settings.php:222
1591
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1592
  msgstr ""
1593
 
1594
+ #: ../admin/settings.php:225
1595
  msgid "Image quality"
1596
  msgstr ""
1597
 
1598
+ #: ../admin/settings.php:230
1599
  msgid "Single picture"
1600
  msgstr ""
1601
 
1602
+ #: ../admin/settings.php:233
1603
  msgid "Cache single pictures"
1604
  msgstr ""
1605
 
1606
+ #: ../admin/settings.php:236
1607
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1608
  msgstr ""
1609
 
1610
+ #: ../admin/settings.php:239
1611
  msgid "Clear cache folder"
1612
  msgstr ""
1613
 
1614
+ #: ../admin/settings.php:241
1615
  msgid "Proceed now"
1616
  msgstr ""
1617
 
1618
+ #: ../admin/settings.php:257
1619
  msgid "Deactivate gallery page link"
1620
  msgstr ""
1621
 
1622
+ #: ../admin/settings.php:259
1623
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1624
  msgstr ""
1625
 
1626
+ #: ../admin/settings.php:263
1627
  msgid "Number of images per page"
1628
  msgstr ""
1629
 
1630
+ #: ../admin/settings.php:265
1631
  msgid "0 will disable pagination, all images on one page"
1632
  msgstr ""
1633
 
1634
+ #: ../admin/settings.php:269
1635
  msgid "Integrate slideshow"
1636
  msgstr ""
1637
 
1638
+ #: ../admin/settings.php:276
1639
  msgid "Show first"
1640
  msgstr ""
1641
 
1642
+ #: ../admin/settings.php:282
1643
  msgid "Show ImageBrowser"
1644
  msgstr ""
1645
 
1646
+ #: ../admin/settings.php:284
1647
  msgid "The gallery will open the ImageBrowser instead the effect."
1648
  msgstr ""
1649
 
1650
+ #: ../admin/settings.php:288
1651
  msgid "Sort options"
1652
  msgstr ""
1653
 
1654
+ #: ../admin/settings.php:291
1655
  msgid "Sort thumbnails"
1656
  msgstr ""
1657
 
1658
+ #: ../admin/settings.php:293
1659
  msgid "Custom order"
1660
  msgstr ""
1661
 
1662
+ #: ../admin/settings.php:296
1663
  msgid "Alt / Title text"
1664
  msgstr ""
1665
 
1666
+ #: ../admin/settings.php:297
1667
  msgid "Date / Time"
1668
  msgstr ""
1669
 
1670
+ #: ../admin/settings.php:301
1671
  msgid "Sort direction"
1672
  msgstr ""
1673
 
1674
+ #: ../admin/settings.php:318
1675
  msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
1676
  msgstr ""
1677
 
1678
+ #: ../admin/settings.php:319
1679
  msgid "With the placeholder"
1680
  msgstr ""
1681
 
1682
+ #: ../admin/settings.php:319
1683
  msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
1684
  msgstr ""
1685
 
1686
+ #: ../admin/settings.php:322
1687
  msgid "JavaScript Thumbnail effect"
1688
  msgstr ""
1689
 
1690
+ #: ../admin/settings.php:326
1691
  msgid "Thickbox"
1692
  msgstr ""
1693
 
1694
+ #: ../admin/settings.php:327
1695
  msgid "Lightbox"
1696
  msgstr ""
1697
 
1698
+ #: ../admin/settings.php:328
1699
  msgid "Highslide"
1700
  msgstr ""
1701
 
1702
+ #: ../admin/settings.php:329
1703
  msgid "Shutter"
1704
  msgstr ""
1705
 
1706
+ #: ../admin/settings.php:330
1707
  msgid "Custom"
1708
  msgstr ""
1709
 
1710
+ #: ../admin/settings.php:335
1711
  msgid "Link Code line"
1712
  msgstr ""
1713
 
1714
+ #: ../admin/settings.php:353
1715
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1716
  msgstr ""
1717
 
1718
+ #: ../admin/settings.php:358
1719
  msgid "Preview"
1720
  msgstr ""
1721
 
 
1722
  #: ../admin/settings.php:360
1723
+ #: ../admin/settings.php:365
1724
  msgid "Position"
1725
  msgstr ""
1726
 
1727
+ #: ../admin/settings.php:385
1728
  msgid "Offset"
1729
  msgstr ""
1730
 
1731
+ #: ../admin/settings.php:401
1732
  msgid "Use image as watermark"
1733
  msgstr ""
1734
 
1735
+ #: ../admin/settings.php:404
1736
  msgid "URL to file"
1737
  msgstr ""
1738
 
1739
+ #: ../admin/settings.php:406
1740
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
1741
  msgstr ""
1742
 
1743
+ #: ../admin/settings.php:409
1744
  msgid "Use text as watermark"
1745
  msgstr ""
1746
 
1747
+ #: ../admin/settings.php:412
1748
  msgid "Font"
1749
  msgstr ""
1750
 
1751
+ #: ../admin/settings.php:421
1752
  msgid "This function will not work, cause you need the FreeType library"
1753
  msgstr ""
1754
 
1755
+ #: ../admin/settings.php:423
1756
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
1757
  msgstr ""
1758
 
1759
+ #: ../admin/settings.php:432
1760
  msgid "Color"
1761
  msgstr ""
1762
 
1763
+ #: ../admin/settings.php:434
1764
  msgid "(hex w/o #)"
1765
  msgstr ""
1766
 
1767
+ #: ../admin/settings.php:437
1768
  msgid "Text"
1769
  msgstr ""
1770
 
1771
+ #: ../admin/settings.php:441
1772
  msgid "Opaque"
1773
  msgstr ""
1774
 
1775
+ #: ../admin/settings.php:457
1776
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
1777
  msgstr ""
1778
 
1779
+ #: ../admin/settings.php:458
1780
  msgid "The settings are used in the JW Image Rotator Version"
1781
  msgstr ""
1782
 
1783
+ #: ../admin/settings.php:459
1784
  msgid "See more information for the Flash Player on the web page"
1785
  msgstr ""
1786
 
1787
+ #: ../admin/settings.php:463
1788
  msgid "Default size (W x H)"
1789
  msgstr ""
1790
 
1791
+ #: ../admin/settings.php:468
1792
  msgid "Shuffle mode"
1793
  msgstr ""
1794
 
1795
+ #: ../admin/settings.php:472
1796
  msgid "Show next image on click"
1797
  msgstr ""
1798
 
1799
+ #: ../admin/settings.php:476
1800
  msgid "Show navigation bar"
1801
  msgstr ""
1802
 
1803
+ #: ../admin/settings.php:480
1804
  msgid "Show loading icon"
1805
  msgstr ""
1806
 
1807
+ #: ../admin/settings.php:484
1808
  msgid "Use watermark logo"
1809
  msgstr ""
1810
 
1811
+ #: ../admin/settings.php:486
1812
  msgid "You can change the logo at the watermark settings"
1813
  msgstr ""
1814
 
1815
+ #: ../admin/settings.php:489
1816
  msgid "Stretch image"
1817
  msgstr ""
1818
 
1819
+ #: ../admin/settings.php:492
1820
  msgid "true"
1821
  msgstr ""
1822
 
1823
+ #: ../admin/settings.php:493
1824
  msgid "false"
1825
  msgstr ""
1826
 
1827
+ #: ../admin/settings.php:494
1828
  msgid "fit"
1829
  msgstr ""
1830
 
1831
+ #: ../admin/settings.php:495
1832
  msgid "none"
1833
  msgstr ""
1834
 
1835
+ #: ../admin/settings.php:500
1836
  msgid "Duration time"
1837
  msgstr ""
1838
 
1839
+ #: ../admin/settings.php:501
1840
  msgid "sec."
1841
  msgstr ""
1842
 
1843
+ #: ../admin/settings.php:504
1844
  msgid "Transition / Fade effect"
1845
  msgstr ""
1846
 
1847
+ #: ../admin/settings.php:507
1848
  msgid "fade"
1849
  msgstr ""
1850
 
1851
+ #: ../admin/settings.php:508
1852
  msgid "bgfade"
1853
  msgstr ""
1854
 
1855
+ #: ../admin/settings.php:509
1856
  msgid "slowfade"
1857
  msgstr ""
1858
 
1859
+ #: ../admin/settings.php:510
1860
  msgid "circles"
1861
  msgstr ""
1862
 
1863
+ #: ../admin/settings.php:511
1864
  msgid "bubbles"
1865
  msgstr ""
1866
 
1867
+ #: ../admin/settings.php:512
1868
  msgid "blocks"
1869
  msgstr ""
1870
 
1871
+ #: ../admin/settings.php:513
1872
  msgid "fluids"
1873
  msgstr ""
1874
 
1875
+ #: ../admin/settings.php:514
1876
  msgid "flash"
1877
  msgstr ""
1878
 
1879
+ #: ../admin/settings.php:515
1880
  msgid "lines"
1881
  msgstr ""
1882
 
1883
+ #: ../admin/settings.php:516
1884
  msgid "random"
1885
  msgstr ""
1886
 
1887
+ #: ../admin/settings.php:520
1888
  msgid "Use slow zooming effect"
1889
  msgstr ""
1890
 
1891
+ #: ../admin/settings.php:524
1892
  msgid "Background Color"
1893
  msgstr ""
1894
 
1895
+ #: ../admin/settings.php:529
1896
  msgid "Texts / Buttons Color"
1897
  msgstr ""
1898
 
1899
+ #: ../admin/settings.php:534
1900
  msgid "Rollover / Active Color"
1901
  msgstr ""
1902
 
1903
+ #: ../admin/settings.php:539
1904
  msgid "Screen Color"
1905
  msgstr ""
1906
 
1907
+ #: ../admin/settings.php:544
1908
  msgid "Background music (URL)"
1909
  msgstr ""
1910
 
1911
+ #: ../admin/settings.php:548
1912
  msgid "Try XHTML validation (with CDATA)"
1913
  msgstr ""
1914
 
1915
+ #: ../admin/settings.php:550
1916
  msgid "Important : Could causes problem at some browser. Please recheck your page."
1917
  msgstr ""
1918
 
2481
  msgid "Album overview"
2482
  msgstr ""
2483
 
2484
+ #: ../lib/shortcodes.php:272
2485
  msgid "[Pictures not found]"
2486
  msgstr ""
2487
 
2610
  msgstr ""
2611
 
2612
  #: ../widgets/media-rss-widget.php:153
2613
+ #: ../widgets/widgets.php:135
2614
  msgid "Title:"
2615
  msgstr ""
2616
 
2643
  msgid "<a href=\"http://www.macromedia.com/go/getflashplayer\">Get the Flash Player</a> to see the slideshow."
2644
  msgstr ""
2645
 
2646
+ #: ../widgets/widgets.php:137
2647
  msgid "Select Gallery:"
2648
  msgstr ""
2649
 
2650
+ #: ../widgets/widgets.php:139
2651
  msgid "All images"
2652
  msgstr ""
2653
 
2654
+ #: ../widgets/widgets.php:152
2655
  msgid "Height:"
2656
  msgstr ""
2657
 
2658
+ #: ../widgets/widgets.php:153
2659
  msgid "Width:"
2660
  msgstr ""
2661
 
2662
+ #: ../widgets/widgets.php:186
2663
  msgid "Add recent or random images from the galleries"
2664
  msgstr ""
2665
 
2666
+ #: ../widgets/widgets.php:188
2667
  msgid "NextGEN Widget"
2668
  msgstr ""
2669
 
2670
+ #: ../widgets/widgets.php:286
2671
  msgid "Title :"
2672
  msgstr ""
2673
 
2674
+ #: ../widgets/widgets.php:292
2675
  msgid "Show :"
2676
  msgstr ""
2677
 
2678
+ #: ../widgets/widgets.php:298
2679
  msgid "Orginal images"
2680
  msgstr ""
2681
 
2682
+ #: ../widgets/widgets.php:306
2683
  msgid "recent added "
2684
  msgstr ""
2685
 
2686
+ #: ../widgets/widgets.php:311
2687
  msgid "Width x Height :"
2688
  msgstr ""
2689
 
2690
+ #: ../widgets/widgets.php:318
2691
  msgid "Select :"
2692
  msgstr ""
2693
 
2694
+ #: ../widgets/widgets.php:320
2695
  msgid "All galleries"
2696
  msgstr ""
2697
 
2698
+ #: ../widgets/widgets.php:321
2699
  msgid "Only which are not listed"
2700
  msgstr ""
2701
 
2702
+ #: ../widgets/widgets.php:322
2703
  msgid "Only which are listed"
2704
  msgstr ""
2705
 
2706
+ #: ../widgets/widgets.php:328
2707
  msgid "Gallery ID :"
2708
  msgstr ""
2709
 
2710
+ #: ../widgets/widgets.php:330
2711
  msgid "Gallery IDs, separated by commas."
2712
  msgstr ""
2713
 
lib/media-rss.php CHANGED
@@ -34,21 +34,21 @@ class nggMediaRss {
34
  * Get the URL of a gallery media RSS
35
  */
36
  function get_gallery_mrss_url($gid, $prev_next = false) {
37
- return nggMediaRss::get_mrss_url() . '?' . ('gid=' . $gid . ($prev_next ? '&amp;prev_next=true' : '') . '&amp;mode=gallery');
38
  }
39
 
40
  /**
41
  * Get the URL of an album media RSS
42
  */
43
  function get_album_mrss_url($aid) {
44
- return nggMediaRss::get_mrss_url() . '?' . ('aid=' . $aid . '&amp;mode=album');
45
  }
46
 
47
  /**
48
  * Get the URL of the media RSS for last pictures
49
  */
50
  function get_last_pictures_mrss_url($page = 0, $show = 30) {
51
- return nggMediaRss::get_mrss_url() . "?" . ("show=" . $show . "&amp;page=" . $page . "&amp;mode=last_pictures");
52
  }
53
 
54
  /**
@@ -78,12 +78,17 @@ class nggMediaRss {
78
  */
79
  function get_gallery_mrss($gallery, $prev_gallery = null, $next_gallery = null) {
80
 
 
 
 
 
 
81
  $title = stripslashes($gallery->title);
82
  $description = stripslashes($gallery->galdesc);
83
  $link = nggMediaRss::get_permalink($gallery->pageid);
84
  $prev_link = ( $prev_gallery != null) ? nggMediaRss::get_gallery_mrss_url($prev_gallery->gid, true) : '';
85
  $next_link = ( $next_gallery != null) ? nggMediaRss::get_gallery_mrss_url($next_gallery->gid, true) : '';
86
- $images = nggdb::get_gallery($gallery->gid);
87
 
88
  return nggMediaRss::get_mrss_root_node($title, $description, $link, $prev_link, $next_link, $images);
89
  }
34
  * Get the URL of a gallery media RSS
35
  */
36
  function get_gallery_mrss_url($gid, $prev_next = false) {
37
+ return nggMediaRss::get_mrss_url() . '?' . ('gid=' . $gid . ($prev_next ? '&prev_next=true' : '') . '&mode=gallery');
38
  }
39
 
40
  /**
41
  * Get the URL of an album media RSS
42
  */
43
  function get_album_mrss_url($aid) {
44
+ return nggMediaRss::get_mrss_url() . '?' . ('aid=' . $aid . '&mode=album');
45
  }
46
 
47
  /**
48
  * Get the URL of the media RSS for last pictures
49
  */
50
  function get_last_pictures_mrss_url($page = 0, $show = 30) {
51
+ return nggMediaRss::get_mrss_url() . '?' . ('show=' . $show . '&page=' . $page . '&mode=last_pictures');
52
  }
53
 
54
  /**
78
  */
79
  function get_gallery_mrss($gallery, $prev_gallery = null, $next_gallery = null) {
80
 
81
+ $ngg_options = nggGallery::get_option('ngg_options');
82
+ //Set sort order value, if not used (upgrade issue)
83
+ $ngg_options['galSort'] = ($ngg_options['galSort']) ? $ngg_options['galSort'] : 'pid';
84
+ $ngg_options['galSortDir'] = ($ngg_options['galSortDir'] == 'DESC') ? 'DESC' : 'ASC';
85
+
86
  $title = stripslashes($gallery->title);
87
  $description = stripslashes($gallery->galdesc);
88
  $link = nggMediaRss::get_permalink($gallery->pageid);
89
  $prev_link = ( $prev_gallery != null) ? nggMediaRss::get_gallery_mrss_url($prev_gallery->gid, true) : '';
90
  $next_link = ( $next_gallery != null) ? nggMediaRss::get_gallery_mrss_url($next_gallery->gid, true) : '';
91
+ $images = nggdb::get_gallery($gallery->gid, $ngg_options['galSort'], $ngg_options['galSortDir']);
92
 
93
  return nggMediaRss::get_mrss_root_node($title, $description, $link, $prev_link, $next_link, $images);
94
  }
lib/ngg-db.php CHANGED
@@ -189,9 +189,9 @@ class nggdb {
189
  global $wpdb;
190
 
191
  // Query database
192
- if ( is_numeric($id) ) {
193
  $album = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->nggalbum WHERE id = %d", $id) );
194
- } elseif ( $id == 'all' || $id == 0) {
195
  // init the object and fill it
196
  $album = new stdClass();
197
  $album->id = 0;
189
  global $wpdb;
190
 
191
  // Query database
192
+ if ( is_numeric($id) && $id != 0 ) {
193
  $album = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->nggalbum WHERE id = %d", $id) );
194
+ } elseif ( $id == 'all' || $id == 0 ) {
195
  // init the object and fill it
196
  $album = new stdClass();
197
  $album->id = 0;
lib/shortcodes.php CHANGED
@@ -15,6 +15,10 @@ class NextGEN_shortcodes {
15
  // convert the old shortcode
16
  add_filter('the_content', array(&$this, 'convert_shortcode'));
17
 
 
 
 
 
18
  add_shortcode( 'singlepic', array(&$this, 'show_singlepic' ) );
19
  add_shortcode( 'album', array(&$this, 'show_album' ) );
20
  add_shortcode( 'nggallery', array(&$this, 'show_gallery') );
@@ -175,7 +179,7 @@ class NextGEN_shortcodes {
175
  'template' => 'extend'
176
  ), $atts ));
177
 
178
- $out = nggShowAlbum($id, $template, $albumSortOrder);
179
 
180
  return $out;
181
  }
15
  // convert the old shortcode
16
  add_filter('the_content', array(&$this, 'convert_shortcode'));
17
 
18
+ // do_shortcode on the_excerpt could causes several unwanted output. Uncomment it on your own risk
19
+ // add_filter('the_excerpt', array(&$this, 'convert_shortcode'));
20
+ // add_filter('the_excerpt', 'do_shortcode', 11);
21
+
22
  add_shortcode( 'singlepic', array(&$this, 'show_singlepic' ) );
23
  add_shortcode( 'album', array(&$this, 'show_album' ) );
24
  add_shortcode( 'nggallery', array(&$this, 'show_gallery') );
179
  'template' => 'extend'
180
  ), $atts ));
181
 
182
+ $out = nggShowAlbum($id, $template);
183
 
184
  return $out;
185
  }
nggallery.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: NextGEN Gallery
4
  Plugin URI: http://alexrabe.boelinger.com/?page_id=80
5
  Description: A NextGENeration Photo gallery for the WEB2.0(beta).
6
  Author: NextGEN DEV-Team
7
- Version: 1.0.1
8
 
9
  Author URI: http://alexrabe.boelinger.com/
10
 
@@ -44,7 +44,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
44
  if (!class_exists('nggLoader')) {
45
  class nggLoader {
46
 
47
- var $version = '1.0.1';
48
  var $dbversion = '0.9.7';
49
  var $minium_WP = '2.7';
50
  var $minium_WPMU = '2.7';
@@ -98,7 +98,8 @@ class nggLoader {
98
  } else {
99
 
100
  // Add MRSS to wp_head
101
- add_action('wp_head', array('nggMediaRss', 'add_mrss_alternate_link'));
 
102
 
103
  // If activated, add PicLens/Cooliris javascript to footer
104
  if ( $this->options['usePicLens'] )
@@ -261,7 +262,7 @@ class nggLoader {
261
  echo "<meta name='NextGEN' content='" . $this->version . "' />\n";
262
 
263
  // activate Thickbox
264
- if ($this->options['thumbEffect'] == "thickbox") {
265
  wp_enqueue_script( 'thickbox' );
266
  // Load the thickbox images after all other scripts
267
  add_action( 'wp_head', array(&$this, 'load_thickbox_images'), 11 );
@@ -280,7 +281,7 @@ class nggLoader {
280
  }
281
 
282
  // required for the slideshow
283
- if ( $this->options['galShowSlide'] )
284
  wp_enqueue_script('swfobject', NGGALLERY_URLPATH .'admin/js/swfobject.js', FALSE, '2.1');
285
 
286
  }
4
  Plugin URI: http://alexrabe.boelinger.com/?page_id=80
5
  Description: A NextGENeration Photo gallery for the WEB2.0(beta).
6
  Author: NextGEN DEV-Team
7
+ Version: 1.0.2
8
 
9
  Author URI: http://alexrabe.boelinger.com/
10
 
44
  if (!class_exists('nggLoader')) {
45
  class nggLoader {
46
 
47
+ var $version = '1.0.2';
48
  var $dbversion = '0.9.7';
49
  var $minium_WP = '2.7';
50
  var $minium_WPMU = '2.7';
98
  } else {
99
 
100
  // Add MRSS to wp_head
101
+ if ( $this->options['useMediaRSS'] )
102
+ add_action('wp_head', array('nggMediaRss', 'add_mrss_alternate_link'));
103
 
104
  // If activated, add PicLens/Cooliris javascript to footer
105
  if ( $this->options['usePicLens'] )
262
  echo "<meta name='NextGEN' content='" . $this->version . "' />\n";
263
 
264
  // activate Thickbox
265
+ if ($this->options['thumbEffect'] == 'thickbox') {
266
  wp_enqueue_script( 'thickbox' );
267
  // Load the thickbox images after all other scripts
268
  add_action( 'wp_head', array(&$this, 'load_thickbox_images'), 11 );
281
  }
282
 
283
  // required for the slideshow
284
+ if ( NGGALLERY_IREXIST == true )
285
  wp_enqueue_script('swfobject', NGGALLERY_URLPATH .'admin/js/swfobject.js', FALSE, '2.1');
286
 
287
  }
nggfunctions.php CHANGED
@@ -32,6 +32,7 @@ function nggShowSlideshow($galleryID, $width, $height) {
32
  $swfobject->message = '<p>'. __('The <a href="http://www.macromedia.com/go/getflashplayer">Flash Player</a> and <a href="http://www.mozilla.com/firefox/">a browser with Javascript support</a> are needed..', 'nggallery').'</p>';
33
  $swfobject->add_params('wmode', 'opaque');
34
  $swfobject->add_params('allowfullscreen', 'true');
 
35
  $swfobject->add_attributes('styleclass', 'slideshow');
36
  $swfobject->add_attributes('name', 'so' . $galleryID);
37
 
@@ -180,7 +181,7 @@ function nggCreateGallery($picturelist, $galleryID = false, $template = '') {
180
 
181
  if ($ngg_options['usePicLens']) {
182
  $gallery->show_piclens = true;
183
- $gallery->piclens_link = "javascript:PicLensLite.start({feedUrl:'" . nggMediaRss::get_gallery_mrss_url($gallery->ID) . "'});";
184
  }
185
  }
186
 
@@ -224,8 +225,8 @@ function nggCreateGallery($picturelist, $galleryID = false, $template = '') {
224
  $picturelist[$key]->thumbnailURL = $picture->thumbURL;
225
  $picturelist[$key]->size = $thumbsize;
226
  $picturelist[$key]->thumbcode = $thumbcode;
227
- $picturelist[$key]->description = stripslashes($picture->description);
228
- $picturelist[$key]->alttext = stripslashes($picture->alttext);
229
  }
230
 
231
  // look for gallery-$template.php or pure gallery.php
@@ -244,7 +245,7 @@ function nggCreateGallery($picturelist, $galleryID = false, $template = '') {
244
  * nggShowAlbum() - return a album based on the id
245
  *
246
  * @access public
247
- * @param int $albumID
248
  * @param string (optional) $template
249
  * @return the content
250
  */
@@ -253,11 +254,14 @@ function nggShowAlbum($albumID, $template = 'extend') {
253
  // $_GET from wp_query
254
  $gallery = get_query_var('gallery');
255
  $album = get_query_var('album');
 
 
 
256
 
257
  // first look for gallery variable
258
  if (!empty( $gallery )) {
259
 
260
- if ( $albumID != $album )
261
  return;
262
 
263
  // if gallery is is submit , then show the gallery instead
@@ -313,8 +317,10 @@ function nggCreateAlbum( $galleriesID, $template = 'extend', $album = 0) {
313
 
314
  // get the counter values
315
  $picturesCounter = $wpdb->get_results('SELECT galleryid, COUNT(*) as counter FROM '.$wpdb->nggpictures.' WHERE galleryid IN (\''.implode('\',\'', $galleriesID).'\') AND exclude != 1 GROUP BY galleryid', OBJECT_K);
 
316
  foreach ($picturesCounter as $key => $value)
317
  $unsort_galleries[$key]->counter = $value->counter;
 
318
 
319
  // get the id's of the preview images
320
  $imagesID = array();
32
  $swfobject->message = '<p>'. __('The <a href="http://www.macromedia.com/go/getflashplayer">Flash Player</a> and <a href="http://www.mozilla.com/firefox/">a browser with Javascript support</a> are needed..', 'nggallery').'</p>';
33
  $swfobject->add_params('wmode', 'opaque');
34
  $swfobject->add_params('allowfullscreen', 'true');
35
+ $swfobject->add_params('bgcolor', $ngg_options['irScreencolor'], '000000', 'string', '#');
36
  $swfobject->add_attributes('styleclass', 'slideshow');
37
  $swfobject->add_attributes('name', 'so' . $galleryID);
38
 
181
 
182
  if ($ngg_options['usePicLens']) {
183
  $gallery->show_piclens = true;
184
+ $gallery->piclens_link = "javascript:PicLensLite.start({feedUrl:'" . htmlspecialchars( nggMediaRss::get_gallery_mrss_url($gallery->ID) ) . "'});";
185
  }
186
  }
187
 
225
  $picturelist[$key]->thumbnailURL = $picture->thumbURL;
226
  $picturelist[$key]->size = $thumbsize;
227
  $picturelist[$key]->thumbcode = $thumbcode;
228
+ $picturelist[$key]->description = ( empty($picture->description) ) ? ' ' : stripslashes($picture->description);
229
+ $picturelist[$key]->alttext = ( empty($picture->alttext) ) ? ' ' : stripslashes($picture->alttext);
230
  }
231
 
232
  // look for gallery-$template.php or pure gallery.php
245
  * nggShowAlbum() - return a album based on the id
246
  *
247
  * @access public
248
+ * @param int | string $albumID
249
  * @param string (optional) $template
250
  * @return the content
251
  */
254
  // $_GET from wp_query
255
  $gallery = get_query_var('gallery');
256
  $album = get_query_var('album');
257
+
258
+ // in the case somebody uses the 'all' keyword, it should be '0' to show all galleries
259
+ $albumID = ($albumID == 'all') ? 0 : $albumID;
260
 
261
  // first look for gallery variable
262
  if (!empty( $gallery )) {
263
 
264
+ if ( ($albumID != $album) && ($albumID != 0) )
265
  return;
266
 
267
  // if gallery is is submit , then show the gallery instead
317
 
318
  // get the counter values
319
  $picturesCounter = $wpdb->get_results('SELECT galleryid, COUNT(*) as counter FROM '.$wpdb->nggpictures.' WHERE galleryid IN (\''.implode('\',\'', $galleriesID).'\') AND exclude != 1 GROUP BY galleryid', OBJECT_K);
320
+ if ( is_array($picturesCounter) ) {
321
  foreach ($picturesCounter as $key => $value)
322
  $unsort_galleries[$key]->counter = $value->counter;
323
+ }
324
 
325
  // get the id's of the preview images
326
  $imagesID = array();
readme.txt CHANGED
@@ -77,7 +77,7 @@ For commercial use please look at the Jeroen's homepage : http://www.jeroenwijer
77
 
78
  1. Upload the files to wp-content/plugins/nextgen-gallery
79
 
80
- 2. Go to the web page http://www.jeroenwijering.com/ and download the JW Image Rotator and unpack the conent
81
 
82
  3. Upload the file imagerotator.swf to the nextgen-gallery folder
83
 
77
 
78
  1. Upload the files to wp-content/plugins/nextgen-gallery
79
 
80
+ 2. Go to the web page http://www.longtailvideo.com/ and download the JW Image Rotator and unpack the conent
81
 
82
  3. Upload the file imagerotator.swf to the nextgen-gallery folder
83
 
widgets/widgets.php CHANGED
@@ -53,6 +53,7 @@ class nggSlideshowWidget {
53
  $swfobject->classname = 'ngg-widget-slideshow';
54
  $swfobject->message = __('<a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see the slideshow.', 'nggallery');
55
  $swfobject->add_params('wmode', 'opaque');
 
56
  $swfobject->add_attributes('styleclass', 'slideshow-widget');
57
 
58
  // adding the flash parameter
@@ -93,17 +94,11 @@ class nggSlideshowWidget {
93
  // Each widget can store its own options. We keep strings here.
94
  $options = get_option('widget_nggslideshow');
95
 
96
- // Get the gallery linked id page permalink. THX to Vince Kruger
97
- $pageid = $wpdb->get_results("SELECT pageid FROM $wpdb->nggallery WHERE gid={$options['galleryid']}");
98
- $permalink = get_permalink($pageid[0]->pageid);
99
-
100
- // These lines generate the link if available
101
- //TODO: In the case you don't use gallery pages, this is not useable
102
- $the_title = ( !empty($permalink) ) ? "<a href=\"{$permalink}\">" . $options['title'] . "</a>" : $options['title'];
103
-
104
  // These lines generate our output.
105
- echo $before_widget . $before_title . $the_title . $after_title;
 
106
  $this->render_slideshow($options['galleryid'] , $options['width'] , $options['height']);
 
107
  echo $after_widget;
108
 
109
  }
@@ -363,19 +358,19 @@ function ngg_widget_control($widget_args = 1) {
363
  $exclude_list = '';
364
 
365
  // THX to Kay Germer for the idea & addon code
366
- if ( (!empty($list)) && ($exclude != "all") ) {
367
  $list = explode(',',$list);
368
  // Prepare for SQL
369
  $list = "'" . implode("', '", $list ) . "'";
370
 
371
- if ($exclude == "denied")
372
  $exclude_list = "AND NOT t.gid IN ($list)";
373
 
374
- if ($exclude == "allow")
375
  $exclude_list = "AND t.gid IN ($list)";
376
  }
377
 
378
- if ( $options[$number]['type'] == "random" )
379
  $imageList = $wpdb->get_results("SELECT t.*, tt.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE tt.exclude != 1 $exclude_list ORDER by rand() limit {$items}");
380
  else
381
  $imageList = $wpdb->get_results("SELECT t.*, tt.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE tt.exclude != 1 $exclude_list ORDER by pid DESC limit 0,$items");
@@ -386,14 +381,14 @@ function ngg_widget_control($widget_args = 1) {
386
  if (is_array($imageList)){
387
  foreach($imageList as $image) {
388
  // get the URL constructor
389
- $image = new nggImage($image, $image);
390
 
391
  // get the effect code
392
  $thumbcode = $image->get_thumbcode("sidebar_".$number);
393
 
394
  //TODO:For mixed portrait/landscape it's better to use only the height setting, if widht is 0 or vice versa
395
  $out = '<a href="'.$image->imageURL.'" title="'.stripslashes($image->description).'" '.$thumbcode.'>';
396
- if ( $options[$number]['show'] == "orginal" )
397
  $out .= '<img src="'.NGGALLERY_URLPATH.'nggshow.php?pid='.$image->pid.'&amp;width='.$options[$number]['width'].'&amp;height='.$options[$number]['height']. '" width="'.$options[$number]['width'].'" height="'.$options[$number]['height'].'" title="'.$image->alttext.'" alt="'.$image->alttext.'" />';
398
  else
399
  $out .= '<img src="'.$image->thumbURL.'" width="'.$options[$number]['width'].'" height="'.$options[$number]['height'].'" title="'.$image->alttext.'" alt="'.$image->alttext.'" />';
53
  $swfobject->classname = 'ngg-widget-slideshow';
54
  $swfobject->message = __('<a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see the slideshow.', 'nggallery');
55
  $swfobject->add_params('wmode', 'opaque');
56
+ $swfobject->add_params('bgcolor', $ngg_options['irScreencolor'], '000000', 'string', '#');
57
  $swfobject->add_attributes('styleclass', 'slideshow-widget');
58
 
59
  // adding the flash parameter
94
  // Each widget can store its own options. We keep strings here.
95
  $options = get_option('widget_nggslideshow');
96
 
 
 
 
 
 
 
 
 
97
  // These lines generate our output.
98
+ echo $before_widget . $before_title . $options['title'] . $after_title;
99
+
100
  $this->render_slideshow($options['galleryid'] , $options['width'] , $options['height']);
101
+
102
  echo $after_widget;
103
 
104
  }
358
  $exclude_list = '';
359
 
360
  // THX to Kay Germer for the idea & addon code
361
+ if ( (!empty($list)) && ($exclude != 'all') ) {
362
  $list = explode(',',$list);
363
  // Prepare for SQL
364
  $list = "'" . implode("', '", $list ) . "'";
365
 
366
+ if ($exclude == 'denied')
367
  $exclude_list = "AND NOT t.gid IN ($list)";
368
 
369
+ if ($exclude == 'allow')
370
  $exclude_list = "AND t.gid IN ($list)";
371
  }
372
 
373
+ if ( $options[$number]['type'] == 'random' )
374
  $imageList = $wpdb->get_results("SELECT t.*, tt.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE tt.exclude != 1 $exclude_list ORDER by rand() limit {$items}");
375
  else
376
  $imageList = $wpdb->get_results("SELECT t.*, tt.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE tt.exclude != 1 $exclude_list ORDER by pid DESC limit 0,$items");
381
  if (is_array($imageList)){
382
  foreach($imageList as $image) {
383
  // get the URL constructor
384
+ $image = new nggImage($image);
385
 
386
  // get the effect code
387
  $thumbcode = $image->get_thumbcode("sidebar_".$number);
388
 
389
  //TODO:For mixed portrait/landscape it's better to use only the height setting, if widht is 0 or vice versa
390
  $out = '<a href="'.$image->imageURL.'" title="'.stripslashes($image->description).'" '.$thumbcode.'>';
391
+ if ( $options[$number]['show'] == 'orginal' )
392
  $out .= '<img src="'.NGGALLERY_URLPATH.'nggshow.php?pid='.$image->pid.'&amp;width='.$options[$number]['width'].'&amp;height='.$options[$number]['height']. '" width="'.$options[$number]['width'].'" height="'.$options[$number]['height'].'" title="'.$image->alttext.'" alt="'.$image->alttext.'" />';
393
  else
394
  $out .= '<img src="'.$image->thumbURL.'" width="'.$options[$number]['width'].'" height="'.$options[$number]['height'].'" title="'.$image->alttext.'" alt="'.$image->alttext.'" />';
xml/imagerotator.php CHANGED
@@ -40,7 +40,7 @@ if (is_array ($thepictures)){
40
  foreach ($thepictures as $picture) {
41
  echo " <track>\n";
42
  if (!empty($picture->description))
43
- echo " <title>".strip_tags(stripslashes($picture->description))."</title>\n";
44
  else if (!empty($picture->alttext))
45
  echo " <title>".stripslashes($picture->alttext)."</title>\n";
46
  else
40
  foreach ($thepictures as $picture) {
41
  echo " <track>\n";
42
  if (!empty($picture->description))
43
+ echo " <title>".strip_tags(stripslashes(html_entity_decode($picture->description)))."</title>\n";
44
  else if (!empty($picture->alttext))
45
  echo " <title>".stripslashes($picture->alttext)."</title>\n";
46
  else
xml/media-rss.php CHANGED
@@ -37,13 +37,13 @@ $rss = '';
37
  if ($mode=='last_pictures') {
38
 
39
  // Get additional parameters
40
- $page = (int) $_GET["page"];
41
  if (!isset($page) || $page == '') {
42
  $page = 0;
43
  }
44
 
45
  $show = (int) $_GET["show"];
46
- if (!isset($show) || $show == '' || $show==0) {
47
  $show = 10;
48
  }
49
 
37
  if ($mode=='last_pictures') {
38
 
39
  // Get additional parameters
40
+ $page = (int) $_GET["page"];
41
  if (!isset($page) || $page == '') {
42
  $page = 0;
43
  }
44
 
45
  $show = (int) $_GET["show"];
46
+ if (!isset($show) || $show == '' || $show == 0) {
47
  $show = 10;
48
  }
49