NextGEN Gallery – WordPress Gallery Plugin - Version 1.6.2

Version Description

  • 19.09.2010 =
  • NEW : Added constant NGG_SKIP_LOAD_SCRIPTS to avoid script load
  • Bugfix : Load Tags library with core files
  • Bugfix : Slideshow script failed in IE7, load script now in header
  • Bugfix : Load slideshow widget always
  • Changed : New admin notice for database upgrade
  • Changed : Rework crop feature for featured images
  • Changed : Use site_url() instead get_option ('siteurl'), required for SSL support
Download this release

Release Info

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

Code changes from version 1.6.1 to 1.6.2

admin/overview.php CHANGED
@@ -474,7 +474,7 @@ function ngg_gd_yesNo( $bool ){
474
  */
475
  function ngg_get_serverinfo() {
476
 
477
- global $wpdb;
478
  // Get MYSQL Version
479
  $sqlversion = $wpdb->get_var("SELECT VERSION() AS version");
480
  // GET SQL Mode
@@ -500,7 +500,7 @@ function ngg_get_serverinfo() {
500
  if(ini_get('max_execution_time')) $max_execute = ini_get('max_execution_time');
501
  else $max_execute = __('N/A', 'nggallery');
502
  // Get PHP Memory Limit
503
- if(ini_get('memory_limit')) $memory_limit = ini_get('memory_limit');
504
  else $memory_limit = __('N/A', 'nggallery');
505
  // Get actual memory_get_usage
506
  if (function_exists('memory_get_usage')) $memory_usage = round(memory_get_usage() / 1024 / 1024, 2) . __(' MByte', 'nggallery');
474
  */
475
  function ngg_get_serverinfo() {
476
 
477
+ global $wpdb, $ngg;
478
  // Get MYSQL Version
479
  $sqlversion = $wpdb->get_var("SELECT VERSION() AS version");
480
  // GET SQL Mode
500
  if(ini_get('max_execution_time')) $max_execute = ini_get('max_execution_time');
501
  else $max_execute = __('N/A', 'nggallery');
502
  // Get PHP Memory Limit
503
+ if(ini_get('memory_limit')) $memory_limit = $ngg->memory_limit . 'M';
504
  else $memory_limit = __('N/A', 'nggallery');
505
  // Get actual memory_get_usage
506
  if (function_exists('memory_get_usage')) $memory_usage = round(memory_get_usage() / 1024 / 1024, 2) . __(' MByte', 'nggallery');
admin/rotate.php CHANGED
@@ -36,7 +36,7 @@ $thumb->resize(350,350);
36
  $resizedPreviewInfo = $thumb->newDimensions;
37
  $thumb->destruct();
38
 
39
- $preview_image = get_option ('siteurl') . '/' . 'index.php?callback=image&pid=' . $picture->pid . '&width=350&height=350';
40
 
41
  ?>
42
 
36
  $resizedPreviewInfo = $thumb->newDimensions;
37
  $thumb->destruct();
38
 
39
+ $preview_image = site_url() . '/' . 'index.php?callback=image&pid=' . $picture->pid . '&width=350&height=350';
40
 
41
  ?>
42
 
admin/settings.php CHANGED
@@ -487,7 +487,7 @@ class nggOptions {
487
 
488
  // take the first image as sample
489
  $imageID = $wpdb->get_var("SELECT MIN(pid) FROM $wpdb->nggpictures");
490
- $imageURL = ($imageID) ? $imageURL = '<img src="'. get_option ('siteurl') . '/' . 'index.php?callback=image&amp;pid=' . intval ($imageID) . '&amp;mode=watermark&amp;width=300&amp;height=250" />' : '';
491
 
492
  ?>
493
  <!-- Watermark settings -->
@@ -818,4 +818,4 @@ function ngg_input_checked( $checked, $current) {
818
  if ( $checked == $current)
819
  return ' checked="checked"';
820
  }
821
- ?>
487
 
488
  // take the first image as sample
489
  $imageID = $wpdb->get_var("SELECT MIN(pid) FROM $wpdb->nggpictures");
490
+ $imageURL = ($imageID) ? $imageURL = '<img src="'. site_url() . '/' . 'index.php?callback=image&amp;pid=' . intval ($imageID) . '&amp;mode=watermark&amp;width=300&amp;height=250" />' : '';
491
 
492
  ?>
493
  <!-- Watermark settings -->
818
  if ( $checked == $current)
819
  return ' checked="checked"';
820
  }
821
+ ?>
admin/tinymce/window.php CHANGED
@@ -15,9 +15,9 @@ global $wpdb, $nggdb;
15
  <head>
16
  <title>NextGEN Gallery</title>
17
  <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
18
- <script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
19
- <script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/utils/mctabs.js"></script>
20
- <script language="javascript" type="text/javascript" src="<?php echo get_option('siteurl') ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
21
  <script language="javascript" type="text/javascript" src="<?php echo NGGALLERY_URLPATH ?>admin/tinymce/tinymce.js"></script>
22
  <base target="_self" />
23
  </head>
15
  <head>
16
  <title>NextGEN Gallery</title>
17
  <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
18
+ <script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/tiny_mce_popup.js"></script>
19
+ <script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/mctabs.js"></script>
20
+ <script language="javascript" type="text/javascript" src="<?php echo site_url(); ?>/wp-includes/js/tinymce/utils/form_utils.js"></script>
21
  <script language="javascript" type="text/javascript" src="<?php echo NGGALLERY_URLPATH ?>admin/tinymce/tinymce.js"></script>
22
  <base target="_self" />
23
  </head>
admin/upgrade.php CHANGED
@@ -95,13 +95,14 @@ function ngg_upgrade() {
95
  // add link from album to a page
96
  ngg_maybe_add_column( $wpdb->nggalbum, 'pageid', "BIGINT(20) DEFAULT '0' NOT NULL AFTER sortorder");
97
  }
98
-
99
- // better to flush rewrite rules after upgrades
100
- $nggRewrite->flush();
101
-
102
  // update now the database
103
  update_option( "ngg_db_version", NGG_DBVERSION );
104
  echo __('finished', 'nggallery') . "<br />\n";
 
 
 
 
105
  $wpdb->hide_errors();
106
 
107
  // *** From here we start file operation which could failed sometimes,
95
  // add link from album to a page
96
  ngg_maybe_add_column( $wpdb->nggalbum, 'pageid', "BIGINT(20) DEFAULT '0' NOT NULL AFTER sortorder");
97
  }
98
+
 
 
 
99
  // update now the database
100
  update_option( "ngg_db_version", NGG_DBVERSION );
101
  echo __('finished', 'nggallery') . "<br />\n";
102
+
103
+ // better to flush rewrite rules after upgrades
104
+ $nggRewrite->flush();
105
+
106
  $wpdb->hide_errors();
107
 
108
  // *** From here we start file operation which could failed sometimes,
changelog.txt CHANGED
@@ -6,6 +6,15 @@ by Alex Rabe & NextGEN DEV Team
6
  * TODO : Facebook connector
7
  * TODO : Switch to Plupload (http://www.plupload.com/)
8
 
 
 
 
 
 
 
 
 
 
9
  = V1.6.1 - 08.09.2010 =
10
  * Bugfix : Script load of swfobject.js failed
11
  * Bugfix : Show sideshow also with 1 or 2 images
6
  * TODO : Facebook connector
7
  * TODO : Switch to Plupload (http://www.plupload.com/)
8
 
9
+ = V1.6.2 - 19.09.2010 =
10
+ * NEW : Added constant NGG_SKIP_LOAD_SCRIPTS to avoid script load
11
+ * Bugfix : Load Tags library with core files
12
+ * Bugfix : Slideshow script failed in IE7, load script now in header
13
+ * Bugfix : Load slideshow widget always
14
+ * Changed : New admin notice for database upgrade
15
+ * Changed : Rework crop feature for featured images
16
+ * Changed : Use site_url() instead get_option ('siteurl'), required for SSL support
17
+
18
  = V1.6.1 - 08.09.2010 =
19
  * Bugfix : Script load of swfobject.js failed
20
  * Bugfix : Show sideshow also with 1 or 2 images
js/ngg.slideshow.js CHANGED
@@ -5,7 +5,7 @@ jQuery.fn.nggSlideshow = function ( args ) {
5
  height: 240,
6
  fx: 'fade',
7
  domain: '',
8
- timeout: 5000, };
9
 
10
  var s = jQuery.extend( {}, defaults, args);
11
 
5
  height: 240,
6
  fx: 'fade',
7
  domain: '',
8
+ timeout: 5000 };
9
 
10
  var s = jQuery.extend( {}, defaults, args);
11
 
js/ngg.slideshow.min.js CHANGED
@@ -1,4 +1,4 @@
1
- jQuery.fn.nggSlideshow=function(args){var defaults={id:1,width:320,height:240,fx:'fade',domain:'',timeout:5000,};var s=jQuery.extend({},defaults,args);var obj=this.selector;var stack=[];var url=s.domain+'index.php?callback=json&api_key=true&format=json&method=gallery&id='+s.id;jQuery.getJSON(url,function(r){if(r.stat=="ok"){for(img in r.images){var photo=r.images[img];stack.push(decodeURI(photo['imageURL']));}
2
  var i=1,counter=0;while(stack.length&&i<=3){var img=new Image();img.src=stack.shift();jQuery(img).bind('load',function(){jQuery(obj).append(imageResize(this,s.width,s.height));counter++;if(counter==3||stack.length==0)
3
  startSlideshow();});i++;}}});function startSlideshow(){jQuery(obj+'-loader').empty().remove();jQuery(obj+' img:first').fadeIn(1000,function(){jQuery(obj).cycle({fx:s.fx,containerResize:1,fit:1,timeout:s.timeout,next:obj,before:jCycle_onBefore});});}
4
  function imageResize(img,maxWidth,maxHeight){jQuery(img).css({'display':'none'});if(img.height==0||img.width==0)
1
+ jQuery.fn.nggSlideshow=function(args){var defaults={id:1,width:320,height:240,fx:'fade',domain:'',timeout:5000};var s=jQuery.extend({},defaults,args);var obj=this.selector;var stack=[];var url=s.domain+'index.php?callback=json&api_key=true&format=json&method=gallery&id='+s.id;jQuery.getJSON(url,function(r){if(r.stat=="ok"){for(img in r.images){var photo=r.images[img];stack.push(decodeURI(photo['imageURL']));}
2
  var i=1,counter=0;while(stack.length&&i<=3){var img=new Image();img.src=stack.shift();jQuery(img).bind('load',function(){jQuery(obj).append(imageResize(this,s.width,s.height));counter++;if(counter==3||stack.length==0)
3
  startSlideshow();});i++;}}});function startSlideshow(){jQuery(obj+'-loader').empty().remove();jQuery(obj+' img:first').fadeIn(1000,function(){jQuery(obj).cycle({fx:s.fx,containerResize:1,fit:1,timeout:s.timeout,next:obj,before:jCycle_onBefore});});}
4
  function imageResize(img,maxWidth,maxHeight){jQuery(img).css({'display':'none'});if(img.height==0||img.width==0)
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: 2010-09-05 14:15+0100\n"
6
- "PO-Revision-Date: 2010-09-05 14:23+0100\n"
7
  "Last-Translator: Alex Rabe\n"
8
  "Language-Team: Alex Rabe\n"
9
  "MIME-Version: 1.0\n"
@@ -26,49 +26,57 @@ msgstr "<strong>Übersetzt von : </strong><a target=\"_blank\" href=\"http://ale
26
  msgid "<strong>This translation is not yet updated for Version 1.6.0</strong>. If you would like to help with translation, download the current po from the plugin folder and read <a href=\"http://alexrabe.de/wordpress-plugins/wordtube/translation-of-plugins/\">here</a> how you can translate the plugin."
27
  msgstr "Sollten jemand Rechtschreibfehler, Deppenapostrophe oder andere deutsche Ungereimtheiten finden, freue ich mich jederzeit über einen kurzen Hinweis</p>"
28
 
29
- #: ../nggallery.php:190
30
  msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB higher"
31
  msgstr "Tut mir leid, aber NextGEN-Galerie benötigt minimum 16MB Speicher (Memory Limit) oder mehr"
32
 
33
- #: ../nggallery.php:215
 
 
 
 
 
 
 
 
34
  msgid "Picture tag"
35
  msgstr "Bilder-Stichwort"
36
 
37
- #: ../nggallery.php:216
38
  msgid "Picture tag: %2$l."
39
  msgstr "Bilder-Stichwort: %2$l."
40
 
41
- #: ../nggallery.php:217
42
  msgid "Separate picture tags with commas."
43
  msgstr "Trenne Stichwörter mittels Komma"
44
 
45
- #: ../nggallery.php:313
46
  msgid "L O A D I N G"
47
  msgstr "B I T T E &nbsp;&nbsp;W A R T E N"
48
 
49
- #: ../nggallery.php:314
50
  msgid "Click to Close"
51
  msgstr "Klicken zum Schliessen "
52
 
53
- #: ../nggallery.php:332
54
  msgid "loading"
55
  msgstr "lade..."
56
 
57
- #: ../nggallery.php:472
58
  #: ../nggfunctions.php:916
59
  #: ../admin/admin.php:31
60
  msgid "Overview"
61
  msgstr "Übersicht"
62
 
63
- #: ../nggallery.php:473
64
  msgid "Get help"
65
  msgstr "Hilfe"
66
 
67
- #: ../nggallery.php:474
68
  msgid "Contribute"
69
  msgstr "Mithelfen"
70
 
71
- #: ../nggallery.php:475
72
  msgid "Donate"
73
  msgstr "Spenden"
74
 
@@ -76,7 +84,7 @@ msgstr "Spenden"
76
  msgid "The <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player</a> and <a href=\"http://www.mozilla.com/firefox/\">a browser with Javascript support</a> are needed.."
77
  msgstr "Es wird der <a href=\"http://www.macromedia.com/go/getflashplayer\">Adobe Flash Player</a> benötigt und <a href=\"http://www.mozilla.com/firefox/\">im Browser muss Javascript</a> aktiviert sein."
78
 
79
- #: ../nggfunctions.php:163
80
  #: ../nggfunctions.php:626
81
  msgid "[Gallery not found]"
82
  msgstr "[Galerie nicht gefunden]"
@@ -231,8 +239,8 @@ msgid "Upload failed! "
231
  msgstr "Upload fehlgeschlagen!"
232
 
233
  #: ../admin/addgallery.php:90
234
- #: ../admin/functions.php:927
235
- #: ../admin/functions.php:1027
236
  msgid "No gallery selected !"
237
  msgstr "Keine Galerie ausgewählt !"
238
 
@@ -751,7 +759,7 @@ msgstr "ist schreibgeschützt !"
751
 
752
  #: ../admin/functions.php:65
753
  #: ../admin/functions.php:75
754
- #: ../admin/functions.php:886
755
  msgid "Unable to create directory "
756
  msgstr "Kann Verzeichnis nicht erstellen "
757
 
@@ -801,7 +809,7 @@ msgid "successfully created!"
801
  msgstr "erfolgreich erstellt!"
802
 
803
  #: ../admin/functions.php:205
804
- #: ../admin/functions.php:1003
805
  #: ../admin/manage-galleries.php:128
806
  #: ../admin/manage-images.php:302
807
  #: ../admin/manage.php:215
@@ -852,145 +860,145 @@ msgstr "(Fehler : Konnte Metadaten nicht speichern)"
852
  msgid "(Error : Couldn't not find image)"
853
  msgstr "(Fehler : Konnte das Bild nicht finden)"
854
 
855
- #: ../admin/functions.php:820
856
  msgid "No valid URL path "
857
  msgstr "Kein gültiger URL-Pfad"
858
 
859
- #: ../admin/functions.php:836
860
  msgid "Import via cURL failed."
861
  msgstr "Import via cURL abgebrochen"
862
 
863
- #: ../admin/functions.php:853
864
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
865
  msgstr "Die hochgeladene Datei war keine korrekte Zip-Datei. Servermeldung :"
866
 
867
- #: ../admin/functions.php:870
868
  msgid "Could not get a valid foldername"
869
  msgstr "Konnte keinen gültigen Verzeichnisnamen finden"
870
 
871
- #: ../admin/functions.php:881
872
  #, php-format
873
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
874
  msgstr "Kann das Verzeichnis %s nicht erstellen. Ist das Hauptverzeichnis vielleicht schreibgeschützt ?"
875
 
876
- #: ../admin/functions.php:896
877
  msgid "Zip-File successfully unpacked"
878
  msgstr "Zip-Datei erfolgreich entpackt"
879
 
880
- #: ../admin/functions.php:935
881
- #: ../admin/functions.php:1052
882
  msgid "Failure in database, no gallery path set !"
883
  msgstr "Datenbankfehler! Kein Galerie-Pfad gesetzt !"
884
 
885
- #: ../admin/functions.php:959
886
- #: ../admin/functions.php:1046
887
  msgid "is no valid image file!"
888
  msgstr "ist keine zulässige Bilddatei !"
889
 
890
- #: ../admin/functions.php:973
891
- #: ../admin/functions.php:1172
892
- #: ../admin/functions.php:1247
893
  #, php-format
894
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
895
  msgstr "Kann das Verzeichnis %s nicht erstellen. Ist das Hauptverzeichnis vielleicht schreibgeschützt ?"
896
 
897
- #: ../admin/functions.php:980
898
- #: ../admin/functions.php:1069
899
  msgid "Error, the file could not moved to : "
900
  msgstr "Fehler: Diese Datei kann nicht verschoben werden zu :"
901
 
902
- #: ../admin/functions.php:985
903
- #: ../admin/functions.php:1073
904
  msgid "Error, the file permissions could not set"
905
  msgstr "Fehler: Die Berechtigungen für diese Datei können nicht gesetzt werden"
906
 
907
- #: ../admin/functions.php:1008
908
  msgid " Image(s) successfully added"
909
  msgstr " Bild(er) erfolgreich hinzugefügt"
910
 
911
- #: ../admin/functions.php:1035
912
  msgid "Invalid upload. Error Code : "
913
  msgstr "Ungültiger Upload. Fehler Code :"
914
 
915
- #: ../admin/functions.php:1112
916
  #, php-format
917
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
918
  msgstr "SAFE MODE Einschränkungen ist aktiv. Du musst das Verzeichnis <strong>%s</strong> manuell anlegen."
919
 
920
- #: ../admin/functions.php:1113
921
  #, php-format
922
  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"
923
  msgstr "Wenn der Safe-Mode eingeschaltet ist, überprüft PHP, ob der Besitzer (%s) des Skript mit dem Besitzer (%s) der Datei/Verzeichnis übereinstimmt."
924
 
925
- #: ../admin/functions.php:1166
926
- #: ../admin/functions.php:1241
927
  msgid "The destination gallery does not exist"
928
  msgstr "Die ausgewählte Galerie existiert nicht"
929
 
930
- #: ../admin/functions.php:1197
931
  #, php-format
932
  msgid "Failed to move image %1$s to %2$s"
933
  msgstr "Konnte das Bild %1$s nicht nach %2$s verschieben"
934
 
935
- #: ../admin/functions.php:1217
936
  #, php-format
937
  msgid "Moved %1$s picture(s) to gallery : %2$s ."
938
  msgstr " %1$s Bild(er) in Galerie : %2$s verschoben."
939
 
940
- #: ../admin/functions.php:1274
941
  #, php-format
942
  msgid "Failed to copy image %1$s to %2$s"
943
  msgstr "Konnte das Bild %1$s nicht nach %2$s kopieren"
944
 
945
- #: ../admin/functions.php:1288
946
  #, php-format
947
  msgid "Failed to copy database row for picture %s"
948
  msgstr "Fehler bei der Datenbank-Operation für Bild %s"
949
 
950
- #: ../admin/functions.php:1296
951
  #, php-format
952
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) &raquo; The file already existed in the destination gallery."
953
  msgstr "Bild %1$s (%2$s) als Bild %3$s (%4$s) kopiert &raquo; Die Datei existierte bereits."
954
 
955
- #: ../admin/functions.php:1299
956
  #, php-format
957
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
958
  msgstr "Bild %1$s (%2$s) kopiert als Bild %3$s (%4$s)"
959
 
960
- #: ../admin/functions.php:1308
961
  #, php-format
962
  msgid "Copied %1$s picture(s) to gallery: %2$s ."
963
  msgstr "Kopiere %1$s Bild(er) in die Galerie : %2$s ."
964
 
965
- #: ../admin/functions.php:1418
966
  msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
967
  msgstr "Die Datei überschreitet die erlaubte Grösse (upload_max_filesize) in der php.ini"
968
 
969
- #: ../admin/functions.php:1421
970
  msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"
971
  msgstr "Die Datei ist zu gross"
972
 
973
- #: ../admin/functions.php:1424
974
  msgid "The uploaded file was only partially uploaded"
975
  msgstr "Die Datei wurde nur teilweise hochgeladen"
976
 
977
- #: ../admin/functions.php:1427
978
  msgid "No file was uploaded"
979
  msgstr "Keinen Datei wurde geladen"
980
 
981
- #: ../admin/functions.php:1430
982
  msgid "Missing a temporary folder"
983
  msgstr "Konnte temporäres Verzeichnis nicht finden"
984
 
985
- #: ../admin/functions.php:1433
986
  msgid "Failed to write file to disk"
987
  msgstr "Konnte Datei nicht speichern"
988
 
989
- #: ../admin/functions.php:1436
990
  msgid "File upload stopped by extension"
991
  msgstr "Upload dieser Dateierweiterung nicht erlaubt"
992
 
993
- #: ../admin/functions.php:1439
994
  msgid "Unknown upload error"
995
  msgstr "Unbekannter Uploadfehler"
996
 
@@ -1919,7 +1927,7 @@ msgstr "0 zeige alle verwandten Bilder"
1919
  #: ../admin/settings.php:357
1920
  #: ../admin/settings.php:442
1921
  #: ../admin/settings.php:477
1922
- #: ../admin/settings.php:740
1923
  msgid "More settings"
1924
  msgstr "Mehr Einstellungen"
1925
 
@@ -2189,12 +2197,12 @@ msgid "sec."
2189
  msgstr "Sek."
2190
 
2191
  #: ../admin/settings.php:613
2192
- #: ../admin/settings.php:690
2193
  msgid "Transition / Fade effect"
2194
  msgstr "Fade Effekt"
2195
 
2196
  #: ../admin/settings.php:616
2197
- #: ../admin/settings.php:693
2198
  msgid "fade"
2199
  msgstr "Fade"
2200
 
@@ -2242,143 +2250,143 @@ msgstr "Die Einstellungen werden im JW-Image-Rotator benutzt, in der Version"
2242
  msgid "See more information for the Flash Player on the web page"
2243
  msgstr "Weitere Informationen auf der Flash-Player-Homepage"
2244
 
2245
- #: ../admin/settings.php:637
2246
  msgid "The path to imagerotator.swf is not defined, the slideshow will not work."
2247
  msgstr "Der Pfad zu imagerotator.swf ist nicht gesetzt, die Flash-Diaschau kann dann nicht angezeigt werden"
2248
 
2249
- #: ../admin/settings.php:638
2250
  msgid "If you would like to use the JW Image Rotatator, please download the player <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" target=\"_blank\" >here</a> and upload it to your Upload folder (Default is wp-content/uploads)."
2251
  msgstr "Wenn Du den JW-Image-Rotator (Slideshow) nutzen möchtest, lade Dir die aktuelle Version <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" target=\"_blank\" >hier</a> herunter und übertrage sie dann in Dein WordPress-Upload-Verzeichnis (normalerweise wp-content/uploads),"
2252
 
2253
- #: ../admin/settings.php:645
2254
  msgid "Enable flash slideshow"
2255
  msgstr "Aktiviere Flash Slideshow"
2256
 
2257
- #: ../admin/settings.php:647
2258
  msgid "Integrate the flash based sildeshow for all flash supported devices"
2259
  msgstr "Verwende die Flash Slideshow für alle Flash-unterstützte Geräte"
2260
 
2261
- #: ../admin/settings.php:650
2262
  msgid "Path to the Imagerotator (URL)"
2263
  msgstr "Pfad zum JW-Image-Rotator (URL)"
2264
 
2265
- #: ../admin/settings.php:653
2266
  msgid "Search now"
2267
  msgstr "Suche jetzt"
2268
 
2269
- #: ../admin/settings.php:654
2270
  msgid "Press the button to search automatic for the imagerotator, if you uploaded it to wp-content/uploads or a subfolder"
2271
  msgstr "Drücke 'Suche jetzt' um automatisch den Pfad zum Image-Rotator zu ermitteln, sofern Du den Player in wp-content/uploads oder ein Unterverzeichnis hochgeladen hast."
2272
 
2273
- #: ../admin/settings.php:658
2274
  msgid "Shuffle mode"
2275
  msgstr "Shuffle Modus"
2276
 
2277
- #: ../admin/settings.php:662
2278
  msgid "Show next image on click"
2279
  msgstr "Zeige nächstes Bild bei Klick"
2280
 
2281
- #: ../admin/settings.php:666
2282
  msgid "Show navigation bar"
2283
  msgstr "Zeige Navigations-Leiste"
2284
 
2285
- #: ../admin/settings.php:670
2286
  msgid "Show loading icon"
2287
  msgstr "Zeige Lade-Bildchen"
2288
 
2289
- #: ../admin/settings.php:674
2290
  msgid "Use watermark logo"
2291
  msgstr "Wasserzeichen anzeigen"
2292
 
2293
- #: ../admin/settings.php:676
2294
  msgid "You can change the logo at the watermark settings"
2295
  msgstr "Du kannst den Pfad in Einstellungen für das Wasserzeichen angeben"
2296
 
2297
- #: ../admin/settings.php:679
2298
  msgid "Stretch image"
2299
  msgstr "Bild dehnen"
2300
 
2301
- #: ../admin/settings.php:682
2302
  msgid "true"
2303
  msgstr "Ja"
2304
 
2305
- #: ../admin/settings.php:683
2306
  msgid "false"
2307
  msgstr "Nein"
2308
 
2309
- #: ../admin/settings.php:684
2310
  msgid "fit"
2311
  msgstr "Passend"
2312
 
2313
- #: ../admin/settings.php:685
2314
  msgid "none"
2315
  msgstr "keiner"
2316
 
2317
- #: ../admin/settings.php:694
2318
  msgid "bgfade"
2319
  msgstr "BGFade"
2320
 
2321
- #: ../admin/settings.php:695
2322
  msgid "slowfade"
2323
  msgstr "Slowfade"
2324
 
2325
- #: ../admin/settings.php:696
2326
  msgid "circles"
2327
  msgstr "Kreise"
2328
 
2329
- #: ../admin/settings.php:697
2330
  msgid "bubbles"
2331
  msgstr "Blasen"
2332
 
2333
- #: ../admin/settings.php:698
2334
  msgid "blocks"
2335
  msgstr "Blöcke"
2336
 
2337
- #: ../admin/settings.php:699
2338
  msgid "fluids"
2339
  msgstr "Fluids"
2340
 
2341
- #: ../admin/settings.php:700
2342
  msgid "flash"
2343
  msgstr "Flash"
2344
 
2345
- #: ../admin/settings.php:701
2346
  msgid "lines"
2347
  msgstr "Linien"
2348
 
2349
- #: ../admin/settings.php:702
2350
  msgid "random"
2351
  msgstr "Zufall"
2352
 
2353
- #: ../admin/settings.php:707
2354
  msgid "Use slow zooming effect"
2355
  msgstr "nutze Zoom-Effekt"
2356
 
2357
- #: ../admin/settings.php:711
2358
  msgid "Background Color"
2359
  msgstr "Hintergrund (BG) Farbe"
2360
 
2361
- #: ../admin/settings.php:716
2362
  msgid "Texts / Buttons Color"
2363
  msgstr "Text- / Button Farbe"
2364
 
2365
- #: ../admin/settings.php:721
2366
  msgid "Rollover / Active Color"
2367
  msgstr "Rollover / Aktiv (Link) Farbe"
2368
 
2369
- #: ../admin/settings.php:726
2370
  msgid "Screen Color"
2371
  msgstr "Seiten-Farbe"
2372
 
2373
- #: ../admin/settings.php:731
2374
  msgid "Background music (URL)"
2375
  msgstr "Hintergrundmusik (URL)"
2376
 
2377
- #: ../admin/settings.php:735
2378
  msgid "Try XHTML validation (with CDATA)"
2379
  msgstr "Integriere XHTML-Validierung (mittels CDATA)"
2380
 
2381
- #: ../admin/settings.php:737
2382
  msgid "Important : Could causes problem at some browser. Please recheck your page."
2383
  msgstr "Wichtig : Es könnten Probleme bei einigen Browser entstehen. Unbedingt Seite danach prüfen."
2384
 
@@ -2655,80 +2663,80 @@ msgstr "Schlagwörter setzen:"
2655
  msgid "Upgrade database structure..."
2656
  msgstr "Aktualisiere die Datenbank-Struturen..."
2657
 
2658
- #: ../admin/upgrade.php:104
2659
- #: ../admin/upgrade.php:114
2660
- #: ../admin/upgrade.php:121
2661
- #: ../admin/upgrade.php:132
2662
- #: ../admin/upgrade.php:146
2663
  msgid "finished"
2664
  msgstr "beendet"
2665
 
2666
- #: ../admin/upgrade.php:112
2667
  msgid "Update file structure..."
2668
  msgstr "Aktualisiere Verzeichnisse..."
2669
 
2670
- #: ../admin/upgrade.php:119
2671
  msgid "Import date and time information..."
2672
  msgstr "Importiere Datum/Uhrzeit..."
2673
 
2674
- #: ../admin/upgrade.php:127
2675
  msgid "Move imagerotator to new location..."
2676
  msgstr "Verschiebe den Image-Rotator in ein neues Verzeichnis..."
2677
 
2678
- #: ../admin/upgrade.php:138
2679
  msgid "Update settings..."
2680
  msgstr "Einstellungen gespeichert..."
2681
 
2682
- #: ../admin/upgrade.php:152
2683
  msgid "Updated widget structure. If you used NextGEN Widgets, you need to setup them again..."
2684
  msgstr "Die Widgets wurden überarbeitet. Wenn Du NextGEN Widgets nutzt, musst du Sie nun neu einfügen..."
2685
 
2686
- #: ../admin/upgrade.php:160
2687
  msgid "Updated options."
2688
  msgstr "Einstellungen gespeichert."
2689
 
2690
- #: ../admin/upgrade.php:166
2691
  msgid "Could not find NextGEN Gallery database tables, upgrade failed !"
2692
  msgstr "Konnte die NextGEN Gallery Tabellen nicht finden, Upgrade fehlgeschlagen !"
2693
 
2694
- #: ../admin/upgrade.php:229
2695
  msgid "Some folders/files could not renamed, please recheck the permission and rescan the folder in the manage gallery section."
2696
  msgstr "Einige Verzeichnisse / Bilder konnten nicht umbenannt werden, bitte überprüfe die Zugriffsrechte und scanne dann das Verzeichnis neu ein."
2697
 
2698
- #: ../admin/upgrade.php:231
2699
  msgid "Rename failed"
2700
  msgstr "Konnte nicht umbenannt werden"
2701
 
2702
- #: ../admin/upgrade.php:327
2703
- #: ../admin/upgrade.php:346
2704
  msgid "Upgrade NextGEN Gallery"
2705
  msgstr "NextGEN-Gallery aktualisieren"
2706
 
2707
- #: ../admin/upgrade.php:328
2708
  msgid "The script detect that you upgrade from a older version."
2709
  msgstr "Es wurde eine ältere NextGEN-Datenbank erkannt."
2710
 
2711
- #: ../admin/upgrade.php:329
2712
  msgid "Your database tables for NextGEN Gallery is out-of-date, and must be upgraded before you can continue."
2713
  msgstr "Deine Datenbanktabellen für NextGEN-Gallery sind nicht auf dem aktuellen Stand, sie müssen jetzt aktualisiert werden."
2714
 
2715
- #: ../admin/upgrade.php:330
2716
  msgid "If you would like to downgrade later, please make first a complete backup of your database and the images."
2717
  msgstr "Wenn Du wieder auf eine ältere Version zurückgehen möchtest, solltest Du vorher die Datenbank sichern."
2718
 
2719
- #: ../admin/upgrade.php:331
2720
  msgid "The upgrade process may take a while, so please be patient."
2721
  msgstr "Der Upgrade-Prozess kann etwas dauern, bitte sei geduldig..."
2722
 
2723
- #: ../admin/upgrade.php:332
2724
  msgid "Start upgrade now"
2725
  msgstr "Aktualisierung starten"
2726
 
2727
- #: ../admin/upgrade.php:348
2728
  msgid "Upgrade finished..."
2729
  msgstr "Upgrade beendet..."
2730
 
2731
- #: ../admin/upgrade.php:349
2732
  msgid "Continue"
2733
  msgstr "Weiter"
2734
 
@@ -2857,7 +2865,7 @@ msgstr "Rechts"
2857
  msgid "Insert"
2858
  msgstr "Einfügen"
2859
 
2860
- #: ../lib/core.php:368
2861
  #, php-format
2862
  msgid "Note : Based on your server memory limit you should not upload larger images then <strong>%d x %d</strong> pixel"
2863
  msgstr "Hinweis: Basierend auf der Speicherbegrenzung auf dem Server, solltest Du keine Bilder grösser als <strong>%d x %d</strong> Pixel hochladen"
@@ -3205,7 +3213,7 @@ msgid "Link to the main image feed"
3205
  msgstr "Link zum Bilder-Feed"
3206
 
3207
  #: ../widgets/media-rss-widget.php:79
3208
- #: ../widgets/widgets.php:205
3209
  msgid "Title :"
3210
  msgstr "Titel :"
3211
 
@@ -3233,79 +3241,79 @@ msgstr "Binde eine NextGEN-Gallery-Slideshow ein"
3233
  msgid "NextGEN Slideshow"
3234
  msgstr "NextGEN-Diashow"
3235
 
3236
- #: ../widgets/widgets.php:68
3237
  msgid "<a href=\"http://www.macromedia.com/go/getflashplayer\">Get the Flash Player</a> to see the slideshow."
3238
  msgstr "<a href=\"http://www.macromedia.com/go/getflashplayer\">Lade Dir den Flash Player</a>, um die Diashow zu sehen."
3239
 
3240
- #: ../widgets/widgets.php:125
3241
  msgid "Title:"
3242
  msgstr "Titel:"
3243
 
3244
- #: ../widgets/widgets.php:127
3245
  msgid "Select Gallery:"
3246
  msgstr "Wähle Galerie"
3247
 
3248
- #: ../widgets/widgets.php:129
3249
  msgid "All images"
3250
  msgstr "Alle Bilder"
3251
 
3252
- #: ../widgets/widgets.php:141
3253
  msgid "Height:"
3254
  msgstr "Höhe:"
3255
 
3256
- #: ../widgets/widgets.php:142
3257
  msgid "Width:"
3258
  msgstr "Breite:"
3259
 
3260
- #: ../widgets/widgets.php:164
3261
  msgid "Add recent or random images from the galleries"
3262
  msgstr "Füge die neusten Bilder oder Zufallsbilder aus NextGEN-Gallery ein"
3263
 
3264
- #: ../widgets/widgets.php:165
3265
  msgid "NextGEN Widget"
3266
  msgstr "NextGEN-Widget"
3267
 
3268
- #: ../widgets/widgets.php:211
3269
  msgid "Show :"
3270
  msgstr "Zeige als :"
3271
 
3272
- #: ../widgets/widgets.php:217
3273
  msgid "Original images"
3274
  msgstr "Original Bilder"
3275
 
3276
- #: ../widgets/widgets.php:226
3277
  msgid "recent added "
3278
  msgstr "zuletzt hinzugefügt"
3279
 
3280
- #: ../widgets/widgets.php:232
3281
  msgid "Enable IE8 Web Slices"
3282
  msgstr "IE8 Web Slices aktivieren"
3283
 
3284
- #: ../widgets/widgets.php:237
3285
  msgid "Width x Height :"
3286
  msgstr "Breite x Höhe :"
3287
 
3288
- #: ../widgets/widgets.php:243
3289
  msgid "Select :"
3290
  msgstr "Wähle :"
3291
 
3292
- #: ../widgets/widgets.php:245
3293
  msgid "All galleries"
3294
  msgstr "Alle Galerien"
3295
 
3296
- #: ../widgets/widgets.php:246
3297
  msgid "Only which are not listed"
3298
  msgstr "Nur ungelistete"
3299
 
3300
- #: ../widgets/widgets.php:247
3301
  msgid "Only which are listed"
3302
  msgstr "Nur gelistete"
3303
 
3304
- #: ../widgets/widgets.php:253
3305
  msgid "Gallery ID :"
3306
  msgstr "Galerie-ID :"
3307
 
3308
- #: ../widgets/widgets.php:255
3309
  msgid "Gallery IDs, separated by commas."
3310
  msgstr "Galerie-IDs, mit Kommas getrennt"
3311
 
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-09-18 13:20+0100\n"
6
+ "PO-Revision-Date: 2010-09-18 13:21+0100\n"
7
  "Last-Translator: Alex Rabe\n"
8
  "Language-Team: Alex Rabe\n"
9
  "MIME-Version: 1.0\n"
26
  msgid "<strong>This translation is not yet updated for Version 1.6.0</strong>. If you would like to help with translation, download the current po from the plugin folder and read <a href=\"http://alexrabe.de/wordpress-plugins/wordtube/translation-of-plugins/\">here</a> how you can translate the plugin."
27
  msgstr "Sollten jemand Rechtschreibfehler, Deppenapostrophe oder andere deutsche Ungereimtheiten finden, freue ich mich jederzeit über einen kurzen Hinweis</p>"
28
 
29
+ #: ../nggallery.php:195
30
  msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB higher"
31
  msgstr "Tut mir leid, aber NextGEN-Galerie benötigt minimum 16MB Speicher (Memory Limit) oder mehr"
32
 
33
+ #: ../nggallery.php:213
34
+ msgid "Please update the database of NextGEN Gallery."
35
+ msgstr "Bitte aktualisiere die Datenbank von NextGEN Gallery."
36
+
37
+ #: ../nggallery.php:213
38
+ msgid "Click here to proceed."
39
+ msgstr "Hier klicken um fortzufahren."
40
+
41
+ #: ../nggallery.php:236
42
  msgid "Picture tag"
43
  msgstr "Bilder-Stichwort"
44
 
45
+ #: ../nggallery.php:237
46
  msgid "Picture tag: %2$l."
47
  msgstr "Bilder-Stichwort: %2$l."
48
 
49
+ #: ../nggallery.php:238
50
  msgid "Separate picture tags with commas."
51
  msgstr "Trenne Stichwörter mittels Komma"
52
 
53
+ #: ../nggallery.php:338
54
  msgid "L O A D I N G"
55
  msgstr "B I T T E &nbsp;&nbsp;W A R T E N"
56
 
57
+ #: ../nggallery.php:339
58
  msgid "Click to Close"
59
  msgstr "Klicken zum Schliessen "
60
 
61
+ #: ../nggallery.php:360
62
  msgid "loading"
63
  msgstr "lade..."
64
 
65
+ #: ../nggallery.php:500
66
  #: ../nggfunctions.php:916
67
  #: ../admin/admin.php:31
68
  msgid "Overview"
69
  msgstr "Übersicht"
70
 
71
+ #: ../nggallery.php:501
72
  msgid "Get help"
73
  msgstr "Hilfe"
74
 
75
+ #: ../nggallery.php:502
76
  msgid "Contribute"
77
  msgstr "Mithelfen"
78
 
79
+ #: ../nggallery.php:503
80
  msgid "Donate"
81
  msgstr "Spenden"
82
 
84
  msgid "The <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player</a> and <a href=\"http://www.mozilla.com/firefox/\">a browser with Javascript support</a> are needed.."
85
  msgstr "Es wird der <a href=\"http://www.macromedia.com/go/getflashplayer\">Adobe Flash Player</a> benötigt und <a href=\"http://www.mozilla.com/firefox/\">im Browser muss Javascript</a> aktiviert sein."
86
 
87
+ #: ../nggfunctions.php:161
88
  #: ../nggfunctions.php:626
89
  msgid "[Gallery not found]"
90
  msgstr "[Galerie nicht gefunden]"
239
  msgstr "Upload fehlgeschlagen!"
240
 
241
  #: ../admin/addgallery.php:90
242
+ #: ../admin/functions.php:928
243
+ #: ../admin/functions.php:1028
244
  msgid "No gallery selected !"
245
  msgstr "Keine Galerie ausgewählt !"
246
 
759
 
760
  #: ../admin/functions.php:65
761
  #: ../admin/functions.php:75
762
+ #: ../admin/functions.php:887
763
  msgid "Unable to create directory "
764
  msgstr "Kann Verzeichnis nicht erstellen "
765
 
809
  msgstr "erfolgreich erstellt!"
810
 
811
  #: ../admin/functions.php:205
812
+ #: ../admin/functions.php:1004
813
  #: ../admin/manage-galleries.php:128
814
  #: ../admin/manage-images.php:302
815
  #: ../admin/manage.php:215
860
  msgid "(Error : Couldn't not find image)"
861
  msgstr "(Fehler : Konnte das Bild nicht finden)"
862
 
863
+ #: ../admin/functions.php:821
864
  msgid "No valid URL path "
865
  msgstr "Kein gültiger URL-Pfad"
866
 
867
+ #: ../admin/functions.php:837
868
  msgid "Import via cURL failed."
869
  msgstr "Import via cURL abgebrochen"
870
 
871
+ #: ../admin/functions.php:854
872
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
873
  msgstr "Die hochgeladene Datei war keine korrekte Zip-Datei. Servermeldung :"
874
 
875
+ #: ../admin/functions.php:871
876
  msgid "Could not get a valid foldername"
877
  msgstr "Konnte keinen gültigen Verzeichnisnamen finden"
878
 
879
+ #: ../admin/functions.php:882
880
  #, php-format
881
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
882
  msgstr "Kann das Verzeichnis %s nicht erstellen. Ist das Hauptverzeichnis vielleicht schreibgeschützt ?"
883
 
884
+ #: ../admin/functions.php:897
885
  msgid "Zip-File successfully unpacked"
886
  msgstr "Zip-Datei erfolgreich entpackt"
887
 
888
+ #: ../admin/functions.php:936
889
+ #: ../admin/functions.php:1053
890
  msgid "Failure in database, no gallery path set !"
891
  msgstr "Datenbankfehler! Kein Galerie-Pfad gesetzt !"
892
 
893
+ #: ../admin/functions.php:960
894
+ #: ../admin/functions.php:1047
895
  msgid "is no valid image file!"
896
  msgstr "ist keine zulässige Bilddatei !"
897
 
898
+ #: ../admin/functions.php:974
899
+ #: ../admin/functions.php:1173
900
+ #: ../admin/functions.php:1248
901
  #, php-format
902
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
903
  msgstr "Kann das Verzeichnis %s nicht erstellen. Ist das Hauptverzeichnis vielleicht schreibgeschützt ?"
904
 
905
+ #: ../admin/functions.php:981
906
+ #: ../admin/functions.php:1070
907
  msgid "Error, the file could not moved to : "
908
  msgstr "Fehler: Diese Datei kann nicht verschoben werden zu :"
909
 
910
+ #: ../admin/functions.php:986
911
+ #: ../admin/functions.php:1074
912
  msgid "Error, the file permissions could not set"
913
  msgstr "Fehler: Die Berechtigungen für diese Datei können nicht gesetzt werden"
914
 
915
+ #: ../admin/functions.php:1009
916
  msgid " Image(s) successfully added"
917
  msgstr " Bild(er) erfolgreich hinzugefügt"
918
 
919
+ #: ../admin/functions.php:1036
920
  msgid "Invalid upload. Error Code : "
921
  msgstr "Ungültiger Upload. Fehler Code :"
922
 
923
+ #: ../admin/functions.php:1113
924
  #, php-format
925
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
926
  msgstr "SAFE MODE Einschränkungen ist aktiv. Du musst das Verzeichnis <strong>%s</strong> manuell anlegen."
927
 
928
+ #: ../admin/functions.php:1114
929
  #, php-format
930
  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"
931
  msgstr "Wenn der Safe-Mode eingeschaltet ist, überprüft PHP, ob der Besitzer (%s) des Skript mit dem Besitzer (%s) der Datei/Verzeichnis übereinstimmt."
932
 
933
+ #: ../admin/functions.php:1167
934
+ #: ../admin/functions.php:1242
935
  msgid "The destination gallery does not exist"
936
  msgstr "Die ausgewählte Galerie existiert nicht"
937
 
938
+ #: ../admin/functions.php:1198
939
  #, php-format
940
  msgid "Failed to move image %1$s to %2$s"
941
  msgstr "Konnte das Bild %1$s nicht nach %2$s verschieben"
942
 
943
+ #: ../admin/functions.php:1218
944
  #, php-format
945
  msgid "Moved %1$s picture(s) to gallery : %2$s ."
946
  msgstr " %1$s Bild(er) in Galerie : %2$s verschoben."
947
 
948
+ #: ../admin/functions.php:1275
949
  #, php-format
950
  msgid "Failed to copy image %1$s to %2$s"
951
  msgstr "Konnte das Bild %1$s nicht nach %2$s kopieren"
952
 
953
+ #: ../admin/functions.php:1289
954
  #, php-format
955
  msgid "Failed to copy database row for picture %s"
956
  msgstr "Fehler bei der Datenbank-Operation für Bild %s"
957
 
958
+ #: ../admin/functions.php:1297
959
  #, php-format
960
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) &raquo; The file already existed in the destination gallery."
961
  msgstr "Bild %1$s (%2$s) als Bild %3$s (%4$s) kopiert &raquo; Die Datei existierte bereits."
962
 
963
+ #: ../admin/functions.php:1300
964
  #, php-format
965
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
966
  msgstr "Bild %1$s (%2$s) kopiert als Bild %3$s (%4$s)"
967
 
968
+ #: ../admin/functions.php:1309
969
  #, php-format
970
  msgid "Copied %1$s picture(s) to gallery: %2$s ."
971
  msgstr "Kopiere %1$s Bild(er) in die Galerie : %2$s ."
972
 
973
+ #: ../admin/functions.php:1419
974
  msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
975
  msgstr "Die Datei überschreitet die erlaubte Grösse (upload_max_filesize) in der php.ini"
976
 
977
+ #: ../admin/functions.php:1422
978
  msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"
979
  msgstr "Die Datei ist zu gross"
980
 
981
+ #: ../admin/functions.php:1425
982
  msgid "The uploaded file was only partially uploaded"
983
  msgstr "Die Datei wurde nur teilweise hochgeladen"
984
 
985
+ #: ../admin/functions.php:1428
986
  msgid "No file was uploaded"
987
  msgstr "Keinen Datei wurde geladen"
988
 
989
+ #: ../admin/functions.php:1431
990
  msgid "Missing a temporary folder"
991
  msgstr "Konnte temporäres Verzeichnis nicht finden"
992
 
993
+ #: ../admin/functions.php:1434
994
  msgid "Failed to write file to disk"
995
  msgstr "Konnte Datei nicht speichern"
996
 
997
+ #: ../admin/functions.php:1437
998
  msgid "File upload stopped by extension"
999
  msgstr "Upload dieser Dateierweiterung nicht erlaubt"
1000
 
1001
+ #: ../admin/functions.php:1440
1002
  msgid "Unknown upload error"
1003
  msgstr "Unbekannter Uploadfehler"
1004
 
1927
  #: ../admin/settings.php:357
1928
  #: ../admin/settings.php:442
1929
  #: ../admin/settings.php:477
1930
+ #: ../admin/settings.php:738
1931
  msgid "More settings"
1932
  msgstr "Mehr Einstellungen"
1933
 
2197
  msgstr "Sek."
2198
 
2199
  #: ../admin/settings.php:613
2200
+ #: ../admin/settings.php:688
2201
  msgid "Transition / Fade effect"
2202
  msgstr "Fade Effekt"
2203
 
2204
  #: ../admin/settings.php:616
2205
+ #: ../admin/settings.php:691
2206
  msgid "fade"
2207
  msgstr "Fade"
2208
 
2250
  msgid "See more information for the Flash Player on the web page"
2251
  msgstr "Weitere Informationen auf der Flash-Player-Homepage"
2252
 
2253
+ #: ../admin/settings.php:636
2254
  msgid "The path to imagerotator.swf is not defined, the slideshow will not work."
2255
  msgstr "Der Pfad zu imagerotator.swf ist nicht gesetzt, die Flash-Diaschau kann dann nicht angezeigt werden"
2256
 
2257
+ #: ../admin/settings.php:637
2258
  msgid "If you would like to use the JW Image Rotatator, please download the player <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" target=\"_blank\" >here</a> and upload it to your Upload folder (Default is wp-content/uploads)."
2259
  msgstr "Wenn Du den JW-Image-Rotator (Slideshow) nutzen möchtest, lade Dir die aktuelle Version <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" target=\"_blank\" >hier</a> herunter und übertrage sie dann in Dein WordPress-Upload-Verzeichnis (normalerweise wp-content/uploads),"
2260
 
2261
+ #: ../admin/settings.php:643
2262
  msgid "Enable flash slideshow"
2263
  msgstr "Aktiviere Flash Slideshow"
2264
 
2265
+ #: ../admin/settings.php:645
2266
  msgid "Integrate the flash based sildeshow for all flash supported devices"
2267
  msgstr "Verwende die Flash Slideshow für alle Flash-unterstützte Geräte"
2268
 
2269
+ #: ../admin/settings.php:648
2270
  msgid "Path to the Imagerotator (URL)"
2271
  msgstr "Pfad zum JW-Image-Rotator (URL)"
2272
 
2273
+ #: ../admin/settings.php:651
2274
  msgid "Search now"
2275
  msgstr "Suche jetzt"
2276
 
2277
+ #: ../admin/settings.php:652
2278
  msgid "Press the button to search automatic for the imagerotator, if you uploaded it to wp-content/uploads or a subfolder"
2279
  msgstr "Drücke 'Suche jetzt' um automatisch den Pfad zum Image-Rotator zu ermitteln, sofern Du den Player in wp-content/uploads oder ein Unterverzeichnis hochgeladen hast."
2280
 
2281
+ #: ../admin/settings.php:656
2282
  msgid "Shuffle mode"
2283
  msgstr "Shuffle Modus"
2284
 
2285
+ #: ../admin/settings.php:660
2286
  msgid "Show next image on click"
2287
  msgstr "Zeige nächstes Bild bei Klick"
2288
 
2289
+ #: ../admin/settings.php:664
2290
  msgid "Show navigation bar"
2291
  msgstr "Zeige Navigations-Leiste"
2292
 
2293
+ #: ../admin/settings.php:668
2294
  msgid "Show loading icon"
2295
  msgstr "Zeige Lade-Bildchen"
2296
 
2297
+ #: ../admin/settings.php:672
2298
  msgid "Use watermark logo"
2299
  msgstr "Wasserzeichen anzeigen"
2300
 
2301
+ #: ../admin/settings.php:674
2302
  msgid "You can change the logo at the watermark settings"
2303
  msgstr "Du kannst den Pfad in Einstellungen für das Wasserzeichen angeben"
2304
 
2305
+ #: ../admin/settings.php:677
2306
  msgid "Stretch image"
2307
  msgstr "Bild dehnen"
2308
 
2309
+ #: ../admin/settings.php:680
2310
  msgid "true"
2311
  msgstr "Ja"
2312
 
2313
+ #: ../admin/settings.php:681
2314
  msgid "false"
2315
  msgstr "Nein"
2316
 
2317
+ #: ../admin/settings.php:682
2318
  msgid "fit"
2319
  msgstr "Passend"
2320
 
2321
+ #: ../admin/settings.php:683
2322
  msgid "none"
2323
  msgstr "keiner"
2324
 
2325
+ #: ../admin/settings.php:692
2326
  msgid "bgfade"
2327
  msgstr "BGFade"
2328
 
2329
+ #: ../admin/settings.php:693
2330
  msgid "slowfade"
2331
  msgstr "Slowfade"
2332
 
2333
+ #: ../admin/settings.php:694
2334
  msgid "circles"
2335
  msgstr "Kreise"
2336
 
2337
+ #: ../admin/settings.php:695
2338
  msgid "bubbles"
2339
  msgstr "Blasen"
2340
 
2341
+ #: ../admin/settings.php:696
2342
  msgid "blocks"
2343
  msgstr "Blöcke"
2344
 
2345
+ #: ../admin/settings.php:697
2346
  msgid "fluids"
2347
  msgstr "Fluids"
2348
 
2349
+ #: ../admin/settings.php:698
2350
  msgid "flash"
2351
  msgstr "Flash"
2352
 
2353
+ #: ../admin/settings.php:699
2354
  msgid "lines"
2355
  msgstr "Linien"
2356
 
2357
+ #: ../admin/settings.php:700
2358
  msgid "random"
2359
  msgstr "Zufall"
2360
 
2361
+ #: ../admin/settings.php:705
2362
  msgid "Use slow zooming effect"
2363
  msgstr "nutze Zoom-Effekt"
2364
 
2365
+ #: ../admin/settings.php:709
2366
  msgid "Background Color"
2367
  msgstr "Hintergrund (BG) Farbe"
2368
 
2369
+ #: ../admin/settings.php:714
2370
  msgid "Texts / Buttons Color"
2371
  msgstr "Text- / Button Farbe"
2372
 
2373
+ #: ../admin/settings.php:719
2374
  msgid "Rollover / Active Color"
2375
  msgstr "Rollover / Aktiv (Link) Farbe"
2376
 
2377
+ #: ../admin/settings.php:724
2378
  msgid "Screen Color"
2379
  msgstr "Seiten-Farbe"
2380
 
2381
+ #: ../admin/settings.php:729
2382
  msgid "Background music (URL)"
2383
  msgstr "Hintergrundmusik (URL)"
2384
 
2385
+ #: ../admin/settings.php:733
2386
  msgid "Try XHTML validation (with CDATA)"
2387
  msgstr "Integriere XHTML-Validierung (mittels CDATA)"
2388
 
2389
+ #: ../admin/settings.php:735
2390
  msgid "Important : Could causes problem at some browser. Please recheck your page."
2391
  msgstr "Wichtig : Es könnten Probleme bei einigen Browser entstehen. Unbedingt Seite danach prüfen."
2392
 
2663
  msgid "Upgrade database structure..."
2664
  msgstr "Aktualisiere die Datenbank-Struturen..."
2665
 
2666
+ #: ../admin/upgrade.php:101
2667
+ #: ../admin/upgrade.php:115
2668
+ #: ../admin/upgrade.php:122
2669
+ #: ../admin/upgrade.php:133
2670
+ #: ../admin/upgrade.php:147
2671
  msgid "finished"
2672
  msgstr "beendet"
2673
 
2674
+ #: ../admin/upgrade.php:113
2675
  msgid "Update file structure..."
2676
  msgstr "Aktualisiere Verzeichnisse..."
2677
 
2678
+ #: ../admin/upgrade.php:120
2679
  msgid "Import date and time information..."
2680
  msgstr "Importiere Datum/Uhrzeit..."
2681
 
2682
+ #: ../admin/upgrade.php:128
2683
  msgid "Move imagerotator to new location..."
2684
  msgstr "Verschiebe den Image-Rotator in ein neues Verzeichnis..."
2685
 
2686
+ #: ../admin/upgrade.php:139
2687
  msgid "Update settings..."
2688
  msgstr "Einstellungen gespeichert..."
2689
 
2690
+ #: ../admin/upgrade.php:153
2691
  msgid "Updated widget structure. If you used NextGEN Widgets, you need to setup them again..."
2692
  msgstr "Die Widgets wurden überarbeitet. Wenn Du NextGEN Widgets nutzt, musst du Sie nun neu einfügen..."
2693
 
2694
+ #: ../admin/upgrade.php:161
2695
  msgid "Updated options."
2696
  msgstr "Einstellungen gespeichert."
2697
 
2698
+ #: ../admin/upgrade.php:167
2699
  msgid "Could not find NextGEN Gallery database tables, upgrade failed !"
2700
  msgstr "Konnte die NextGEN Gallery Tabellen nicht finden, Upgrade fehlgeschlagen !"
2701
 
2702
+ #: ../admin/upgrade.php:230
2703
  msgid "Some folders/files could not renamed, please recheck the permission and rescan the folder in the manage gallery section."
2704
  msgstr "Einige Verzeichnisse / Bilder konnten nicht umbenannt werden, bitte überprüfe die Zugriffsrechte und scanne dann das Verzeichnis neu ein."
2705
 
2706
+ #: ../admin/upgrade.php:232
2707
  msgid "Rename failed"
2708
  msgstr "Konnte nicht umbenannt werden"
2709
 
2710
+ #: ../admin/upgrade.php:328
2711
+ #: ../admin/upgrade.php:347
2712
  msgid "Upgrade NextGEN Gallery"
2713
  msgstr "NextGEN-Gallery aktualisieren"
2714
 
2715
+ #: ../admin/upgrade.php:329
2716
  msgid "The script detect that you upgrade from a older version."
2717
  msgstr "Es wurde eine ältere NextGEN-Datenbank erkannt."
2718
 
2719
+ #: ../admin/upgrade.php:330
2720
  msgid "Your database tables for NextGEN Gallery is out-of-date, and must be upgraded before you can continue."
2721
  msgstr "Deine Datenbanktabellen für NextGEN-Gallery sind nicht auf dem aktuellen Stand, sie müssen jetzt aktualisiert werden."
2722
 
2723
+ #: ../admin/upgrade.php:331
2724
  msgid "If you would like to downgrade later, please make first a complete backup of your database and the images."
2725
  msgstr "Wenn Du wieder auf eine ältere Version zurückgehen möchtest, solltest Du vorher die Datenbank sichern."
2726
 
2727
+ #: ../admin/upgrade.php:332
2728
  msgid "The upgrade process may take a while, so please be patient."
2729
  msgstr "Der Upgrade-Prozess kann etwas dauern, bitte sei geduldig..."
2730
 
2731
+ #: ../admin/upgrade.php:333
2732
  msgid "Start upgrade now"
2733
  msgstr "Aktualisierung starten"
2734
 
2735
+ #: ../admin/upgrade.php:349
2736
  msgid "Upgrade finished..."
2737
  msgstr "Upgrade beendet..."
2738
 
2739
+ #: ../admin/upgrade.php:350
2740
  msgid "Continue"
2741
  msgstr "Weiter"
2742
 
2865
  msgid "Insert"
2866
  msgstr "Einfügen"
2867
 
2868
+ #: ../lib/core.php:379
2869
  #, php-format
2870
  msgid "Note : Based on your server memory limit you should not upload larger images then <strong>%d x %d</strong> pixel"
2871
  msgstr "Hinweis: Basierend auf der Speicherbegrenzung auf dem Server, solltest Du keine Bilder grösser als <strong>%d x %d</strong> Pixel hochladen"
3213
  msgstr "Link zum Bilder-Feed"
3214
 
3215
  #: ../widgets/media-rss-widget.php:79
3216
+ #: ../widgets/widgets.php:201
3217
  msgid "Title :"
3218
  msgstr "Titel :"
3219
 
3241
  msgid "NextGEN Slideshow"
3242
  msgstr "NextGEN-Diashow"
3243
 
3244
+ #: ../widgets/widgets.php:64
3245
  msgid "<a href=\"http://www.macromedia.com/go/getflashplayer\">Get the Flash Player</a> to see the slideshow."
3246
  msgstr "<a href=\"http://www.macromedia.com/go/getflashplayer\">Lade Dir den Flash Player</a>, um die Diashow zu sehen."
3247
 
3248
+ #: ../widgets/widgets.php:121
3249
  msgid "Title:"
3250
  msgstr "Titel:"
3251
 
3252
+ #: ../widgets/widgets.php:123
3253
  msgid "Select Gallery:"
3254
  msgstr "Wähle Galerie"
3255
 
3256
+ #: ../widgets/widgets.php:125
3257
  msgid "All images"
3258
  msgstr "Alle Bilder"
3259
 
3260
+ #: ../widgets/widgets.php:137
3261
  msgid "Height:"
3262
  msgstr "Höhe:"
3263
 
3264
+ #: ../widgets/widgets.php:138
3265
  msgid "Width:"
3266
  msgstr "Breite:"
3267
 
3268
+ #: ../widgets/widgets.php:160
3269
  msgid "Add recent or random images from the galleries"
3270
  msgstr "Füge die neusten Bilder oder Zufallsbilder aus NextGEN-Gallery ein"
3271
 
3272
+ #: ../widgets/widgets.php:161
3273
  msgid "NextGEN Widget"
3274
  msgstr "NextGEN-Widget"
3275
 
3276
+ #: ../widgets/widgets.php:207
3277
  msgid "Show :"
3278
  msgstr "Zeige als :"
3279
 
3280
+ #: ../widgets/widgets.php:213
3281
  msgid "Original images"
3282
  msgstr "Original Bilder"
3283
 
3284
+ #: ../widgets/widgets.php:222
3285
  msgid "recent added "
3286
  msgstr "zuletzt hinzugefügt"
3287
 
3288
+ #: ../widgets/widgets.php:228
3289
  msgid "Enable IE8 Web Slices"
3290
  msgstr "IE8 Web Slices aktivieren"
3291
 
3292
+ #: ../widgets/widgets.php:233
3293
  msgid "Width x Height :"
3294
  msgstr "Breite x Höhe :"
3295
 
3296
+ #: ../widgets/widgets.php:239
3297
  msgid "Select :"
3298
  msgstr "Wähle :"
3299
 
3300
+ #: ../widgets/widgets.php:241
3301
  msgid "All galleries"
3302
  msgstr "Alle Galerien"
3303
 
3304
+ #: ../widgets/widgets.php:242
3305
  msgid "Only which are not listed"
3306
  msgstr "Nur ungelistete"
3307
 
3308
+ #: ../widgets/widgets.php:243
3309
  msgid "Only which are listed"
3310
  msgstr "Nur gelistete"
3311
 
3312
+ #: ../widgets/widgets.php:249
3313
  msgid "Gallery ID :"
3314
  msgstr "Galerie-ID :"
3315
 
3316
+ #: ../widgets/widgets.php:251
3317
  msgid "Gallery IDs, separated by commas."
3318
  msgstr "Galerie-IDs, mit Kommas getrennt"
3319
 
lang/nggallery.pot 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: 2010-08-29 14:13+0100\n"
6
- "PO-Revision-Date: 2010-08-29 14:13+0100\n"
7
  "Last-Translator: Alex Rabe\n"
8
  "Language-Team: Alex Rabe\n"
9
  "MIME-Version: 1.0\n"
@@ -25,49 +25,57 @@ msgstr ""
25
  msgid "<strong>This translation is not yet updated for Version 1.6.0</strong>. If you would like to help with translation, download the current po from the plugin folder and read <a href=\"http://alexrabe.de/wordpress-plugins/wordtube/translation-of-plugins/\">here</a> how you can translate the plugin."
26
  msgstr ""
27
 
28
- #: ../nggallery.php:190
29
  msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB higher"
30
  msgstr ""
31
 
32
- #: ../nggallery.php:215
 
 
 
 
 
 
 
 
33
  msgid "Picture tag"
34
  msgstr ""
35
 
36
- #: ../nggallery.php:216
37
  msgid "Picture tag: %2$l."
38
  msgstr ""
39
 
40
- #: ../nggallery.php:217
41
  msgid "Separate picture tags with commas."
42
  msgstr ""
43
 
44
- #: ../nggallery.php:314
45
  msgid "L O A D I N G"
46
  msgstr ""
47
 
48
- #: ../nggallery.php:315
49
  msgid "Click to Close"
50
  msgstr ""
51
 
52
- #: ../nggallery.php:333
53
  msgid "loading"
54
  msgstr ""
55
 
56
- #: ../nggallery.php:473
57
- #: ../nggfunctions.php:913
58
  #: ../admin/admin.php:31
59
  msgid "Overview"
60
  msgstr ""
61
 
62
- #: ../nggallery.php:474
63
  msgid "Get help"
64
  msgstr ""
65
 
66
- #: ../nggallery.php:475
67
  msgid "Contribute"
68
  msgstr ""
69
 
70
- #: ../nggallery.php:476
71
  msgid "Donate"
72
  msgstr ""
73
 
@@ -75,20 +83,20 @@ msgstr ""
75
  msgid "The <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player</a> and <a href=\"http://www.mozilla.com/firefox/\">a browser with Javascript support</a> are needed.."
76
  msgstr ""
77
 
78
- #: ../nggfunctions.php:160
79
- #: ../nggfunctions.php:623
80
  msgid "[Gallery not found]"
81
  msgstr ""
82
 
83
- #: ../nggfunctions.php:430
84
  msgid "[Album not found]"
85
  msgstr ""
86
 
87
- #: ../nggfunctions.php:740
88
  msgid "[SinglePic not found]"
89
  msgstr ""
90
 
91
- #: ../nggfunctions.php:878
92
  msgid "Related images for"
93
  msgstr ""
94
 
@@ -230,8 +238,8 @@ msgid "Upload failed! "
230
  msgstr ""
231
 
232
  #: ../admin/addgallery.php:90
233
- #: ../admin/functions.php:927
234
- #: ../admin/functions.php:1027
235
  msgid "No gallery selected !"
236
  msgstr ""
237
 
@@ -750,7 +758,7 @@ msgstr ""
750
 
751
  #: ../admin/functions.php:65
752
  #: ../admin/functions.php:75
753
- #: ../admin/functions.php:886
754
  msgid "Unable to create directory "
755
  msgstr ""
756
 
@@ -800,7 +808,7 @@ msgid "successfully created!"
800
  msgstr ""
801
 
802
  #: ../admin/functions.php:205
803
- #: ../admin/functions.php:1003
804
  #: ../admin/manage-galleries.php:128
805
  #: ../admin/manage-images.php:302
806
  #: ../admin/manage.php:215
@@ -851,145 +859,145 @@ msgstr ""
851
  msgid "(Error : Couldn't not find image)"
852
  msgstr ""
853
 
854
- #: ../admin/functions.php:820
855
  msgid "No valid URL path "
856
  msgstr ""
857
 
858
- #: ../admin/functions.php:836
859
  msgid "Import via cURL failed."
860
  msgstr ""
861
 
862
- #: ../admin/functions.php:853
863
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
864
  msgstr ""
865
 
866
- #: ../admin/functions.php:870
867
  msgid "Could not get a valid foldername"
868
  msgstr ""
869
 
870
- #: ../admin/functions.php:881
871
  #, php-format
872
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
873
  msgstr ""
874
 
875
- #: ../admin/functions.php:896
876
  msgid "Zip-File successfully unpacked"
877
  msgstr ""
878
 
879
- #: ../admin/functions.php:935
880
- #: ../admin/functions.php:1052
881
  msgid "Failure in database, no gallery path set !"
882
  msgstr ""
883
 
884
- #: ../admin/functions.php:959
885
- #: ../admin/functions.php:1046
886
  msgid "is no valid image file!"
887
  msgstr ""
888
 
889
- #: ../admin/functions.php:973
890
- #: ../admin/functions.php:1172
891
- #: ../admin/functions.php:1247
892
  #, php-format
893
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
894
  msgstr ""
895
 
896
- #: ../admin/functions.php:980
897
- #: ../admin/functions.php:1069
898
  msgid "Error, the file could not moved to : "
899
  msgstr ""
900
 
901
- #: ../admin/functions.php:985
902
- #: ../admin/functions.php:1073
903
  msgid "Error, the file permissions could not set"
904
  msgstr ""
905
 
906
- #: ../admin/functions.php:1008
907
  msgid " Image(s) successfully added"
908
  msgstr ""
909
 
910
- #: ../admin/functions.php:1035
911
  msgid "Invalid upload. Error Code : "
912
  msgstr ""
913
 
914
- #: ../admin/functions.php:1112
915
  #, php-format
916
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
917
  msgstr ""
918
 
919
- #: ../admin/functions.php:1113
920
  #, php-format
921
  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"
922
  msgstr ""
923
 
924
- #: ../admin/functions.php:1166
925
- #: ../admin/functions.php:1241
926
  msgid "The destination gallery does not exist"
927
  msgstr ""
928
 
929
- #: ../admin/functions.php:1197
930
  #, php-format
931
  msgid "Failed to move image %1$s to %2$s"
932
  msgstr ""
933
 
934
- #: ../admin/functions.php:1217
935
  #, php-format
936
  msgid "Moved %1$s picture(s) to gallery : %2$s ."
937
  msgstr ""
938
 
939
- #: ../admin/functions.php:1274
940
  #, php-format
941
  msgid "Failed to copy image %1$s to %2$s"
942
  msgstr ""
943
 
944
- #: ../admin/functions.php:1288
945
  #, php-format
946
  msgid "Failed to copy database row for picture %s"
947
  msgstr ""
948
 
949
- #: ../admin/functions.php:1296
950
  #, php-format
951
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) &raquo; The file already existed in the destination gallery."
952
  msgstr ""
953
 
954
- #: ../admin/functions.php:1299
955
  #, php-format
956
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
957
  msgstr ""
958
 
959
- #: ../admin/functions.php:1308
960
  #, php-format
961
  msgid "Copied %1$s picture(s) to gallery: %2$s ."
962
  msgstr ""
963
 
964
- #: ../admin/functions.php:1418
965
  msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
966
  msgstr ""
967
 
968
- #: ../admin/functions.php:1421
969
  msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"
970
  msgstr ""
971
 
972
- #: ../admin/functions.php:1424
973
  msgid "The uploaded file was only partially uploaded"
974
  msgstr ""
975
 
976
- #: ../admin/functions.php:1427
977
  msgid "No file was uploaded"
978
  msgstr ""
979
 
980
- #: ../admin/functions.php:1430
981
  msgid "Missing a temporary folder"
982
  msgstr ""
983
 
984
- #: ../admin/functions.php:1433
985
  msgid "Failed to write file to disk"
986
  msgstr ""
987
 
988
- #: ../admin/functions.php:1436
989
  msgid "File upload stopped by extension"
990
  msgstr ""
991
 
992
- #: ../admin/functions.php:1439
993
  msgid "Unknown upload error"
994
  msgstr ""
995
 
@@ -1912,7 +1920,7 @@ msgstr ""
1912
  #: ../admin/settings.php:357
1913
  #: ../admin/settings.php:442
1914
  #: ../admin/settings.php:477
1915
- #: ../admin/settings.php:740
1916
  msgid "More settings"
1917
  msgstr ""
1918
 
@@ -2182,12 +2190,12 @@ msgid "sec."
2182
  msgstr ""
2183
 
2184
  #: ../admin/settings.php:613
2185
- #: ../admin/settings.php:690
2186
  msgid "Transition / Fade effect"
2187
  msgstr ""
2188
 
2189
  #: ../admin/settings.php:616
2190
- #: ../admin/settings.php:693
2191
  msgid "fade"
2192
  msgstr ""
2193
 
@@ -2235,143 +2243,143 @@ msgstr ""
2235
  msgid "See more information for the Flash Player on the web page"
2236
  msgstr ""
2237
 
2238
- #: ../admin/settings.php:637
2239
  msgid "The path to imagerotator.swf is not defined, the slideshow will not work."
2240
  msgstr ""
2241
 
2242
- #: ../admin/settings.php:638
2243
  msgid "If you would like to use the JW Image Rotatator, please download the player <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" target=\"_blank\" >here</a> and upload it to your Upload folder (Default is wp-content/uploads)."
2244
  msgstr ""
2245
 
2246
- #: ../admin/settings.php:645
2247
  msgid "Enable flash slideshow"
2248
  msgstr ""
2249
 
2250
- #: ../admin/settings.php:647
2251
  msgid "Integrate the flash based sildeshow for all flash supported devices"
2252
  msgstr ""
2253
 
2254
- #: ../admin/settings.php:650
2255
  msgid "Path to the Imagerotator (URL)"
2256
  msgstr ""
2257
 
2258
- #: ../admin/settings.php:653
2259
  msgid "Search now"
2260
  msgstr ""
2261
 
2262
- #: ../admin/settings.php:654
2263
  msgid "Press the button to search automatic for the imagerotator, if you uploaded it to wp-content/uploads or a subfolder"
2264
  msgstr ""
2265
 
2266
- #: ../admin/settings.php:658
2267
  msgid "Shuffle mode"
2268
  msgstr ""
2269
 
2270
- #: ../admin/settings.php:662
2271
  msgid "Show next image on click"
2272
  msgstr ""
2273
 
2274
- #: ../admin/settings.php:666
2275
  msgid "Show navigation bar"
2276
  msgstr ""
2277
 
2278
- #: ../admin/settings.php:670
2279
  msgid "Show loading icon"
2280
  msgstr ""
2281
 
2282
- #: ../admin/settings.php:674
2283
  msgid "Use watermark logo"
2284
  msgstr ""
2285
 
2286
- #: ../admin/settings.php:676
2287
  msgid "You can change the logo at the watermark settings"
2288
  msgstr ""
2289
 
2290
- #: ../admin/settings.php:679
2291
  msgid "Stretch image"
2292
  msgstr ""
2293
 
2294
- #: ../admin/settings.php:682
2295
  msgid "true"
2296
  msgstr ""
2297
 
2298
- #: ../admin/settings.php:683
2299
  msgid "false"
2300
  msgstr ""
2301
 
2302
- #: ../admin/settings.php:684
2303
  msgid "fit"
2304
  msgstr ""
2305
 
2306
- #: ../admin/settings.php:685
2307
  msgid "none"
2308
  msgstr ""
2309
 
2310
- #: ../admin/settings.php:694
2311
  msgid "bgfade"
2312
  msgstr ""
2313
 
2314
- #: ../admin/settings.php:695
2315
  msgid "slowfade"
2316
  msgstr ""
2317
 
2318
- #: ../admin/settings.php:696
2319
  msgid "circles"
2320
  msgstr ""
2321
 
2322
- #: ../admin/settings.php:697
2323
  msgid "bubbles"
2324
  msgstr ""
2325
 
2326
- #: ../admin/settings.php:698
2327
  msgid "blocks"
2328
  msgstr ""
2329
 
2330
- #: ../admin/settings.php:699
2331
  msgid "fluids"
2332
  msgstr ""
2333
 
2334
- #: ../admin/settings.php:700
2335
  msgid "flash"
2336
  msgstr ""
2337
 
2338
- #: ../admin/settings.php:701
2339
  msgid "lines"
2340
  msgstr ""
2341
 
2342
- #: ../admin/settings.php:702
2343
  msgid "random"
2344
  msgstr ""
2345
 
2346
- #: ../admin/settings.php:707
2347
  msgid "Use slow zooming effect"
2348
  msgstr ""
2349
 
2350
- #: ../admin/settings.php:711
2351
  msgid "Background Color"
2352
  msgstr ""
2353
 
2354
- #: ../admin/settings.php:716
2355
  msgid "Texts / Buttons Color"
2356
  msgstr ""
2357
 
2358
- #: ../admin/settings.php:721
2359
  msgid "Rollover / Active Color"
2360
  msgstr ""
2361
 
2362
- #: ../admin/settings.php:726
2363
  msgid "Screen Color"
2364
  msgstr ""
2365
 
2366
- #: ../admin/settings.php:731
2367
  msgid "Background music (URL)"
2368
  msgstr ""
2369
 
2370
- #: ../admin/settings.php:735
2371
  msgid "Try XHTML validation (with CDATA)"
2372
  msgstr ""
2373
 
2374
- #: ../admin/settings.php:737
2375
  msgid "Important : Could causes problem at some browser. Please recheck your page."
2376
  msgstr ""
2377
 
@@ -2641,80 +2649,80 @@ msgstr ""
2641
  msgid "Upgrade database structure..."
2642
  msgstr ""
2643
 
2644
- #: ../admin/upgrade.php:104
2645
- #: ../admin/upgrade.php:114
2646
- #: ../admin/upgrade.php:121
2647
- #: ../admin/upgrade.php:132
2648
- #: ../admin/upgrade.php:146
2649
  msgid "finished"
2650
  msgstr ""
2651
 
2652
- #: ../admin/upgrade.php:112
2653
  msgid "Update file structure..."
2654
  msgstr ""
2655
 
2656
- #: ../admin/upgrade.php:119
2657
  msgid "Import date and time information..."
2658
  msgstr ""
2659
 
2660
- #: ../admin/upgrade.php:127
2661
  msgid "Move imagerotator to new location..."
2662
  msgstr ""
2663
 
2664
- #: ../admin/upgrade.php:138
2665
  msgid "Update settings..."
2666
  msgstr ""
2667
 
2668
- #: ../admin/upgrade.php:152
2669
  msgid "Updated widget structure. If you used NextGEN Widgets, you need to setup them again..."
2670
  msgstr ""
2671
 
2672
- #: ../admin/upgrade.php:160
2673
  msgid "Updated options."
2674
  msgstr ""
2675
 
2676
- #: ../admin/upgrade.php:166
2677
  msgid "Could not find NextGEN Gallery database tables, upgrade failed !"
2678
  msgstr ""
2679
 
2680
- #: ../admin/upgrade.php:229
2681
  msgid "Some folders/files could not renamed, please recheck the permission and rescan the folder in the manage gallery section."
2682
  msgstr ""
2683
 
2684
- #: ../admin/upgrade.php:231
2685
  msgid "Rename failed"
2686
  msgstr ""
2687
 
2688
- #: ../admin/upgrade.php:327
2689
- #: ../admin/upgrade.php:346
2690
  msgid "Upgrade NextGEN Gallery"
2691
  msgstr ""
2692
 
2693
- #: ../admin/upgrade.php:328
2694
  msgid "The script detect that you upgrade from a older version."
2695
  msgstr ""
2696
 
2697
- #: ../admin/upgrade.php:329
2698
  msgid "Your database tables for NextGEN Gallery is out-of-date, and must be upgraded before you can continue."
2699
  msgstr ""
2700
 
2701
- #: ../admin/upgrade.php:330
2702
  msgid "If you would like to downgrade later, please make first a complete backup of your database and the images."
2703
  msgstr ""
2704
 
2705
- #: ../admin/upgrade.php:331
2706
  msgid "The upgrade process may take a while, so please be patient."
2707
  msgstr ""
2708
 
2709
- #: ../admin/upgrade.php:332
2710
  msgid "Start upgrade now"
2711
  msgstr ""
2712
 
2713
- #: ../admin/upgrade.php:348
2714
  msgid "Upgrade finished..."
2715
  msgstr ""
2716
 
2717
- #: ../admin/upgrade.php:349
2718
  msgid "Continue"
2719
  msgstr ""
2720
 
@@ -2843,7 +2851,7 @@ msgstr ""
2843
  msgid "Insert"
2844
  msgstr ""
2845
 
2846
- #: ../lib/core.php:369
2847
  #, php-format
2848
  msgid "Note : Based on your server memory limit you should not upload larger images then <strong>%d x %d</strong> pixel"
2849
  msgstr ""
@@ -3191,7 +3199,7 @@ msgid "Link to the main image feed"
3191
  msgstr ""
3192
 
3193
  #: ../widgets/media-rss-widget.php:79
3194
- #: ../widgets/widgets.php:205
3195
  msgid "Title :"
3196
  msgstr ""
3197
 
@@ -3219,79 +3227,79 @@ msgstr ""
3219
  msgid "NextGEN Slideshow"
3220
  msgstr ""
3221
 
3222
- #: ../widgets/widgets.php:68
3223
  msgid "<a href=\"http://www.macromedia.com/go/getflashplayer\">Get the Flash Player</a> to see the slideshow."
3224
  msgstr ""
3225
 
3226
- #: ../widgets/widgets.php:125
3227
  msgid "Title:"
3228
  msgstr ""
3229
 
3230
- #: ../widgets/widgets.php:127
3231
  msgid "Select Gallery:"
3232
  msgstr ""
3233
 
3234
- #: ../widgets/widgets.php:129
3235
  msgid "All images"
3236
  msgstr ""
3237
 
3238
- #: ../widgets/widgets.php:141
3239
  msgid "Height:"
3240
  msgstr ""
3241
 
3242
- #: ../widgets/widgets.php:142
3243
  msgid "Width:"
3244
  msgstr ""
3245
 
3246
- #: ../widgets/widgets.php:164
3247
  msgid "Add recent or random images from the galleries"
3248
  msgstr ""
3249
 
3250
- #: ../widgets/widgets.php:165
3251
  msgid "NextGEN Widget"
3252
  msgstr ""
3253
 
3254
- #: ../widgets/widgets.php:211
3255
  msgid "Show :"
3256
  msgstr ""
3257
 
3258
- #: ../widgets/widgets.php:217
3259
  msgid "Original images"
3260
  msgstr ""
3261
 
3262
- #: ../widgets/widgets.php:226
3263
  msgid "recent added "
3264
  msgstr ""
3265
 
3266
- #: ../widgets/widgets.php:232
3267
  msgid "Enable IE8 Web Slices"
3268
  msgstr ""
3269
 
3270
- #: ../widgets/widgets.php:237
3271
  msgid "Width x Height :"
3272
  msgstr ""
3273
 
3274
- #: ../widgets/widgets.php:243
3275
  msgid "Select :"
3276
  msgstr ""
3277
 
3278
- #: ../widgets/widgets.php:245
3279
  msgid "All galleries"
3280
  msgstr ""
3281
 
3282
- #: ../widgets/widgets.php:246
3283
  msgid "Only which are not listed"
3284
  msgstr ""
3285
 
3286
- #: ../widgets/widgets.php:247
3287
  msgid "Only which are listed"
3288
  msgstr ""
3289
 
3290
- #: ../widgets/widgets.php:253
3291
  msgid "Gallery ID :"
3292
  msgstr ""
3293
 
3294
- #: ../widgets/widgets.php:255
3295
  msgid "Gallery IDs, separated by commas."
3296
  msgstr ""
3297
 
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-09-18 13:20+0100\n"
6
+ "PO-Revision-Date: 2010-09-18 13:20+0100\n"
7
  "Last-Translator: Alex Rabe\n"
8
  "Language-Team: Alex Rabe\n"
9
  "MIME-Version: 1.0\n"
25
  msgid "<strong>This translation is not yet updated for Version 1.6.0</strong>. If you would like to help with translation, download the current po from the plugin folder and read <a href=\"http://alexrabe.de/wordpress-plugins/wordtube/translation-of-plugins/\">here</a> how you can translate the plugin."
26
  msgstr ""
27
 
28
+ #: ../nggallery.php:195
29
  msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB higher"
30
  msgstr ""
31
 
32
+ #: ../nggallery.php:213
33
+ msgid "Please update the database of NextGEN Gallery."
34
+ msgstr ""
35
+
36
+ #: ../nggallery.php:213
37
+ msgid "Click here to proceed."
38
+ msgstr ""
39
+
40
+ #: ../nggallery.php:236
41
  msgid "Picture tag"
42
  msgstr ""
43
 
44
+ #: ../nggallery.php:237
45
  msgid "Picture tag: %2$l."
46
  msgstr ""
47
 
48
+ #: ../nggallery.php:238
49
  msgid "Separate picture tags with commas."
50
  msgstr ""
51
 
52
+ #: ../nggallery.php:338
53
  msgid "L O A D I N G"
54
  msgstr ""
55
 
56
+ #: ../nggallery.php:339
57
  msgid "Click to Close"
58
  msgstr ""
59
 
60
+ #: ../nggallery.php:360
61
  msgid "loading"
62
  msgstr ""
63
 
64
+ #: ../nggallery.php:500
65
+ #: ../nggfunctions.php:916
66
  #: ../admin/admin.php:31
67
  msgid "Overview"
68
  msgstr ""
69
 
70
+ #: ../nggallery.php:501
71
  msgid "Get help"
72
  msgstr ""
73
 
74
+ #: ../nggallery.php:502
75
  msgid "Contribute"
76
  msgstr ""
77
 
78
+ #: ../nggallery.php:503
79
  msgid "Donate"
80
  msgstr ""
81
 
83
  msgid "The <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player</a> and <a href=\"http://www.mozilla.com/firefox/\">a browser with Javascript support</a> are needed.."
84
  msgstr ""
85
 
86
+ #: ../nggfunctions.php:161
87
+ #: ../nggfunctions.php:626
88
  msgid "[Gallery not found]"
89
  msgstr ""
90
 
91
+ #: ../nggfunctions.php:433
92
  msgid "[Album not found]"
93
  msgstr ""
94
 
95
+ #: ../nggfunctions.php:743
96
  msgid "[SinglePic not found]"
97
  msgstr ""
98
 
99
+ #: ../nggfunctions.php:881
100
  msgid "Related images for"
101
  msgstr ""
102
 
238
  msgstr ""
239
 
240
  #: ../admin/addgallery.php:90
241
+ #: ../admin/functions.php:928
242
+ #: ../admin/functions.php:1028
243
  msgid "No gallery selected !"
244
  msgstr ""
245
 
758
 
759
  #: ../admin/functions.php:65
760
  #: ../admin/functions.php:75
761
+ #: ../admin/functions.php:887
762
  msgid "Unable to create directory "
763
  msgstr ""
764
 
808
  msgstr ""
809
 
810
  #: ../admin/functions.php:205
811
+ #: ../admin/functions.php:1004
812
  #: ../admin/manage-galleries.php:128
813
  #: ../admin/manage-images.php:302
814
  #: ../admin/manage.php:215
859
  msgid "(Error : Couldn't not find image)"
860
  msgstr ""
861
 
862
+ #: ../admin/functions.php:821
863
  msgid "No valid URL path "
864
  msgstr ""
865
 
866
+ #: ../admin/functions.php:837
867
  msgid "Import via cURL failed."
868
  msgstr ""
869
 
870
+ #: ../admin/functions.php:854
871
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
872
  msgstr ""
873
 
874
+ #: ../admin/functions.php:871
875
  msgid "Could not get a valid foldername"
876
  msgstr ""
877
 
878
+ #: ../admin/functions.php:882
879
  #, php-format
880
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
881
  msgstr ""
882
 
883
+ #: ../admin/functions.php:897
884
  msgid "Zip-File successfully unpacked"
885
  msgstr ""
886
 
887
+ #: ../admin/functions.php:936
888
+ #: ../admin/functions.php:1053
889
  msgid "Failure in database, no gallery path set !"
890
  msgstr ""
891
 
892
+ #: ../admin/functions.php:960
893
+ #: ../admin/functions.php:1047
894
  msgid "is no valid image file!"
895
  msgstr ""
896
 
897
+ #: ../admin/functions.php:974
898
+ #: ../admin/functions.php:1173
899
+ #: ../admin/functions.php:1248
900
  #, php-format
901
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
902
  msgstr ""
903
 
904
+ #: ../admin/functions.php:981
905
+ #: ../admin/functions.php:1070
906
  msgid "Error, the file could not moved to : "
907
  msgstr ""
908
 
909
+ #: ../admin/functions.php:986
910
+ #: ../admin/functions.php:1074
911
  msgid "Error, the file permissions could not set"
912
  msgstr ""
913
 
914
+ #: ../admin/functions.php:1009
915
  msgid " Image(s) successfully added"
916
  msgstr ""
917
 
918
+ #: ../admin/functions.php:1036
919
  msgid "Invalid upload. Error Code : "
920
  msgstr ""
921
 
922
+ #: ../admin/functions.php:1113
923
  #, php-format
924
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
925
  msgstr ""
926
 
927
+ #: ../admin/functions.php:1114
928
  #, php-format
929
  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"
930
  msgstr ""
931
 
932
+ #: ../admin/functions.php:1167
933
+ #: ../admin/functions.php:1242
934
  msgid "The destination gallery does not exist"
935
  msgstr ""
936
 
937
+ #: ../admin/functions.php:1198
938
  #, php-format
939
  msgid "Failed to move image %1$s to %2$s"
940
  msgstr ""
941
 
942
+ #: ../admin/functions.php:1218
943
  #, php-format
944
  msgid "Moved %1$s picture(s) to gallery : %2$s ."
945
  msgstr ""
946
 
947
+ #: ../admin/functions.php:1275
948
  #, php-format
949
  msgid "Failed to copy image %1$s to %2$s"
950
  msgstr ""
951
 
952
+ #: ../admin/functions.php:1289
953
  #, php-format
954
  msgid "Failed to copy database row for picture %s"
955
  msgstr ""
956
 
957
+ #: ../admin/functions.php:1297
958
  #, php-format
959
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) &raquo; The file already existed in the destination gallery."
960
  msgstr ""
961
 
962
+ #: ../admin/functions.php:1300
963
  #, php-format
964
  msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
965
  msgstr ""
966
 
967
+ #: ../admin/functions.php:1309
968
  #, php-format
969
  msgid "Copied %1$s picture(s) to gallery: %2$s ."
970
  msgstr ""
971
 
972
+ #: ../admin/functions.php:1419
973
  msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
974
  msgstr ""
975
 
976
+ #: ../admin/functions.php:1422
977
  msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"
978
  msgstr ""
979
 
980
+ #: ../admin/functions.php:1425
981
  msgid "The uploaded file was only partially uploaded"
982
  msgstr ""
983
 
984
+ #: ../admin/functions.php:1428
985
  msgid "No file was uploaded"
986
  msgstr ""
987
 
988
+ #: ../admin/functions.php:1431
989
  msgid "Missing a temporary folder"
990
  msgstr ""
991
 
992
+ #: ../admin/functions.php:1434
993
  msgid "Failed to write file to disk"
994
  msgstr ""
995
 
996
+ #: ../admin/functions.php:1437
997
  msgid "File upload stopped by extension"
998
  msgstr ""
999
 
1000
+ #: ../admin/functions.php:1440
1001
  msgid "Unknown upload error"
1002
  msgstr ""
1003
 
1920
  #: ../admin/settings.php:357
1921
  #: ../admin/settings.php:442
1922
  #: ../admin/settings.php:477
1923
+ #: ../admin/settings.php:738
1924
  msgid "More settings"
1925
  msgstr ""
1926
 
2190
  msgstr ""
2191
 
2192
  #: ../admin/settings.php:613
2193
+ #: ../admin/settings.php:688
2194
  msgid "Transition / Fade effect"
2195
  msgstr ""
2196
 
2197
  #: ../admin/settings.php:616
2198
+ #: ../admin/settings.php:691
2199
  msgid "fade"
2200
  msgstr ""
2201
 
2243
  msgid "See more information for the Flash Player on the web page"
2244
  msgstr ""
2245
 
2246
+ #: ../admin/settings.php:636
2247
  msgid "The path to imagerotator.swf is not defined, the slideshow will not work."
2248
  msgstr ""
2249
 
2250
+ #: ../admin/settings.php:637
2251
  msgid "If you would like to use the JW Image Rotatator, please download the player <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" target=\"_blank\" >here</a> and upload it to your Upload folder (Default is wp-content/uploads)."
2252
  msgstr ""
2253
 
2254
+ #: ../admin/settings.php:643
2255
  msgid "Enable flash slideshow"
2256
  msgstr ""
2257
 
2258
+ #: ../admin/settings.php:645
2259
  msgid "Integrate the flash based sildeshow for all flash supported devices"
2260
  msgstr ""
2261
 
2262
+ #: ../admin/settings.php:648
2263
  msgid "Path to the Imagerotator (URL)"
2264
  msgstr ""
2265
 
2266
+ #: ../admin/settings.php:651
2267
  msgid "Search now"
2268
  msgstr ""
2269
 
2270
+ #: ../admin/settings.php:652
2271
  msgid "Press the button to search automatic for the imagerotator, if you uploaded it to wp-content/uploads or a subfolder"
2272
  msgstr ""
2273
 
2274
+ #: ../admin/settings.php:656
2275
  msgid "Shuffle mode"
2276
  msgstr ""
2277
 
2278
+ #: ../admin/settings.php:660
2279
  msgid "Show next image on click"
2280
  msgstr ""
2281
 
2282
+ #: ../admin/settings.php:664
2283
  msgid "Show navigation bar"
2284
  msgstr ""
2285
 
2286
+ #: ../admin/settings.php:668
2287
  msgid "Show loading icon"
2288
  msgstr ""
2289
 
2290
+ #: ../admin/settings.php:672
2291
  msgid "Use watermark logo"
2292
  msgstr ""
2293
 
2294
+ #: ../admin/settings.php:674
2295
  msgid "You can change the logo at the watermark settings"
2296
  msgstr ""
2297
 
2298
+ #: ../admin/settings.php:677
2299
  msgid "Stretch image"
2300
  msgstr ""
2301
 
2302
+ #: ../admin/settings.php:680
2303
  msgid "true"
2304
  msgstr ""
2305
 
2306
+ #: ../admin/settings.php:681
2307
  msgid "false"
2308
  msgstr ""
2309
 
2310
+ #: ../admin/settings.php:682
2311
  msgid "fit"
2312
  msgstr ""
2313
 
2314
+ #: ../admin/settings.php:683
2315
  msgid "none"
2316
  msgstr ""
2317
 
2318
+ #: ../admin/settings.php:692
2319
  msgid "bgfade"
2320
  msgstr ""
2321
 
2322
+ #: ../admin/settings.php:693
2323
  msgid "slowfade"
2324
  msgstr ""
2325
 
2326
+ #: ../admin/settings.php:694
2327
  msgid "circles"
2328
  msgstr ""
2329
 
2330
+ #: ../admin/settings.php:695
2331
  msgid "bubbles"
2332
  msgstr ""
2333
 
2334
+ #: ../admin/settings.php:696
2335
  msgid "blocks"
2336
  msgstr ""
2337
 
2338
+ #: ../admin/settings.php:697
2339
  msgid "fluids"
2340
  msgstr ""
2341
 
2342
+ #: ../admin/settings.php:698
2343
  msgid "flash"
2344
  msgstr ""
2345
 
2346
+ #: ../admin/settings.php:699
2347
  msgid "lines"
2348
  msgstr ""
2349
 
2350
+ #: ../admin/settings.php:700
2351
  msgid "random"
2352
  msgstr ""
2353
 
2354
+ #: ../admin/settings.php:705
2355
  msgid "Use slow zooming effect"
2356
  msgstr ""
2357
 
2358
+ #: ../admin/settings.php:709
2359
  msgid "Background Color"
2360
  msgstr ""
2361
 
2362
+ #: ../admin/settings.php:714
2363
  msgid "Texts / Buttons Color"
2364
  msgstr ""
2365
 
2366
+ #: ../admin/settings.php:719
2367
  msgid "Rollover / Active Color"
2368
  msgstr ""
2369
 
2370
+ #: ../admin/settings.php:724
2371
  msgid "Screen Color"
2372
  msgstr ""
2373
 
2374
+ #: ../admin/settings.php:729
2375
  msgid "Background music (URL)"
2376
  msgstr ""
2377
 
2378
+ #: ../admin/settings.php:733
2379
  msgid "Try XHTML validation (with CDATA)"
2380
  msgstr ""
2381
 
2382
+ #: ../admin/settings.php:735
2383
  msgid "Important : Could causes problem at some browser. Please recheck your page."
2384
  msgstr ""
2385
 
2649
  msgid "Upgrade database structure..."
2650
  msgstr ""
2651
 
2652
+ #: ../admin/upgrade.php:101
2653
+ #: ../admin/upgrade.php:115
2654
+ #: ../admin/upgrade.php:122
2655
+ #: ../admin/upgrade.php:133
2656
+ #: ../admin/upgrade.php:147
2657
  msgid "finished"
2658
  msgstr ""
2659
 
2660
+ #: ../admin/upgrade.php:113
2661
  msgid "Update file structure..."
2662
  msgstr ""
2663
 
2664
+ #: ../admin/upgrade.php:120
2665
  msgid "Import date and time information..."
2666
  msgstr ""
2667
 
2668
+ #: ../admin/upgrade.php:128
2669
  msgid "Move imagerotator to new location..."
2670
  msgstr ""
2671
 
2672
+ #: ../admin/upgrade.php:139
2673
  msgid "Update settings..."
2674
  msgstr ""
2675
 
2676
+ #: ../admin/upgrade.php:153
2677
  msgid "Updated widget structure. If you used NextGEN Widgets, you need to setup them again..."
2678
  msgstr ""
2679
 
2680
+ #: ../admin/upgrade.php:161
2681
  msgid "Updated options."
2682
  msgstr ""
2683
 
2684
+ #: ../admin/upgrade.php:167
2685
  msgid "Could not find NextGEN Gallery database tables, upgrade failed !"
2686
  msgstr ""
2687
 
2688
+ #: ../admin/upgrade.php:230
2689
  msgid "Some folders/files could not renamed, please recheck the permission and rescan the folder in the manage gallery section."
2690
  msgstr ""
2691
 
2692
+ #: ../admin/upgrade.php:232
2693
  msgid "Rename failed"
2694
  msgstr ""
2695
 
2696
+ #: ../admin/upgrade.php:328
2697
+ #: ../admin/upgrade.php:347
2698
  msgid "Upgrade NextGEN Gallery"
2699
  msgstr ""
2700
 
2701
+ #: ../admin/upgrade.php:329
2702
  msgid "The script detect that you upgrade from a older version."
2703
  msgstr ""
2704
 
2705
+ #: ../admin/upgrade.php:330
2706
  msgid "Your database tables for NextGEN Gallery is out-of-date, and must be upgraded before you can continue."
2707
  msgstr ""
2708
 
2709
+ #: ../admin/upgrade.php:331
2710
  msgid "If you would like to downgrade later, please make first a complete backup of your database and the images."
2711
  msgstr ""
2712
 
2713
+ #: ../admin/upgrade.php:332
2714
  msgid "The upgrade process may take a while, so please be patient."
2715
  msgstr ""
2716
 
2717
+ #: ../admin/upgrade.php:333
2718
  msgid "Start upgrade now"
2719
  msgstr ""
2720
 
2721
+ #: ../admin/upgrade.php:349
2722
  msgid "Upgrade finished..."
2723
  msgstr ""
2724
 
2725
+ #: ../admin/upgrade.php:350
2726
  msgid "Continue"
2727
  msgstr ""
2728
 
2851
  msgid "Insert"
2852
  msgstr ""
2853
 
2854
+ #: ../lib/core.php:379
2855
  #, php-format
2856
  msgid "Note : Based on your server memory limit you should not upload larger images then <strong>%d x %d</strong> pixel"
2857
  msgstr ""
3199
  msgstr ""
3200
 
3201
  #: ../widgets/media-rss-widget.php:79
3202
+ #: ../widgets/widgets.php:201
3203
  msgid "Title :"
3204
  msgstr ""
3205
 
3227
  msgid "NextGEN Slideshow"
3228
  msgstr ""
3229
 
3230
+ #: ../widgets/widgets.php:64
3231
  msgid "<a href=\"http://www.macromedia.com/go/getflashplayer\">Get the Flash Player</a> to see the slideshow."
3232
  msgstr ""
3233
 
3234
+ #: ../widgets/widgets.php:121
3235
  msgid "Title:"
3236
  msgstr ""
3237
 
3238
+ #: ../widgets/widgets.php:123
3239
  msgid "Select Gallery:"
3240
  msgstr ""
3241
 
3242
+ #: ../widgets/widgets.php:125
3243
  msgid "All images"
3244
  msgstr ""
3245
 
3246
+ #: ../widgets/widgets.php:137
3247
  msgid "Height:"
3248
  msgstr ""
3249
 
3250
+ #: ../widgets/widgets.php:138
3251
  msgid "Width:"
3252
  msgstr ""
3253
 
3254
+ #: ../widgets/widgets.php:160
3255
  msgid "Add recent or random images from the galleries"
3256
  msgstr ""
3257
 
3258
+ #: ../widgets/widgets.php:161
3259
  msgid "NextGEN Widget"
3260
  msgstr ""
3261
 
3262
+ #: ../widgets/widgets.php:207
3263
  msgid "Show :"
3264
  msgstr ""
3265
 
3266
+ #: ../widgets/widgets.php:213
3267
  msgid "Original images"
3268
  msgstr ""
3269
 
3270
+ #: ../widgets/widgets.php:222
3271
  msgid "recent added "
3272
  msgstr ""
3273
 
3274
+ #: ../widgets/widgets.php:228
3275
  msgid "Enable IE8 Web Slices"
3276
  msgstr ""
3277
 
3278
+ #: ../widgets/widgets.php:233
3279
  msgid "Width x Height :"
3280
  msgstr ""
3281
 
3282
+ #: ../widgets/widgets.php:239
3283
  msgid "Select :"
3284
  msgstr ""
3285
 
3286
+ #: ../widgets/widgets.php:241
3287
  msgid "All galleries"
3288
  msgstr ""
3289
 
3290
+ #: ../widgets/widgets.php:242
3291
  msgid "Only which are not listed"
3292
  msgstr ""
3293
 
3294
+ #: ../widgets/widgets.php:243
3295
  msgid "Only which are listed"
3296
  msgstr ""
3297
 
3298
+ #: ../widgets/widgets.php:249
3299
  msgid "Gallery ID :"
3300
  msgstr ""
3301
 
3302
+ #: ../widgets/widgets.php:251
3303
  msgid "Gallery IDs, separated by commas."
3304
  msgstr ""
3305
 
lib/core.php CHANGED
@@ -43,7 +43,7 @@ class nggGallery {
43
  }
44
 
45
  // set gallery url
46
- $folder_url = get_option ('siteurl') . '/' . $picturepath.nggGallery::get_thumbnail_folder($picturepath, FALSE);
47
  $thumbnailURL = $folder_url . 'thumbs_' . $fileName;
48
 
49
  return $thumbnailURL;
@@ -68,7 +68,7 @@ class nggGallery {
68
  }
69
 
70
  // set gallery url
71
- $imageURL = get_option ('siteurl') . '/' . $picturepath . '/' . $fileName;
72
 
73
  return $imageURL;
74
  }
@@ -304,8 +304,19 @@ class nggGallery {
304
 
305
  }
306
 
 
 
 
 
 
307
  function get_theme_css_file() {
308
- if ( file_exists (STYLESHEETPATH . '/nggallery.css') )
 
 
 
 
 
 
309
  return get_stylesheet_directory_uri() . '/nggallery.css';
310
  else
311
  return false;
43
  }
44
 
45
  // set gallery url
46
+ $folder_url = site_url() . '/' . $picturepath.nggGallery::get_thumbnail_folder($picturepath, FALSE);
47
  $thumbnailURL = $folder_url . 'thumbs_' . $fileName;
48
 
49
  return $thumbnailURL;
68
  }
69
 
70
  // set gallery url
71
+ $imageURL = site_url() . '/' . $picturepath . '/' . $fileName;
72
 
73
  return $imageURL;
74
  }
304
 
305
  }
306
 
307
+ /**
308
+ * Look for the stylesheet in the theme folder
309
+ *
310
+ * @return string path to stylesheet
311
+ */
312
  function get_theme_css_file() {
313
+
314
+ // allow other plugins to include a stylesheet
315
+ $stylesheet = apply_filters( 'ngg_load_stylesheet', false );
316
+
317
+ if ( ( $stylesheet != false ) && file_exists ($stylesheet) )
318
+ return ( $stylesheet );
319
+ elseif ( file_exists (STYLESHEETPATH . '/nggallery.css') )
320
  return get_stylesheet_directory_uri() . '/nggallery.css';
321
  else
322
  return false;
lib/image.php CHANGED
@@ -64,8 +64,8 @@ class nggImage{
64
  $this->previewpic = $gallery->previewpic;
65
 
66
  // set urls and paths
67
- $this->imageURL = get_option ('siteurl') . '/' . $this->path . '/' . $this->filename;
68
- $this->thumbURL = get_option ('siteurl') . '/' . $this->path . '/thumbs/thumbs_' . $this->filename;
69
  $this->imagePath = WINABSPATH.$this->path . '/' . $this->filename;
70
  $this->thumbPath = WINABSPATH.$this->path . '/thumbs/thumbs_' . $this->filename;
71
  $this->meta_data = unserialize($this->meta_data);
@@ -133,7 +133,7 @@ class nggImage{
133
  // cache filename should be unique
134
  $cachename = $this->pid . '_' . $mode . '_'. $width . 'x' . $height . '_' . $this->filename;
135
  $cachefolder = WINABSPATH .$ngg_options['gallerypath'] . 'cache/';
136
- $cached_url = get_option ('siteurl') . '/' . $ngg_options['gallerypath'] . 'cache/' . $cachename;
137
  $cached_file = $cachefolder . $cachename;
138
 
139
  // check first for the file
@@ -150,17 +150,13 @@ class nggImage{
150
 
151
  if (!$thumb->error) {
152
  if ($mode == 'crop') {
153
- // check for portrait format
154
- if ($thumb->currentDimensions['height'] < $thumb->currentDimensions['width']) {
155
- list ( $width, $ratio_h ) = wp_constrain_dimensions($thumb->currentDimensions['width'], $thumb->currentDimensions['height'], $width);
156
- $thumb->resize($width, $ratio_h);
157
- $ypos = ($thumb->currentDimensions['height'] - $height) / 2;
158
- $thumb->crop(0, $ypos, $width, $height);
159
- } else {
160
- $thumb->resize($width, 0);
161
- $ypos = ($thumb->currentDimensions['height'] - $height) / 2;
162
- $thumb->crop(0, $ypos, $width, $height);
163
- }
164
  } else
165
  $thumb->resize($width , $height);
166
 
64
  $this->previewpic = $gallery->previewpic;
65
 
66
  // set urls and paths
67
+ $this->imageURL = site_url() . '/' . $this->path . '/' . $this->filename;
68
+ $this->thumbURL = site_url() . '/' . $this->path . '/thumbs/thumbs_' . $this->filename;
69
  $this->imagePath = WINABSPATH.$this->path . '/' . $this->filename;
70
  $this->thumbPath = WINABSPATH.$this->path . '/thumbs/thumbs_' . $this->filename;
71
  $this->meta_data = unserialize($this->meta_data);
133
  // cache filename should be unique
134
  $cachename = $this->pid . '_' . $mode . '_'. $width . 'x' . $height . '_' . $this->filename;
135
  $cachefolder = WINABSPATH .$ngg_options['gallerypath'] . 'cache/';
136
+ $cached_url = site_url() . '/' . $ngg_options['gallerypath'] . 'cache/' . $cachename;
137
  $cached_file = $cachefolder . $cachename;
138
 
139
  // check first for the file
150
 
151
  if (!$thumb->error) {
152
  if ($mode == 'crop') {
153
+ // calculates the new dimentions for a downsampled image
154
+ list ( $ratio_w, $ratio_h ) = wp_constrain_dimensions($thumb->currentDimensions['width'], $thumb->currentDimensions['height'], $width, $height);
155
+ // check ratio to decide which side should be resized
156
+ ( $ratio_h < $height || $ratio_w == $width ) ? $thumb->resize(0, $height) : $thumb->resize($width, 0);
157
+ // get the best start postion to crop from the middle
158
+ $ypos = ($thumb->currentDimensions['height'] - $height) / 2;
159
+ $thumb->crop(0, $ypos, $width, $height);
 
 
 
 
160
  } else
161
  $thumb->resize($width , $height);
162
 
lib/media-rss.php CHANGED
@@ -65,7 +65,7 @@ class nggMediaRss {
65
 
66
  $title = stripslashes(get_option('blogname'));
67
  $description = stripslashes(get_option('blogdescription'));
68
- $link = get_option('siteurl');
69
  $prev_link = ($page > 0) ? nggMediaRss::get_last_pictures_mrss_url($page-1, $show) : '';
70
  $next_link = count($images)!=0 ? nggMediaRss::get_last_pictures_mrss_url($page+1, $show) : '';
71
 
@@ -218,7 +218,7 @@ class nggMediaRss {
218
  $out .= $indent . "\t<media:description><![CDATA[" . nggGallery::i18n($desc) . "]]></media:description>\n";
219
  $out .= $indent . "\t<media:thumbnail url='" . esc_url($image->thumbURL) . "' width='" . $thumbwidth . "' height='" . $thumbheight . "' />\n";
220
  $out .= $indent . "\t<media:keywords><![CDATA[" . nggGallery::i18n($tag_names) . "]]></media:keywords>\n";
221
- $out .= $indent . "\t<media:copyright><![CDATA[Copyright (c) " . get_option("blogname") . " (" . get_option("siteurl") . ")]]></media:copyright>\n";
222
  $out .= $indent . "</item>\n";
223
 
224
  return $out;
@@ -226,7 +226,7 @@ class nggMediaRss {
226
 
227
  function get_permalink($page_id) {
228
  if ($page_id == 0)
229
- $permalink = get_option('siteurl');
230
  else
231
  $permalink = get_permalink($page_id);
232
 
65
 
66
  $title = stripslashes(get_option('blogname'));
67
  $description = stripslashes(get_option('blogdescription'));
68
+ $link = site_url();
69
  $prev_link = ($page > 0) ? nggMediaRss::get_last_pictures_mrss_url($page-1, $show) : '';
70
  $next_link = count($images)!=0 ? nggMediaRss::get_last_pictures_mrss_url($page+1, $show) : '';
71
 
218
  $out .= $indent . "\t<media:description><![CDATA[" . nggGallery::i18n($desc) . "]]></media:description>\n";
219
  $out .= $indent . "\t<media:thumbnail url='" . esc_url($image->thumbURL) . "' width='" . $thumbwidth . "' height='" . $thumbheight . "' />\n";
220
  $out .= $indent . "\t<media:keywords><![CDATA[" . nggGallery::i18n($tag_names) . "]]></media:keywords>\n";
221
+ $out .= $indent . "\t<media:copyright><![CDATA[Copyright (c) " . get_option("blogname") . " (" . site_url() . ")]]></media:copyright>\n";
222
  $out .= $indent . "</item>\n";
223
 
224
  return $out;
226
 
227
  function get_permalink($page_id) {
228
  if ($page_id == 0)
229
+ $permalink = site_url();
230
  else
231
  $permalink = get_permalink($page_id);
232
 
lib/post-thumbnail.php CHANGED
@@ -116,7 +116,7 @@ class nggPostThumbnail {
116
 
117
  // if we didn't use a cached image then we take the on-the-fly mode
118
  if ($img_src == false)
119
- $img_src = get_option ('siteurl') . '/' . 'index.php?callback=image&amp;pid=' . $image->pid . '&amp;width=' . $width . '&amp;height=' . $height . '&amp;mode=crop';
120
 
121
  } else {
122
  $img_src = $image->thumbURL;
@@ -195,7 +195,7 @@ class nggPostThumbnail {
195
 
196
  // if we didn't use a cached image then we take the on-the-fly mode
197
  if ( $img_src == false )
198
- $img_src = get_option ('siteurl') . '/' . 'index.php?callback=image&amp;pid=' . $image->pid . '&amp;width=' . $width . '&amp;height=' . $height . '&amp;mode=crop';
199
 
200
  $thumbnail_html = '<img width="266" src="'. $img_src . '" alt="'.$image->alttext.'" title="'.$image->alttext.'" />';
201
 
116
 
117
  // if we didn't use a cached image then we take the on-the-fly mode
118
  if ($img_src == false)
119
+ $img_src = site_url() . '/' . 'index.php?callback=image&amp;pid=' . $image->pid . '&amp;width=' . $width . '&amp;height=' . $height . '&amp;mode=crop';
120
 
121
  } else {
122
  $img_src = $image->thumbURL;
195
 
196
  // if we didn't use a cached image then we take the on-the-fly mode
197
  if ( $img_src == false )
198
+ $img_src = site_url() . '/' . 'index.php?callback=image&amp;pid=' . $image->pid . '&amp;width=' . $width . '&amp;height=' . $height . '&amp;mode=crop';
199
 
200
  $thumbnail_html = '<img width="266" src="'. $img_src . '" alt="'.$image->alttext.'" title="'.$image->alttext.'" />';
201
 
nggallery.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: NextGEN Gallery
4
  Plugin URI: http://alexrabe.de/?page_id=80
5
  Description: A NextGENeration Photo gallery for the Web 2.0.
6
  Author: Alex Rabe
7
- Version: 1.6.1
8
 
9
  Author URI: http://alexrabe.de/
10
 
@@ -34,7 +34,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
34
  if (!class_exists('nggLoader')) {
35
  class nggLoader {
36
 
37
- var $version = '1.6.1';
38
  var $dbversion = '1.6.0';
39
  var $minium_WP = '3.0';
40
  var $updateURL = 'http://nextgen.boelinger.com/version.php';
@@ -94,6 +94,9 @@ class nggLoader {
94
  // All credits to the tranlator
95
  $this->translator = '<p class="hint">'. __('<strong>Translation by : </strong><a target="_blank" href="http://alexrabe.de/wordpress-plugins/nextgen-gallery/languages/">See here</a>', 'nggallery') . '</p>';
96
  $this->translator .= '<p class="hint">'. __('<strong>This translation is not yet updated for Version 1.6.0</strong>. If you would like to help with translation, download the current po from the plugin folder and read <a href="http://alexrabe.de/wordpress-plugins/wordtube/translation-of-plugins/">here</a> how you can translate the plugin.', 'nggallery') . '</p>';
 
 
 
97
 
98
  // Content Filters
99
  add_filter('ngg_gallery_name', 'sanitize_title');
@@ -179,10 +182,12 @@ class nggLoader {
179
  }
180
 
181
  function check_memory_limit() {
182
-
183
- $memory_limit = (int) substr( ini_get('memory_limit'), 0, -1);
 
 
184
  //This works only with enough memory, 16MB is silly, wordpress requires already 16MB :-)
185
- if ( ($memory_limit != 0) && ($memory_limit < 16 ) ) {
186
  add_action(
187
  'admin_notices',
188
  create_function(
@@ -196,6 +201,22 @@ class nggLoader {
196
  return true;
197
 
198
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
199
 
200
  function define_tables() {
201
  global $wpdb;
@@ -258,6 +279,7 @@ class nggLoader {
258
  require_once (dirname (__FILE__) . '/lib/core.php'); // 94.840
259
  require_once (dirname (__FILE__) . '/lib/ngg-db.php'); // 132.400
260
  require_once (dirname (__FILE__) . '/lib/image.php'); // 59.424
 
261
  require_once (dirname (__FILE__) . '/lib/post-thumbnail.php'); // n.a.
262
  require_once (dirname (__FILE__) . '/widgets/widgets.php'); // 298.792
263
  require_once (dirname (__FILE__) . '/lib/multisite.php');
@@ -276,7 +298,6 @@ class nggLoader {
276
  require_once (dirname (__FILE__) . '/admin/ajax.php');
277
  else {
278
  require_once (dirname (__FILE__) . '/lib/meta.php'); // 131.856
279
- require_once (dirname (__FILE__) . '/lib/tags.php'); // 117.136
280
  require_once (dirname (__FILE__) . '/lib/media-rss.php'); // 82.768
281
  require_once (dirname (__FILE__) . '/lib/rewrite.php'); // 71.936
282
  include_once (dirname (__FILE__) . '/admin/tinymce/tinymce.php'); // 22.408
@@ -298,6 +319,10 @@ class nggLoader {
298
 
299
  function load_scripts() {
300
 
 
 
 
 
301
  // activate Thickbox
302
  if ($this->options['thumbEffect'] == 'thickbox') {
303
  wp_enqueue_script( 'thickbox' );
@@ -320,15 +345,18 @@ class nggLoader {
320
  // required for the slideshow
321
  if ( NGGALLERY_IREXIST == true && $this->options['enableIR'] == '1' && nggGallery::detect_mobile_phone() === false )
322
  wp_enqueue_script('swfobject', NGGALLERY_URLPATH .'admin/js/swfobject.js', FALSE, '2.2');
323
- else
324
- wp_enqueue_script ( 'jquery' );
 
 
 
325
 
326
  // Load AJAX navigation script, works only with shutter script as we need to add the listener
327
  if ( $this->options['galAjaxNav'] ) {
328
  if ( ($this->options['thumbEffect'] == "shutter") || function_exists('srel_makeshutter') ) {
329
  wp_enqueue_script ( 'ngg_script', NGGALLERY_URLPATH . 'js/ngg.js', array('jquery'), '2.0');
330
  wp_localize_script( 'ngg_script', 'ngg_ajax', array('path' => NGGALLERY_URLPATH,
331
- 'callback' => get_option ('siteurl') . '/' . 'index.php?callback=ngg-ajax',
332
  'loading' => __('loading', 'nggallery'),
333
  ) );
334
  }
@@ -338,7 +366,7 @@ class nggLoader {
338
 
339
  function load_thickbox_images() {
340
  // WP core reference relative to the images. Bad idea
341
- echo "\n" . '<script type="text/javascript">tb_pathToImage = "' . get_option('siteurl') . '/wp-includes/js/thickbox/loadingAnimation.gif";tb_closeImage = "' . get_option('siteurl') . '/wp-includes/js/thickbox/tb-close.png";</script>'. "\n";
342
  }
343
 
344
  function load_styles() {
@@ -482,4 +510,4 @@ class nggLoader {
482
  global $ngg;
483
  $ngg = new nggLoader();
484
  }
485
- ?>
4
  Plugin URI: http://alexrabe.de/?page_id=80
5
  Description: A NextGENeration Photo gallery for the Web 2.0.
6
  Author: Alex Rabe
7
+ Version: 1.6.2
8
 
9
  Author URI: http://alexrabe.de/
10
 
34
  if (!class_exists('nggLoader')) {
35
  class nggLoader {
36
 
37
+ var $version = '1.6.2';
38
  var $dbversion = '1.6.0';
39
  var $minium_WP = '3.0';
40
  var $updateURL = 'http://nextgen.boelinger.com/version.php';
94
  // All credits to the tranlator
95
  $this->translator = '<p class="hint">'. __('<strong>Translation by : </strong><a target="_blank" href="http://alexrabe.de/wordpress-plugins/nextgen-gallery/languages/">See here</a>', 'nggallery') . '</p>';
96
  $this->translator .= '<p class="hint">'. __('<strong>This translation is not yet updated for Version 1.6.0</strong>. If you would like to help with translation, download the current po from the plugin folder and read <a href="http://alexrabe.de/wordpress-plugins/wordtube/translation-of-plugins/">here</a> how you can translate the plugin.', 'nggallery') . '</p>';
97
+
98
+ // Check for upgrade
99
+ $this->check_for_upgrade();
100
 
101
  // Content Filters
102
  add_filter('ngg_gallery_name', 'sanitize_title');
182
  }
183
 
184
  function check_memory_limit() {
185
+
186
+ // get the real memory limit before some increase it
187
+ $this->memory_limit = (int) substr( ini_get('memory_limit'), 0, -1);
188
+
189
  //This works only with enough memory, 16MB is silly, wordpress requires already 16MB :-)
190
+ if ( ($this->memory_limit != 0) && ($this->memory_limit < 16 ) ) {
191
  add_action(
192
  'admin_notices',
193
  create_function(
201
  return true;
202
 
203
  }
204
+
205
+ function check_for_upgrade() {
206
+
207
+ // Inform about a database upgrade
208
+ if( get_option( 'ngg_db_version' ) != NGG_DBVERSION ) {
209
+ add_action(
210
+ 'admin_notices',
211
+ create_function(
212
+ '',
213
+ 'echo \'<div id="message" class="error"><p><strong>' . __('Please update the database of NextGEN Gallery.', 'nggallery') . ' <a href="admin.php?page=nextgen-gallery">' . __('Click here to proceed.', 'nggallery') . '</a>' . '</strong></p></div>\';'
214
+ )
215
+ );
216
+ }
217
+
218
+ return;
219
+ }
220
 
221
  function define_tables() {
222
  global $wpdb;
279
  require_once (dirname (__FILE__) . '/lib/core.php'); // 94.840
280
  require_once (dirname (__FILE__) . '/lib/ngg-db.php'); // 132.400
281
  require_once (dirname (__FILE__) . '/lib/image.php'); // 59.424
282
+ require_once (dirname (__FILE__) . '/lib/tags.php'); // 117.136
283
  require_once (dirname (__FILE__) . '/lib/post-thumbnail.php'); // n.a.
284
  require_once (dirname (__FILE__) . '/widgets/widgets.php'); // 298.792
285
  require_once (dirname (__FILE__) . '/lib/multisite.php');
298
  require_once (dirname (__FILE__) . '/admin/ajax.php');
299
  else {
300
  require_once (dirname (__FILE__) . '/lib/meta.php'); // 131.856
 
301
  require_once (dirname (__FILE__) . '/lib/media-rss.php'); // 82.768
302
  require_once (dirname (__FILE__) . '/lib/rewrite.php'); // 71.936
303
  include_once (dirname (__FILE__) . '/admin/tinymce/tinymce.php'); // 22.408
319
 
320
  function load_scripts() {
321
 
322
+ // if you don't want that NGG load the scripts, add this constant
323
+ if ( defined('NGG_SKIP_LOAD_SCRIPTS') )
324
+ return;
325
+
326
  // activate Thickbox
327
  if ($this->options['thumbEffect'] == 'thickbox') {
328
  wp_enqueue_script( 'thickbox' );
345
  // required for the slideshow
346
  if ( NGGALLERY_IREXIST == true && $this->options['enableIR'] == '1' && nggGallery::detect_mobile_phone() === false )
347
  wp_enqueue_script('swfobject', NGGALLERY_URLPATH .'admin/js/swfobject.js', FALSE, '2.2');
348
+ else {
349
+ wp_register_script('jquery-cycle', NGGALLERY_URLPATH .'js/jquery.cycle.all.min.js', array('jquery'), '2.88');
350
+ wp_enqueue_script('ngg-slideshow', NGGALLERY_URLPATH .'js/ngg.slideshow.min.js', array('jquery-cycle'), '1.01');
351
+
352
+ }
353
 
354
  // Load AJAX navigation script, works only with shutter script as we need to add the listener
355
  if ( $this->options['galAjaxNav'] ) {
356
  if ( ($this->options['thumbEffect'] == "shutter") || function_exists('srel_makeshutter') ) {
357
  wp_enqueue_script ( 'ngg_script', NGGALLERY_URLPATH . 'js/ngg.js', array('jquery'), '2.0');
358
  wp_localize_script( 'ngg_script', 'ngg_ajax', array('path' => NGGALLERY_URLPATH,
359
+ 'callback' => site_url() . '/' . 'index.php?callback=ngg-ajax',
360
  'loading' => __('loading', 'nggallery'),
361
  ) );
362
  }
366
 
367
  function load_thickbox_images() {
368
  // WP core reference relative to the images. Bad idea
369
+ echo "\n" . '<script type="text/javascript">tb_pathToImage = "' . site_url() . '/wp-includes/js/thickbox/loadingAnimation.gif";tb_closeImage = "' . site_url() . '/wp-includes/js/thickbox/tb-close.png";</script>'. "\n";
370
  }
371
 
372
  function load_styles() {
510
  global $ngg;
511
  $ngg = new nggLoader();
512
  }
513
+ ?>
nggfunctions.php CHANGED
@@ -47,7 +47,7 @@ function nggShowSlideshow($galleryID, $width, $height) {
47
  $swfobject->add_attributes('name', 'so' . $galleryID);
48
 
49
  // adding the flash parameter
50
- $swfobject->add_flashvars( 'file', urlencode ( trailingslashit ( get_option ('siteurl') ) . 'index.php?callback=imagerotator&gid=' . $galleryID ) );
51
  $swfobject->add_flashvars( 'shuffle', $ngg_options['irShuffle'], 'true', 'bool');
52
  // option has oposite meaning : true should switch to next image
53
  $swfobject->add_flashvars( 'linkfromdisplay', !$ngg_options['irLinkfromdisplay'], 'false', 'bool');
@@ -121,16 +121,14 @@ function nggShow_JS_Slideshow($galleryID, $width, $height, $class = 'ngg-slidesh
121
  $out .= "\n". '</div>';
122
  $out .= '</div>'."\n";
123
  $out .= "\n".'<script type="text/javascript" defer="defer">';
124
- $out .= "\n".'jQuery.getScript( "' . NGGALLERY_URLPATH . 'js/jquery.cycle.all.min.js' . '", function() { ';
125
- $out .= "\n".'jQuery.getScript( "' . NGGALLERY_URLPATH . 'js/ngg.slideshow.min.js' . '", function() { jQuery("#' . $anchor . '").nggSlideshow( {' .
126
  'id: ' . $galleryID . ',' .
127
  'fx:"' . $ngg_options['slideFx'] . '",' .
128
  'width:' . $width . ',' .
129
  'height:' . $height . ',' .
130
- 'domain: "' . trailingslashit ( get_option ('siteurl') ) . '",' .
131
  'timeout:' . $ngg_options['irRotatetime'] * 1000 .
132
- '}); } );';
133
- $out .= "\n".'} );';
134
  $out .= "\n".'</script>';
135
 
136
  return $out;
@@ -224,6 +222,8 @@ function nggShowGallery( $galleryID, $template = '', $images = false ) {
224
  function nggCreateGallery($picturelist, $galleryID = false, $template = '', $images = false) {
225
  global $nggRewrite;
226
 
 
 
227
  $ngg_options = nggGallery::get_option('ngg_options');
228
 
229
  //the shortcode parameter will override global settings, TODO: rewrite this to a class
@@ -534,12 +534,12 @@ function nggCreateAlbum( $galleriesID, $template = 'extend', $album = 0) {
534
  // add the file name and the link
535
  if ($galleries[$key]->previewpic != 0) {
536
  $galleries[$key]->previewname = $albumPreview[$galleries[$key]->previewpic]->filename;
537
- $galleries[$key]->previewurl = get_option ('siteurl').'/' . $galleries[$key]->path . '/thumbs/thumbs_' . $albumPreview[$galleries[$key]->previewpic]->filename;
538
  } else {
539
  $first_image = $wpdb->get_row('SELECT * FROM '. $wpdb->nggpictures .' WHERE exclude != 1 AND galleryid = '. $key .' ORDER by pid DESC limit 0,1');
540
  $galleries[$key]->previewpic = $first_image->pid;
541
  $galleries[$key]->previewname = $first_image->filename;
542
- $galleries[$key]->previewurl = get_option ('siteurl') . '/' . $galleries[$key]->path . '/thumbs/thumbs_' . $first_image->filename;
543
  }
544
 
545
  // choose between variable and page link
@@ -774,7 +774,7 @@ function nggSinglePicture($imageID, $width = 250, $height = 250, $mode = '', $fl
774
 
775
  // if we didn't use a cached image then we take the on-the-fly mode
776
  if (!$picture->thumbnailURL)
777
- $picture->thumbnailURL = get_option ('siteurl') . '/' . 'index.php?callback=image&amp;pid=' . $imageID . '&amp;width=' . $width . '&amp;height=' . $height . '&amp;mode=' . $mode;
778
 
779
  // add more variables for render output
780
  $picture->imageURL = ( empty($link) ) ? $picture->imageURL : $link;
@@ -931,7 +931,7 @@ function nggShowAlbumTags($taglist) {
931
  foreach ($picturelist as $key => $picture) {
932
  $picturelist[$key]->previewpic = $picture->pid;
933
  $picturelist[$key]->previewname = $picture->filename;
934
- $picturelist[$key]->previewurl = get_option ('siteurl') . '/' . $picture->path . '/thumbs/thumbs_' . $picture->filename;
935
  $picturelist[$key]->counter = $picture->count;
936
  $picturelist[$key]->title = $picture->name;
937
  $picturelist[$key]->pagelink = $nggRewrite->get_permalink( array('gallerytag'=>$picture->slug) );
@@ -1009,7 +1009,7 @@ function the_related_images($type = 'tags', $maxNumbers = 7) {
1009
  }
1010
 
1011
  /**
1012
- * nggShowRandomRecent($type, $maxImages,$template) - return recent or random images
1013
  *
1014
  * @access public
1015
  * @param string $type 'id' (for latest addition to DB), 'date' (for image with the latest date), 'sort' (for image sorted by user order) or 'random'
47
  $swfobject->add_attributes('name', 'so' . $galleryID);
48
 
49
  // adding the flash parameter
50
+ $swfobject->add_flashvars( 'file', urlencode ( trailingslashit ( site_url() ) . 'index.php?callback=imagerotator&gid=' . $galleryID ) );
51
  $swfobject->add_flashvars( 'shuffle', $ngg_options['irShuffle'], 'true', 'bool');
52
  // option has oposite meaning : true should switch to next image
53
  $swfobject->add_flashvars( 'linkfromdisplay', !$ngg_options['irLinkfromdisplay'], 'false', 'bool');
121
  $out .= "\n". '</div>';
122
  $out .= '</div>'."\n";
123
  $out .= "\n".'<script type="text/javascript" defer="defer">';
124
+ $out .= "\n" . 'jQuery("#' . $anchor . '").nggSlideshow( {' .
 
125
  'id: ' . $galleryID . ',' .
126
  'fx:"' . $ngg_options['slideFx'] . '",' .
127
  'width:' . $width . ',' .
128
  'height:' . $height . ',' .
129
+ 'domain: "' . trailingslashit ( site_url() ) . '",' .
130
  'timeout:' . $ngg_options['irRotatetime'] * 1000 .
131
+ '});';
 
132
  $out .= "\n".'</script>';
133
 
134
  return $out;
222
  function nggCreateGallery($picturelist, $galleryID = false, $template = '', $images = false) {
223
  global $nggRewrite;
224
 
225
+ require_once (dirname (__FILE__) . '/lib/media-rss.php');
226
+
227
  $ngg_options = nggGallery::get_option('ngg_options');
228
 
229
  //the shortcode parameter will override global settings, TODO: rewrite this to a class
534
  // add the file name and the link
535
  if ($galleries[$key]->previewpic != 0) {
536
  $galleries[$key]->previewname = $albumPreview[$galleries[$key]->previewpic]->filename;
537
+ $galleries[$key]->previewurl = site_url().'/' . $galleries[$key]->path . '/thumbs/thumbs_' . $albumPreview[$galleries[$key]->previewpic]->filename;
538
  } else {
539
  $first_image = $wpdb->get_row('SELECT * FROM '. $wpdb->nggpictures .' WHERE exclude != 1 AND galleryid = '. $key .' ORDER by pid DESC limit 0,1');
540
  $galleries[$key]->previewpic = $first_image->pid;
541
  $galleries[$key]->previewname = $first_image->filename;
542
+ $galleries[$key]->previewurl = site_url() . '/' . $galleries[$key]->path . '/thumbs/thumbs_' . $first_image->filename;
543
  }
544
 
545
  // choose between variable and page link
774
 
775
  // if we didn't use a cached image then we take the on-the-fly mode
776
  if (!$picture->thumbnailURL)
777
+ $picture->thumbnailURL = site_url() . '/' . 'index.php?callback=image&amp;pid=' . $imageID . '&amp;width=' . $width . '&amp;height=' . $height . '&amp;mode=' . $mode;
778
 
779
  // add more variables for render output
780
  $picture->imageURL = ( empty($link) ) ? $picture->imageURL : $link;
931
  foreach ($picturelist as $key => $picture) {
932
  $picturelist[$key]->previewpic = $picture->pid;
933
  $picturelist[$key]->previewname = $picture->filename;
934
+ $picturelist[$key]->previewurl = site_url() . '/' . $picture->path . '/thumbs/thumbs_' . $picture->filename;
935
  $picturelist[$key]->counter = $picture->count;
936
  $picturelist[$key]->title = $picture->name;
937
  $picturelist[$key]->pagelink = $nggRewrite->get_permalink( array('gallerytag'=>$picture->slug) );
1009
  }
1010
 
1011
  /**
1012
+ * nggShowRandomRecent($type, $maxImages, $template, $galleryId) - return recent or random images
1013
  *
1014
  * @access public
1015
  * @param string $type 'id' (for latest addition to DB), 'date' (for image with the latest date), 'sort' (for image sorted by user order) or 'random'
nggshow.php CHANGED
@@ -31,21 +31,17 @@ if ( !empty($_GET['width']) || !empty($_GET['height']) ) {
31
  $w = ( !empty($_GET['width'])) ? intval($_GET['width']) : 0;
32
  $h = ( !empty($_GET['height'])) ? intval($_GET['height']) : 0;
33
  // limit the maxium size, prevent server memory overload
34
- if ($w > 1280) $w = 1280;
35
  if ($h > 1280) $h = 1280;
36
  // Crop mode for post thumbnail
37
  if ($mode == 'crop') {
38
- // check for portrait format
39
- if ($thumb->currentDimensions['height'] < $thumb->currentDimensions['width']) {
40
- list ( $w, $ratio_h ) = wp_constrain_dimensions($thumb->currentDimensions['width'], $thumb->currentDimensions['height'], $w);
41
- $thumb->resize($w, $ratio_h);
42
- $ypos = ($thumb->currentDimensions['height'] - $h) / 2;
43
- $thumb->crop(0, $ypos, $w, $h);
44
- } else {
45
- $thumb->resize($w, 0);
46
- $ypos = ($thumb->currentDimensions['height'] - $h) / 2;
47
- $thumb->crop(0, $ypos, $w, $h);
48
- }
49
  } else
50
  $thumb->resize( $w, $h );
51
  }
31
  $w = ( !empty($_GET['width'])) ? intval($_GET['width']) : 0;
32
  $h = ( !empty($_GET['height'])) ? intval($_GET['height']) : 0;
33
  // limit the maxium size, prevent server memory overload
34
+ if ($w > 1920) $w = 1920;
35
  if ($h > 1280) $h = 1280;
36
  // Crop mode for post thumbnail
37
  if ($mode == 'crop') {
38
+ // calculates the new dimentions for a downsampled image
39
+ list ( $ratio_w, $ratio_h ) = wp_constrain_dimensions($thumb->currentDimensions['width'], $thumb->currentDimensions['height'], $w, $h);
40
+ // check ratio to decide which side should be resized
41
+ ( $ratio_h < $h || $ratio_w == $w ) ? $thumb->resize(0, $h) : $thumb->resize($w, 0);
42
+ // get the best start postion to crop from the middle
43
+ $ypos = ($thumb->currentDimensions['height'] - $h) / 2;
44
+ $thumb->crop(0, $ypos, $w, $h);
 
 
 
 
45
  } else
46
  $thumb->resize( $w, $h );
47
  }
readme.txt CHANGED
@@ -134,6 +134,15 @@ To show the most recent added mages : **[recent max=x ]**
134
 
135
  == Changelog ==
136
 
 
 
 
 
 
 
 
 
 
137
  = V1.6.1 - 08.09.2010 =
138
  * Bugfix : Script load of swfobject.js failed
139
  * Bugfix : Show sideshow also with 1 or 2 images
134
 
135
  == Changelog ==
136
 
137
+ = V1.6.2 - 19.09.2010 =
138
+ * NEW : Added constant NGG_SKIP_LOAD_SCRIPTS to avoid script load
139
+ * Bugfix : Load Tags library with core files
140
+ * Bugfix : Slideshow script failed in IE7, load script now in header
141
+ * Bugfix : Load slideshow widget always
142
+ * Changed : New admin notice for database upgrade
143
+ * Changed : Rework crop feature for featured images
144
+ * Changed : Use site_url() instead get_option ('siteurl'), required for SSL support
145
+
146
  = V1.6.1 - 08.09.2010 =
147
  * Bugfix : Script load of swfobject.js failed
148
  * Bugfix : Show sideshow also with 1 or 2 images
widgets/widgets.php CHANGED
@@ -25,10 +25,6 @@ class nggSlideshowWidget extends WP_Widget {
25
 
26
  function widget( $args, $instance ) {
27
  extract( $args );
28
-
29
- // If the Imagerotator didn't exist, skip the output
30
- if ( NGGALLERY_IREXIST == false )
31
- return;
32
 
33
  $title = apply_filters('widget_title', empty( $instance['title'] ) ? __('Slideshow', 'nggallery') : $instance['title'], $instance, $this->id_base);
34
 
@@ -55,7 +51,7 @@ class nggSlideshowWidget extends WP_Widget {
55
  $ngg_options = get_option('ngg_options');
56
 
57
  //Redirect all calls to the JavaScript slideshow if wanted
58
- if ( $ngg_options['enableIR'] !== '1' || nggGallery::detect_mobile_phone() === true )
59
  return nggShow_JS_Slideshow($galleryID, $irWidth, $irHeight, 'ngg-widget-slideshow');
60
 
61
  if (empty($irWidth) ) $irWidth = (int) $ngg_options['irWidth'];
@@ -71,7 +67,7 @@ class nggSlideshowWidget extends WP_Widget {
71
  $swfobject->add_attributes('styleclass', 'slideshow-widget');
72
 
73
  // adding the flash parameter
74
- $swfobject->add_flashvars( 'file', urlencode( get_option ('siteurl') . '/' . 'index.php?callback=imagerotator&gid=' . $galleryID ) );
75
  $swfobject->add_flashvars( 'shownavigation', 'false', 'true', 'bool');
76
  $swfobject->add_flashvars( 'shuffle', $ngg_options['irShuffle'], 'true', 'bool');
77
  $swfobject->add_flashvars( 'showicons', $ngg_options['irShowicons'], 'true', 'bool');
@@ -329,7 +325,7 @@ class nggWidget extends WP_Widget {
329
  $instance['show'] = ( $instance['show'] == 'orginal' ) ? 'original' : $instance['show'];
330
 
331
  if ( $instance['show'] == 'original' )
332
- $out .= '<img src="' . get_option ('siteurl') . '/' . 'index.php?callback=image&amp;pid='.$image->pid.'&amp;width='.$instance['width'].'&amp;height='.$instance['height']. '" title="'.$alttext.'" alt="'.$alttext.'" />';
333
  else
334
  $out .= '<img src="'.$image->thumbURL.'" width="'.$instance['width'].'" height="'.$instance['height'].'" title="'.$alttext.'" alt="'.$alttext.'" />';
335
 
25
 
26
  function widget( $args, $instance ) {
27
  extract( $args );
 
 
 
 
28
 
29
  $title = apply_filters('widget_title', empty( $instance['title'] ) ? __('Slideshow', 'nggallery') : $instance['title'], $instance, $this->id_base);
30
 
51
  $ngg_options = get_option('ngg_options');
52
 
53
  //Redirect all calls to the JavaScript slideshow if wanted
54
+ if ( $ngg_options['enableIR'] !== '1' || nggGallery::detect_mobile_phone() === true || NGGALLERY_IREXIST == false )
55
  return nggShow_JS_Slideshow($galleryID, $irWidth, $irHeight, 'ngg-widget-slideshow');
56
 
57
  if (empty($irWidth) ) $irWidth = (int) $ngg_options['irWidth'];
67
  $swfobject->add_attributes('styleclass', 'slideshow-widget');
68
 
69
  // adding the flash parameter
70
+ $swfobject->add_flashvars( 'file', urlencode( site_url() . '/' . 'index.php?callback=imagerotator&gid=' . $galleryID ) );
71
  $swfobject->add_flashvars( 'shownavigation', 'false', 'true', 'bool');
72
  $swfobject->add_flashvars( 'shuffle', $ngg_options['irShuffle'], 'true', 'bool');
73
  $swfobject->add_flashvars( 'showicons', $ngg_options['irShowicons'], 'true', 'bool');
325
  $instance['show'] = ( $instance['show'] == 'orginal' ) ? 'original' : $instance['show'];
326
 
327
  if ( $instance['show'] == 'original' )
328
+ $out .= '<img src="' . site_url() . '/' . 'index.php?callback=image&amp;pid='.$image->pid.'&amp;width='.$instance['width'].'&amp;height='.$instance['height']. '" title="'.$alttext.'" alt="'.$alttext.'" />';
329
  else
330
  $out .= '<img src="'.$image->thumbURL.'" width="'.$instance['width'].'" height="'.$instance['height'].'" title="'.$alttext.'" alt="'.$alttext.'" />';
331
 
xml/imagerotator.php CHANGED
@@ -15,7 +15,7 @@ if ( !defined('ABSPATH') )
15
  global $wpdb;
16
 
17
  $ngg_options = get_option ('ngg_options');
18
- $siteurl = get_option ('siteurl');
19
 
20
  // get the gallery id
21
  $galleryID = (int) $_GET['gid'];
15
  global $wpdb;
16
 
17
  $ngg_options = get_option ('ngg_options');
18
+ $siteurl = site_url();
19
 
20
  // get the gallery id
21
  $galleryID = (int) $_GET['gid'];