NextGEN Gallery – WordPress Gallery Plugin - Version 0.96

Version Description

Download this release

Release Info

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

Code changes from version 0.95 to 0.96

admin/css/nggadmin.wp25.css CHANGED
@@ -90,6 +90,11 @@ div .ngg-tablenav {
90
  padding: 10px 5px 10px;
91
  }
92
 
 
 
 
 
 
93
  /* SETTINGS FOR PROGRESS BAR */
94
 
95
  div .progressborder {
90
  padding: 10px 5px 10px;
91
  }
92
 
93
+ #poststuff .postbox {
94
+ margin-left: 10px;
95
+ margin-right: 0px;
96
+ }
97
+
98
  /* SETTINGS FOR PROGRESS BAR */
99
 
100
  div .progressborder {
admin/wp25/admin.php CHANGED
@@ -46,6 +46,7 @@ function ngg_add_admin_js() {
46
 
47
  switch ($_GET['page']) {
48
  case "nggallery-manage-gallery" :
 
49
  wp_enqueue_script('interface', NGGALLERY_URLPATH .'admin/js/interface.js', array('jquery'), '1.2.1');
50
  wp_enqueue_script('ngg-thickbox', NGGALLERY_URLPATH .'thickbox/thickbox-pack.js', array('jquery'), '3.1.1');
51
  break;
46
 
47
  switch ($_GET['page']) {
48
  case "nggallery-manage-gallery" :
49
+ wp_enqueue_script('postbox');
50
  wp_enqueue_script('interface', NGGALLERY_URLPATH .'admin/js/interface.js', array('jquery'), '1.2.1');
51
  wp_enqueue_script('ngg-thickbox', NGGALLERY_URLPATH .'thickbox/thickbox-pack.js', array('jquery'), '3.1.1');
52
  break;
admin/wp25/manage.php CHANGED
@@ -15,21 +15,9 @@ function nggallery_admin_manage_gallery() {
15
  // get the options
16
  $ngg_options=get_option('ngg_options');
17
 
18
- if (isset ($_POST['togglethumbs'])) {
19
- check_admin_referer('ngg_updategallery');
20
- // Toggle thumnails, forgive me if it's to complicated
21
- $hideThumbs = (isset ($_POST['hideThumbs'])) ? false : true ;
22
- } else {
23
- $hideThumbs = (isset ($_POST['hideThumbs'])) ? true : false ;
24
- }
25
-
26
- if (isset ($_POST['toggletags'])) {
27
- check_admin_referer('ngg_updategallery');
28
- // Toggle tag view
29
- $showTags = (isset ($_POST['showTags'])) ? false : true ;
30
- } else {
31
- $showTags = (isset ($_POST['showTags'])) ? true : false ;
32
- }
33
 
34
  if ($mode == 'delete') {
35
  // Delete a gallery
@@ -212,6 +200,9 @@ function nggallery_admin_manage_gallery() {
212
  else
213
  $result = ngg_update_pictures(attribute_escape($_POST['description']), attribute_escape($_POST['alttext']), attribute_escape($_POST['exclude']), $act_gid );
214
 
 
 
 
215
  nggallery::show_message(__('Update successful',"nggallery"));
216
  }
217
 
@@ -364,7 +355,7 @@ function nggallery_picturelist($hideThumbs = false,$showTags = false) {
364
  jQuery("#TB_tagaction").val(jQuery("#bulkaction").val());
365
  jQuery("#TB_imagelist").val(elementlist);
366
  // console.log (jQuery("#TB_imagelist").val());
367
- jQuery.tb_show("", "#TB_inline?width=640&height=110&inlineId=tags&modal=true", false);
368
  }
369
  </script>
370
  <script type="text/javascript"> var tb_pathToImage = '<?php echo NGGALLERY_URLPATH ?>thickbox/loadingAnimationv3.gif';</script>
@@ -396,84 +387,96 @@ function getNumChecked(form)
396
  }
397
  return num;
398
  }
 
 
 
 
 
 
 
 
399
  //-->
400
  </script>
401
  <div class="wrap">
402
  <h2><?php _e('Gallery', 'nggallery') ?> : <?php echo $act_gallery->title; ?></h2>
403
- <p id="ngg-inlinebutton">
404
- <input type="submit" class="button-secondary" title="<?php _e('Edit gallery', 'nggallery') ?>" value="<?php _e('Edit gallery', 'nggallery') ?>" onclick="jQuery('#manage-gallery').toggle()" />
405
- </p>
406
 
407
  <form id="updategallery" method="POST" action="<?php echo 'admin.php?page=nggallery-manage-gallery&amp;mode=edit&amp;gid='.$act_gid ?>" accept-charset="utf-8">
408
  <?php wp_nonce_field('ngg_updategallery') ?>
409
 
410
  <?php if ($showTags) { ?><input type="hidden" name="showTags" value="true" /><?php } ?>
411
  <?php if ($hideThumbs) { ?><input type="hidden" name="hideThumbs" value="true" /><?php } ?>
412
- <div id="manage-gallery" style="display:none;">
413
- <table class="form-table" >
414
- <tr>
415
- <th align="left"><?php _e('Title') ?>:</th>
416
- <th align="left"><input type="text" size="50" name="title" value="<?php echo $act_gallery->title; ?>" /></th>
417
- <th align="right"><?php _e('Page Link to', 'nggallery') ?>:</th>
418
- <th align="left">
419
- <select name="pageid" style="width:95%">
420
- <option value="0" ><?php _e('Not linked', 'nggallery') ?></option>
421
- <?php
422
- $pageids = get_all_page_ids();
423
- foreach($pageids as $pageid) {
424
- $post= get_post($pageid);
425
- if ($pageid == $act_gallery->pageid) $selected = 'selected="selected" ';
426
- else $selected = '';
427
- echo '<option value="'.$pageid.'" '.$selected.'>'.$post->post_title.'</option>'."\n";
428
- }
429
- ?>
430
- </select>
431
- </th>
432
- </tr>
433
- <tr>
434
- <th align="left"><?php _e('Description') ?>:</th>
435
- <th align="left"><textarea name="gallerydesc" cols="30" rows="3" style="width: 95%" ><?php echo $act_gallery->galdesc; ?></textarea></th>
436
- <th align="right"><?php _e('Preview image', 'nggallery') ?>:</th>
437
- <th align="left">
438
- <select name="previewpic" >
439
- <option value="0" ><?php _e('No Picture', 'nggallery') ?></option>
440
- <?php
441
- $picturelist = $wpdb->get_results("SELECT * FROM $wpdb->nggpictures WHERE galleryid = '$act_gid' ORDER BY $ngg_options[galSort] $ngg_options[galSortDir]");
442
- if(is_array($picturelist)) {
443
- foreach($picturelist as $picture) {
444
- if ($picture->pid == $act_gallery->previewpic) $selected = 'selected="selected" ';
445
- else $selected = '';
446
- echo '<option value="'.$picture->pid.'" '.$selected.'>'.$picture->filename.'</option>'."\n";
 
 
 
 
 
447
  }
448
- }
449
- ?>
 
 
 
 
 
 
 
 
 
 
 
450
  </select>
451
- </th>
452
- </tr>
453
- <tr>
454
- <th align="left"><?php _e('Path', 'nggallery') ?>:</th>
455
- <th align="left"><input <?php if (IS_WPMU) echo 'readonly = "readonly"'; ?> type="text" size="50" name="path" value="<?php echo $act_gallery->path; ?>" /></th>
456
-
457
- <th align="right"><?php _e('Create new page', 'nggallery') ?>:</th>
458
- <th align="left">
459
- <select name="parent_id" style="width:95%">
460
- <option value="0"><?php _e ('Main page (No parent)', 'nggallery'); ?></option>
461
- <?php parent_dropdown ($group->page_id); ?>
462
- </select>
463
- <input type="submit" name="addnewpage" value="<?php _e ('Add page', 'nggallery'); ?>" id="group"/>
464
- </th>
465
- </tr>
466
-
467
- </table>
468
 
469
- <div class="submit">
470
- <input type="submit" name="scanfolder" value="<?php _e("Scan Folder for new images",'nggallery')?> " />
471
- <input type="submit" name="updatepictures" value="<?php _e("Save Changes",'nggallery')?> &raquo;" />
472
- </div>
473
 
474
- </div>
475
- <br style="clear: both;"/>
476
- <?php wp_nonce_field('ngg_updategallery') ?>
 
 
 
 
 
 
477
  <div class="tablenav ngg-tablenav">
478
  <div style="float: left;">
479
  <select id="bulkaction" name="bulkaction">
@@ -507,20 +510,24 @@ function getNumChecked(form)
507
  <table id="ngg-listimages" class="widefat" >
508
  <thead>
509
  <tr>
510
- <th scope="col" class="check-column" ><input name="checkall" type="checkbox" onclick="checkAll(document.getElementById('updategallery'));" /></th>
511
- <th scope="col" style="text-align: center"><?php _e('ID') ?></th>
512
- <th scope="col" style="text-align: center"><?php _e('File name', 'nggallery') ?></th>
513
- <?php if (!$hideThumbs) { ?>
514
- <th scope="col" style="text-align: center"><?php _e('Thumbnail', 'nggallery') ?></th>
515
- <?php } ?>
516
- <?php if (!$showTags) { ?>
517
- <th scope="col" style="text-align: center"><?php _e('Description', 'nggallery') ?></th>
518
- <th scope="col" style="text-align: center"><?php _e('Alt &amp; Title Text', 'nggallery') ?></th>
519
- <th scope="col" style="text-align: center"><?php _e('exclude', 'nggallery') ?></th>
520
- <?php } else {?>
521
- <th scope="col" style="width:70%"><?php _e('Tags (comma separated list)', 'nggallery') ?></th>
 
 
 
 
 
522
  <?php } ?>
523
- <th scope="col" colspan="3" style="text-align: center"><?php _e('Action') ?></th>
524
  </tr>
525
  </thead>
526
  <tbody>
@@ -538,22 +545,63 @@ if($picturelist) {
538
 
539
  ?>
540
  <tr id="picture-<?php echo $pid ?>" <?php echo $class ?> style="text-align:center">
541
- <td class="check-column"><input name="doaction[]" type="checkbox" value="<?php echo $pid ?>" /></td>
542
- <th scope="row" style="text-align: center"><?php echo $pid ?></th>
543
- <td class="media-icon" ><?php echo $picture->filename ?></td>
544
- <?php if (!$hideThumbs) { ?>
545
- <td><img class="thumb" src="<?php echo $act_thumbnail_url.$act_thumb_prefix.$picture->filename ?>" /></td>
546
- <?php } ?>
547
- <?php if (!$showTags) { ?>
548
- <td><textarea name="description[<?php echo $pid ?>]" class="textarea1" cols="30" rows="3" ><?php echo stripslashes($picture->description) ?></textarea></td>
549
- <td><input name="alttext[<?php echo $pid ?>]" type="text" size="20" value="<?php echo stripslashes($picture->alttext) ?>" /></td>
550
- <td><input name="exclude[<?php echo $pid ?>]" type="checkbox" value="1" <?php echo $exclude ?> /></td>
551
- <?php } else {?>
552
- <td ><input name="tags[<?php echo $pid ?>]" type="text" style="width:95%" value="<?php echo $nggTags->get_tags_from_image($pid); ?>" /></td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
553
  <?php } ?>
554
- <td><a href="<?php echo $act_gallery_url.$picture->filename ?>" class="thickbox" title="<?php echo $picture->alttext ?>" ><?php _e('View') ?></a></td>
555
- <td><a href="<?php echo NGGALLERY_URLPATH."admin/showmeta.php?id=".$pid ?>" class="thickbox" title="<?php _e("Show Meta data",'nggallery')?>" ><?php _e('Meta') ?></a></td>
556
- <td><a href="<?php echo wp_nonce_url("admin.php?page=nggallery-manage-gallery&amp;mode=delpic&amp;gid=".$act_gid."&amp;pid=".$pid, 'ngg_delpicture')?>" class="delete" onclick="javascript:check=confirm( '<?php _e("Delete this file ?",'nggallery')?>');if(check==false) return false;" ><?php _e('Delete') ?></a></td>
557
  </tr>
558
  <?php
559
  }
@@ -688,4 +736,50 @@ function ngg_update_tags( $taglist ) {
688
  return;
689
  }
690
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
691
  ?>
15
  // get the options
16
  $ngg_options=get_option('ngg_options');
17
 
18
+ //TODO: Remove this vars
19
+ $hideThumbs = ngg_hide_thumb();
20
+ $showTags = ngg_show_tags();
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
  if ($mode == 'delete') {
23
  // Delete a gallery
200
  else
201
  $result = ngg_update_pictures(attribute_escape($_POST['description']), attribute_escape($_POST['alttext']), attribute_escape($_POST['exclude']), $act_gid );
202
 
203
+ //hook for other plugin to update the fields
204
+ do_action('ngg_update_gallery', $act_gid, $_POST);
205
+
206
  nggallery::show_message(__('Update successful',"nggallery"));
207
  }
208
 
355
  jQuery("#TB_tagaction").val(jQuery("#bulkaction").val());
356
  jQuery("#TB_imagelist").val(elementlist);
357
  // console.log (jQuery("#TB_imagelist").val());
358
+ jQuery.tb_show("", "#TB_inline?width=640&height=120&inlineId=tags&modal=true", false);
359
  }
360
  </script>
361
  <script type="text/javascript"> var tb_pathToImage = '<?php echo NGGALLERY_URLPATH ?>thickbox/loadingAnimationv3.gif';</script>
387
  }
388
  return num;
389
  }
390
+
391
+ jQuery(document).ready( function() {
392
+ // close postboxes that should be closed
393
+ jQuery('.if-js-closed').removeClass('if-js-closed').addClass('closed');
394
+ // postboxes
395
+ add_postbox_toggles('ngg-manage-gallery');
396
+ });
397
+
398
  //-->
399
  </script>
400
  <div class="wrap">
401
  <h2><?php _e('Gallery', 'nggallery') ?> : <?php echo $act_gallery->title; ?></h2>
402
+
403
+ <br style="clear: both;"/>
 
404
 
405
  <form id="updategallery" method="POST" action="<?php echo 'admin.php?page=nggallery-manage-gallery&amp;mode=edit&amp;gid='.$act_gid ?>" accept-charset="utf-8">
406
  <?php wp_nonce_field('ngg_updategallery') ?>
407
 
408
  <?php if ($showTags) { ?><input type="hidden" name="showTags" value="true" /><?php } ?>
409
  <?php if ($hideThumbs) { ?><input type="hidden" name="hideThumbs" value="true" /><?php } ?>
410
+ <div id="poststuff">
411
+ <?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>
412
+ <div id="gallerydiv" class="postbox <?php echo postbox_classes('gallerydiv', 'ngg-manage-gallery'); ?>" >
413
+ <h3><?php _e('Gallery settings', 'nggallery') ?></h3>
414
+ <div class="inside">
415
+ <table class="form-table" >
416
+ <tr>
417
+ <th align="left"><?php _e('Title') ?>:</th>
418
+ <th align="left"><input type="text" size="50" name="title" value="<?php echo $act_gallery->title; ?>" /></th>
419
+ <th align="right"><?php _e('Page Link to', 'nggallery') ?>:</th>
420
+ <th align="left">
421
+ <select name="pageid" style="width:95%">
422
+ <option value="0" ><?php _e('Not linked', 'nggallery') ?></option>
423
+ <?php
424
+ $pageids = get_all_page_ids();
425
+ foreach($pageids as $pageid) {
426
+ $post= get_post($pageid);
427
+ if ($pageid == $act_gallery->pageid) $selected = 'selected="selected" ';
428
+ else $selected = '';
429
+ echo '<option value="'.$pageid.'" '.$selected.'>'.$post->post_title.'</option>'."\n";
430
+ }
431
+ ?>
432
+ </select>
433
+ </th>
434
+ </tr>
435
+ <tr>
436
+ <th align="left"><?php _e('Description') ?>:</th>
437
+ <th align="left"><textarea name="gallerydesc" cols="30" rows="3" style="width: 95%" ><?php echo $act_gallery->galdesc; ?></textarea></th>
438
+ <th align="right"><?php _e('Preview image', 'nggallery') ?>:</th>
439
+ <th align="left">
440
+ <select name="previewpic" >
441
+ <option value="0" ><?php _e('No Picture', 'nggallery') ?></option>
442
+ <?php
443
+ $picturelist = $wpdb->get_results("SELECT * FROM $wpdb->nggpictures WHERE galleryid = '$act_gid' ORDER BY $ngg_options[galSort] $ngg_options[galSortDir]");
444
+ if(is_array($picturelist)) {
445
+ foreach($picturelist as $picture) {
446
+ if ($picture->pid == $act_gallery->previewpic) $selected = 'selected="selected" ';
447
+ else $selected = '';
448
+ echo '<option value="'.$picture->pid.'" '.$selected.'>'.$picture->filename.'</option>'."\n";
449
+ }
450
  }
451
+ ?>
452
+ </select>
453
+ </th>
454
+ </tr>
455
+ <tr>
456
+ <th align="left"><?php _e('Path', 'nggallery') ?>:</th>
457
+ <th align="left"><input <?php if (IS_WPMU) echo 'readonly = "readonly"'; ?> type="text" size="50" name="path" value="<?php echo $act_gallery->path; ?>" /></th>
458
+
459
+ <th align="right"><?php _e('Create new page', 'nggallery') ?>:</th>
460
+ <th align="left">
461
+ <select name="parent_id" style="width:95%">
462
+ <option value="0"><?php _e ('Main page (No parent)', 'nggallery'); ?></option>
463
+ <?php parent_dropdown ($group->page_id); ?>
464
  </select>
465
+ <input type="submit" name="addnewpage" value="<?php _e ('Add page', 'nggallery'); ?>" id="group"/>
466
+ </th>
467
+ </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
468
 
469
+ </table>
 
 
 
470
 
471
+ <div class="submit">
472
+ <input type="submit" name="scanfolder" value="<?php _e("Scan Folder for new images",'nggallery')?> " />
473
+ <input type="submit" name="updatepictures" value="<?php _e("Save Changes",'nggallery')?> &raquo;" />
474
+ </div>
475
+
476
+ </div>
477
+ </div>
478
+ </div> <!-- poststuff -->
479
+
480
  <div class="tablenav ngg-tablenav">
481
  <div style="float: left;">
482
  <select id="bulkaction" name="bulkaction">
510
  <table id="ngg-listimages" class="widefat" >
511
  <thead>
512
  <tr>
513
+ <?php $gallery_columns = ngg_manage_gallery_columns(); ?>
514
+ <?php foreach($gallery_columns as $gallery_column_key => $column_display_name) {
515
+ switch ($gallery_column_key) {
516
+ case 'cb' :
517
+ $class = ' class="check-column"';
518
+ break;
519
+ case 'tags' :
520
+ $class = ' style="width:70%"';
521
+ break;
522
+ case 'action' :
523
+ $class = ' colspan="3" style="text-align: center"';
524
+ break;
525
+ default :
526
+ $class = ' style="text-align: center"';
527
+ }
528
+ ?>
529
+ <th scope="col"<?php echo $class; ?>><?php echo $column_display_name; ?></th>
530
  <?php } ?>
 
531
  </tr>
532
  </thead>
533
  <tbody>
545
 
546
  ?>
547
  <tr id="picture-<?php echo $pid ?>" <?php echo $class ?> style="text-align:center">
548
+ <?php foreach($gallery_columns as $gallery_column_key => $column_display_name) {
549
+ switch ($gallery_column_key) {
550
+ case 'cb' :
551
+ ?>
552
+ <td class="check-column" scope="row"><input name="doaction[]" type="checkbox" value="<?php echo $pid ?>" /></td>
553
+ <?php
554
+ break;
555
+ case 'id' :
556
+ ?>
557
+ <td scope="row" style="text-align: center"><?php echo $pid ?></td>
558
+ <?php
559
+ break;
560
+ case 'filename' :
561
+ ?>
562
+ <td class="media-icon" ><?php echo $picture->filename ?></td>
563
+ <?php
564
+ break;
565
+ case 'thumbnail' :
566
+ ?>
567
+ <td><img class="thumb" src="<?php echo $act_thumbnail_url.$act_thumb_prefix.$picture->filename ?>" /></td>
568
+ <?php
569
+ break;
570
+ case 'description' :
571
+ ?>
572
+ <td><textarea name="description[<?php echo $pid ?>]" class="textarea1" cols="30" rows="3" ><?php echo stripslashes($picture->description) ?></textarea></td>
573
+ <?php
574
+ break;
575
+ case 'alt_title_text' :
576
+ ?>
577
+ <td><input name="alttext[<?php echo $pid ?>]" type="text" size="20" value="<?php echo stripslashes($picture->alttext) ?>" /></td>
578
+ <?php
579
+ break;
580
+ case 'exclude' :
581
+ ?>
582
+ <td><input name="exclude[<?php echo $pid ?>]" type="checkbox" value="1" <?php echo $exclude ?> /></td>
583
+ <?php
584
+ break;
585
+ case 'tags' :
586
+ ?>
587
+ <td><input name="tags[<?php echo $pid ?>]" type="text" style="width:95%" value="<?php echo $nggTags->get_tags_from_image($pid); ?>" /></td>
588
+ <?php
589
+ break;
590
+ case 'action' :
591
+ ?>
592
+ <td><a href="<?php echo $act_gallery_url.$picture->filename ?>" class="thickbox" title="<?php echo $picture->alttext ?>" ><?php _e('View') ?></a></td>
593
+ <td><a href="<?php echo NGGALLERY_URLPATH."admin/showmeta.php?id=".$pid ?>" class="thickbox" title="<?php _e("Show Meta data",'nggallery')?>" ><?php _e('Meta') ?></a></td>
594
+ <td><a href="<?php echo wp_nonce_url("admin.php?page=nggallery-manage-gallery&amp;mode=delpic&amp;gid=".$act_gid."&amp;pid=".$pid, 'ngg_delpicture')?>" class="delete" onclick="javascript:check=confirm( '<?php _e("Delete this file ?",'nggallery')?>');if(check==false) return false;" ><?php _e('Delete') ?></a></td>
595
+ <?php
596
+ break;
597
+ default :
598
+ ?>
599
+ <td><?php do_action('ngg_manage_gallery_custom_column', $gallery_column_key, $pid); ?></td>
600
+ <?php
601
+ break;
602
+ }
603
+ ?>
604
  <?php } ?>
 
 
 
605
  </tr>
606
  <?php
607
  }
736
  return;
737
  }
738
 
739
+ function ngg_hide_thumb() {
740
+ if (isset ($_POST['togglethumbs'])) {
741
+ check_admin_referer('ngg_updategallery');
742
+ // Toggle thumnails, forgive me if it's to complicated
743
+ $hideThumbs = (isset ($_POST['hideThumbs'])) ? false : true ;
744
+ } else {
745
+ $hideThumbs = (isset ($_POST['hideThumbs'])) ? true : false ;
746
+ }
747
+ return $hideThumbs;
748
+ }
749
+
750
+ function ngg_show_tags() {
751
+ if (isset ($_POST['toggletags'])) {
752
+ check_admin_referer('ngg_updategallery');
753
+ // Toggle tag view
754
+ $showTags = (isset ($_POST['showTags'])) ? false : true ;
755
+ } else {
756
+ $showTags = (isset ($_POST['showTags'])) ? true : false ;
757
+ }
758
+ return $showTags;
759
+ }
760
+
761
+ // define the columns to display, the syntax is 'internal name' => 'display name'
762
+ function ngg_manage_gallery_columns() {
763
+ $gallery_columns = array();
764
+
765
+ $gallery_columns['cb'] = '<input name="checkall" type="checkbox" onclick="checkAll(document.getElementById(\'updategallery\'));" />';
766
+ $gallery_columns['id'] = __('ID');
767
+ $gallery_columns['filename'] = __('File name', 'nggallery');
768
+
769
+ if ( !ngg_hide_thumb() )
770
+ $gallery_columns['thumbnail'] = __('Thumbnail', 'nggallery');
771
+ if ( !ngg_show_tags() ) {
772
+ $gallery_columns['description'] = __('Description', 'nggallery');
773
+ $gallery_columns['alt_title_text'] = __('Alt &amp; Title Text', 'nggallery');
774
+ $gallery_columns['exclude'] = __('exclude', 'nggallery');
775
+ } else {
776
+ $gallery_columns['tags'] = __('Tags (comma separated list)', 'nggallery');
777
+ }
778
+ $gallery_columns['action'] = __('Action', 'nggallery');
779
+
780
+ $gallery_columns = apply_filters('ngg_manage_gallery_columns', $gallery_columns);
781
+
782
+ return $gallery_columns;
783
+ }
784
+
785
  ?>
admin/wp25/media-upload.php CHANGED
@@ -123,7 +123,7 @@ function media_upload_nextgen_form($errors) {
123
  ?>
124
 
125
  <div class="alignleft">
126
- <select id="select_gal" name="select_gal">
127
  <option value="0" <?php selected('0', $galleryID); ?> ><?php attribute_escape( _e('No gallery',"nggallery") ); ?></option>
128
  <?php
129
  // Show gallery selection
123
  ?>
124
 
125
  <div class="alignleft">
126
+ <select id="select_gal" name="select_gal" style="width:250px;">
127
  <option value="0" <?php selected('0', $galleryID); ?> ><?php attribute_escape( _e('No gallery',"nggallery") ); ?></option>
128
  <?php
129
  // Show gallery selection
changelog.txt CHANGED
@@ -1,6 +1,15 @@
1
  NextGEN Gallery
2
  by Alex Rabe & NextGEN DEV Team
3
 
 
 
 
 
 
 
 
 
 
4
  V0.95 - 25.04.2008
5
  - Bugfix : Correction in media-upload to fit with Wordpress 2.5.1
6
  - Bugfix : Attribute_escape all objects in media-upload
1
  NextGEN Gallery
2
  by Alex Rabe & NextGEN DEV Team
3
 
4
+ V0.96 - 18.05.2008
5
+ - Changed : Use postbox for gallery settings
6
+ - Added : New filter function to add custom columns
7
+ - Bugfix : Fixed width for Thickbox in Manage gallery
8
+ - Bugfix : Fixed width for media upload select box
9
+ - Bugfix : Remove <p> tag in singlepic regex
10
+ - Bugfix : Correct format of shutter speed
11
+ - Bugfix : Album name in Short code not useable
12
+
13
  V0.95 - 25.04.2008
14
  - Bugfix : Correction in media-upload to fit with Wordpress 2.5.1
15
  - Bugfix : Attribute_escape all objects in media-upload
lang/nggallery-de_DE.mo CHANGED
Binary file
lang/nggallery-de_DE.po CHANGED
@@ -1,12 +1,13 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2008-04-25 20:15+0100\n"
 
6
  "Last-Translator: Alex Rabe\n"
7
  "Language-Team: Alex Rabe\n"
8
  "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
  "X-Poedit-KeywordsList: __;_e\n"
12
  "X-Poedit-Basepath: .\n"
@@ -15,46 +16,43 @@ msgstr ""
15
  "X-Poedit-SearchPath-0: .\n"
16
  "X-Poedit-SearchPath-1: ..\n"
17
 
18
- #: ../nggallery.php:53
19
  msgid "Sorry, NextGEN Gallery works only under WordPress 2.1 or higher"
20
  msgstr "Tut mir leid aber NextGEN Galerie arbeitet nur ab WordPress 2.1 und aufwärts"
21
 
22
- #: ../nggallery.php:60
23
  msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB higher"
24
  msgstr "Tut mir leid aber NextGEN Galerie arbeitet mit einem Memory Limit von 16 MB un mehr"
25
 
26
- #: ../nggfunctions.php:446
27
- #: ../nggfunctions.php:461
28
  msgid "Watch gallery"
29
  msgstr "Galerie ansehen"
30
 
31
- #: ../nggfunctions.php:455
32
- #: ../nggfunctions.php:467
33
- #: ../nggfunctions.php:752
34
  msgid "Photos"
35
  msgstr "Fotos"
36
 
37
- #: ../nggfunctions.php:543
38
  msgid "Back"
39
  msgstr "Zurück"
40
 
41
- #: ../nggfunctions.php:547
42
  msgid "Next"
43
  msgstr "Vor"
44
 
45
- #: ../nggfunctions.php:550
46
  #: ../admin/manage.php:85
47
- #: ../admin/wp25/manage.php:85
48
- #: ../tinymce/window.php:37
49
- #: ../tinymce3/window.php:37
50
  msgid "Picture"
51
  msgstr "Bild"
52
 
53
- #: ../nggfunctions.php:550
54
  msgid "from"
55
  msgstr "von"
56
 
57
- #: ../nggfunctions.php:722
58
  msgid "Overview"
59
  msgstr "Übersicht"
60
 
@@ -108,7 +106,6 @@ msgid "How many NextGEN Gallery widgets would you like?"
108
  msgstr "Wie viele NextGEN Gallery Widgets möchtest du haben ?"
109
 
110
  #: ../nggwidget.php:212
111
- #: ../admin/uploadtab.php:193
112
  msgid "Save"
113
  msgstr "Speichern"
114
 
@@ -123,8 +120,6 @@ msgstr "Zeige als :"
123
  #: ../nggwidget.php:314
124
  #: ../admin/settings.php:102
125
  #: ../admin/settings.php:295
126
- #: ../admin/wp25/settings.php:99
127
- #: ../admin/wp25/settings.php:285
128
  msgid "Thumbnails"
129
  msgstr "Thumbnails"
130
 
@@ -134,7 +129,6 @@ msgstr "Orginal Bilder"
134
 
135
  #: ../nggwidget.php:321
136
  #: ../admin/settings.php:560
137
- #: ../admin/wp25/settings.php:542
138
  msgid "random"
139
  msgstr "Zufall"
140
 
@@ -171,107 +165,86 @@ msgid "Gallery IDs, separated by commas."
171
  msgstr "Galerie ID's, mit Kommas getrennt"
172
 
173
  #: ../admin/about.php:9
174
- #: ../admin/wp25/about.php:9
175
  msgid "Copyright notes / Credits"
176
  msgstr "Copyright Hinweise / Credits"
177
 
178
  #: ../admin/about.php:11
179
- #: ../admin/wp25/about.php:10
180
  msgid "NextGEN DEV Team"
181
  msgstr "NextGEN DEV Team"
182
 
183
  #: ../admin/about.php:12
184
- #: ../admin/wp25/about.php:11
185
  msgid "This plugin is primarily developed, maintained, supported, documented by"
186
  msgstr "Dieses Plugin wird hauptsächlich entwickelt, dokumentiert und supportet von"
187
 
188
  #: ../admin/about.php:12
189
- #: ../admin/wp25/about.php:11
190
  msgid "There are many other folks who have made contributions to this project :"
191
  msgstr "Folgende Personen haben die Entwicklung bisher unterstützt :"
192
 
193
  #: ../admin/about.php:14
194
- #: ../admin/wp25/about.php:13
195
  msgid "Contributors / Tribute to"
196
  msgstr "Anerkennung / Hinweise"
197
 
198
  #: ../admin/about.php:15
199
- #: ../admin/wp25/about.php:14
200
  msgid "If you study the code of this plugin, you will find out that we mixed a lot of good already existing code and ideas together."
201
  msgstr "Falls Du Dir den Sourcecode dieses Plugins ansiehst wirst Du merken, das wir verschiedene gute Scripte sowie Ideen verwendet haben."
202
 
203
  #: ../admin/about.php:16
204
- #: ../admin/wp25/about.php:15
205
  msgid "So, we would like to thank the following people for their pioneer work (without this work it's impossible to create such a plugin so fast)"
206
  msgstr "Wir möchten folgenden Menschen für Ihre Pionier-Arbeit danken (ohne diese Vorleistung wäre es unmöglich ein Plugin so schnell zu entwickeln)"
207
 
208
  #: ../admin/about.php:18
209
- #: ../admin/wp25/about.php:17
210
  msgid "for their great documented code"
211
  msgstr "für Ihren großartig dokumentierten Code"
212
 
213
  #: ../admin/about.php:19
214
- #: ../admin/wp25/about.php:18
215
  msgid "for jQuery, which is the best Web2.0 framework"
216
  msgstr "für jQuery, das Beste Web2.0 Framework"
217
 
218
  #: ../admin/about.php:20
219
- #: ../admin/wp25/about.php:19
220
  msgid "for the fantastic PHP Thumbnail Class"
221
  msgstr "für die fantastische PHP Thumbnail Klasse"
222
 
223
  #: ../admin/about.php:21
224
- #: ../admin/wp25/about.php:20
225
  msgid "for PclZip , a PHP library that manage ZIP archives"
226
  msgstr "für PclZip, eine ZIP PHP Library"
227
 
228
  #: ../admin/about.php:22
229
- #: ../admin/wp25/about.php:21
230
  msgid "for a lot of very useful plugins and ideas"
231
  msgstr "für viele nützliche Plugins und Ideen"
232
 
233
  #: ../admin/about.php:23
234
- #: ../admin/wp25/about.php:22
235
  msgid "for Simple:Press Forum, it saved me a lot of time"
236
  msgstr "für das Simple:Press Forum, welches mir viel Zeit sparte"
237
 
238
  #: ../admin/about.php:24
239
- #: ../admin/wp25/about.php:23
240
  msgid "for the best Media Flash Scripts on earth"
241
  msgstr "für die besten Media Flash Scripte"
242
 
243
  #: ../admin/about.php:25
244
- #: ../admin/wp25/about.php:24
245
  msgid "for the Watermark plugin"
246
  msgstr "für das Wasserzeichen Plugin"
247
 
248
  #: ../admin/about.php:27
249
- #: ../admin/wp25/about.php:26
250
  msgid "If you didn't find your name on this list and there is some code which I integrate in my plugin, don't hesitate to send me a mail."
251
  msgstr "Falls Du Deinen Namen hier nicht auf dieser Liste findest und es einigen Code gibt, den ich in meinem Plugin verwendet habe, so schicken mir bitte sofort einfach eine EMail."
252
 
253
  #: ../admin/about.php:28
254
- #: ../admin/wp25/about.php:27
255
  msgid "How to support ?"
256
  msgstr "Unterstützung / Hilfe"
257
 
258
  #: ../admin/about.php:29
259
- #: ../admin/wp25/about.php:28
260
  msgid "There exist several ways to contribute, help or support us in this work. Non of them are mandatory."
261
  msgstr "Es existieren verschiedene Möglichkeiten diese Arbeit zu unterstützen."
262
 
263
  #: ../admin/about.php:31
264
- #: ../admin/wp25/about.php:30
265
  msgid "Send us bugfixes / code changes"
266
  msgstr "Schicke uns Verbesserungen / Bugfixes"
267
 
268
  #: ../admin/about.php:31
269
- #: ../admin/wp25/about.php:30
270
  msgid "The most motivated support for this plugin are your ideas and brain work"
271
  msgstr "Der beste Support für dieses Plugin sind Deine Ideen und Gedanken"
272
 
273
  #: ../admin/about.php:32
274
- #: ../admin/wp25/about.php:31
275
  msgid "Translate the plugin"
276
  msgstr "Übersetze das Plugin"
277
 
@@ -280,7 +253,6 @@ msgid "To help people to work with this plugin, I would like to have it in all a
280
  msgstr "Um jedem das Arbeiten mit diesem Plugin zu vereinfachen würde ich es gerne in allen verfügbaren Sprachen anbieten"
281
 
282
  #: ../admin/about.php:33
283
- #: ../admin/wp25/about.php:32
284
  msgid "Donate the work via paypal"
285
  msgstr "Zeig Dich für diese Arbeit per PayPal dankbar"
286
 
@@ -289,167 +261,125 @@ msgid "No doubt a very usefull and easy motivation :-)"
289
  msgstr "Kein Zweifel, eine schöne und simple Motivationshilfe"
290
 
291
  #: ../admin/about.php:46
292
- #: ../admin/wp25/about.php:45
293
  msgid "Place a link to the plugin in your blog/webpage"
294
  msgstr "Setze einen Link zu diesem Plugin auf Deinen Blog"
295
 
296
  #: ../admin/about.php:46
297
- #: ../admin/wp25/about.php:45
298
  msgid "Yes, share and trackback is also a good support for this work "
299
  msgstr "Natürlich sind Trackbacks und Links auch ein guter Support für diese Arbeit"
300
 
301
  #: ../admin/about.php:48
302
- #: ../admin/wp25/about.php:47
303
  msgid "Thanks!"
304
  msgstr "Vielen Dank!"
305
 
306
  #: ../admin/about.php:49
307
- #: ../admin/wp25/about.php:48
308
  msgid "We would like to thank this people which support us in the work :"
309
  msgstr "Wir wollen diesen Menschen für Ihre Hilfe danken:"
310
 
311
  #: ../admin/addgallery.php:35
312
  #: ../admin/addgallery.php:51
313
- #: ../admin/wp25/addgallery.php:35
314
- #: ../admin/wp25/addgallery.php:51
315
  msgid "Upload failed!"
316
  msgstr "Upload fehlgeschlagen!"
317
 
318
  #: ../admin/addgallery.php:56
319
  #: ../admin/functions.php:563
320
  #: ../admin/functions.php:652
321
- #: ../admin/wp25/addgallery.php:56
322
- #: ../admin/wp25/functions.php:563
323
- #: ../admin/wp25/functions.php:652
324
  msgid "No gallery selected !"
325
  msgstr "Keine Galerie ausgewählt !"
326
 
327
  #: ../admin/addgallery.php:111
328
- #: ../admin/wp25/addgallery.php:95
329
  msgid "Image Files"
330
  msgstr "Bilder"
331
 
332
  #: ../admin/addgallery.php:131
333
  #: ../admin/addgallery.php:161
334
- #: ../admin/wp25/addgallery.php:114
335
- #: ../admin/wp25/addgallery.php:144
336
  msgid "remove"
337
  msgstr "Entfernen"
338
 
339
  #: ../admin/addgallery.php:132
340
- #: ../admin/wp25/addgallery.php:115
341
  msgid "Browse..."
342
  msgstr "Durchsuche..."
343
 
344
  #: ../admin/addgallery.php:133
345
  #: ../admin/addgallery.php:311
346
- #: ../admin/wp25/addgallery.php:116
347
- #: ../admin/wp25/addgallery.php:287
348
  msgid "Upload images"
349
  msgstr "Bilder hochladen"
350
 
351
  #: ../admin/addgallery.php:177
352
  #: ../admin/addgallery.php:189
353
- #: ../admin/wp25/addgallery.php:160
354
- #: ../admin/wp25/addgallery.php:172
355
  msgid "Add new gallery"
356
  msgstr "Neue Galerie erstellen"
357
 
358
  #: ../admin/addgallery.php:179
359
  #: ../admin/addgallery.php:210
360
- #: ../admin/wp25/addgallery.php:162
361
- #: ../admin/wp25/addgallery.php:191
362
  msgid "Upload a Zip-File"
363
  msgstr "Zip-Datei hochladen"
364
 
365
  #: ../admin/addgallery.php:182
366
  #: ../admin/addgallery.php:250
367
- #: ../admin/wp25/addgallery.php:165
368
- #: ../admin/wp25/addgallery.php:229
369
  msgid "Import image folder"
370
  msgstr "Bilder-Verzeichnis importieren"
371
 
372
  #: ../admin/addgallery.php:184
373
  #: ../admin/addgallery.php:274
374
- #: ../admin/wp25/addgallery.php:167
375
- #: ../admin/wp25/addgallery.php:251
376
  msgid "Upload Images"
377
  msgstr "Bilder hochladen"
378
 
379
  #: ../admin/addgallery.php:195
380
- #: ../admin/wp25/addgallery.php:177
381
  msgid "New Gallery"
382
  msgstr "Neue Galerie"
383
 
384
  #: ../admin/addgallery.php:198
385
- #: ../admin/wp25/addgallery.php:180
386
  msgid "Create a new , empty gallery below the folder"
387
  msgstr "Erstelle eine neue, leere Galerie unter dem Verzeichnis"
388
 
389
  #: ../admin/addgallery.php:200
390
- #: ../admin/wp25/addgallery.php:182
391
  msgid "Allowed characters for file and folder names are"
392
  msgstr "Erlaubte Charaktere für die Datei- und Verzeichnisnamen sind"
393
 
394
  #: ../admin/addgallery.php:203
395
- #: ../admin/wp25/addgallery.php:185
396
  msgid "Add gallery"
397
  msgstr "Galerie hinzufügen"
398
 
399
  #: ../admin/addgallery.php:216
400
- #: ../admin/wp25/addgallery.php:196
401
  msgid "Select Zip-File"
402
  msgstr "Wähle Zip-Datei"
403
 
404
  #: ../admin/addgallery.php:218
405
- #: ../admin/wp25/addgallery.php:198
406
  msgid "Upload a zip file with images"
407
  msgstr "Lade eine Zip-Datei mit Bildern hoch"
408
 
409
  #: ../admin/addgallery.php:221
410
  #: ../admin/addgallery.php:284
411
- #: ../admin/wp25/addgallery.php:201
412
- #: ../admin/wp25/addgallery.php:260
413
  msgid "in to"
414
  msgstr "in"
415
 
416
  #: ../admin/addgallery.php:223
417
- #: ../admin/wp25/addgallery.php:203
418
  msgid "a new gallery"
419
  msgstr "eine neue Galerie"
420
 
421
  #: ../admin/addgallery.php:233
422
  #: ../admin/addgallery.php:296
423
- #: ../admin/wp25/addgallery.php:213
424
- #: ../admin/wp25/addgallery.php:272
425
  msgid "Note : The upload limit on your server is "
426
  msgstr "Hinweis : Das Upload-Limit auf dem Server beträgt "
427
 
428
  #: ../admin/addgallery.php:237
429
  #: ../admin/addgallery.php:262
430
  #: ../admin/addgallery.php:300
431
- #: ../admin/wp25/addgallery.php:217
432
- #: ../admin/wp25/addgallery.php:240
433
- #: ../admin/wp25/addgallery.php:276
434
  msgid "Add Metadata :"
435
  msgstr "Metadaten hinzufügen :"
436
 
437
  #: ../admin/addgallery.php:239
438
  #: ../admin/addgallery.php:264
439
  #: ../admin/addgallery.php:302
440
- #: ../admin/wp25/addgallery.php:219
441
- #: ../admin/wp25/addgallery.php:242
442
- #: ../admin/wp25/addgallery.php:278
443
  msgid "Import EXIF, IPTC or XMP data (if available)"
444
  msgstr "EXIF, IPTC oder XMP Daten importieren (wenn verfügbar)"
445
 
446
  #: ../admin/addgallery.php:242
447
- #: ../admin/wp25/addgallery.php:222
448
  msgid "Start upload"
449
  msgstr "Upload starten"
450
 
451
  #: ../admin/addgallery.php:256
452
- #: ../admin/wp25/addgallery.php:234
453
  msgid "Import from Server path:"
454
  msgstr "Importieren aus Server-Pfad:"
455
 
@@ -462,37 +392,30 @@ msgid "For safe-mode = ON you need to add the subfolder thumbs manually"
462
  msgstr "Da der Safe-Mode (PHP.INI) eingeschaltet ist, mußt Du das Unterverzeichnis für die Vorschaubilder (\"thumbs\") manuell (per FTP) anlegen"
463
 
464
  #: ../admin/addgallery.php:267
465
- #: ../admin/wp25/addgallery.php:245
466
  msgid "Import folder"
467
  msgstr "Verzeichnis importieren"
468
 
469
  #: ../admin/addgallery.php:280
470
- #: ../admin/wp25/addgallery.php:256
471
  msgid "Upload image"
472
  msgstr "Bild hochladen"
473
 
474
  #: ../admin/addgallery.php:286
475
- #: ../admin/wp25/addgallery.php:262
476
  msgid "Choose gallery"
477
  msgstr "Wähle Galerie"
478
 
479
  #: ../admin/addgallery.php:307
480
- #: ../admin/wp25/addgallery.php:283
481
  msgid "The batch upload requires Adobe Flash 9, disable it if you have problems"
482
  msgstr "Das Batch-Upload-Skript benötigt Adbode Flash 9, wenn es Probleme gibt deaktiviere es besser."
483
 
484
  #: ../admin/addgallery.php:307
485
- #: ../admin/wp25/addgallery.php:283
486
  msgid "Disable flash upload"
487
  msgstr "Deaktiviere Batch-Upload"
488
 
489
  #: ../admin/addgallery.php:309
490
- #: ../admin/wp25/addgallery.php:285
491
  msgid "Upload multiple files at once by ctrl/shift-selecting in dialog"
492
  msgstr "Wähle im Dialog mit Ctrl/Shift mehrere Bilder gleichzeitig aus."
493
 
494
  #: ../admin/addgallery.php:309
495
- #: ../admin/wp25/addgallery.php:285
496
  msgid "Enable flash based upload"
497
  msgstr "Aktiviere Flash Batch Uplaod"
498
 
@@ -503,123 +426,85 @@ msgstr "Aktiviere Flash Batch Uplaod"
503
  #: ../admin/manage.php:64
504
  #: ../admin/manage.php:434
505
  #: ../admin/settings.php:104
506
- #: ../admin/uploadtab.php:36
507
- #: ../admin/wp25/admin.php:72
508
- #: ../admin/wp25/functions.php:78
509
- #: ../admin/wp25/functions.php:82
510
- #: ../admin/wp25/functions.php:128
511
- #: ../admin/wp25/manage.php:64
512
- #: ../admin/wp25/manage.php:402
513
- #: ../admin/wp25/settings.php:101
514
- #: ../tinymce/window.php:35
515
- #: ../tinymce3/window.php:35
516
  msgid "Gallery"
517
  msgstr "Galerie"
518
 
519
  #: ../admin/admin.php:76
520
- #: ../admin/wp25/admin.php:73
521
  msgid "Add Gallery"
522
  msgstr "Bilder/Galerie hinzufügen"
523
 
524
  #: ../admin/admin.php:77
525
- #: ../admin/wp25/admin.php:74
526
  msgid "Manage Gallery"
527
  msgstr "Galerie verwalten"
528
 
529
  #: ../admin/admin.php:78
530
- #: ../admin/wp25/admin.php:75
531
- #: ../tinymce/window.php:36
532
- #: ../tinymce3/window.php:36
533
  msgid "Album"
534
  msgstr "Album"
535
 
536
  #: ../admin/admin.php:79
537
- #: ../admin/wp25/admin.php:76
538
  msgid "Options"
539
  msgstr "Optionen"
540
 
541
  #: ../admin/admin.php:81
542
- #: ../admin/wp25/admin.php:78
543
  msgid "Style"
544
  msgstr "Style"
545
 
546
  #: ../admin/admin.php:82
547
- #: ../admin/wp25/admin.php:79
548
  msgid "Setup Gallery"
549
  msgstr "Galerie Setup"
550
 
551
  #: ../admin/admin.php:82
552
- #: ../admin/wp25/admin.php:79
553
  msgid "Setup"
554
  msgstr "Setup"
555
 
556
  #: ../admin/admin.php:84
557
- #: ../admin/wp25/admin.php:81
558
  msgid "Roles"
559
  msgstr "Zugriff"
560
 
561
  #: ../admin/admin.php:85
562
- #: ../admin/wp25/admin.php:82
563
  msgid "About this Gallery"
564
  msgstr "Über diese Galerie"
565
 
566
  #: ../admin/admin.php:85
567
- #: ../admin/wp25/admin.php:82
568
  msgid "About"
569
  msgstr "Über"
570
 
571
  #: ../admin/admin.php:87
572
- #: ../admin/wp25/admin.php:84
573
- #: ../admin/wp25/media-upload.php:11
574
  msgid "NextGEN Gallery"
575
  msgstr "NextGEN Gallery"
576
 
577
  #: ../admin/album.php:19
578
  #: ../admin/album.php:37
579
- #: ../admin/wp25/album.php:19
580
- #: ../admin/wp25/album.php:36
581
- #: ../admin/wp25/settings.php:33
582
  msgid "Update Successfully"
583
  msgstr "Update erfolgreich"
584
 
585
  #: ../admin/album.php:45
586
- #: ../admin/wp25/album.php:44
587
  msgid "Album deleted"
588
  msgstr "Album gelöscht"
589
 
590
  #: ../admin/album.php:122
591
- #: ../admin/wp25/album.php:119
592
  msgid "Manage Albums"
593
  msgstr "Verwalte Alben"
594
 
595
  #: ../admin/album.php:128
596
- #: ../admin/wp25/album.php:125
597
- #: ../tinymce/window.php:74
598
- #: ../tinymce3/window.php:74
599
  msgid "Select album"
600
  msgstr "Wähle Album"
601
 
602
  #: ../admin/album.php:131
603
- #: ../admin/wp25/album.php:128
604
  msgid "No album selected"
605
  msgstr "Kein Album ausgewählt"
606
 
607
  #: ../admin/album.php:144
608
- #: ../admin/wp25/album.php:141
609
  msgid "Add new album"
610
  msgstr "Album hinzufügen"
611
 
612
  #: ../admin/album.php:148
613
  #: ../admin/manage.php:309
614
  #: ../admin/manage.php:580
615
- #: ../admin/wp25/album.php:146
616
- #: ../admin/wp25/manage.php:314
617
- #: ../admin/wp25/manage.php:556
618
  msgid "Delete"
619
  msgstr "Lösche"
620
 
621
  #: ../admin/album.php:148
622
- #: ../admin/wp25/album.php:146
623
  msgid "Delete album ?"
624
  msgstr "Lösche Album ?"
625
 
@@ -631,86 +516,58 @@ msgstr "Lösche Album ?"
631
  #: ../admin/settings.php:378
632
  #: ../admin/settings.php:490
633
  #: ../admin/settings.php:598
634
- #: ../admin/wpmu.php:98
635
- #: ../admin/wp25/album.php:148
636
- #: ../admin/wp25/settings.php:160
637
- #: ../admin/wp25/settings.php:198
638
- #: ../admin/wp25/settings.php:243
639
- #: ../admin/wp25/settings.php:321
640
- #: ../admin/wp25/settings.php:366
641
- #: ../admin/wp25/settings.php:472
642
- #: ../admin/wp25/settings.php:580
643
- #: ../admin/wp25/wpmu.php:98
644
  msgid "Update"
645
  msgstr "Aktualisiere"
646
 
647
  #: ../admin/album.php:158
648
- #: ../admin/wp25/album.php:157
649
  msgid "[Show all]"
650
  msgstr "[Alle zeigen]"
651
 
652
  #: ../admin/album.php:159
653
- #: ../admin/wp25/album.php:158
654
  msgid "[Maximize]"
655
  msgstr "[Vergrößern]"
656
 
657
  #: ../admin/album.php:160
658
- #: ../admin/wp25/album.php:159
659
  msgid "[Minimize]"
660
  msgstr "[Verkleinern]"
661
 
662
  #: ../admin/album.php:162
663
- #: ../admin/wp25/album.php:161
664
  msgid "After you create and select a album, you can drag and drop a gallery into your album below"
665
  msgstr "Nachdem du ein Album erstellt und ausgewählt hast, kannst du per Drag & Drop eine Galerie in das Album ziehen"
666
 
667
  #: ../admin/album.php:169
668
- #: ../admin/wp25/album.php:168
669
  msgid "Select Gallery"
670
  msgstr "Wähle Galerie"
671
 
672
  #: ../admin/album.php:208
673
- #: ../admin/wp25/album.php:207
674
  msgid "Album Page ID"
675
  msgstr "Album Seiten ID (Page ID)"
676
 
677
  #: ../admin/album.php:220
678
- #: ../admin/wp25/album.php:219
679
  msgid "No album selected!"
680
  msgstr "Kein Album ausgewählt"
681
 
682
  #: ../admin/album.php:256
683
  #: ../admin/manage.php:283
684
  #: ../admin/manage.php:535
685
- #: ../admin/wp25/album.php:255
686
- #: ../admin/wp25/manage.php:288
687
- #: ../admin/wp25/manage.php:511
688
  msgid "ID"
689
  msgstr "ID"
690
 
691
  #: ../admin/album.php:257
692
- #: ../admin/wp25/album.php:256
693
  msgid "Name"
694
  msgstr "Name"
695
 
696
  #: ../admin/album.php:258
697
  #: ../admin/manage.php:285
698
  #: ../admin/manage.php:446
699
- #: ../admin/js/uploadtab.js.php:109
700
- #: ../admin/wp25/album.php:257
701
- #: ../admin/wp25/manage.php:290
702
- #: ../admin/wp25/manage.php:415
703
- #: ../lib/nggmeta.lib.php:375
704
  msgid "Title"
705
  msgstr "Titel"
706
 
707
  #: ../admin/album.php:259
708
- #: ../admin/wp25/album.php:258
709
  msgid "Page"
710
  msgstr "Seite"
711
 
712
  #: ../admin/functions.php:20
713
- #: ../admin/wp25/functions.php:20
714
  msgid "No valid gallery name!"
715
  msgstr "Kein gültiger Galerie-Name!"
716
 
@@ -719,352 +576,262 @@ msgstr "Kein gültiger Galerie-Name!"
719
  #: ../admin/functions.php:50
720
  #: ../admin/functions.php:102
721
  #: ../admin/functions.php:109
722
- #: ../admin/wp25/functions.php:27
723
- #: ../admin/wp25/functions.php:36
724
- #: ../admin/wp25/functions.php:50
725
- #: ../admin/wp25/functions.php:102
726
- #: ../admin/wp25/functions.php:109
727
  msgid "Directory"
728
  msgstr "Verzeichnis"
729
 
730
  #: ../admin/functions.php:27
731
- #: ../admin/wp25/functions.php:27
732
  msgid "didn't exist. Please create first the main gallery folder "
733
  msgstr "nicht gefunden. Bitte erstelle zuerst das Hauptverzeichnis."
734
 
735
  #: ../admin/functions.php:28
736
  #: ../admin/functions.php:37
737
- #: ../admin/wp25/functions.php:28
738
- #: ../admin/wp25/functions.php:37
739
  msgid "Check this link, if you didn't know how to set the permission :"
740
  msgstr "Dieser Link zeigt dir wie man Verzeichnisrechte ändert :"
741
 
742
  #: ../admin/functions.php:36
743
  #: ../admin/functions.php:50
744
- #: ../admin/wp25/functions.php:36
745
- #: ../admin/wp25/functions.php:50
746
  msgid "is not writeable !"
747
  msgstr "ist schreibgeschützt !"
748
 
749
  #: ../admin/functions.php:45
750
  #: ../admin/functions.php:55
751
  #: ../admin/functions.php:525
752
- #: ../admin/wp25/functions.php:45
753
- #: ../admin/wp25/functions.php:55
754
- #: ../admin/wp25/functions.php:525
755
- #: ../lib/nggallery.lib.php:299
756
  msgid "Unable to create directory "
757
  msgstr "Kann Verzeichnis nicht erstellen "
758
 
759
  #: ../admin/functions.php:59
760
- #: ../admin/wp25/functions.php:59
761
  msgid "The server setting Safe-Mode is on !"
762
  msgstr "Auf dem Server ist Safe-Mode aktiviert (PHP.INI)"
763
 
764
  #: ../admin/functions.php:60
765
- #: ../admin/wp25/functions.php:60
766
  msgid "If you have problems, please create directory"
767
  msgstr "Wenn Probleme auftreten, erstelle bitte das Verzeichnis"
768
 
769
  #: ../admin/functions.php:61
770
- #: ../admin/wp25/functions.php:61
771
  msgid "and the thumbnails directory"
772
  msgstr "und das Thumbnails-Verzeichnis"
773
 
774
  #: ../admin/functions.php:61
775
- #: ../admin/wp25/functions.php:61
776
  msgid "with permission 777 manually !"
777
  msgstr "mit den Berechtigungen 777 manuell !"
778
 
779
  #: ../admin/functions.php:78
780
- #: ../admin/wp25/functions.php:78
781
  msgid "already exists"
782
  msgstr "gibt es bereits"
783
 
784
  #: ../admin/functions.php:82
785
  #: ../admin/functions.php:128
786
- #: ../admin/wp25/functions.php:82
787
- #: ../admin/wp25/functions.php:128
788
  msgid "successfully created!"
789
  msgstr "erfolgreich erstellt!"
790
 
791
  #: ../admin/functions.php:82
792
- #: ../admin/wp25/functions.php:82
793
  msgid "You can show this gallery with the tag"
794
  msgstr "Du kannst diese Galerie mit dem Stichwort anzeigen :"
795
 
796
  #: ../admin/functions.php:102
797
- #: ../admin/wp25/functions.php:102
798
  msgid "doesn&#96;t exist!"
799
  msgstr "gibt es nicht !"
800
 
801
  #: ../admin/functions.php:109
802
- #: ../admin/wp25/functions.php:109
803
  msgid "contains no pictures"
804
  msgstr "enthält keine Bilder"
805
 
806
  #: ../admin/functions.php:125
807
- #: ../admin/wp25/functions.php:125
808
  msgid "Database error. Could not add gallery!"
809
  msgstr "Datenbank-Fehler. Kann Galerie nicht hinzufügen!"
810
 
811
  #: ../admin/functions.php:144
812
- #: ../admin/wp25/functions.php:144
813
  msgid " picture(s) successfully added"
814
  msgstr " Bild(er) erfolgreich hinzugefügt"
815
 
816
  #: ../admin/functions.php:175
817
  #: ../admin/functions.php:224
818
  #: ../admin/functions.php:287
819
- #: ../admin/wp25/functions.php:175
820
- #: ../admin/wp25/functions.php:224
821
- #: ../admin/wp25/functions.php:287
822
  msgid "Running... Please wait"
823
  msgstr "Läuft... Bitte warten"
824
 
825
  #: ../admin/functions.php:176
826
  #: ../admin/manage.php:510
827
- #: ../admin/wp25/functions.php:176
828
- #: ../admin/wp25/manage.php:484
829
  msgid "Resize images"
830
  msgstr "Bilder verkleinern"
831
 
832
  #: ../admin/functions.php:200
833
- #: ../admin/wp25/functions.php:200
834
  msgid " : Image resized..."
835
  msgstr " : Bild angepasst..."
836
 
837
  #: ../admin/functions.php:209
838
  #: ../admin/functions.php:266
839
- #: ../admin/wp25/functions.php:209
840
- #: ../admin/wp25/functions.php:266
841
  msgid "Some pictures are not writeable :"
842
  msgstr "Einige Bilder sind schreibgeschützt :"
843
 
844
  #: ../admin/functions.php:225
845
  #: ../admin/manage.php:508
846
- #: ../admin/wp25/functions.php:225
847
- #: ../admin/wp25/manage.php:482
848
  msgid "Set watermark"
849
  msgstr "Wasserzeichen setzen"
850
 
851
  #: ../admin/functions.php:257
852
- #: ../admin/wp25/functions.php:257
853
  msgid " : Watermark created..."
854
  msgstr " : Wasserzeichen gesetzt..."
855
 
856
  #: ../admin/functions.php:288
857
  #: ../admin/manage.php:509
858
- #: ../admin/wp25/functions.php:288
859
- #: ../admin/wp25/manage.php:483
860
  msgid "Create new thumbnails"
861
  msgstr "Neue Thumbnails erstellen"
862
 
863
  #: ../admin/functions.php:355
864
- #: ../admin/wp25/functions.php:355
865
  msgid " : Thumbnail created..."
866
  msgstr ": Thumbnail erstellt..."
867
 
868
  #: ../admin/functions.php:360
869
- #: ../admin/wp25/functions.php:360
870
  msgid "Follow thumbnails could not created."
871
  msgstr "Folgende Thumbnails konnten nicht erstellt werden :"
872
 
873
  #: ../admin/functions.php:361
874
- #: ../admin/wp25/functions.php:361
875
  msgid "Some thumbnails are not writeable :"
876
  msgstr "Einige Thumbnails sind schreibgeschützt :"
877
 
878
  #: ../admin/functions.php:460
879
- #: ../admin/wp25/functions.php:460
880
  msgid "The Zip-file is too large. Exceed Memory limit !"
881
  msgstr "Das Zip-File ist zu groß. Speicherlimit überschritten !"
882
 
883
  #: ../admin/functions.php:501
884
- #: ../admin/wp25/functions.php:501
885
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
886
  msgstr "Die hochgeladene Datei war keine korrekte Zip-Datei. Servermeldung :"
887
 
888
  #: ../admin/functions.php:520
889
- #: ../admin/wp25/functions.php:520
890
  #, php-format
891
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
892
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
893
 
894
  #: ../admin/functions.php:535
895
- #: ../admin/wp25/functions.php:535
896
  msgid "Zip-File successfully unpacked"
897
  msgstr "Zip-Datei erfolgreich entpackt"
898
 
899
  #: ../admin/functions.php:571
900
  #: ../admin/functions.php:681
901
- #: ../admin/wp25/functions.php:571
902
- #: ../admin/wp25/functions.php:681
903
  msgid "Failure in database, no gallery path set !"
904
  msgstr "Datenbankfehler! Kein Galerie-Pfad gesetzt !"
905
 
906
  #: ../admin/functions.php:592
907
  #: ../admin/functions.php:674
908
- #: ../admin/wp25/functions.php:592
909
- #: ../admin/wp25/functions.php:674
910
  msgid "is no valid image file!"
911
  msgstr "ist keine zulässige Bilddatei !"
912
 
913
  #: ../admin/functions.php:606
914
- #: ../admin/wp25/functions.php:606
915
  #, php-format
916
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
917
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
918
 
919
  #: ../admin/functions.php:613
920
  #: ../admin/functions.php:698
921
- #: ../admin/wp25/functions.php:613
922
- #: ../admin/wp25/functions.php:698
923
  msgid "Error, the file could not moved to : "
924
  msgstr "Fehler: Diese Datei kann nicht verschoben werden zu :"
925
 
926
  #: ../admin/functions.php:618
927
  #: ../admin/functions.php:702
928
- #: ../admin/wp25/functions.php:618
929
- #: ../admin/wp25/functions.php:702
930
  msgid "Error, the file permissions could not set"
931
  msgstr "Fehler: Die Berechtigungen für diese Datei können nicht gesetzt werden"
932
 
933
  #: ../admin/functions.php:637
934
- #: ../admin/wp25/functions.php:637
935
  msgid " Image(s) successfully added"
936
  msgstr " Bild(er) erfolgreich hinzugefügt"
937
 
938
  #: ../admin/functions.php:661
939
- #: ../admin/wp25/functions.php:661
940
  msgid "Invalid upload. Error Code : "
941
  msgstr "Ungültiger Upload. Fehler Code :"
942
 
943
  #: ../admin/functions.php:713
944
- #: ../admin/wp25/functions.php:713
945
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
946
  msgstr "Schade, dein freier Speicher scheint aufgebraucht zu sein. Bitte lösche zuerst ein paar Bilder."
947
 
948
  #: ../admin/functions.php:740
949
- #: ../admin/wp25/functions.php:740
950
  #, php-format
951
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
952
  msgstr "SAFE MODE Einschränkungen ist aktiv. Du must das Verzeichnis <strong>%s</strong> manuell anlegen."
953
 
954
  #: ../admin/functions.php:741
955
- #: ../admin/wp25/functions.php:741
956
  #, php-format
957
  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"
958
  msgstr "Wenn der Safe-Mode eingeschaltet ist, überprüft PHP ob der Besitzer (%s) des Skript mit dem Besitzer (%s) der Datei/Verzeichnis übereinstimmt."
959
 
960
  #: ../admin/manage.php:64
961
  #: ../admin/manage.php:85
962
- #: ../admin/wp25/manage.php:64
963
- #: ../admin/wp25/manage.php:85
964
  msgid "deleted successfully"
965
  msgstr "erfolgreich gelöscht"
966
 
967
  #: ../admin/manage.php:111
968
- #: ../admin/wp25/manage.php:111
969
  msgid "Watermark successfully added"
970
  msgstr "Wasserzeichen erfolgreich erstellt"
971
 
972
  #: ../admin/manage.php:116
973
- #: ../admin/wp25/manage.php:116
974
  msgid "Thumbnails successfully created. Please refresh your browser cache."
975
  msgstr "Thumbnails erfolgreich erstellt. Bitte Browser-Cache aktualisieren."
976
 
977
  #: ../admin/manage.php:121
978
- #: ../admin/wp25/manage.php:121
979
  msgid "Images successfully resized"
980
  msgstr "Bilder erfolgreich verkleinert"
981
 
982
  #: ../admin/manage.php:139
983
- #: ../admin/wp25/manage.php:139
984
  msgid "Pictures deleted successfully "
985
  msgstr "Bilder erfolgreich gelöscht"
986
 
987
  #: ../admin/manage.php:145
988
- #: ../admin/wp25/manage.php:145
989
  msgid "Import metadata finished"
990
  msgstr "Import der Metadaten beendet"
991
 
992
  #: ../admin/manage.php:195
993
- #: ../admin/wp25/manage.php:195
994
  msgid "Tags changed"
995
  msgstr "Stichwörter geändert"
996
 
997
  #: ../admin/manage.php:215
998
- #: ../admin/wp25/manage.php:215
999
  msgid "Update successful"
1000
  msgstr "Aktualisierung erfolgreich"
1001
 
1002
  #: ../admin/manage.php:248
1003
- #: ../admin/wp25/manage.php:248
1004
  msgid "New gallery page ID"
1005
  msgstr "Neue Galerie Seiten ID"
1006
 
1007
  #: ../admin/manage.php:248
1008
- #: ../admin/wp25/manage.php:248
1009
  msgid "created"
1010
  msgstr "erstellt"
1011
 
1012
  #: ../admin/manage.php:279
1013
- #: ../admin/wp25/manage.php:283
1014
  msgid "Gallery Overview"
1015
  msgstr "Galerie Übersicht"
1016
 
1017
  #: ../admin/manage.php:284
1018
- #: ../admin/wp25/manage.php:289
1019
  msgid "Gallery name"
1020
  msgstr "Galerie Name"
1021
 
1022
  #: ../admin/manage.php:286
1023
  #: ../admin/manage.php:465
1024
  #: ../admin/manage.php:541
1025
- #: ../admin/style.php:102
1026
- #: ../admin/uploadtab.php:180
1027
- #: ../admin/js/uploadtab.js.php:172
1028
- #: ../admin/wp25/manage.php:291
1029
- #: ../admin/wp25/manage.php:434
1030
- #: ../admin/wp25/manage.php:517
1031
- #: ../admin/wp25/media-upload.php:186
1032
- #: ../admin/wp25/style.php:109
1033
  msgid "Description"
1034
  msgstr "Beschreibung"
1035
 
1036
  #: ../admin/manage.php:287
1037
- #: ../admin/wp25/manage.php:292
1038
  msgid "Page ID"
1039
  msgstr "Seiten ID (Page ID)"
1040
 
1041
  #: ../admin/manage.php:288
1042
- #: ../admin/wp25/manage.php:293
1043
  msgid "Quantity"
1044
  msgstr "Anzahl"
1045
 
1046
  #: ../admin/manage.php:289
1047
  #: ../admin/manage.php:547
1048
- #: ../admin/wp25/manage.php:294
1049
- #: ../admin/wp25/manage.php:523
1050
  msgid "Action"
1051
  msgstr "Aktion"
1052
 
1053
  #: ../admin/manage.php:308
1054
- #: ../admin/js/uploadtab.js.php:93
1055
- #: ../admin/wp25/manage.php:313
1056
  msgid "Edit"
1057
  msgstr "Bearbeiten"
1058
 
1059
  #: ../admin/manage.php:309
1060
- #: ../admin/wp25/manage.php:314
1061
  msgid "Delete this gallery ?"
1062
  msgstr "Diese Galerie löschen ?"
1063
 
1064
  #: ../admin/manage.php:314
1065
  #: ../admin/manage.php:585
1066
- #: ../admin/wp25/manage.php:319
1067
- #: ../admin/wp25/manage.php:561
1068
  msgid "No entries found"
1069
  msgstr "Keine Einträge gefunden"
1070
 
@@ -1073,108 +840,83 @@ msgid "Main settings"
1073
  msgstr "Haupteinstellungen"
1074
 
1075
  #: ../admin/manage.php:448
1076
- #: ../admin/wp25/manage.php:417
1077
  msgid "Page Link to"
1078
  msgstr "Seite verlinkt zu"
1079
 
1080
  #: ../admin/manage.php:451
1081
- #: ../admin/wp25/manage.php:420
1082
  msgid "Not linked"
1083
  msgstr "Nicht verlinkt"
1084
 
1085
  #: ../admin/manage.php:467
1086
- #: ../admin/wp25/manage.php:436
1087
  msgid "Preview image"
1088
  msgstr "Vorschau-Bild"
1089
 
1090
  #: ../admin/manage.php:470
1091
- #: ../admin/wp25/manage.php:439
1092
  msgid "No Picture"
1093
  msgstr "Kein Bild"
1094
 
1095
  #: ../admin/manage.php:485
1096
- #: ../admin/wp25/manage.php:454
1097
  msgid "Path"
1098
  msgstr "Pfad"
1099
 
1100
  #: ../admin/manage.php:488
1101
- #: ../admin/wp25/manage.php:457
1102
  msgid "Create new page"
1103
  msgstr "Neue Seite erstellen"
1104
 
1105
  #: ../admin/manage.php:491
1106
- #: ../admin/wp25/manage.php:460
1107
  msgid "Main page (No parent)"
1108
  msgstr "Haupseite (keine Unterseite)"
1109
 
1110
  #: ../admin/manage.php:494
1111
- #: ../admin/wp25/manage.php:463
1112
  msgid "Add page"
1113
  msgstr "Seite hinzufügen"
1114
 
1115
  #: ../admin/manage.php:500
1116
- #: ../admin/wp25/manage.php:470
1117
  msgid "Scan Folder for new images"
1118
  msgstr "Überprüfe Verzeichniss nach neuen Bildern"
1119
 
1120
  #: ../admin/manage.php:501
1121
  #: ../admin/manage.php:592
1122
- #: ../admin/wp25/manage.php:471
1123
- #: ../admin/wp25/manage.php:504
1124
- #: ../admin/wp25/manage.php:567
1125
  msgid "Save Changes"
1126
  msgstr "Änderungen Speichern"
1127
 
1128
  #: ../admin/manage.php:506
1129
- #: ../admin/wp25/manage.php:480
1130
  msgid "No action"
1131
  msgstr "Keine Aktion"
1132
 
1133
  #: ../admin/manage.php:511
1134
- #: ../admin/wp25/manage.php:485
1135
  msgid "Delete images"
1136
  msgstr "Bilder löschen"
1137
 
1138
  #: ../admin/manage.php:512
1139
- #: ../admin/wp25/manage.php:486
1140
  msgid "Import metadata"
1141
  msgstr "Metadaten importieren"
1142
 
1143
  #: ../admin/manage.php:514
1144
- #: ../admin/wp25/manage.php:488
1145
  msgid "Add tags"
1146
  msgstr "Stichwörter hinzufügen"
1147
 
1148
  #: ../admin/manage.php:515
1149
- #: ../admin/wp25/manage.php:489
1150
  msgid "Delete tags"
1151
  msgstr "Stichwörter löschen"
1152
 
1153
  #: ../admin/manage.php:516
1154
- #: ../admin/wp25/manage.php:490
1155
  msgid "Overwrite tags"
1156
  msgstr "Stichwörter überschreiben"
1157
 
1158
  #: ../admin/manage.php:520
1159
  #: ../admin/manage.php:521
1160
  #: ../admin/manage.php:610
1161
- #: ../admin/wp25/manage.php:494
1162
- #: ../admin/wp25/manage.php:495
1163
- #: ../admin/wp25/manage.php:585
1164
  msgid "OK"
1165
  msgstr "OK"
1166
 
1167
  #: ../admin/manage.php:520
1168
  #: ../admin/manage.php:610
1169
- #: ../admin/wp25/manage.php:494
1170
- #: ../admin/wp25/manage.php:585
1171
  msgid "No images selected"
1172
  msgstr "Keine Bilder ausgewählt"
1173
 
1174
  #: ../admin/manage.php:520
1175
  #: ../admin/manage.php:610
1176
- #: ../admin/wp25/manage.php:494
1177
- #: ../admin/wp25/manage.php:585
1178
  #, php-format
1179
  msgid ""
1180
  "You are about to start the bulk edit for %s images \n"
@@ -1186,95 +928,71 @@ msgstr ""
1186
  " 'Abbrechenl' um zu stoppen, 'OK' um die Bearbeitung durchzuführen."
1187
 
1188
  #: ../admin/manage.php:522
1189
- #: ../admin/wp25/manage.php:496
1190
  msgid "Hide thumbnails "
1191
  msgstr "Thumbnails verstecken"
1192
 
1193
  #: ../admin/manage.php:523
1194
- #: ../admin/wp25/manage.php:497
1195
  msgid "Show thumbnails "
1196
  msgstr "Thumbnails zeigen"
1197
 
1198
  #: ../admin/manage.php:524
1199
- #: ../admin/wp25/manage.php:498
1200
  msgid "Show tags"
1201
  msgstr "Zeige Tags"
1202
 
1203
  #: ../admin/manage.php:525
1204
- #: ../admin/wp25/manage.php:499
1205
  msgid "Hide tags"
1206
  msgstr "Verstecke Tags"
1207
 
1208
  #: ../admin/manage.php:527
1209
- #: ../admin/wp25/manage.php:501
1210
  msgid "Sort gallery"
1211
  msgstr "Sortiere Bilder"
1212
 
1213
  #: ../admin/manage.php:536
1214
  #: ../admin/settings.php:320
1215
- #: ../admin/wp25/manage.php:512
1216
- #: ../admin/wp25/settings.php:310
1217
  msgid "File name"
1218
  msgstr "Dateiname"
1219
 
1220
  #: ../admin/manage.php:538
1221
- #: ../admin/js/uploadtab.js.php:106
1222
- #: ../admin/wp25/manage.php:514
1223
- #: ../admin/wp25/media-upload.php:207
1224
  msgid "Thumbnail"
1225
  msgstr "Thumbnail"
1226
 
1227
  #: ../admin/manage.php:542
1228
- #: ../admin/uploadtab.php:176
1229
- #: ../admin/js/uploadtab.js.php:169
1230
- #: ../admin/wp25/manage.php:518
1231
  msgid "Alt &amp; Title Text"
1232
  msgstr "Alt &amp; Titel Text"
1233
 
1234
  #: ../admin/manage.php:543
1235
- #: ../admin/wp25/manage.php:519
1236
  msgid "exclude"
1237
  msgstr "ausschließen"
1238
 
1239
  #: ../admin/manage.php:545
1240
- #: ../admin/wp25/manage.php:521
1241
  msgid "Tags (comma separated list)"
1242
  msgstr "Stichwörter (Tags)"
1243
 
1244
  #: ../admin/manage.php:578
1245
- #: ../admin/wp25/manage.php:554
1246
  msgid "View"
1247
  msgstr "Ansehen"
1248
 
1249
  #: ../admin/manage.php:579
1250
- #: ../admin/wp25/manage.php:555
1251
  msgid "Show Meta data"
1252
  msgstr "Zeige Metadaten"
1253
 
1254
  #: ../admin/manage.php:579
1255
- #: ../admin/wp25/manage.php:555
1256
  msgid "Meta"
1257
  msgstr "Meta"
1258
 
1259
  #: ../admin/manage.php:580
1260
- #: ../admin/wp25/manage.php:556
1261
  msgid "Delete this file ?"
1262
  msgstr "Diese Datei löschen ?"
1263
 
1264
  #: ../admin/manage.php:607
1265
- #: ../admin/wp25/manage.php:582
1266
  msgid "Enter the tags"
1267
  msgstr "Stichwörter angeben"
1268
 
1269
  #: ../admin/manage.php:610
1270
- #: ../admin/wp25/manage.php:585
1271
- #: ../tinymce/window.php:147
1272
- #: ../tinymce3/window.php:147
1273
  msgid "Cancel"
1274
  msgstr "Abbrechen"
1275
 
1276
  #: ../admin/overview.php:18
1277
- #: ../admin/wp25/overview.php:24
1278
  msgid "NextGEN Gallery Overview"
1279
  msgstr "NextGEN Galerie Übersicht"
1280
 
@@ -1283,28 +1001,23 @@ msgid "Summary"
1283
  msgstr "Zusammenfassung"
1284
 
1285
  #: ../admin/overview.php:30
1286
- #: ../admin/wp25/overview.php:49
1287
  #, php-format
1288
  msgid "There are totally %1$s pictures in %2$s galleries, which are spread across %3$s albums."
1289
  msgstr "Es gibt insgesamt %1$s Bilder in %2$s Galerien - verteilt in %3$s Alben."
1290
 
1291
  #: ../admin/overview.php:34
1292
- #: ../admin/wp25/overview.php:28
1293
  msgid "New Version available"
1294
  msgstr "Neue Version verfügbar !!"
1295
 
1296
  #: ../admin/overview.php:35
1297
- #: ../admin/wp25/overview.php:29
1298
  msgid "The server reports that a new NextGEN Gallery Version is now available. Please visit the plugin homepage for more information."
1299
  msgstr "Der Server benachrichtigt Dich über eine neu verfügbare Version der NextGEN Galerie. Bitte besuche die Plugin Homepage um weitere Informationen zu erhalten."
1300
 
1301
  #: ../admin/overview.php:36
1302
- #: ../admin/wp25/overview.php:30
1303
  msgid "Download here"
1304
  msgstr "Hier dowloaden"
1305
 
1306
  #: ../admin/overview.php:42
1307
- #: ../admin/wp25/overview.php:103
1308
  msgid "Server Settings"
1309
  msgstr "Server- Einstellungen"
1310
 
@@ -1313,12 +1026,10 @@ msgid "Welcome"
1313
  msgstr "Willkommen"
1314
 
1315
  #: ../admin/overview.php:54
1316
- #: ../admin/wp25/overview.php:54
1317
  msgid "gallery administrator"
1318
  msgstr "Galerie-Administrator"
1319
 
1320
  #: ../admin/overview.php:54
1321
- #: ../admin/wp25/overview.php:54
1322
  msgid "gallery editor"
1323
  msgstr "Galerie-Mitarbeiter"
1324
 
@@ -1344,23 +1055,19 @@ msgid "Change the settings of NextGEN Gallery"
1344
  msgstr "Ändere die Einstellungen von NextGEN Galerie"
1345
 
1346
  #: ../admin/overview.php:66
1347
- #: ../admin/wp25/overview.php:64
1348
  msgid "Latest News"
1349
  msgstr "Letzte Informationen"
1350
 
1351
  #: ../admin/overview.php:85
1352
- #: ../admin/wp25/overview.php:85
1353
  #, php-format
1354
  msgid "Newsfeed could not be loaded. Check the <a href=\"%s\">front page</a> to check for updates."
1355
  msgstr "Der Newsfeed kann nicht geladen werden. Schaue auf die <a href=\"%s\">Hauptseite</a> um Updates mitzubekommen."
1356
 
1357
  #: ../admin/overview.php:98
1358
- #: ../admin/wp25/overview.php:124
1359
  msgid "GD support"
1360
  msgstr "GD Unterstützung"
1361
 
1362
  #: ../admin/overview.php:109
1363
- #: ../admin/wp25/overview.php:135
1364
  msgid "No GD support"
1365
  msgstr "Keine GD Unterstützung"
1366
 
@@ -1368,10 +1075,6 @@ msgstr "Keine GD Unterstützung"
1368
  #: ../admin/overview.php:154
1369
  #: ../admin/overview.php:157
1370
  #: ../admin/overview.php:160
1371
- #: ../admin/wp25/overview.php:142
1372
- #: ../admin/wp25/overview.php:180
1373
- #: ../admin/wp25/overview.php:183
1374
- #: ../admin/wp25/overview.php:186
1375
  msgid "Yes"
1376
  msgstr "Ja"
1377
 
@@ -1379,29 +1082,20 @@ msgstr "Ja"
1379
  #: ../admin/overview.php:155
1380
  #: ../admin/overview.php:158
1381
  #: ../admin/overview.php:161
1382
- #: ../admin/wp25/overview.php:143
1383
- #: ../admin/wp25/overview.php:181
1384
- #: ../admin/wp25/overview.php:184
1385
- #: ../admin/wp25/overview.php:187
1386
  msgid "No"
1387
  msgstr "Nein"
1388
 
1389
  #: ../admin/overview.php:131
1390
- #: ../admin/wp25/overview.php:157
1391
  msgid "Not set"
1392
  msgstr "Nicht gesetzt"
1393
 
1394
  #: ../admin/overview.php:133
1395
  #: ../admin/overview.php:136
1396
- #: ../admin/wp25/overview.php:159
1397
- #: ../admin/wp25/overview.php:162
1398
  msgid "On"
1399
  msgstr "An"
1400
 
1401
  #: ../admin/overview.php:134
1402
  #: ../admin/overview.php:137
1403
- #: ../admin/wp25/overview.php:160
1404
- #: ../admin/wp25/overview.php:163
1405
  msgid "Off"
1406
  msgstr "Aus"
1407
 
@@ -1410,849 +1104,660 @@ msgstr "Aus"
1410
  #: ../admin/overview.php:146
1411
  #: ../admin/overview.php:149
1412
  #: ../admin/overview.php:152
1413
- #: ../admin/wp25/overview.php:166
1414
- #: ../admin/wp25/overview.php:169
1415
- #: ../admin/wp25/overview.php:172
1416
- #: ../admin/wp25/overview.php:175
1417
- #: ../admin/wp25/overview.php:178
1418
  msgid "N/A"
1419
  msgstr "N/A"
1420
 
1421
  #: ../admin/overview.php:151
1422
- #: ../admin/wp25/overview.php:177
1423
  msgid " MByte"
1424
  msgstr " MByte"
1425
 
1426
  #: ../admin/overview.php:164
1427
- #: ../admin/wp25/overview.php:190
1428
  msgid "Operating System"
1429
  msgstr "Betriebssystem"
1430
 
1431
  #: ../admin/overview.php:165
1432
- #: ../admin/wp25/overview.php:191
1433
  msgid "Server"
1434
  msgstr "Server"
1435
 
1436
  #: ../admin/overview.php:166
1437
- #: ../admin/wp25/overview.php:192
1438
  msgid "Memory usage"
1439
  msgstr "Speicherverbrauch"
1440
 
1441
  #: ../admin/overview.php:167
1442
- #: ../admin/wp25/overview.php:193
1443
  msgid "MYSQL Version"
1444
  msgstr "MySQL Version"
1445
 
1446
  #: ../admin/overview.php:168
1447
- #: ../admin/wp25/overview.php:194
1448
  msgid "SQL Mode"
1449
  msgstr "SQL Modus"
1450
 
1451
  #: ../admin/overview.php:169
1452
- #: ../admin/wp25/overview.php:195
1453
  msgid "PHP Version"
1454
  msgstr "PHP Version"
1455
 
1456
  #: ../admin/overview.php:170
1457
- #: ../admin/wp25/overview.php:196
1458
  msgid "PHP Safe Mode"
1459
  msgstr "PHP Safe Mode"
1460
 
1461
  #: ../admin/overview.php:171
1462
- #: ../admin/wp25/overview.php:197
1463
  msgid "PHP Allow URL fopen"
1464
  msgstr "PHP Allow URL fopen"
1465
 
1466
  #: ../admin/overview.php:172
1467
- #: ../admin/wp25/overview.php:198
1468
  msgid "PHP Memory Limit"
1469
  msgstr "PHP Memory Limit"
1470
 
1471
  #: ../admin/overview.php:173
1472
- #: ../admin/wp25/overview.php:199
1473
  msgid "PHP Max Upload Size"
1474
  msgstr "PHP Max Upload Size"
1475
 
1476
  #: ../admin/overview.php:174
1477
- #: ../admin/wp25/overview.php:200
1478
  msgid "PHP Max Post Size"
1479
  msgstr "PHP Max Post Size"
1480
 
1481
  #: ../admin/overview.php:175
1482
- #: ../admin/wp25/overview.php:201
1483
  msgid "PHP Max Script Execute Time"
1484
  msgstr "PHP Max Script Execute Time"
1485
 
1486
  #: ../admin/overview.php:176
1487
- #: ../admin/wp25/overview.php:202
1488
  msgid "PHP Exif support"
1489
  msgstr "PHP Exif Modul"
1490
 
1491
  #: ../admin/overview.php:177
1492
- #: ../admin/wp25/overview.php:203
1493
  msgid "PHP IPTC support"
1494
  msgstr "PHP IPTC Modul"
1495
 
1496
  #: ../admin/overview.php:178
1497
- #: ../admin/wp25/overview.php:204
1498
  msgid "PHP XML support"
1499
  msgstr "PHP XML Modul"
1500
 
1501
  #: ../admin/overview.php:319
1502
- #: ../admin/wp25/overview.php:345
1503
  msgid "Storage Space"
1504
  msgstr "Speicherplatz"
1505
 
1506
  #: ../admin/overview.php:322
1507
- #: ../admin/wp25/overview.php:348
1508
  msgid "Upload Space Used:"
1509
  msgstr "Verbrauchter Uploadspeicher:"
1510
 
1511
  #: ../admin/overview.php:328
1512
- #: ../admin/wp25/overview.php:354
1513
  msgid "Upload Space Remaining:"
1514
  msgstr "Verbleibender Speicher:"
1515
 
1516
  #: ../admin/roles.php:20
1517
- #: ../admin/wp25/roles.php:20
1518
  msgid "Updated capabilities"
1519
  msgstr "Zugriffsrechte geändert"
1520
 
1521
  #: ../admin/roles.php:25
1522
- #: ../admin/wp25/roles.php:25
1523
  msgid "Roles / capabilities"
1524
  msgstr "Rollen / Zugriffsrechte"
1525
 
1526
  #: ../admin/roles.php:26
1527
- #: ../admin/wp25/roles.php:26
1528
  msgid "Select the lowest role which should be able to access the follow capabilities. NextGEN Gallery supports the standard roles from WordPress."
1529
  msgstr "Wähle die niedrigste Rolle aus, die Zugriff haben soll. NextGEN Gallery unterstützt nur die Standard Wordpress Rollen/Fähigkeiten von WordPress."
1530
 
1531
  #: ../admin/roles.php:27
1532
- #: ../admin/wp25/roles.php:27
1533
  msgid "For a more flexible user management you can use the"
1534
  msgstr "Nutze für eine flexiblere Rechteverwaltung den "
1535
 
1536
  #: ../admin/roles.php:33
1537
- #: ../admin/wp25/roles.php:32
1538
  msgid "Main NextGEN Gallery overview"
1539
  msgstr "NextGEN Galerie Übersicht"
1540
 
1541
  #: ../admin/roles.php:37
1542
- #: ../admin/wp25/roles.php:36
1543
  msgid "Use TinyMCE Button / Upload tab"
1544
  msgstr "TinyMCE Button / Upload Tab"
1545
 
1546
  #: ../admin/roles.php:41
1547
- #: ../admin/wp25/roles.php:40
1548
  msgid "Add gallery / Upload images"
1549
  msgstr "Galerie einrichten / Bilder hochladen"
1550
 
1551
  #: ../admin/roles.php:45
1552
- #: ../admin/wp25/roles.php:44
1553
  msgid "Manage gallery"
1554
  msgstr "Galerie verwalten"
1555
 
1556
  #: ../admin/roles.php:49
1557
- #: ../admin/wp25/roles.php:48
1558
  msgid "Edit Album"
1559
  msgstr "Album erstellen"
1560
 
1561
  #: ../admin/roles.php:53
1562
- #: ../admin/wp25/roles.php:52
1563
  msgid "Change style"
1564
  msgstr "Style anpassen"
1565
 
1566
  #: ../admin/roles.php:57
1567
- #: ../admin/wp25/roles.php:56
1568
  msgid "Change options"
1569
  msgstr "Optionen änderen"
1570
 
1571
  #: ../admin/roles.php:61
1572
- #: ../admin/wp25/roles.php:60
1573
  msgid "Update capabilities"
1574
  msgstr "Rechte aktualisieren"
1575
 
1576
  #: ../admin/settings.php:33
1577
- #: ../admin/style.php:16
1578
- #: ../admin/wpmu.php:32
1579
- #: ../admin/wp25/style.php:16
1580
- #: ../admin/wp25/wpmu.php:32
1581
  msgid "Update successfully"
1582
  msgstr "Aktualisierung erfolgreich"
1583
 
1584
  #: ../admin/settings.php:50
1585
- #: ../admin/wp25/settings.php:50
1586
  msgid "Cache cleared"
1587
  msgstr "Cache löschen"
1588
 
1589
  #: ../admin/settings.php:101
1590
  #: ../admin/settings.php:113
1591
- #: ../admin/wp25/settings.php:98
1592
- #: ../admin/wp25/settings.php:110
1593
  msgid "General Options"
1594
  msgstr "Allg. Optionen"
1595
 
1596
  #: ../admin/settings.php:103
1597
- #: ../admin/wp25/settings.php:100
1598
  msgid "Images"
1599
  msgstr "Bilder"
1600
 
1601
  #: ../admin/settings.php:105
1602
  #: ../admin/settings.php:339
1603
- #: ../admin/wp25/settings.php:102
1604
- #: ../admin/wp25/settings.php:328
1605
  msgid "Effects"
1606
  msgstr "Effekte"
1607
 
1608
  #: ../admin/settings.php:106
1609
  #: ../admin/settings.php:392
1610
- #: ../admin/wp25/settings.php:103
1611
- #: ../admin/wp25/settings.php:379
1612
- #: ../tinymce/window.php:123
1613
- #: ../tinymce3/window.php:123
1614
  msgid "Watermark"
1615
  msgstr "Wasserzeichen"
1616
 
1617
  #: ../admin/settings.php:107
1618
  #: ../admin/settings.php:296
1619
  #: ../admin/settings.php:500
1620
- #: ../admin/wp25/settings.php:104
1621
- #: ../admin/wp25/settings.php:286
1622
- #: ../admin/wp25/settings.php:482
1623
- #: ../tinymce/window.php:63
1624
- #: ../tinymce3/window.php:63
1625
  msgid "Slideshow"
1626
  msgstr "Slideshow"
1627
 
1628
  #: ../admin/settings.php:120
1629
- #: ../admin/wpmu.php:48
1630
- #: ../admin/wp25/settings.php:116
1631
- #: ../admin/wp25/wpmu.php:48
1632
  msgid "Gallery path"
1633
  msgstr "Galerie-Pfad"
1634
 
1635
  #: ../admin/settings.php:122
1636
- #: ../admin/wp25/settings.php:118
1637
  msgid "This is the default path for all galleries"
1638
  msgstr "Dies ist der Standard-Pfad für alle Galerien"
1639
 
1640
  #: ../admin/settings.php:133
1641
- #: ../admin/wp25/settings.php:129
1642
  msgid "Delete image files"
1643
  msgstr "Lösche Bilddateien"
1644
 
1645
  #: ../admin/settings.php:135
1646
- #: ../admin/wp25/settings.php:131
1647
  msgid "Delete files, when removing a gallery in the database"
1648
  msgstr "Löscht auch die Dateien, falls die Galerie aus der Datenbank entfernt wird"
1649
 
1650
  #: ../admin/settings.php:138
1651
- #: ../admin/wp25/settings.php:134
1652
  msgid "Activate permalinks"
1653
  msgstr "Aktiviere Permalinks"
1654
 
1655
  #: ../admin/settings.php:140
1656
- #: ../admin/wp25/settings.php:136
1657
  msgid "When you activate this option, you need to update your permalink structure one time."
1658
  msgstr "Wenn du diese Option aktivierst, muss du einmal die Permalink Struktur aktualisieren."
1659
 
1660
  #: ../admin/settings.php:143
1661
- #: ../admin/wp25/settings.php:139
1662
  msgid "Tags / Categories"
1663
  msgstr "Stichwörter / Kategorien"
1664
 
1665
  #: ../admin/settings.php:146
1666
- #: ../admin/wp25/settings.php:142
1667
  msgid "Activate related images"
1668
  msgstr "Verwandte Bilder anzeigen"
1669
 
1670
  #: ../admin/settings.php:148
1671
- #: ../admin/wp25/settings.php:144
1672
  msgid "This option will append related images to every post"
1673
  msgstr "Diese Option hängt verwandte Bilder an jeden Beitrag"
1674
 
1675
  #: ../admin/settings.php:152
1676
- #: ../admin/wp25/settings.php:148
1677
  msgid "Match with"
1678
  msgstr "Vergleiche mit"
1679
 
1680
  #: ../admin/settings.php:153
1681
- #: ../admin/wp25/settings.php:149
1682
  msgid "Categories"
1683
  msgstr "Kategorien"
1684
 
1685
  #: ../admin/settings.php:154
1686
- #: ../admin/wp25/settings.php:150
1687
- #: ../lib/nggmeta.lib.php:377
1688
  msgid "Tags"
1689
  msgstr "Stichwörter"
1690
 
1691
  #: ../admin/settings.php:154
1692
- #: ../admin/wp25/settings.php:150
1693
  msgid " (require WordPress 2.3 or higher)"
1694
  msgstr " (benötigt WordPress 2.3 oder höher)"
1695
 
1696
  #: ../admin/settings.php:158
1697
- #: ../admin/wp25/settings.php:154
1698
  msgid "Max. number of images"
1699
  msgstr "Max. Anzahl der Bilder"
1700
 
1701
  #: ../admin/settings.php:160
1702
- #: ../admin/wp25/settings.php:156
1703
  msgid "0 will show all images"
1704
  msgstr "0 zeige alle verwandten Bilder"
1705
 
1706
  #: ../admin/settings.php:172
1707
- #: ../admin/wp25/settings.php:167
1708
  msgid "Thumbnail settings"
1709
  msgstr "Thumbnail Einstellungen"
1710
 
1711
  #: ../admin/settings.php:177
1712
- #: ../admin/wp25/settings.php:171
1713
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1714
  msgstr "Bitte beachten : Änderungen der Einstellungen werden erst übernommen, wenn Du neue Thumbnails unter -> \"Gallery verwalten\" erstellst"
1715
 
1716
  #: ../admin/settings.php:180
1717
- #: ../admin/wp25/settings.php:174
1718
  msgid "Width x height (in pixel)"
1719
  msgstr "Breite x Höhe (in Pixel)"
1720
 
1721
  #: ../admin/settings.php:182
1722
- #: ../admin/wp25/settings.php:176
1723
  msgid "These values are maximum values "
1724
  msgstr "Diese Angaben sind maximale Angaben."
1725
 
1726
  #: ../admin/settings.php:185
1727
- #: ../admin/wp25/settings.php:179
1728
  msgid "Set fix dimension"
1729
  msgstr "Setze fixe Größe"
1730
 
1731
  #: ../admin/settings.php:187
1732
- #: ../admin/wp25/settings.php:181
1733
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1734
  msgstr "Ignoriere Bildseitenverhältnis"
1735
 
1736
  #: ../admin/settings.php:190
1737
- #: ../admin/wp25/settings.php:184
1738
  msgid "Crop square thumbnail from image"
1739
  msgstr "Mittige Thumbnails aus Bildern ausschneiden"
1740
 
1741
  #: ../admin/settings.php:192
1742
- #: ../admin/wp25/settings.php:186
1743
  msgid "Create square thumbnails, use only the width setting :"
1744
  msgstr "Erstellt viereckige Thumbnails, nutzt nur den Wert der Breite :"
1745
 
1746
  #: ../admin/settings.php:195
1747
- #: ../admin/wp25/settings.php:189
1748
  msgid "Thumbnail quality"
1749
  msgstr "Thumbnail Qualität"
1750
 
1751
  #: ../admin/settings.php:199
1752
  #: ../admin/settings.php:231
1753
- #: ../admin/wp25/settings.php:193
1754
- #: ../admin/wp25/settings.php:223
1755
  msgid "Resample Mode"
1756
  msgstr "Resample Modus"
1757
 
1758
  #: ../admin/settings.php:201
1759
  #: ../admin/settings.php:234
1760
- #: ../admin/wp25/settings.php:195
1761
- #: ../admin/wp25/settings.php:226
1762
  msgid "Value between 1-5 (higher value, more CPU load)"
1763
  msgstr "Wähle zwischen 1-5 (je höhere desto länger braucht der Server)"
1764
 
1765
  #: ../admin/settings.php:212
1766
- #: ../admin/wp25/settings.php:205
1767
  msgid "Image settings"
1768
  msgstr "Bild Einstellungen"
1769
 
1770
  #: ../admin/settings.php:219
1771
- #: ../admin/wp25/settings.php:211
1772
  msgid "Resize Images"
1773
  msgstr "Bilder verkleinern"
1774
 
1775
  #: ../admin/settings.php:223
1776
- #: ../admin/wp25/settings.php:215
1777
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1778
  msgstr "Breite x Höhe (in Pixel). NextGEN Galerie beachtet das Seitenverhältnis."
1779
 
1780
  #: ../admin/settings.php:226
1781
- #: ../admin/wp25/settings.php:218
1782
  msgid "Image quality"
1783
  msgstr "Bild Qualität"
1784
 
1785
  #: ../admin/settings.php:237
1786
- #: ../admin/wp25/settings.php:229
1787
  msgid "Single picture"
1788
  msgstr "Einzelbilder"
1789
 
1790
  #: ../admin/settings.php:240
1791
- #: ../admin/wp25/settings.php:232
1792
  msgid "Cache single pictures"
1793
  msgstr "Nutze Cache für Einzelbidler"
1794
 
1795
  #: ../admin/settings.php:243
1796
- #: ../admin/wp25/settings.php:235
1797
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1798
  msgstr "Erstellt ein Cache-Bild für jedes Einzelbild (singlepic). Reduziert die CPU Belastung."
1799
 
1800
  #: ../admin/settings.php:246
1801
- #: ../admin/wp25/settings.php:238
1802
  msgid "Clear cache folder"
1803
  msgstr "Lösche Cache Verzeichnis"
1804
 
1805
  #: ../admin/settings.php:248
1806
- #: ../admin/wp25/settings.php:240
1807
  msgid "Proceed now"
1808
  msgstr "Jetzt durchführen"
1809
 
1810
  #: ../admin/settings.php:259
1811
- #: ../admin/wp25/settings.php:250
1812
  msgid "Gallery settings"
1813
  msgstr "Galerie Einstellungen"
1814
 
1815
  #: ../admin/settings.php:275
1816
- #: ../admin/wp25/settings.php:265
1817
  msgid "Deactivate gallery page link"
1818
  msgstr "Keine Seitenverzweigung"
1819
 
1820
  #: ../admin/settings.php:277
1821
- #: ../admin/wp25/settings.php:267
1822
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1823
  msgstr "Ein Album benötigt dann keinen Link zur Seite. Die Galerie wird direkt angezeigt."
1824
 
1825
  #: ../admin/settings.php:281
1826
- #: ../admin/wp25/settings.php:271
1827
  msgid "Number of images per page"
1828
  msgstr "Anzahl der Bilder pro Seite"
1829
 
1830
  #: ../admin/settings.php:283
1831
- #: ../admin/wp25/settings.php:273
1832
  msgid "0 will disable pagination, all images on one page"
1833
  msgstr "0 schaltet Blätterfunktion ab ( = alle Bilder auf einer Seite )"
1834
 
1835
  #: ../admin/settings.php:287
1836
- #: ../admin/wp25/settings.php:277
1837
  msgid "Integrate slideshow"
1838
  msgstr "Slideshow verwenden"
1839
 
1840
  #: ../admin/settings.php:294
1841
- #: ../admin/wp25/settings.php:284
1842
  msgid "Show first"
1843
  msgstr "Zeige als Erstes"
1844
 
1845
  #: ../admin/settings.php:300
1846
- #: ../admin/wp25/settings.php:290
1847
  msgid "Show thumbnail description"
1848
  msgstr "Zeige Bildbeschreibung"
1849
 
1850
  #: ../admin/settings.php:301
1851
  #: ../admin/settings.php:351
1852
- #: ../admin/js/uploadtab.js.php:117
1853
- #: ../admin/wp25/media-upload.php:193
1854
- #: ../admin/wp25/settings.php:291
1855
- #: ../admin/wp25/settings.php:339
1856
  msgid "None"
1857
  msgstr "Keiner"
1858
 
1859
  #: ../admin/settings.php:302
1860
- #: ../admin/wp25/settings.php:292
1861
  msgid "Description text"
1862
  msgstr "Beschreibung"
1863
 
1864
  #: ../admin/settings.php:303
1865
  #: ../admin/settings.php:321
1866
- #: ../admin/wp25/settings.php:293
1867
- #: ../admin/wp25/settings.php:311
1868
  msgid "Alt / Title text"
1869
  msgstr "Alt / Titel Text"
1870
 
1871
  #: ../admin/settings.php:307
1872
- #: ../admin/wp25/settings.php:297
1873
  msgid "Show ImageBrowser"
1874
  msgstr "Zeige Bilder Browser"
1875
 
1876
  #: ../admin/settings.php:309
1877
- #: ../admin/wp25/settings.php:299
1878
  msgid "The gallery will open the ImageBrowser instead the effect."
1879
  msgstr "Es wird der Bilder Browser angezeigt (Kein JavaScript Effekt)"
1880
 
1881
  #: ../admin/settings.php:313
1882
- #: ../admin/wp25/settings.php:303
1883
  msgid "Sort options"
1884
  msgstr "Sortierung"
1885
 
1886
  #: ../admin/settings.php:316
1887
- #: ../admin/wp25/settings.php:306
1888
  msgid "Sort thumbnails"
1889
  msgstr "Thumbnails sortieren"
1890
 
1891
  #: ../admin/settings.php:318
1892
- #: ../admin/wp25/settings.php:308
1893
  msgid "Custom order"
1894
  msgstr "Benutzerdefiniert"
1895
 
1896
  #: ../admin/settings.php:319
1897
- #: ../admin/wp25/settings.php:309
1898
  msgid "Image ID"
1899
  msgstr "Bilder ID"
1900
 
1901
  #: ../admin/settings.php:325
1902
- #: ../admin/wp25/settings.php:315
1903
  msgid "Sort direction"
1904
  msgstr "Sortierreihenfolge"
1905
 
1906
  #: ../admin/settings.php:326
1907
- #: ../admin/wp25/settings.php:316
1908
  msgid "Ascending"
1909
  msgstr "Aufsteigend"
1910
 
1911
  #: ../admin/settings.php:327
1912
- #: ../admin/wp25/settings.php:317
1913
  msgid "Descending"
1914
  msgstr "Absteigend"
1915
 
1916
  #: ../admin/settings.php:343
1917
- #: ../admin/wp25/settings.php:332
1918
  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."
1919
  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)."
1920
 
1921
  #: ../admin/settings.php:344
1922
- #: ../admin/wp25/settings.php:333
1923
  msgid "With the placeholder"
1924
  msgstr "Mit Platzhalter"
1925
 
1926
  #: ../admin/settings.php:344
1927
- #: ../admin/wp25/settings.php:333
1928
  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."
1929
  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."
1930
 
1931
  #: ../admin/settings.php:348
1932
- #: ../admin/wp25/settings.php:336
1933
  msgid "JavaScript Thumbnail effect"
1934
  msgstr "JavaScript Thumbnail Effekt"
1935
 
1936
  #: ../admin/settings.php:352
1937
- #: ../admin/wp25/settings.php:340
1938
  msgid "Thickbox"
1939
  msgstr "Thickbox"
1940
 
1941
  #: ../admin/settings.php:353
1942
- #: ../admin/wp25/settings.php:341
1943
  msgid "Lightbox"
1944
  msgstr "Lightbox"
1945
 
1946
  #: ../admin/settings.php:354
1947
- #: ../admin/wp25/settings.php:342
1948
  msgid "Highslide"
1949
  msgstr "Highslide"
1950
 
1951
  #: ../admin/settings.php:355
1952
- #: ../admin/wp25/settings.php:343
1953
  msgid "Shutter"
1954
  msgstr "Shutter"
1955
 
1956
  #: ../admin/settings.php:356
1957
- #: ../admin/wp25/settings.php:344
1958
  msgid "Custom"
1959
  msgstr "Eigener"
1960
 
1961
  #: ../admin/settings.php:361
1962
- #: ../admin/wp25/settings.php:349
1963
  msgid "Link Code line"
1964
  msgstr "Link Code Zeile"
1965
 
1966
  #: ../admin/settings.php:369
1967
- #: ../admin/wp25/settings.php:357
1968
  msgid "Select loading image"
1969
  msgstr "Wähle Ladeanimation"
1970
 
1971
  #: ../admin/settings.php:393
1972
- #: ../admin/wp25/settings.php:380
1973
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1974
  msgstr "Bitte beachten : Das Wasserzeichen kann nur unter der Galerieverwaltung gesetzt werden. "
1975
 
1976
  #: ../admin/settings.php:398
1977
- #: ../admin/wp25/settings.php:385
1978
  msgid "Preview"
1979
  msgstr "Vorschau"
1980
 
1981
  #: ../admin/settings.php:400
1982
  #: ../admin/settings.php:404
1983
- #: ../admin/wp25/settings.php:387
1984
- #: ../admin/wp25/settings.php:392
1985
  msgid "Position"
1986
  msgstr "Position"
1987
 
1988
  #: ../admin/settings.php:424
1989
- #: ../admin/wp25/settings.php:412
1990
  msgid "Offset"
1991
  msgstr "Abstand"
1992
 
1993
  #: ../admin/settings.php:442
1994
- #: ../admin/wp25/settings.php:428
1995
  msgid "Use image as watermark"
1996
  msgstr "Benutze Bild als Wasserzeichen"
1997
 
1998
  #: ../admin/settings.php:445
1999
- #: ../admin/wp25/settings.php:431
2000
  msgid "URL to file"
2001
  msgstr "URL zur Datei"
2002
 
2003
  #: ../admin/settings.php:447
2004
- #: ../admin/wp25/settings.php:433
2005
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
2006
  msgstr "Der Dateizugriff von URL's ist auf diesem Server deaktiviert (allow_url_fopen)"
2007
 
2008
  #: ../admin/settings.php:453
2009
- #: ../admin/wp25/settings.php:436
2010
  msgid "Use text as watermark"
2011
  msgstr "Benutze Text als Wasserzeichen"
2012
 
2013
  #: ../admin/settings.php:456
2014
- #: ../admin/wp25/settings.php:439
2015
  msgid "Font"
2016
  msgstr "Schriftart"
2017
 
2018
  #: ../admin/settings.php:465
2019
- #: ../admin/wp25/settings.php:448
2020
  msgid "This function will not work, cause you need the FreeType library"
2021
  msgstr "Diese Funktion benötigt die FreeType Bibliothek"
2022
 
2023
  #: ../admin/settings.php:467
2024
- #: ../admin/wp25/settings.php:450
2025
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
2026
  msgstr "Du kannst mehr Schriftarten in das Verzeichniss <strong>nggallery/fonts</strong> hochladen."
2027
 
2028
  #: ../admin/settings.php:471
2029
- #: ../admin/wp25/media-upload.php:203
2030
- #: ../admin/wp25/settings.php:454
2031
  msgid "Size"
2032
  msgstr "Größe"
2033
 
2034
  #: ../admin/settings.php:475
2035
- #: ../admin/wp25/settings.php:458
2036
  msgid "Color"
2037
  msgstr "Farbe"
2038
 
2039
  #: ../admin/settings.php:477
2040
- #: ../admin/wp25/settings.php:460
2041
  msgid "(hex w/o #)"
2042
  msgstr "(hex w/o #)"
2043
 
2044
  #: ../admin/settings.php:480
2045
- #: ../admin/wp25/settings.php:463
2046
  msgid "Text"
2047
  msgstr "Text"
2048
 
2049
  #: ../admin/settings.php:484
2050
- #: ../admin/wp25/settings.php:467
2051
  msgid "Opaque"
2052
  msgstr "Transparenz"
2053
 
2054
  #: ../admin/settings.php:502
2055
- #: ../admin/wp25/settings.php:483
2056
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
2057
  msgstr "Die Datei imagerotator.swf ist nicht im Plugin Verzeichniss -> so wird die Slideshow nicht funktionieren."
2058
 
2059
  #: ../admin/settings.php:503
2060
- #: ../admin/wp25/settings.php:484
2061
  msgid "The settings are used in the JW Image Rotator Version"
2062
  msgstr "Die Einstellungen werden im JW Image Rotator benutzt , in der Version"
2063
 
2064
  #: ../admin/settings.php:504
2065
- #: ../admin/wp25/settings.php:485
2066
  msgid "See more information for the Flash Player on the web page"
2067
  msgstr "Weitere Informationen auf der Flash Player Homepage"
2068
 
2069
  #: ../admin/settings.php:507
2070
- #: ../admin/wp25/settings.php:489
2071
  msgid "Default size (W x H)"
2072
  msgstr "Standard Größe (B x H)"
2073
 
2074
  #: ../admin/settings.php:512
2075
- #: ../admin/wp25/settings.php:494
2076
  msgid "Shuffle mode"
2077
  msgstr "Shuffle Modus"
2078
 
2079
  #: ../admin/settings.php:516
2080
- #: ../admin/wp25/settings.php:498
2081
  msgid "Show next image on click"
2082
  msgstr "Zeige nächstes Bild bei Klick"
2083
 
2084
  #: ../admin/settings.php:520
2085
- #: ../admin/wp25/settings.php:502
2086
  msgid "Show navigation bar"
2087
  msgstr "Zeige Navigations-Leiste"
2088
 
2089
  #: ../admin/settings.php:524
2090
- #: ../admin/wp25/settings.php:506
2091
  msgid "Show loading icon"
2092
  msgstr "Zeige Lade-Bildchen"
2093
 
2094
  #: ../admin/settings.php:528
2095
- #: ../admin/wp25/settings.php:510
2096
  msgid "Use watermark logo"
2097
  msgstr "Wasserzeichen anzeigen"
2098
 
2099
  #: ../admin/settings.php:530
2100
- #: ../admin/wp25/settings.php:512
2101
  msgid "You can change the logo at the watermark settings"
2102
  msgstr "Du kannst den Pfad in Einstellungen für da Wasserzeichen angeben"
2103
 
2104
  #: ../admin/settings.php:533
2105
- #: ../admin/wp25/settings.php:515
2106
  msgid "Stretch image"
2107
  msgstr "Bild dehnen"
2108
 
2109
  #: ../admin/settings.php:536
2110
- #: ../admin/wp25/settings.php:518
2111
  msgid "true"
2112
  msgstr "Ja"
2113
 
2114
  #: ../admin/settings.php:537
2115
- #: ../admin/wp25/settings.php:519
2116
  msgid "false"
2117
  msgstr "Nein"
2118
 
2119
  #: ../admin/settings.php:538
2120
- #: ../admin/wp25/settings.php:520
2121
  msgid "fit"
2122
  msgstr "Passend"
2123
 
2124
  #: ../admin/settings.php:539
2125
- #: ../admin/wp25/settings.php:521
2126
  msgid "none"
2127
  msgstr "keiner"
2128
 
2129
  #: ../admin/settings.php:544
2130
- #: ../admin/wp25/settings.php:526
2131
  msgid "Duration time"
2132
  msgstr "Dauer"
2133
 
2134
  #: ../admin/settings.php:545
2135
- #: ../admin/wp25/settings.php:527
2136
  msgid "sec."
2137
  msgstr "Sek."
2138
 
2139
  #: ../admin/settings.php:548
2140
- #: ../admin/wp25/settings.php:530
2141
  msgid "Transition / Fade effect"
2142
  msgstr "Fade Effekt"
2143
 
2144
  #: ../admin/settings.php:551
2145
- #: ../admin/wp25/settings.php:533
2146
  msgid "fade"
2147
  msgstr "Fade"
2148
 
2149
  #: ../admin/settings.php:552
2150
- #: ../admin/wp25/settings.php:534
2151
  msgid "bgfade"
2152
  msgstr "BGFade"
2153
 
2154
  #: ../admin/settings.php:553
2155
- #: ../admin/wp25/settings.php:535
2156
  msgid "slowfade"
2157
  msgstr "Slowfade"
2158
 
2159
  #: ../admin/settings.php:554
2160
- #: ../admin/wp25/settings.php:536
2161
  msgid "circles"
2162
  msgstr "Kreise"
2163
 
2164
  #: ../admin/settings.php:555
2165
- #: ../admin/wp25/settings.php:537
2166
  msgid "bubbles"
2167
  msgstr "Blasen"
2168
 
2169
  #: ../admin/settings.php:556
2170
- #: ../admin/wp25/settings.php:538
2171
  msgid "blocks"
2172
  msgstr "Blöcke"
2173
 
2174
  #: ../admin/settings.php:557
2175
- #: ../admin/wp25/settings.php:539
2176
  msgid "fluids"
2177
  msgstr "Fluids"
2178
 
2179
  #: ../admin/settings.php:558
2180
- #: ../admin/wp25/settings.php:540
2181
  msgid "flash"
2182
  msgstr "Flash"
2183
 
2184
  #: ../admin/settings.php:559
2185
- #: ../admin/wp25/settings.php:541
2186
  msgid "lines"
2187
  msgstr "Linien"
2188
 
2189
  #: ../admin/settings.php:564
2190
- #: ../admin/wp25/settings.php:546
2191
  msgid "Use slow zooming effect"
2192
  msgstr "nutze Zoom Effekt"
2193
 
2194
  #: ../admin/settings.php:568
2195
- #: ../admin/wp25/settings.php:550
2196
  msgid "Background Color"
2197
  msgstr "Hintergrund (BG) Farbe"
2198
 
2199
  #: ../admin/settings.php:573
2200
- #: ../admin/wp25/settings.php:555
2201
  msgid "Texts / Buttons Color"
2202
  msgstr "Text- / Button Farbe"
2203
 
2204
  #: ../admin/settings.php:578
2205
- #: ../admin/wp25/settings.php:560
2206
  msgid "Rollover / Active Color"
2207
  msgstr "Rollover / Aktiv (Link) Farbe"
2208
 
2209
  #: ../admin/settings.php:583
2210
- #: ../admin/wp25/settings.php:565
2211
  msgid "Screen Color"
2212
  msgstr "Seiten Farbe"
2213
 
2214
  #: ../admin/settings.php:588
2215
- #: ../admin/wp25/settings.php:570
2216
  msgid "Background music (URL)"
2217
  msgstr "Hintergrundmusik (URL)"
2218
 
2219
  #: ../admin/settings.php:592
2220
- #: ../admin/wp25/settings.php:574
2221
  msgid "Try XHTML validation (with CDATA)"
2222
  msgstr "Integriere XHTML Validierung (mittels CDATA)"
2223
 
2224
  #: ../admin/settings.php:594
2225
- #: ../admin/wp25/settings.php:576
2226
  msgid "Important : Could causes problem at some browser. Please recheck your page."
2227
  msgstr "Wichtig : Es könnnten Probleme bei einigen Browser auftauchen. Unbedingt Seite prüfen."
2228
 
2229
  #: ../admin/setup.php:12
2230
- #: ../admin/wp25/setup.php:11
2231
  msgid "Reset all settings to default parameter"
2232
  msgstr "Stelle alle Einstellungen auf Anfangswerte zurück"
2233
 
2234
  #: ../admin/setup.php:37
2235
- #: ../admin/wp25/setup.php:36
2236
  msgid "Uninstall sucessfull ! Now delete the plugin and enjoy your life ! Good luck !"
2237
  msgstr "Deinstallation erfolgreich ! Nun kannst Du das Plugin löschen und Dein Leben weiterhin genießen ! Stay geeky ! Viel Glück !"
2238
 
2239
  #: ../admin/setup.php:46
2240
- #: ../admin/wp25/setup.php:42
2241
  msgid "Reset options"
2242
  msgstr "Optionen zurücksetzen"
2243
 
2244
  #: ../admin/setup.php:49
2245
- #: ../admin/wp25/setup.php:45
2246
  msgid "Reset all options/settings to the default installation."
2247
  msgstr "Alle Optionen/Einstellungen zurücksetzen"
2248
 
2249
  #: ../admin/setup.php:50
2250
- #: ../admin/wp25/setup.php:46
2251
  msgid "Reset settings"
2252
  msgstr "Einstellungen zurücksetzen"
2253
 
2254
  #: ../admin/setup.php:50
2255
- #: ../admin/wp25/setup.php:46
2256
  msgid ""
2257
  "Reset all options to default settings ?\\n"
2258
  "\\n"
@@ -2263,42 +1768,34 @@ msgstr ""
2263
  "Wähle [Cancel] um abzubrechen, [OK] zum Durchführen.\\n"
2264
 
2265
  #: ../admin/setup.php:55
2266
- #: ../admin/wp25/setup.php:51
2267
  msgid "Uninstall plugin tables"
2268
  msgstr "Plugin Tabellen (DB) entfernen"
2269
 
2270
  #: ../admin/setup.php:58
2271
- #: ../admin/wp25/setup.php:56
2272
  msgid "You don't like NextGEN Gallery ?"
2273
  msgstr "Du magst die NextGEN Galerie nicht ?"
2274
 
2275
  #: ../admin/setup.php:59
2276
- #: ../admin/wp25/setup.php:57
2277
  msgid "No problem, before you deactivate this plugin press the Uninstall Button, because deactivating NextGEN Gallery does not remove any data that may have been created. "
2278
  msgstr "Null Problemo. Einfach nur vor dem Deaktivieren dieses Plugins den Uninstall-Button betätigen damit alle Tabellen der Galerie entfernt werden."
2279
 
2280
  #: ../admin/setup.php:60
2281
- #: ../admin/wp25/setup.php:59
2282
  msgid "WARNING:"
2283
  msgstr "WARNUNG:"
2284
 
2285
  #: ../admin/setup.php:61
2286
- #: ../admin/wp25/setup.php:60
2287
  msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to backup all the tables first. NextGEN gallery is stored in the tables"
2288
  msgstr "Einmal deinstalliert -> keine Rückgängigmachung! D.h. auf Deutsch, das eine einmalig durchgeführte Deinstallation nicht mehr rückgängig gemacht werden kann da alle Tabellen der Galerie aus der Datenbank entfernt werden und KEIN Backup dieser Galerie-Tabellen angelegt wird währenddessen."
2289
 
2290
  #: ../admin/setup.php:61
2291
- #: ../admin/wp25/setup.php:60
2292
  msgid "and"
2293
  msgstr "und"
2294
 
2295
  #: ../admin/setup.php:63
2296
- #: ../admin/wp25/setup.php:62
2297
  msgid "Uninstall plugin"
2298
  msgstr "Plugin deinstallieren"
2299
 
2300
  #: ../admin/setup.php:63
2301
- #: ../admin/wp25/setup.php:62
2302
  msgid ""
2303
  "You are about to Uninstall this plugin from WordPress.\\n"
2304
  "This action is not reversible.\\n"
@@ -2312,124 +1809,96 @@ msgstr ""
2312
 
2313
  #: ../admin/showmeta.php:7
2314
  #: ../admin/showmeta.php:10
2315
- #: ../admin/wp25/showmeta.php:7
2316
- #: ../admin/wp25/showmeta.php:10
2317
  msgid "Cheatin&#8217; uh?"
2318
  msgstr "Cheatin&#8217; uh?"
2319
 
2320
  #: ../admin/showmeta.php:42
2321
- #: ../admin/wp25/showmeta.php:42
2322
  msgid "EXIF Data"
2323
  msgstr "EXIF Daten"
2324
 
2325
  #: ../admin/showmeta.php:47
2326
  #: ../admin/showmeta.php:71
2327
  #: ../admin/showmeta.php:95
2328
- #: ../admin/wp25/showmeta.php:47
2329
- #: ../admin/wp25/showmeta.php:71
2330
- #: ../admin/wp25/showmeta.php:95
2331
  msgid "Tag"
2332
  msgstr "Stichwort"
2333
 
2334
  #: ../admin/showmeta.php:48
2335
  #: ../admin/showmeta.php:72
2336
  #: ../admin/showmeta.php:96
2337
- #: ../admin/wp25/showmeta.php:48
2338
- #: ../admin/wp25/showmeta.php:72
2339
- #: ../admin/wp25/showmeta.php:96
2340
  msgid "Value"
2341
  msgstr "Wert"
2342
 
2343
  #: ../admin/showmeta.php:61
2344
- #: ../admin/wp25/showmeta.php:61
2345
  msgid "No exif data"
2346
  msgstr "Keine Exif Daten"
2347
 
2348
  #: ../admin/showmeta.php:67
2349
- #: ../admin/wp25/showmeta.php:67
2350
  msgid "IPTC Data"
2351
  msgstr "IPTC Daten"
2352
 
2353
  #: ../admin/showmeta.php:91
2354
- #: ../admin/wp25/showmeta.php:91
2355
  msgid "XMP Data"
2356
  msgstr "XMP Daten"
2357
 
2358
  #: ../admin/sort.php:35
2359
- #: ../admin/wp25/sort.php:33
2360
  msgid "Sort order changed"
2361
  msgstr "Reihenfolge aktualisiert"
2362
 
2363
  #: ../admin/sort.php:53
2364
- #: ../admin/wp25/sort.php:53
2365
  msgid "Sort Gallery"
2366
  msgstr "Sortiere Bilder"
2367
 
2368
  #: ../admin/sort.php:58
2369
- #: ../admin/wp25/sort.php:57
2370
  msgid "Back to gallery"
2371
  msgstr "Zurück zur Galerie"
2372
 
2373
  #: ../admin/sort.php:59
2374
- #: ../admin/wp25/sort.php:58
2375
  msgid "Update Sort Order"
2376
  msgstr "Sortierung speichern"
2377
 
2378
  #: ../admin/style.php:34
2379
- #: ../admin/wp25/style.php:34
2380
  msgid "You do not have sufficient permissions to edit templates for this blog."
2381
  msgstr "Du hast nicht die benötigten Rechte um Templates in diesem Blog zu bearbeiten."
2382
 
2383
  #: ../admin/style.php:43
2384
- #: ../admin/wp25/style.php:43
2385
  msgid "CSS file successfully updated"
2386
  msgstr "CSS Datei erfolgreich aktualisiert"
2387
 
2388
  #: ../admin/style.php:66
2389
- #: ../admin/wp25/style.php:68
2390
  msgid "Activate and use style sheet:"
2391
  msgstr "Aktiviere und nutze Stylesheet:"
2392
 
2393
  #: ../admin/style.php:85
2394
- #: ../admin/wp25/style.php:88
2395
  msgid "Activate"
2396
  msgstr "Aktiviere"
2397
 
2398
  #: ../admin/style.php:93
2399
- #: ../admin/wp25/style.php:97
2400
  #, php-format
2401
  msgid "Editing <strong>%s</strong>"
2402
  msgstr "Bearbeite <strong>%s</strong>"
2403
 
2404
  #: ../admin/style.php:95
2405
- #: ../admin/wp25/style.php:99
2406
  #, php-format
2407
  msgid "Browsing <strong>%s</strong>"
2408
  msgstr "Browse <strong>%s</strong>"
2409
 
2410
  #: ../admin/style.php:100
2411
- #: ../admin/wp25/style.php:107
2412
- #: ../lib/nggmeta.lib.php:376
2413
  msgid "Author"
2414
  msgstr "Autor"
2415
 
2416
  #: ../admin/style.php:101
2417
- #: ../admin/wp25/style.php:108
2418
  msgid "Version"
2419
  msgstr "Version"
2420
 
2421
  #: ../admin/style.php:118
2422
- #: ../admin/wp25/style.php:124
2423
  msgid "Update File &raquo;"
2424
  msgstr "Datei aktualisieren"
2425
 
2426
  #: ../admin/style.php:122
2427
- #: ../admin/wp25/style.php:127
2428
  msgid "If this file were writable you could edit it."
2429
  msgstr "Wenn diese Datei beschreibbar wäre, könntest Du sie bearbeiten."
2430
 
2431
  #: ../admin/style.php:127
2432
- #: ../admin/wp25/style.php:132
2433
  msgid "Oops, no such file exists! Double check the name and try again, merci."
2434
  msgstr "Oha, eine solche Datei existiert nicht! Bitte überprüfe den Namen und probiere es erneut, danke."
2435
 
@@ -2439,8 +1908,6 @@ msgstr "Wähle Galerie"
2439
 
2440
  #: ../admin/uploadtab.php:107
2441
  #: ../admin/wp25/media-upload.php:127
2442
- #: ../tinymce/window.php:49
2443
- #: ../tinymce3/window.php:49
2444
  msgid "No gallery"
2445
  msgstr "Keine Galerie"
2446
 
@@ -2459,62 +1926,50 @@ msgid "Delete image ?"
2459
  msgstr "Bilder löschen ?"
2460
 
2461
  #: ../admin/wpmu.php:41
2462
- #: ../admin/wp25/wpmu.php:41
2463
  msgid "General WordPress MU Settings"
2464
  msgstr "WordPress MU Einstellungen"
2465
 
2466
  #: ../admin/wpmu.php:50
2467
- #: ../admin/wp25/wpmu.php:50
2468
  msgid "This is the default path for all blogs. With the placeholder %BLOG_ID% you can organize the folder structure better. The path must end with a /."
2469
  msgstr "Dieses ist der Default Pfad für alle Blogs. Mit dem Platzhalter %BLOG_ID% wird die Ordnerstruktur gesteuert. Der Pfad muss mit / enden."
2470
 
2471
  #: ../admin/wpmu.php:53
2472
- #: ../admin/wp25/wpmu.php:53
2473
  msgid "Enable upload quota check"
2474
  msgstr "Schalte die Uploadbegrenzung ein"
2475
 
2476
  #: ../admin/wpmu.php:55
2477
- #: ../admin/wp25/wpmu.php:55
2478
  msgid "Should work if the gallery is bellow the blog.dir"
2479
  msgstr "Sollte funktionieren wenn die Galerien sich unterhalb blog.dir befinden"
2480
 
2481
  #: ../admin/wpmu.php:59
2482
- #: ../admin/wp25/wpmu.php:59
2483
  msgid "Enable zip upload option"
2484
  msgstr "Erlaube ZIP-Upload"
2485
 
2486
  #: ../admin/wpmu.php:61
2487
- #: ../admin/wp25/wpmu.php:61
2488
  msgid "Allow users to upload zip folders."
2489
  msgstr "Erlaubt die Nutzung des ZIP-Upload"
2490
 
2491
  #: ../admin/wpmu.php:65
2492
- #: ../admin/wp25/wpmu.php:65
2493
  msgid "Enable style selection"
2494
  msgstr "Freie CSS Style Auswahl"
2495
 
2496
  #: ../admin/wpmu.php:67
2497
- #: ../admin/wp25/wpmu.php:67
2498
  msgid "Allow users to choose a style for the gallery."
2499
  msgstr "Erlaube dem User ein CSS für die Galerie zu wählen"
2500
 
2501
  #: ../admin/wpmu.php:71
2502
- #: ../admin/wp25/wpmu.php:71
2503
  msgid "Enable roles/capabilities"
2504
  msgstr "Rollen / Zugriffsrechte freischalten"
2505
 
2506
  #: ../admin/wpmu.php:73
2507
- #: ../admin/wp25/wpmu.php:73
2508
  msgid "Allow users to change the roles for other blog authors."
2509
  msgstr "Erlaube dem User die Anpassung der Zugangsberechtigung"
2510
 
2511
  #: ../admin/wpmu.php:77
2512
- #: ../admin/wp25/wpmu.php:77
2513
  msgid "Default style"
2514
  msgstr "Standard CSS-Style"
2515
 
2516
  #: ../admin/wpmu.php:94
2517
- #: ../admin/wp25/wpmu.php:94
2518
  msgid "Choose the default style for the galleries."
2519
  msgstr "Wähle das Default-Stylesheet für die Galerien"
2520
 
@@ -2559,8 +2014,6 @@ msgid "Send to editor &raquo;"
2559
  msgstr "Zum Editor schicken &raquo;"
2560
 
2561
  #: ../admin/js/uploadtab.js.php:156
2562
- #: ../tinymce/window.php:151
2563
- #: ../tinymce3/window.php:151
2564
  msgid "Insert"
2565
  msgstr "Einfügen"
2566
 
@@ -2591,10 +2044,6 @@ msgstr "Importiere ein Verzeichniss mit Bildern."
2591
  msgid " Please note : For safe-mode = ON you need to add the subfolder thumbs manually"
2592
  msgstr "Achtung : Da der Safe-Mode (PHP.INI) eingeschaltet ist, mußt Du das Unterverzeichnis für die Vorschaubilder (\"thumbs\") manuell (per FTP) anlegen"
2593
 
2594
- #: ../admin/wp25/manage.php:404
2595
- msgid "Edit gallery"
2596
- msgstr "Galerie ändern"
2597
-
2598
  #: ../admin/wp25/media-upload.php:139
2599
  msgid "Select Gallery &#187;"
2600
  msgstr "Wähle Galerie &#187;"
@@ -2620,20 +2069,14 @@ msgid "Alignment"
2620
  msgstr "Ausrichtung"
2621
 
2622
  #: ../admin/wp25/media-upload.php:195
2623
- #: ../tinymce/window.php:133
2624
- #: ../tinymce3/window.php:133
2625
  msgid "Left"
2626
  msgstr "Links"
2627
 
2628
  #: ../admin/wp25/media-upload.php:197
2629
- #: ../tinymce/window.php:134
2630
- #: ../tinymce3/window.php:134
2631
  msgid "Center"
2632
  msgstr "Zentrieren"
2633
 
2634
  #: ../admin/wp25/media-upload.php:199
2635
- #: ../tinymce/window.php:135
2636
- #: ../tinymce3/window.php:135
2637
  msgid "Right"
2638
  msgstr "Rechts"
2639
 
@@ -2867,3 +2310,6 @@ msgstr "Float"
2867
  msgid "No float"
2868
  msgstr "Kein Float"
2869
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-05-18 12:15+0100\n"
6
+ "PO-Revision-Date: 2008-05-18 12:15+0100\n"
7
  "Last-Translator: Alex Rabe\n"
8
  "Language-Team: Alex Rabe\n"
9
  "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: .\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: ..\n"
18
 
19
+ #: ../nggallery.php:61
20
  msgid "Sorry, NextGEN Gallery works only under WordPress 2.1 or higher"
21
  msgstr "Tut mir leid aber NextGEN Galerie arbeitet nur ab WordPress 2.1 und aufwärts"
22
 
23
+ #: ../nggallery.php:68
24
  msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB higher"
25
  msgstr "Tut mir leid aber NextGEN Galerie arbeitet mit einem Memory Limit von 16 MB un mehr"
26
 
27
+ #: ../nggfunctions.php:449
28
+ #: ../nggfunctions.php:464
29
  msgid "Watch gallery"
30
  msgstr "Galerie ansehen"
31
 
32
+ #: ../nggfunctions.php:458
33
+ #: ../nggfunctions.php:470
34
+ #: ../nggfunctions.php:758
35
  msgid "Photos"
36
  msgstr "Fotos"
37
 
38
+ #: ../nggfunctions.php:546
39
  msgid "Back"
40
  msgstr "Zurück"
41
 
42
+ #: ../nggfunctions.php:550
43
  msgid "Next"
44
  msgstr "Vor"
45
 
46
+ #: ../nggfunctions.php:553
47
  #: ../admin/manage.php:85
 
 
 
48
  msgid "Picture"
49
  msgstr "Bild"
50
 
51
+ #: ../nggfunctions.php:553
52
  msgid "from"
53
  msgstr "von"
54
 
55
+ #: ../nggfunctions.php:728
56
  msgid "Overview"
57
  msgstr "Übersicht"
58
 
106
  msgstr "Wie viele NextGEN Gallery Widgets möchtest du haben ?"
107
 
108
  #: ../nggwidget.php:212
 
109
  msgid "Save"
110
  msgstr "Speichern"
111
 
120
  #: ../nggwidget.php:314
121
  #: ../admin/settings.php:102
122
  #: ../admin/settings.php:295
 
 
123
  msgid "Thumbnails"
124
  msgstr "Thumbnails"
125
 
129
 
130
  #: ../nggwidget.php:321
131
  #: ../admin/settings.php:560
 
132
  msgid "random"
133
  msgstr "Zufall"
134
 
165
  msgstr "Galerie ID's, mit Kommas getrennt"
166
 
167
  #: ../admin/about.php:9
 
168
  msgid "Copyright notes / Credits"
169
  msgstr "Copyright Hinweise / Credits"
170
 
171
  #: ../admin/about.php:11
 
172
  msgid "NextGEN DEV Team"
173
  msgstr "NextGEN DEV Team"
174
 
175
  #: ../admin/about.php:12
 
176
  msgid "This plugin is primarily developed, maintained, supported, documented by"
177
  msgstr "Dieses Plugin wird hauptsächlich entwickelt, dokumentiert und supportet von"
178
 
179
  #: ../admin/about.php:12
 
180
  msgid "There are many other folks who have made contributions to this project :"
181
  msgstr "Folgende Personen haben die Entwicklung bisher unterstützt :"
182
 
183
  #: ../admin/about.php:14
 
184
  msgid "Contributors / Tribute to"
185
  msgstr "Anerkennung / Hinweise"
186
 
187
  #: ../admin/about.php:15
 
188
  msgid "If you study the code of this plugin, you will find out that we mixed a lot of good already existing code and ideas together."
189
  msgstr "Falls Du Dir den Sourcecode dieses Plugins ansiehst wirst Du merken, das wir verschiedene gute Scripte sowie Ideen verwendet haben."
190
 
191
  #: ../admin/about.php:16
 
192
  msgid "So, we would like to thank the following people for their pioneer work (without this work it's impossible to create such a plugin so fast)"
193
  msgstr "Wir möchten folgenden Menschen für Ihre Pionier-Arbeit danken (ohne diese Vorleistung wäre es unmöglich ein Plugin so schnell zu entwickeln)"
194
 
195
  #: ../admin/about.php:18
 
196
  msgid "for their great documented code"
197
  msgstr "für Ihren großartig dokumentierten Code"
198
 
199
  #: ../admin/about.php:19
 
200
  msgid "for jQuery, which is the best Web2.0 framework"
201
  msgstr "für jQuery, das Beste Web2.0 Framework"
202
 
203
  #: ../admin/about.php:20
 
204
  msgid "for the fantastic PHP Thumbnail Class"
205
  msgstr "für die fantastische PHP Thumbnail Klasse"
206
 
207
  #: ../admin/about.php:21
 
208
  msgid "for PclZip , a PHP library that manage ZIP archives"
209
  msgstr "für PclZip, eine ZIP PHP Library"
210
 
211
  #: ../admin/about.php:22
 
212
  msgid "for a lot of very useful plugins and ideas"
213
  msgstr "für viele nützliche Plugins und Ideen"
214
 
215
  #: ../admin/about.php:23
 
216
  msgid "for Simple:Press Forum, it saved me a lot of time"
217
  msgstr "für das Simple:Press Forum, welches mir viel Zeit sparte"
218
 
219
  #: ../admin/about.php:24
 
220
  msgid "for the best Media Flash Scripts on earth"
221
  msgstr "für die besten Media Flash Scripte"
222
 
223
  #: ../admin/about.php:25
 
224
  msgid "for the Watermark plugin"
225
  msgstr "für das Wasserzeichen Plugin"
226
 
227
  #: ../admin/about.php:27
 
228
  msgid "If you didn't find your name on this list and there is some code which I integrate in my plugin, don't hesitate to send me a mail."
229
  msgstr "Falls Du Deinen Namen hier nicht auf dieser Liste findest und es einigen Code gibt, den ich in meinem Plugin verwendet habe, so schicken mir bitte sofort einfach eine EMail."
230
 
231
  #: ../admin/about.php:28
 
232
  msgid "How to support ?"
233
  msgstr "Unterstützung / Hilfe"
234
 
235
  #: ../admin/about.php:29
 
236
  msgid "There exist several ways to contribute, help or support us in this work. Non of them are mandatory."
237
  msgstr "Es existieren verschiedene Möglichkeiten diese Arbeit zu unterstützen."
238
 
239
  #: ../admin/about.php:31
 
240
  msgid "Send us bugfixes / code changes"
241
  msgstr "Schicke uns Verbesserungen / Bugfixes"
242
 
243
  #: ../admin/about.php:31
 
244
  msgid "The most motivated support for this plugin are your ideas and brain work"
245
  msgstr "Der beste Support für dieses Plugin sind Deine Ideen und Gedanken"
246
 
247
  #: ../admin/about.php:32
 
248
  msgid "Translate the plugin"
249
  msgstr "Übersetze das Plugin"
250
 
253
  msgstr "Um jedem das Arbeiten mit diesem Plugin zu vereinfachen würde ich es gerne in allen verfügbaren Sprachen anbieten"
254
 
255
  #: ../admin/about.php:33
 
256
  msgid "Donate the work via paypal"
257
  msgstr "Zeig Dich für diese Arbeit per PayPal dankbar"
258
 
261
  msgstr "Kein Zweifel, eine schöne und simple Motivationshilfe"
262
 
263
  #: ../admin/about.php:46
 
264
  msgid "Place a link to the plugin in your blog/webpage"
265
  msgstr "Setze einen Link zu diesem Plugin auf Deinen Blog"
266
 
267
  #: ../admin/about.php:46
 
268
  msgid "Yes, share and trackback is also a good support for this work "
269
  msgstr "Natürlich sind Trackbacks und Links auch ein guter Support für diese Arbeit"
270
 
271
  #: ../admin/about.php:48
 
272
  msgid "Thanks!"
273
  msgstr "Vielen Dank!"
274
 
275
  #: ../admin/about.php:49
 
276
  msgid "We would like to thank this people which support us in the work :"
277
  msgstr "Wir wollen diesen Menschen für Ihre Hilfe danken:"
278
 
279
  #: ../admin/addgallery.php:35
280
  #: ../admin/addgallery.php:51
 
 
281
  msgid "Upload failed!"
282
  msgstr "Upload fehlgeschlagen!"
283
 
284
  #: ../admin/addgallery.php:56
285
  #: ../admin/functions.php:563
286
  #: ../admin/functions.php:652
 
 
 
287
  msgid "No gallery selected !"
288
  msgstr "Keine Galerie ausgewählt !"
289
 
290
  #: ../admin/addgallery.php:111
 
291
  msgid "Image Files"
292
  msgstr "Bilder"
293
 
294
  #: ../admin/addgallery.php:131
295
  #: ../admin/addgallery.php:161
 
 
296
  msgid "remove"
297
  msgstr "Entfernen"
298
 
299
  #: ../admin/addgallery.php:132
 
300
  msgid "Browse..."
301
  msgstr "Durchsuche..."
302
 
303
  #: ../admin/addgallery.php:133
304
  #: ../admin/addgallery.php:311
 
 
305
  msgid "Upload images"
306
  msgstr "Bilder hochladen"
307
 
308
  #: ../admin/addgallery.php:177
309
  #: ../admin/addgallery.php:189
 
 
310
  msgid "Add new gallery"
311
  msgstr "Neue Galerie erstellen"
312
 
313
  #: ../admin/addgallery.php:179
314
  #: ../admin/addgallery.php:210
 
 
315
  msgid "Upload a Zip-File"
316
  msgstr "Zip-Datei hochladen"
317
 
318
  #: ../admin/addgallery.php:182
319
  #: ../admin/addgallery.php:250
 
 
320
  msgid "Import image folder"
321
  msgstr "Bilder-Verzeichnis importieren"
322
 
323
  #: ../admin/addgallery.php:184
324
  #: ../admin/addgallery.php:274
 
 
325
  msgid "Upload Images"
326
  msgstr "Bilder hochladen"
327
 
328
  #: ../admin/addgallery.php:195
 
329
  msgid "New Gallery"
330
  msgstr "Neue Galerie"
331
 
332
  #: ../admin/addgallery.php:198
 
333
  msgid "Create a new , empty gallery below the folder"
334
  msgstr "Erstelle eine neue, leere Galerie unter dem Verzeichnis"
335
 
336
  #: ../admin/addgallery.php:200
 
337
  msgid "Allowed characters for file and folder names are"
338
  msgstr "Erlaubte Charaktere für die Datei- und Verzeichnisnamen sind"
339
 
340
  #: ../admin/addgallery.php:203
 
341
  msgid "Add gallery"
342
  msgstr "Galerie hinzufügen"
343
 
344
  #: ../admin/addgallery.php:216
 
345
  msgid "Select Zip-File"
346
  msgstr "Wähle Zip-Datei"
347
 
348
  #: ../admin/addgallery.php:218
 
349
  msgid "Upload a zip file with images"
350
  msgstr "Lade eine Zip-Datei mit Bildern hoch"
351
 
352
  #: ../admin/addgallery.php:221
353
  #: ../admin/addgallery.php:284
 
 
354
  msgid "in to"
355
  msgstr "in"
356
 
357
  #: ../admin/addgallery.php:223
 
358
  msgid "a new gallery"
359
  msgstr "eine neue Galerie"
360
 
361
  #: ../admin/addgallery.php:233
362
  #: ../admin/addgallery.php:296
 
 
363
  msgid "Note : The upload limit on your server is "
364
  msgstr "Hinweis : Das Upload-Limit auf dem Server beträgt "
365
 
366
  #: ../admin/addgallery.php:237
367
  #: ../admin/addgallery.php:262
368
  #: ../admin/addgallery.php:300
 
 
 
369
  msgid "Add Metadata :"
370
  msgstr "Metadaten hinzufügen :"
371
 
372
  #: ../admin/addgallery.php:239
373
  #: ../admin/addgallery.php:264
374
  #: ../admin/addgallery.php:302
 
 
 
375
  msgid "Import EXIF, IPTC or XMP data (if available)"
376
  msgstr "EXIF, IPTC oder XMP Daten importieren (wenn verfügbar)"
377
 
378
  #: ../admin/addgallery.php:242
 
379
  msgid "Start upload"
380
  msgstr "Upload starten"
381
 
382
  #: ../admin/addgallery.php:256
 
383
  msgid "Import from Server path:"
384
  msgstr "Importieren aus Server-Pfad:"
385
 
392
  msgstr "Da der Safe-Mode (PHP.INI) eingeschaltet ist, mußt Du das Unterverzeichnis für die Vorschaubilder (\"thumbs\") manuell (per FTP) anlegen"
393
 
394
  #: ../admin/addgallery.php:267
 
395
  msgid "Import folder"
396
  msgstr "Verzeichnis importieren"
397
 
398
  #: ../admin/addgallery.php:280
 
399
  msgid "Upload image"
400
  msgstr "Bild hochladen"
401
 
402
  #: ../admin/addgallery.php:286
 
403
  msgid "Choose gallery"
404
  msgstr "Wähle Galerie"
405
 
406
  #: ../admin/addgallery.php:307
 
407
  msgid "The batch upload requires Adobe Flash 9, disable it if you have problems"
408
  msgstr "Das Batch-Upload-Skript benötigt Adbode Flash 9, wenn es Probleme gibt deaktiviere es besser."
409
 
410
  #: ../admin/addgallery.php:307
 
411
  msgid "Disable flash upload"
412
  msgstr "Deaktiviere Batch-Upload"
413
 
414
  #: ../admin/addgallery.php:309
 
415
  msgid "Upload multiple files at once by ctrl/shift-selecting in dialog"
416
  msgstr "Wähle im Dialog mit Ctrl/Shift mehrere Bilder gleichzeitig aus."
417
 
418
  #: ../admin/addgallery.php:309
 
419
  msgid "Enable flash based upload"
420
  msgstr "Aktiviere Flash Batch Uplaod"
421
 
426
  #: ../admin/manage.php:64
427
  #: ../admin/manage.php:434
428
  #: ../admin/settings.php:104
 
 
 
 
 
 
 
 
 
 
429
  msgid "Gallery"
430
  msgstr "Galerie"
431
 
432
  #: ../admin/admin.php:76
 
433
  msgid "Add Gallery"
434
  msgstr "Bilder/Galerie hinzufügen"
435
 
436
  #: ../admin/admin.php:77
 
437
  msgid "Manage Gallery"
438
  msgstr "Galerie verwalten"
439
 
440
  #: ../admin/admin.php:78
 
 
 
441
  msgid "Album"
442
  msgstr "Album"
443
 
444
  #: ../admin/admin.php:79
 
445
  msgid "Options"
446
  msgstr "Optionen"
447
 
448
  #: ../admin/admin.php:81
 
449
  msgid "Style"
450
  msgstr "Style"
451
 
452
  #: ../admin/admin.php:82
 
453
  msgid "Setup Gallery"
454
  msgstr "Galerie Setup"
455
 
456
  #: ../admin/admin.php:82
 
457
  msgid "Setup"
458
  msgstr "Setup"
459
 
460
  #: ../admin/admin.php:84
 
461
  msgid "Roles"
462
  msgstr "Zugriff"
463
 
464
  #: ../admin/admin.php:85
 
465
  msgid "About this Gallery"
466
  msgstr "Über diese Galerie"
467
 
468
  #: ../admin/admin.php:85
 
469
  msgid "About"
470
  msgstr "Über"
471
 
472
  #: ../admin/admin.php:87
 
 
473
  msgid "NextGEN Gallery"
474
  msgstr "NextGEN Gallery"
475
 
476
  #: ../admin/album.php:19
477
  #: ../admin/album.php:37
 
 
 
478
  msgid "Update Successfully"
479
  msgstr "Update erfolgreich"
480
 
481
  #: ../admin/album.php:45
 
482
  msgid "Album deleted"
483
  msgstr "Album gelöscht"
484
 
485
  #: ../admin/album.php:122
 
486
  msgid "Manage Albums"
487
  msgstr "Verwalte Alben"
488
 
489
  #: ../admin/album.php:128
 
 
 
490
  msgid "Select album"
491
  msgstr "Wähle Album"
492
 
493
  #: ../admin/album.php:131
 
494
  msgid "No album selected"
495
  msgstr "Kein Album ausgewählt"
496
 
497
  #: ../admin/album.php:144
 
498
  msgid "Add new album"
499
  msgstr "Album hinzufügen"
500
 
501
  #: ../admin/album.php:148
502
  #: ../admin/manage.php:309
503
  #: ../admin/manage.php:580
 
 
 
504
  msgid "Delete"
505
  msgstr "Lösche"
506
 
507
  #: ../admin/album.php:148
 
508
  msgid "Delete album ?"
509
  msgstr "Lösche Album ?"
510
 
516
  #: ../admin/settings.php:378
517
  #: ../admin/settings.php:490
518
  #: ../admin/settings.php:598
 
 
 
 
 
 
 
 
 
 
519
  msgid "Update"
520
  msgstr "Aktualisiere"
521
 
522
  #: ../admin/album.php:158
 
523
  msgid "[Show all]"
524
  msgstr "[Alle zeigen]"
525
 
526
  #: ../admin/album.php:159
 
527
  msgid "[Maximize]"
528
  msgstr "[Vergrößern]"
529
 
530
  #: ../admin/album.php:160
 
531
  msgid "[Minimize]"
532
  msgstr "[Verkleinern]"
533
 
534
  #: ../admin/album.php:162
 
535
  msgid "After you create and select a album, you can drag and drop a gallery into your album below"
536
  msgstr "Nachdem du ein Album erstellt und ausgewählt hast, kannst du per Drag & Drop eine Galerie in das Album ziehen"
537
 
538
  #: ../admin/album.php:169
 
539
  msgid "Select Gallery"
540
  msgstr "Wähle Galerie"
541
 
542
  #: ../admin/album.php:208
 
543
  msgid "Album Page ID"
544
  msgstr "Album Seiten ID (Page ID)"
545
 
546
  #: ../admin/album.php:220
 
547
  msgid "No album selected!"
548
  msgstr "Kein Album ausgewählt"
549
 
550
  #: ../admin/album.php:256
551
  #: ../admin/manage.php:283
552
  #: ../admin/manage.php:535
 
 
 
553
  msgid "ID"
554
  msgstr "ID"
555
 
556
  #: ../admin/album.php:257
 
557
  msgid "Name"
558
  msgstr "Name"
559
 
560
  #: ../admin/album.php:258
561
  #: ../admin/manage.php:285
562
  #: ../admin/manage.php:446
 
 
 
 
 
563
  msgid "Title"
564
  msgstr "Titel"
565
 
566
  #: ../admin/album.php:259
 
567
  msgid "Page"
568
  msgstr "Seite"
569
 
570
  #: ../admin/functions.php:20
 
571
  msgid "No valid gallery name!"
572
  msgstr "Kein gültiger Galerie-Name!"
573
 
576
  #: ../admin/functions.php:50
577
  #: ../admin/functions.php:102
578
  #: ../admin/functions.php:109
 
 
 
 
 
579
  msgid "Directory"
580
  msgstr "Verzeichnis"
581
 
582
  #: ../admin/functions.php:27
 
583
  msgid "didn't exist. Please create first the main gallery folder "
584
  msgstr "nicht gefunden. Bitte erstelle zuerst das Hauptverzeichnis."
585
 
586
  #: ../admin/functions.php:28
587
  #: ../admin/functions.php:37
 
 
588
  msgid "Check this link, if you didn't know how to set the permission :"
589
  msgstr "Dieser Link zeigt dir wie man Verzeichnisrechte ändert :"
590
 
591
  #: ../admin/functions.php:36
592
  #: ../admin/functions.php:50
 
 
593
  msgid "is not writeable !"
594
  msgstr "ist schreibgeschützt !"
595
 
596
  #: ../admin/functions.php:45
597
  #: ../admin/functions.php:55
598
  #: ../admin/functions.php:525
 
 
 
 
599
  msgid "Unable to create directory "
600
  msgstr "Kann Verzeichnis nicht erstellen "
601
 
602
  #: ../admin/functions.php:59
 
603
  msgid "The server setting Safe-Mode is on !"
604
  msgstr "Auf dem Server ist Safe-Mode aktiviert (PHP.INI)"
605
 
606
  #: ../admin/functions.php:60
 
607
  msgid "If you have problems, please create directory"
608
  msgstr "Wenn Probleme auftreten, erstelle bitte das Verzeichnis"
609
 
610
  #: ../admin/functions.php:61
 
611
  msgid "and the thumbnails directory"
612
  msgstr "und das Thumbnails-Verzeichnis"
613
 
614
  #: ../admin/functions.php:61
 
615
  msgid "with permission 777 manually !"
616
  msgstr "mit den Berechtigungen 777 manuell !"
617
 
618
  #: ../admin/functions.php:78
 
619
  msgid "already exists"
620
  msgstr "gibt es bereits"
621
 
622
  #: ../admin/functions.php:82
623
  #: ../admin/functions.php:128
 
 
624
  msgid "successfully created!"
625
  msgstr "erfolgreich erstellt!"
626
 
627
  #: ../admin/functions.php:82
 
628
  msgid "You can show this gallery with the tag"
629
  msgstr "Du kannst diese Galerie mit dem Stichwort anzeigen :"
630
 
631
  #: ../admin/functions.php:102
 
632
  msgid "doesn&#96;t exist!"
633
  msgstr "gibt es nicht !"
634
 
635
  #: ../admin/functions.php:109
 
636
  msgid "contains no pictures"
637
  msgstr "enthält keine Bilder"
638
 
639
  #: ../admin/functions.php:125
 
640
  msgid "Database error. Could not add gallery!"
641
  msgstr "Datenbank-Fehler. Kann Galerie nicht hinzufügen!"
642
 
643
  #: ../admin/functions.php:144
 
644
  msgid " picture(s) successfully added"
645
  msgstr " Bild(er) erfolgreich hinzugefügt"
646
 
647
  #: ../admin/functions.php:175
648
  #: ../admin/functions.php:224
649
  #: ../admin/functions.php:287
 
 
 
650
  msgid "Running... Please wait"
651
  msgstr "Läuft... Bitte warten"
652
 
653
  #: ../admin/functions.php:176
654
  #: ../admin/manage.php:510
 
 
655
  msgid "Resize images"
656
  msgstr "Bilder verkleinern"
657
 
658
  #: ../admin/functions.php:200
 
659
  msgid " : Image resized..."
660
  msgstr " : Bild angepasst..."
661
 
662
  #: ../admin/functions.php:209
663
  #: ../admin/functions.php:266
 
 
664
  msgid "Some pictures are not writeable :"
665
  msgstr "Einige Bilder sind schreibgeschützt :"
666
 
667
  #: ../admin/functions.php:225
668
  #: ../admin/manage.php:508
 
 
669
  msgid "Set watermark"
670
  msgstr "Wasserzeichen setzen"
671
 
672
  #: ../admin/functions.php:257
 
673
  msgid " : Watermark created..."
674
  msgstr " : Wasserzeichen gesetzt..."
675
 
676
  #: ../admin/functions.php:288
677
  #: ../admin/manage.php:509
 
 
678
  msgid "Create new thumbnails"
679
  msgstr "Neue Thumbnails erstellen"
680
 
681
  #: ../admin/functions.php:355
 
682
  msgid " : Thumbnail created..."
683
  msgstr ": Thumbnail erstellt..."
684
 
685
  #: ../admin/functions.php:360
 
686
  msgid "Follow thumbnails could not created."
687
  msgstr "Folgende Thumbnails konnten nicht erstellt werden :"
688
 
689
  #: ../admin/functions.php:361
 
690
  msgid "Some thumbnails are not writeable :"
691
  msgstr "Einige Thumbnails sind schreibgeschützt :"
692
 
693
  #: ../admin/functions.php:460
 
694
  msgid "The Zip-file is too large. Exceed Memory limit !"
695
  msgstr "Das Zip-File ist zu groß. Speicherlimit überschritten !"
696
 
697
  #: ../admin/functions.php:501
 
698
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
699
  msgstr "Die hochgeladene Datei war keine korrekte Zip-Datei. Servermeldung :"
700
 
701
  #: ../admin/functions.php:520
 
702
  #, php-format
703
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
704
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
705
 
706
  #: ../admin/functions.php:535
 
707
  msgid "Zip-File successfully unpacked"
708
  msgstr "Zip-Datei erfolgreich entpackt"
709
 
710
  #: ../admin/functions.php:571
711
  #: ../admin/functions.php:681
 
 
712
  msgid "Failure in database, no gallery path set !"
713
  msgstr "Datenbankfehler! Kein Galerie-Pfad gesetzt !"
714
 
715
  #: ../admin/functions.php:592
716
  #: ../admin/functions.php:674
 
 
717
  msgid "is no valid image file!"
718
  msgstr "ist keine zulässige Bilddatei !"
719
 
720
  #: ../admin/functions.php:606
 
721
  #, php-format
722
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
723
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
724
 
725
  #: ../admin/functions.php:613
726
  #: ../admin/functions.php:698
 
 
727
  msgid "Error, the file could not moved to : "
728
  msgstr "Fehler: Diese Datei kann nicht verschoben werden zu :"
729
 
730
  #: ../admin/functions.php:618
731
  #: ../admin/functions.php:702
 
 
732
  msgid "Error, the file permissions could not set"
733
  msgstr "Fehler: Die Berechtigungen für diese Datei können nicht gesetzt werden"
734
 
735
  #: ../admin/functions.php:637
 
736
  msgid " Image(s) successfully added"
737
  msgstr " Bild(er) erfolgreich hinzugefügt"
738
 
739
  #: ../admin/functions.php:661
 
740
  msgid "Invalid upload. Error Code : "
741
  msgstr "Ungültiger Upload. Fehler Code :"
742
 
743
  #: ../admin/functions.php:713
 
744
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
745
  msgstr "Schade, dein freier Speicher scheint aufgebraucht zu sein. Bitte lösche zuerst ein paar Bilder."
746
 
747
  #: ../admin/functions.php:740
 
748
  #, php-format
749
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
750
  msgstr "SAFE MODE Einschränkungen ist aktiv. Du must das Verzeichnis <strong>%s</strong> manuell anlegen."
751
 
752
  #: ../admin/functions.php:741
 
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 "Wenn der Safe-Mode eingeschaltet ist, überprüft PHP ob der Besitzer (%s) des Skript mit dem Besitzer (%s) der Datei/Verzeichnis übereinstimmt."
756
 
757
  #: ../admin/manage.php:64
758
  #: ../admin/manage.php:85
 
 
759
  msgid "deleted successfully"
760
  msgstr "erfolgreich gelöscht"
761
 
762
  #: ../admin/manage.php:111
 
763
  msgid "Watermark successfully added"
764
  msgstr "Wasserzeichen erfolgreich erstellt"
765
 
766
  #: ../admin/manage.php:116
 
767
  msgid "Thumbnails successfully created. Please refresh your browser cache."
768
  msgstr "Thumbnails erfolgreich erstellt. Bitte Browser-Cache aktualisieren."
769
 
770
  #: ../admin/manage.php:121
 
771
  msgid "Images successfully resized"
772
  msgstr "Bilder erfolgreich verkleinert"
773
 
774
  #: ../admin/manage.php:139
 
775
  msgid "Pictures deleted successfully "
776
  msgstr "Bilder erfolgreich gelöscht"
777
 
778
  #: ../admin/manage.php:145
 
779
  msgid "Import metadata finished"
780
  msgstr "Import der Metadaten beendet"
781
 
782
  #: ../admin/manage.php:195
 
783
  msgid "Tags changed"
784
  msgstr "Stichwörter geändert"
785
 
786
  #: ../admin/manage.php:215
 
787
  msgid "Update successful"
788
  msgstr "Aktualisierung erfolgreich"
789
 
790
  #: ../admin/manage.php:248
 
791
  msgid "New gallery page ID"
792
  msgstr "Neue Galerie Seiten ID"
793
 
794
  #: ../admin/manage.php:248
 
795
  msgid "created"
796
  msgstr "erstellt"
797
 
798
  #: ../admin/manage.php:279
 
799
  msgid "Gallery Overview"
800
  msgstr "Galerie Übersicht"
801
 
802
  #: ../admin/manage.php:284
 
803
  msgid "Gallery name"
804
  msgstr "Galerie Name"
805
 
806
  #: ../admin/manage.php:286
807
  #: ../admin/manage.php:465
808
  #: ../admin/manage.php:541
 
 
 
 
 
 
 
 
809
  msgid "Description"
810
  msgstr "Beschreibung"
811
 
812
  #: ../admin/manage.php:287
 
813
  msgid "Page ID"
814
  msgstr "Seiten ID (Page ID)"
815
 
816
  #: ../admin/manage.php:288
 
817
  msgid "Quantity"
818
  msgstr "Anzahl"
819
 
820
  #: ../admin/manage.php:289
821
  #: ../admin/manage.php:547
 
 
822
  msgid "Action"
823
  msgstr "Aktion"
824
 
825
  #: ../admin/manage.php:308
 
 
826
  msgid "Edit"
827
  msgstr "Bearbeiten"
828
 
829
  #: ../admin/manage.php:309
 
830
  msgid "Delete this gallery ?"
831
  msgstr "Diese Galerie löschen ?"
832
 
833
  #: ../admin/manage.php:314
834
  #: ../admin/manage.php:585
 
 
835
  msgid "No entries found"
836
  msgstr "Keine Einträge gefunden"
837
 
840
  msgstr "Haupteinstellungen"
841
 
842
  #: ../admin/manage.php:448
 
843
  msgid "Page Link to"
844
  msgstr "Seite verlinkt zu"
845
 
846
  #: ../admin/manage.php:451
 
847
  msgid "Not linked"
848
  msgstr "Nicht verlinkt"
849
 
850
  #: ../admin/manage.php:467
 
851
  msgid "Preview image"
852
  msgstr "Vorschau-Bild"
853
 
854
  #: ../admin/manage.php:470
 
855
  msgid "No Picture"
856
  msgstr "Kein Bild"
857
 
858
  #: ../admin/manage.php:485
 
859
  msgid "Path"
860
  msgstr "Pfad"
861
 
862
  #: ../admin/manage.php:488
 
863
  msgid "Create new page"
864
  msgstr "Neue Seite erstellen"
865
 
866
  #: ../admin/manage.php:491
 
867
  msgid "Main page (No parent)"
868
  msgstr "Haupseite (keine Unterseite)"
869
 
870
  #: ../admin/manage.php:494
 
871
  msgid "Add page"
872
  msgstr "Seite hinzufügen"
873
 
874
  #: ../admin/manage.php:500
 
875
  msgid "Scan Folder for new images"
876
  msgstr "Überprüfe Verzeichniss nach neuen Bildern"
877
 
878
  #: ../admin/manage.php:501
879
  #: ../admin/manage.php:592
 
 
 
880
  msgid "Save Changes"
881
  msgstr "Änderungen Speichern"
882
 
883
  #: ../admin/manage.php:506
 
884
  msgid "No action"
885
  msgstr "Keine Aktion"
886
 
887
  #: ../admin/manage.php:511
 
888
  msgid "Delete images"
889
  msgstr "Bilder löschen"
890
 
891
  #: ../admin/manage.php:512
 
892
  msgid "Import metadata"
893
  msgstr "Metadaten importieren"
894
 
895
  #: ../admin/manage.php:514
 
896
  msgid "Add tags"
897
  msgstr "Stichwörter hinzufügen"
898
 
899
  #: ../admin/manage.php:515
 
900
  msgid "Delete tags"
901
  msgstr "Stichwörter löschen"
902
 
903
  #: ../admin/manage.php:516
 
904
  msgid "Overwrite tags"
905
  msgstr "Stichwörter überschreiben"
906
 
907
  #: ../admin/manage.php:520
908
  #: ../admin/manage.php:521
909
  #: ../admin/manage.php:610
 
 
 
910
  msgid "OK"
911
  msgstr "OK"
912
 
913
  #: ../admin/manage.php:520
914
  #: ../admin/manage.php:610
 
 
915
  msgid "No images selected"
916
  msgstr "Keine Bilder ausgewählt"
917
 
918
  #: ../admin/manage.php:520
919
  #: ../admin/manage.php:610
 
 
920
  #, php-format
921
  msgid ""
922
  "You are about to start the bulk edit for %s images \n"
928
  " 'Abbrechenl' um zu stoppen, 'OK' um die Bearbeitung durchzuführen."
929
 
930
  #: ../admin/manage.php:522
 
931
  msgid "Hide thumbnails "
932
  msgstr "Thumbnails verstecken"
933
 
934
  #: ../admin/manage.php:523
 
935
  msgid "Show thumbnails "
936
  msgstr "Thumbnails zeigen"
937
 
938
  #: ../admin/manage.php:524
 
939
  msgid "Show tags"
940
  msgstr "Zeige Tags"
941
 
942
  #: ../admin/manage.php:525
 
943
  msgid "Hide tags"
944
  msgstr "Verstecke Tags"
945
 
946
  #: ../admin/manage.php:527
 
947
  msgid "Sort gallery"
948
  msgstr "Sortiere Bilder"
949
 
950
  #: ../admin/manage.php:536
951
  #: ../admin/settings.php:320
 
 
952
  msgid "File name"
953
  msgstr "Dateiname"
954
 
955
  #: ../admin/manage.php:538
 
 
 
956
  msgid "Thumbnail"
957
  msgstr "Thumbnail"
958
 
959
  #: ../admin/manage.php:542
 
 
 
960
  msgid "Alt &amp; Title Text"
961
  msgstr "Alt &amp; Titel Text"
962
 
963
  #: ../admin/manage.php:543
 
964
  msgid "exclude"
965
  msgstr "ausschließen"
966
 
967
  #: ../admin/manage.php:545
 
968
  msgid "Tags (comma separated list)"
969
  msgstr "Stichwörter (Tags)"
970
 
971
  #: ../admin/manage.php:578
 
972
  msgid "View"
973
  msgstr "Ansehen"
974
 
975
  #: ../admin/manage.php:579
 
976
  msgid "Show Meta data"
977
  msgstr "Zeige Metadaten"
978
 
979
  #: ../admin/manage.php:579
 
980
  msgid "Meta"
981
  msgstr "Meta"
982
 
983
  #: ../admin/manage.php:580
 
984
  msgid "Delete this file ?"
985
  msgstr "Diese Datei löschen ?"
986
 
987
  #: ../admin/manage.php:607
 
988
  msgid "Enter the tags"
989
  msgstr "Stichwörter angeben"
990
 
991
  #: ../admin/manage.php:610
 
 
 
992
  msgid "Cancel"
993
  msgstr "Abbrechen"
994
 
995
  #: ../admin/overview.php:18
 
996
  msgid "NextGEN Gallery Overview"
997
  msgstr "NextGEN Galerie Übersicht"
998
 
1001
  msgstr "Zusammenfassung"
1002
 
1003
  #: ../admin/overview.php:30
 
1004
  #, php-format
1005
  msgid "There are totally %1$s pictures in %2$s galleries, which are spread across %3$s albums."
1006
  msgstr "Es gibt insgesamt %1$s Bilder in %2$s Galerien - verteilt in %3$s Alben."
1007
 
1008
  #: ../admin/overview.php:34
 
1009
  msgid "New Version available"
1010
  msgstr "Neue Version verfügbar !!"
1011
 
1012
  #: ../admin/overview.php:35
 
1013
  msgid "The server reports that a new NextGEN Gallery Version is now available. Please visit the plugin homepage for more information."
1014
  msgstr "Der Server benachrichtigt Dich über eine neu verfügbare Version der NextGEN Galerie. Bitte besuche die Plugin Homepage um weitere Informationen zu erhalten."
1015
 
1016
  #: ../admin/overview.php:36
 
1017
  msgid "Download here"
1018
  msgstr "Hier dowloaden"
1019
 
1020
  #: ../admin/overview.php:42
 
1021
  msgid "Server Settings"
1022
  msgstr "Server- Einstellungen"
1023
 
1026
  msgstr "Willkommen"
1027
 
1028
  #: ../admin/overview.php:54
 
1029
  msgid "gallery administrator"
1030
  msgstr "Galerie-Administrator"
1031
 
1032
  #: ../admin/overview.php:54
 
1033
  msgid "gallery editor"
1034
  msgstr "Galerie-Mitarbeiter"
1035
 
1055
  msgstr "Ändere die Einstellungen von NextGEN Galerie"
1056
 
1057
  #: ../admin/overview.php:66
 
1058
  msgid "Latest News"
1059
  msgstr "Letzte Informationen"
1060
 
1061
  #: ../admin/overview.php:85
 
1062
  #, php-format
1063
  msgid "Newsfeed could not be loaded. Check the <a href=\"%s\">front page</a> to check for updates."
1064
  msgstr "Der Newsfeed kann nicht geladen werden. Schaue auf die <a href=\"%s\">Hauptseite</a> um Updates mitzubekommen."
1065
 
1066
  #: ../admin/overview.php:98
 
1067
  msgid "GD support"
1068
  msgstr "GD Unterstützung"
1069
 
1070
  #: ../admin/overview.php:109
 
1071
  msgid "No GD support"
1072
  msgstr "Keine GD Unterstützung"
1073
 
1075
  #: ../admin/overview.php:154
1076
  #: ../admin/overview.php:157
1077
  #: ../admin/overview.php:160
 
 
 
 
1078
  msgid "Yes"
1079
  msgstr "Ja"
1080
 
1082
  #: ../admin/overview.php:155
1083
  #: ../admin/overview.php:158
1084
  #: ../admin/overview.php:161
 
 
 
 
1085
  msgid "No"
1086
  msgstr "Nein"
1087
 
1088
  #: ../admin/overview.php:131
 
1089
  msgid "Not set"
1090
  msgstr "Nicht gesetzt"
1091
 
1092
  #: ../admin/overview.php:133
1093
  #: ../admin/overview.php:136
 
 
1094
  msgid "On"
1095
  msgstr "An"
1096
 
1097
  #: ../admin/overview.php:134
1098
  #: ../admin/overview.php:137
 
 
1099
  msgid "Off"
1100
  msgstr "Aus"
1101
 
1104
  #: ../admin/overview.php:146
1105
  #: ../admin/overview.php:149
1106
  #: ../admin/overview.php:152
 
 
 
 
 
1107
  msgid "N/A"
1108
  msgstr "N/A"
1109
 
1110
  #: ../admin/overview.php:151
 
1111
  msgid " MByte"
1112
  msgstr " MByte"
1113
 
1114
  #: ../admin/overview.php:164
 
1115
  msgid "Operating System"
1116
  msgstr "Betriebssystem"
1117
 
1118
  #: ../admin/overview.php:165
 
1119
  msgid "Server"
1120
  msgstr "Server"
1121
 
1122
  #: ../admin/overview.php:166
 
1123
  msgid "Memory usage"
1124
  msgstr "Speicherverbrauch"
1125
 
1126
  #: ../admin/overview.php:167
 
1127
  msgid "MYSQL Version"
1128
  msgstr "MySQL Version"
1129
 
1130
  #: ../admin/overview.php:168
 
1131
  msgid "SQL Mode"
1132
  msgstr "SQL Modus"
1133
 
1134
  #: ../admin/overview.php:169
 
1135
  msgid "PHP Version"
1136
  msgstr "PHP Version"
1137
 
1138
  #: ../admin/overview.php:170
 
1139
  msgid "PHP Safe Mode"
1140
  msgstr "PHP Safe Mode"
1141
 
1142
  #: ../admin/overview.php:171
 
1143
  msgid "PHP Allow URL fopen"
1144
  msgstr "PHP Allow URL fopen"
1145
 
1146
  #: ../admin/overview.php:172
 
1147
  msgid "PHP Memory Limit"
1148
  msgstr "PHP Memory Limit"
1149
 
1150
  #: ../admin/overview.php:173
 
1151
  msgid "PHP Max Upload Size"
1152
  msgstr "PHP Max Upload Size"
1153
 
1154
  #: ../admin/overview.php:174
 
1155
  msgid "PHP Max Post Size"
1156
  msgstr "PHP Max Post Size"
1157
 
1158
  #: ../admin/overview.php:175
 
1159
  msgid "PHP Max Script Execute Time"
1160
  msgstr "PHP Max Script Execute Time"
1161
 
1162
  #: ../admin/overview.php:176
 
1163
  msgid "PHP Exif support"
1164
  msgstr "PHP Exif Modul"
1165
 
1166
  #: ../admin/overview.php:177
 
1167
  msgid "PHP IPTC support"
1168
  msgstr "PHP IPTC Modul"
1169
 
1170
  #: ../admin/overview.php:178
 
1171
  msgid "PHP XML support"
1172
  msgstr "PHP XML Modul"
1173
 
1174
  #: ../admin/overview.php:319
 
1175
  msgid "Storage Space"
1176
  msgstr "Speicherplatz"
1177
 
1178
  #: ../admin/overview.php:322
 
1179
  msgid "Upload Space Used:"
1180
  msgstr "Verbrauchter Uploadspeicher:"
1181
 
1182
  #: ../admin/overview.php:328
 
1183
  msgid "Upload Space Remaining:"
1184
  msgstr "Verbleibender Speicher:"
1185
 
1186
  #: ../admin/roles.php:20
 
1187
  msgid "Updated capabilities"
1188
  msgstr "Zugriffsrechte geändert"
1189
 
1190
  #: ../admin/roles.php:25
 
1191
  msgid "Roles / capabilities"
1192
  msgstr "Rollen / Zugriffsrechte"
1193
 
1194
  #: ../admin/roles.php:26
 
1195
  msgid "Select the lowest role which should be able to access the follow capabilities. NextGEN Gallery supports the standard roles from WordPress."
1196
  msgstr "Wähle die niedrigste Rolle aus, die Zugriff haben soll. NextGEN Gallery unterstützt nur die Standard Wordpress Rollen/Fähigkeiten von WordPress."
1197
 
1198
  #: ../admin/roles.php:27
 
1199
  msgid "For a more flexible user management you can use the"
1200
  msgstr "Nutze für eine flexiblere Rechteverwaltung den "
1201
 
1202
  #: ../admin/roles.php:33
 
1203
  msgid "Main NextGEN Gallery overview"
1204
  msgstr "NextGEN Galerie Übersicht"
1205
 
1206
  #: ../admin/roles.php:37
 
1207
  msgid "Use TinyMCE Button / Upload tab"
1208
  msgstr "TinyMCE Button / Upload Tab"
1209
 
1210
  #: ../admin/roles.php:41
 
1211
  msgid "Add gallery / Upload images"
1212
  msgstr "Galerie einrichten / Bilder hochladen"
1213
 
1214
  #: ../admin/roles.php:45
 
1215
  msgid "Manage gallery"
1216
  msgstr "Galerie verwalten"
1217
 
1218
  #: ../admin/roles.php:49
 
1219
  msgid "Edit Album"
1220
  msgstr "Album erstellen"
1221
 
1222
  #: ../admin/roles.php:53
 
1223
  msgid "Change style"
1224
  msgstr "Style anpassen"
1225
 
1226
  #: ../admin/roles.php:57
 
1227
  msgid "Change options"
1228
  msgstr "Optionen änderen"
1229
 
1230
  #: ../admin/roles.php:61
 
1231
  msgid "Update capabilities"
1232
  msgstr "Rechte aktualisieren"
1233
 
1234
  #: ../admin/settings.php:33
 
 
 
 
1235
  msgid "Update successfully"
1236
  msgstr "Aktualisierung erfolgreich"
1237
 
1238
  #: ../admin/settings.php:50
 
1239
  msgid "Cache cleared"
1240
  msgstr "Cache löschen"
1241
 
1242
  #: ../admin/settings.php:101
1243
  #: ../admin/settings.php:113
 
 
1244
  msgid "General Options"
1245
  msgstr "Allg. Optionen"
1246
 
1247
  #: ../admin/settings.php:103
 
1248
  msgid "Images"
1249
  msgstr "Bilder"
1250
 
1251
  #: ../admin/settings.php:105
1252
  #: ../admin/settings.php:339
 
 
1253
  msgid "Effects"
1254
  msgstr "Effekte"
1255
 
1256
  #: ../admin/settings.php:106
1257
  #: ../admin/settings.php:392
 
 
 
 
1258
  msgid "Watermark"
1259
  msgstr "Wasserzeichen"
1260
 
1261
  #: ../admin/settings.php:107
1262
  #: ../admin/settings.php:296
1263
  #: ../admin/settings.php:500
 
 
 
 
 
1264
  msgid "Slideshow"
1265
  msgstr "Slideshow"
1266
 
1267
  #: ../admin/settings.php:120
 
 
 
1268
  msgid "Gallery path"
1269
  msgstr "Galerie-Pfad"
1270
 
1271
  #: ../admin/settings.php:122
 
1272
  msgid "This is the default path for all galleries"
1273
  msgstr "Dies ist der Standard-Pfad für alle Galerien"
1274
 
1275
  #: ../admin/settings.php:133
 
1276
  msgid "Delete image files"
1277
  msgstr "Lösche Bilddateien"
1278
 
1279
  #: ../admin/settings.php:135
 
1280
  msgid "Delete files, when removing a gallery in the database"
1281
  msgstr "Löscht auch die Dateien, falls die Galerie aus der Datenbank entfernt wird"
1282
 
1283
  #: ../admin/settings.php:138
 
1284
  msgid "Activate permalinks"
1285
  msgstr "Aktiviere Permalinks"
1286
 
1287
  #: ../admin/settings.php:140
 
1288
  msgid "When you activate this option, you need to update your permalink structure one time."
1289
  msgstr "Wenn du diese Option aktivierst, muss du einmal die Permalink Struktur aktualisieren."
1290
 
1291
  #: ../admin/settings.php:143
 
1292
  msgid "Tags / Categories"
1293
  msgstr "Stichwörter / Kategorien"
1294
 
1295
  #: ../admin/settings.php:146
 
1296
  msgid "Activate related images"
1297
  msgstr "Verwandte Bilder anzeigen"
1298
 
1299
  #: ../admin/settings.php:148
 
1300
  msgid "This option will append related images to every post"
1301
  msgstr "Diese Option hängt verwandte Bilder an jeden Beitrag"
1302
 
1303
  #: ../admin/settings.php:152
 
1304
  msgid "Match with"
1305
  msgstr "Vergleiche mit"
1306
 
1307
  #: ../admin/settings.php:153
 
1308
  msgid "Categories"
1309
  msgstr "Kategorien"
1310
 
1311
  #: ../admin/settings.php:154
 
 
1312
  msgid "Tags"
1313
  msgstr "Stichwörter"
1314
 
1315
  #: ../admin/settings.php:154
 
1316
  msgid " (require WordPress 2.3 or higher)"
1317
  msgstr " (benötigt WordPress 2.3 oder höher)"
1318
 
1319
  #: ../admin/settings.php:158
 
1320
  msgid "Max. number of images"
1321
  msgstr "Max. Anzahl der Bilder"
1322
 
1323
  #: ../admin/settings.php:160
 
1324
  msgid "0 will show all images"
1325
  msgstr "0 zeige alle verwandten Bilder"
1326
 
1327
  #: ../admin/settings.php:172
 
1328
  msgid "Thumbnail settings"
1329
  msgstr "Thumbnail Einstellungen"
1330
 
1331
  #: ../admin/settings.php:177
 
1332
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1333
  msgstr "Bitte beachten : Änderungen der Einstellungen werden erst übernommen, wenn Du neue Thumbnails unter -> \"Gallery verwalten\" erstellst"
1334
 
1335
  #: ../admin/settings.php:180
 
1336
  msgid "Width x height (in pixel)"
1337
  msgstr "Breite x Höhe (in Pixel)"
1338
 
1339
  #: ../admin/settings.php:182
 
1340
  msgid "These values are maximum values "
1341
  msgstr "Diese Angaben sind maximale Angaben."
1342
 
1343
  #: ../admin/settings.php:185
 
1344
  msgid "Set fix dimension"
1345
  msgstr "Setze fixe Größe"
1346
 
1347
  #: ../admin/settings.php:187
 
1348
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1349
  msgstr "Ignoriere Bildseitenverhältnis"
1350
 
1351
  #: ../admin/settings.php:190
 
1352
  msgid "Crop square thumbnail from image"
1353
  msgstr "Mittige Thumbnails aus Bildern ausschneiden"
1354
 
1355
  #: ../admin/settings.php:192
 
1356
  msgid "Create square thumbnails, use only the width setting :"
1357
  msgstr "Erstellt viereckige Thumbnails, nutzt nur den Wert der Breite :"
1358
 
1359
  #: ../admin/settings.php:195
 
1360
  msgid "Thumbnail quality"
1361
  msgstr "Thumbnail Qualität"
1362
 
1363
  #: ../admin/settings.php:199
1364
  #: ../admin/settings.php:231
 
 
1365
  msgid "Resample Mode"
1366
  msgstr "Resample Modus"
1367
 
1368
  #: ../admin/settings.php:201
1369
  #: ../admin/settings.php:234
 
 
1370
  msgid "Value between 1-5 (higher value, more CPU load)"
1371
  msgstr "Wähle zwischen 1-5 (je höhere desto länger braucht der Server)"
1372
 
1373
  #: ../admin/settings.php:212
 
1374
  msgid "Image settings"
1375
  msgstr "Bild Einstellungen"
1376
 
1377
  #: ../admin/settings.php:219
 
1378
  msgid "Resize Images"
1379
  msgstr "Bilder verkleinern"
1380
 
1381
  #: ../admin/settings.php:223
 
1382
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1383
  msgstr "Breite x Höhe (in Pixel). NextGEN Galerie beachtet das Seitenverhältnis."
1384
 
1385
  #: ../admin/settings.php:226
 
1386
  msgid "Image quality"
1387
  msgstr "Bild Qualität"
1388
 
1389
  #: ../admin/settings.php:237
 
1390
  msgid "Single picture"
1391
  msgstr "Einzelbilder"
1392
 
1393
  #: ../admin/settings.php:240
 
1394
  msgid "Cache single pictures"
1395
  msgstr "Nutze Cache für Einzelbidler"
1396
 
1397
  #: ../admin/settings.php:243
 
1398
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1399
  msgstr "Erstellt ein Cache-Bild für jedes Einzelbild (singlepic). Reduziert die CPU Belastung."
1400
 
1401
  #: ../admin/settings.php:246
 
1402
  msgid "Clear cache folder"
1403
  msgstr "Lösche Cache Verzeichnis"
1404
 
1405
  #: ../admin/settings.php:248
 
1406
  msgid "Proceed now"
1407
  msgstr "Jetzt durchführen"
1408
 
1409
  #: ../admin/settings.php:259
 
1410
  msgid "Gallery settings"
1411
  msgstr "Galerie Einstellungen"
1412
 
1413
  #: ../admin/settings.php:275
 
1414
  msgid "Deactivate gallery page link"
1415
  msgstr "Keine Seitenverzweigung"
1416
 
1417
  #: ../admin/settings.php:277
 
1418
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1419
  msgstr "Ein Album benötigt dann keinen Link zur Seite. Die Galerie wird direkt angezeigt."
1420
 
1421
  #: ../admin/settings.php:281
 
1422
  msgid "Number of images per page"
1423
  msgstr "Anzahl der Bilder pro Seite"
1424
 
1425
  #: ../admin/settings.php:283
 
1426
  msgid "0 will disable pagination, all images on one page"
1427
  msgstr "0 schaltet Blätterfunktion ab ( = alle Bilder auf einer Seite )"
1428
 
1429
  #: ../admin/settings.php:287
 
1430
  msgid "Integrate slideshow"
1431
  msgstr "Slideshow verwenden"
1432
 
1433
  #: ../admin/settings.php:294
 
1434
  msgid "Show first"
1435
  msgstr "Zeige als Erstes"
1436
 
1437
  #: ../admin/settings.php:300
 
1438
  msgid "Show thumbnail description"
1439
  msgstr "Zeige Bildbeschreibung"
1440
 
1441
  #: ../admin/settings.php:301
1442
  #: ../admin/settings.php:351
 
 
 
 
1443
  msgid "None"
1444
  msgstr "Keiner"
1445
 
1446
  #: ../admin/settings.php:302
 
1447
  msgid "Description text"
1448
  msgstr "Beschreibung"
1449
 
1450
  #: ../admin/settings.php:303
1451
  #: ../admin/settings.php:321
 
 
1452
  msgid "Alt / Title text"
1453
  msgstr "Alt / Titel Text"
1454
 
1455
  #: ../admin/settings.php:307
 
1456
  msgid "Show ImageBrowser"
1457
  msgstr "Zeige Bilder Browser"
1458
 
1459
  #: ../admin/settings.php:309
 
1460
  msgid "The gallery will open the ImageBrowser instead the effect."
1461
  msgstr "Es wird der Bilder Browser angezeigt (Kein JavaScript Effekt)"
1462
 
1463
  #: ../admin/settings.php:313
 
1464
  msgid "Sort options"
1465
  msgstr "Sortierung"
1466
 
1467
  #: ../admin/settings.php:316
 
1468
  msgid "Sort thumbnails"
1469
  msgstr "Thumbnails sortieren"
1470
 
1471
  #: ../admin/settings.php:318
 
1472
  msgid "Custom order"
1473
  msgstr "Benutzerdefiniert"
1474
 
1475
  #: ../admin/settings.php:319
 
1476
  msgid "Image ID"
1477
  msgstr "Bilder ID"
1478
 
1479
  #: ../admin/settings.php:325
 
1480
  msgid "Sort direction"
1481
  msgstr "Sortierreihenfolge"
1482
 
1483
  #: ../admin/settings.php:326
 
1484
  msgid "Ascending"
1485
  msgstr "Aufsteigend"
1486
 
1487
  #: ../admin/settings.php:327
 
1488
  msgid "Descending"
1489
  msgstr "Absteigend"
1490
 
1491
  #: ../admin/settings.php:343
 
1492
  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."
1493
  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)."
1494
 
1495
  #: ../admin/settings.php:344
 
1496
  msgid "With the placeholder"
1497
  msgstr "Mit Platzhalter"
1498
 
1499
  #: ../admin/settings.php:344
 
1500
  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."
1501
  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."
1502
 
1503
  #: ../admin/settings.php:348
 
1504
  msgid "JavaScript Thumbnail effect"
1505
  msgstr "JavaScript Thumbnail Effekt"
1506
 
1507
  #: ../admin/settings.php:352
 
1508
  msgid "Thickbox"
1509
  msgstr "Thickbox"
1510
 
1511
  #: ../admin/settings.php:353
 
1512
  msgid "Lightbox"
1513
  msgstr "Lightbox"
1514
 
1515
  #: ../admin/settings.php:354
 
1516
  msgid "Highslide"
1517
  msgstr "Highslide"
1518
 
1519
  #: ../admin/settings.php:355
 
1520
  msgid "Shutter"
1521
  msgstr "Shutter"
1522
 
1523
  #: ../admin/settings.php:356
 
1524
  msgid "Custom"
1525
  msgstr "Eigener"
1526
 
1527
  #: ../admin/settings.php:361
 
1528
  msgid "Link Code line"
1529
  msgstr "Link Code Zeile"
1530
 
1531
  #: ../admin/settings.php:369
 
1532
  msgid "Select loading image"
1533
  msgstr "Wähle Ladeanimation"
1534
 
1535
  #: ../admin/settings.php:393
 
1536
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1537
  msgstr "Bitte beachten : Das Wasserzeichen kann nur unter der Galerieverwaltung gesetzt werden. "
1538
 
1539
  #: ../admin/settings.php:398
 
1540
  msgid "Preview"
1541
  msgstr "Vorschau"
1542
 
1543
  #: ../admin/settings.php:400
1544
  #: ../admin/settings.php:404
 
 
1545
  msgid "Position"
1546
  msgstr "Position"
1547
 
1548
  #: ../admin/settings.php:424
 
1549
  msgid "Offset"
1550
  msgstr "Abstand"
1551
 
1552
  #: ../admin/settings.php:442
 
1553
  msgid "Use image as watermark"
1554
  msgstr "Benutze Bild als Wasserzeichen"
1555
 
1556
  #: ../admin/settings.php:445
 
1557
  msgid "URL to file"
1558
  msgstr "URL zur Datei"
1559
 
1560
  #: ../admin/settings.php:447
 
1561
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
1562
  msgstr "Der Dateizugriff von URL's ist auf diesem Server deaktiviert (allow_url_fopen)"
1563
 
1564
  #: ../admin/settings.php:453
 
1565
  msgid "Use text as watermark"
1566
  msgstr "Benutze Text als Wasserzeichen"
1567
 
1568
  #: ../admin/settings.php:456
 
1569
  msgid "Font"
1570
  msgstr "Schriftart"
1571
 
1572
  #: ../admin/settings.php:465
 
1573
  msgid "This function will not work, cause you need the FreeType library"
1574
  msgstr "Diese Funktion benötigt die FreeType Bibliothek"
1575
 
1576
  #: ../admin/settings.php:467
 
1577
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
1578
  msgstr "Du kannst mehr Schriftarten in das Verzeichniss <strong>nggallery/fonts</strong> hochladen."
1579
 
1580
  #: ../admin/settings.php:471
 
 
1581
  msgid "Size"
1582
  msgstr "Größe"
1583
 
1584
  #: ../admin/settings.php:475
 
1585
  msgid "Color"
1586
  msgstr "Farbe"
1587
 
1588
  #: ../admin/settings.php:477
 
1589
  msgid "(hex w/o #)"
1590
  msgstr "(hex w/o #)"
1591
 
1592
  #: ../admin/settings.php:480
 
1593
  msgid "Text"
1594
  msgstr "Text"
1595
 
1596
  #: ../admin/settings.php:484
 
1597
  msgid "Opaque"
1598
  msgstr "Transparenz"
1599
 
1600
  #: ../admin/settings.php:502
 
1601
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
1602
  msgstr "Die Datei imagerotator.swf ist nicht im Plugin Verzeichniss -> so wird die Slideshow nicht funktionieren."
1603
 
1604
  #: ../admin/settings.php:503
 
1605
  msgid "The settings are used in the JW Image Rotator Version"
1606
  msgstr "Die Einstellungen werden im JW Image Rotator benutzt , in der Version"
1607
 
1608
  #: ../admin/settings.php:504
 
1609
  msgid "See more information for the Flash Player on the web page"
1610
  msgstr "Weitere Informationen auf der Flash Player Homepage"
1611
 
1612
  #: ../admin/settings.php:507
 
1613
  msgid "Default size (W x H)"
1614
  msgstr "Standard Größe (B x H)"
1615
 
1616
  #: ../admin/settings.php:512
 
1617
  msgid "Shuffle mode"
1618
  msgstr "Shuffle Modus"
1619
 
1620
  #: ../admin/settings.php:516
 
1621
  msgid "Show next image on click"
1622
  msgstr "Zeige nächstes Bild bei Klick"
1623
 
1624
  #: ../admin/settings.php:520
 
1625
  msgid "Show navigation bar"
1626
  msgstr "Zeige Navigations-Leiste"
1627
 
1628
  #: ../admin/settings.php:524
 
1629
  msgid "Show loading icon"
1630
  msgstr "Zeige Lade-Bildchen"
1631
 
1632
  #: ../admin/settings.php:528
 
1633
  msgid "Use watermark logo"
1634
  msgstr "Wasserzeichen anzeigen"
1635
 
1636
  #: ../admin/settings.php:530
 
1637
  msgid "You can change the logo at the watermark settings"
1638
  msgstr "Du kannst den Pfad in Einstellungen für da Wasserzeichen angeben"
1639
 
1640
  #: ../admin/settings.php:533
 
1641
  msgid "Stretch image"
1642
  msgstr "Bild dehnen"
1643
 
1644
  #: ../admin/settings.php:536
 
1645
  msgid "true"
1646
  msgstr "Ja"
1647
 
1648
  #: ../admin/settings.php:537
 
1649
  msgid "false"
1650
  msgstr "Nein"
1651
 
1652
  #: ../admin/settings.php:538
 
1653
  msgid "fit"
1654
  msgstr "Passend"
1655
 
1656
  #: ../admin/settings.php:539
 
1657
  msgid "none"
1658
  msgstr "keiner"
1659
 
1660
  #: ../admin/settings.php:544
 
1661
  msgid "Duration time"
1662
  msgstr "Dauer"
1663
 
1664
  #: ../admin/settings.php:545
 
1665
  msgid "sec."
1666
  msgstr "Sek."
1667
 
1668
  #: ../admin/settings.php:548
 
1669
  msgid "Transition / Fade effect"
1670
  msgstr "Fade Effekt"
1671
 
1672
  #: ../admin/settings.php:551
 
1673
  msgid "fade"
1674
  msgstr "Fade"
1675
 
1676
  #: ../admin/settings.php:552
 
1677
  msgid "bgfade"
1678
  msgstr "BGFade"
1679
 
1680
  #: ../admin/settings.php:553
 
1681
  msgid "slowfade"
1682
  msgstr "Slowfade"
1683
 
1684
  #: ../admin/settings.php:554
 
1685
  msgid "circles"
1686
  msgstr "Kreise"
1687
 
1688
  #: ../admin/settings.php:555
 
1689
  msgid "bubbles"
1690
  msgstr "Blasen"
1691
 
1692
  #: ../admin/settings.php:556
 
1693
  msgid "blocks"
1694
  msgstr "Blöcke"
1695
 
1696
  #: ../admin/settings.php:557
 
1697
  msgid "fluids"
1698
  msgstr "Fluids"
1699
 
1700
  #: ../admin/settings.php:558
 
1701
  msgid "flash"
1702
  msgstr "Flash"
1703
 
1704
  #: ../admin/settings.php:559
 
1705
  msgid "lines"
1706
  msgstr "Linien"
1707
 
1708
  #: ../admin/settings.php:564
 
1709
  msgid "Use slow zooming effect"
1710
  msgstr "nutze Zoom Effekt"
1711
 
1712
  #: ../admin/settings.php:568
 
1713
  msgid "Background Color"
1714
  msgstr "Hintergrund (BG) Farbe"
1715
 
1716
  #: ../admin/settings.php:573
 
1717
  msgid "Texts / Buttons Color"
1718
  msgstr "Text- / Button Farbe"
1719
 
1720
  #: ../admin/settings.php:578
 
1721
  msgid "Rollover / Active Color"
1722
  msgstr "Rollover / Aktiv (Link) Farbe"
1723
 
1724
  #: ../admin/settings.php:583
 
1725
  msgid "Screen Color"
1726
  msgstr "Seiten Farbe"
1727
 
1728
  #: ../admin/settings.php:588
 
1729
  msgid "Background music (URL)"
1730
  msgstr "Hintergrundmusik (URL)"
1731
 
1732
  #: ../admin/settings.php:592
 
1733
  msgid "Try XHTML validation (with CDATA)"
1734
  msgstr "Integriere XHTML Validierung (mittels CDATA)"
1735
 
1736
  #: ../admin/settings.php:594
 
1737
  msgid "Important : Could causes problem at some browser. Please recheck your page."
1738
  msgstr "Wichtig : Es könnnten Probleme bei einigen Browser auftauchen. Unbedingt Seite prüfen."
1739
 
1740
  #: ../admin/setup.php:12
 
1741
  msgid "Reset all settings to default parameter"
1742
  msgstr "Stelle alle Einstellungen auf Anfangswerte zurück"
1743
 
1744
  #: ../admin/setup.php:37
 
1745
  msgid "Uninstall sucessfull ! Now delete the plugin and enjoy your life ! Good luck !"
1746
  msgstr "Deinstallation erfolgreich ! Nun kannst Du das Plugin löschen und Dein Leben weiterhin genießen ! Stay geeky ! Viel Glück !"
1747
 
1748
  #: ../admin/setup.php:46
 
1749
  msgid "Reset options"
1750
  msgstr "Optionen zurücksetzen"
1751
 
1752
  #: ../admin/setup.php:49
 
1753
  msgid "Reset all options/settings to the default installation."
1754
  msgstr "Alle Optionen/Einstellungen zurücksetzen"
1755
 
1756
  #: ../admin/setup.php:50
 
1757
  msgid "Reset settings"
1758
  msgstr "Einstellungen zurücksetzen"
1759
 
1760
  #: ../admin/setup.php:50
 
1761
  msgid ""
1762
  "Reset all options to default settings ?\\n"
1763
  "\\n"
1768
  "Wähle [Cancel] um abzubrechen, [OK] zum Durchführen.\\n"
1769
 
1770
  #: ../admin/setup.php:55
 
1771
  msgid "Uninstall plugin tables"
1772
  msgstr "Plugin Tabellen (DB) entfernen"
1773
 
1774
  #: ../admin/setup.php:58
 
1775
  msgid "You don't like NextGEN Gallery ?"
1776
  msgstr "Du magst die NextGEN Galerie nicht ?"
1777
 
1778
  #: ../admin/setup.php:59
 
1779
  msgid "No problem, before you deactivate this plugin press the Uninstall Button, because deactivating NextGEN Gallery does not remove any data that may have been created. "
1780
  msgstr "Null Problemo. Einfach nur vor dem Deaktivieren dieses Plugins den Uninstall-Button betätigen damit alle Tabellen der Galerie entfernt werden."
1781
 
1782
  #: ../admin/setup.php:60
 
1783
  msgid "WARNING:"
1784
  msgstr "WARNUNG:"
1785
 
1786
  #: ../admin/setup.php:61
 
1787
  msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to backup all the tables first. NextGEN gallery is stored in the tables"
1788
  msgstr "Einmal deinstalliert -> keine Rückgängigmachung! D.h. auf Deutsch, das eine einmalig durchgeführte Deinstallation nicht mehr rückgängig gemacht werden kann da alle Tabellen der Galerie aus der Datenbank entfernt werden und KEIN Backup dieser Galerie-Tabellen angelegt wird währenddessen."
1789
 
1790
  #: ../admin/setup.php:61
 
1791
  msgid "and"
1792
  msgstr "und"
1793
 
1794
  #: ../admin/setup.php:63
 
1795
  msgid "Uninstall plugin"
1796
  msgstr "Plugin deinstallieren"
1797
 
1798
  #: ../admin/setup.php:63
 
1799
  msgid ""
1800
  "You are about to Uninstall this plugin from WordPress.\\n"
1801
  "This action is not reversible.\\n"
1809
 
1810
  #: ../admin/showmeta.php:7
1811
  #: ../admin/showmeta.php:10
 
 
1812
  msgid "Cheatin&#8217; uh?"
1813
  msgstr "Cheatin&#8217; uh?"
1814
 
1815
  #: ../admin/showmeta.php:42
 
1816
  msgid "EXIF Data"
1817
  msgstr "EXIF Daten"
1818
 
1819
  #: ../admin/showmeta.php:47
1820
  #: ../admin/showmeta.php:71
1821
  #: ../admin/showmeta.php:95
 
 
 
1822
  msgid "Tag"
1823
  msgstr "Stichwort"
1824
 
1825
  #: ../admin/showmeta.php:48
1826
  #: ../admin/showmeta.php:72
1827
  #: ../admin/showmeta.php:96
 
 
 
1828
  msgid "Value"
1829
  msgstr "Wert"
1830
 
1831
  #: ../admin/showmeta.php:61
 
1832
  msgid "No exif data"
1833
  msgstr "Keine Exif Daten"
1834
 
1835
  #: ../admin/showmeta.php:67
 
1836
  msgid "IPTC Data"
1837
  msgstr "IPTC Daten"
1838
 
1839
  #: ../admin/showmeta.php:91
 
1840
  msgid "XMP Data"
1841
  msgstr "XMP Daten"
1842
 
1843
  #: ../admin/sort.php:35
 
1844
  msgid "Sort order changed"
1845
  msgstr "Reihenfolge aktualisiert"
1846
 
1847
  #: ../admin/sort.php:53
 
1848
  msgid "Sort Gallery"
1849
  msgstr "Sortiere Bilder"
1850
 
1851
  #: ../admin/sort.php:58
 
1852
  msgid "Back to gallery"
1853
  msgstr "Zurück zur Galerie"
1854
 
1855
  #: ../admin/sort.php:59
 
1856
  msgid "Update Sort Order"
1857
  msgstr "Sortierung speichern"
1858
 
1859
  #: ../admin/style.php:34
 
1860
  msgid "You do not have sufficient permissions to edit templates for this blog."
1861
  msgstr "Du hast nicht die benötigten Rechte um Templates in diesem Blog zu bearbeiten."
1862
 
1863
  #: ../admin/style.php:43
 
1864
  msgid "CSS file successfully updated"
1865
  msgstr "CSS Datei erfolgreich aktualisiert"
1866
 
1867
  #: ../admin/style.php:66
 
1868
  msgid "Activate and use style sheet:"
1869
  msgstr "Aktiviere und nutze Stylesheet:"
1870
 
1871
  #: ../admin/style.php:85
 
1872
  msgid "Activate"
1873
  msgstr "Aktiviere"
1874
 
1875
  #: ../admin/style.php:93
 
1876
  #, php-format
1877
  msgid "Editing <strong>%s</strong>"
1878
  msgstr "Bearbeite <strong>%s</strong>"
1879
 
1880
  #: ../admin/style.php:95
 
1881
  #, php-format
1882
  msgid "Browsing <strong>%s</strong>"
1883
  msgstr "Browse <strong>%s</strong>"
1884
 
1885
  #: ../admin/style.php:100
 
 
1886
  msgid "Author"
1887
  msgstr "Autor"
1888
 
1889
  #: ../admin/style.php:101
 
1890
  msgid "Version"
1891
  msgstr "Version"
1892
 
1893
  #: ../admin/style.php:118
 
1894
  msgid "Update File &raquo;"
1895
  msgstr "Datei aktualisieren"
1896
 
1897
  #: ../admin/style.php:122
 
1898
  msgid "If this file were writable you could edit it."
1899
  msgstr "Wenn diese Datei beschreibbar wäre, könntest Du sie bearbeiten."
1900
 
1901
  #: ../admin/style.php:127
 
1902
  msgid "Oops, no such file exists! Double check the name and try again, merci."
1903
  msgstr "Oha, eine solche Datei existiert nicht! Bitte überprüfe den Namen und probiere es erneut, danke."
1904
 
1908
 
1909
  #: ../admin/uploadtab.php:107
1910
  #: ../admin/wp25/media-upload.php:127
 
 
1911
  msgid "No gallery"
1912
  msgstr "Keine Galerie"
1913
 
1926
  msgstr "Bilder löschen ?"
1927
 
1928
  #: ../admin/wpmu.php:41
 
1929
  msgid "General WordPress MU Settings"
1930
  msgstr "WordPress MU Einstellungen"
1931
 
1932
  #: ../admin/wpmu.php:50
 
1933
  msgid "This is the default path for all blogs. With the placeholder %BLOG_ID% you can organize the folder structure better. The path must end with a /."
1934
  msgstr "Dieses ist der Default Pfad für alle Blogs. Mit dem Platzhalter %BLOG_ID% wird die Ordnerstruktur gesteuert. Der Pfad muss mit / enden."
1935
 
1936
  #: ../admin/wpmu.php:53
 
1937
  msgid "Enable upload quota check"
1938
  msgstr "Schalte die Uploadbegrenzung ein"
1939
 
1940
  #: ../admin/wpmu.php:55
 
1941
  msgid "Should work if the gallery is bellow the blog.dir"
1942
  msgstr "Sollte funktionieren wenn die Galerien sich unterhalb blog.dir befinden"
1943
 
1944
  #: ../admin/wpmu.php:59
 
1945
  msgid "Enable zip upload option"
1946
  msgstr "Erlaube ZIP-Upload"
1947
 
1948
  #: ../admin/wpmu.php:61
 
1949
  msgid "Allow users to upload zip folders."
1950
  msgstr "Erlaubt die Nutzung des ZIP-Upload"
1951
 
1952
  #: ../admin/wpmu.php:65
 
1953
  msgid "Enable style selection"
1954
  msgstr "Freie CSS Style Auswahl"
1955
 
1956
  #: ../admin/wpmu.php:67
 
1957
  msgid "Allow users to choose a style for the gallery."
1958
  msgstr "Erlaube dem User ein CSS für die Galerie zu wählen"
1959
 
1960
  #: ../admin/wpmu.php:71
 
1961
  msgid "Enable roles/capabilities"
1962
  msgstr "Rollen / Zugriffsrechte freischalten"
1963
 
1964
  #: ../admin/wpmu.php:73
 
1965
  msgid "Allow users to change the roles for other blog authors."
1966
  msgstr "Erlaube dem User die Anpassung der Zugangsberechtigung"
1967
 
1968
  #: ../admin/wpmu.php:77
 
1969
  msgid "Default style"
1970
  msgstr "Standard CSS-Style"
1971
 
1972
  #: ../admin/wpmu.php:94
 
1973
  msgid "Choose the default style for the galleries."
1974
  msgstr "Wähle das Default-Stylesheet für die Galerien"
1975
 
2014
  msgstr "Zum Editor schicken &raquo;"
2015
 
2016
  #: ../admin/js/uploadtab.js.php:156
 
 
2017
  msgid "Insert"
2018
  msgstr "Einfügen"
2019
 
2044
  msgid " Please note : For safe-mode = ON you need to add the subfolder thumbs manually"
2045
  msgstr "Achtung : Da der Safe-Mode (PHP.INI) eingeschaltet ist, mußt Du das Unterverzeichnis für die Vorschaubilder (\"thumbs\") manuell (per FTP) anlegen"
2046
 
 
 
 
 
2047
  #: ../admin/wp25/media-upload.php:139
2048
  msgid "Select Gallery &#187;"
2049
  msgstr "Wähle Galerie &#187;"
2069
  msgstr "Ausrichtung"
2070
 
2071
  #: ../admin/wp25/media-upload.php:195
 
 
2072
  msgid "Left"
2073
  msgstr "Links"
2074
 
2075
  #: ../admin/wp25/media-upload.php:197
 
 
2076
  msgid "Center"
2077
  msgstr "Zentrieren"
2078
 
2079
  #: ../admin/wp25/media-upload.php:199
 
 
2080
  msgid "Right"
2081
  msgstr "Rechts"
2082
 
2310
  msgid "No float"
2311
  msgstr "Kein Float"
2312
 
2313
+ #~ msgid "Edit gallery"
2314
+ #~ msgstr "Galerie ändern"
2315
+
lang/nggallery.po CHANGED
@@ -1,12 +1,13 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
- "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2008-04-25 20:12+0100\n"
 
6
  "Last-Translator: Alex Rabe\n"
7
  "Language-Team: Alex Rabe\n"
8
  "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
  "X-Poedit-KeywordsList: __;_e\n"
12
  "X-Poedit-Basepath: .\n"
@@ -15,46 +16,43 @@ msgstr ""
15
  "X-Poedit-SearchPath-0: .\n"
16
  "X-Poedit-SearchPath-1: ..\n"
17
 
18
- #: ../nggallery.php:53
19
  msgid "Sorry, NextGEN Gallery works only under WordPress 2.1 or higher"
20
  msgstr ""
21
 
22
- #: ../nggallery.php:60
23
  msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB higher"
24
  msgstr ""
25
 
26
- #: ../nggfunctions.php:446
27
- #: ../nggfunctions.php:461
28
  msgid "Watch gallery"
29
  msgstr ""
30
 
31
- #: ../nggfunctions.php:455
32
- #: ../nggfunctions.php:467
33
- #: ../nggfunctions.php:752
34
  msgid "Photos"
35
  msgstr ""
36
 
37
- #: ../nggfunctions.php:543
38
  msgid "Back"
39
  msgstr ""
40
 
41
- #: ../nggfunctions.php:547
42
  msgid "Next"
43
  msgstr ""
44
 
45
- #: ../nggfunctions.php:550
46
  #: ../admin/manage.php:85
47
- #: ../admin/wp25/manage.php:85
48
- #: ../tinymce/window.php:37
49
- #: ../tinymce3/window.php:37
50
  msgid "Picture"
51
  msgstr ""
52
 
53
- #: ../nggfunctions.php:550
54
  msgid "from"
55
  msgstr ""
56
 
57
- #: ../nggfunctions.php:722
58
  msgid "Overview"
59
  msgstr ""
60
 
@@ -108,7 +106,6 @@ msgid "How many NextGEN Gallery widgets would you like?"
108
  msgstr ""
109
 
110
  #: ../nggwidget.php:212
111
- #: ../admin/uploadtab.php:193
112
  msgid "Save"
113
  msgstr ""
114
 
@@ -123,8 +120,6 @@ msgstr ""
123
  #: ../nggwidget.php:314
124
  #: ../admin/settings.php:102
125
  #: ../admin/settings.php:295
126
- #: ../admin/wp25/settings.php:99
127
- #: ../admin/wp25/settings.php:285
128
  msgid "Thumbnails"
129
  msgstr ""
130
 
@@ -134,7 +129,6 @@ msgstr ""
134
 
135
  #: ../nggwidget.php:321
136
  #: ../admin/settings.php:560
137
- #: ../admin/wp25/settings.php:542
138
  msgid "random"
139
  msgstr ""
140
 
@@ -171,107 +165,86 @@ msgid "Gallery IDs, separated by commas."
171
  msgstr ""
172
 
173
  #: ../admin/about.php:9
174
- #: ../admin/wp25/about.php:9
175
  msgid "Copyright notes / Credits"
176
  msgstr ""
177
 
178
  #: ../admin/about.php:11
179
- #: ../admin/wp25/about.php:10
180
  msgid "NextGEN DEV Team"
181
  msgstr ""
182
 
183
  #: ../admin/about.php:12
184
- #: ../admin/wp25/about.php:11
185
  msgid "This plugin is primarily developed, maintained, supported, documented by"
186
  msgstr ""
187
 
188
  #: ../admin/about.php:12
189
- #: ../admin/wp25/about.php:11
190
  msgid "There are many other folks who have made contributions to this project :"
191
  msgstr ""
192
 
193
  #: ../admin/about.php:14
194
- #: ../admin/wp25/about.php:13
195
  msgid "Contributors / Tribute to"
196
  msgstr ""
197
 
198
  #: ../admin/about.php:15
199
- #: ../admin/wp25/about.php:14
200
  msgid "If you study the code of this plugin, you will find out that we mixed a lot of good already existing code and ideas together."
201
  msgstr ""
202
 
203
  #: ../admin/about.php:16
204
- #: ../admin/wp25/about.php:15
205
  msgid "So, we would like to thank the following people for their pioneer work (without this work it's impossible to create such a plugin so fast)"
206
  msgstr ""
207
 
208
  #: ../admin/about.php:18
209
- #: ../admin/wp25/about.php:17
210
  msgid "for their great documented code"
211
  msgstr ""
212
 
213
  #: ../admin/about.php:19
214
- #: ../admin/wp25/about.php:18
215
  msgid "for jQuery, which is the best Web2.0 framework"
216
  msgstr ""
217
 
218
  #: ../admin/about.php:20
219
- #: ../admin/wp25/about.php:19
220
  msgid "for the fantastic PHP Thumbnail Class"
221
  msgstr ""
222
 
223
  #: ../admin/about.php:21
224
- #: ../admin/wp25/about.php:20
225
  msgid "for PclZip , a PHP library that manage ZIP archives"
226
  msgstr ""
227
 
228
  #: ../admin/about.php:22
229
- #: ../admin/wp25/about.php:21
230
  msgid "for a lot of very useful plugins and ideas"
231
  msgstr ""
232
 
233
  #: ../admin/about.php:23
234
- #: ../admin/wp25/about.php:22
235
  msgid "for Simple:Press Forum, it saved me a lot of time"
236
  msgstr ""
237
 
238
  #: ../admin/about.php:24
239
- #: ../admin/wp25/about.php:23
240
  msgid "for the best Media Flash Scripts on earth"
241
  msgstr ""
242
 
243
  #: ../admin/about.php:25
244
- #: ../admin/wp25/about.php:24
245
  msgid "for the Watermark plugin"
246
  msgstr ""
247
 
248
  #: ../admin/about.php:27
249
- #: ../admin/wp25/about.php:26
250
  msgid "If you didn't find your name on this list and there is some code which I integrate in my plugin, don't hesitate to send me a mail."
251
  msgstr ""
252
 
253
  #: ../admin/about.php:28
254
- #: ../admin/wp25/about.php:27
255
  msgid "How to support ?"
256
  msgstr ""
257
 
258
  #: ../admin/about.php:29
259
- #: ../admin/wp25/about.php:28
260
  msgid "There exist several ways to contribute, help or support us in this work. Non of them are mandatory."
261
  msgstr ""
262
 
263
  #: ../admin/about.php:31
264
- #: ../admin/wp25/about.php:30
265
  msgid "Send us bugfixes / code changes"
266
  msgstr ""
267
 
268
  #: ../admin/about.php:31
269
- #: ../admin/wp25/about.php:30
270
  msgid "The most motivated support for this plugin are your ideas and brain work"
271
  msgstr ""
272
 
273
  #: ../admin/about.php:32
274
- #: ../admin/wp25/about.php:31
275
  msgid "Translate the plugin"
276
  msgstr ""
277
 
@@ -280,7 +253,6 @@ msgid "To help people to work with this plugin, I would like to have it in all a
280
  msgstr ""
281
 
282
  #: ../admin/about.php:33
283
- #: ../admin/wp25/about.php:32
284
  msgid "Donate the work via paypal"
285
  msgstr ""
286
 
@@ -289,167 +261,125 @@ msgid "No doubt a very usefull and easy motivation :-)"
289
  msgstr ""
290
 
291
  #: ../admin/about.php:46
292
- #: ../admin/wp25/about.php:45
293
  msgid "Place a link to the plugin in your blog/webpage"
294
  msgstr ""
295
 
296
  #: ../admin/about.php:46
297
- #: ../admin/wp25/about.php:45
298
  msgid "Yes, share and trackback is also a good support for this work "
299
  msgstr ""
300
 
301
  #: ../admin/about.php:48
302
- #: ../admin/wp25/about.php:47
303
  msgid "Thanks!"
304
  msgstr ""
305
 
306
  #: ../admin/about.php:49
307
- #: ../admin/wp25/about.php:48
308
  msgid "We would like to thank this people which support us in the work :"
309
  msgstr ""
310
 
311
  #: ../admin/addgallery.php:35
312
  #: ../admin/addgallery.php:51
313
- #: ../admin/wp25/addgallery.php:35
314
- #: ../admin/wp25/addgallery.php:51
315
  msgid "Upload failed!"
316
  msgstr ""
317
 
318
  #: ../admin/addgallery.php:56
319
  #: ../admin/functions.php:563
320
  #: ../admin/functions.php:652
321
- #: ../admin/wp25/addgallery.php:56
322
- #: ../admin/wp25/functions.php:563
323
- #: ../admin/wp25/functions.php:652
324
  msgid "No gallery selected !"
325
  msgstr ""
326
 
327
  #: ../admin/addgallery.php:111
328
- #: ../admin/wp25/addgallery.php:95
329
  msgid "Image Files"
330
  msgstr ""
331
 
332
  #: ../admin/addgallery.php:131
333
  #: ../admin/addgallery.php:161
334
- #: ../admin/wp25/addgallery.php:114
335
- #: ../admin/wp25/addgallery.php:144
336
  msgid "remove"
337
  msgstr ""
338
 
339
  #: ../admin/addgallery.php:132
340
- #: ../admin/wp25/addgallery.php:115
341
  msgid "Browse..."
342
  msgstr ""
343
 
344
  #: ../admin/addgallery.php:133
345
  #: ../admin/addgallery.php:311
346
- #: ../admin/wp25/addgallery.php:116
347
- #: ../admin/wp25/addgallery.php:287
348
  msgid "Upload images"
349
  msgstr ""
350
 
351
  #: ../admin/addgallery.php:177
352
  #: ../admin/addgallery.php:189
353
- #: ../admin/wp25/addgallery.php:160
354
- #: ../admin/wp25/addgallery.php:172
355
  msgid "Add new gallery"
356
  msgstr ""
357
 
358
  #: ../admin/addgallery.php:179
359
  #: ../admin/addgallery.php:210
360
- #: ../admin/wp25/addgallery.php:162
361
- #: ../admin/wp25/addgallery.php:191
362
  msgid "Upload a Zip-File"
363
  msgstr ""
364
 
365
  #: ../admin/addgallery.php:182
366
  #: ../admin/addgallery.php:250
367
- #: ../admin/wp25/addgallery.php:165
368
- #: ../admin/wp25/addgallery.php:229
369
  msgid "Import image folder"
370
  msgstr ""
371
 
372
  #: ../admin/addgallery.php:184
373
  #: ../admin/addgallery.php:274
374
- #: ../admin/wp25/addgallery.php:167
375
- #: ../admin/wp25/addgallery.php:251
376
  msgid "Upload Images"
377
  msgstr ""
378
 
379
  #: ../admin/addgallery.php:195
380
- #: ../admin/wp25/addgallery.php:177
381
  msgid "New Gallery"
382
  msgstr ""
383
 
384
  #: ../admin/addgallery.php:198
385
- #: ../admin/wp25/addgallery.php:180
386
  msgid "Create a new , empty gallery below the folder"
387
  msgstr ""
388
 
389
  #: ../admin/addgallery.php:200
390
- #: ../admin/wp25/addgallery.php:182
391
  msgid "Allowed characters for file and folder names are"
392
  msgstr ""
393
 
394
  #: ../admin/addgallery.php:203
395
- #: ../admin/wp25/addgallery.php:185
396
  msgid "Add gallery"
397
  msgstr ""
398
 
399
  #: ../admin/addgallery.php:216
400
- #: ../admin/wp25/addgallery.php:196
401
  msgid "Select Zip-File"
402
  msgstr ""
403
 
404
  #: ../admin/addgallery.php:218
405
- #: ../admin/wp25/addgallery.php:198
406
  msgid "Upload a zip file with images"
407
  msgstr ""
408
 
409
  #: ../admin/addgallery.php:221
410
  #: ../admin/addgallery.php:284
411
- #: ../admin/wp25/addgallery.php:201
412
- #: ../admin/wp25/addgallery.php:260
413
  msgid "in to"
414
  msgstr ""
415
 
416
  #: ../admin/addgallery.php:223
417
- #: ../admin/wp25/addgallery.php:203
418
  msgid "a new gallery"
419
  msgstr ""
420
 
421
  #: ../admin/addgallery.php:233
422
  #: ../admin/addgallery.php:296
423
- #: ../admin/wp25/addgallery.php:213
424
- #: ../admin/wp25/addgallery.php:272
425
  msgid "Note : The upload limit on your server is "
426
  msgstr ""
427
 
428
  #: ../admin/addgallery.php:237
429
  #: ../admin/addgallery.php:262
430
  #: ../admin/addgallery.php:300
431
- #: ../admin/wp25/addgallery.php:217
432
- #: ../admin/wp25/addgallery.php:240
433
- #: ../admin/wp25/addgallery.php:276
434
  msgid "Add Metadata :"
435
  msgstr ""
436
 
437
  #: ../admin/addgallery.php:239
438
  #: ../admin/addgallery.php:264
439
  #: ../admin/addgallery.php:302
440
- #: ../admin/wp25/addgallery.php:219
441
- #: ../admin/wp25/addgallery.php:242
442
- #: ../admin/wp25/addgallery.php:278
443
  msgid "Import EXIF, IPTC or XMP data (if available)"
444
  msgstr ""
445
 
446
  #: ../admin/addgallery.php:242
447
- #: ../admin/wp25/addgallery.php:222
448
  msgid "Start upload"
449
  msgstr ""
450
 
451
  #: ../admin/addgallery.php:256
452
- #: ../admin/wp25/addgallery.php:234
453
  msgid "Import from Server path:"
454
  msgstr ""
455
 
@@ -462,37 +392,30 @@ msgid "For safe-mode = ON you need to add the subfolder thumbs manually"
462
  msgstr ""
463
 
464
  #: ../admin/addgallery.php:267
465
- #: ../admin/wp25/addgallery.php:245
466
  msgid "Import folder"
467
  msgstr ""
468
 
469
  #: ../admin/addgallery.php:280
470
- #: ../admin/wp25/addgallery.php:256
471
  msgid "Upload image"
472
  msgstr ""
473
 
474
  #: ../admin/addgallery.php:286
475
- #: ../admin/wp25/addgallery.php:262
476
  msgid "Choose gallery"
477
  msgstr ""
478
 
479
  #: ../admin/addgallery.php:307
480
- #: ../admin/wp25/addgallery.php:283
481
  msgid "The batch upload requires Adobe Flash 9, disable it if you have problems"
482
  msgstr ""
483
 
484
  #: ../admin/addgallery.php:307
485
- #: ../admin/wp25/addgallery.php:283
486
  msgid "Disable flash upload"
487
  msgstr ""
488
 
489
  #: ../admin/addgallery.php:309
490
- #: ../admin/wp25/addgallery.php:285
491
  msgid "Upload multiple files at once by ctrl/shift-selecting in dialog"
492
  msgstr ""
493
 
494
  #: ../admin/addgallery.php:309
495
- #: ../admin/wp25/addgallery.php:285
496
  msgid "Enable flash based upload"
497
  msgstr ""
498
 
@@ -503,123 +426,85 @@ msgstr ""
503
  #: ../admin/manage.php:64
504
  #: ../admin/manage.php:434
505
  #: ../admin/settings.php:104
506
- #: ../admin/uploadtab.php:36
507
- #: ../admin/wp25/admin.php:72
508
- #: ../admin/wp25/functions.php:78
509
- #: ../admin/wp25/functions.php:82
510
- #: ../admin/wp25/functions.php:128
511
- #: ../admin/wp25/manage.php:64
512
- #: ../admin/wp25/manage.php:402
513
- #: ../admin/wp25/settings.php:101
514
- #: ../tinymce/window.php:35
515
- #: ../tinymce3/window.php:35
516
  msgid "Gallery"
517
  msgstr ""
518
 
519
  #: ../admin/admin.php:76
520
- #: ../admin/wp25/admin.php:73
521
  msgid "Add Gallery"
522
  msgstr ""
523
 
524
  #: ../admin/admin.php:77
525
- #: ../admin/wp25/admin.php:74
526
  msgid "Manage Gallery"
527
  msgstr ""
528
 
529
  #: ../admin/admin.php:78
530
- #: ../admin/wp25/admin.php:75
531
- #: ../tinymce/window.php:36
532
- #: ../tinymce3/window.php:36
533
  msgid "Album"
534
  msgstr ""
535
 
536
  #: ../admin/admin.php:79
537
- #: ../admin/wp25/admin.php:76
538
  msgid "Options"
539
  msgstr ""
540
 
541
  #: ../admin/admin.php:81
542
- #: ../admin/wp25/admin.php:78
543
  msgid "Style"
544
  msgstr ""
545
 
546
  #: ../admin/admin.php:82
547
- #: ../admin/wp25/admin.php:79
548
  msgid "Setup Gallery"
549
  msgstr ""
550
 
551
  #: ../admin/admin.php:82
552
- #: ../admin/wp25/admin.php:79
553
  msgid "Setup"
554
  msgstr ""
555
 
556
  #: ../admin/admin.php:84
557
- #: ../admin/wp25/admin.php:81
558
  msgid "Roles"
559
  msgstr ""
560
 
561
  #: ../admin/admin.php:85
562
- #: ../admin/wp25/admin.php:82
563
  msgid "About this Gallery"
564
  msgstr ""
565
 
566
  #: ../admin/admin.php:85
567
- #: ../admin/wp25/admin.php:82
568
  msgid "About"
569
  msgstr ""
570
 
571
  #: ../admin/admin.php:87
572
- #: ../admin/wp25/admin.php:84
573
- #: ../admin/wp25/media-upload.php:11
574
  msgid "NextGEN Gallery"
575
  msgstr ""
576
 
577
  #: ../admin/album.php:19
578
  #: ../admin/album.php:37
579
- #: ../admin/wp25/album.php:19
580
- #: ../admin/wp25/album.php:36
581
- #: ../admin/wp25/settings.php:33
582
  msgid "Update Successfully"
583
  msgstr ""
584
 
585
  #: ../admin/album.php:45
586
- #: ../admin/wp25/album.php:44
587
  msgid "Album deleted"
588
  msgstr ""
589
 
590
  #: ../admin/album.php:122
591
- #: ../admin/wp25/album.php:119
592
  msgid "Manage Albums"
593
  msgstr ""
594
 
595
  #: ../admin/album.php:128
596
- #: ../admin/wp25/album.php:125
597
- #: ../tinymce/window.php:74
598
- #: ../tinymce3/window.php:74
599
  msgid "Select album"
600
  msgstr ""
601
 
602
  #: ../admin/album.php:131
603
- #: ../admin/wp25/album.php:128
604
  msgid "No album selected"
605
  msgstr ""
606
 
607
  #: ../admin/album.php:144
608
- #: ../admin/wp25/album.php:141
609
  msgid "Add new album"
610
  msgstr ""
611
 
612
  #: ../admin/album.php:148
613
  #: ../admin/manage.php:309
614
  #: ../admin/manage.php:580
615
- #: ../admin/wp25/album.php:146
616
- #: ../admin/wp25/manage.php:314
617
- #: ../admin/wp25/manage.php:556
618
  msgid "Delete"
619
  msgstr ""
620
 
621
  #: ../admin/album.php:148
622
- #: ../admin/wp25/album.php:146
623
  msgid "Delete album ?"
624
  msgstr ""
625
 
@@ -631,86 +516,58 @@ msgstr ""
631
  #: ../admin/settings.php:378
632
  #: ../admin/settings.php:490
633
  #: ../admin/settings.php:598
634
- #: ../admin/wpmu.php:98
635
- #: ../admin/wp25/album.php:148
636
- #: ../admin/wp25/settings.php:160
637
- #: ../admin/wp25/settings.php:198
638
- #: ../admin/wp25/settings.php:243
639
- #: ../admin/wp25/settings.php:321
640
- #: ../admin/wp25/settings.php:366
641
- #: ../admin/wp25/settings.php:472
642
- #: ../admin/wp25/settings.php:580
643
- #: ../admin/wp25/wpmu.php:98
644
  msgid "Update"
645
  msgstr ""
646
 
647
  #: ../admin/album.php:158
648
- #: ../admin/wp25/album.php:157
649
  msgid "[Show all]"
650
  msgstr ""
651
 
652
  #: ../admin/album.php:159
653
- #: ../admin/wp25/album.php:158
654
  msgid "[Maximize]"
655
  msgstr ""
656
 
657
  #: ../admin/album.php:160
658
- #: ../admin/wp25/album.php:159
659
  msgid "[Minimize]"
660
  msgstr ""
661
 
662
  #: ../admin/album.php:162
663
- #: ../admin/wp25/album.php:161
664
  msgid "After you create and select a album, you can drag and drop a gallery into your album below"
665
  msgstr ""
666
 
667
  #: ../admin/album.php:169
668
- #: ../admin/wp25/album.php:168
669
  msgid "Select Gallery"
670
  msgstr ""
671
 
672
  #: ../admin/album.php:208
673
- #: ../admin/wp25/album.php:207
674
  msgid "Album Page ID"
675
  msgstr ""
676
 
677
  #: ../admin/album.php:220
678
- #: ../admin/wp25/album.php:219
679
  msgid "No album selected!"
680
  msgstr ""
681
 
682
  #: ../admin/album.php:256
683
  #: ../admin/manage.php:283
684
  #: ../admin/manage.php:535
685
- #: ../admin/wp25/album.php:255
686
- #: ../admin/wp25/manage.php:288
687
- #: ../admin/wp25/manage.php:511
688
  msgid "ID"
689
  msgstr ""
690
 
691
  #: ../admin/album.php:257
692
- #: ../admin/wp25/album.php:256
693
  msgid "Name"
694
  msgstr ""
695
 
696
  #: ../admin/album.php:258
697
  #: ../admin/manage.php:285
698
  #: ../admin/manage.php:446
699
- #: ../admin/js/uploadtab.js.php:109
700
- #: ../admin/wp25/album.php:257
701
- #: ../admin/wp25/manage.php:290
702
- #: ../admin/wp25/manage.php:415
703
- #: ../lib/nggmeta.lib.php:375
704
  msgid "Title"
705
  msgstr ""
706
 
707
  #: ../admin/album.php:259
708
- #: ../admin/wp25/album.php:258
709
  msgid "Page"
710
  msgstr ""
711
 
712
  #: ../admin/functions.php:20
713
- #: ../admin/wp25/functions.php:20
714
  msgid "No valid gallery name!"
715
  msgstr ""
716
 
@@ -719,352 +576,262 @@ msgstr ""
719
  #: ../admin/functions.php:50
720
  #: ../admin/functions.php:102
721
  #: ../admin/functions.php:109
722
- #: ../admin/wp25/functions.php:27
723
- #: ../admin/wp25/functions.php:36
724
- #: ../admin/wp25/functions.php:50
725
- #: ../admin/wp25/functions.php:102
726
- #: ../admin/wp25/functions.php:109
727
  msgid "Directory"
728
  msgstr ""
729
 
730
  #: ../admin/functions.php:27
731
- #: ../admin/wp25/functions.php:27
732
  msgid "didn't exist. Please create first the main gallery folder "
733
  msgstr ""
734
 
735
  #: ../admin/functions.php:28
736
  #: ../admin/functions.php:37
737
- #: ../admin/wp25/functions.php:28
738
- #: ../admin/wp25/functions.php:37
739
  msgid "Check this link, if you didn't know how to set the permission :"
740
  msgstr ""
741
 
742
  #: ../admin/functions.php:36
743
  #: ../admin/functions.php:50
744
- #: ../admin/wp25/functions.php:36
745
- #: ../admin/wp25/functions.php:50
746
  msgid "is not writeable !"
747
  msgstr ""
748
 
749
  #: ../admin/functions.php:45
750
  #: ../admin/functions.php:55
751
  #: ../admin/functions.php:525
752
- #: ../admin/wp25/functions.php:45
753
- #: ../admin/wp25/functions.php:55
754
- #: ../admin/wp25/functions.php:525
755
- #: ../lib/nggallery.lib.php:299
756
  msgid "Unable to create directory "
757
  msgstr ""
758
 
759
  #: ../admin/functions.php:59
760
- #: ../admin/wp25/functions.php:59
761
  msgid "The server setting Safe-Mode is on !"
762
  msgstr ""
763
 
764
  #: ../admin/functions.php:60
765
- #: ../admin/wp25/functions.php:60
766
  msgid "If you have problems, please create directory"
767
  msgstr ""
768
 
769
  #: ../admin/functions.php:61
770
- #: ../admin/wp25/functions.php:61
771
  msgid "and the thumbnails directory"
772
  msgstr ""
773
 
774
  #: ../admin/functions.php:61
775
- #: ../admin/wp25/functions.php:61
776
  msgid "with permission 777 manually !"
777
  msgstr ""
778
 
779
  #: ../admin/functions.php:78
780
- #: ../admin/wp25/functions.php:78
781
  msgid "already exists"
782
  msgstr ""
783
 
784
  #: ../admin/functions.php:82
785
  #: ../admin/functions.php:128
786
- #: ../admin/wp25/functions.php:82
787
- #: ../admin/wp25/functions.php:128
788
  msgid "successfully created!"
789
  msgstr ""
790
 
791
  #: ../admin/functions.php:82
792
- #: ../admin/wp25/functions.php:82
793
  msgid "You can show this gallery with the tag"
794
  msgstr ""
795
 
796
  #: ../admin/functions.php:102
797
- #: ../admin/wp25/functions.php:102
798
  msgid "doesn&#96;t exist!"
799
  msgstr ""
800
 
801
  #: ../admin/functions.php:109
802
- #: ../admin/wp25/functions.php:109
803
  msgid "contains no pictures"
804
  msgstr ""
805
 
806
  #: ../admin/functions.php:125
807
- #: ../admin/wp25/functions.php:125
808
  msgid "Database error. Could not add gallery!"
809
  msgstr ""
810
 
811
  #: ../admin/functions.php:144
812
- #: ../admin/wp25/functions.php:144
813
  msgid " picture(s) successfully added"
814
  msgstr ""
815
 
816
  #: ../admin/functions.php:175
817
  #: ../admin/functions.php:224
818
  #: ../admin/functions.php:287
819
- #: ../admin/wp25/functions.php:175
820
- #: ../admin/wp25/functions.php:224
821
- #: ../admin/wp25/functions.php:287
822
  msgid "Running... Please wait"
823
  msgstr ""
824
 
825
  #: ../admin/functions.php:176
826
  #: ../admin/manage.php:510
827
- #: ../admin/wp25/functions.php:176
828
- #: ../admin/wp25/manage.php:484
829
  msgid "Resize images"
830
  msgstr ""
831
 
832
  #: ../admin/functions.php:200
833
- #: ../admin/wp25/functions.php:200
834
  msgid " : Image resized..."
835
  msgstr ""
836
 
837
  #: ../admin/functions.php:209
838
  #: ../admin/functions.php:266
839
- #: ../admin/wp25/functions.php:209
840
- #: ../admin/wp25/functions.php:266
841
  msgid "Some pictures are not writeable :"
842
  msgstr ""
843
 
844
  #: ../admin/functions.php:225
845
  #: ../admin/manage.php:508
846
- #: ../admin/wp25/functions.php:225
847
- #: ../admin/wp25/manage.php:482
848
  msgid "Set watermark"
849
  msgstr ""
850
 
851
  #: ../admin/functions.php:257
852
- #: ../admin/wp25/functions.php:257
853
  msgid " : Watermark created..."
854
  msgstr ""
855
 
856
  #: ../admin/functions.php:288
857
  #: ../admin/manage.php:509
858
- #: ../admin/wp25/functions.php:288
859
- #: ../admin/wp25/manage.php:483
860
  msgid "Create new thumbnails"
861
  msgstr ""
862
 
863
  #: ../admin/functions.php:355
864
- #: ../admin/wp25/functions.php:355
865
  msgid " : Thumbnail created..."
866
  msgstr ""
867
 
868
  #: ../admin/functions.php:360
869
- #: ../admin/wp25/functions.php:360
870
  msgid "Follow thumbnails could not created."
871
  msgstr ""
872
 
873
  #: ../admin/functions.php:361
874
- #: ../admin/wp25/functions.php:361
875
  msgid "Some thumbnails are not writeable :"
876
  msgstr ""
877
 
878
  #: ../admin/functions.php:460
879
- #: ../admin/wp25/functions.php:460
880
  msgid "The Zip-file is too large. Exceed Memory limit !"
881
  msgstr ""
882
 
883
  #: ../admin/functions.php:501
884
- #: ../admin/wp25/functions.php:501
885
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
886
  msgstr ""
887
 
888
  #: ../admin/functions.php:520
889
- #: ../admin/wp25/functions.php:520
890
  #, php-format
891
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
892
  msgstr ""
893
 
894
  #: ../admin/functions.php:535
895
- #: ../admin/wp25/functions.php:535
896
  msgid "Zip-File successfully unpacked"
897
  msgstr ""
898
 
899
  #: ../admin/functions.php:571
900
  #: ../admin/functions.php:681
901
- #: ../admin/wp25/functions.php:571
902
- #: ../admin/wp25/functions.php:681
903
  msgid "Failure in database, no gallery path set !"
904
  msgstr ""
905
 
906
  #: ../admin/functions.php:592
907
  #: ../admin/functions.php:674
908
- #: ../admin/wp25/functions.php:592
909
- #: ../admin/wp25/functions.php:674
910
  msgid "is no valid image file!"
911
  msgstr ""
912
 
913
  #: ../admin/functions.php:606
914
- #: ../admin/wp25/functions.php:606
915
  #, php-format
916
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
917
  msgstr ""
918
 
919
  #: ../admin/functions.php:613
920
  #: ../admin/functions.php:698
921
- #: ../admin/wp25/functions.php:613
922
- #: ../admin/wp25/functions.php:698
923
  msgid "Error, the file could not moved to : "
924
  msgstr ""
925
 
926
  #: ../admin/functions.php:618
927
  #: ../admin/functions.php:702
928
- #: ../admin/wp25/functions.php:618
929
- #: ../admin/wp25/functions.php:702
930
  msgid "Error, the file permissions could not set"
931
  msgstr ""
932
 
933
  #: ../admin/functions.php:637
934
- #: ../admin/wp25/functions.php:637
935
  msgid " Image(s) successfully added"
936
  msgstr ""
937
 
938
  #: ../admin/functions.php:661
939
- #: ../admin/wp25/functions.php:661
940
  msgid "Invalid upload. Error Code : "
941
  msgstr ""
942
 
943
  #: ../admin/functions.php:713
944
- #: ../admin/wp25/functions.php:713
945
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
946
  msgstr ""
947
 
948
  #: ../admin/functions.php:740
949
- #: ../admin/wp25/functions.php:740
950
  #, php-format
951
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
952
  msgstr ""
953
 
954
  #: ../admin/functions.php:741
955
- #: ../admin/wp25/functions.php:741
956
  #, php-format
957
  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"
958
  msgstr ""
959
 
960
  #: ../admin/manage.php:64
961
  #: ../admin/manage.php:85
962
- #: ../admin/wp25/manage.php:64
963
- #: ../admin/wp25/manage.php:85
964
  msgid "deleted successfully"
965
  msgstr ""
966
 
967
  #: ../admin/manage.php:111
968
- #: ../admin/wp25/manage.php:111
969
  msgid "Watermark successfully added"
970
  msgstr ""
971
 
972
  #: ../admin/manage.php:116
973
- #: ../admin/wp25/manage.php:116
974
  msgid "Thumbnails successfully created. Please refresh your browser cache."
975
  msgstr ""
976
 
977
  #: ../admin/manage.php:121
978
- #: ../admin/wp25/manage.php:121
979
  msgid "Images successfully resized"
980
  msgstr ""
981
 
982
  #: ../admin/manage.php:139
983
- #: ../admin/wp25/manage.php:139
984
  msgid "Pictures deleted successfully "
985
  msgstr ""
986
 
987
  #: ../admin/manage.php:145
988
- #: ../admin/wp25/manage.php:145
989
  msgid "Import metadata finished"
990
  msgstr ""
991
 
992
  #: ../admin/manage.php:195
993
- #: ../admin/wp25/manage.php:195
994
  msgid "Tags changed"
995
  msgstr ""
996
 
997
  #: ../admin/manage.php:215
998
- #: ../admin/wp25/manage.php:215
999
  msgid "Update successful"
1000
  msgstr ""
1001
 
1002
  #: ../admin/manage.php:248
1003
- #: ../admin/wp25/manage.php:248
1004
  msgid "New gallery page ID"
1005
  msgstr ""
1006
 
1007
  #: ../admin/manage.php:248
1008
- #: ../admin/wp25/manage.php:248
1009
  msgid "created"
1010
  msgstr ""
1011
 
1012
  #: ../admin/manage.php:279
1013
- #: ../admin/wp25/manage.php:283
1014
  msgid "Gallery Overview"
1015
  msgstr ""
1016
 
1017
  #: ../admin/manage.php:284
1018
- #: ../admin/wp25/manage.php:289
1019
  msgid "Gallery name"
1020
  msgstr ""
1021
 
1022
  #: ../admin/manage.php:286
1023
  #: ../admin/manage.php:465
1024
  #: ../admin/manage.php:541
1025
- #: ../admin/style.php:102
1026
- #: ../admin/uploadtab.php:180
1027
- #: ../admin/js/uploadtab.js.php:172
1028
- #: ../admin/wp25/manage.php:291
1029
- #: ../admin/wp25/manage.php:434
1030
- #: ../admin/wp25/manage.php:517
1031
- #: ../admin/wp25/media-upload.php:186
1032
- #: ../admin/wp25/style.php:109
1033
  msgid "Description"
1034
  msgstr ""
1035
 
1036
  #: ../admin/manage.php:287
1037
- #: ../admin/wp25/manage.php:292
1038
  msgid "Page ID"
1039
  msgstr ""
1040
 
1041
  #: ../admin/manage.php:288
1042
- #: ../admin/wp25/manage.php:293
1043
  msgid "Quantity"
1044
  msgstr ""
1045
 
1046
  #: ../admin/manage.php:289
1047
  #: ../admin/manage.php:547
1048
- #: ../admin/wp25/manage.php:294
1049
- #: ../admin/wp25/manage.php:523
1050
  msgid "Action"
1051
  msgstr ""
1052
 
1053
  #: ../admin/manage.php:308
1054
- #: ../admin/js/uploadtab.js.php:93
1055
- #: ../admin/wp25/manage.php:313
1056
  msgid "Edit"
1057
  msgstr ""
1058
 
1059
  #: ../admin/manage.php:309
1060
- #: ../admin/wp25/manage.php:314
1061
  msgid "Delete this gallery ?"
1062
  msgstr ""
1063
 
1064
  #: ../admin/manage.php:314
1065
  #: ../admin/manage.php:585
1066
- #: ../admin/wp25/manage.php:319
1067
- #: ../admin/wp25/manage.php:561
1068
  msgid "No entries found"
1069
  msgstr ""
1070
 
@@ -1073,108 +840,83 @@ msgid "Main settings"
1073
  msgstr ""
1074
 
1075
  #: ../admin/manage.php:448
1076
- #: ../admin/wp25/manage.php:417
1077
  msgid "Page Link to"
1078
  msgstr ""
1079
 
1080
  #: ../admin/manage.php:451
1081
- #: ../admin/wp25/manage.php:420
1082
  msgid "Not linked"
1083
  msgstr ""
1084
 
1085
  #: ../admin/manage.php:467
1086
- #: ../admin/wp25/manage.php:436
1087
  msgid "Preview image"
1088
  msgstr ""
1089
 
1090
  #: ../admin/manage.php:470
1091
- #: ../admin/wp25/manage.php:439
1092
  msgid "No Picture"
1093
  msgstr ""
1094
 
1095
  #: ../admin/manage.php:485
1096
- #: ../admin/wp25/manage.php:454
1097
  msgid "Path"
1098
  msgstr ""
1099
 
1100
  #: ../admin/manage.php:488
1101
- #: ../admin/wp25/manage.php:457
1102
  msgid "Create new page"
1103
  msgstr ""
1104
 
1105
  #: ../admin/manage.php:491
1106
- #: ../admin/wp25/manage.php:460
1107
  msgid "Main page (No parent)"
1108
  msgstr ""
1109
 
1110
  #: ../admin/manage.php:494
1111
- #: ../admin/wp25/manage.php:463
1112
  msgid "Add page"
1113
  msgstr ""
1114
 
1115
  #: ../admin/manage.php:500
1116
- #: ../admin/wp25/manage.php:470
1117
  msgid "Scan Folder for new images"
1118
  msgstr ""
1119
 
1120
  #: ../admin/manage.php:501
1121
  #: ../admin/manage.php:592
1122
- #: ../admin/wp25/manage.php:471
1123
- #: ../admin/wp25/manage.php:504
1124
- #: ../admin/wp25/manage.php:567
1125
  msgid "Save Changes"
1126
  msgstr ""
1127
 
1128
  #: ../admin/manage.php:506
1129
- #: ../admin/wp25/manage.php:480
1130
  msgid "No action"
1131
  msgstr ""
1132
 
1133
  #: ../admin/manage.php:511
1134
- #: ../admin/wp25/manage.php:485
1135
  msgid "Delete images"
1136
  msgstr ""
1137
 
1138
  #: ../admin/manage.php:512
1139
- #: ../admin/wp25/manage.php:486
1140
  msgid "Import metadata"
1141
  msgstr ""
1142
 
1143
  #: ../admin/manage.php:514
1144
- #: ../admin/wp25/manage.php:488
1145
  msgid "Add tags"
1146
  msgstr ""
1147
 
1148
  #: ../admin/manage.php:515
1149
- #: ../admin/wp25/manage.php:489
1150
  msgid "Delete tags"
1151
  msgstr ""
1152
 
1153
  #: ../admin/manage.php:516
1154
- #: ../admin/wp25/manage.php:490
1155
  msgid "Overwrite tags"
1156
  msgstr ""
1157
 
1158
  #: ../admin/manage.php:520
1159
  #: ../admin/manage.php:521
1160
  #: ../admin/manage.php:610
1161
- #: ../admin/wp25/manage.php:494
1162
- #: ../admin/wp25/manage.php:495
1163
- #: ../admin/wp25/manage.php:585
1164
  msgid "OK"
1165
  msgstr ""
1166
 
1167
  #: ../admin/manage.php:520
1168
  #: ../admin/manage.php:610
1169
- #: ../admin/wp25/manage.php:494
1170
- #: ../admin/wp25/manage.php:585
1171
  msgid "No images selected"
1172
  msgstr ""
1173
 
1174
  #: ../admin/manage.php:520
1175
  #: ../admin/manage.php:610
1176
- #: ../admin/wp25/manage.php:494
1177
- #: ../admin/wp25/manage.php:585
1178
  #, php-format
1179
  msgid ""
1180
  "You are about to start the bulk edit for %s images \n"
@@ -1183,95 +925,71 @@ msgid ""
1183
  msgstr ""
1184
 
1185
  #: ../admin/manage.php:522
1186
- #: ../admin/wp25/manage.php:496
1187
  msgid "Hide thumbnails "
1188
  msgstr ""
1189
 
1190
  #: ../admin/manage.php:523
1191
- #: ../admin/wp25/manage.php:497
1192
  msgid "Show thumbnails "
1193
  msgstr ""
1194
 
1195
  #: ../admin/manage.php:524
1196
- #: ../admin/wp25/manage.php:498
1197
  msgid "Show tags"
1198
  msgstr ""
1199
 
1200
  #: ../admin/manage.php:525
1201
- #: ../admin/wp25/manage.php:499
1202
  msgid "Hide tags"
1203
  msgstr ""
1204
 
1205
  #: ../admin/manage.php:527
1206
- #: ../admin/wp25/manage.php:501
1207
  msgid "Sort gallery"
1208
  msgstr ""
1209
 
1210
  #: ../admin/manage.php:536
1211
  #: ../admin/settings.php:320
1212
- #: ../admin/wp25/manage.php:512
1213
- #: ../admin/wp25/settings.php:310
1214
  msgid "File name"
1215
  msgstr ""
1216
 
1217
  #: ../admin/manage.php:538
1218
- #: ../admin/js/uploadtab.js.php:106
1219
- #: ../admin/wp25/manage.php:514
1220
- #: ../admin/wp25/media-upload.php:207
1221
  msgid "Thumbnail"
1222
  msgstr ""
1223
 
1224
  #: ../admin/manage.php:542
1225
- #: ../admin/uploadtab.php:176
1226
- #: ../admin/js/uploadtab.js.php:169
1227
- #: ../admin/wp25/manage.php:518
1228
  msgid "Alt &amp; Title Text"
1229
  msgstr ""
1230
 
1231
  #: ../admin/manage.php:543
1232
- #: ../admin/wp25/manage.php:519
1233
  msgid "exclude"
1234
  msgstr ""
1235
 
1236
  #: ../admin/manage.php:545
1237
- #: ../admin/wp25/manage.php:521
1238
  msgid "Tags (comma separated list)"
1239
  msgstr ""
1240
 
1241
  #: ../admin/manage.php:578
1242
- #: ../admin/wp25/manage.php:554
1243
  msgid "View"
1244
  msgstr ""
1245
 
1246
  #: ../admin/manage.php:579
1247
- #: ../admin/wp25/manage.php:555
1248
  msgid "Show Meta data"
1249
  msgstr ""
1250
 
1251
  #: ../admin/manage.php:579
1252
- #: ../admin/wp25/manage.php:555
1253
  msgid "Meta"
1254
  msgstr ""
1255
 
1256
  #: ../admin/manage.php:580
1257
- #: ../admin/wp25/manage.php:556
1258
  msgid "Delete this file ?"
1259
  msgstr ""
1260
 
1261
  #: ../admin/manage.php:607
1262
- #: ../admin/wp25/manage.php:582
1263
  msgid "Enter the tags"
1264
  msgstr ""
1265
 
1266
  #: ../admin/manage.php:610
1267
- #: ../admin/wp25/manage.php:585
1268
- #: ../tinymce/window.php:147
1269
- #: ../tinymce3/window.php:147
1270
  msgid "Cancel"
1271
  msgstr ""
1272
 
1273
  #: ../admin/overview.php:18
1274
- #: ../admin/wp25/overview.php:24
1275
  msgid "NextGEN Gallery Overview"
1276
  msgstr ""
1277
 
@@ -1280,28 +998,23 @@ msgid "Summary"
1280
  msgstr ""
1281
 
1282
  #: ../admin/overview.php:30
1283
- #: ../admin/wp25/overview.php:49
1284
  #, php-format
1285
  msgid "There are totally %1$s pictures in %2$s galleries, which are spread across %3$s albums."
1286
  msgstr ""
1287
 
1288
  #: ../admin/overview.php:34
1289
- #: ../admin/wp25/overview.php:28
1290
  msgid "New Version available"
1291
  msgstr ""
1292
 
1293
  #: ../admin/overview.php:35
1294
- #: ../admin/wp25/overview.php:29
1295
  msgid "The server reports that a new NextGEN Gallery Version is now available. Please visit the plugin homepage for more information."
1296
  msgstr ""
1297
 
1298
  #: ../admin/overview.php:36
1299
- #: ../admin/wp25/overview.php:30
1300
  msgid "Download here"
1301
  msgstr ""
1302
 
1303
  #: ../admin/overview.php:42
1304
- #: ../admin/wp25/overview.php:103
1305
  msgid "Server Settings"
1306
  msgstr ""
1307
 
@@ -1310,12 +1023,10 @@ msgid "Welcome"
1310
  msgstr ""
1311
 
1312
  #: ../admin/overview.php:54
1313
- #: ../admin/wp25/overview.php:54
1314
  msgid "gallery administrator"
1315
  msgstr ""
1316
 
1317
  #: ../admin/overview.php:54
1318
- #: ../admin/wp25/overview.php:54
1319
  msgid "gallery editor"
1320
  msgstr ""
1321
 
@@ -1341,23 +1052,19 @@ msgid "Change the settings of NextGEN Gallery"
1341
  msgstr ""
1342
 
1343
  #: ../admin/overview.php:66
1344
- #: ../admin/wp25/overview.php:64
1345
  msgid "Latest News"
1346
  msgstr ""
1347
 
1348
  #: ../admin/overview.php:85
1349
- #: ../admin/wp25/overview.php:85
1350
  #, php-format
1351
  msgid "Newsfeed could not be loaded. Check the <a href=\"%s\">front page</a> to check for updates."
1352
  msgstr ""
1353
 
1354
  #: ../admin/overview.php:98
1355
- #: ../admin/wp25/overview.php:124
1356
  msgid "GD support"
1357
  msgstr ""
1358
 
1359
  #: ../admin/overview.php:109
1360
- #: ../admin/wp25/overview.php:135
1361
  msgid "No GD support"
1362
  msgstr ""
1363
 
@@ -1365,10 +1072,6 @@ msgstr ""
1365
  #: ../admin/overview.php:154
1366
  #: ../admin/overview.php:157
1367
  #: ../admin/overview.php:160
1368
- #: ../admin/wp25/overview.php:142
1369
- #: ../admin/wp25/overview.php:180
1370
- #: ../admin/wp25/overview.php:183
1371
- #: ../admin/wp25/overview.php:186
1372
  msgid "Yes"
1373
  msgstr ""
1374
 
@@ -1376,29 +1079,20 @@ msgstr ""
1376
  #: ../admin/overview.php:155
1377
  #: ../admin/overview.php:158
1378
  #: ../admin/overview.php:161
1379
- #: ../admin/wp25/overview.php:143
1380
- #: ../admin/wp25/overview.php:181
1381
- #: ../admin/wp25/overview.php:184
1382
- #: ../admin/wp25/overview.php:187
1383
  msgid "No"
1384
  msgstr ""
1385
 
1386
  #: ../admin/overview.php:131
1387
- #: ../admin/wp25/overview.php:157
1388
  msgid "Not set"
1389
  msgstr ""
1390
 
1391
  #: ../admin/overview.php:133
1392
  #: ../admin/overview.php:136
1393
- #: ../admin/wp25/overview.php:159
1394
- #: ../admin/wp25/overview.php:162
1395
  msgid "On"
1396
  msgstr ""
1397
 
1398
  #: ../admin/overview.php:134
1399
  #: ../admin/overview.php:137
1400
- #: ../admin/wp25/overview.php:160
1401
- #: ../admin/wp25/overview.php:163
1402
  msgid "Off"
1403
  msgstr ""
1404
 
@@ -1407,849 +1101,660 @@ msgstr ""
1407
  #: ../admin/overview.php:146
1408
  #: ../admin/overview.php:149
1409
  #: ../admin/overview.php:152
1410
- #: ../admin/wp25/overview.php:166
1411
- #: ../admin/wp25/overview.php:169
1412
- #: ../admin/wp25/overview.php:172
1413
- #: ../admin/wp25/overview.php:175
1414
- #: ../admin/wp25/overview.php:178
1415
  msgid "N/A"
1416
  msgstr ""
1417
 
1418
  #: ../admin/overview.php:151
1419
- #: ../admin/wp25/overview.php:177
1420
  msgid " MByte"
1421
  msgstr ""
1422
 
1423
  #: ../admin/overview.php:164
1424
- #: ../admin/wp25/overview.php:190
1425
  msgid "Operating System"
1426
  msgstr ""
1427
 
1428
  #: ../admin/overview.php:165
1429
- #: ../admin/wp25/overview.php:191
1430
  msgid "Server"
1431
  msgstr ""
1432
 
1433
  #: ../admin/overview.php:166
1434
- #: ../admin/wp25/overview.php:192
1435
  msgid "Memory usage"
1436
  msgstr ""
1437
 
1438
  #: ../admin/overview.php:167
1439
- #: ../admin/wp25/overview.php:193
1440
  msgid "MYSQL Version"
1441
  msgstr ""
1442
 
1443
  #: ../admin/overview.php:168
1444
- #: ../admin/wp25/overview.php:194
1445
  msgid "SQL Mode"
1446
  msgstr ""
1447
 
1448
  #: ../admin/overview.php:169
1449
- #: ../admin/wp25/overview.php:195
1450
  msgid "PHP Version"
1451
  msgstr ""
1452
 
1453
  #: ../admin/overview.php:170
1454
- #: ../admin/wp25/overview.php:196
1455
  msgid "PHP Safe Mode"
1456
  msgstr ""
1457
 
1458
  #: ../admin/overview.php:171
1459
- #: ../admin/wp25/overview.php:197
1460
  msgid "PHP Allow URL fopen"
1461
  msgstr ""
1462
 
1463
  #: ../admin/overview.php:172
1464
- #: ../admin/wp25/overview.php:198
1465
  msgid "PHP Memory Limit"
1466
  msgstr ""
1467
 
1468
  #: ../admin/overview.php:173
1469
- #: ../admin/wp25/overview.php:199
1470
  msgid "PHP Max Upload Size"
1471
  msgstr ""
1472
 
1473
  #: ../admin/overview.php:174
1474
- #: ../admin/wp25/overview.php:200
1475
  msgid "PHP Max Post Size"
1476
  msgstr ""
1477
 
1478
  #: ../admin/overview.php:175
1479
- #: ../admin/wp25/overview.php:201
1480
  msgid "PHP Max Script Execute Time"
1481
  msgstr ""
1482
 
1483
  #: ../admin/overview.php:176
1484
- #: ../admin/wp25/overview.php:202
1485
  msgid "PHP Exif support"
1486
  msgstr ""
1487
 
1488
  #: ../admin/overview.php:177
1489
- #: ../admin/wp25/overview.php:203
1490
  msgid "PHP IPTC support"
1491
  msgstr ""
1492
 
1493
  #: ../admin/overview.php:178
1494
- #: ../admin/wp25/overview.php:204
1495
  msgid "PHP XML support"
1496
  msgstr ""
1497
 
1498
  #: ../admin/overview.php:319
1499
- #: ../admin/wp25/overview.php:345
1500
  msgid "Storage Space"
1501
  msgstr ""
1502
 
1503
  #: ../admin/overview.php:322
1504
- #: ../admin/wp25/overview.php:348
1505
  msgid "Upload Space Used:"
1506
  msgstr ""
1507
 
1508
  #: ../admin/overview.php:328
1509
- #: ../admin/wp25/overview.php:354
1510
  msgid "Upload Space Remaining:"
1511
  msgstr ""
1512
 
1513
  #: ../admin/roles.php:20
1514
- #: ../admin/wp25/roles.php:20
1515
  msgid "Updated capabilities"
1516
  msgstr ""
1517
 
1518
  #: ../admin/roles.php:25
1519
- #: ../admin/wp25/roles.php:25
1520
  msgid "Roles / capabilities"
1521
  msgstr ""
1522
 
1523
  #: ../admin/roles.php:26
1524
- #: ../admin/wp25/roles.php:26
1525
  msgid "Select the lowest role which should be able to access the follow capabilities. NextGEN Gallery supports the standard roles from WordPress."
1526
  msgstr ""
1527
 
1528
  #: ../admin/roles.php:27
1529
- #: ../admin/wp25/roles.php:27
1530
  msgid "For a more flexible user management you can use the"
1531
  msgstr ""
1532
 
1533
  #: ../admin/roles.php:33
1534
- #: ../admin/wp25/roles.php:32
1535
  msgid "Main NextGEN Gallery overview"
1536
  msgstr ""
1537
 
1538
  #: ../admin/roles.php:37
1539
- #: ../admin/wp25/roles.php:36
1540
  msgid "Use TinyMCE Button / Upload tab"
1541
  msgstr ""
1542
 
1543
  #: ../admin/roles.php:41
1544
- #: ../admin/wp25/roles.php:40
1545
  msgid "Add gallery / Upload images"
1546
  msgstr ""
1547
 
1548
  #: ../admin/roles.php:45
1549
- #: ../admin/wp25/roles.php:44
1550
  msgid "Manage gallery"
1551
  msgstr ""
1552
 
1553
  #: ../admin/roles.php:49
1554
- #: ../admin/wp25/roles.php:48
1555
  msgid "Edit Album"
1556
  msgstr ""
1557
 
1558
  #: ../admin/roles.php:53
1559
- #: ../admin/wp25/roles.php:52
1560
  msgid "Change style"
1561
  msgstr ""
1562
 
1563
  #: ../admin/roles.php:57
1564
- #: ../admin/wp25/roles.php:56
1565
  msgid "Change options"
1566
  msgstr ""
1567
 
1568
  #: ../admin/roles.php:61
1569
- #: ../admin/wp25/roles.php:60
1570
  msgid "Update capabilities"
1571
  msgstr ""
1572
 
1573
  #: ../admin/settings.php:33
1574
- #: ../admin/style.php:16
1575
- #: ../admin/wpmu.php:32
1576
- #: ../admin/wp25/style.php:16
1577
- #: ../admin/wp25/wpmu.php:32
1578
  msgid "Update successfully"
1579
  msgstr ""
1580
 
1581
  #: ../admin/settings.php:50
1582
- #: ../admin/wp25/settings.php:50
1583
  msgid "Cache cleared"
1584
  msgstr ""
1585
 
1586
  #: ../admin/settings.php:101
1587
  #: ../admin/settings.php:113
1588
- #: ../admin/wp25/settings.php:98
1589
- #: ../admin/wp25/settings.php:110
1590
  msgid "General Options"
1591
  msgstr ""
1592
 
1593
  #: ../admin/settings.php:103
1594
- #: ../admin/wp25/settings.php:100
1595
  msgid "Images"
1596
  msgstr ""
1597
 
1598
  #: ../admin/settings.php:105
1599
  #: ../admin/settings.php:339
1600
- #: ../admin/wp25/settings.php:102
1601
- #: ../admin/wp25/settings.php:328
1602
  msgid "Effects"
1603
  msgstr ""
1604
 
1605
  #: ../admin/settings.php:106
1606
  #: ../admin/settings.php:392
1607
- #: ../admin/wp25/settings.php:103
1608
- #: ../admin/wp25/settings.php:379
1609
- #: ../tinymce/window.php:123
1610
- #: ../tinymce3/window.php:123
1611
  msgid "Watermark"
1612
  msgstr ""
1613
 
1614
  #: ../admin/settings.php:107
1615
  #: ../admin/settings.php:296
1616
  #: ../admin/settings.php:500
1617
- #: ../admin/wp25/settings.php:104
1618
- #: ../admin/wp25/settings.php:286
1619
- #: ../admin/wp25/settings.php:482
1620
- #: ../tinymce/window.php:63
1621
- #: ../tinymce3/window.php:63
1622
  msgid "Slideshow"
1623
  msgstr ""
1624
 
1625
  #: ../admin/settings.php:120
1626
- #: ../admin/wpmu.php:48
1627
- #: ../admin/wp25/settings.php:116
1628
- #: ../admin/wp25/wpmu.php:48
1629
  msgid "Gallery path"
1630
  msgstr ""
1631
 
1632
  #: ../admin/settings.php:122
1633
- #: ../admin/wp25/settings.php:118
1634
  msgid "This is the default path for all galleries"
1635
  msgstr ""
1636
 
1637
  #: ../admin/settings.php:133
1638
- #: ../admin/wp25/settings.php:129
1639
  msgid "Delete image files"
1640
  msgstr ""
1641
 
1642
  #: ../admin/settings.php:135
1643
- #: ../admin/wp25/settings.php:131
1644
  msgid "Delete files, when removing a gallery in the database"
1645
  msgstr ""
1646
 
1647
  #: ../admin/settings.php:138
1648
- #: ../admin/wp25/settings.php:134
1649
  msgid "Activate permalinks"
1650
  msgstr ""
1651
 
1652
  #: ../admin/settings.php:140
1653
- #: ../admin/wp25/settings.php:136
1654
  msgid "When you activate this option, you need to update your permalink structure one time."
1655
  msgstr ""
1656
 
1657
  #: ../admin/settings.php:143
1658
- #: ../admin/wp25/settings.php:139
1659
  msgid "Tags / Categories"
1660
  msgstr ""
1661
 
1662
  #: ../admin/settings.php:146
1663
- #: ../admin/wp25/settings.php:142
1664
  msgid "Activate related images"
1665
  msgstr ""
1666
 
1667
  #: ../admin/settings.php:148
1668
- #: ../admin/wp25/settings.php:144
1669
  msgid "This option will append related images to every post"
1670
  msgstr ""
1671
 
1672
  #: ../admin/settings.php:152
1673
- #: ../admin/wp25/settings.php:148
1674
  msgid "Match with"
1675
  msgstr ""
1676
 
1677
  #: ../admin/settings.php:153
1678
- #: ../admin/wp25/settings.php:149
1679
  msgid "Categories"
1680
  msgstr ""
1681
 
1682
  #: ../admin/settings.php:154
1683
- #: ../admin/wp25/settings.php:150
1684
- #: ../lib/nggmeta.lib.php:377
1685
  msgid "Tags"
1686
  msgstr ""
1687
 
1688
  #: ../admin/settings.php:154
1689
- #: ../admin/wp25/settings.php:150
1690
  msgid " (require WordPress 2.3 or higher)"
1691
  msgstr ""
1692
 
1693
  #: ../admin/settings.php:158
1694
- #: ../admin/wp25/settings.php:154
1695
  msgid "Max. number of images"
1696
  msgstr ""
1697
 
1698
  #: ../admin/settings.php:160
1699
- #: ../admin/wp25/settings.php:156
1700
  msgid "0 will show all images"
1701
  msgstr ""
1702
 
1703
  #: ../admin/settings.php:172
1704
- #: ../admin/wp25/settings.php:167
1705
  msgid "Thumbnail settings"
1706
  msgstr ""
1707
 
1708
  #: ../admin/settings.php:177
1709
- #: ../admin/wp25/settings.php:171
1710
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1711
  msgstr ""
1712
 
1713
  #: ../admin/settings.php:180
1714
- #: ../admin/wp25/settings.php:174
1715
  msgid "Width x height (in pixel)"
1716
  msgstr ""
1717
 
1718
  #: ../admin/settings.php:182
1719
- #: ../admin/wp25/settings.php:176
1720
  msgid "These values are maximum values "
1721
  msgstr ""
1722
 
1723
  #: ../admin/settings.php:185
1724
- #: ../admin/wp25/settings.php:179
1725
  msgid "Set fix dimension"
1726
  msgstr ""
1727
 
1728
  #: ../admin/settings.php:187
1729
- #: ../admin/wp25/settings.php:181
1730
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1731
  msgstr ""
1732
 
1733
  #: ../admin/settings.php:190
1734
- #: ../admin/wp25/settings.php:184
1735
  msgid "Crop square thumbnail from image"
1736
  msgstr ""
1737
 
1738
  #: ../admin/settings.php:192
1739
- #: ../admin/wp25/settings.php:186
1740
  msgid "Create square thumbnails, use only the width setting :"
1741
  msgstr ""
1742
 
1743
  #: ../admin/settings.php:195
1744
- #: ../admin/wp25/settings.php:189
1745
  msgid "Thumbnail quality"
1746
  msgstr ""
1747
 
1748
  #: ../admin/settings.php:199
1749
  #: ../admin/settings.php:231
1750
- #: ../admin/wp25/settings.php:193
1751
- #: ../admin/wp25/settings.php:223
1752
  msgid "Resample Mode"
1753
  msgstr ""
1754
 
1755
  #: ../admin/settings.php:201
1756
  #: ../admin/settings.php:234
1757
- #: ../admin/wp25/settings.php:195
1758
- #: ../admin/wp25/settings.php:226
1759
  msgid "Value between 1-5 (higher value, more CPU load)"
1760
  msgstr ""
1761
 
1762
  #: ../admin/settings.php:212
1763
- #: ../admin/wp25/settings.php:205
1764
  msgid "Image settings"
1765
  msgstr ""
1766
 
1767
  #: ../admin/settings.php:219
1768
- #: ../admin/wp25/settings.php:211
1769
  msgid "Resize Images"
1770
  msgstr ""
1771
 
1772
  #: ../admin/settings.php:223
1773
- #: ../admin/wp25/settings.php:215
1774
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1775
  msgstr ""
1776
 
1777
  #: ../admin/settings.php:226
1778
- #: ../admin/wp25/settings.php:218
1779
  msgid "Image quality"
1780
  msgstr ""
1781
 
1782
  #: ../admin/settings.php:237
1783
- #: ../admin/wp25/settings.php:229
1784
  msgid "Single picture"
1785
  msgstr ""
1786
 
1787
  #: ../admin/settings.php:240
1788
- #: ../admin/wp25/settings.php:232
1789
  msgid "Cache single pictures"
1790
  msgstr ""
1791
 
1792
  #: ../admin/settings.php:243
1793
- #: ../admin/wp25/settings.php:235
1794
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1795
  msgstr ""
1796
 
1797
  #: ../admin/settings.php:246
1798
- #: ../admin/wp25/settings.php:238
1799
  msgid "Clear cache folder"
1800
  msgstr ""
1801
 
1802
  #: ../admin/settings.php:248
1803
- #: ../admin/wp25/settings.php:240
1804
  msgid "Proceed now"
1805
  msgstr ""
1806
 
1807
  #: ../admin/settings.php:259
1808
- #: ../admin/wp25/settings.php:250
1809
  msgid "Gallery settings"
1810
  msgstr ""
1811
 
1812
  #: ../admin/settings.php:275
1813
- #: ../admin/wp25/settings.php:265
1814
  msgid "Deactivate gallery page link"
1815
  msgstr ""
1816
 
1817
  #: ../admin/settings.php:277
1818
- #: ../admin/wp25/settings.php:267
1819
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1820
  msgstr ""
1821
 
1822
  #: ../admin/settings.php:281
1823
- #: ../admin/wp25/settings.php:271
1824
  msgid "Number of images per page"
1825
  msgstr ""
1826
 
1827
  #: ../admin/settings.php:283
1828
- #: ../admin/wp25/settings.php:273
1829
  msgid "0 will disable pagination, all images on one page"
1830
  msgstr ""
1831
 
1832
  #: ../admin/settings.php:287
1833
- #: ../admin/wp25/settings.php:277
1834
  msgid "Integrate slideshow"
1835
  msgstr ""
1836
 
1837
  #: ../admin/settings.php:294
1838
- #: ../admin/wp25/settings.php:284
1839
  msgid "Show first"
1840
  msgstr ""
1841
 
1842
  #: ../admin/settings.php:300
1843
- #: ../admin/wp25/settings.php:290
1844
  msgid "Show thumbnail description"
1845
  msgstr ""
1846
 
1847
  #: ../admin/settings.php:301
1848
  #: ../admin/settings.php:351
1849
- #: ../admin/js/uploadtab.js.php:117
1850
- #: ../admin/wp25/media-upload.php:193
1851
- #: ../admin/wp25/settings.php:291
1852
- #: ../admin/wp25/settings.php:339
1853
  msgid "None"
1854
  msgstr ""
1855
 
1856
  #: ../admin/settings.php:302
1857
- #: ../admin/wp25/settings.php:292
1858
  msgid "Description text"
1859
  msgstr ""
1860
 
1861
  #: ../admin/settings.php:303
1862
  #: ../admin/settings.php:321
1863
- #: ../admin/wp25/settings.php:293
1864
- #: ../admin/wp25/settings.php:311
1865
  msgid "Alt / Title text"
1866
  msgstr ""
1867
 
1868
  #: ../admin/settings.php:307
1869
- #: ../admin/wp25/settings.php:297
1870
  msgid "Show ImageBrowser"
1871
  msgstr ""
1872
 
1873
  #: ../admin/settings.php:309
1874
- #: ../admin/wp25/settings.php:299
1875
  msgid "The gallery will open the ImageBrowser instead the effect."
1876
  msgstr ""
1877
 
1878
  #: ../admin/settings.php:313
1879
- #: ../admin/wp25/settings.php:303
1880
  msgid "Sort options"
1881
  msgstr ""
1882
 
1883
  #: ../admin/settings.php:316
1884
- #: ../admin/wp25/settings.php:306
1885
  msgid "Sort thumbnails"
1886
  msgstr ""
1887
 
1888
  #: ../admin/settings.php:318
1889
- #: ../admin/wp25/settings.php:308
1890
  msgid "Custom order"
1891
  msgstr ""
1892
 
1893
  #: ../admin/settings.php:319
1894
- #: ../admin/wp25/settings.php:309
1895
  msgid "Image ID"
1896
  msgstr ""
1897
 
1898
  #: ../admin/settings.php:325
1899
- #: ../admin/wp25/settings.php:315
1900
  msgid "Sort direction"
1901
  msgstr ""
1902
 
1903
  #: ../admin/settings.php:326
1904
- #: ../admin/wp25/settings.php:316
1905
  msgid "Ascending"
1906
  msgstr ""
1907
 
1908
  #: ../admin/settings.php:327
1909
- #: ../admin/wp25/settings.php:317
1910
  msgid "Descending"
1911
  msgstr ""
1912
 
1913
  #: ../admin/settings.php:343
1914
- #: ../admin/wp25/settings.php:332
1915
  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."
1916
  msgstr ""
1917
 
1918
  #: ../admin/settings.php:344
1919
- #: ../admin/wp25/settings.php:333
1920
  msgid "With the placeholder"
1921
  msgstr ""
1922
 
1923
  #: ../admin/settings.php:344
1924
- #: ../admin/wp25/settings.php:333
1925
  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."
1926
  msgstr ""
1927
 
1928
  #: ../admin/settings.php:348
1929
- #: ../admin/wp25/settings.php:336
1930
  msgid "JavaScript Thumbnail effect"
1931
  msgstr ""
1932
 
1933
  #: ../admin/settings.php:352
1934
- #: ../admin/wp25/settings.php:340
1935
  msgid "Thickbox"
1936
  msgstr ""
1937
 
1938
  #: ../admin/settings.php:353
1939
- #: ../admin/wp25/settings.php:341
1940
  msgid "Lightbox"
1941
  msgstr ""
1942
 
1943
  #: ../admin/settings.php:354
1944
- #: ../admin/wp25/settings.php:342
1945
  msgid "Highslide"
1946
  msgstr ""
1947
 
1948
  #: ../admin/settings.php:355
1949
- #: ../admin/wp25/settings.php:343
1950
  msgid "Shutter"
1951
  msgstr ""
1952
 
1953
  #: ../admin/settings.php:356
1954
- #: ../admin/wp25/settings.php:344
1955
  msgid "Custom"
1956
  msgstr ""
1957
 
1958
  #: ../admin/settings.php:361
1959
- #: ../admin/wp25/settings.php:349
1960
  msgid "Link Code line"
1961
  msgstr ""
1962
 
1963
  #: ../admin/settings.php:369
1964
- #: ../admin/wp25/settings.php:357
1965
  msgid "Select loading image"
1966
  msgstr ""
1967
 
1968
  #: ../admin/settings.php:393
1969
- #: ../admin/wp25/settings.php:380
1970
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1971
  msgstr ""
1972
 
1973
  #: ../admin/settings.php:398
1974
- #: ../admin/wp25/settings.php:385
1975
  msgid "Preview"
1976
  msgstr ""
1977
 
1978
  #: ../admin/settings.php:400
1979
  #: ../admin/settings.php:404
1980
- #: ../admin/wp25/settings.php:387
1981
- #: ../admin/wp25/settings.php:392
1982
  msgid "Position"
1983
  msgstr ""
1984
 
1985
  #: ../admin/settings.php:424
1986
- #: ../admin/wp25/settings.php:412
1987
  msgid "Offset"
1988
  msgstr ""
1989
 
1990
  #: ../admin/settings.php:442
1991
- #: ../admin/wp25/settings.php:428
1992
  msgid "Use image as watermark"
1993
  msgstr ""
1994
 
1995
  #: ../admin/settings.php:445
1996
- #: ../admin/wp25/settings.php:431
1997
  msgid "URL to file"
1998
  msgstr ""
1999
 
2000
  #: ../admin/settings.php:447
2001
- #: ../admin/wp25/settings.php:433
2002
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
2003
  msgstr ""
2004
 
2005
  #: ../admin/settings.php:453
2006
- #: ../admin/wp25/settings.php:436
2007
  msgid "Use text as watermark"
2008
  msgstr ""
2009
 
2010
  #: ../admin/settings.php:456
2011
- #: ../admin/wp25/settings.php:439
2012
  msgid "Font"
2013
  msgstr ""
2014
 
2015
  #: ../admin/settings.php:465
2016
- #: ../admin/wp25/settings.php:448
2017
  msgid "This function will not work, cause you need the FreeType library"
2018
  msgstr ""
2019
 
2020
  #: ../admin/settings.php:467
2021
- #: ../admin/wp25/settings.php:450
2022
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
2023
  msgstr ""
2024
 
2025
  #: ../admin/settings.php:471
2026
- #: ../admin/wp25/media-upload.php:203
2027
- #: ../admin/wp25/settings.php:454
2028
  msgid "Size"
2029
  msgstr ""
2030
 
2031
  #: ../admin/settings.php:475
2032
- #: ../admin/wp25/settings.php:458
2033
  msgid "Color"
2034
  msgstr ""
2035
 
2036
  #: ../admin/settings.php:477
2037
- #: ../admin/wp25/settings.php:460
2038
  msgid "(hex w/o #)"
2039
  msgstr ""
2040
 
2041
  #: ../admin/settings.php:480
2042
- #: ../admin/wp25/settings.php:463
2043
  msgid "Text"
2044
  msgstr ""
2045
 
2046
  #: ../admin/settings.php:484
2047
- #: ../admin/wp25/settings.php:467
2048
  msgid "Opaque"
2049
  msgstr ""
2050
 
2051
  #: ../admin/settings.php:502
2052
- #: ../admin/wp25/settings.php:483
2053
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
2054
  msgstr ""
2055
 
2056
  #: ../admin/settings.php:503
2057
- #: ../admin/wp25/settings.php:484
2058
  msgid "The settings are used in the JW Image Rotator Version"
2059
  msgstr ""
2060
 
2061
  #: ../admin/settings.php:504
2062
- #: ../admin/wp25/settings.php:485
2063
  msgid "See more information for the Flash Player on the web page"
2064
  msgstr ""
2065
 
2066
  #: ../admin/settings.php:507
2067
- #: ../admin/wp25/settings.php:489
2068
  msgid "Default size (W x H)"
2069
  msgstr ""
2070
 
2071
  #: ../admin/settings.php:512
2072
- #: ../admin/wp25/settings.php:494
2073
  msgid "Shuffle mode"
2074
  msgstr ""
2075
 
2076
  #: ../admin/settings.php:516
2077
- #: ../admin/wp25/settings.php:498
2078
  msgid "Show next image on click"
2079
  msgstr ""
2080
 
2081
  #: ../admin/settings.php:520
2082
- #: ../admin/wp25/settings.php:502
2083
  msgid "Show navigation bar"
2084
  msgstr ""
2085
 
2086
  #: ../admin/settings.php:524
2087
- #: ../admin/wp25/settings.php:506
2088
  msgid "Show loading icon"
2089
  msgstr ""
2090
 
2091
  #: ../admin/settings.php:528
2092
- #: ../admin/wp25/settings.php:510
2093
  msgid "Use watermark logo"
2094
  msgstr ""
2095
 
2096
  #: ../admin/settings.php:530
2097
- #: ../admin/wp25/settings.php:512
2098
  msgid "You can change the logo at the watermark settings"
2099
  msgstr ""
2100
 
2101
  #: ../admin/settings.php:533
2102
- #: ../admin/wp25/settings.php:515
2103
  msgid "Stretch image"
2104
  msgstr ""
2105
 
2106
  #: ../admin/settings.php:536
2107
- #: ../admin/wp25/settings.php:518
2108
  msgid "true"
2109
  msgstr ""
2110
 
2111
  #: ../admin/settings.php:537
2112
- #: ../admin/wp25/settings.php:519
2113
  msgid "false"
2114
  msgstr ""
2115
 
2116
  #: ../admin/settings.php:538
2117
- #: ../admin/wp25/settings.php:520
2118
  msgid "fit"
2119
  msgstr ""
2120
 
2121
  #: ../admin/settings.php:539
2122
- #: ../admin/wp25/settings.php:521
2123
  msgid "none"
2124
  msgstr ""
2125
 
2126
  #: ../admin/settings.php:544
2127
- #: ../admin/wp25/settings.php:526
2128
  msgid "Duration time"
2129
  msgstr ""
2130
 
2131
  #: ../admin/settings.php:545
2132
- #: ../admin/wp25/settings.php:527
2133
  msgid "sec."
2134
  msgstr ""
2135
 
2136
  #: ../admin/settings.php:548
2137
- #: ../admin/wp25/settings.php:530
2138
  msgid "Transition / Fade effect"
2139
  msgstr ""
2140
 
2141
  #: ../admin/settings.php:551
2142
- #: ../admin/wp25/settings.php:533
2143
  msgid "fade"
2144
  msgstr ""
2145
 
2146
  #: ../admin/settings.php:552
2147
- #: ../admin/wp25/settings.php:534
2148
  msgid "bgfade"
2149
  msgstr ""
2150
 
2151
  #: ../admin/settings.php:553
2152
- #: ../admin/wp25/settings.php:535
2153
  msgid "slowfade"
2154
  msgstr ""
2155
 
2156
  #: ../admin/settings.php:554
2157
- #: ../admin/wp25/settings.php:536
2158
  msgid "circles"
2159
  msgstr ""
2160
 
2161
  #: ../admin/settings.php:555
2162
- #: ../admin/wp25/settings.php:537
2163
  msgid "bubbles"
2164
  msgstr ""
2165
 
2166
  #: ../admin/settings.php:556
2167
- #: ../admin/wp25/settings.php:538
2168
  msgid "blocks"
2169
  msgstr ""
2170
 
2171
  #: ../admin/settings.php:557
2172
- #: ../admin/wp25/settings.php:539
2173
  msgid "fluids"
2174
  msgstr ""
2175
 
2176
  #: ../admin/settings.php:558
2177
- #: ../admin/wp25/settings.php:540
2178
  msgid "flash"
2179
  msgstr ""
2180
 
2181
  #: ../admin/settings.php:559
2182
- #: ../admin/wp25/settings.php:541
2183
  msgid "lines"
2184
  msgstr ""
2185
 
2186
  #: ../admin/settings.php:564
2187
- #: ../admin/wp25/settings.php:546
2188
  msgid "Use slow zooming effect"
2189
  msgstr ""
2190
 
2191
  #: ../admin/settings.php:568
2192
- #: ../admin/wp25/settings.php:550
2193
  msgid "Background Color"
2194
  msgstr ""
2195
 
2196
  #: ../admin/settings.php:573
2197
- #: ../admin/wp25/settings.php:555
2198
  msgid "Texts / Buttons Color"
2199
  msgstr ""
2200
 
2201
  #: ../admin/settings.php:578
2202
- #: ../admin/wp25/settings.php:560
2203
  msgid "Rollover / Active Color"
2204
  msgstr ""
2205
 
2206
  #: ../admin/settings.php:583
2207
- #: ../admin/wp25/settings.php:565
2208
  msgid "Screen Color"
2209
  msgstr ""
2210
 
2211
  #: ../admin/settings.php:588
2212
- #: ../admin/wp25/settings.php:570
2213
  msgid "Background music (URL)"
2214
  msgstr ""
2215
 
2216
  #: ../admin/settings.php:592
2217
- #: ../admin/wp25/settings.php:574
2218
  msgid "Try XHTML validation (with CDATA)"
2219
  msgstr ""
2220
 
2221
  #: ../admin/settings.php:594
2222
- #: ../admin/wp25/settings.php:576
2223
  msgid "Important : Could causes problem at some browser. Please recheck your page."
2224
  msgstr ""
2225
 
2226
  #: ../admin/setup.php:12
2227
- #: ../admin/wp25/setup.php:11
2228
  msgid "Reset all settings to default parameter"
2229
  msgstr ""
2230
 
2231
  #: ../admin/setup.php:37
2232
- #: ../admin/wp25/setup.php:36
2233
  msgid "Uninstall sucessfull ! Now delete the plugin and enjoy your life ! Good luck !"
2234
  msgstr ""
2235
 
2236
  #: ../admin/setup.php:46
2237
- #: ../admin/wp25/setup.php:42
2238
  msgid "Reset options"
2239
  msgstr ""
2240
 
2241
  #: ../admin/setup.php:49
2242
- #: ../admin/wp25/setup.php:45
2243
  msgid "Reset all options/settings to the default installation."
2244
  msgstr ""
2245
 
2246
  #: ../admin/setup.php:50
2247
- #: ../admin/wp25/setup.php:46
2248
  msgid "Reset settings"
2249
  msgstr ""
2250
 
2251
  #: ../admin/setup.php:50
2252
- #: ../admin/wp25/setup.php:46
2253
  msgid ""
2254
  "Reset all options to default settings ?\\n"
2255
  "\\n"
@@ -2257,42 +1762,34 @@ msgid ""
2257
  msgstr ""
2258
 
2259
  #: ../admin/setup.php:55
2260
- #: ../admin/wp25/setup.php:51
2261
  msgid "Uninstall plugin tables"
2262
  msgstr ""
2263
 
2264
  #: ../admin/setup.php:58
2265
- #: ../admin/wp25/setup.php:56
2266
  msgid "You don't like NextGEN Gallery ?"
2267
  msgstr ""
2268
 
2269
  #: ../admin/setup.php:59
2270
- #: ../admin/wp25/setup.php:57
2271
  msgid "No problem, before you deactivate this plugin press the Uninstall Button, because deactivating NextGEN Gallery does not remove any data that may have been created. "
2272
  msgstr ""
2273
 
2274
  #: ../admin/setup.php:60
2275
- #: ../admin/wp25/setup.php:59
2276
  msgid "WARNING:"
2277
  msgstr ""
2278
 
2279
  #: ../admin/setup.php:61
2280
- #: ../admin/wp25/setup.php:60
2281
  msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to backup all the tables first. NextGEN gallery is stored in the tables"
2282
  msgstr ""
2283
 
2284
  #: ../admin/setup.php:61
2285
- #: ../admin/wp25/setup.php:60
2286
  msgid "and"
2287
  msgstr ""
2288
 
2289
  #: ../admin/setup.php:63
2290
- #: ../admin/wp25/setup.php:62
2291
  msgid "Uninstall plugin"
2292
  msgstr ""
2293
 
2294
  #: ../admin/setup.php:63
2295
- #: ../admin/wp25/setup.php:62
2296
  msgid ""
2297
  "You are about to Uninstall this plugin from WordPress.\\n"
2298
  "This action is not reversible.\\n"
@@ -2302,124 +1799,96 @@ msgstr ""
2302
 
2303
  #: ../admin/showmeta.php:7
2304
  #: ../admin/showmeta.php:10
2305
- #: ../admin/wp25/showmeta.php:7
2306
- #: ../admin/wp25/showmeta.php:10
2307
  msgid "Cheatin&#8217; uh?"
2308
  msgstr ""
2309
 
2310
  #: ../admin/showmeta.php:42
2311
- #: ../admin/wp25/showmeta.php:42
2312
  msgid "EXIF Data"
2313
  msgstr ""
2314
 
2315
  #: ../admin/showmeta.php:47
2316
  #: ../admin/showmeta.php:71
2317
  #: ../admin/showmeta.php:95
2318
- #: ../admin/wp25/showmeta.php:47
2319
- #: ../admin/wp25/showmeta.php:71
2320
- #: ../admin/wp25/showmeta.php:95
2321
  msgid "Tag"
2322
  msgstr ""
2323
 
2324
  #: ../admin/showmeta.php:48
2325
  #: ../admin/showmeta.php:72
2326
  #: ../admin/showmeta.php:96
2327
- #: ../admin/wp25/showmeta.php:48
2328
- #: ../admin/wp25/showmeta.php:72
2329
- #: ../admin/wp25/showmeta.php:96
2330
  msgid "Value"
2331
  msgstr ""
2332
 
2333
  #: ../admin/showmeta.php:61
2334
- #: ../admin/wp25/showmeta.php:61
2335
  msgid "No exif data"
2336
  msgstr ""
2337
 
2338
  #: ../admin/showmeta.php:67
2339
- #: ../admin/wp25/showmeta.php:67
2340
  msgid "IPTC Data"
2341
  msgstr ""
2342
 
2343
  #: ../admin/showmeta.php:91
2344
- #: ../admin/wp25/showmeta.php:91
2345
  msgid "XMP Data"
2346
  msgstr ""
2347
 
2348
  #: ../admin/sort.php:35
2349
- #: ../admin/wp25/sort.php:33
2350
  msgid "Sort order changed"
2351
  msgstr ""
2352
 
2353
  #: ../admin/sort.php:53
2354
- #: ../admin/wp25/sort.php:53
2355
  msgid "Sort Gallery"
2356
  msgstr ""
2357
 
2358
  #: ../admin/sort.php:58
2359
- #: ../admin/wp25/sort.php:57
2360
  msgid "Back to gallery"
2361
  msgstr ""
2362
 
2363
  #: ../admin/sort.php:59
2364
- #: ../admin/wp25/sort.php:58
2365
  msgid "Update Sort Order"
2366
  msgstr ""
2367
 
2368
  #: ../admin/style.php:34
2369
- #: ../admin/wp25/style.php:34
2370
  msgid "You do not have sufficient permissions to edit templates for this blog."
2371
  msgstr ""
2372
 
2373
  #: ../admin/style.php:43
2374
- #: ../admin/wp25/style.php:43
2375
  msgid "CSS file successfully updated"
2376
  msgstr ""
2377
 
2378
  #: ../admin/style.php:66
2379
- #: ../admin/wp25/style.php:68
2380
  msgid "Activate and use style sheet:"
2381
  msgstr ""
2382
 
2383
  #: ../admin/style.php:85
2384
- #: ../admin/wp25/style.php:88
2385
  msgid "Activate"
2386
  msgstr ""
2387
 
2388
  #: ../admin/style.php:93
2389
- #: ../admin/wp25/style.php:97
2390
  #, php-format
2391
  msgid "Editing <strong>%s</strong>"
2392
  msgstr ""
2393
 
2394
  #: ../admin/style.php:95
2395
- #: ../admin/wp25/style.php:99
2396
  #, php-format
2397
  msgid "Browsing <strong>%s</strong>"
2398
  msgstr ""
2399
 
2400
  #: ../admin/style.php:100
2401
- #: ../admin/wp25/style.php:107
2402
- #: ../lib/nggmeta.lib.php:376
2403
  msgid "Author"
2404
  msgstr ""
2405
 
2406
  #: ../admin/style.php:101
2407
- #: ../admin/wp25/style.php:108
2408
  msgid "Version"
2409
  msgstr ""
2410
 
2411
  #: ../admin/style.php:118
2412
- #: ../admin/wp25/style.php:124
2413
  msgid "Update File &raquo;"
2414
  msgstr ""
2415
 
2416
  #: ../admin/style.php:122
2417
- #: ../admin/wp25/style.php:127
2418
  msgid "If this file were writable you could edit it."
2419
  msgstr ""
2420
 
2421
  #: ../admin/style.php:127
2422
- #: ../admin/wp25/style.php:132
2423
  msgid "Oops, no such file exists! Double check the name and try again, merci."
2424
  msgstr ""
2425
 
@@ -2429,8 +1898,6 @@ msgstr ""
2429
 
2430
  #: ../admin/uploadtab.php:107
2431
  #: ../admin/wp25/media-upload.php:127
2432
- #: ../tinymce/window.php:49
2433
- #: ../tinymce3/window.php:49
2434
  msgid "No gallery"
2435
  msgstr ""
2436
 
@@ -2449,62 +1916,50 @@ msgid "Delete image ?"
2449
  msgstr ""
2450
 
2451
  #: ../admin/wpmu.php:41
2452
- #: ../admin/wp25/wpmu.php:41
2453
  msgid "General WordPress MU Settings"
2454
  msgstr ""
2455
 
2456
  #: ../admin/wpmu.php:50
2457
- #: ../admin/wp25/wpmu.php:50
2458
  msgid "This is the default path for all blogs. With the placeholder %BLOG_ID% you can organize the folder structure better. The path must end with a /."
2459
  msgstr ""
2460
 
2461
  #: ../admin/wpmu.php:53
2462
- #: ../admin/wp25/wpmu.php:53
2463
  msgid "Enable upload quota check"
2464
  msgstr ""
2465
 
2466
  #: ../admin/wpmu.php:55
2467
- #: ../admin/wp25/wpmu.php:55
2468
  msgid "Should work if the gallery is bellow the blog.dir"
2469
  msgstr ""
2470
 
2471
  #: ../admin/wpmu.php:59
2472
- #: ../admin/wp25/wpmu.php:59
2473
  msgid "Enable zip upload option"
2474
  msgstr ""
2475
 
2476
  #: ../admin/wpmu.php:61
2477
- #: ../admin/wp25/wpmu.php:61
2478
  msgid "Allow users to upload zip folders."
2479
  msgstr ""
2480
 
2481
  #: ../admin/wpmu.php:65
2482
- #: ../admin/wp25/wpmu.php:65
2483
  msgid "Enable style selection"
2484
  msgstr ""
2485
 
2486
  #: ../admin/wpmu.php:67
2487
- #: ../admin/wp25/wpmu.php:67
2488
  msgid "Allow users to choose a style for the gallery."
2489
  msgstr ""
2490
 
2491
  #: ../admin/wpmu.php:71
2492
- #: ../admin/wp25/wpmu.php:71
2493
  msgid "Enable roles/capabilities"
2494
  msgstr ""
2495
 
2496
  #: ../admin/wpmu.php:73
2497
- #: ../admin/wp25/wpmu.php:73
2498
  msgid "Allow users to change the roles for other blog authors."
2499
  msgstr ""
2500
 
2501
  #: ../admin/wpmu.php:77
2502
- #: ../admin/wp25/wpmu.php:77
2503
  msgid "Default style"
2504
  msgstr ""
2505
 
2506
  #: ../admin/wpmu.php:94
2507
- #: ../admin/wp25/wpmu.php:94
2508
  msgid "Choose the default style for the galleries."
2509
  msgstr ""
2510
 
@@ -2549,8 +2004,6 @@ msgid "Send to editor &raquo;"
2549
  msgstr ""
2550
 
2551
  #: ../admin/js/uploadtab.js.php:156
2552
- #: ../tinymce/window.php:151
2553
- #: ../tinymce3/window.php:151
2554
  msgid "Insert"
2555
  msgstr ""
2556
 
@@ -2581,10 +2034,6 @@ msgstr ""
2581
  msgid " Please note : For safe-mode = ON you need to add the subfolder thumbs manually"
2582
  msgstr ""
2583
 
2584
- #: ../admin/wp25/manage.php:404
2585
- msgid "Edit gallery"
2586
- msgstr ""
2587
-
2588
  #: ../admin/wp25/media-upload.php:139
2589
  msgid "Select Gallery &#187;"
2590
  msgstr ""
@@ -2610,20 +2059,14 @@ msgid "Alignment"
2610
  msgstr ""
2611
 
2612
  #: ../admin/wp25/media-upload.php:195
2613
- #: ../tinymce/window.php:133
2614
- #: ../tinymce3/window.php:133
2615
  msgid "Left"
2616
  msgstr ""
2617
 
2618
  #: ../admin/wp25/media-upload.php:197
2619
- #: ../tinymce/window.php:134
2620
- #: ../tinymce3/window.php:134
2621
  msgid "Center"
2622
  msgstr ""
2623
 
2624
  #: ../admin/wp25/media-upload.php:199
2625
- #: ../tinymce/window.php:135
2626
- #: ../tinymce3/window.php:135
2627
  msgid "Right"
2628
  msgstr ""
2629
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2008-05-18 12:15+0100\n"
6
+ "PO-Revision-Date: 2008-05-18 12:15+0100\n"
7
  "Last-Translator: Alex Rabe\n"
8
  "Language-Team: Alex Rabe\n"
9
  "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: .\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
  "X-Poedit-SearchPath-1: ..\n"
18
 
19
+ #: ../nggallery.php:61
20
  msgid "Sorry, NextGEN Gallery works only under WordPress 2.1 or higher"
21
  msgstr ""
22
 
23
+ #: ../nggallery.php:68
24
  msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB higher"
25
  msgstr ""
26
 
27
+ #: ../nggfunctions.php:449
28
+ #: ../nggfunctions.php:464
29
  msgid "Watch gallery"
30
  msgstr ""
31
 
32
+ #: ../nggfunctions.php:458
33
+ #: ../nggfunctions.php:470
34
+ #: ../nggfunctions.php:758
35
  msgid "Photos"
36
  msgstr ""
37
 
38
+ #: ../nggfunctions.php:546
39
  msgid "Back"
40
  msgstr ""
41
 
42
+ #: ../nggfunctions.php:550
43
  msgid "Next"
44
  msgstr ""
45
 
46
+ #: ../nggfunctions.php:553
47
  #: ../admin/manage.php:85
 
 
 
48
  msgid "Picture"
49
  msgstr ""
50
 
51
+ #: ../nggfunctions.php:553
52
  msgid "from"
53
  msgstr ""
54
 
55
+ #: ../nggfunctions.php:728
56
  msgid "Overview"
57
  msgstr ""
58
 
106
  msgstr ""
107
 
108
  #: ../nggwidget.php:212
 
109
  msgid "Save"
110
  msgstr ""
111
 
120
  #: ../nggwidget.php:314
121
  #: ../admin/settings.php:102
122
  #: ../admin/settings.php:295
 
 
123
  msgid "Thumbnails"
124
  msgstr ""
125
 
129
 
130
  #: ../nggwidget.php:321
131
  #: ../admin/settings.php:560
 
132
  msgid "random"
133
  msgstr ""
134
 
165
  msgstr ""
166
 
167
  #: ../admin/about.php:9
 
168
  msgid "Copyright notes / Credits"
169
  msgstr ""
170
 
171
  #: ../admin/about.php:11
 
172
  msgid "NextGEN DEV Team"
173
  msgstr ""
174
 
175
  #: ../admin/about.php:12
 
176
  msgid "This plugin is primarily developed, maintained, supported, documented by"
177
  msgstr ""
178
 
179
  #: ../admin/about.php:12
 
180
  msgid "There are many other folks who have made contributions to this project :"
181
  msgstr ""
182
 
183
  #: ../admin/about.php:14
 
184
  msgid "Contributors / Tribute to"
185
  msgstr ""
186
 
187
  #: ../admin/about.php:15
 
188
  msgid "If you study the code of this plugin, you will find out that we mixed a lot of good already existing code and ideas together."
189
  msgstr ""
190
 
191
  #: ../admin/about.php:16
 
192
  msgid "So, we would like to thank the following people for their pioneer work (without this work it's impossible to create such a plugin so fast)"
193
  msgstr ""
194
 
195
  #: ../admin/about.php:18
 
196
  msgid "for their great documented code"
197
  msgstr ""
198
 
199
  #: ../admin/about.php:19
 
200
  msgid "for jQuery, which is the best Web2.0 framework"
201
  msgstr ""
202
 
203
  #: ../admin/about.php:20
 
204
  msgid "for the fantastic PHP Thumbnail Class"
205
  msgstr ""
206
 
207
  #: ../admin/about.php:21
 
208
  msgid "for PclZip , a PHP library that manage ZIP archives"
209
  msgstr ""
210
 
211
  #: ../admin/about.php:22
 
212
  msgid "for a lot of very useful plugins and ideas"
213
  msgstr ""
214
 
215
  #: ../admin/about.php:23
 
216
  msgid "for Simple:Press Forum, it saved me a lot of time"
217
  msgstr ""
218
 
219
  #: ../admin/about.php:24
 
220
  msgid "for the best Media Flash Scripts on earth"
221
  msgstr ""
222
 
223
  #: ../admin/about.php:25
 
224
  msgid "for the Watermark plugin"
225
  msgstr ""
226
 
227
  #: ../admin/about.php:27
 
228
  msgid "If you didn't find your name on this list and there is some code which I integrate in my plugin, don't hesitate to send me a mail."
229
  msgstr ""
230
 
231
  #: ../admin/about.php:28
 
232
  msgid "How to support ?"
233
  msgstr ""
234
 
235
  #: ../admin/about.php:29
 
236
  msgid "There exist several ways to contribute, help or support us in this work. Non of them are mandatory."
237
  msgstr ""
238
 
239
  #: ../admin/about.php:31
 
240
  msgid "Send us bugfixes / code changes"
241
  msgstr ""
242
 
243
  #: ../admin/about.php:31
 
244
  msgid "The most motivated support for this plugin are your ideas and brain work"
245
  msgstr ""
246
 
247
  #: ../admin/about.php:32
 
248
  msgid "Translate the plugin"
249
  msgstr ""
250
 
253
  msgstr ""
254
 
255
  #: ../admin/about.php:33
 
256
  msgid "Donate the work via paypal"
257
  msgstr ""
258
 
261
  msgstr ""
262
 
263
  #: ../admin/about.php:46
 
264
  msgid "Place a link to the plugin in your blog/webpage"
265
  msgstr ""
266
 
267
  #: ../admin/about.php:46
 
268
  msgid "Yes, share and trackback is also a good support for this work "
269
  msgstr ""
270
 
271
  #: ../admin/about.php:48
 
272
  msgid "Thanks!"
273
  msgstr ""
274
 
275
  #: ../admin/about.php:49
 
276
  msgid "We would like to thank this people which support us in the work :"
277
  msgstr ""
278
 
279
  #: ../admin/addgallery.php:35
280
  #: ../admin/addgallery.php:51
 
 
281
  msgid "Upload failed!"
282
  msgstr ""
283
 
284
  #: ../admin/addgallery.php:56
285
  #: ../admin/functions.php:563
286
  #: ../admin/functions.php:652
 
 
 
287
  msgid "No gallery selected !"
288
  msgstr ""
289
 
290
  #: ../admin/addgallery.php:111
 
291
  msgid "Image Files"
292
  msgstr ""
293
 
294
  #: ../admin/addgallery.php:131
295
  #: ../admin/addgallery.php:161
 
 
296
  msgid "remove"
297
  msgstr ""
298
 
299
  #: ../admin/addgallery.php:132
 
300
  msgid "Browse..."
301
  msgstr ""
302
 
303
  #: ../admin/addgallery.php:133
304
  #: ../admin/addgallery.php:311
 
 
305
  msgid "Upload images"
306
  msgstr ""
307
 
308
  #: ../admin/addgallery.php:177
309
  #: ../admin/addgallery.php:189
 
 
310
  msgid "Add new gallery"
311
  msgstr ""
312
 
313
  #: ../admin/addgallery.php:179
314
  #: ../admin/addgallery.php:210
 
 
315
  msgid "Upload a Zip-File"
316
  msgstr ""
317
 
318
  #: ../admin/addgallery.php:182
319
  #: ../admin/addgallery.php:250
 
 
320
  msgid "Import image folder"
321
  msgstr ""
322
 
323
  #: ../admin/addgallery.php:184
324
  #: ../admin/addgallery.php:274
 
 
325
  msgid "Upload Images"
326
  msgstr ""
327
 
328
  #: ../admin/addgallery.php:195
 
329
  msgid "New Gallery"
330
  msgstr ""
331
 
332
  #: ../admin/addgallery.php:198
 
333
  msgid "Create a new , empty gallery below the folder"
334
  msgstr ""
335
 
336
  #: ../admin/addgallery.php:200
 
337
  msgid "Allowed characters for file and folder names are"
338
  msgstr ""
339
 
340
  #: ../admin/addgallery.php:203
 
341
  msgid "Add gallery"
342
  msgstr ""
343
 
344
  #: ../admin/addgallery.php:216
 
345
  msgid "Select Zip-File"
346
  msgstr ""
347
 
348
  #: ../admin/addgallery.php:218
 
349
  msgid "Upload a zip file with images"
350
  msgstr ""
351
 
352
  #: ../admin/addgallery.php:221
353
  #: ../admin/addgallery.php:284
 
 
354
  msgid "in to"
355
  msgstr ""
356
 
357
  #: ../admin/addgallery.php:223
 
358
  msgid "a new gallery"
359
  msgstr ""
360
 
361
  #: ../admin/addgallery.php:233
362
  #: ../admin/addgallery.php:296
 
 
363
  msgid "Note : The upload limit on your server is "
364
  msgstr ""
365
 
366
  #: ../admin/addgallery.php:237
367
  #: ../admin/addgallery.php:262
368
  #: ../admin/addgallery.php:300
 
 
 
369
  msgid "Add Metadata :"
370
  msgstr ""
371
 
372
  #: ../admin/addgallery.php:239
373
  #: ../admin/addgallery.php:264
374
  #: ../admin/addgallery.php:302
 
 
 
375
  msgid "Import EXIF, IPTC or XMP data (if available)"
376
  msgstr ""
377
 
378
  #: ../admin/addgallery.php:242
 
379
  msgid "Start upload"
380
  msgstr ""
381
 
382
  #: ../admin/addgallery.php:256
 
383
  msgid "Import from Server path:"
384
  msgstr ""
385
 
392
  msgstr ""
393
 
394
  #: ../admin/addgallery.php:267
 
395
  msgid "Import folder"
396
  msgstr ""
397
 
398
  #: ../admin/addgallery.php:280
 
399
  msgid "Upload image"
400
  msgstr ""
401
 
402
  #: ../admin/addgallery.php:286
 
403
  msgid "Choose gallery"
404
  msgstr ""
405
 
406
  #: ../admin/addgallery.php:307
 
407
  msgid "The batch upload requires Adobe Flash 9, disable it if you have problems"
408
  msgstr ""
409
 
410
  #: ../admin/addgallery.php:307
 
411
  msgid "Disable flash upload"
412
  msgstr ""
413
 
414
  #: ../admin/addgallery.php:309
 
415
  msgid "Upload multiple files at once by ctrl/shift-selecting in dialog"
416
  msgstr ""
417
 
418
  #: ../admin/addgallery.php:309
 
419
  msgid "Enable flash based upload"
420
  msgstr ""
421
 
426
  #: ../admin/manage.php:64
427
  #: ../admin/manage.php:434
428
  #: ../admin/settings.php:104
 
 
 
 
 
 
 
 
 
 
429
  msgid "Gallery"
430
  msgstr ""
431
 
432
  #: ../admin/admin.php:76
 
433
  msgid "Add Gallery"
434
  msgstr ""
435
 
436
  #: ../admin/admin.php:77
 
437
  msgid "Manage Gallery"
438
  msgstr ""
439
 
440
  #: ../admin/admin.php:78
 
 
 
441
  msgid "Album"
442
  msgstr ""
443
 
444
  #: ../admin/admin.php:79
 
445
  msgid "Options"
446
  msgstr ""
447
 
448
  #: ../admin/admin.php:81
 
449
  msgid "Style"
450
  msgstr ""
451
 
452
  #: ../admin/admin.php:82
 
453
  msgid "Setup Gallery"
454
  msgstr ""
455
 
456
  #: ../admin/admin.php:82
 
457
  msgid "Setup"
458
  msgstr ""
459
 
460
  #: ../admin/admin.php:84
 
461
  msgid "Roles"
462
  msgstr ""
463
 
464
  #: ../admin/admin.php:85
 
465
  msgid "About this Gallery"
466
  msgstr ""
467
 
468
  #: ../admin/admin.php:85
 
469
  msgid "About"
470
  msgstr ""
471
 
472
  #: ../admin/admin.php:87
 
 
473
  msgid "NextGEN Gallery"
474
  msgstr ""
475
 
476
  #: ../admin/album.php:19
477
  #: ../admin/album.php:37
 
 
 
478
  msgid "Update Successfully"
479
  msgstr ""
480
 
481
  #: ../admin/album.php:45
 
482
  msgid "Album deleted"
483
  msgstr ""
484
 
485
  #: ../admin/album.php:122
 
486
  msgid "Manage Albums"
487
  msgstr ""
488
 
489
  #: ../admin/album.php:128
 
 
 
490
  msgid "Select album"
491
  msgstr ""
492
 
493
  #: ../admin/album.php:131
 
494
  msgid "No album selected"
495
  msgstr ""
496
 
497
  #: ../admin/album.php:144
 
498
  msgid "Add new album"
499
  msgstr ""
500
 
501
  #: ../admin/album.php:148
502
  #: ../admin/manage.php:309
503
  #: ../admin/manage.php:580
 
 
 
504
  msgid "Delete"
505
  msgstr ""
506
 
507
  #: ../admin/album.php:148
 
508
  msgid "Delete album ?"
509
  msgstr ""
510
 
516
  #: ../admin/settings.php:378
517
  #: ../admin/settings.php:490
518
  #: ../admin/settings.php:598
 
 
 
 
 
 
 
 
 
 
519
  msgid "Update"
520
  msgstr ""
521
 
522
  #: ../admin/album.php:158
 
523
  msgid "[Show all]"
524
  msgstr ""
525
 
526
  #: ../admin/album.php:159
 
527
  msgid "[Maximize]"
528
  msgstr ""
529
 
530
  #: ../admin/album.php:160
 
531
  msgid "[Minimize]"
532
  msgstr ""
533
 
534
  #: ../admin/album.php:162
 
535
  msgid "After you create and select a album, you can drag and drop a gallery into your album below"
536
  msgstr ""
537
 
538
  #: ../admin/album.php:169
 
539
  msgid "Select Gallery"
540
  msgstr ""
541
 
542
  #: ../admin/album.php:208
 
543
  msgid "Album Page ID"
544
  msgstr ""
545
 
546
  #: ../admin/album.php:220
 
547
  msgid "No album selected!"
548
  msgstr ""
549
 
550
  #: ../admin/album.php:256
551
  #: ../admin/manage.php:283
552
  #: ../admin/manage.php:535
 
 
 
553
  msgid "ID"
554
  msgstr ""
555
 
556
  #: ../admin/album.php:257
 
557
  msgid "Name"
558
  msgstr ""
559
 
560
  #: ../admin/album.php:258
561
  #: ../admin/manage.php:285
562
  #: ../admin/manage.php:446
 
 
 
 
 
563
  msgid "Title"
564
  msgstr ""
565
 
566
  #: ../admin/album.php:259
 
567
  msgid "Page"
568
  msgstr ""
569
 
570
  #: ../admin/functions.php:20
 
571
  msgid "No valid gallery name!"
572
  msgstr ""
573
 
576
  #: ../admin/functions.php:50
577
  #: ../admin/functions.php:102
578
  #: ../admin/functions.php:109
 
 
 
 
 
579
  msgid "Directory"
580
  msgstr ""
581
 
582
  #: ../admin/functions.php:27
 
583
  msgid "didn't exist. Please create first the main gallery folder "
584
  msgstr ""
585
 
586
  #: ../admin/functions.php:28
587
  #: ../admin/functions.php:37
 
 
588
  msgid "Check this link, if you didn't know how to set the permission :"
589
  msgstr ""
590
 
591
  #: ../admin/functions.php:36
592
  #: ../admin/functions.php:50
 
 
593
  msgid "is not writeable !"
594
  msgstr ""
595
 
596
  #: ../admin/functions.php:45
597
  #: ../admin/functions.php:55
598
  #: ../admin/functions.php:525
 
 
 
 
599
  msgid "Unable to create directory "
600
  msgstr ""
601
 
602
  #: ../admin/functions.php:59
 
603
  msgid "The server setting Safe-Mode is on !"
604
  msgstr ""
605
 
606
  #: ../admin/functions.php:60
 
607
  msgid "If you have problems, please create directory"
608
  msgstr ""
609
 
610
  #: ../admin/functions.php:61
 
611
  msgid "and the thumbnails directory"
612
  msgstr ""
613
 
614
  #: ../admin/functions.php:61
 
615
  msgid "with permission 777 manually !"
616
  msgstr ""
617
 
618
  #: ../admin/functions.php:78
 
619
  msgid "already exists"
620
  msgstr ""
621
 
622
  #: ../admin/functions.php:82
623
  #: ../admin/functions.php:128
 
 
624
  msgid "successfully created!"
625
  msgstr ""
626
 
627
  #: ../admin/functions.php:82
 
628
  msgid "You can show this gallery with the tag"
629
  msgstr ""
630
 
631
  #: ../admin/functions.php:102
 
632
  msgid "doesn&#96;t exist!"
633
  msgstr ""
634
 
635
  #: ../admin/functions.php:109
 
636
  msgid "contains no pictures"
637
  msgstr ""
638
 
639
  #: ../admin/functions.php:125
 
640
  msgid "Database error. Could not add gallery!"
641
  msgstr ""
642
 
643
  #: ../admin/functions.php:144
 
644
  msgid " picture(s) successfully added"
645
  msgstr ""
646
 
647
  #: ../admin/functions.php:175
648
  #: ../admin/functions.php:224
649
  #: ../admin/functions.php:287
 
 
 
650
  msgid "Running... Please wait"
651
  msgstr ""
652
 
653
  #: ../admin/functions.php:176
654
  #: ../admin/manage.php:510
 
 
655
  msgid "Resize images"
656
  msgstr ""
657
 
658
  #: ../admin/functions.php:200
 
659
  msgid " : Image resized..."
660
  msgstr ""
661
 
662
  #: ../admin/functions.php:209
663
  #: ../admin/functions.php:266
 
 
664
  msgid "Some pictures are not writeable :"
665
  msgstr ""
666
 
667
  #: ../admin/functions.php:225
668
  #: ../admin/manage.php:508
 
 
669
  msgid "Set watermark"
670
  msgstr ""
671
 
672
  #: ../admin/functions.php:257
 
673
  msgid " : Watermark created..."
674
  msgstr ""
675
 
676
  #: ../admin/functions.php:288
677
  #: ../admin/manage.php:509
 
 
678
  msgid "Create new thumbnails"
679
  msgstr ""
680
 
681
  #: ../admin/functions.php:355
 
682
  msgid " : Thumbnail created..."
683
  msgstr ""
684
 
685
  #: ../admin/functions.php:360
 
686
  msgid "Follow thumbnails could not created."
687
  msgstr ""
688
 
689
  #: ../admin/functions.php:361
 
690
  msgid "Some thumbnails are not writeable :"
691
  msgstr ""
692
 
693
  #: ../admin/functions.php:460
 
694
  msgid "The Zip-file is too large. Exceed Memory limit !"
695
  msgstr ""
696
 
697
  #: ../admin/functions.php:501
 
698
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
699
  msgstr ""
700
 
701
  #: ../admin/functions.php:520
 
702
  #, php-format
703
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
704
  msgstr ""
705
 
706
  #: ../admin/functions.php:535
 
707
  msgid "Zip-File successfully unpacked"
708
  msgstr ""
709
 
710
  #: ../admin/functions.php:571
711
  #: ../admin/functions.php:681
 
 
712
  msgid "Failure in database, no gallery path set !"
713
  msgstr ""
714
 
715
  #: ../admin/functions.php:592
716
  #: ../admin/functions.php:674
 
 
717
  msgid "is no valid image file!"
718
  msgstr ""
719
 
720
  #: ../admin/functions.php:606
 
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:613
726
  #: ../admin/functions.php:698
 
 
727
  msgid "Error, the file could not moved to : "
728
  msgstr ""
729
 
730
  #: ../admin/functions.php:618
731
  #: ../admin/functions.php:702
 
 
732
  msgid "Error, the file permissions could not set"
733
  msgstr ""
734
 
735
  #: ../admin/functions.php:637
 
736
  msgid " Image(s) successfully added"
737
  msgstr ""
738
 
739
  #: ../admin/functions.php:661
 
740
  msgid "Invalid upload. Error Code : "
741
  msgstr ""
742
 
743
  #: ../admin/functions.php:713
 
744
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
745
  msgstr ""
746
 
747
  #: ../admin/functions.php:740
 
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:741
 
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/manage.php:64
758
  #: ../admin/manage.php:85
 
 
759
  msgid "deleted successfully"
760
  msgstr ""
761
 
762
  #: ../admin/manage.php:111
 
763
  msgid "Watermark successfully added"
764
  msgstr ""
765
 
766
  #: ../admin/manage.php:116
 
767
  msgid "Thumbnails successfully created. Please refresh your browser cache."
768
  msgstr ""
769
 
770
  #: ../admin/manage.php:121
 
771
  msgid "Images successfully resized"
772
  msgstr ""
773
 
774
  #: ../admin/manage.php:139
 
775
  msgid "Pictures deleted successfully "
776
  msgstr ""
777
 
778
  #: ../admin/manage.php:145
 
779
  msgid "Import metadata finished"
780
  msgstr ""
781
 
782
  #: ../admin/manage.php:195
 
783
  msgid "Tags changed"
784
  msgstr ""
785
 
786
  #: ../admin/manage.php:215
 
787
  msgid "Update successful"
788
  msgstr ""
789
 
790
  #: ../admin/manage.php:248
 
791
  msgid "New gallery page ID"
792
  msgstr ""
793
 
794
  #: ../admin/manage.php:248
 
795
  msgid "created"
796
  msgstr ""
797
 
798
  #: ../admin/manage.php:279
 
799
  msgid "Gallery Overview"
800
  msgstr ""
801
 
802
  #: ../admin/manage.php:284
 
803
  msgid "Gallery name"
804
  msgstr ""
805
 
806
  #: ../admin/manage.php:286
807
  #: ../admin/manage.php:465
808
  #: ../admin/manage.php:541
 
 
 
 
 
 
 
 
809
  msgid "Description"
810
  msgstr ""
811
 
812
  #: ../admin/manage.php:287
 
813
  msgid "Page ID"
814
  msgstr ""
815
 
816
  #: ../admin/manage.php:288
 
817
  msgid "Quantity"
818
  msgstr ""
819
 
820
  #: ../admin/manage.php:289
821
  #: ../admin/manage.php:547
 
 
822
  msgid "Action"
823
  msgstr ""
824
 
825
  #: ../admin/manage.php:308
 
 
826
  msgid "Edit"
827
  msgstr ""
828
 
829
  #: ../admin/manage.php:309
 
830
  msgid "Delete this gallery ?"
831
  msgstr ""
832
 
833
  #: ../admin/manage.php:314
834
  #: ../admin/manage.php:585
 
 
835
  msgid "No entries found"
836
  msgstr ""
837
 
840
  msgstr ""
841
 
842
  #: ../admin/manage.php:448
 
843
  msgid "Page Link to"
844
  msgstr ""
845
 
846
  #: ../admin/manage.php:451
 
847
  msgid "Not linked"
848
  msgstr ""
849
 
850
  #: ../admin/manage.php:467
 
851
  msgid "Preview image"
852
  msgstr ""
853
 
854
  #: ../admin/manage.php:470
 
855
  msgid "No Picture"
856
  msgstr ""
857
 
858
  #: ../admin/manage.php:485
 
859
  msgid "Path"
860
  msgstr ""
861
 
862
  #: ../admin/manage.php:488
 
863
  msgid "Create new page"
864
  msgstr ""
865
 
866
  #: ../admin/manage.php:491
 
867
  msgid "Main page (No parent)"
868
  msgstr ""
869
 
870
  #: ../admin/manage.php:494
 
871
  msgid "Add page"
872
  msgstr ""
873
 
874
  #: ../admin/manage.php:500
 
875
  msgid "Scan Folder for new images"
876
  msgstr ""
877
 
878
  #: ../admin/manage.php:501
879
  #: ../admin/manage.php:592
 
 
 
880
  msgid "Save Changes"
881
  msgstr ""
882
 
883
  #: ../admin/manage.php:506
 
884
  msgid "No action"
885
  msgstr ""
886
 
887
  #: ../admin/manage.php:511
 
888
  msgid "Delete images"
889
  msgstr ""
890
 
891
  #: ../admin/manage.php:512
 
892
  msgid "Import metadata"
893
  msgstr ""
894
 
895
  #: ../admin/manage.php:514
 
896
  msgid "Add tags"
897
  msgstr ""
898
 
899
  #: ../admin/manage.php:515
 
900
  msgid "Delete tags"
901
  msgstr ""
902
 
903
  #: ../admin/manage.php:516
 
904
  msgid "Overwrite tags"
905
  msgstr ""
906
 
907
  #: ../admin/manage.php:520
908
  #: ../admin/manage.php:521
909
  #: ../admin/manage.php:610
 
 
 
910
  msgid "OK"
911
  msgstr ""
912
 
913
  #: ../admin/manage.php:520
914
  #: ../admin/manage.php:610
 
 
915
  msgid "No images selected"
916
  msgstr ""
917
 
918
  #: ../admin/manage.php:520
919
  #: ../admin/manage.php:610
 
 
920
  #, php-format
921
  msgid ""
922
  "You are about to start the bulk edit for %s images \n"
925
  msgstr ""
926
 
927
  #: ../admin/manage.php:522
 
928
  msgid "Hide thumbnails "
929
  msgstr ""
930
 
931
  #: ../admin/manage.php:523
 
932
  msgid "Show thumbnails "
933
  msgstr ""
934
 
935
  #: ../admin/manage.php:524
 
936
  msgid "Show tags"
937
  msgstr ""
938
 
939
  #: ../admin/manage.php:525
 
940
  msgid "Hide tags"
941
  msgstr ""
942
 
943
  #: ../admin/manage.php:527
 
944
  msgid "Sort gallery"
945
  msgstr ""
946
 
947
  #: ../admin/manage.php:536
948
  #: ../admin/settings.php:320
 
 
949
  msgid "File name"
950
  msgstr ""
951
 
952
  #: ../admin/manage.php:538
 
 
 
953
  msgid "Thumbnail"
954
  msgstr ""
955
 
956
  #: ../admin/manage.php:542
 
 
 
957
  msgid "Alt &amp; Title Text"
958
  msgstr ""
959
 
960
  #: ../admin/manage.php:543
 
961
  msgid "exclude"
962
  msgstr ""
963
 
964
  #: ../admin/manage.php:545
 
965
  msgid "Tags (comma separated list)"
966
  msgstr ""
967
 
968
  #: ../admin/manage.php:578
 
969
  msgid "View"
970
  msgstr ""
971
 
972
  #: ../admin/manage.php:579
 
973
  msgid "Show Meta data"
974
  msgstr ""
975
 
976
  #: ../admin/manage.php:579
 
977
  msgid "Meta"
978
  msgstr ""
979
 
980
  #: ../admin/manage.php:580
 
981
  msgid "Delete this file ?"
982
  msgstr ""
983
 
984
  #: ../admin/manage.php:607
 
985
  msgid "Enter the tags"
986
  msgstr ""
987
 
988
  #: ../admin/manage.php:610
 
 
 
989
  msgid "Cancel"
990
  msgstr ""
991
 
992
  #: ../admin/overview.php:18
 
993
  msgid "NextGEN Gallery Overview"
994
  msgstr ""
995
 
998
  msgstr ""
999
 
1000
  #: ../admin/overview.php:30
 
1001
  #, php-format
1002
  msgid "There are totally %1$s pictures in %2$s galleries, which are spread across %3$s albums."
1003
  msgstr ""
1004
 
1005
  #: ../admin/overview.php:34
 
1006
  msgid "New Version available"
1007
  msgstr ""
1008
 
1009
  #: ../admin/overview.php:35
 
1010
  msgid "The server reports that a new NextGEN Gallery Version is now available. Please visit the plugin homepage for more information."
1011
  msgstr ""
1012
 
1013
  #: ../admin/overview.php:36
 
1014
  msgid "Download here"
1015
  msgstr ""
1016
 
1017
  #: ../admin/overview.php:42
 
1018
  msgid "Server Settings"
1019
  msgstr ""
1020
 
1023
  msgstr ""
1024
 
1025
  #: ../admin/overview.php:54
 
1026
  msgid "gallery administrator"
1027
  msgstr ""
1028
 
1029
  #: ../admin/overview.php:54
 
1030
  msgid "gallery editor"
1031
  msgstr ""
1032
 
1052
  msgstr ""
1053
 
1054
  #: ../admin/overview.php:66
 
1055
  msgid "Latest News"
1056
  msgstr ""
1057
 
1058
  #: ../admin/overview.php:85
 
1059
  #, php-format
1060
  msgid "Newsfeed could not be loaded. Check the <a href=\"%s\">front page</a> to check for updates."
1061
  msgstr ""
1062
 
1063
  #: ../admin/overview.php:98
 
1064
  msgid "GD support"
1065
  msgstr ""
1066
 
1067
  #: ../admin/overview.php:109
 
1068
  msgid "No GD support"
1069
  msgstr ""
1070
 
1072
  #: ../admin/overview.php:154
1073
  #: ../admin/overview.php:157
1074
  #: ../admin/overview.php:160
 
 
 
 
1075
  msgid "Yes"
1076
  msgstr ""
1077
 
1079
  #: ../admin/overview.php:155
1080
  #: ../admin/overview.php:158
1081
  #: ../admin/overview.php:161
 
 
 
 
1082
  msgid "No"
1083
  msgstr ""
1084
 
1085
  #: ../admin/overview.php:131
 
1086
  msgid "Not set"
1087
  msgstr ""
1088
 
1089
  #: ../admin/overview.php:133
1090
  #: ../admin/overview.php:136
 
 
1091
  msgid "On"
1092
  msgstr ""
1093
 
1094
  #: ../admin/overview.php:134
1095
  #: ../admin/overview.php:137
 
 
1096
  msgid "Off"
1097
  msgstr ""
1098
 
1101
  #: ../admin/overview.php:146
1102
  #: ../admin/overview.php:149
1103
  #: ../admin/overview.php:152
 
 
 
 
 
1104
  msgid "N/A"
1105
  msgstr ""
1106
 
1107
  #: ../admin/overview.php:151
 
1108
  msgid " MByte"
1109
  msgstr ""
1110
 
1111
  #: ../admin/overview.php:164
 
1112
  msgid "Operating System"
1113
  msgstr ""
1114
 
1115
  #: ../admin/overview.php:165
 
1116
  msgid "Server"
1117
  msgstr ""
1118
 
1119
  #: ../admin/overview.php:166
 
1120
  msgid "Memory usage"
1121
  msgstr ""
1122
 
1123
  #: ../admin/overview.php:167
 
1124
  msgid "MYSQL Version"
1125
  msgstr ""
1126
 
1127
  #: ../admin/overview.php:168
 
1128
  msgid "SQL Mode"
1129
  msgstr ""
1130
 
1131
  #: ../admin/overview.php:169
 
1132
  msgid "PHP Version"
1133
  msgstr ""
1134
 
1135
  #: ../admin/overview.php:170
 
1136
  msgid "PHP Safe Mode"
1137
  msgstr ""
1138
 
1139
  #: ../admin/overview.php:171
 
1140
  msgid "PHP Allow URL fopen"
1141
  msgstr ""
1142
 
1143
  #: ../admin/overview.php:172
 
1144
  msgid "PHP Memory Limit"
1145
  msgstr ""
1146
 
1147
  #: ../admin/overview.php:173
 
1148
  msgid "PHP Max Upload Size"
1149
  msgstr ""
1150
 
1151
  #: ../admin/overview.php:174
 
1152
  msgid "PHP Max Post Size"
1153
  msgstr ""
1154
 
1155
  #: ../admin/overview.php:175
 
1156
  msgid "PHP Max Script Execute Time"
1157
  msgstr ""
1158
 
1159
  #: ../admin/overview.php:176
 
1160
  msgid "PHP Exif support"
1161
  msgstr ""
1162
 
1163
  #: ../admin/overview.php:177
 
1164
  msgid "PHP IPTC support"
1165
  msgstr ""
1166
 
1167
  #: ../admin/overview.php:178
 
1168
  msgid "PHP XML support"
1169
  msgstr ""
1170
 
1171
  #: ../admin/overview.php:319
 
1172
  msgid "Storage Space"
1173
  msgstr ""
1174
 
1175
  #: ../admin/overview.php:322
 
1176
  msgid "Upload Space Used:"
1177
  msgstr ""
1178
 
1179
  #: ../admin/overview.php:328
 
1180
  msgid "Upload Space Remaining:"
1181
  msgstr ""
1182
 
1183
  #: ../admin/roles.php:20
 
1184
  msgid "Updated capabilities"
1185
  msgstr ""
1186
 
1187
  #: ../admin/roles.php:25
 
1188
  msgid "Roles / capabilities"
1189
  msgstr ""
1190
 
1191
  #: ../admin/roles.php:26
 
1192
  msgid "Select the lowest role which should be able to access the follow capabilities. NextGEN Gallery supports the standard roles from WordPress."
1193
  msgstr ""
1194
 
1195
  #: ../admin/roles.php:27
 
1196
  msgid "For a more flexible user management you can use the"
1197
  msgstr ""
1198
 
1199
  #: ../admin/roles.php:33
 
1200
  msgid "Main NextGEN Gallery overview"
1201
  msgstr ""
1202
 
1203
  #: ../admin/roles.php:37
 
1204
  msgid "Use TinyMCE Button / Upload tab"
1205
  msgstr ""
1206
 
1207
  #: ../admin/roles.php:41
 
1208
  msgid "Add gallery / Upload images"
1209
  msgstr ""
1210
 
1211
  #: ../admin/roles.php:45
 
1212
  msgid "Manage gallery"
1213
  msgstr ""
1214
 
1215
  #: ../admin/roles.php:49
 
1216
  msgid "Edit Album"
1217
  msgstr ""
1218
 
1219
  #: ../admin/roles.php:53
 
1220
  msgid "Change style"
1221
  msgstr ""
1222
 
1223
  #: ../admin/roles.php:57
 
1224
  msgid "Change options"
1225
  msgstr ""
1226
 
1227
  #: ../admin/roles.php:61
 
1228
  msgid "Update capabilities"
1229
  msgstr ""
1230
 
1231
  #: ../admin/settings.php:33
 
 
 
 
1232
  msgid "Update successfully"
1233
  msgstr ""
1234
 
1235
  #: ../admin/settings.php:50
 
1236
  msgid "Cache cleared"
1237
  msgstr ""
1238
 
1239
  #: ../admin/settings.php:101
1240
  #: ../admin/settings.php:113
 
 
1241
  msgid "General Options"
1242
  msgstr ""
1243
 
1244
  #: ../admin/settings.php:103
 
1245
  msgid "Images"
1246
  msgstr ""
1247
 
1248
  #: ../admin/settings.php:105
1249
  #: ../admin/settings.php:339
 
 
1250
  msgid "Effects"
1251
  msgstr ""
1252
 
1253
  #: ../admin/settings.php:106
1254
  #: ../admin/settings.php:392
 
 
 
 
1255
  msgid "Watermark"
1256
  msgstr ""
1257
 
1258
  #: ../admin/settings.php:107
1259
  #: ../admin/settings.php:296
1260
  #: ../admin/settings.php:500
 
 
 
 
 
1261
  msgid "Slideshow"
1262
  msgstr ""
1263
 
1264
  #: ../admin/settings.php:120
 
 
 
1265
  msgid "Gallery path"
1266
  msgstr ""
1267
 
1268
  #: ../admin/settings.php:122
 
1269
  msgid "This is the default path for all galleries"
1270
  msgstr ""
1271
 
1272
  #: ../admin/settings.php:133
 
1273
  msgid "Delete image files"
1274
  msgstr ""
1275
 
1276
  #: ../admin/settings.php:135
 
1277
  msgid "Delete files, when removing a gallery in the database"
1278
  msgstr ""
1279
 
1280
  #: ../admin/settings.php:138
 
1281
  msgid "Activate permalinks"
1282
  msgstr ""
1283
 
1284
  #: ../admin/settings.php:140
 
1285
  msgid "When you activate this option, you need to update your permalink structure one time."
1286
  msgstr ""
1287
 
1288
  #: ../admin/settings.php:143
 
1289
  msgid "Tags / Categories"
1290
  msgstr ""
1291
 
1292
  #: ../admin/settings.php:146
 
1293
  msgid "Activate related images"
1294
  msgstr ""
1295
 
1296
  #: ../admin/settings.php:148
 
1297
  msgid "This option will append related images to every post"
1298
  msgstr ""
1299
 
1300
  #: ../admin/settings.php:152
 
1301
  msgid "Match with"
1302
  msgstr ""
1303
 
1304
  #: ../admin/settings.php:153
 
1305
  msgid "Categories"
1306
  msgstr ""
1307
 
1308
  #: ../admin/settings.php:154
 
 
1309
  msgid "Tags"
1310
  msgstr ""
1311
 
1312
  #: ../admin/settings.php:154
 
1313
  msgid " (require WordPress 2.3 or higher)"
1314
  msgstr ""
1315
 
1316
  #: ../admin/settings.php:158
 
1317
  msgid "Max. number of images"
1318
  msgstr ""
1319
 
1320
  #: ../admin/settings.php:160
 
1321
  msgid "0 will show all images"
1322
  msgstr ""
1323
 
1324
  #: ../admin/settings.php:172
 
1325
  msgid "Thumbnail settings"
1326
  msgstr ""
1327
 
1328
  #: ../admin/settings.php:177
 
1329
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1330
  msgstr ""
1331
 
1332
  #: ../admin/settings.php:180
 
1333
  msgid "Width x height (in pixel)"
1334
  msgstr ""
1335
 
1336
  #: ../admin/settings.php:182
 
1337
  msgid "These values are maximum values "
1338
  msgstr ""
1339
 
1340
  #: ../admin/settings.php:185
 
1341
  msgid "Set fix dimension"
1342
  msgstr ""
1343
 
1344
  #: ../admin/settings.php:187
 
1345
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1346
  msgstr ""
1347
 
1348
  #: ../admin/settings.php:190
 
1349
  msgid "Crop square thumbnail from image"
1350
  msgstr ""
1351
 
1352
  #: ../admin/settings.php:192
 
1353
  msgid "Create square thumbnails, use only the width setting :"
1354
  msgstr ""
1355
 
1356
  #: ../admin/settings.php:195
 
1357
  msgid "Thumbnail quality"
1358
  msgstr ""
1359
 
1360
  #: ../admin/settings.php:199
1361
  #: ../admin/settings.php:231
 
 
1362
  msgid "Resample Mode"
1363
  msgstr ""
1364
 
1365
  #: ../admin/settings.php:201
1366
  #: ../admin/settings.php:234
 
 
1367
  msgid "Value between 1-5 (higher value, more CPU load)"
1368
  msgstr ""
1369
 
1370
  #: ../admin/settings.php:212
 
1371
  msgid "Image settings"
1372
  msgstr ""
1373
 
1374
  #: ../admin/settings.php:219
 
1375
  msgid "Resize Images"
1376
  msgstr ""
1377
 
1378
  #: ../admin/settings.php:223
 
1379
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1380
  msgstr ""
1381
 
1382
  #: ../admin/settings.php:226
 
1383
  msgid "Image quality"
1384
  msgstr ""
1385
 
1386
  #: ../admin/settings.php:237
 
1387
  msgid "Single picture"
1388
  msgstr ""
1389
 
1390
  #: ../admin/settings.php:240
 
1391
  msgid "Cache single pictures"
1392
  msgstr ""
1393
 
1394
  #: ../admin/settings.php:243
 
1395
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1396
  msgstr ""
1397
 
1398
  #: ../admin/settings.php:246
 
1399
  msgid "Clear cache folder"
1400
  msgstr ""
1401
 
1402
  #: ../admin/settings.php:248
 
1403
  msgid "Proceed now"
1404
  msgstr ""
1405
 
1406
  #: ../admin/settings.php:259
 
1407
  msgid "Gallery settings"
1408
  msgstr ""
1409
 
1410
  #: ../admin/settings.php:275
 
1411
  msgid "Deactivate gallery page link"
1412
  msgstr ""
1413
 
1414
  #: ../admin/settings.php:277
 
1415
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1416
  msgstr ""
1417
 
1418
  #: ../admin/settings.php:281
 
1419
  msgid "Number of images per page"
1420
  msgstr ""
1421
 
1422
  #: ../admin/settings.php:283
 
1423
  msgid "0 will disable pagination, all images on one page"
1424
  msgstr ""
1425
 
1426
  #: ../admin/settings.php:287
 
1427
  msgid "Integrate slideshow"
1428
  msgstr ""
1429
 
1430
  #: ../admin/settings.php:294
 
1431
  msgid "Show first"
1432
  msgstr ""
1433
 
1434
  #: ../admin/settings.php:300
 
1435
  msgid "Show thumbnail description"
1436
  msgstr ""
1437
 
1438
  #: ../admin/settings.php:301
1439
  #: ../admin/settings.php:351
 
 
 
 
1440
  msgid "None"
1441
  msgstr ""
1442
 
1443
  #: ../admin/settings.php:302
 
1444
  msgid "Description text"
1445
  msgstr ""
1446
 
1447
  #: ../admin/settings.php:303
1448
  #: ../admin/settings.php:321
 
 
1449
  msgid "Alt / Title text"
1450
  msgstr ""
1451
 
1452
  #: ../admin/settings.php:307
 
1453
  msgid "Show ImageBrowser"
1454
  msgstr ""
1455
 
1456
  #: ../admin/settings.php:309
 
1457
  msgid "The gallery will open the ImageBrowser instead the effect."
1458
  msgstr ""
1459
 
1460
  #: ../admin/settings.php:313
 
1461
  msgid "Sort options"
1462
  msgstr ""
1463
 
1464
  #: ../admin/settings.php:316
 
1465
  msgid "Sort thumbnails"
1466
  msgstr ""
1467
 
1468
  #: ../admin/settings.php:318
 
1469
  msgid "Custom order"
1470
  msgstr ""
1471
 
1472
  #: ../admin/settings.php:319
 
1473
  msgid "Image ID"
1474
  msgstr ""
1475
 
1476
  #: ../admin/settings.php:325
 
1477
  msgid "Sort direction"
1478
  msgstr ""
1479
 
1480
  #: ../admin/settings.php:326
 
1481
  msgid "Ascending"
1482
  msgstr ""
1483
 
1484
  #: ../admin/settings.php:327
 
1485
  msgid "Descending"
1486
  msgstr ""
1487
 
1488
  #: ../admin/settings.php:343
 
1489
  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."
1490
  msgstr ""
1491
 
1492
  #: ../admin/settings.php:344
 
1493
  msgid "With the placeholder"
1494
  msgstr ""
1495
 
1496
  #: ../admin/settings.php:344
 
1497
  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."
1498
  msgstr ""
1499
 
1500
  #: ../admin/settings.php:348
 
1501
  msgid "JavaScript Thumbnail effect"
1502
  msgstr ""
1503
 
1504
  #: ../admin/settings.php:352
 
1505
  msgid "Thickbox"
1506
  msgstr ""
1507
 
1508
  #: ../admin/settings.php:353
 
1509
  msgid "Lightbox"
1510
  msgstr ""
1511
 
1512
  #: ../admin/settings.php:354
 
1513
  msgid "Highslide"
1514
  msgstr ""
1515
 
1516
  #: ../admin/settings.php:355
 
1517
  msgid "Shutter"
1518
  msgstr ""
1519
 
1520
  #: ../admin/settings.php:356
 
1521
  msgid "Custom"
1522
  msgstr ""
1523
 
1524
  #: ../admin/settings.php:361
 
1525
  msgid "Link Code line"
1526
  msgstr ""
1527
 
1528
  #: ../admin/settings.php:369
 
1529
  msgid "Select loading image"
1530
  msgstr ""
1531
 
1532
  #: ../admin/settings.php:393
 
1533
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1534
  msgstr ""
1535
 
1536
  #: ../admin/settings.php:398
 
1537
  msgid "Preview"
1538
  msgstr ""
1539
 
1540
  #: ../admin/settings.php:400
1541
  #: ../admin/settings.php:404
 
 
1542
  msgid "Position"
1543
  msgstr ""
1544
 
1545
  #: ../admin/settings.php:424
 
1546
  msgid "Offset"
1547
  msgstr ""
1548
 
1549
  #: ../admin/settings.php:442
 
1550
  msgid "Use image as watermark"
1551
  msgstr ""
1552
 
1553
  #: ../admin/settings.php:445
 
1554
  msgid "URL to file"
1555
  msgstr ""
1556
 
1557
  #: ../admin/settings.php:447
 
1558
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
1559
  msgstr ""
1560
 
1561
  #: ../admin/settings.php:453
 
1562
  msgid "Use text as watermark"
1563
  msgstr ""
1564
 
1565
  #: ../admin/settings.php:456
 
1566
  msgid "Font"
1567
  msgstr ""
1568
 
1569
  #: ../admin/settings.php:465
 
1570
  msgid "This function will not work, cause you need the FreeType library"
1571
  msgstr ""
1572
 
1573
  #: ../admin/settings.php:467
 
1574
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
1575
  msgstr ""
1576
 
1577
  #: ../admin/settings.php:471
 
 
1578
  msgid "Size"
1579
  msgstr ""
1580
 
1581
  #: ../admin/settings.php:475
 
1582
  msgid "Color"
1583
  msgstr ""
1584
 
1585
  #: ../admin/settings.php:477
 
1586
  msgid "(hex w/o #)"
1587
  msgstr ""
1588
 
1589
  #: ../admin/settings.php:480
 
1590
  msgid "Text"
1591
  msgstr ""
1592
 
1593
  #: ../admin/settings.php:484
 
1594
  msgid "Opaque"
1595
  msgstr ""
1596
 
1597
  #: ../admin/settings.php:502
 
1598
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
1599
  msgstr ""
1600
 
1601
  #: ../admin/settings.php:503
 
1602
  msgid "The settings are used in the JW Image Rotator Version"
1603
  msgstr ""
1604
 
1605
  #: ../admin/settings.php:504
 
1606
  msgid "See more information for the Flash Player on the web page"
1607
  msgstr ""
1608
 
1609
  #: ../admin/settings.php:507
 
1610
  msgid "Default size (W x H)"
1611
  msgstr ""
1612
 
1613
  #: ../admin/settings.php:512
 
1614
  msgid "Shuffle mode"
1615
  msgstr ""
1616
 
1617
  #: ../admin/settings.php:516
 
1618
  msgid "Show next image on click"
1619
  msgstr ""
1620
 
1621
  #: ../admin/settings.php:520
 
1622
  msgid "Show navigation bar"
1623
  msgstr ""
1624
 
1625
  #: ../admin/settings.php:524
 
1626
  msgid "Show loading icon"
1627
  msgstr ""
1628
 
1629
  #: ../admin/settings.php:528
 
1630
  msgid "Use watermark logo"
1631
  msgstr ""
1632
 
1633
  #: ../admin/settings.php:530
 
1634
  msgid "You can change the logo at the watermark settings"
1635
  msgstr ""
1636
 
1637
  #: ../admin/settings.php:533
 
1638
  msgid "Stretch image"
1639
  msgstr ""
1640
 
1641
  #: ../admin/settings.php:536
 
1642
  msgid "true"
1643
  msgstr ""
1644
 
1645
  #: ../admin/settings.php:537
 
1646
  msgid "false"
1647
  msgstr ""
1648
 
1649
  #: ../admin/settings.php:538
 
1650
  msgid "fit"
1651
  msgstr ""
1652
 
1653
  #: ../admin/settings.php:539
 
1654
  msgid "none"
1655
  msgstr ""
1656
 
1657
  #: ../admin/settings.php:544
 
1658
  msgid "Duration time"
1659
  msgstr ""
1660
 
1661
  #: ../admin/settings.php:545
 
1662
  msgid "sec."
1663
  msgstr ""
1664
 
1665
  #: ../admin/settings.php:548
 
1666
  msgid "Transition / Fade effect"
1667
  msgstr ""
1668
 
1669
  #: ../admin/settings.php:551
 
1670
  msgid "fade"
1671
  msgstr ""
1672
 
1673
  #: ../admin/settings.php:552
 
1674
  msgid "bgfade"
1675
  msgstr ""
1676
 
1677
  #: ../admin/settings.php:553
 
1678
  msgid "slowfade"
1679
  msgstr ""
1680
 
1681
  #: ../admin/settings.php:554
 
1682
  msgid "circles"
1683
  msgstr ""
1684
 
1685
  #: ../admin/settings.php:555
 
1686
  msgid "bubbles"
1687
  msgstr ""
1688
 
1689
  #: ../admin/settings.php:556
 
1690
  msgid "blocks"
1691
  msgstr ""
1692
 
1693
  #: ../admin/settings.php:557
 
1694
  msgid "fluids"
1695
  msgstr ""
1696
 
1697
  #: ../admin/settings.php:558
 
1698
  msgid "flash"
1699
  msgstr ""
1700
 
1701
  #: ../admin/settings.php:559
 
1702
  msgid "lines"
1703
  msgstr ""
1704
 
1705
  #: ../admin/settings.php:564
 
1706
  msgid "Use slow zooming effect"
1707
  msgstr ""
1708
 
1709
  #: ../admin/settings.php:568
 
1710
  msgid "Background Color"
1711
  msgstr ""
1712
 
1713
  #: ../admin/settings.php:573
 
1714
  msgid "Texts / Buttons Color"
1715
  msgstr ""
1716
 
1717
  #: ../admin/settings.php:578
 
1718
  msgid "Rollover / Active Color"
1719
  msgstr ""
1720
 
1721
  #: ../admin/settings.php:583
 
1722
  msgid "Screen Color"
1723
  msgstr ""
1724
 
1725
  #: ../admin/settings.php:588
 
1726
  msgid "Background music (URL)"
1727
  msgstr ""
1728
 
1729
  #: ../admin/settings.php:592
 
1730
  msgid "Try XHTML validation (with CDATA)"
1731
  msgstr ""
1732
 
1733
  #: ../admin/settings.php:594
 
1734
  msgid "Important : Could causes problem at some browser. Please recheck your page."
1735
  msgstr ""
1736
 
1737
  #: ../admin/setup.php:12
 
1738
  msgid "Reset all settings to default parameter"
1739
  msgstr ""
1740
 
1741
  #: ../admin/setup.php:37
 
1742
  msgid "Uninstall sucessfull ! Now delete the plugin and enjoy your life ! Good luck !"
1743
  msgstr ""
1744
 
1745
  #: ../admin/setup.php:46
 
1746
  msgid "Reset options"
1747
  msgstr ""
1748
 
1749
  #: ../admin/setup.php:49
 
1750
  msgid "Reset all options/settings to the default installation."
1751
  msgstr ""
1752
 
1753
  #: ../admin/setup.php:50
 
1754
  msgid "Reset settings"
1755
  msgstr ""
1756
 
1757
  #: ../admin/setup.php:50
 
1758
  msgid ""
1759
  "Reset all options to default settings ?\\n"
1760
  "\\n"
1762
  msgstr ""
1763
 
1764
  #: ../admin/setup.php:55
 
1765
  msgid "Uninstall plugin tables"
1766
  msgstr ""
1767
 
1768
  #: ../admin/setup.php:58
 
1769
  msgid "You don't like NextGEN Gallery ?"
1770
  msgstr ""
1771
 
1772
  #: ../admin/setup.php:59
 
1773
  msgid "No problem, before you deactivate this plugin press the Uninstall Button, because deactivating NextGEN Gallery does not remove any data that may have been created. "
1774
  msgstr ""
1775
 
1776
  #: ../admin/setup.php:60
 
1777
  msgid "WARNING:"
1778
  msgstr ""
1779
 
1780
  #: ../admin/setup.php:61
 
1781
  msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to backup all the tables first. NextGEN gallery is stored in the tables"
1782
  msgstr ""
1783
 
1784
  #: ../admin/setup.php:61
 
1785
  msgid "and"
1786
  msgstr ""
1787
 
1788
  #: ../admin/setup.php:63
 
1789
  msgid "Uninstall plugin"
1790
  msgstr ""
1791
 
1792
  #: ../admin/setup.php:63
 
1793
  msgid ""
1794
  "You are about to Uninstall this plugin from WordPress.\\n"
1795
  "This action is not reversible.\\n"
1799
 
1800
  #: ../admin/showmeta.php:7
1801
  #: ../admin/showmeta.php:10
 
 
1802
  msgid "Cheatin&#8217; uh?"
1803
  msgstr ""
1804
 
1805
  #: ../admin/showmeta.php:42
 
1806
  msgid "EXIF Data"
1807
  msgstr ""
1808
 
1809
  #: ../admin/showmeta.php:47
1810
  #: ../admin/showmeta.php:71
1811
  #: ../admin/showmeta.php:95
 
 
 
1812
  msgid "Tag"
1813
  msgstr ""
1814
 
1815
  #: ../admin/showmeta.php:48
1816
  #: ../admin/showmeta.php:72
1817
  #: ../admin/showmeta.php:96
 
 
 
1818
  msgid "Value"
1819
  msgstr ""
1820
 
1821
  #: ../admin/showmeta.php:61
 
1822
  msgid "No exif data"
1823
  msgstr ""
1824
 
1825
  #: ../admin/showmeta.php:67
 
1826
  msgid "IPTC Data"
1827
  msgstr ""
1828
 
1829
  #: ../admin/showmeta.php:91
 
1830
  msgid "XMP Data"
1831
  msgstr ""
1832
 
1833
  #: ../admin/sort.php:35
 
1834
  msgid "Sort order changed"
1835
  msgstr ""
1836
 
1837
  #: ../admin/sort.php:53
 
1838
  msgid "Sort Gallery"
1839
  msgstr ""
1840
 
1841
  #: ../admin/sort.php:58
 
1842
  msgid "Back to gallery"
1843
  msgstr ""
1844
 
1845
  #: ../admin/sort.php:59
 
1846
  msgid "Update Sort Order"
1847
  msgstr ""
1848
 
1849
  #: ../admin/style.php:34
 
1850
  msgid "You do not have sufficient permissions to edit templates for this blog."
1851
  msgstr ""
1852
 
1853
  #: ../admin/style.php:43
 
1854
  msgid "CSS file successfully updated"
1855
  msgstr ""
1856
 
1857
  #: ../admin/style.php:66
 
1858
  msgid "Activate and use style sheet:"
1859
  msgstr ""
1860
 
1861
  #: ../admin/style.php:85
 
1862
  msgid "Activate"
1863
  msgstr ""
1864
 
1865
  #: ../admin/style.php:93
 
1866
  #, php-format
1867
  msgid "Editing <strong>%s</strong>"
1868
  msgstr ""
1869
 
1870
  #: ../admin/style.php:95
 
1871
  #, php-format
1872
  msgid "Browsing <strong>%s</strong>"
1873
  msgstr ""
1874
 
1875
  #: ../admin/style.php:100
 
 
1876
  msgid "Author"
1877
  msgstr ""
1878
 
1879
  #: ../admin/style.php:101
 
1880
  msgid "Version"
1881
  msgstr ""
1882
 
1883
  #: ../admin/style.php:118
 
1884
  msgid "Update File &raquo;"
1885
  msgstr ""
1886
 
1887
  #: ../admin/style.php:122
 
1888
  msgid "If this file were writable you could edit it."
1889
  msgstr ""
1890
 
1891
  #: ../admin/style.php:127
 
1892
  msgid "Oops, no such file exists! Double check the name and try again, merci."
1893
  msgstr ""
1894
 
1898
 
1899
  #: ../admin/uploadtab.php:107
1900
  #: ../admin/wp25/media-upload.php:127
 
 
1901
  msgid "No gallery"
1902
  msgstr ""
1903
 
1916
  msgstr ""
1917
 
1918
  #: ../admin/wpmu.php:41
 
1919
  msgid "General WordPress MU Settings"
1920
  msgstr ""
1921
 
1922
  #: ../admin/wpmu.php:50
 
1923
  msgid "This is the default path for all blogs. With the placeholder %BLOG_ID% you can organize the folder structure better. The path must end with a /."
1924
  msgstr ""
1925
 
1926
  #: ../admin/wpmu.php:53
 
1927
  msgid "Enable upload quota check"
1928
  msgstr ""
1929
 
1930
  #: ../admin/wpmu.php:55
 
1931
  msgid "Should work if the gallery is bellow the blog.dir"
1932
  msgstr ""
1933
 
1934
  #: ../admin/wpmu.php:59
 
1935
  msgid "Enable zip upload option"
1936
  msgstr ""
1937
 
1938
  #: ../admin/wpmu.php:61
 
1939
  msgid "Allow users to upload zip folders."
1940
  msgstr ""
1941
 
1942
  #: ../admin/wpmu.php:65
 
1943
  msgid "Enable style selection"
1944
  msgstr ""
1945
 
1946
  #: ../admin/wpmu.php:67
 
1947
  msgid "Allow users to choose a style for the gallery."
1948
  msgstr ""
1949
 
1950
  #: ../admin/wpmu.php:71
 
1951
  msgid "Enable roles/capabilities"
1952
  msgstr ""
1953
 
1954
  #: ../admin/wpmu.php:73
 
1955
  msgid "Allow users to change the roles for other blog authors."
1956
  msgstr ""
1957
 
1958
  #: ../admin/wpmu.php:77
 
1959
  msgid "Default style"
1960
  msgstr ""
1961
 
1962
  #: ../admin/wpmu.php:94
 
1963
  msgid "Choose the default style for the galleries."
1964
  msgstr ""
1965
 
2004
  msgstr ""
2005
 
2006
  #: ../admin/js/uploadtab.js.php:156
 
 
2007
  msgid "Insert"
2008
  msgstr ""
2009
 
2034
  msgid " Please note : For safe-mode = ON you need to add the subfolder thumbs manually"
2035
  msgstr ""
2036
 
 
 
 
 
2037
  #: ../admin/wp25/media-upload.php:139
2038
  msgid "Select Gallery &#187;"
2039
  msgstr ""
2059
  msgstr ""
2060
 
2061
  #: ../admin/wp25/media-upload.php:195
 
 
2062
  msgid "Left"
2063
  msgstr ""
2064
 
2065
  #: ../admin/wp25/media-upload.php:197
 
 
2066
  msgid "Center"
2067
  msgstr ""
2068
 
2069
  #: ../admin/wp25/media-upload.php:199
 
 
2070
  msgid "Right"
2071
  msgstr ""
2072
 
lib/nggmeta.lib.php CHANGED
@@ -85,7 +85,7 @@ class nggMeta{
85
  $meta['iso'] = $exif['ISOSpeedRatings'];
86
  if (!empty($exif['ExposureTime'])) {
87
  $meta['shutter_speed'] = $this->exif_frac2dec ($exif['ExposureTime']);
88
- ($meta['shutter_speed'] > 0.0 and $meta['shutter_speed'] < 1.0) ? ("1/" . round(1/$meta['shutter_speed'])) : ($meta['shutter_speed']);
89
  $meta['shutter_speed'] .= __(' sec','nggallery');
90
  }
91
 
85
  $meta['iso'] = $exif['ISOSpeedRatings'];
86
  if (!empty($exif['ExposureTime'])) {
87
  $meta['shutter_speed'] = $this->exif_frac2dec ($exif['ExposureTime']);
88
+ $meta['shutter_speed'] =($meta['shutter_speed'] > 0.0 and $meta['shutter_speed'] < 1.0) ? ("1/" . round(1/$meta['shutter_speed'])) : ($meta['shutter_speed']);
89
  $meta['shutter_speed'] .= __(' sec','nggallery');
90
  }
91
 
nggallery.php CHANGED
@@ -4,11 +4,11 @@ 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: 0.95
8
 
9
  Author URI: http://alexrabe.boelinger.com/
10
 
11
- Copyright 2007 by Alex Rabe & NextGEN DEV-Team
12
 
13
  The NextGEN button is taken from the Silk set of FamFamFam. See more at
14
  http://www.famfamfam.com/lab/icons/silk/
@@ -27,6 +27,14 @@ You should have received a copy of the GNU General Public License
27
  along with this program; if not, write to the Free Software
28
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29
 
 
 
 
 
 
 
 
 
30
  */
31
 
32
  //#################################################################
@@ -62,7 +70,7 @@ if ( ($memory_limit != 0) && ($memory_limit < 12 ) ) {
62
  }
63
 
64
  // Version and path to check version
65
- define('NGGVERSION', "0.95");
66
  // Minimum required database version
67
  define('NGG_DBVERSION', "0.84");
68
  define('NGGURL', "http://nextgen.boelinger.com/version.php");
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: 0.96
8
 
9
  Author URI: http://alexrabe.boelinger.com/
10
 
11
+ Copyright 2007-2008 by Alex Rabe & NextGEN DEV-Team
12
 
13
  The NextGEN button is taken from the Silk set of FamFamFam. See more at
14
  http://www.famfamfam.com/lab/icons/silk/
27
  along with this program; if not, write to the Free Software
28
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29
 
30
+ Please note :
31
+
32
+ The JW Image Rotator (Slideshow) is not part of this license and is available
33
+ under a Creative Commons License, which allowing you to use, modify and redistribute
34
+ them for noncommercial purposes.
35
+
36
+ For commercial use please look at the Jeroen's homepage : http://www.jeroenwijering.com/
37
+
38
  */
39
 
40
  //#################################################################
70
  }
71
 
72
  // Version and path to check version
73
+ define('NGGVERSION', "0.96");
74
  // Minimum required database version
75
  define('NGG_DBVERSION', "0.84");
76
  define('NGGURL', "http://nextgen.boelinger.com/version.php");
nggfunctions.php CHANGED
@@ -11,7 +11,7 @@ function searchnggallerytags($content) {
11
 
12
  if ( stristr( $content, '[singlepic' )) {
13
 
14
- $search = "@\[singlepic=(\d+)(|,\d+|,)(|,\d+|,)(|,watermark|,web20|,)(|,right|,center|,left|,)\]@i";
15
 
16
  if (preg_match_all($search, $content, $matches)) {
17
 
@@ -38,7 +38,7 @@ function searchnggallerytags($content) {
38
  foreach ($matches[1] as $key =>$v0) {
39
  // check for album id
40
  list($albumID, $albumSortOrder) = $wpdb->get_row("SELECT id, sortorder FROM $wpdb->nggalbum WHERE id = '$v0' ", ARRAY_N);
41
- if(!$albumID) list($albumID, $albumSortOrder) = $wpdb->get_var("SELECT id, sortorder FROM $wpdb->nggalbum WHERE name = '$v0' ", ARRAY_N);
42
 
43
  if($albumID) {
44
  $search = $matches[0][$key];
@@ -351,7 +351,10 @@ function nggCreateGallery($picturelist,$galleryID = false) {
351
  $out .= '<span>'.html_entity_decode(stripslashes($picture->alttext)).'</span>'."\n";
352
  if ($ngg_options['galShowDesc'] == "desc")
353
  $out .= '<span>'.html_entity_decode(stripslashes($picture->description)).'</span>'."\n";
354
- $out .= '</div>'."\n".'</div>'."\n";
 
 
 
355
  }
356
  $out .= '</div>'."\n";
357
  $out .= ($maxElement > 0) ? $navigation : '<div class="ngg-clear"></div>'."\n";
@@ -608,9 +611,12 @@ function nggSinglePicture($imageID,$width=250,$height=250,$mode="",$float="") {
608
  $out .= '<img class="ngg-singlepic" src="'.NGGALLERY_URLPATH.'nggshow.php?pid='.$imageID.'&amp;width='.$width.'&amp;height='.$height.'&amp;mode='.$mode.'" alt="'.stripslashes($picture->alttext).'" title="'.stripslashes($picture->alttext).'" />';
609
  else
610
  $out .= '<img class="ngg-singlepic" src="'.$cache_url.'" alt="'.stripslashes($picture->alttext).'" title="'.stripslashes($picture->alttext).'" />';
611
- $out .= '</a></div>';
 
 
 
612
 
613
- $out = apply_filters('ngg_show_singlepic_content', $out, intval( $imageID ) );
614
 
615
  return $out;
616
  }
11
 
12
  if ( stristr( $content, '[singlepic' )) {
13
 
14
+ $search = "@(?:<p>)*\s*\[singlepic=(\d+)(|,\d+|,)(|,\d+|,)(|,watermark|,web20|,)(|,right|,center|,left|,)\]\s*(?:</p>)*@i";
15
 
16
  if (preg_match_all($search, $content, $matches)) {
17
 
38
  foreach ($matches[1] as $key =>$v0) {
39
  // check for album id
40
  list($albumID, $albumSortOrder) = $wpdb->get_row("SELECT id, sortorder FROM $wpdb->nggalbum WHERE id = '$v0' ", ARRAY_N);
41
+ if(!$albumID) list($albumID, $albumSortOrder) = $wpdb->get_row("SELECT id, sortorder FROM $wpdb->nggalbum WHERE name = '$v0' ", ARRAY_N);
42
 
43
  if($albumID) {
44
  $search = $matches[0][$key];
351
  $out .= '<span>'.html_entity_decode(stripslashes($picture->alttext)).'</span>'."\n";
352
  if ($ngg_options['galShowDesc'] == "desc")
353
  $out .= '<span>'.html_entity_decode(stripslashes($picture->description)).'</span>'."\n";
354
+ // add filter for the output
355
+ $out = apply_filters('ngg_inner_gallery_thumbnail', $out, $picture);
356
+ $out .= '</div>'. "\n" .'</div>'."\n";
357
+ $out = apply_filters('ngg_after_gallery_thumbnail', $out, $picture);
358
  }
359
  $out .= '</div>'."\n";
360
  $out .= ($maxElement > 0) ? $navigation : '<div class="ngg-clear"></div>'."\n";
611
  $out .= '<img class="ngg-singlepic" src="'.NGGALLERY_URLPATH.'nggshow.php?pid='.$imageID.'&amp;width='.$width.'&amp;height='.$height.'&amp;mode='.$mode.'" alt="'.stripslashes($picture->alttext).'" title="'.stripslashes($picture->alttext).'" />';
612
  else
613
  $out .= '<img class="ngg-singlepic" src="'.$cache_url.'" alt="'.stripslashes($picture->alttext).'" title="'.stripslashes($picture->alttext).'" />';
614
+
615
+ $out .= '</a>';
616
+ $out = apply_filters('ngg_inner_singlepic_content', $out, $picture );
617
+ $out .= '</div>';
618
 
619
+ $out = apply_filters('ngg_show_singlepic_content', $out, $picture );
620
 
621
  return $out;
622
  }
readme.txt CHANGED
@@ -27,13 +27,12 @@ Features:
27
  * Tag support for images : Append related images to your post
28
  * Meta data support : Import EXIF, IPTC or XMP meta data
29
  * Sort images feature
 
30
 
31
  For support around this plugin please visit http://alexrabe.boelinger.com/forums/
32
 
33
  **For your language file please visit :** http://alexrabe.boelinger.com/wordpress-plugins/nextgen-gallery/languages/
34
 
35
- ** PLEASE NOTE ! This gallery plugin is still in development, it can be contain many bugs ! **
36
-
37
  == Credits ==
38
 
39
  Copyright 2007-2008 Alex Rabe & NextGEN DEV-Team
@@ -55,6 +54,15 @@ You should have received a copy of the GNU General Public License
55
  along with this program; if not, write to the Free Software
56
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
57
 
 
 
 
 
 
 
 
 
 
58
  == Installation ==
59
 
60
  1. Upload the files to wp-content/plugins/nggallery
@@ -113,7 +121,6 @@ To show tag albums : **[albumtags=name,name,name]**
113
 
114
  Example : http://nextgen.boelinger.com/2007/08/11/albumtags/
115
 
116
-
117
  **Read as startup :** http://hqcode.com/?page_id=54
118
 
119
  **A further FAQ you can found here :** http://alexrabe.boelinger.com/wordpress-plugins/nextgen-gallery/faq/
27
  * Tag support for images : Append related images to your post
28
  * Meta data support : Import EXIF, IPTC or XMP meta data
29
  * Sort images feature
30
+ * Cool flash addons here : http://wordpress.org/extend/plugins/nextgen-flashviewer/
31
 
32
  For support around this plugin please visit http://alexrabe.boelinger.com/forums/
33
 
34
  **For your language file please visit :** http://alexrabe.boelinger.com/wordpress-plugins/nextgen-gallery/languages/
35
 
 
 
36
  == Credits ==
37
 
38
  Copyright 2007-2008 Alex Rabe & NextGEN DEV-Team
54
  along with this program; if not, write to the Free Software
55
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
56
 
57
+ ** Please note **
58
+
59
+ The JW Image Rotator (Slideshow) is not part of this license and is available
60
+ under a Creative Commons License, which allowing you to use, modify and redistribute
61
+ them for noncommercial purposes.
62
+
63
+ For commercial use please look at the Jeroen's homepage : http://www.jeroenwijering.com/
64
+
65
+
66
  == Installation ==
67
 
68
  1. Upload the files to wp-content/plugins/nggallery
121
 
122
  Example : http://nextgen.boelinger.com/2007/08/11/albumtags/
123
 
 
124
  **Read as startup :** http://hqcode.com/?page_id=54
125
 
126
  **A further FAQ you can found here :** http://alexrabe.boelinger.com/wordpress-plugins/nextgen-gallery/faq/