NextGEN Gallery – WordPress Gallery Plugin - Version 1.2.1

Version Description

Download this release

Release Info

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

Code changes from version 1.2.0 to 1.2.1

admin/addgallery.php CHANGED
@@ -77,7 +77,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
77
  }
78
 
79
  //get all galleries (after we added new ones)
80
- $gallerylist = $nggdb->find_all_galleries();
81
 
82
  ?>
83
 
@@ -218,7 +218,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
218
  <?php
219
  foreach($gallerylist as $gallery) {
220
  $name = ( empty($gallery->title) ) ? $gallery->name : $gallery->title;
221
- echo '<option value="' . $gallery->gid . '" >' . $name . '</option>' . "\n";
222
  }
223
  ?>
224
  </select>
@@ -266,7 +266,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
266
  <?php
267
  foreach($gallerylist as $gallery) {
268
  $name = ( empty($gallery->title) ) ? $gallery->name : $gallery->title;
269
- echo '<option value="' . $gallery->gid . '" >' . $name . '</option>' . "\n";
270
  } ?>
271
  </select>
272
  <br /><?php echo $maxsize; ?>
77
  }
78
 
79
  //get all galleries (after we added new ones)
80
+ $gallerylist = $nggdb->find_all_galleries('gid', 'DESC');
81
 
82
  ?>
83
 
218
  <?php
219
  foreach($gallerylist as $gallery) {
220
  $name = ( empty($gallery->title) ) ? $gallery->name : $gallery->title;
221
+ echo '<option value="' . $gallery->gid . '" >' . $gallery->gid . ' - ' . $name . '</option>' . "\n";
222
  }
223
  ?>
224
  </select>
266
  <?php
267
  foreach($gallerylist as $gallery) {
268
  $name = ( empty($gallery->title) ) ? $gallery->name : $gallery->title;
269
+ echo '<option value="' . $gallery->gid . '" >' . $gallery->gid . ' - ' . $name . '</option>' . "\n";
270
  } ?>
271
  </select>
272
  <br /><?php echo $maxsize; ?>
admin/manage-galleries.php CHANGED
@@ -61,7 +61,7 @@ if($gallerylist) {
61
  <tr id="gallery-<?php echo $gid ?>" <?php echo $class; ?> >
62
  <th scope="row"><?php echo $gid; ?></th>
63
  <td>
64
- <?php if(nggAdmin::can_manage_this_gallery($gallery->author)) { ?>
65
  <a href="<?php echo wp_nonce_url( $ngg->manage_page->base_page . "&amp;mode=edit&amp;gid=" . $gid, 'ngg_editgallery')?>" class='edit' title="<?php _e('Edit') ?>" >
66
  <?php echo nggGallery::i18n($name); ?>
67
  </a>
@@ -74,7 +74,7 @@ if($gallerylist) {
74
  <td><?php echo $gallery->pageid; ?></td>
75
  <td><?php echo $gallery->counter; ?></td>
76
  <td>
77
- <?php if(nggAdmin::can_manage_this_gallery($gallery->author)) : ?>
78
  <a href="<?php echo wp_nonce_url( $ngg->manage_page->base_page . "&amp;mode=delete&amp;gid=" . $gid, 'ngg_editgallery')?>" class="delete" onclick="javascript:check=confirm( '<?php _e("Delete this gallery ?",'nggallery')?>');if(check==false) return false;"><?php _e('Delete') ?></a>
79
  <?php endif; ?>
80
  </td>
61
  <tr id="gallery-<?php echo $gid ?>" <?php echo $class; ?> >
62
  <th scope="row"><?php echo $gid; ?></th>
63
  <td>
64
+ <?php if (nggAdmin::can_manage_this_gallery($gallery->author)) { ?>
65
  <a href="<?php echo wp_nonce_url( $ngg->manage_page->base_page . "&amp;mode=edit&amp;gid=" . $gid, 'ngg_editgallery')?>" class='edit' title="<?php _e('Edit') ?>" >
66
  <?php echo nggGallery::i18n($name); ?>
67
  </a>
74
  <td><?php echo $gallery->pageid; ?></td>
75
  <td><?php echo $gallery->counter; ?></td>
76
  <td>
77
+ <?php if (nggAdmin::can_manage_this_gallery($gallery->author)) : ?>
78
  <a href="<?php echo wp_nonce_url( $ngg->manage_page->base_page . "&amp;mode=delete&amp;gid=" . $gid, 'ngg_editgallery')?>" class="delete" onclick="javascript:check=confirm( '<?php _e("Delete this gallery ?",'nggallery')?>');if(check==false) return false;"><?php _e('Delete') ?></a>
79
  <?php endif; ?>
80
  </td>
admin/manage-images.php CHANGED
@@ -17,6 +17,12 @@ function nggallery_picturelist() {
17
  return;
18
  }
19
 
 
 
 
 
 
 
20
  // look for pagination
21
  if ( ! isset( $_GET['paged'] ) || $_GET['paged'] < 1 )
22
  $_GET['paged'] = 1;
@@ -307,7 +313,9 @@ if($picturelist) {
307
  break;
308
  case 'id' :
309
  ?>
310
- <td <?php echo $attributes ?> scope="row" style=""><?php echo $pid ?></td>
 
 
311
  <?php
312
  break;
313
  case 'filename' :
17
  return;
18
  }
19
 
20
+ // Check if you have the correct capability
21
+ if (!nggAdmin::can_manage_this_gallery($gallery->author)) {
22
+ nggGallery::show_error(__('Sorry, you have no access here', 'nggallery'));
23
+ return;
24
+ }
25
+
26
  // look for pagination
27
  if ( ! isset( $_GET['paged'] ) || $_GET['paged'] < 1 )
28
  $_GET['paged'] = 1;
313
  break;
314
  case 'id' :
315
  ?>
316
+ <td <?php echo $attributes ?> scope="row" style=""><?php echo $pid; ?>
317
+ <input type="hidden" name="pid[]" value="<?php echo $pid ?>" />
318
+ </td>
319
  <?php
320
  break;
321
  case 'filename' :
admin/manage.php CHANGED
@@ -309,31 +309,31 @@ class nggManageGallery {
309
  $alttext = $_POST['alttext'];
310
  $exclude = $_POST['exclude'];
311
  $taglist = $_POST['tags'];
312
-
 
313
  if ( is_array($description) ) {
314
- foreach( $description as $key=>$value ) {
315
  $desc = $wpdb->escape($value);
316
  $wpdb->query( "UPDATE $wpdb->nggpictures SET description = '$desc' WHERE pid = $key");
317
  }
318
  }
319
  if ( is_array($alttext) ){
320
- foreach( $alttext as $key=>$value ) {
321
  $alttext = $wpdb->escape($value);
322
  $wpdb->query( "UPDATE $wpdb->nggpictures SET alttext = '$alttext' WHERE pid = $key");
323
  }
324
  }
325
-
326
- $pictures = $wpdb->get_results("SELECT pid FROM $wpdb->nggpictures WHERE galleryid = '$this->gid'");
327
-
328
  if ( is_array($pictures) ){
329
- foreach($pictures as $picture){
 
330
  if (is_array($exclude)){
331
- if ( array_key_exists($picture->pid, $exclude) )
332
- $wpdb->query("UPDATE $wpdb->nggpictures SET exclude = 1 WHERE pid = '$picture->pid'");
333
  else
334
- $wpdb->query("UPDATE $wpdb->nggpictures SET exclude = 0 WHERE pid = '$picture->pid'");
335
  } else {
336
- $wpdb->query("UPDATE $wpdb->nggpictures SET exclude = 0 WHERE pid = '$picture->pid'");
337
  }
338
  }
339
  }
309
  $alttext = $_POST['alttext'];
310
  $exclude = $_POST['exclude'];
311
  $taglist = $_POST['tags'];
312
+ $pictures = $_POST['pid'];
313
+
314
  if ( is_array($description) ) {
315
+ foreach( $description as $key => $value ) {
316
  $desc = $wpdb->escape($value);
317
  $wpdb->query( "UPDATE $wpdb->nggpictures SET description = '$desc' WHERE pid = $key");
318
  }
319
  }
320
  if ( is_array($alttext) ){
321
+ foreach( $alttext as $key => $value ) {
322
  $alttext = $wpdb->escape($value);
323
  $wpdb->query( "UPDATE $wpdb->nggpictures SET alttext = '$alttext' WHERE pid = $key");
324
  }
325
  }
326
+
 
 
327
  if ( is_array($pictures) ){
328
+ foreach( $pictures as $pid ){
329
+ $pid = (int) $pid;
330
  if (is_array($exclude)){
331
+ if ( array_key_exists($pid, $exclude) )
332
+ $wpdb->query("UPDATE $wpdb->nggpictures SET exclude = 1 WHERE pid = '$pid'");
333
  else
334
+ $wpdb->query("UPDATE $wpdb->nggpictures SET exclude = 0 WHERE pid = '$pid'");
335
  } else {
336
+ $wpdb->query("UPDATE $wpdb->nggpictures SET exclude = 0 WHERE pid = '$pid'");
337
  }
338
  }
339
  }
admin/tinymce/window.php CHANGED
@@ -42,7 +42,7 @@ global $wpdb;
42
  <td><select id="gallerytag" name="gallerytag" style="width: 200px">
43
  <option value="0"><?php _e("No gallery", 'nggallery'); ?></option>
44
  <?php
45
- $gallerylist = $wpdb->get_results("SELECT * FROM $wpdb->nggallery ORDER BY gid DESC");
46
  if(is_array($gallerylist)) {
47
  foreach($gallerylist as $gallery) {
48
  $name = ( empty($gallery->title) ) ? $gallery->name : $gallery->title;
42
  <td><select id="gallerytag" name="gallerytag" style="width: 200px">
43
  <option value="0"><?php _e("No gallery", 'nggallery'); ?></option>
44
  <?php
45
+ $gallerylist = $nggdb->find_all_galleries('gid', 'DESC');
46
  if(is_array($gallerylist)) {
47
  foreach($gallerylist as $gallery) {
48
  $name = ( empty($gallery->title) ) ? $gallery->name : $gallery->title;
changelog.txt CHANGED
@@ -1,6 +1,13 @@
1
  NextGEN Gallery
2
  by Alex Rabe & NextGEN DEV Team
3
 
 
 
 
 
 
 
 
4
  V1.2.0 - 09.03.2009
5
  - NEW : Support for image tag cloud with shortcode [tagcloud]
6
  - NEW : Adding shortcode [recent max="7" template="filename" /] & [random max="7" template="filename" /] to show the most recent/random pictures (THX to Bernhard)
1
  NextGEN Gallery
2
  by Alex Rabe & NextGEN DEV Team
3
 
4
+ V1.2.1 - 22.03.2009
5
+ - NEW : Support for IE8 Web Slices in widgets
6
+ - NEW : Add filter ngg_image_object
7
+ - Changed : Descending order in add gallery menu
8
+ - Bugfix : Exclude option didnT work for multi pages
9
+ - Bugfix : Check for correct capability in manage gallery
10
+
11
  V1.2.0 - 09.03.2009
12
  - NEW : Support for image tag cloud with shortcode [tagcloud]
13
  - NEW : Adding shortcode [recent max="7" template="filename" /] & [random max="7" template="filename" /] to show the most recent/random pictures (THX to Bernhard)
lang/nggallery-de_DE.mo CHANGED
Binary file
lang/nggallery-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-03-05 23:41+0100\n"
6
- "PO-Revision-Date: 2009-03-05 23:43+0100\n"
7
  "Last-Translator: Alex Rabe\n"
8
  "Language-Team: Alex Rabe\n"
9
  "MIME-Version: 1.0\n"
@@ -194,8 +194,8 @@ msgid "Upload failed!"
194
  msgstr "Upload fehlgeschlagen!"
195
 
196
  #: ../admin/addgallery.php:58
197
- #: ../admin/functions.php:559
198
- #: ../admin/functions.php:649
199
  msgid "No gallery selected !"
200
  msgstr "Keine Galerie ausgewählt !"
201
 
@@ -319,7 +319,7 @@ msgstr "Aktiviere Flash Batch Upload"
319
  #: ../admin/admin.php:272
320
  #: ../admin/functions.php:82
321
  #: ../admin/functions.php:145
322
- #: ../admin/manage-images.php:145
323
  #: ../admin/manage.php:78
324
  msgid "Gallery"
325
  msgid_plural "Galleries"
@@ -522,7 +522,7 @@ msgstr "Aktualisiere"
522
 
523
  #: ../admin/album.php:147
524
  #: ../admin/manage-galleries.php:78
525
- #: ../admin/manage-images.php:328
526
  msgid "Delete"
527
  msgstr "Lösche"
528
 
@@ -568,7 +568,7 @@ msgstr "Kein Album ausgewählt"
568
 
569
  #: ../admin/album.php:254
570
  #: ../admin/manage-galleries.php:42
571
- #: ../admin/manage-images.php:465
572
  msgid "ID"
573
  msgstr "ID"
574
 
@@ -578,7 +578,7 @@ msgstr "Name"
578
 
579
  #: ../admin/album.php:256
580
  #: ../admin/manage-galleries.php:43
581
- #: ../admin/manage-images.php:159
582
  msgid "Title"
583
  msgstr "Titel"
584
 
@@ -614,7 +614,7 @@ msgstr "ist schreibgeschützt !"
614
 
615
  #: ../admin/functions.php:48
616
  #: ../admin/functions.php:58
617
- #: ../admin/functions.php:522
618
  msgid "Unable to create directory "
619
  msgstr "Kann Verzeichnis nicht erstellen "
620
 
@@ -663,134 +663,134 @@ msgstr "Datenbank-Fehler. Kann Galerie nicht hinzufügen!"
663
  msgid "successfully created!"
664
  msgstr "erfolgreich erstellt!"
665
 
666
- #: ../admin/functions.php:166
667
- #: ../admin/functions.php:631
668
- #: ../admin/manage-images.php:237
669
  #: ../admin/manage.php:130
670
  msgid "Create new thumbnails"
671
  msgstr "Neue Thumbnails erstellen"
672
 
673
- #: ../admin/functions.php:169
674
  msgid " picture(s) successfully added"
675
  msgstr " Bild(er) erfolgreich hinzugefügt"
676
 
677
- #: ../admin/functions.php:208
678
- #: ../admin/functions.php:287
679
- #: ../admin/functions.php:328
680
  msgid "Object didn't contain correct data"
681
  msgstr "Das Objekt enhält nicht die notwendigen Daten"
682
 
683
- #: ../admin/functions.php:213
684
  msgid " is not writeable "
685
  msgstr "ist schreibgeschützt !"
686
 
687
- #: ../admin/functions.php:294
688
- #: ../admin/functions.php:331
689
  msgid " is not writeable"
690
  msgstr "ist schreibgeschützt !"
691
 
692
- #: ../admin/functions.php:491
693
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
694
  msgstr "Die hochgeladene Datei war keine korrekte Zip-Datei. Servermeldung :"
695
 
696
- #: ../admin/functions.php:506
697
  msgid "Could not get a valid foldername"
698
  msgstr "Konnte keinen gültigen Verzeichnisnamen finden"
699
 
700
- #: ../admin/functions.php:517
701
  #, php-format
702
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
703
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
704
 
705
- #: ../admin/functions.php:532
706
  msgid "Zip-File successfully unpacked"
707
  msgstr "Zip-Datei erfolgreich entpackt"
708
 
709
- #: ../admin/functions.php:567
710
- #: ../admin/functions.php:676
711
  msgid "Failure in database, no gallery path set !"
712
  msgstr "Datenbankfehler! Kein Galerie-Pfad gesetzt !"
713
 
714
- #: ../admin/functions.php:588
715
- #: ../admin/functions.php:670
716
  msgid "is no valid image file!"
717
  msgstr "ist keine zulässige Bilddatei !"
718
 
719
- #: ../admin/functions.php:602
720
- #: ../admin/functions.php:778
721
- #: ../admin/functions.php:846
722
  #, php-format
723
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
724
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
725
 
726
- #: ../admin/functions.php:609
727
- #: ../admin/functions.php:693
728
  msgid "Error, the file could not moved to : "
729
  msgstr "Fehler: Diese Datei kann nicht verschoben werden zu :"
730
 
731
- #: ../admin/functions.php:614
732
- #: ../admin/functions.php:697
733
  msgid "Error, the file permissions could not set"
734
  msgstr "Fehler: Die Berechtigungen für diese Datei können nicht gesetzt werden"
735
 
736
- #: ../admin/functions.php:635
737
  msgid " Image(s) successfully added"
738
  msgstr " Bild(er) erfolgreich hinzugefügt"
739
 
740
- #: ../admin/functions.php:658
741
  msgid "Invalid upload. Error Code : "
742
  msgstr "Ungültiger Upload. Fehler Code :"
743
 
744
- #: ../admin/functions.php:707
745
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
746
  msgstr "Schade, dein freier Speicher scheint aufgebraucht zu sein. Bitte lösche zuerst ein paar Bilder."
747
 
748
- #: ../admin/functions.php:734
749
  #, php-format
750
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
751
  msgstr "SAFE MODE Einschränkungen ist aktiv. Du must das Verzeichnis <strong>%s</strong> manuell anlegen."
752
 
753
- #: ../admin/functions.php:735
754
  #, php-format
755
  msgid "When safe_mode is on, PHP checks to see if the owner (%s) of the current script matches the owner (%s) of the file to be operated on by a file function or its directory"
756
  msgstr "Wenn der Safe-Mode eingeschaltet ist, überprüft PHP ob der Besitzer (%s) des Skript mit dem Besitzer (%s) der Datei/Verzeichnis übereinstimmt."
757
 
758
- #: ../admin/functions.php:772
759
- #: ../admin/functions.php:840
760
  msgid "The destination gallery does not exist"
761
  msgstr "Die ausgewählte Galerie existiert nicht"
762
 
763
- #: ../admin/functions.php:803
764
  #, php-format
765
  msgid "Failed to move image %1$s to %2$s"
766
  msgstr "Konte das Bild %1$s nicht nach %2$s verschieben"
767
 
768
- #: ../admin/functions.php:821
769
  #, php-format
770
  msgid "Moved %1$s picture(s) to gallery : %2$s ."
771
  msgstr " %1$s Bild(er) in Galerie : %2$s verschoben."
772
 
773
- #: ../admin/functions.php:873
774
  #, php-format
775
  msgid "Failed to copy image %1$s to %2$s"
776
  msgstr "Konnte das Bild %1$s nicht nach %2$s kopieren"
777
 
778
- #: ../admin/functions.php:885
779
  #, php-format
780
  msgid "Failed to copy database row for picture %s"
781
  msgstr "Fehler bei der Datenbank-Operation für Bild %s"
782
 
783
- #: ../admin/functions.php:893
784
  #, php-format
785
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) &raquo; The file already existed in the destination gallery."
786
  msgstr "Bild %1$s (%2$s) als Bild %3$s (%4$s) kopiert &raquo; Die Datei existierte bereits."
787
 
788
- #: ../admin/functions.php:896
789
  #, php-format
790
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
791
  msgstr "Bild %1$s (%2$s) kopiert als Bild %3$s (%4$s)"
792
 
793
- #: ../admin/functions.php:905
794
  #, php-format
795
  msgid "Copied %1$s picture(s) to gallery: %2$s ."
796
  msgstr "Kopiere %1$s Bild(er) in die Galerie : %2$s ."
@@ -812,12 +812,12 @@ msgid "[Show picture list]"
812
  msgstr "[Zeige Bilder-Liste]"
813
 
814
  #: ../admin/manage-galleries.php:19
815
- #: ../admin/manage-images.php:33
816
  msgid "&laquo;"
817
  msgstr "&laquo;"
818
 
819
  #: ../admin/manage-galleries.php:20
820
- #: ../admin/manage-images.php:34
821
  msgid "&raquo;"
822
  msgstr "&raquo;"
823
 
@@ -826,19 +826,19 @@ msgid "Gallery Overview"
826
  msgstr "Galerie Übersicht"
827
 
828
  #: ../admin/manage-galleries.php:30
829
- #: ../admin/manage-images.php:226
830
  #, php-format
831
  msgid "Displaying %s&#8211;%s of %s"
832
  msgstr "Zeige %s&#8211;%s von %s"
833
 
834
  #: ../admin/manage-galleries.php:44
835
- #: ../admin/manage-images.php:170
836
- #: ../admin/manage-images.php:470
837
  msgid "Description"
838
  msgstr "Beschreibung"
839
 
840
  #: ../admin/manage-galleries.php:45
841
- #: ../admin/manage-images.php:190
842
  msgid "Author"
843
  msgstr "Autor"
844
 
@@ -863,7 +863,7 @@ msgid "Delete this gallery ?"
863
  msgstr "Diese Galerie löschen ?"
864
 
865
  #: ../admin/manage-galleries.php:85
866
- #: ../admin/manage-images.php:382
867
  msgid "No entries found"
868
  msgstr "Keine Einträge gefunden"
869
 
@@ -871,11 +871,15 @@ msgstr "Keine Einträge gefunden"
871
  msgid "Gallery not found."
872
  msgstr "Galerie nicht gefunden"
873
 
874
- #: ../admin/manage-images.php:106
 
 
 
 
875
  msgid "No images selected"
876
  msgstr "Keine Bilder ausgewählt"
877
 
878
- #: ../admin/manage-images.php:126
879
  #, php-format
880
  msgid ""
881
  "You are about to start the bulk edit for %s images \n"
@@ -886,169 +890,169 @@ msgstr ""
886
  " \n"
887
  " 'Abbrechen' um zu stoppen, 'OK' um die Bearbeitung durchzuführen."
888
 
889
- #: ../admin/manage-images.php:155
890
  msgid "Gallery settings"
891
  msgstr "Galerie Einstellungen"
892
 
893
- #: ../admin/manage-images.php:155
894
  msgid "Click here for more settings"
895
  msgstr "Hier klicken für weitere Einstellungen"
896
 
897
- #: ../admin/manage-images.php:161
898
  msgid "Page Link to"
899
  msgstr "Seite verlinkt zu"
900
 
901
- #: ../admin/manage-images.php:164
902
  msgid "Not linked"
903
  msgstr "Nicht verlinkt"
904
 
905
- #: ../admin/manage-images.php:172
906
  msgid "Preview image"
907
  msgstr "Vorschau-Bild"
908
 
909
- #: ../admin/manage-images.php:175
910
  msgid "No Picture"
911
  msgstr "Kein Bild"
912
 
913
- #: ../admin/manage-images.php:188
914
  msgid "Path"
915
  msgstr "Pfad"
916
 
917
- #: ../admin/manage-images.php:204
918
  msgid "Create new page"
919
  msgstr "Neue Seite erstellen"
920
 
921
- #: ../admin/manage-images.php:207
922
  msgid "Main page (No parent)"
923
  msgstr "Haupseite (keine Unterseite)"
924
 
925
- #: ../admin/manage-images.php:210
926
  msgid "Add page"
927
  msgstr "Seite hinzufügen"
928
 
929
- #: ../admin/manage-images.php:216
930
  msgid "Scan Folder for new images"
931
  msgstr "Überprüfe Verzeichnis nach neuen Bildern"
932
 
933
- #: ../admin/manage-images.php:217
934
- #: ../admin/manage-images.php:253
935
- #: ../admin/manage-images.php:388
936
  msgid "Save Changes"
937
  msgstr "Änderungen speichern"
938
 
939
- #: ../admin/manage-images.php:235
940
  msgid "No action"
941
  msgstr "Keine Aktion"
942
 
943
- #: ../admin/manage-images.php:236
944
  #: ../admin/manage.php:126
945
  msgid "Set watermark"
946
  msgstr "Wasserzeichen setzen"
947
 
948
- #: ../admin/manage-images.php:238
949
  #: ../admin/manage.php:134
950
  msgid "Resize images"
951
  msgstr "Bilder verkleinern"
952
 
953
- #: ../admin/manage-images.php:239
954
  msgid "Delete images"
955
  msgstr "Bilder löschen"
956
 
957
- #: ../admin/manage-images.php:240
958
  msgid "Import metadata"
959
  msgstr "Metadaten importieren"
960
 
961
- #: ../admin/manage-images.php:241
962
  msgid "Copy to..."
963
  msgstr "Kopiere nach..."
964
 
965
- #: ../admin/manage-images.php:242
966
  msgid "Move to..."
967
  msgstr "Verschiebe nach..."
968
 
969
- #: ../admin/manage-images.php:243
970
  msgid "Add tags"
971
  msgstr "Stichwörter hinzufügen"
972
 
973
- #: ../admin/manage-images.php:244
974
  msgid "Delete tags"
975
  msgstr "Stichwörter löschen"
976
 
977
- #: ../admin/manage-images.php:245
978
  msgid "Overwrite tags"
979
  msgstr "Stichwörter überschreiben"
980
 
981
- #: ../admin/manage-images.php:247
982
- #: ../admin/manage-images.php:405
983
- #: ../admin/manage-images.php:440
984
  msgid "OK"
985
  msgstr "OK"
986
 
987
- #: ../admin/manage-images.php:250
988
  msgid "Sort gallery"
989
  msgstr "Sortiere Bilder"
990
 
991
- #: ../admin/manage-images.php:325
992
  #, php-format
993
  msgid "View \"%s\""
994
  msgstr "Anzeigen \"%s\""
995
 
996
- #: ../admin/manage-images.php:325
997
  msgid "View"
998
  msgstr "Ansehen"
999
 
1000
- #: ../admin/manage-images.php:326
1001
  msgid "Show Meta data"
1002
  msgstr "Zeige Metadaten"
1003
 
1004
- #: ../admin/manage-images.php:326
1005
  msgid "Meta"
1006
  msgstr "Meta"
1007
 
1008
- #: ../admin/manage-images.php:327
1009
  msgid "Customize thumbnail"
1010
  msgstr "Thumbnails anpassen"
1011
 
1012
- #: ../admin/manage-images.php:327
1013
  msgid "Edit thumb"
1014
  msgstr "Thumbnail ändern"
1015
 
1016
- #: ../admin/manage-images.php:328
1017
  #, php-format
1018
  msgid "Delete \"%s\""
1019
  msgstr "Lösche \"%s\""
1020
 
1021
- #: ../admin/manage-images.php:401
1022
  msgid "Enter the tags"
1023
  msgstr "Stichwörter angeben"
1024
 
1025
- #: ../admin/manage-images.php:407
1026
- #: ../admin/manage-images.php:442
1027
  msgid "Cancel"
1028
  msgstr "Abbrechen"
1029
 
1030
- #: ../admin/manage-images.php:424
1031
  msgid "Select the destination gallery:"
1032
  msgstr "Galerie auswählen:"
1033
 
1034
- #: ../admin/manage-images.php:466
1035
  msgid "Thumbnail"
1036
  msgstr "Thumbnail"
1037
 
1038
- #: ../admin/manage-images.php:468
1039
  #: ../admin/manage-sort.php:80
1040
  msgid "Filename"
1041
  msgstr "Dateiname"
1042
 
1043
- #: ../admin/manage-images.php:470
1044
  msgid "Alt &amp; Title Text"
1045
  msgstr "Alt &amp; Titel Text"
1046
 
1047
- #: ../admin/manage-images.php:471
1048
  msgid "Tags (comma separated list)"
1049
  msgstr "Stichwörter (Tags)"
1050
 
1051
- #: ../admin/manage-images.php:473
1052
  msgid "exclude"
1053
  msgstr "ausschließen"
1054
 
@@ -2731,47 +2735,51 @@ msgstr "Füge die neusten Bilder oder Zufallsbilder aus NextGEN Gallery ein"
2731
  msgid "NextGEN Widget"
2732
  msgstr "NextGEN Widget"
2733
 
2734
- #: ../widgets/widgets.php:284
2735
  msgid "Title :"
2736
  msgstr "Titel :"
2737
 
2738
- #: ../widgets/widgets.php:290
2739
  msgid "Show :"
2740
  msgstr "Zeige als :"
2741
 
2742
- #: ../widgets/widgets.php:296
2743
  msgid "Original images"
2744
  msgstr "Original Bilder"
2745
 
2746
- #: ../widgets/widgets.php:304
2747
  msgid "recent added "
2748
  msgstr "zuletzt hinzugefügt"
2749
 
2750
- #: ../widgets/widgets.php:309
 
 
 
 
2751
  msgid "Width x Height :"
2752
  msgstr "Breite x Höhe :"
2753
 
2754
- #: ../widgets/widgets.php:316
2755
  msgid "Select :"
2756
  msgstr "Wähle :"
2757
 
2758
- #: ../widgets/widgets.php:318
2759
  msgid "All galleries"
2760
  msgstr "Alle Galerien"
2761
 
2762
- #: ../widgets/widgets.php:319
2763
  msgid "Only which are not listed"
2764
  msgstr "Nur ungelistete"
2765
 
2766
- #: ../widgets/widgets.php:320
2767
  msgid "Only which are listed"
2768
  msgstr "Nur gelistete"
2769
 
2770
- #: ../widgets/widgets.php:326
2771
  msgid "Gallery ID :"
2772
  msgstr "Galerie ID :"
2773
 
2774
- #: ../widgets/widgets.php:328
2775
  msgid "Gallery IDs, separated by commas."
2776
  msgstr "Galerie ID's, mit Kommas getrennt"
2777
 
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-03-21 13:53+0100\n"
6
+ "PO-Revision-Date: 2009-03-21 13:54+0100\n"
7
  "Last-Translator: Alex Rabe\n"
8
  "Language-Team: Alex Rabe\n"
9
  "MIME-Version: 1.0\n"
194
  msgstr "Upload fehlgeschlagen!"
195
 
196
  #: ../admin/addgallery.php:58
197
+ #: ../admin/functions.php:568
198
+ #: ../admin/functions.php:658
199
  msgid "No gallery selected !"
200
  msgstr "Keine Galerie ausgewählt !"
201
 
319
  #: ../admin/admin.php:272
320
  #: ../admin/functions.php:82
321
  #: ../admin/functions.php:145
322
+ #: ../admin/manage-images.php:151
323
  #: ../admin/manage.php:78
324
  msgid "Gallery"
325
  msgid_plural "Galleries"
522
 
523
  #: ../admin/album.php:147
524
  #: ../admin/manage-galleries.php:78
525
+ #: ../admin/manage-images.php:336
526
  msgid "Delete"
527
  msgstr "Lösche"
528
 
568
 
569
  #: ../admin/album.php:254
570
  #: ../admin/manage-galleries.php:42
571
+ #: ../admin/manage-images.php:473
572
  msgid "ID"
573
  msgstr "ID"
574
 
578
 
579
  #: ../admin/album.php:256
580
  #: ../admin/manage-galleries.php:43
581
+ #: ../admin/manage-images.php:165
582
  msgid "Title"
583
  msgstr "Titel"
584
 
614
 
615
  #: ../admin/functions.php:48
616
  #: ../admin/functions.php:58
617
+ #: ../admin/functions.php:531
618
  msgid "Unable to create directory "
619
  msgstr "Kann Verzeichnis nicht erstellen "
620
 
663
  msgid "successfully created!"
664
  msgstr "erfolgreich erstellt!"
665
 
666
+ #: ../admin/functions.php:174
667
+ #: ../admin/functions.php:640
668
+ #: ../admin/manage-images.php:243
669
  #: ../admin/manage.php:130
670
  msgid "Create new thumbnails"
671
  msgstr "Neue Thumbnails erstellen"
672
 
673
+ #: ../admin/functions.php:177
674
  msgid " picture(s) successfully added"
675
  msgstr " Bild(er) erfolgreich hinzugefügt"
676
 
677
+ #: ../admin/functions.php:216
678
+ #: ../admin/functions.php:295
679
+ #: ../admin/functions.php:336
680
  msgid "Object didn't contain correct data"
681
  msgstr "Das Objekt enhält nicht die notwendigen Daten"
682
 
683
+ #: ../admin/functions.php:221
684
  msgid " is not writeable "
685
  msgstr "ist schreibgeschützt !"
686
 
687
+ #: ../admin/functions.php:302
688
+ #: ../admin/functions.php:339
689
  msgid " is not writeable"
690
  msgstr "ist schreibgeschützt !"
691
 
692
+ #: ../admin/functions.php:500
693
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
694
  msgstr "Die hochgeladene Datei war keine korrekte Zip-Datei. Servermeldung :"
695
 
696
+ #: ../admin/functions.php:515
697
  msgid "Could not get a valid foldername"
698
  msgstr "Konnte keinen gültigen Verzeichnisnamen finden"
699
 
700
+ #: ../admin/functions.php:526
701
  #, php-format
702
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
703
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
704
 
705
+ #: ../admin/functions.php:541
706
  msgid "Zip-File successfully unpacked"
707
  msgstr "Zip-Datei erfolgreich entpackt"
708
 
709
+ #: ../admin/functions.php:576
710
+ #: ../admin/functions.php:685
711
  msgid "Failure in database, no gallery path set !"
712
  msgstr "Datenbankfehler! Kein Galerie-Pfad gesetzt !"
713
 
714
+ #: ../admin/functions.php:597
715
+ #: ../admin/functions.php:679
716
  msgid "is no valid image file!"
717
  msgstr "ist keine zulässige Bilddatei !"
718
 
719
+ #: ../admin/functions.php:611
720
+ #: ../admin/functions.php:787
721
+ #: ../admin/functions.php:855
722
  #, php-format
723
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
724
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
725
 
726
+ #: ../admin/functions.php:618
727
+ #: ../admin/functions.php:702
728
  msgid "Error, the file could not moved to : "
729
  msgstr "Fehler: Diese Datei kann nicht verschoben werden zu :"
730
 
731
+ #: ../admin/functions.php:623
732
+ #: ../admin/functions.php:706
733
  msgid "Error, the file permissions could not set"
734
  msgstr "Fehler: Die Berechtigungen für diese Datei können nicht gesetzt werden"
735
 
736
+ #: ../admin/functions.php:644
737
  msgid " Image(s) successfully added"
738
  msgstr " Bild(er) erfolgreich hinzugefügt"
739
 
740
+ #: ../admin/functions.php:667
741
  msgid "Invalid upload. Error Code : "
742
  msgstr "Ungültiger Upload. Fehler Code :"
743
 
744
+ #: ../admin/functions.php:716
745
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
746
  msgstr "Schade, dein freier Speicher scheint aufgebraucht zu sein. Bitte lösche zuerst ein paar Bilder."
747
 
748
+ #: ../admin/functions.php:743
749
  #, php-format
750
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
751
  msgstr "SAFE MODE Einschränkungen ist aktiv. Du must das Verzeichnis <strong>%s</strong> manuell anlegen."
752
 
753
+ #: ../admin/functions.php:744
754
  #, php-format
755
  msgid "When safe_mode is on, PHP checks to see if the owner (%s) of the current script matches the owner (%s) of the file to be operated on by a file function or its directory"
756
  msgstr "Wenn der Safe-Mode eingeschaltet ist, überprüft PHP ob der Besitzer (%s) des Skript mit dem Besitzer (%s) der Datei/Verzeichnis übereinstimmt."
757
 
758
+ #: ../admin/functions.php:781
759
+ #: ../admin/functions.php:849
760
  msgid "The destination gallery does not exist"
761
  msgstr "Die ausgewählte Galerie existiert nicht"
762
 
763
+ #: ../admin/functions.php:812
764
  #, php-format
765
  msgid "Failed to move image %1$s to %2$s"
766
  msgstr "Konte das Bild %1$s nicht nach %2$s verschieben"
767
 
768
+ #: ../admin/functions.php:830
769
  #, php-format
770
  msgid "Moved %1$s picture(s) to gallery : %2$s ."
771
  msgstr " %1$s Bild(er) in Galerie : %2$s verschoben."
772
 
773
+ #: ../admin/functions.php:882
774
  #, php-format
775
  msgid "Failed to copy image %1$s to %2$s"
776
  msgstr "Konnte das Bild %1$s nicht nach %2$s kopieren"
777
 
778
+ #: ../admin/functions.php:894
779
  #, php-format
780
  msgid "Failed to copy database row for picture %s"
781
  msgstr "Fehler bei der Datenbank-Operation für Bild %s"
782
 
783
+ #: ../admin/functions.php:902
784
  #, php-format
785
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) &raquo; The file already existed in the destination gallery."
786
  msgstr "Bild %1$s (%2$s) als Bild %3$s (%4$s) kopiert &raquo; Die Datei existierte bereits."
787
 
788
+ #: ../admin/functions.php:905
789
  #, php-format
790
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
791
  msgstr "Bild %1$s (%2$s) kopiert als Bild %3$s (%4$s)"
792
 
793
+ #: ../admin/functions.php:914
794
  #, php-format
795
  msgid "Copied %1$s picture(s) to gallery: %2$s ."
796
  msgstr "Kopiere %1$s Bild(er) in die Galerie : %2$s ."
812
  msgstr "[Zeige Bilder-Liste]"
813
 
814
  #: ../admin/manage-galleries.php:19
815
+ #: ../admin/manage-images.php:39
816
  msgid "&laquo;"
817
  msgstr "&laquo;"
818
 
819
  #: ../admin/manage-galleries.php:20
820
+ #: ../admin/manage-images.php:40
821
  msgid "&raquo;"
822
  msgstr "&raquo;"
823
 
826
  msgstr "Galerie Übersicht"
827
 
828
  #: ../admin/manage-galleries.php:30
829
+ #: ../admin/manage-images.php:232
830
  #, php-format
831
  msgid "Displaying %s&#8211;%s of %s"
832
  msgstr "Zeige %s&#8211;%s von %s"
833
 
834
  #: ../admin/manage-galleries.php:44
835
+ #: ../admin/manage-images.php:176
836
+ #: ../admin/manage-images.php:478
837
  msgid "Description"
838
  msgstr "Beschreibung"
839
 
840
  #: ../admin/manage-galleries.php:45
841
+ #: ../admin/manage-images.php:196
842
  msgid "Author"
843
  msgstr "Autor"
844
 
863
  msgstr "Diese Galerie löschen ?"
864
 
865
  #: ../admin/manage-galleries.php:85
866
+ #: ../admin/manage-images.php:390
867
  msgid "No entries found"
868
  msgstr "Keine Einträge gefunden"
869
 
871
  msgid "Gallery not found."
872
  msgstr "Galerie nicht gefunden"
873
 
874
+ #: ../admin/manage-images.php:22
875
+ msgid "Sorry, you have no access here"
876
+ msgstr "Sorry, du hast nicht genügend Rechte"
877
+
878
+ #: ../admin/manage-images.php:112
879
  msgid "No images selected"
880
  msgstr "Keine Bilder ausgewählt"
881
 
882
+ #: ../admin/manage-images.php:132
883
  #, php-format
884
  msgid ""
885
  "You are about to start the bulk edit for %s images \n"
890
  " \n"
891
  " 'Abbrechen' um zu stoppen, 'OK' um die Bearbeitung durchzuführen."
892
 
893
+ #: ../admin/manage-images.php:161
894
  msgid "Gallery settings"
895
  msgstr "Galerie Einstellungen"
896
 
897
+ #: ../admin/manage-images.php:161
898
  msgid "Click here for more settings"
899
  msgstr "Hier klicken für weitere Einstellungen"
900
 
901
+ #: ../admin/manage-images.php:167
902
  msgid "Page Link to"
903
  msgstr "Seite verlinkt zu"
904
 
905
+ #: ../admin/manage-images.php:170
906
  msgid "Not linked"
907
  msgstr "Nicht verlinkt"
908
 
909
+ #: ../admin/manage-images.php:178
910
  msgid "Preview image"
911
  msgstr "Vorschau-Bild"
912
 
913
+ #: ../admin/manage-images.php:181
914
  msgid "No Picture"
915
  msgstr "Kein Bild"
916
 
917
+ #: ../admin/manage-images.php:194
918
  msgid "Path"
919
  msgstr "Pfad"
920
 
921
+ #: ../admin/manage-images.php:210
922
  msgid "Create new page"
923
  msgstr "Neue Seite erstellen"
924
 
925
+ #: ../admin/manage-images.php:213
926
  msgid "Main page (No parent)"
927
  msgstr "Haupseite (keine Unterseite)"
928
 
929
+ #: ../admin/manage-images.php:216
930
  msgid "Add page"
931
  msgstr "Seite hinzufügen"
932
 
933
+ #: ../admin/manage-images.php:222
934
  msgid "Scan Folder for new images"
935
  msgstr "Überprüfe Verzeichnis nach neuen Bildern"
936
 
937
+ #: ../admin/manage-images.php:223
938
+ #: ../admin/manage-images.php:259
939
+ #: ../admin/manage-images.php:396
940
  msgid "Save Changes"
941
  msgstr "Änderungen speichern"
942
 
943
+ #: ../admin/manage-images.php:241
944
  msgid "No action"
945
  msgstr "Keine Aktion"
946
 
947
+ #: ../admin/manage-images.php:242
948
  #: ../admin/manage.php:126
949
  msgid "Set watermark"
950
  msgstr "Wasserzeichen setzen"
951
 
952
+ #: ../admin/manage-images.php:244
953
  #: ../admin/manage.php:134
954
  msgid "Resize images"
955
  msgstr "Bilder verkleinern"
956
 
957
+ #: ../admin/manage-images.php:245
958
  msgid "Delete images"
959
  msgstr "Bilder löschen"
960
 
961
+ #: ../admin/manage-images.php:246
962
  msgid "Import metadata"
963
  msgstr "Metadaten importieren"
964
 
965
+ #: ../admin/manage-images.php:247
966
  msgid "Copy to..."
967
  msgstr "Kopiere nach..."
968
 
969
+ #: ../admin/manage-images.php:248
970
  msgid "Move to..."
971
  msgstr "Verschiebe nach..."
972
 
973
+ #: ../admin/manage-images.php:249
974
  msgid "Add tags"
975
  msgstr "Stichwörter hinzufügen"
976
 
977
+ #: ../admin/manage-images.php:250
978
  msgid "Delete tags"
979
  msgstr "Stichwörter löschen"
980
 
981
+ #: ../admin/manage-images.php:251
982
  msgid "Overwrite tags"
983
  msgstr "Stichwörter überschreiben"
984
 
985
+ #: ../admin/manage-images.php:253
986
+ #: ../admin/manage-images.php:413
987
+ #: ../admin/manage-images.php:448
988
  msgid "OK"
989
  msgstr "OK"
990
 
991
+ #: ../admin/manage-images.php:256
992
  msgid "Sort gallery"
993
  msgstr "Sortiere Bilder"
994
 
995
+ #: ../admin/manage-images.php:333
996
  #, php-format
997
  msgid "View \"%s\""
998
  msgstr "Anzeigen \"%s\""
999
 
1000
+ #: ../admin/manage-images.php:333
1001
  msgid "View"
1002
  msgstr "Ansehen"
1003
 
1004
+ #: ../admin/manage-images.php:334
1005
  msgid "Show Meta data"
1006
  msgstr "Zeige Metadaten"
1007
 
1008
+ #: ../admin/manage-images.php:334
1009
  msgid "Meta"
1010
  msgstr "Meta"
1011
 
1012
+ #: ../admin/manage-images.php:335
1013
  msgid "Customize thumbnail"
1014
  msgstr "Thumbnails anpassen"
1015
 
1016
+ #: ../admin/manage-images.php:335
1017
  msgid "Edit thumb"
1018
  msgstr "Thumbnail ändern"
1019
 
1020
+ #: ../admin/manage-images.php:336
1021
  #, php-format
1022
  msgid "Delete \"%s\""
1023
  msgstr "Lösche \"%s\""
1024
 
1025
+ #: ../admin/manage-images.php:409
1026
  msgid "Enter the tags"
1027
  msgstr "Stichwörter angeben"
1028
 
1029
+ #: ../admin/manage-images.php:415
1030
+ #: ../admin/manage-images.php:450
1031
  msgid "Cancel"
1032
  msgstr "Abbrechen"
1033
 
1034
+ #: ../admin/manage-images.php:432
1035
  msgid "Select the destination gallery:"
1036
  msgstr "Galerie auswählen:"
1037
 
1038
+ #: ../admin/manage-images.php:474
1039
  msgid "Thumbnail"
1040
  msgstr "Thumbnail"
1041
 
1042
+ #: ../admin/manage-images.php:476
1043
  #: ../admin/manage-sort.php:80
1044
  msgid "Filename"
1045
  msgstr "Dateiname"
1046
 
1047
+ #: ../admin/manage-images.php:478
1048
  msgid "Alt &amp; Title Text"
1049
  msgstr "Alt &amp; Titel Text"
1050
 
1051
+ #: ../admin/manage-images.php:479
1052
  msgid "Tags (comma separated list)"
1053
  msgstr "Stichwörter (Tags)"
1054
 
1055
+ #: ../admin/manage-images.php:481
1056
  msgid "exclude"
1057
  msgstr "ausschließen"
1058
 
2735
  msgid "NextGEN Widget"
2736
  msgstr "NextGEN Widget"
2737
 
2738
+ #: ../widgets/widgets.php:286
2739
  msgid "Title :"
2740
  msgstr "Titel :"
2741
 
2742
+ #: ../widgets/widgets.php:292
2743
  msgid "Show :"
2744
  msgstr "Zeige als :"
2745
 
2746
+ #: ../widgets/widgets.php:298
2747
  msgid "Original images"
2748
  msgstr "Original Bilder"
2749
 
2750
+ #: ../widgets/widgets.php:306
2751
  msgid "recent added "
2752
  msgstr "zuletzt hinzugefügt"
2753
 
2754
+ #: ../widgets/widgets.php:312
2755
+ msgid "Enable IE8 Web Slices"
2756
+ msgstr "IE8 Web Slices aktivieren"
2757
+
2758
+ #: ../widgets/widgets.php:317
2759
  msgid "Width x Height :"
2760
  msgstr "Breite x Höhe :"
2761
 
2762
+ #: ../widgets/widgets.php:324
2763
  msgid "Select :"
2764
  msgstr "Wähle :"
2765
 
2766
+ #: ../widgets/widgets.php:326
2767
  msgid "All galleries"
2768
  msgstr "Alle Galerien"
2769
 
2770
+ #: ../widgets/widgets.php:327
2771
  msgid "Only which are not listed"
2772
  msgstr "Nur ungelistete"
2773
 
2774
+ #: ../widgets/widgets.php:328
2775
  msgid "Only which are listed"
2776
  msgstr "Nur gelistete"
2777
 
2778
+ #: ../widgets/widgets.php:334
2779
  msgid "Gallery ID :"
2780
  msgstr "Galerie ID :"
2781
 
2782
+ #: ../widgets/widgets.php:336
2783
  msgid "Gallery IDs, separated by commas."
2784
  msgstr "Galerie ID's, mit Kommas getrennt"
2785
 
lang/nggallery.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-03-05 23:41+0100\n"
6
- "PO-Revision-Date: 2009-03-05 23:41+0100\n"
7
  "Last-Translator: Alex Rabe\n"
8
  "Language-Team: Alex Rabe\n"
9
  "MIME-Version: 1.0\n"
@@ -193,8 +193,8 @@ msgid "Upload failed!"
193
  msgstr ""
194
 
195
  #: ../admin/addgallery.php:58
196
- #: ../admin/functions.php:559
197
- #: ../admin/functions.php:649
198
  msgid "No gallery selected !"
199
  msgstr ""
200
 
@@ -318,7 +318,7 @@ msgstr ""
318
  #: ../admin/admin.php:272
319
  #: ../admin/functions.php:82
320
  #: ../admin/functions.php:145
321
- #: ../admin/manage-images.php:145
322
  #: ../admin/manage.php:78
323
  msgid "Gallery"
324
  msgid_plural "Galleries"
@@ -521,7 +521,7 @@ msgstr ""
521
 
522
  #: ../admin/album.php:147
523
  #: ../admin/manage-galleries.php:78
524
- #: ../admin/manage-images.php:328
525
  msgid "Delete"
526
  msgstr ""
527
 
@@ -567,7 +567,7 @@ msgstr ""
567
 
568
  #: ../admin/album.php:254
569
  #: ../admin/manage-galleries.php:42
570
- #: ../admin/manage-images.php:465
571
  msgid "ID"
572
  msgstr ""
573
 
@@ -577,7 +577,7 @@ msgstr ""
577
 
578
  #: ../admin/album.php:256
579
  #: ../admin/manage-galleries.php:43
580
- #: ../admin/manage-images.php:159
581
  msgid "Title"
582
  msgstr ""
583
 
@@ -613,7 +613,7 @@ msgstr ""
613
 
614
  #: ../admin/functions.php:48
615
  #: ../admin/functions.php:58
616
- #: ../admin/functions.php:522
617
  msgid "Unable to create directory "
618
  msgstr ""
619
 
@@ -662,134 +662,134 @@ msgstr ""
662
  msgid "successfully created!"
663
  msgstr ""
664
 
665
- #: ../admin/functions.php:166
666
- #: ../admin/functions.php:631
667
- #: ../admin/manage-images.php:237
668
  #: ../admin/manage.php:130
669
  msgid "Create new thumbnails"
670
  msgstr ""
671
 
672
- #: ../admin/functions.php:169
673
  msgid " picture(s) successfully added"
674
  msgstr ""
675
 
676
- #: ../admin/functions.php:208
677
- #: ../admin/functions.php:287
678
- #: ../admin/functions.php:328
679
  msgid "Object didn't contain correct data"
680
  msgstr ""
681
 
682
- #: ../admin/functions.php:213
683
  msgid " is not writeable "
684
  msgstr ""
685
 
686
- #: ../admin/functions.php:294
687
- #: ../admin/functions.php:331
688
  msgid " is not writeable"
689
  msgstr ""
690
 
691
- #: ../admin/functions.php:491
692
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
693
  msgstr ""
694
 
695
- #: ../admin/functions.php:506
696
  msgid "Could not get a valid foldername"
697
  msgstr ""
698
 
699
- #: ../admin/functions.php:517
700
  #, php-format
701
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
702
  msgstr ""
703
 
704
- #: ../admin/functions.php:532
705
  msgid "Zip-File successfully unpacked"
706
  msgstr ""
707
 
708
- #: ../admin/functions.php:567
709
- #: ../admin/functions.php:676
710
  msgid "Failure in database, no gallery path set !"
711
  msgstr ""
712
 
713
- #: ../admin/functions.php:588
714
- #: ../admin/functions.php:670
715
  msgid "is no valid image file!"
716
  msgstr ""
717
 
718
- #: ../admin/functions.php:602
719
- #: ../admin/functions.php:778
720
- #: ../admin/functions.php:846
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:609
726
- #: ../admin/functions.php:693
727
  msgid "Error, the file could not moved to : "
728
  msgstr ""
729
 
730
- #: ../admin/functions.php:614
731
- #: ../admin/functions.php:697
732
  msgid "Error, the file permissions could not set"
733
  msgstr ""
734
 
735
- #: ../admin/functions.php:635
736
  msgid " Image(s) successfully added"
737
  msgstr ""
738
 
739
- #: ../admin/functions.php:658
740
  msgid "Invalid upload. Error Code : "
741
  msgstr ""
742
 
743
- #: ../admin/functions.php:707
744
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
745
  msgstr ""
746
 
747
- #: ../admin/functions.php:734
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:735
753
  #, php-format
754
  msgid "When safe_mode is on, PHP checks to see if the owner (%s) of the current script matches the owner (%s) of the file to be operated on by a file function or its directory"
755
  msgstr ""
756
 
757
- #: ../admin/functions.php:772
758
- #: ../admin/functions.php:840
759
  msgid "The destination gallery does not exist"
760
  msgstr ""
761
 
762
- #: ../admin/functions.php:803
763
  #, php-format
764
  msgid "Failed to move image %1$s to %2$s"
765
  msgstr ""
766
 
767
- #: ../admin/functions.php:821
768
  #, php-format
769
  msgid "Moved %1$s picture(s) to gallery : %2$s ."
770
  msgstr ""
771
 
772
- #: ../admin/functions.php:873
773
  #, php-format
774
  msgid "Failed to copy image %1$s to %2$s"
775
  msgstr ""
776
 
777
- #: ../admin/functions.php:885
778
  #, php-format
779
  msgid "Failed to copy database row for picture %s"
780
  msgstr ""
781
 
782
- #: ../admin/functions.php:893
783
  #, php-format
784
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) &raquo; The file already existed in the destination gallery."
785
  msgstr ""
786
 
787
- #: ../admin/functions.php:896
788
  #, php-format
789
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
790
  msgstr ""
791
 
792
- #: ../admin/functions.php:905
793
  #, php-format
794
  msgid "Copied %1$s picture(s) to gallery: %2$s ."
795
  msgstr ""
@@ -811,12 +811,12 @@ msgid "[Show picture list]"
811
  msgstr ""
812
 
813
  #: ../admin/manage-galleries.php:19
814
- #: ../admin/manage-images.php:33
815
  msgid "&laquo;"
816
  msgstr ""
817
 
818
  #: ../admin/manage-galleries.php:20
819
- #: ../admin/manage-images.php:34
820
  msgid "&raquo;"
821
  msgstr ""
822
 
@@ -825,19 +825,19 @@ msgid "Gallery Overview"
825
  msgstr ""
826
 
827
  #: ../admin/manage-galleries.php:30
828
- #: ../admin/manage-images.php:226
829
  #, php-format
830
  msgid "Displaying %s&#8211;%s of %s"
831
  msgstr ""
832
 
833
  #: ../admin/manage-galleries.php:44
834
- #: ../admin/manage-images.php:170
835
- #: ../admin/manage-images.php:470
836
  msgid "Description"
837
  msgstr ""
838
 
839
  #: ../admin/manage-galleries.php:45
840
- #: ../admin/manage-images.php:190
841
  msgid "Author"
842
  msgstr ""
843
 
@@ -862,7 +862,7 @@ msgid "Delete this gallery ?"
862
  msgstr ""
863
 
864
  #: ../admin/manage-galleries.php:85
865
- #: ../admin/manage-images.php:382
866
  msgid "No entries found"
867
  msgstr ""
868
 
@@ -870,11 +870,15 @@ msgstr ""
870
  msgid "Gallery not found."
871
  msgstr ""
872
 
873
- #: ../admin/manage-images.php:106
 
 
 
 
874
  msgid "No images selected"
875
  msgstr ""
876
 
877
- #: ../admin/manage-images.php:126
878
  #, php-format
879
  msgid ""
880
  "You are about to start the bulk edit for %s images \n"
@@ -882,169 +886,169 @@ msgid ""
882
  " 'Cancel' to stop, 'OK' to proceed."
883
  msgstr ""
884
 
885
- #: ../admin/manage-images.php:155
886
  msgid "Gallery settings"
887
  msgstr ""
888
 
889
- #: ../admin/manage-images.php:155
890
  msgid "Click here for more settings"
891
  msgstr ""
892
 
893
- #: ../admin/manage-images.php:161
894
  msgid "Page Link to"
895
  msgstr ""
896
 
897
- #: ../admin/manage-images.php:164
898
  msgid "Not linked"
899
  msgstr ""
900
 
901
- #: ../admin/manage-images.php:172
902
  msgid "Preview image"
903
  msgstr ""
904
 
905
- #: ../admin/manage-images.php:175
906
  msgid "No Picture"
907
  msgstr ""
908
 
909
- #: ../admin/manage-images.php:188
910
  msgid "Path"
911
  msgstr ""
912
 
913
- #: ../admin/manage-images.php:204
914
  msgid "Create new page"
915
  msgstr ""
916
 
917
- #: ../admin/manage-images.php:207
918
  msgid "Main page (No parent)"
919
  msgstr ""
920
 
921
- #: ../admin/manage-images.php:210
922
  msgid "Add page"
923
  msgstr ""
924
 
925
- #: ../admin/manage-images.php:216
926
  msgid "Scan Folder for new images"
927
  msgstr ""
928
 
929
- #: ../admin/manage-images.php:217
930
- #: ../admin/manage-images.php:253
931
- #: ../admin/manage-images.php:388
932
  msgid "Save Changes"
933
  msgstr ""
934
 
935
- #: ../admin/manage-images.php:235
936
  msgid "No action"
937
  msgstr ""
938
 
939
- #: ../admin/manage-images.php:236
940
  #: ../admin/manage.php:126
941
  msgid "Set watermark"
942
  msgstr ""
943
 
944
- #: ../admin/manage-images.php:238
945
  #: ../admin/manage.php:134
946
  msgid "Resize images"
947
  msgstr ""
948
 
949
- #: ../admin/manage-images.php:239
950
  msgid "Delete images"
951
  msgstr ""
952
 
953
- #: ../admin/manage-images.php:240
954
  msgid "Import metadata"
955
  msgstr ""
956
 
957
- #: ../admin/manage-images.php:241
958
  msgid "Copy to..."
959
  msgstr ""
960
 
961
- #: ../admin/manage-images.php:242
962
  msgid "Move to..."
963
  msgstr ""
964
 
965
- #: ../admin/manage-images.php:243
966
  msgid "Add tags"
967
  msgstr ""
968
 
969
- #: ../admin/manage-images.php:244
970
  msgid "Delete tags"
971
  msgstr ""
972
 
973
- #: ../admin/manage-images.php:245
974
  msgid "Overwrite tags"
975
  msgstr ""
976
 
977
- #: ../admin/manage-images.php:247
978
- #: ../admin/manage-images.php:405
979
- #: ../admin/manage-images.php:440
980
  msgid "OK"
981
  msgstr ""
982
 
983
- #: ../admin/manage-images.php:250
984
  msgid "Sort gallery"
985
  msgstr ""
986
 
987
- #: ../admin/manage-images.php:325
988
  #, php-format
989
  msgid "View \"%s\""
990
  msgstr ""
991
 
992
- #: ../admin/manage-images.php:325
993
  msgid "View"
994
  msgstr ""
995
 
996
- #: ../admin/manage-images.php:326
997
  msgid "Show Meta data"
998
  msgstr ""
999
 
1000
- #: ../admin/manage-images.php:326
1001
  msgid "Meta"
1002
  msgstr ""
1003
 
1004
- #: ../admin/manage-images.php:327
1005
  msgid "Customize thumbnail"
1006
  msgstr ""
1007
 
1008
- #: ../admin/manage-images.php:327
1009
  msgid "Edit thumb"
1010
  msgstr ""
1011
 
1012
- #: ../admin/manage-images.php:328
1013
  #, php-format
1014
  msgid "Delete \"%s\""
1015
  msgstr ""
1016
 
1017
- #: ../admin/manage-images.php:401
1018
  msgid "Enter the tags"
1019
  msgstr ""
1020
 
1021
- #: ../admin/manage-images.php:407
1022
- #: ../admin/manage-images.php:442
1023
  msgid "Cancel"
1024
  msgstr ""
1025
 
1026
- #: ../admin/manage-images.php:424
1027
  msgid "Select the destination gallery:"
1028
  msgstr ""
1029
 
1030
- #: ../admin/manage-images.php:466
1031
  msgid "Thumbnail"
1032
  msgstr ""
1033
 
1034
- #: ../admin/manage-images.php:468
1035
  #: ../admin/manage-sort.php:80
1036
  msgid "Filename"
1037
  msgstr ""
1038
 
1039
- #: ../admin/manage-images.php:470
1040
  msgid "Alt &amp; Title Text"
1041
  msgstr ""
1042
 
1043
- #: ../admin/manage-images.php:471
1044
  msgid "Tags (comma separated list)"
1045
  msgstr ""
1046
 
1047
- #: ../admin/manage-images.php:473
1048
  msgid "exclude"
1049
  msgstr ""
1050
 
@@ -2720,47 +2724,51 @@ msgstr ""
2720
  msgid "NextGEN Widget"
2721
  msgstr ""
2722
 
2723
- #: ../widgets/widgets.php:284
2724
  msgid "Title :"
2725
  msgstr ""
2726
 
2727
- #: ../widgets/widgets.php:290
2728
  msgid "Show :"
2729
  msgstr ""
2730
 
2731
- #: ../widgets/widgets.php:296
2732
  msgid "Original images"
2733
  msgstr ""
2734
 
2735
- #: ../widgets/widgets.php:304
2736
  msgid "recent added "
2737
  msgstr ""
2738
 
2739
- #: ../widgets/widgets.php:309
 
 
 
 
2740
  msgid "Width x Height :"
2741
  msgstr ""
2742
 
2743
- #: ../widgets/widgets.php:316
2744
  msgid "Select :"
2745
  msgstr ""
2746
 
2747
- #: ../widgets/widgets.php:318
2748
  msgid "All galleries"
2749
  msgstr ""
2750
 
2751
- #: ../widgets/widgets.php:319
2752
  msgid "Only which are not listed"
2753
  msgstr ""
2754
 
2755
- #: ../widgets/widgets.php:320
2756
  msgid "Only which are listed"
2757
  msgstr ""
2758
 
2759
- #: ../widgets/widgets.php:326
2760
  msgid "Gallery ID :"
2761
  msgstr ""
2762
 
2763
- #: ../widgets/widgets.php:328
2764
  msgid "Gallery IDs, separated by commas."
2765
  msgstr ""
2766
 
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-03-21 13:53+0100\n"
6
+ "PO-Revision-Date: 2009-03-21 13:53+0100\n"
7
  "Last-Translator: Alex Rabe\n"
8
  "Language-Team: Alex Rabe\n"
9
  "MIME-Version: 1.0\n"
193
  msgstr ""
194
 
195
  #: ../admin/addgallery.php:58
196
+ #: ../admin/functions.php:568
197
+ #: ../admin/functions.php:658
198
  msgid "No gallery selected !"
199
  msgstr ""
200
 
318
  #: ../admin/admin.php:272
319
  #: ../admin/functions.php:82
320
  #: ../admin/functions.php:145
321
+ #: ../admin/manage-images.php:151
322
  #: ../admin/manage.php:78
323
  msgid "Gallery"
324
  msgid_plural "Galleries"
521
 
522
  #: ../admin/album.php:147
523
  #: ../admin/manage-galleries.php:78
524
+ #: ../admin/manage-images.php:336
525
  msgid "Delete"
526
  msgstr ""
527
 
567
 
568
  #: ../admin/album.php:254
569
  #: ../admin/manage-galleries.php:42
570
+ #: ../admin/manage-images.php:473
571
  msgid "ID"
572
  msgstr ""
573
 
577
 
578
  #: ../admin/album.php:256
579
  #: ../admin/manage-galleries.php:43
580
+ #: ../admin/manage-images.php:165
581
  msgid "Title"
582
  msgstr ""
583
 
613
 
614
  #: ../admin/functions.php:48
615
  #: ../admin/functions.php:58
616
+ #: ../admin/functions.php:531
617
  msgid "Unable to create directory "
618
  msgstr ""
619
 
662
  msgid "successfully created!"
663
  msgstr ""
664
 
665
+ #: ../admin/functions.php:174
666
+ #: ../admin/functions.php:640
667
+ #: ../admin/manage-images.php:243
668
  #: ../admin/manage.php:130
669
  msgid "Create new thumbnails"
670
  msgstr ""
671
 
672
+ #: ../admin/functions.php:177
673
  msgid " picture(s) successfully added"
674
  msgstr ""
675
 
676
+ #: ../admin/functions.php:216
677
+ #: ../admin/functions.php:295
678
+ #: ../admin/functions.php:336
679
  msgid "Object didn't contain correct data"
680
  msgstr ""
681
 
682
+ #: ../admin/functions.php:221
683
  msgid " is not writeable "
684
  msgstr ""
685
 
686
+ #: ../admin/functions.php:302
687
+ #: ../admin/functions.php:339
688
  msgid " is not writeable"
689
  msgstr ""
690
 
691
+ #: ../admin/functions.php:500
692
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
693
  msgstr ""
694
 
695
+ #: ../admin/functions.php:515
696
  msgid "Could not get a valid foldername"
697
  msgstr ""
698
 
699
+ #: ../admin/functions.php:526
700
  #, php-format
701
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
702
  msgstr ""
703
 
704
+ #: ../admin/functions.php:541
705
  msgid "Zip-File successfully unpacked"
706
  msgstr ""
707
 
708
+ #: ../admin/functions.php:576
709
+ #: ../admin/functions.php:685
710
  msgid "Failure in database, no gallery path set !"
711
  msgstr ""
712
 
713
+ #: ../admin/functions.php:597
714
+ #: ../admin/functions.php:679
715
  msgid "is no valid image file!"
716
  msgstr ""
717
 
718
+ #: ../admin/functions.php:611
719
+ #: ../admin/functions.php:787
720
+ #: ../admin/functions.php:855
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:618
726
+ #: ../admin/functions.php:702
727
  msgid "Error, the file could not moved to : "
728
  msgstr ""
729
 
730
+ #: ../admin/functions.php:623
731
+ #: ../admin/functions.php:706
732
  msgid "Error, the file permissions could not set"
733
  msgstr ""
734
 
735
+ #: ../admin/functions.php:644
736
  msgid " Image(s) successfully added"
737
  msgstr ""
738
 
739
+ #: ../admin/functions.php:667
740
  msgid "Invalid upload. Error Code : "
741
  msgstr ""
742
 
743
+ #: ../admin/functions.php:716
744
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
745
  msgstr ""
746
 
747
+ #: ../admin/functions.php:743
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:744
753
  #, php-format
754
  msgid "When safe_mode is on, PHP checks to see if the owner (%s) of the current script matches the owner (%s) of the file to be operated on by a file function or its directory"
755
  msgstr ""
756
 
757
+ #: ../admin/functions.php:781
758
+ #: ../admin/functions.php:849
759
  msgid "The destination gallery does not exist"
760
  msgstr ""
761
 
762
+ #: ../admin/functions.php:812
763
  #, php-format
764
  msgid "Failed to move image %1$s to %2$s"
765
  msgstr ""
766
 
767
+ #: ../admin/functions.php:830
768
  #, php-format
769
  msgid "Moved %1$s picture(s) to gallery : %2$s ."
770
  msgstr ""
771
 
772
+ #: ../admin/functions.php:882
773
  #, php-format
774
  msgid "Failed to copy image %1$s to %2$s"
775
  msgstr ""
776
 
777
+ #: ../admin/functions.php:894
778
  #, php-format
779
  msgid "Failed to copy database row for picture %s"
780
  msgstr ""
781
 
782
+ #: ../admin/functions.php:902
783
  #, php-format
784
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) &raquo; The file already existed in the destination gallery."
785
  msgstr ""
786
 
787
+ #: ../admin/functions.php:905
788
  #, php-format
789
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
790
  msgstr ""
791
 
792
+ #: ../admin/functions.php:914
793
  #, php-format
794
  msgid "Copied %1$s picture(s) to gallery: %2$s ."
795
  msgstr ""
811
  msgstr ""
812
 
813
  #: ../admin/manage-galleries.php:19
814
+ #: ../admin/manage-images.php:39
815
  msgid "&laquo;"
816
  msgstr ""
817
 
818
  #: ../admin/manage-galleries.php:20
819
+ #: ../admin/manage-images.php:40
820
  msgid "&raquo;"
821
  msgstr ""
822
 
825
  msgstr ""
826
 
827
  #: ../admin/manage-galleries.php:30
828
+ #: ../admin/manage-images.php:232
829
  #, php-format
830
  msgid "Displaying %s&#8211;%s of %s"
831
  msgstr ""
832
 
833
  #: ../admin/manage-galleries.php:44
834
+ #: ../admin/manage-images.php:176
835
+ #: ../admin/manage-images.php:478
836
  msgid "Description"
837
  msgstr ""
838
 
839
  #: ../admin/manage-galleries.php:45
840
+ #: ../admin/manage-images.php:196
841
  msgid "Author"
842
  msgstr ""
843
 
862
  msgstr ""
863
 
864
  #: ../admin/manage-galleries.php:85
865
+ #: ../admin/manage-images.php:390
866
  msgid "No entries found"
867
  msgstr ""
868
 
870
  msgid "Gallery not found."
871
  msgstr ""
872
 
873
+ #: ../admin/manage-images.php:22
874
+ msgid "Sorry, you have no access here"
875
+ msgstr ""
876
+
877
+ #: ../admin/manage-images.php:112
878
  msgid "No images selected"
879
  msgstr ""
880
 
881
+ #: ../admin/manage-images.php:132
882
  #, php-format
883
  msgid ""
884
  "You are about to start the bulk edit for %s images \n"
886
  " 'Cancel' to stop, 'OK' to proceed."
887
  msgstr ""
888
 
889
+ #: ../admin/manage-images.php:161
890
  msgid "Gallery settings"
891
  msgstr ""
892
 
893
+ #: ../admin/manage-images.php:161
894
  msgid "Click here for more settings"
895
  msgstr ""
896
 
897
+ #: ../admin/manage-images.php:167
898
  msgid "Page Link to"
899
  msgstr ""
900
 
901
+ #: ../admin/manage-images.php:170
902
  msgid "Not linked"
903
  msgstr ""
904
 
905
+ #: ../admin/manage-images.php:178
906
  msgid "Preview image"
907
  msgstr ""
908
 
909
+ #: ../admin/manage-images.php:181
910
  msgid "No Picture"
911
  msgstr ""
912
 
913
+ #: ../admin/manage-images.php:194
914
  msgid "Path"
915
  msgstr ""
916
 
917
+ #: ../admin/manage-images.php:210
918
  msgid "Create new page"
919
  msgstr ""
920
 
921
+ #: ../admin/manage-images.php:213
922
  msgid "Main page (No parent)"
923
  msgstr ""
924
 
925
+ #: ../admin/manage-images.php:216
926
  msgid "Add page"
927
  msgstr ""
928
 
929
+ #: ../admin/manage-images.php:222
930
  msgid "Scan Folder for new images"
931
  msgstr ""
932
 
933
+ #: ../admin/manage-images.php:223
934
+ #: ../admin/manage-images.php:259
935
+ #: ../admin/manage-images.php:396
936
  msgid "Save Changes"
937
  msgstr ""
938
 
939
+ #: ../admin/manage-images.php:241
940
  msgid "No action"
941
  msgstr ""
942
 
943
+ #: ../admin/manage-images.php:242
944
  #: ../admin/manage.php:126
945
  msgid "Set watermark"
946
  msgstr ""
947
 
948
+ #: ../admin/manage-images.php:244
949
  #: ../admin/manage.php:134
950
  msgid "Resize images"
951
  msgstr ""
952
 
953
+ #: ../admin/manage-images.php:245
954
  msgid "Delete images"
955
  msgstr ""
956
 
957
+ #: ../admin/manage-images.php:246
958
  msgid "Import metadata"
959
  msgstr ""
960
 
961
+ #: ../admin/manage-images.php:247
962
  msgid "Copy to..."
963
  msgstr ""
964
 
965
+ #: ../admin/manage-images.php:248
966
  msgid "Move to..."
967
  msgstr ""
968
 
969
+ #: ../admin/manage-images.php:249
970
  msgid "Add tags"
971
  msgstr ""
972
 
973
+ #: ../admin/manage-images.php:250
974
  msgid "Delete tags"
975
  msgstr ""
976
 
977
+ #: ../admin/manage-images.php:251
978
  msgid "Overwrite tags"
979
  msgstr ""
980
 
981
+ #: ../admin/manage-images.php:253
982
+ #: ../admin/manage-images.php:413
983
+ #: ../admin/manage-images.php:448
984
  msgid "OK"
985
  msgstr ""
986
 
987
+ #: ../admin/manage-images.php:256
988
  msgid "Sort gallery"
989
  msgstr ""
990
 
991
+ #: ../admin/manage-images.php:333
992
  #, php-format
993
  msgid "View \"%s\""
994
  msgstr ""
995
 
996
+ #: ../admin/manage-images.php:333
997
  msgid "View"
998
  msgstr ""
999
 
1000
+ #: ../admin/manage-images.php:334
1001
  msgid "Show Meta data"
1002
  msgstr ""
1003
 
1004
+ #: ../admin/manage-images.php:334
1005
  msgid "Meta"
1006
  msgstr ""
1007
 
1008
+ #: ../admin/manage-images.php:335
1009
  msgid "Customize thumbnail"
1010
  msgstr ""
1011
 
1012
+ #: ../admin/manage-images.php:335
1013
  msgid "Edit thumb"
1014
  msgstr ""
1015
 
1016
+ #: ../admin/manage-images.php:336
1017
  #, php-format
1018
  msgid "Delete \"%s\""
1019
  msgstr ""
1020
 
1021
+ #: ../admin/manage-images.php:409
1022
  msgid "Enter the tags"
1023
  msgstr ""
1024
 
1025
+ #: ../admin/manage-images.php:415
1026
+ #: ../admin/manage-images.php:450
1027
  msgid "Cancel"
1028
  msgstr ""
1029
 
1030
+ #: ../admin/manage-images.php:432
1031
  msgid "Select the destination gallery:"
1032
  msgstr ""
1033
 
1034
+ #: ../admin/manage-images.php:474
1035
  msgid "Thumbnail"
1036
  msgstr ""
1037
 
1038
+ #: ../admin/manage-images.php:476
1039
  #: ../admin/manage-sort.php:80
1040
  msgid "Filename"
1041
  msgstr ""
1042
 
1043
+ #: ../admin/manage-images.php:478
1044
  msgid "Alt &amp; Title Text"
1045
  msgstr ""
1046
 
1047
+ #: ../admin/manage-images.php:479
1048
  msgid "Tags (comma separated list)"
1049
  msgstr ""
1050
 
1051
+ #: ../admin/manage-images.php:481
1052
  msgid "exclude"
1053
  msgstr ""
1054
 
2724
  msgid "NextGEN Widget"
2725
  msgstr ""
2726
 
2727
+ #: ../widgets/widgets.php:286
2728
  msgid "Title :"
2729
  msgstr ""
2730
 
2731
+ #: ../widgets/widgets.php:292
2732
  msgid "Show :"
2733
  msgstr ""
2734
 
2735
+ #: ../widgets/widgets.php:298
2736
  msgid "Original images"
2737
  msgstr ""
2738
 
2739
+ #: ../widgets/widgets.php:306
2740
  msgid "recent added "
2741
  msgstr ""
2742
 
2743
+ #: ../widgets/widgets.php:312
2744
+ msgid "Enable IE8 Web Slices"
2745
+ msgstr ""
2746
+
2747
+ #: ../widgets/widgets.php:317
2748
  msgid "Width x Height :"
2749
  msgstr ""
2750
 
2751
+ #: ../widgets/widgets.php:324
2752
  msgid "Select :"
2753
  msgstr ""
2754
 
2755
+ #: ../widgets/widgets.php:326
2756
  msgid "All galleries"
2757
  msgstr ""
2758
 
2759
+ #: ../widgets/widgets.php:327
2760
  msgid "Only which are not listed"
2761
  msgstr ""
2762
 
2763
+ #: ../widgets/widgets.php:328
2764
  msgid "Only which are listed"
2765
  msgstr ""
2766
 
2767
+ #: ../widgets/widgets.php:334
2768
  msgid "Gallery ID :"
2769
  msgstr ""
2770
 
2771
+ #: ../widgets/widgets.php:336
2772
  msgid "Gallery IDs, separated by commas."
2773
  msgstr ""
2774
 
nggallery.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: NextGEN Gallery
4
  Plugin URI: http://alexrabe.boelinger.com/?page_id=80
5
  Description: A NextGENeration Photo gallery for the Web 2.0.
6
  Author: Alex Rabe
7
- Version: 1.2.0
8
 
9
  Author URI: http://alexrabe.boelinger.com/
10
 
@@ -44,7 +44,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
44
  if (!class_exists('nggLoader')) {
45
  class nggLoader {
46
 
47
- var $version = '1.2.0';
48
  var $dbversion = '1.1.0';
49
  var $minium_WP = '2.7';
50
  var $minium_WPMU = '2.7';
4
  Plugin URI: http://alexrabe.boelinger.com/?page_id=80
5
  Description: A NextGENeration Photo gallery for the Web 2.0.
6
  Author: Alex Rabe
7
+ Version: 1.2.1
8
 
9
  Author URI: http://alexrabe.boelinger.com/
10
 
44
  if (!class_exists('nggLoader')) {
45
  class nggLoader {
46
 
47
+ var $version = '1.2.1';
48
  var $dbversion = '1.1.0';
49
  var $minium_WP = '2.7';
50
  var $minium_WPMU = '2.7';
nggfunctions.php CHANGED
@@ -238,9 +238,11 @@ function nggCreateGallery($picturelist, $galleryID = false, $template = '') {
238
  $picturelist[$key]->thumbnailURL = $picture->thumbURL;
239
  $picturelist[$key]->size = $thumbsize;
240
  $picturelist[$key]->thumbcode = $thumbcode;
241
- $picturelist[$key]->caption = ( empty($picture->description) ) ? '&nbsp;' : html_entity_decode ( stripslashes($picture->description) );
242
- $picturelist[$key]->description = ( empty($picture->description) ) ? ' ' : htmlspecialchars ( stripslashes($picture->description) );
243
- $picturelist[$key]->alttext = ( empty($picture->alttext) ) ? ' ' : htmlspecialchars ( stripslashes($picture->alttext) );
 
 
244
  }
245
 
246
  // look for gallery-$template.php or pure gallery.php
@@ -498,6 +500,9 @@ function nggCreateImageBrowser($picarray, $template = '') {
498
  $picture->alttext = html_entity_decode( stripslashes($picture->alttext) );
499
  $picture->description = html_entity_decode( stripslashes($picture->description) );
500
 
 
 
 
501
  // let's get the meta data
502
  $meta = new nggMeta($picture->imagePath);
503
  $exif = $meta->get_EXIF();
@@ -579,6 +584,9 @@ function nggSinglePicture($imageID, $width = 250, $height = 250, $mode = '', $fl
579
  $picture->width = (int) $width;
580
  $picture->caption = $caption;
581
 
 
 
 
582
  // let's get the meta data
583
  $meta = new nggMeta($picture->imagePath);
584
  $exif = $meta->get_EXIF();
238
  $picturelist[$key]->thumbnailURL = $picture->thumbURL;
239
  $picturelist[$key]->size = $thumbsize;
240
  $picturelist[$key]->thumbcode = $thumbcode;
241
+ $picturelist[$key]->caption = ( empty($picture->description) ) ? '&nbsp;' : html_entity_decode ( stripslashes(nggGallery::i18n($picture->description)) );
242
+ $picturelist[$key]->description = ( empty($picture->description) ) ? ' ' : htmlspecialchars ( stripslashes(nggGallery::i18n($picture->description)) );
243
+ $picturelist[$key]->alttext = ( empty($picture->alttext) ) ? ' ' : htmlspecialchars ( stripslashes(nggGallery::i18n($picture->alttext)) );
244
+ // filter to add custom content for the output
245
+ $picturelist[$key] = apply_filters('ngg_image_object', $picturelist[$key], $picture->pid);
246
  }
247
 
248
  // look for gallery-$template.php or pure gallery.php
500
  $picture->alttext = html_entity_decode( stripslashes($picture->alttext) );
501
  $picture->description = html_entity_decode( stripslashes($picture->description) );
502
 
503
+ // filter to add custom content for the output
504
+ $picture = apply_filters('ngg_image_object', $picture, $act_pid);
505
+
506
  // let's get the meta data
507
  $meta = new nggMeta($picture->imagePath);
508
  $exif = $meta->get_EXIF();
584
  $picture->width = (int) $width;
585
  $picture->caption = $caption;
586
 
587
+ // filter to add custom content for the output
588
+ $picture = apply_filters('ngg_image_object', $picture, $imageID);
589
+
590
  // let's get the meta data
591
  $meta = new nggMeta($picture->imagePath);
592
  $exif = $meta->get_EXIF();
readme.txt CHANGED
@@ -20,7 +20,7 @@ Important Links:
20
  * <a href="http://alexrabe.boelinger.com/wordpress-plugins/nextgen-gallery/faq/" title="NextGEN Gallery FAQ">NextGEN Gallery FAQ</a>
21
  * <a href="http://wordpress.org/tags/nextgen-gallery" title="Wordpress Support Forum">Support Forum</a>
22
 
23
- = NFeatures =
24
 
25
  * Templates : You can add custom templates for your theme.
26
  * Media RSS feed : Add the Cooliris Effect to your gallery
@@ -44,7 +44,7 @@ Important Links:
44
 
45
  == Credits ==
46
 
47
- Copyright 2007-2009 Alex Rabe & NextGEN DEV-Team
48
 
49
  The NextGEN button is taken from the Fugue Icons of http://www.pinvoke.com/.
50
 
@@ -60,7 +60,7 @@ GNU General Public License for more details.
60
 
61
  You should have received a copy of the GNU General Public License
62
  along with this program; if not, write to the Free Software
63
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
64
 
65
  ** Please note **
66
 
@@ -75,7 +75,7 @@ For commercial use please look at the Jeroen's homepage : http://www.longtailvid
75
 
76
  1. Upload the files to wp-content/plugins/nextgen-gallery
77
 
78
- 2. If you would like to use a Flash slideshow (only a option), go to <a href="http://www.longtailvideo.com/players/jw-image-rotator/" title="JW Image Rotator">Longtail Video</a>, download the JW Image Rotator and unpack the conent. Upload the file imagerotator.swf to the NextGEN-Gallery folder
79
 
80
  3. Activate the plugin
81
 
20
  * <a href="http://alexrabe.boelinger.com/wordpress-plugins/nextgen-gallery/faq/" title="NextGEN Gallery FAQ">NextGEN Gallery FAQ</a>
21
  * <a href="http://wordpress.org/tags/nextgen-gallery" title="Wordpress Support Forum">Support Forum</a>
22
 
23
+ = Features =
24
 
25
  * Templates : You can add custom templates for your theme.
26
  * Media RSS feed : Add the Cooliris Effect to your gallery
44
 
45
  == Credits ==
46
 
47
+ Copyright 2007-2009 by Alex Rabe & NextGEN DEV-Team
48
 
49
  The NextGEN button is taken from the Fugue Icons of http://www.pinvoke.com/.
50
 
60
 
61
  You should have received a copy of the GNU General Public License
62
  along with this program; if not, write to the Free Software
63
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
64
 
65
  ** Please note **
66
 
75
 
76
  1. Upload the files to wp-content/plugins/nextgen-gallery
77
 
78
+ 2. If you would like to use a Flash slideshow (only a option), go to <a href="http://www.longtailvideo.com/players/jw-image-rotator/" title="JW Image Rotator">Longtail Video</a>, download the JW Image Rotator and unpack the conent. Upload the file imagerotator.swf to your WordPress Upload folder
79
 
80
  3. Activate the plugin
81
 
widgets/widgets.php CHANGED
@@ -253,7 +253,8 @@ function ngg_widget_control($widget_args = 1) {
253
  $options[$widget_number]['width'] = (int) $widget_ngg_images['width'];
254
  $options[$widget_number]['height'] = (int) $widget_ngg_images['height'];
255
  $options[$widget_number]['exclude'] = $widget_ngg_images['exclude'];
256
- $options[$widget_number]['list'] = $widget_ngg_images['list'];
 
257
 
258
  }
259
 
@@ -272,6 +273,7 @@ function ngg_widget_control($widget_args = 1) {
272
  $exclude = 'all';
273
  $list = '';
274
  $number = '%i%';
 
275
  } else {
276
  extract( (array) $options[$number] );
277
  }
@@ -305,6 +307,12 @@ function ngg_widget_control($widget_args = 1) {
305
  </label>
306
  </p>
307
 
 
 
 
 
 
 
308
  <p>
309
  <label for="ngg_images-width-<?php echo $number; ?>"><?php _e('Width x Height :','nggallery'); ?><br />
310
  <input style="width: 50px; padding:3px;" id="ngg_images-width-<?php echo $number; ?>" name="widget_ngg_images[<?php echo $number; ?>][width]" type="text" value="<?php echo $width; ?>" /> x
@@ -354,6 +362,7 @@ function ngg_widget_control($widget_args = 1) {
354
  $items = $options[$number]['items'];
355
  $exclude = $options[$number]['exclude'];
356
  $list = $options[$number]['list'];
 
357
 
358
  $count = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->nggpictures WHERE exclude != 1 ");
359
  if ($count < $options[$number]['items'])
@@ -378,9 +387,16 @@ function ngg_widget_control($widget_args = 1) {
378
  $imageList = $wpdb->get_results("SELECT t.*, tt.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE tt.exclude != 1 $exclude_list ORDER by rand() limit {$items}");
379
  else
380
  $imageList = $wpdb->get_results("SELECT t.*, tt.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE tt.exclude != 1 $exclude_list ORDER by pid DESC limit 0,$items");
381
-
 
 
 
 
 
 
 
382
  echo $before_widget . $before_title . $title . $after_title;
383
- echo "\n".'<div class="ngg-widget">'."\n";
384
 
385
  if (is_array($imageList)){
386
  foreach($imageList as $image) {
@@ -474,4 +490,4 @@ function nggDisplayRecentImages($number, $width = '75', $height = '50', $exclude
474
  nggWidget::ngg_widget_output($args = array(), 1, $options);
475
  }
476
 
477
- ?>
253
  $options[$widget_number]['width'] = (int) $widget_ngg_images['width'];
254
  $options[$widget_number]['height'] = (int) $widget_ngg_images['height'];
255
  $options[$widget_number]['exclude'] = $widget_ngg_images['exclude'];
256
+ $options[$widget_number]['list'] = $widget_ngg_images['list'];
257
+ $options[$widget_number]['webslice']= (bool) $widget_ngg_images['webslice'];
258
 
259
  }
260
 
273
  $exclude = 'all';
274
  $list = '';
275
  $number = '%i%';
276
+ $webslice = true;
277
  } else {
278
  extract( (array) $options[$number] );
279
  }
307
  </label>
308
  </p>
309
 
310
+ <p>
311
+ <label for="ngg_webslice<?php echo $number; ?>">&nbsp;
312
+ <input id="ngg_webslice<?php echo $number; ?>" name="widget_ngg_images[<?php echo $number; ?>][webslice]" type="checkbox" value="1" <?php checked(true , $webslice); ?> /> <?php _e('Enable IE8 Web Slices','nggallery'); ?>
313
+ </label>
314
+ </p>
315
+
316
  <p>
317
  <label for="ngg_images-width-<?php echo $number; ?>"><?php _e('Width x Height :','nggallery'); ?><br />
318
  <input style="width: 50px; padding:3px;" id="ngg_images-width-<?php echo $number; ?>" name="widget_ngg_images[<?php echo $number; ?>][width]" type="text" value="<?php echo $width; ?>" /> x
362
  $items = $options[$number]['items'];
363
  $exclude = $options[$number]['exclude'];
364
  $list = $options[$number]['list'];
365
+ $webslice = $options[$number]['webslice'];
366
 
367
  $count = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->nggpictures WHERE exclude != 1 ");
368
  if ($count < $options[$number]['items'])
387
  $imageList = $wpdb->get_results("SELECT t.*, tt.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE tt.exclude != 1 $exclude_list ORDER by rand() limit {$items}");
388
  else
389
  $imageList = $wpdb->get_results("SELECT t.*, tt.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE tt.exclude != 1 $exclude_list ORDER by pid DESC limit 0,$items");
390
+
391
+ if ( $webslice ) {
392
+ //TODO: If you change the title, it will not show up in widget admin panel
393
+ $before_title = "\n" . '<div class="hslice" id="ngg-webslice" >' . "\n";
394
+ $before_title .= '<h2 class="widgettitle entry-title">';
395
+ $after_widget = '</div>'."\n" . $after_widget;
396
+ }
397
+
398
  echo $before_widget . $before_title . $title . $after_title;
399
+ echo "\n" . '<div class="ngg-widget entry-content">'. "\n";
400
 
401
  if (is_array($imageList)){
402
  foreach($imageList as $image) {
490
  nggWidget::ngg_widget_output($args = array(), 1, $options);
491
  }
492
 
493
+ ?>