NextGEN Gallery – WordPress Gallery Plugin - Version 0.81

Version Description

Download this release

Release Info

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

Code changes from version 0.80 to 0.81

admin/addgallery.php CHANGED
@@ -86,7 +86,6 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
86
  <![endif]-->
87
 
88
  <?php if($ngg_options['swfUpload']) { ?>
89
-
90
  <!-- SWFUpload script -->
91
  <script type="text/javascript">
92
  var ngg_swf_upload;
@@ -113,14 +112,16 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
113
  upload_complete_handler : uploadComplete,
114
 
115
  post_params : {
116
- galleryselect : "0"
 
 
117
  },
118
 
119
  // i18names
120
  custom_settings : {
121
- remove : "<?php _e('remove', 'nggallery') ;?>",
122
- browse : "<?php _e('Browse...', 'nggallery') ;?>",
123
- upload : "<?php _e('Upload images', 'nggallery') ;?>"
124
  },
125
 
126
  // Debug settings
86
  <![endif]-->
87
 
88
  <?php if($ngg_options['swfUpload']) { ?>
 
89
  <!-- SWFUpload script -->
90
  <script type="text/javascript">
91
  var ngg_swf_upload;
112
  upload_complete_handler : uploadComplete,
113
 
114
  post_params : {
115
+ "user_cookie" : "<?php echo $_COOKIE[USER_COOKIE]; ?>",
116
+ "pass_cookie" : "<?php echo $_COOKIE[PASS_COOKIE]; ?>",
117
+ "galleryselect" : "0"
118
  },
119
 
120
  // i18names
121
  custom_settings : {
122
+ "remove" : "<?php _e('remove', 'nggallery') ;?>",
123
+ "browse" : "<?php _e('Browse...', 'nggallery') ;?>",
124
+ "upload" : "<?php _e('Upload images', 'nggallery') ;?>"
125
  },
126
 
127
  // Debug settings
admin/functions.php CHANGED
@@ -8,13 +8,11 @@ class nggAdmin{
8
  function create_gallery($gallerytitle, $defaultpath) {
9
  // create a new gallery & folder
10
  global $wpdb;
11
-
12
- $myabspath = str_replace("\\","/",ABSPATH); // required for windows
13
 
14
  //cleanup pathname
15
  $galleryname = apply_filters('ngg_gallery_name', $gallerytitle);
16
  $nggpath = $defaultpath.$galleryname;
17
- $nggRoot = $myabspath.$defaultpath;
18
  $txt = "";
19
 
20
  // No gallery name ?
@@ -34,7 +32,6 @@ class nggAdmin{
34
  }
35
 
36
  // check for permission settings, Safe mode limitations are not taken into account.
37
- // if ( substr(decoct(@fileperms($myabspath.$defaultpath)),1) != decoct(NGGFOLDER_PERMISSION) ) {
38
  if ( !is_writeable($nggRoot ) ) {
39
  $txt = __('Directory', 'nggallery').' <strong>'.$defaultpath.'</strong> '.__('is not writeable !', 'nggallery').'<br />';
40
  $txt .= __('Check this link, if you didn\'t know how to set the permission :', 'nggallery').' <a href="http://codex.wordpress.org/Changing_File_Permissions">http://codex.wordpress.org/Changing_File_Permissions</a> ';
@@ -42,29 +39,38 @@ class nggAdmin{
42
  return false;
43
  }
44
 
45
- // avoid double creation
46
- if ( is_dir($myabspath.$nggpath) ) {
47
- nggallery::show_error(__('Directory ', 'nggallery').' <strong>'.$nggpath.'</strong> '.__('already exists!', 'nggallery'));
48
- } else {
49
- // create new directories
50
- if ( !wp_mkdir_p ($myabspath.$nggpath) )
51
- $txt = __('Unable to create directory ', 'nggallery').$nggpath.'!<br />';
52
- if ( !is_writeable($nggRoot ) )
53
- $txt .= __('Directory', 'nggallery').' <strong>'.$defaultpath.'</strong> '.__('is not writeable !', 'nggallery').'<br />';
54
- if ( !wp_mkdir_p ( $myabspath.$nggpath.'/thumbs') )
55
- $txt .= __('Unable to create directory ', 'nggallery').$nggpath.'/thumbs !<br />';
56
-
57
- if (SAFE_MODE) {
58
- $help = __('The server setting Safe-Mode is on !', 'nggallery');
59
- $help .= '<br />'.__('If you have problems, please create directory', 'nggallery').' <strong>'.$nggpath.'</strong> ';
60
- $help .= __('and the thumbnails directory', 'nggallery').' <strong>'.$nggpath.'/thumbs</strong> '.__('with permission 777 manually !', 'nggallery');
61
- nggallery::show_message($help);
62
- }
63
-
64
- if ( !empty($txt) ) {
65
- nggallery::show_error($txt);
66
- return false;
 
 
 
 
 
 
 
67
  }
 
 
68
  }
69
 
70
  $result=$wpdb->get_var("SELECT name FROM $wpdb->nggallery WHERE name = '$galleryname' ");
@@ -73,7 +79,7 @@ class nggAdmin{
73
  return false;
74
  } else {
75
  $result = $wpdb->query("INSERT INTO $wpdb->nggallery (name, path, title) VALUES ('$galleryname', '$nggpath', '$gallerytitle') ");
76
- if ($result) nggallery::show_message(__('Gallery', 'nggallery').' <strong>'.$wpdb->insert_id." : ".$galleryname.'</strong> '.__('successfully created!','nggallery')."<br />".__('You can show this gallery with the tag','nggallery').'<strong> [gallery='.$wpdb->insert_id.']</strong>'.$safemode);
77
  return true;;
78
  }
79
  }
@@ -457,7 +463,7 @@ class nggAdmin{
457
  }
458
 
459
  // **************************************************************
460
- function getOnlyImages($p_event, &$p_header) {
461
  $info = pathinfo($p_header['filename']);
462
  // check for extension
463
  $ext = array("jpeg", "jpg", "png", "gif");
@@ -716,7 +722,7 @@ class nggAdmin{
716
  $folder_uid = fileowner($foldername);
717
 
718
  if ($script_uid != $folder_uid) {
719
- $message = sprintf(__('SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually','nggallery'), WINABSPATH.$gallerypath);
720
  $message .= '<br />' . sprintf(__('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','nggallery'), $script_uid, $folder_uid );
721
  nggallery::show_error($message);
722
  return false;
@@ -909,9 +915,9 @@ class wpProgressBar {
909
 
910
  // **************************************************************
911
  //TODO: Cannot be member of a class ? Check PCLZIP later...
912
- function ngg_getOnlyImages($p_event, &$p_header) {
913
 
914
- return nggAdmin::getOnlyImages($p_event, &$p_header);
915
 
916
  }
917
 
8
  function create_gallery($gallerytitle, $defaultpath) {
9
  // create a new gallery & folder
10
  global $wpdb;
 
 
11
 
12
  //cleanup pathname
13
  $galleryname = apply_filters('ngg_gallery_name', $gallerytitle);
14
  $nggpath = $defaultpath.$galleryname;
15
+ $nggRoot = WINABSPATH.$defaultpath;
16
  $txt = "";
17
 
18
  // No gallery name ?
32
  }
33
 
34
  // check for permission settings, Safe mode limitations are not taken into account.
 
35
  if ( !is_writeable($nggRoot ) ) {
36
  $txt = __('Directory', 'nggallery').' <strong>'.$defaultpath.'</strong> '.__('is not writeable !', 'nggallery').'<br />';
37
  $txt .= __('Check this link, if you didn\'t know how to set the permission :', 'nggallery').' <a href="http://codex.wordpress.org/Changing_File_Permissions">http://codex.wordpress.org/Changing_File_Permissions</a> ';
39
  return false;
40
  }
41
 
42
+ // 1. Create new gallery folder
43
+ if ( !is_dir(WINABSPATH.$nggpath) ) {
44
+ if ( !wp_mkdir_p (WINABSPATH.$nggpath) )
45
+ $txt = __('Unable to create directory ', 'nggallery').$nggpath.'!<br />';
46
+ }
47
+
48
+ // 2. Check folder permission
49
+ if ( !is_writeable(WINABSPATH.$nggpath ) )
50
+ $txt .= __('Directory', 'nggallery').' <strong>'.$nggpath.'</strong> '.__('is not writeable !', 'nggallery').'<br />';
51
+
52
+ // 3. Now create "thumbs" folder inside
53
+ if ( !is_dir(WINABSPATH.$nggpath.'/thumbs') ) {
54
+ if ( !wp_mkdir_p ( WINABSPATH.$nggpath.'/thumbs') )
55
+ $txt .= __('Unable to create directory ', 'nggallery').' <strong>'.$nggpath.'/thumbs !</strong>';
56
+ }
57
+
58
+ if (SAFE_MODE) {
59
+ $help = __('The server setting Safe-Mode is on !', 'nggallery');
60
+ $help .= '<br />'.__('If you have problems, please create directory', 'nggallery').' <strong>'.$nggpath.'</strong> ';
61
+ $help .= __('and the thumbnails directory', 'nggallery').' <strong>'.$nggpath.'/thumbs</strong> '.__('with permission 777 manually !', 'nggallery');
62
+ nggallery::show_message($help);
63
+ }
64
+
65
+ // show a error message
66
+ if ( !empty($txt) ) {
67
+ if (SAFE_MODE) {
68
+ // for safe_mode , better delete folder, both folder must be created manually
69
+ @rmdir(WINABSPATH.$nggpath.'/thumbs');
70
+ @rmdir(WINABSPATH.$nggpath);
71
  }
72
+ nggallery::show_error($txt);
73
+ return false;
74
  }
75
 
76
  $result=$wpdb->get_var("SELECT name FROM $wpdb->nggallery WHERE name = '$galleryname' ");
79
  return false;
80
  } else {
81
  $result = $wpdb->query("INSERT INTO $wpdb->nggallery (name, path, title) VALUES ('$galleryname', '$nggpath', '$gallerytitle') ");
82
+ if ($result) nggallery::show_message(__('Gallery', 'nggallery').' <strong>'.$wpdb->insert_id." : ".$galleryname.'</strong> '.__('successfully created!','nggallery')."<br />".__('You can show this gallery with the tag','nggallery').'<strong> [gallery='.$wpdb->insert_id.']</strong>');
83
  return true;;
84
  }
85
  }
463
  }
464
 
465
  // **************************************************************
466
+ function getOnlyImages($p_event, $p_header) {
467
  $info = pathinfo($p_header['filename']);
468
  // check for extension
469
  $ext = array("jpeg", "jpg", "png", "gif");
722
  $folder_uid = fileowner($foldername);
723
 
724
  if ($script_uid != $folder_uid) {
725
+ $message = sprintf(__('SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually','nggallery'), $foldername);
726
  $message .= '<br />' . sprintf(__('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','nggallery'), $script_uid, $folder_uid );
727
  nggallery::show_error($message);
728
  return false;
915
 
916
  // **************************************************************
917
  //TODO: Cannot be member of a class ? Check PCLZIP later...
918
+ function ngg_getOnlyImages($p_event, $p_header) {
919
 
920
+ return nggAdmin::getOnlyImages($p_event, $p_header);
921
 
922
  }
923
 
admin/js/swfupload.handler.js CHANGED
@@ -86,6 +86,10 @@ function uploadComplete(fileObj) {
86
 
87
  // called when all files are uploaded
88
  function uploadSuccess(fileObj, server_data) {
 
 
 
 
89
  // Upload the next file until queue is empty
90
  if ( ngg_swf_upload.getStats().files_queued > 0) {
91
  ngg_swf_upload.startUpload();
86
 
87
  // called when all files are uploaded
88
  function uploadSuccess(fileObj, server_data) {
89
+ // Show any error message
90
+ if (server_data != 0){
91
+ jQuery("#progressbar-wrap").append("<div><strong>ERROR</strong>: " + fileObj.name + " : " + server_data + "</div>");
92
+ }
93
  // Upload the next file until queue is empty
94
  if ( ngg_swf_upload.getStats().files_queued > 0) {
95
  ngg_swf_upload.startUpload();
admin/js/swfupload.js CHANGED
@@ -945,9 +945,9 @@ SWFUpload.debug = function (message) {
945
  };
946
 
947
  /* Called when an upload occurs during upload. For HTTP errors 'message' will contain the HTTP STATUS CODE */
948
- SWFUpload.uploadError = function (file, error_code, message) {
949
  try {
950
- switch (errcode) {
951
  case SWFUpload.UPLOAD_ERROR.SPECIFIED_FILE_ID_NOT_FOUND:
952
  this.debug("Error Code: File ID specified for upload was not found, Message: " + msg);
953
  break;
945
  };
946
 
947
  /* Called when an upload occurs during upload. For HTTP errors 'message' will contain the HTTP STATUS CODE */
948
+ SWFUpload.uploadError = function (file, error_code, msg) {
949
  try {
950
+ switch (error_code) {
951
  case SWFUpload.UPLOAD_ERROR.SPECIFIED_FILE_ID_NOT_FOUND:
952
  this.debug("Error Code: File ID specified for upload was not found, Message: " + msg);
953
  break;
admin/settings.php CHANGED
@@ -3,10 +3,11 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
3
 
4
  function nggallery_admin_options() {
5
 
6
- global $wpdb, $wp_version;
7
 
8
  // get the options
9
- $ngg_options=get_option('ngg_options');
 
10
 
11
  // same as $_SERVER['REQUEST_URI'], but should work under IIS 6.0
12
  $filepath = get_option('siteurl'). '/wp-admin/admin.php?page='.$_GET['page'];
@@ -24,7 +25,10 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
24
  $ngg_options[$option] = $value;
25
  }
26
  }
27
-
 
 
 
28
  update_option('ngg_options', $ngg_options);
29
  $messagetext = '<font color="green">'.__('Update successfully','nggallery').'</font>';
30
  }
3
 
4
  function nggallery_admin_options() {
5
 
6
+ global $wpdb, $wp_version, $nggRewrite;
7
 
8
  // get the options
9
+ $ngg_options = get_option('ngg_options');
10
+ $old_state = $ngg_options['usePermalinks'];
11
 
12
  // same as $_SERVER['REQUEST_URI'], but should work under IIS 6.0
13
  $filepath = get_option('siteurl'). '/wp-admin/admin.php?page='.$_GET['page'];
25
  $ngg_options[$option] = $value;
26
  }
27
  }
28
+ // Flush ReWrite rules
29
+ if ( $old_state != $ngg_options['usePermalinks'] )
30
+ $nggRewrite->flush();
31
+ // Save options
32
  update_option('ngg_options', $ngg_options);
33
  $messagetext = '<font color="green">'.__('Update successfully','nggallery').'</font>';
34
  }
admin/upload.php CHANGED
@@ -3,15 +3,24 @@
3
  require_once('../../../../wp-config.php');
4
  require_once(ABSPATH.'/wp-admin/admin.php');
5
 
 
 
 
 
 
 
 
6
  auth_redirect();
7
 
 
 
8
  //check for correct capability
9
  if ( !is_user_logged_in() )
10
- die('-1');
11
 
12
  //check for correct capability
13
  if ( !current_user_can('NextGEN Manage gallery') )
14
- die('-1');
15
 
16
  function get_out_now() { exit; }
17
  add_action( 'shutdown', 'get_out_now', -1 );
@@ -21,7 +30,7 @@ check_admin_referer('ngg_swfupload');
21
 
22
  //check for nggallery
23
  if ( !defined('NGGALLERY_ABSPATH') )
24
- die('-1');
25
 
26
  include_once (NGGALLERY_ABSPATH. 'admin/functions.php');
27
 
3
  require_once('../../../../wp-config.php');
4
  require_once(ABSPATH.'/wp-admin/admin.php');
5
 
6
+ // Flash often fails to send cookies with the POST or upload, so we need to pass it in GET or POST instead
7
+ if ( empty($_COOKIE[USER_COOKIE]) && !empty($_REQUEST['user_cookie']) )
8
+ $_COOKIE[USER_COOKIE] = $_REQUEST['user_cookie'];
9
+
10
+ if ( empty($_COOKIE[PASS_COOKIE]) && !empty($_REQUEST['pass_cookie']) )
11
+ $_COOKIE[PASS_COOKIE] = $_REQUEST['pass_cookie'];
12
+
13
  auth_redirect();
14
 
15
+ header('Content-Type: text/plain');
16
+
17
  //check for correct capability
18
  if ( !is_user_logged_in() )
19
+ die('Login failure. -1');
20
 
21
  //check for correct capability
22
  if ( !current_user_can('NextGEN Manage gallery') )
23
+ die('You do not have permission to upload files. -2');
24
 
25
  function get_out_now() { exit; }
26
  add_action( 'shutdown', 'get_out_now', -1 );
30
 
31
  //check for nggallery
32
  if ( !defined('NGGALLERY_ABSPATH') )
33
+ die('NextGEN Gallery not available. -3');
34
 
35
  include_once (NGGALLERY_ABSPATH. 'admin/functions.php');
36
 
changelog.txt CHANGED
@@ -1,6 +1,15 @@
1
  NextGEN Gallery
2
  by Alex Rabe & NextGEN DEV Team
3
 
 
 
 
 
 
 
 
 
 
4
  V0.80 - 02.02.2008
5
  - NEW : SWFUpload integrated : Show upload progress and select multiple files in the file browser dialog.
6
  - NEW : Progress bar for resize, watermark and thumbnail operation
1
  NextGEN Gallery
2
  by Alex Rabe & NextGEN DEV Team
3
 
4
+ V0.81 - 04.02.2008
5
+ - Changed : Use stristr first to reduce CPU cycles (THX to Alakhnor)
6
+ - Changed : Flush Rewrites rules after option update
7
+ - Changed : Rework for folder check under Safe-Mode
8
+ - Bugfix : Check for array in get_option() (THX to Alessandro)
9
+ - Bugfix : Add Cookie to SWFUpload, show Error code included
10
+ - Bugfix : galShowOrder = Sildeshow at first didn't work
11
+ - Bugfix : Remove reference from ngg_getOnlyImages
12
+
13
  V0.80 - 02.02.2008
14
  - NEW : SWFUpload integrated : Show upload progress and select multiple files in the file browser dialog.
15
  - NEW : Progress bar for resize, watermark and thumbnail operation
lang/nggallery-de_DE.mo CHANGED
Binary file
lang/nggallery-de_DE.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2008-01-28 20:19+0100\n"
6
  "Last-Translator: Alex Rabe\n"
7
  "Language-Team: Alex Rabe\n"
8
  "MIME-Version: 1.0\n"
@@ -19,36 +19,36 @@ msgstr ""
19
  msgid "Sorry, NextGEN Gallery works only under WordPress 2.1 or higher"
20
  msgstr "Tut mir leid aber NextGEN Galerie arbeitet nur ab WordPress 2.1 und aufwärts"
21
 
22
- #: ../nggfunctions.php:452
23
- #: ../nggfunctions.php:467
24
  msgid "Watch gallery"
25
  msgstr "Galerie ansehen"
26
 
27
- #: ../nggfunctions.php:461
28
- #: ../nggfunctions.php:473
29
- #: ../nggfunctions.php:750
30
  msgid "Photos"
31
  msgstr "Fotos"
32
 
33
- #: ../nggfunctions.php:547
34
  msgid "Back"
35
  msgstr "Zurück"
36
 
37
- #: ../nggfunctions.php:551
38
  msgid "Next"
39
  msgstr "Vor"
40
 
41
- #: ../nggfunctions.php:554
42
  #: ../admin/manage.php:85
43
  #: ../tinymce/window.php:37
44
  msgid "Picture"
45
  msgstr "Bild"
46
 
47
- #: ../nggfunctions.php:554
48
  msgid "from"
49
  msgstr "von"
50
 
51
- #: ../nggfunctions.php:720
52
  msgid "Overview"
53
  msgstr "Übersicht"
54
 
@@ -115,8 +115,8 @@ msgid "Show :"
115
  msgstr "Zeige als :"
116
 
117
  #: ../nggwidget.php:311
118
- #: ../admin/settings.php:100
119
- #: ../admin/settings.php:295
120
  msgid "Thumbnails"
121
  msgstr "Thumbnails"
122
 
@@ -125,7 +125,7 @@ msgid "Orginal images"
125
  msgstr "Orginal Bilder"
126
 
127
  #: ../nggwidget.php:318
128
- #: ../admin/settings.php:558
129
  msgid "random"
130
  msgstr "Zufall"
131
 
@@ -279,134 +279,134 @@ msgid "Upload failed!"
279
  msgstr "Upload fehlgeschlagen!"
280
 
281
  #: ../admin/addgallery.php:56
282
- #: ../admin/functions.php:567
283
- #: ../admin/functions.php:635
284
  msgid "No gallery selected !"
285
  msgstr "Keine Galerie ausgewählt !"
286
 
287
- #: ../admin/addgallery.php:103
288
  msgid "Image Files"
289
  msgstr "Bilder"
290
 
291
- #: ../admin/addgallery.php:121
292
- #: ../admin/addgallery.php:151
293
  msgid "remove"
294
  msgstr "Entfernen"
295
 
296
- #: ../admin/addgallery.php:122
297
  msgid "Browse..."
298
  msgstr "Durchsuche..."
299
 
300
- #: ../admin/addgallery.php:123
301
- #: ../admin/addgallery.php:296
302
  msgid "Upload images"
303
  msgstr "Bilder hochladen"
304
 
305
- #: ../admin/addgallery.php:167
306
- #: ../admin/addgallery.php:179
307
  msgid "Add new gallery"
308
  msgstr "Neue Galerie erstellen"
309
 
310
- #: ../admin/addgallery.php:169
311
- #: ../admin/addgallery.php:200
312
  msgid "Upload a Zip-File"
313
  msgstr "Zip-Datei hochladen"
314
 
315
- #: ../admin/addgallery.php:172
316
- #: ../admin/addgallery.php:240
317
  msgid "Import image folder"
318
  msgstr "Bilder-Verzeichnis importieren"
319
 
320
- #: ../admin/addgallery.php:174
321
- #: ../admin/addgallery.php:264
322
  msgid "Upload Images"
323
  msgstr "Bilder hochladen"
324
 
325
- #: ../admin/addgallery.php:185
326
  msgid "New Gallery"
327
  msgstr "Neue Galerie"
328
 
329
- #: ../admin/addgallery.php:188
330
  msgid "Create a new , empty gallery below the folder"
331
  msgstr "Erstelle eine neue, leere Galerie unter dem Verzeichnis"
332
 
333
- #: ../admin/addgallery.php:190
334
  msgid "Allowed characters for file and folder names are"
335
  msgstr "Erlaubte Charaktere für die Datei- und Verzeichnisnamen sind"
336
 
337
- #: ../admin/addgallery.php:193
338
  msgid "Add gallery"
339
  msgstr "Galerie hinzufügen"
340
 
341
- #: ../admin/addgallery.php:206
342
  msgid "Select Zip-File"
343
  msgstr "Wähle Zip-Datei"
344
 
345
- #: ../admin/addgallery.php:208
346
  msgid "Upload a zip file with images"
347
  msgstr "Lade eine Zip-Datei mit Bildern hoch"
348
 
349
- #: ../admin/addgallery.php:211
350
- #: ../admin/addgallery.php:274
351
  msgid "in to"
352
  msgstr "in"
353
 
354
- #: ../admin/addgallery.php:213
355
  msgid "a new gallery"
356
  msgstr "eine neue Galerie"
357
 
358
- #: ../admin/addgallery.php:223
359
- #: ../admin/addgallery.php:286
360
  msgid "Note : The upload limit on your server is "
361
  msgstr "Hinweis : Das Upload-Limit auf dem Server beträgt "
362
 
363
- #: ../admin/addgallery.php:227
364
- #: ../admin/addgallery.php:252
365
- #: ../admin/addgallery.php:290
366
  msgid "Add Metadata :"
367
  msgstr "Metadaten hinzufügen :"
368
 
369
- #: ../admin/addgallery.php:229
370
- #: ../admin/addgallery.php:254
371
- #: ../admin/addgallery.php:292
372
  msgid "Import EXIF, IPTC or XMP data (if available)"
373
  msgstr "EXIF, IPTC oder XMP Daten importieren (wenn verfügbar)"
374
 
375
- #: ../admin/addgallery.php:232
376
  msgid "Start upload"
377
  msgstr "Upload starten"
378
 
379
- #: ../admin/addgallery.php:246
380
  msgid "Import from Server path:"
381
  msgstr "Importieren aus Server-Pfad:"
382
 
383
- #: ../admin/addgallery.php:248
384
  msgid "Import a folder with images. Please note :"
385
  msgstr "Importiere ein Verzeichniss mit Bildern. Bitte beachte:"
386
 
387
- #: ../admin/addgallery.php:249
388
  msgid "For safe-mode = ON you need to add the subfolder thumbs manually"
389
  msgstr "Da der Safe-Mode (PHP.INI) eingeschaltet ist, mußt Du das Unterverzeichnis für die Vorschaubilder (\"thumbs\") manuell (per FTP) anlegen"
390
 
391
- #: ../admin/addgallery.php:257
392
  msgid "Import folder"
393
  msgstr "Verzeichnis importieren"
394
 
395
- #: ../admin/addgallery.php:270
396
  msgid "Upload image"
397
  msgstr "Bild hochladen"
398
 
399
- #: ../admin/addgallery.php:276
400
  msgid "Choose gallery"
401
  msgstr "Wähle Galerie"
402
 
403
  #: ../admin/admin.php:54
404
- #: ../admin/functions.php:72
405
- #: ../admin/functions.php:76
406
- #: ../admin/functions.php:123
407
  #: ../admin/manage.php:64
408
  #: ../admin/manage.php:424
409
- #: ../admin/settings.php:102
410
  #: ../admin/uploadtab.php:36
411
  #: ../admin/_manage.php:182
412
  #: ../admin/_manage.php:991
@@ -502,13 +502,13 @@ msgid "Delete album ?"
502
  msgstr "Lösche Album ?"
503
 
504
  #: ../admin/album.php:151
505
- #: ../admin/settings.php:167
506
- #: ../admin/settings.php:207
507
- #: ../admin/settings.php:254
508
- #: ../admin/settings.php:329
509
- #: ../admin/settings.php:376
510
- #: ../admin/settings.php:488
511
- #: ../admin/settings.php:591
512
  #: ../admin/wpmu.php:98
513
  msgid "Update"
514
  msgstr "Aktualisiere"
@@ -568,204 +568,196 @@ msgstr "Titel"
568
  msgid "Page"
569
  msgstr "Seite"
570
 
571
- #: ../admin/functions.php:22
572
  msgid "No valid gallery name!"
573
  msgstr "Kein gültiger Galerie-Name!"
574
 
575
- #: ../admin/functions.php:29
576
- #: ../admin/functions.php:39
577
- #: ../admin/functions.php:53
578
- #: ../admin/functions.php:96
579
- #: ../admin/functions.php:103
580
  msgid "Directory"
581
  msgstr "Verzeichnis"
582
 
583
- #: ../admin/functions.php:29
584
  msgid "didn't exist. Please create first the main gallery folder "
585
  msgstr "nicht gefunden. Bitte erstelle zuerst das Hauptverzeichnis."
586
 
587
- #: ../admin/functions.php:30
588
- #: ../admin/functions.php:40
589
  msgid "Check this link, if you didn't know how to set the permission :"
590
  msgstr "Dieser Link zeigt dir wie man Verzeichnisrechte ändert :"
591
 
592
- #: ../admin/functions.php:39
593
- #: ../admin/functions.php:53
594
  msgid "is not writeable !"
595
  msgstr "ist schreibgeschützt !"
596
 
597
- #: ../admin/functions.php:47
598
- msgid "Directory "
599
- msgstr "Verzeichnis "
600
-
601
- #: ../admin/functions.php:47
602
- msgid "already exists!"
603
- msgstr "gibt es schon!"
604
-
605
- #: ../admin/functions.php:51
606
  #: ../admin/functions.php:55
607
- #: ../admin/functions.php:515
608
  #: ../lib/nggallery.lib.php:297
609
  msgid "Unable to create directory "
610
- msgstr "Kann Verzeichnis nicht erstellen"
611
 
612
- #: ../admin/functions.php:58
613
  msgid "The server setting Safe-Mode is on !"
614
  msgstr "Auf dem Server ist Safe-Mode aktiviert (PHP.INI)"
615
 
616
- #: ../admin/functions.php:59
617
  msgid "If you have problems, please create directory"
618
  msgstr "Wenn Probleme auftreten, erstelle bitte das Verzeichnis"
619
 
620
- #: ../admin/functions.php:60
621
  msgid "and the thumbnails directory"
622
  msgstr "und das Thumbnails-Verzeichnis"
623
 
624
- #: ../admin/functions.php:60
625
  msgid "with permission 777 manually !"
626
  msgstr "mit den Berechtigungen 777 manuell !"
627
 
628
- #: ../admin/functions.php:72
629
  msgid "already exists"
630
  msgstr "gibt es bereits"
631
 
632
- #: ../admin/functions.php:76
633
- #: ../admin/functions.php:123
634
  msgid "successfully created!"
635
  msgstr "erfolgreich erstellt!"
636
 
637
- #: ../admin/functions.php:76
638
  msgid "You can show this gallery with the tag"
639
- msgstr "Du kannst diese Galerie mit diem Stichwort anzeigen :"
640
 
641
- #: ../admin/functions.php:96
642
  msgid "doesn&#96;t exist!"
643
  msgstr "gibt es nicht !"
644
 
645
- #: ../admin/functions.php:103
646
  msgid "contains no pictures"
647
  msgstr "enthält keine Bilder"
648
 
649
- #: ../admin/functions.php:120
650
  #: ../admin/myimport.php:38
651
  msgid "Database error. Could not add gallery!"
652
  msgstr "Datenbank-Fehler. Kann Galerie nicht hinzufügen!"
653
 
654
- #: ../admin/functions.php:139
655
  msgid " picture(s) successfully added"
656
  msgstr " Bild(er) erfolgreich hinzugefügt"
657
 
658
- #: ../admin/functions.php:169
659
- #: ../admin/functions.php:216
660
- #: ../admin/functions.php:277
661
  msgid "Running... Please wait"
662
  msgstr "Läuft... Bitte warten"
663
 
664
- #: ../admin/functions.php:170
665
  #: ../admin/manage.php:500
666
  msgid "Resize images"
667
  msgstr "Bilder verkleinern"
668
 
669
- #: ../admin/functions.php:192
670
  msgid " : Image resized..."
671
  msgstr " : Bild angepasst..."
672
 
673
- #: ../admin/functions.php:201
674
- #: ../admin/functions.php:256
675
  msgid "Some pictures are not writeable :"
676
  msgstr "Einige Bilder sind schreibgeschützt :"
677
 
678
- #: ../admin/functions.php:217
679
  #: ../admin/manage.php:498
680
  msgid "Set watermark"
681
  msgstr "Wasserzeichen setzen"
682
 
683
- #: ../admin/functions.php:247
684
  msgid " : Watermark created..."
685
  msgstr " : Wasserzeichen gesetzt..."
686
 
687
- #: ../admin/functions.php:278
688
  #: ../admin/manage.php:499
689
  msgid "Create new thumbnails"
690
  msgstr "Neue Thumbnails erstellen"
691
 
692
- #: ../admin/functions.php:343
693
  msgid " : Thumbnail created..."
694
  msgstr ": Thumbnail erstellt..."
695
 
696
- #: ../admin/functions.php:348
697
  msgid "Follow thumbnails could not created."
698
  msgstr "Folgende Thumbnails konnten nicht erstellt werden :"
699
 
700
- #: ../admin/functions.php:349
701
  msgid "Some thumbnails are not writeable :"
702
  msgstr "Einige Thumbnails sind schreibgeschützt :"
703
 
704
- #: ../admin/functions.php:450
705
  msgid "The Zip-file is too large. Exceed Memory limit !"
706
  msgstr "Das Zip-File ist zu groß. Speicherlimit überschritten !"
707
 
708
- #: ../admin/functions.php:491
709
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
710
  msgstr "Die hochgeladene Datei war keine korrekte Zip-Datei. Servermeldung :"
711
 
712
- #: ../admin/functions.php:510
713
  #, php-format
714
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
715
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
716
 
717
- #: ../admin/functions.php:525
718
  msgid "Zip-File successfully unpacked"
719
  msgstr "Zip-Datei erfolgreich entpackt"
720
 
721
- #: ../admin/functions.php:566
722
- #: ../admin/functions.php:574
723
  msgid "Unable to unlink file "
724
  msgstr "Kann das Bild nicht löschen"
725
 
726
- #: ../admin/functions.php:575
727
- #: ../admin/functions.php:660
728
  msgid "Failure in database, no gallery path set !"
729
  msgstr "Datenbankfehler! Kein Galerie-Pfad gesetzt !"
730
 
731
- #: ../admin/functions.php:582
732
- #: ../admin/functions.php:653
733
  msgid "is no valid image file!"
734
  msgstr "ist keine zulässige Bilddatei !"
735
 
736
- #: ../admin/functions.php:590
737
  #, php-format
738
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
739
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
740
 
741
- #: ../admin/functions.php:597
742
- #: ../admin/functions.php:677
743
  msgid "Error, the file could not moved to : "
744
  msgstr "Fehler: Diese Datei kann nicht verschoben werden zu :"
745
 
746
- #: ../admin/functions.php:602
747
- #: ../admin/functions.php:681
748
  msgid "Error, the file permissions could not set"
749
  msgstr "Fehler: Die Berechtigungen für diese Datei können nicht gesetzt werden"
750
 
751
- #: ../admin/functions.php:620
752
  msgid " Image(s) successfully added"
753
  msgstr " Bild(er) erfolgreich hinzugefügt"
754
 
755
- #: ../admin/functions.php:640
756
  msgid "Invalid upload. Error Code : "
757
  msgstr "Ungültiger Upload. Fehler Code :"
758
 
759
- #: ../admin/functions.php:692
760
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
761
  msgstr "Schade, dein freier Speicher scheint aufgebraucht zu sein. Bitte lösche zuerst ein paar Bilder."
762
 
763
- #: ../admin/functions.php:719
764
  #, php-format
765
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
766
  msgstr "SAFE MODE Einschränkungen ist aktiv. Du must das Verzeichnis <strong>%s</strong> manuell anlegen."
767
 
768
- #: ../admin/functions.php:720
769
  #, php-format
770
  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"
771
  msgstr "Wenn der Safe-Mode eingeschaltet ist, überprüft PHP ob der Besitzer (%s) des Skript mit dem Besitzer (%s) der Datei/Verzeichnis übereinstimmt."
@@ -993,7 +985,7 @@ msgid "Hide tags"
993
  msgstr "Verstecke Tags"
994
 
995
  #: ../admin/manage.php:524
996
- #: ../admin/settings.php:318
997
  msgid "File name"
998
  msgstr "Dateiname"
999
 
@@ -1296,524 +1288,528 @@ msgstr "Optionen änderen"
1296
  msgid "Update capabilities"
1297
  msgstr "Rechte aktualisieren"
1298
 
1299
- #: ../admin/settings.php:29
1300
  #: ../admin/style.php:16
1301
  #: ../admin/wpmu.php:32
1302
  msgid "Update successfully"
1303
  msgstr "Aktualisierung erfolgreich"
1304
 
1305
- #: ../admin/settings.php:46
1306
  msgid "Cache cleared"
1307
  msgstr "Cache löschen"
1308
 
1309
- #: ../admin/settings.php:99
1310
- #: ../admin/settings.php:111
1311
  msgid "General Options"
1312
  msgstr "Allg. Optionen"
1313
 
1314
- #: ../admin/settings.php:101
1315
  msgid "Images"
1316
  msgstr "Bilder"
1317
 
1318
- #: ../admin/settings.php:103
1319
- #: ../admin/settings.php:337
1320
  msgid "Effects"
1321
  msgstr "Effekte"
1322
 
1323
- #: ../admin/settings.php:104
1324
- #: ../admin/settings.php:390
1325
  #: ../tinymce/window.php:123
1326
  msgid "Watermark"
1327
  msgstr "Wasserzeichen"
1328
 
1329
- #: ../admin/settings.php:105
1330
- #: ../admin/settings.php:296
1331
- #: ../admin/settings.php:498
1332
  #: ../tinymce/window.php:63
1333
  msgid "Slideshow"
1334
  msgstr "Slideshow"
1335
 
1336
- #: ../admin/settings.php:118
1337
  #: ../admin/wpmu.php:48
1338
  msgid "Gallery path"
1339
  msgstr "Galerie-Pfad"
1340
 
1341
- #: ../admin/settings.php:120
1342
  msgid "This is the default path for all galleries"
1343
  msgstr "Dies ist der Standard-Pfad für alle Galerien"
1344
 
1345
- #: ../admin/settings.php:131
1346
  msgid "Delete image files"
1347
  msgstr "Lösche Bilddateien"
1348
 
1349
- #: ../admin/settings.php:133
1350
  msgid "Delete files, when removing a gallery in the database"
1351
  msgstr "Löscht auch die Dateien, falls die Galerie aus der Datenbank entfernt wird"
1352
 
1353
- #: ../admin/settings.php:136
1354
  msgid "Activate batch upload"
1355
  msgstr "Aktiviere Batch-Upload"
1356
 
1357
- #: ../admin/settings.php:138
1358
  msgid "The batch upload requires Adobe Flash 9, disable it if you have problems"
1359
  msgstr "Das Batch-Upload-Skript benötigt Adbode Flash 9, wenn es Probleme gibt deaktiviere es besser."
1360
 
1361
- #: ../admin/settings.php:141
1362
  msgid "Activate permalinks"
1363
  msgstr "Aktiviere Permalinks"
1364
 
1365
- #: ../admin/settings.php:143
1366
  msgid "When you activate this option, you need to update your permalink structure one time."
1367
  msgstr "Wenn du diese Option aktivierst, muss du einmal die Permalink Struktur aktualisieren."
1368
 
1369
- #: ../admin/settings.php:146
1370
  msgid "Tags / Categories"
1371
  msgstr "Stichwörter / Kategorien"
1372
 
1373
- #: ../admin/settings.php:149
1374
  msgid "Activate related images"
1375
  msgstr "Verwandte Bilder anzeigen"
1376
 
1377
- #: ../admin/settings.php:151
1378
  msgid "This option will append related images to every post"
1379
  msgstr "Diese Option hängt verwandte Bilder an jeden Beitrag"
1380
 
1381
- #: ../admin/settings.php:155
1382
  msgid "Match with"
1383
  msgstr "Vergleiche mit"
1384
 
1385
- #: ../admin/settings.php:156
1386
  msgid "Categories"
1387
  msgstr "Kategorien"
1388
 
1389
- #: ../admin/settings.php:157
1390
  #: ../lib/nggmeta.lib.php:375
1391
  msgid "Tags"
1392
  msgstr "Stichwörter"
1393
 
1394
- #: ../admin/settings.php:157
1395
  msgid " (require WordPress 2.3 or higher)"
1396
  msgstr " (benötigt WordPress 2.3 oder höher)"
1397
 
1398
- #: ../admin/settings.php:161
1399
  msgid "Max. number of images"
1400
  msgstr "Max. Anzahl der Bilder"
1401
 
1402
- #: ../admin/settings.php:163
1403
  msgid "0 will show all images"
1404
  msgstr "0 zeige alle verwandten Bilder"
1405
 
1406
- #: ../admin/settings.php:175
1407
  msgid "Thumbnail settings"
1408
  msgstr "Thumbnail Einstellungen"
1409
 
1410
- #: ../admin/settings.php:180
1411
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1412
  msgstr "Bitte beachten : Änderungen der Einstellungen werden erst übernommen, wenn Du neue Thumbnails unter -> \"Gallery verwalten\" erstellst"
1413
 
1414
- #: ../admin/settings.php:183
1415
  msgid "Width x height (in pixel)"
1416
  msgstr "Breite x Höhe (in Pixel)"
1417
 
1418
- #: ../admin/settings.php:185
1419
  msgid "These values are maximum values "
1420
  msgstr "Diese Angaben sind maximale Angaben."
1421
 
1422
- #: ../admin/settings.php:188
1423
  msgid "Set fix dimension"
1424
  msgstr "Setze fixe Größe"
1425
 
1426
- #: ../admin/settings.php:190
1427
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1428
  msgstr "Ignoriere Bildseitenverhältnis"
1429
 
1430
- #: ../admin/settings.php:193
1431
  msgid "Crop square thumbnail from image"
1432
  msgstr "Mittige Thumbnails aus Bildern ausschneiden"
1433
 
1434
- #: ../admin/settings.php:195
1435
  msgid "Create square thumbnails, use only the width setting :"
1436
  msgstr "Erstellt viereckige Thumbnails, nutzt nur den Wert der Breite :"
1437
 
1438
- #: ../admin/settings.php:198
1439
  msgid "Thumbnail quality"
1440
  msgstr "Thumbnail Qualität"
1441
 
1442
- #: ../admin/settings.php:202
1443
- #: ../admin/settings.php:234
1444
  msgid "Resample Mode"
1445
  msgstr "Resample Modus"
1446
 
1447
- #: ../admin/settings.php:204
1448
- #: ../admin/settings.php:237
1449
  msgid "Value between 1-5 (higher value, more CPU load)"
1450
  msgstr "Wähle zwischen 1-5 (je höhere desto länger braucht der Server)"
1451
 
1452
- #: ../admin/settings.php:215
1453
  msgid "Image settings"
1454
  msgstr "Bild Einstellungen"
1455
 
1456
- #: ../admin/settings.php:222
1457
  msgid "Resize Images"
1458
  msgstr "Bilder verkleinern"
1459
 
1460
- #: ../admin/settings.php:226
1461
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1462
  msgstr "Breite x Höhe (in Pixel). NextGEN Galerie beachtet das Seitenverhältnis."
1463
 
1464
- #: ../admin/settings.php:229
1465
  msgid "Image quality"
1466
  msgstr "Bild Qualität"
1467
 
1468
- #: ../admin/settings.php:240
1469
  msgid "Single picture"
1470
  msgstr "Einzelbilder"
1471
 
1472
- #: ../admin/settings.php:243
1473
  msgid "Cache single pictures"
1474
  msgstr "Nutze Cache für Einzelbidler"
1475
 
1476
- #: ../admin/settings.php:246
1477
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1478
  msgstr "Erstellt ein Cache-Bild für jedes Einzelbild (singlepic). Reduziert die CPU Belastung."
1479
 
1480
- #: ../admin/settings.php:249
1481
  msgid "Clear cache folder"
1482
  msgstr "Lösche Cache Verzeichnis"
1483
 
1484
- #: ../admin/settings.php:251
1485
  msgid "Proceed now"
1486
  msgstr "Jetzt durchführen"
1487
 
1488
- #: ../admin/settings.php:262
1489
  msgid "Gallery settings"
1490
  msgstr "Galerie Einstellungen"
1491
 
1492
- #: ../admin/settings.php:269
1493
  msgid "Activate jQuery navigation"
1494
  msgstr "Aktiviere jQuery Navigation"
1495
 
1496
- #: ../admin/settings.php:271
1497
  msgid "Please note : This is still experimental. Requires the Thickbox effect"
1498
  msgstr "Bitte beachten : Diese Funktion befindet sich noch im Teststadium. Geht nur mit Thickbox."
1499
 
1500
- #: ../admin/settings.php:275
1501
  msgid "Deactivate gallery page link"
1502
  msgstr "Keine Seitenverzweigung"
1503
 
1504
- #: ../admin/settings.php:277
1505
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1506
  msgstr "Ein Album benötigt dann keinen Link zur Seite. Die Galerie wird direkt angezeigt."
1507
 
1508
- #: ../admin/settings.php:281
1509
  msgid "Number of images per page"
1510
  msgstr "Anzahl der Bilder pro Seite"
1511
 
1512
- #: ../admin/settings.php:283
1513
  msgid "0 will disable pagination, all images on one page"
1514
  msgstr "0 schaltet Blätterfunktion ab ( = alle Bilder auf einer Seite )"
1515
 
1516
- #: ../admin/settings.php:287
1517
  msgid "Integrate slideshow"
1518
  msgstr "Slideshow verwenden"
1519
 
1520
- #: ../admin/settings.php:294
1521
  msgid "Show first"
1522
  msgstr "Zeige als Erstes"
1523
 
1524
- #: ../admin/settings.php:300
1525
  msgid "Show thumbnail description"
1526
  msgstr "Zeige Bildbeschreibung"
1527
 
1528
- #: ../admin/settings.php:301
1529
- #: ../admin/settings.php:349
1530
  #: ../admin/js/uploadtab.js.php:117
1531
  msgid "None"
1532
  msgstr "Keiner"
1533
 
1534
- #: ../admin/settings.php:302
1535
  msgid "Description text"
1536
  msgstr "Beschreibung"
1537
 
1538
- #: ../admin/settings.php:303
1539
- #: ../admin/settings.php:319
1540
  msgid "Alt / Title text"
1541
  msgstr "Alt / Titel Text"
1542
 
1543
- #: ../admin/settings.php:307
1544
  msgid "Show ImageBrowser"
1545
  msgstr "Zeige Bilder Browser"
1546
 
1547
- #: ../admin/settings.php:309
1548
  msgid "The gallery will open the ImageBrowser instead the effect."
1549
  msgstr "Es wird der Bilder Browser angezeigt (Kein JavaScript Effekt)"
1550
 
1551
- #: ../admin/settings.php:313
1552
  msgid "Sort options"
1553
  msgstr "Sortierung"
1554
 
1555
- #: ../admin/settings.php:316
1556
  msgid "Sort thumbnails"
1557
  msgstr "Thumbnails sortieren"
1558
 
1559
- #: ../admin/settings.php:317
1560
  msgid "Image ID"
1561
  msgstr "Bilder ID"
1562
 
1563
- #: ../admin/settings.php:323
1564
  msgid "Sort direction"
1565
  msgstr "Sortierreihenfolge"
1566
 
1567
- #: ../admin/settings.php:324
1568
  msgid "Ascending"
1569
  msgstr "Aufsteigend"
1570
 
1571
- #: ../admin/settings.php:325
1572
  msgid "Descending"
1573
  msgstr "Absteigend"
1574
 
1575
- #: ../admin/settings.php:341
1576
  msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
1577
  msgstr "Hier kannst Du den Effekt für die Thumbnails auswählen. NextGEN Galerie wird den benötigten HTML Code verwenden. Bitte beachte, das nur der Thickbox Effekt automatisch in Dein Theme von Wordpress integriert wird. Alle anderen Effekte mußt Du selbst in die header.php eintragen (JS)."
1578
 
1579
- #: ../admin/settings.php:342
1580
  msgid "With the placeholder"
1581
  msgstr "Mit Platzhalter"
1582
 
1583
- #: ../admin/settings.php:342
1584
  msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
1585
  msgstr "Du kannst eine Navigation durch die Bilder aktivieren (hängt vom Effekt ab). Ändere nur die Codezeile falls Du einen anderen Effekt für die Thumbnails verwendest oder einfach weißt, was Du tust."
1586
 
1587
- #: ../admin/settings.php:346
1588
  msgid "JavaScript Thumbnail effect"
1589
  msgstr "JavaScript Thumbnail Effekt"
1590
 
1591
- #: ../admin/settings.php:350
1592
  msgid "Thickbox"
1593
  msgstr "Thickbox"
1594
 
1595
- #: ../admin/settings.php:351
1596
  msgid "Lightbox"
1597
  msgstr "Lightbox"
1598
 
1599
- #: ../admin/settings.php:352
1600
  msgid "Highslide"
1601
  msgstr "Highslide"
1602
 
1603
- #: ../admin/settings.php:353
1604
  msgid "Shutter"
1605
  msgstr "Shutter"
1606
 
1607
- #: ../admin/settings.php:354
1608
  msgid "Custom"
1609
  msgstr "Eigener"
1610
 
1611
- #: ../admin/settings.php:359
1612
  msgid "Link Code line"
1613
  msgstr "Link Code Zeile"
1614
 
1615
- #: ../admin/settings.php:367
1616
  msgid "Select loading image"
1617
  msgstr "Wähle Ladeanimation"
1618
 
1619
- #: ../admin/settings.php:391
1620
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1621
  msgstr "Bitte beachten : Das Wasserzeichen kann nur unter der Galerieverwaltung gesetzt werden. "
1622
 
1623
- #: ../admin/settings.php:396
1624
  msgid "Preview"
1625
  msgstr "Vorschau"
1626
 
1627
- #: ../admin/settings.php:398
1628
  #: ../admin/settings.php:402
 
1629
  msgid "Position"
1630
  msgstr "Position"
1631
 
1632
- #: ../admin/settings.php:422
1633
  msgid "Offset"
1634
  msgstr "Abstand"
1635
 
1636
- #: ../admin/settings.php:440
1637
  msgid "Use image as watermark"
1638
  msgstr "Benutze Bild als Wasserzeichen"
1639
 
1640
- #: ../admin/settings.php:443
1641
  msgid "URL to file"
1642
  msgstr "URL zur Datei"
1643
 
1644
- #: ../admin/settings.php:445
1645
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
1646
  msgstr "Der Dateizugriff von URL's ist auf diesem Server deaktiviert (allow_url_fopen)"
1647
 
1648
- #: ../admin/settings.php:451
1649
  msgid "Use text as watermark"
1650
  msgstr "Benutze Text als Wasserzeichen"
1651
 
1652
- #: ../admin/settings.php:454
1653
  msgid "Font"
1654
  msgstr "Schriftart"
1655
 
1656
- #: ../admin/settings.php:463
1657
  msgid "This function will not work, cause you need the FreeType library"
1658
  msgstr "Diese Funktion benötigt die FreeType Bibliothek"
1659
 
1660
- #: ../admin/settings.php:465
1661
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
1662
  msgstr "Du kannst mehr Schriftarten in das Verzeichniss <strong>nggallery/fonts</strong> hochladen."
1663
 
1664
- #: ../admin/settings.php:469
1665
  msgid "Size"
1666
  msgstr "Größe"
1667
 
1668
- #: ../admin/settings.php:473
1669
  msgid "Color"
1670
  msgstr "Farbe"
1671
 
1672
- #: ../admin/settings.php:475
1673
  msgid "(hex w/o #)"
1674
  msgstr "(hex w/o #)"
1675
 
1676
- #: ../admin/settings.php:478
1677
  msgid "Text"
1678
  msgstr "Text"
1679
 
1680
- #: ../admin/settings.php:482
1681
  msgid "Opaque"
1682
  msgstr "Transparenz"
1683
 
1684
- #: ../admin/settings.php:500
1685
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
1686
  msgstr "Die Datei imagerotator.swf ist nicht im Plugin Verzeichniss -> so wird die Slideshow nicht funktionieren."
1687
 
1688
- #: ../admin/settings.php:501
1689
- msgid "The settings are used in the JW Image Rotator Version 3.9 ."
1690
- msgstr "Die Einstellungen werden im JW Image Rotator Version 3.9 benutzt."
1691
 
1692
- #: ../admin/settings.php:502
1693
  msgid "See more information for the Flash Player on the web page"
1694
  msgstr "Weitere Informationen auf der Flash Player Homepage"
1695
 
1696
- #: ../admin/settings.php:505
1697
  msgid "Default size (W x H)"
1698
  msgstr "Standard Größe (B x H)"
1699
 
1700
- #: ../admin/settings.php:510
1701
  msgid "Shuffle mode"
1702
  msgstr "Shuffle Modus"
1703
 
1704
- #: ../admin/settings.php:514
1705
  msgid "Show next image on click"
1706
  msgstr "Zeige nächstes Bild bei Klick"
1707
 
1708
- #: ../admin/settings.php:518
1709
  msgid "Show navigation bar"
1710
  msgstr "Zeige Navigations-Leiste"
1711
 
1712
- #: ../admin/settings.php:522
1713
  msgid "Show loading icon"
1714
  msgstr "Zeige Lade-Bildchen"
1715
 
1716
- #: ../admin/settings.php:526
1717
  msgid "Use watermark logo"
1718
  msgstr "Wasserzeichen anzeigen"
1719
 
1720
- #: ../admin/settings.php:528
1721
  msgid "You can change the logo at the watermark settings"
1722
  msgstr "Du kannst den Pfad in Einstellungen für da Wasserzeichen angeben"
1723
 
1724
- #: ../admin/settings.php:531
1725
  msgid "Stretch image"
1726
  msgstr "Bild dehnen"
1727
 
1728
- #: ../admin/settings.php:534
1729
  msgid "true"
1730
  msgstr "Ja"
1731
 
1732
- #: ../admin/settings.php:535
1733
  msgid "false"
1734
  msgstr "Nein"
1735
 
1736
- #: ../admin/settings.php:536
1737
  msgid "fit"
1738
  msgstr "Passend"
1739
 
1740
- #: ../admin/settings.php:537
1741
  msgid "none"
1742
  msgstr "keiner"
1743
 
1744
- #: ../admin/settings.php:542
1745
  msgid "Duration time"
1746
  msgstr "Dauer"
1747
 
1748
- #: ../admin/settings.php:543
1749
  msgid "sec."
1750
  msgstr "Sek."
1751
 
1752
- #: ../admin/settings.php:546
1753
  msgid "Transition / Fade effect"
1754
  msgstr "Fade Effekt"
1755
 
1756
- #: ../admin/settings.php:549
1757
  msgid "fade"
1758
  msgstr "Fade"
1759
 
1760
- #: ../admin/settings.php:550
1761
  msgid "bgfade"
1762
  msgstr "BGFade"
1763
 
1764
- #: ../admin/settings.php:551
1765
  msgid "slowfade"
1766
  msgstr "Slowfade"
1767
 
1768
- #: ../admin/settings.php:552
1769
  msgid "circles"
1770
  msgstr "Kreise"
1771
 
1772
- #: ../admin/settings.php:553
1773
  msgid "bubbles"
1774
  msgstr "Blasen"
1775
 
1776
- #: ../admin/settings.php:554
1777
  msgid "blocks"
1778
  msgstr "Blöcke"
1779
 
1780
- #: ../admin/settings.php:555
1781
  msgid "fluids"
1782
  msgstr "Fluids"
1783
 
1784
- #: ../admin/settings.php:556
1785
  msgid "flash"
1786
  msgstr "Flash"
1787
 
1788
- #: ../admin/settings.php:557
1789
  msgid "lines"
1790
  msgstr "Linien"
1791
 
1792
- #: ../admin/settings.php:562
1793
  msgid "Use slow zooming effect"
1794
  msgstr "nutze Zoom Effekt"
1795
 
1796
- #: ../admin/settings.php:566
1797
  msgid "Background Color"
1798
  msgstr "Hintergrund (BG) Farbe"
1799
 
1800
- #: ../admin/settings.php:571
1801
  msgid "Texts / Buttons Color"
1802
  msgstr "Text- / Button Farbe"
1803
 
1804
- #: ../admin/settings.php:576
1805
  msgid "Rollover / Active Color"
1806
  msgstr "Rollover / Aktiv (Link) Farbe"
1807
 
1808
- #: ../admin/settings.php:581
 
 
 
 
1809
  msgid "Background music (URL)"
1810
  msgstr "Hintergrundmusik (URL)"
1811
 
1812
- #: ../admin/settings.php:585
1813
  msgid "Try XHTML validation (with CDATA)"
1814
  msgstr "Integriere XHTML Validierung (mittels CDATA)"
1815
 
1816
- #: ../admin/settings.php:587
1817
  msgid "Important : Could causes problem at some browser. Please recheck your page."
1818
  msgstr "Wichtig : Es könnnten Probleme bei einigen Browser auftauchen. Unbedingt Seite prüfen."
1819
 
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "POT-Creation-Date: \n"
5
+ "PO-Revision-Date: 2008-02-04 14:03+0100\n"
6
  "Last-Translator: Alex Rabe\n"
7
  "Language-Team: Alex Rabe\n"
8
  "MIME-Version: 1.0\n"
19
  msgid "Sorry, NextGEN Gallery works only under WordPress 2.1 or higher"
20
  msgstr "Tut mir leid aber NextGEN Galerie arbeitet nur ab WordPress 2.1 und aufwärts"
21
 
22
+ #: ../nggfunctions.php:474
23
+ #: ../nggfunctions.php:489
24
  msgid "Watch gallery"
25
  msgstr "Galerie ansehen"
26
 
27
+ #: ../nggfunctions.php:483
28
+ #: ../nggfunctions.php:495
29
+ #: ../nggfunctions.php:772
30
  msgid "Photos"
31
  msgstr "Fotos"
32
 
33
+ #: ../nggfunctions.php:569
34
  msgid "Back"
35
  msgstr "Zurück"
36
 
37
+ #: ../nggfunctions.php:573
38
  msgid "Next"
39
  msgstr "Vor"
40
 
41
+ #: ../nggfunctions.php:576
42
  #: ../admin/manage.php:85
43
  #: ../tinymce/window.php:37
44
  msgid "Picture"
45
  msgstr "Bild"
46
 
47
+ #: ../nggfunctions.php:576
48
  msgid "from"
49
  msgstr "von"
50
 
51
+ #: ../nggfunctions.php:742
52
  msgid "Overview"
53
  msgstr "Übersicht"
54
 
115
  msgstr "Zeige als :"
116
 
117
  #: ../nggwidget.php:311
118
+ #: ../admin/settings.php:104
119
+ #: ../admin/settings.php:299
120
  msgid "Thumbnails"
121
  msgstr "Thumbnails"
122
 
125
  msgstr "Orginal Bilder"
126
 
127
  #: ../nggwidget.php:318
128
+ #: ../admin/settings.php:562
129
  msgid "random"
130
  msgstr "Zufall"
131
 
279
  msgstr "Upload fehlgeschlagen!"
280
 
281
  #: ../admin/addgallery.php:56
282
+ #: ../admin/functions.php:573
283
+ #: ../admin/functions.php:641
284
  msgid "No gallery selected !"
285
  msgstr "Keine Galerie ausgewählt !"
286
 
287
+ #: ../admin/addgallery.php:102
288
  msgid "Image Files"
289
  msgstr "Bilder"
290
 
291
+ #: ../admin/addgallery.php:122
292
+ #: ../admin/addgallery.php:152
293
  msgid "remove"
294
  msgstr "Entfernen"
295
 
296
+ #: ../admin/addgallery.php:123
297
  msgid "Browse..."
298
  msgstr "Durchsuche..."
299
 
300
+ #: ../admin/addgallery.php:124
301
+ #: ../admin/addgallery.php:297
302
  msgid "Upload images"
303
  msgstr "Bilder hochladen"
304
 
305
+ #: ../admin/addgallery.php:168
306
+ #: ../admin/addgallery.php:180
307
  msgid "Add new gallery"
308
  msgstr "Neue Galerie erstellen"
309
 
310
+ #: ../admin/addgallery.php:170
311
+ #: ../admin/addgallery.php:201
312
  msgid "Upload a Zip-File"
313
  msgstr "Zip-Datei hochladen"
314
 
315
+ #: ../admin/addgallery.php:173
316
+ #: ../admin/addgallery.php:241
317
  msgid "Import image folder"
318
  msgstr "Bilder-Verzeichnis importieren"
319
 
320
+ #: ../admin/addgallery.php:175
321
+ #: ../admin/addgallery.php:265
322
  msgid "Upload Images"
323
  msgstr "Bilder hochladen"
324
 
325
+ #: ../admin/addgallery.php:186
326
  msgid "New Gallery"
327
  msgstr "Neue Galerie"
328
 
329
+ #: ../admin/addgallery.php:189
330
  msgid "Create a new , empty gallery below the folder"
331
  msgstr "Erstelle eine neue, leere Galerie unter dem Verzeichnis"
332
 
333
+ #: ../admin/addgallery.php:191
334
  msgid "Allowed characters for file and folder names are"
335
  msgstr "Erlaubte Charaktere für die Datei- und Verzeichnisnamen sind"
336
 
337
+ #: ../admin/addgallery.php:194
338
  msgid "Add gallery"
339
  msgstr "Galerie hinzufügen"
340
 
341
+ #: ../admin/addgallery.php:207
342
  msgid "Select Zip-File"
343
  msgstr "Wähle Zip-Datei"
344
 
345
+ #: ../admin/addgallery.php:209
346
  msgid "Upload a zip file with images"
347
  msgstr "Lade eine Zip-Datei mit Bildern hoch"
348
 
349
+ #: ../admin/addgallery.php:212
350
+ #: ../admin/addgallery.php:275
351
  msgid "in to"
352
  msgstr "in"
353
 
354
+ #: ../admin/addgallery.php:214
355
  msgid "a new gallery"
356
  msgstr "eine neue Galerie"
357
 
358
+ #: ../admin/addgallery.php:224
359
+ #: ../admin/addgallery.php:287
360
  msgid "Note : The upload limit on your server is "
361
  msgstr "Hinweis : Das Upload-Limit auf dem Server beträgt "
362
 
363
+ #: ../admin/addgallery.php:228
364
+ #: ../admin/addgallery.php:253
365
+ #: ../admin/addgallery.php:291
366
  msgid "Add Metadata :"
367
  msgstr "Metadaten hinzufügen :"
368
 
369
+ #: ../admin/addgallery.php:230
370
+ #: ../admin/addgallery.php:255
371
+ #: ../admin/addgallery.php:293
372
  msgid "Import EXIF, IPTC or XMP data (if available)"
373
  msgstr "EXIF, IPTC oder XMP Daten importieren (wenn verfügbar)"
374
 
375
+ #: ../admin/addgallery.php:233
376
  msgid "Start upload"
377
  msgstr "Upload starten"
378
 
379
+ #: ../admin/addgallery.php:247
380
  msgid "Import from Server path:"
381
  msgstr "Importieren aus Server-Pfad:"
382
 
383
+ #: ../admin/addgallery.php:249
384
  msgid "Import a folder with images. Please note :"
385
  msgstr "Importiere ein Verzeichniss mit Bildern. Bitte beachte:"
386
 
387
+ #: ../admin/addgallery.php:250
388
  msgid "For safe-mode = ON you need to add the subfolder thumbs manually"
389
  msgstr "Da der Safe-Mode (PHP.INI) eingeschaltet ist, mußt Du das Unterverzeichnis für die Vorschaubilder (\"thumbs\") manuell (per FTP) anlegen"
390
 
391
+ #: ../admin/addgallery.php:258
392
  msgid "Import folder"
393
  msgstr "Verzeichnis importieren"
394
 
395
+ #: ../admin/addgallery.php:271
396
  msgid "Upload image"
397
  msgstr "Bild hochladen"
398
 
399
+ #: ../admin/addgallery.php:277
400
  msgid "Choose gallery"
401
  msgstr "Wähle Galerie"
402
 
403
  #: ../admin/admin.php:54
404
+ #: ../admin/functions.php:78
405
+ #: ../admin/functions.php:82
406
+ #: ../admin/functions.php:129
407
  #: ../admin/manage.php:64
408
  #: ../admin/manage.php:424
409
+ #: ../admin/settings.php:106
410
  #: ../admin/uploadtab.php:36
411
  #: ../admin/_manage.php:182
412
  #: ../admin/_manage.php:991
502
  msgstr "Lösche Album ?"
503
 
504
  #: ../admin/album.php:151
505
+ #: ../admin/settings.php:171
506
+ #: ../admin/settings.php:211
507
+ #: ../admin/settings.php:258
508
+ #: ../admin/settings.php:333
509
+ #: ../admin/settings.php:380
510
+ #: ../admin/settings.php:492
511
+ #: ../admin/settings.php:600
512
  #: ../admin/wpmu.php:98
513
  msgid "Update"
514
  msgstr "Aktualisiere"
568
  msgid "Page"
569
  msgstr "Seite"
570
 
571
+ #: ../admin/functions.php:20
572
  msgid "No valid gallery name!"
573
  msgstr "Kein gültiger Galerie-Name!"
574
 
575
+ #: ../admin/functions.php:27
576
+ #: ../admin/functions.php:36
577
+ #: ../admin/functions.php:50
578
+ #: ../admin/functions.php:102
579
+ #: ../admin/functions.php:109
580
  msgid "Directory"
581
  msgstr "Verzeichnis"
582
 
583
+ #: ../admin/functions.php:27
584
  msgid "didn't exist. Please create first the main gallery folder "
585
  msgstr "nicht gefunden. Bitte erstelle zuerst das Hauptverzeichnis."
586
 
587
+ #: ../admin/functions.php:28
588
+ #: ../admin/functions.php:37
589
  msgid "Check this link, if you didn't know how to set the permission :"
590
  msgstr "Dieser Link zeigt dir wie man Verzeichnisrechte ändert :"
591
 
592
+ #: ../admin/functions.php:36
593
+ #: ../admin/functions.php:50
594
  msgid "is not writeable !"
595
  msgstr "ist schreibgeschützt !"
596
 
597
+ #: ../admin/functions.php:45
 
 
 
 
 
 
 
 
598
  #: ../admin/functions.php:55
599
+ #: ../admin/functions.php:521
600
  #: ../lib/nggallery.lib.php:297
601
  msgid "Unable to create directory "
602
+ msgstr "Kann Verzeichnis nicht erstellen "
603
 
604
+ #: ../admin/functions.php:59
605
  msgid "The server setting Safe-Mode is on !"
606
  msgstr "Auf dem Server ist Safe-Mode aktiviert (PHP.INI)"
607
 
608
+ #: ../admin/functions.php:60
609
  msgid "If you have problems, please create directory"
610
  msgstr "Wenn Probleme auftreten, erstelle bitte das Verzeichnis"
611
 
612
+ #: ../admin/functions.php:61
613
  msgid "and the thumbnails directory"
614
  msgstr "und das Thumbnails-Verzeichnis"
615
 
616
+ #: ../admin/functions.php:61
617
  msgid "with permission 777 manually !"
618
  msgstr "mit den Berechtigungen 777 manuell !"
619
 
620
+ #: ../admin/functions.php:78
621
  msgid "already exists"
622
  msgstr "gibt es bereits"
623
 
624
+ #: ../admin/functions.php:82
625
+ #: ../admin/functions.php:129
626
  msgid "successfully created!"
627
  msgstr "erfolgreich erstellt!"
628
 
629
+ #: ../admin/functions.php:82
630
  msgid "You can show this gallery with the tag"
631
+ msgstr "Du kannst diese Galerie mit dem Stichwort anzeigen :"
632
 
633
+ #: ../admin/functions.php:102
634
  msgid "doesn&#96;t exist!"
635
  msgstr "gibt es nicht !"
636
 
637
+ #: ../admin/functions.php:109
638
  msgid "contains no pictures"
639
  msgstr "enthält keine Bilder"
640
 
641
+ #: ../admin/functions.php:126
642
  #: ../admin/myimport.php:38
643
  msgid "Database error. Could not add gallery!"
644
  msgstr "Datenbank-Fehler. Kann Galerie nicht hinzufügen!"
645
 
646
+ #: ../admin/functions.php:145
647
  msgid " picture(s) successfully added"
648
  msgstr " Bild(er) erfolgreich hinzugefügt"
649
 
650
+ #: ../admin/functions.php:175
651
+ #: ../admin/functions.php:222
652
+ #: ../admin/functions.php:283
653
  msgid "Running... Please wait"
654
  msgstr "Läuft... Bitte warten"
655
 
656
+ #: ../admin/functions.php:176
657
  #: ../admin/manage.php:500
658
  msgid "Resize images"
659
  msgstr "Bilder verkleinern"
660
 
661
+ #: ../admin/functions.php:198
662
  msgid " : Image resized..."
663
  msgstr " : Bild angepasst..."
664
 
665
+ #: ../admin/functions.php:207
666
+ #: ../admin/functions.php:262
667
  msgid "Some pictures are not writeable :"
668
  msgstr "Einige Bilder sind schreibgeschützt :"
669
 
670
+ #: ../admin/functions.php:223
671
  #: ../admin/manage.php:498
672
  msgid "Set watermark"
673
  msgstr "Wasserzeichen setzen"
674
 
675
+ #: ../admin/functions.php:253
676
  msgid " : Watermark created..."
677
  msgstr " : Wasserzeichen gesetzt..."
678
 
679
+ #: ../admin/functions.php:284
680
  #: ../admin/manage.php:499
681
  msgid "Create new thumbnails"
682
  msgstr "Neue Thumbnails erstellen"
683
 
684
+ #: ../admin/functions.php:349
685
  msgid " : Thumbnail created..."
686
  msgstr ": Thumbnail erstellt..."
687
 
688
+ #: ../admin/functions.php:354
689
  msgid "Follow thumbnails could not created."
690
  msgstr "Folgende Thumbnails konnten nicht erstellt werden :"
691
 
692
+ #: ../admin/functions.php:355
693
  msgid "Some thumbnails are not writeable :"
694
  msgstr "Einige Thumbnails sind schreibgeschützt :"
695
 
696
+ #: ../admin/functions.php:456
697
  msgid "The Zip-file is too large. Exceed Memory limit !"
698
  msgstr "Das Zip-File ist zu groß. Speicherlimit überschritten !"
699
 
700
+ #: ../admin/functions.php:497
701
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
702
  msgstr "Die hochgeladene Datei war keine korrekte Zip-Datei. Servermeldung :"
703
 
704
+ #: ../admin/functions.php:516
705
  #, php-format
706
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
707
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
708
 
709
+ #: ../admin/functions.php:531
710
  msgid "Zip-File successfully unpacked"
711
  msgstr "Zip-Datei erfolgreich entpackt"
712
 
713
+ #: ../admin/functions.php:572
714
+ #: ../admin/functions.php:580
715
  msgid "Unable to unlink file "
716
  msgstr "Kann das Bild nicht löschen"
717
 
718
+ #: ../admin/functions.php:581
719
+ #: ../admin/functions.php:666
720
  msgid "Failure in database, no gallery path set !"
721
  msgstr "Datenbankfehler! Kein Galerie-Pfad gesetzt !"
722
 
723
+ #: ../admin/functions.php:588
724
+ #: ../admin/functions.php:659
725
  msgid "is no valid image file!"
726
  msgstr "ist keine zulässige Bilddatei !"
727
 
728
+ #: ../admin/functions.php:596
729
  #, php-format
730
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
731
  msgstr "Kann das Verzeichnis %s nicht erstellen. Is das Hauptverzeichnis vielleicht schreibgeschützt ?"
732
 
733
+ #: ../admin/functions.php:603
734
+ #: ../admin/functions.php:683
735
  msgid "Error, the file could not moved to : "
736
  msgstr "Fehler: Diese Datei kann nicht verschoben werden zu :"
737
 
738
+ #: ../admin/functions.php:608
739
+ #: ../admin/functions.php:687
740
  msgid "Error, the file permissions could not set"
741
  msgstr "Fehler: Die Berechtigungen für diese Datei können nicht gesetzt werden"
742
 
743
+ #: ../admin/functions.php:626
744
  msgid " Image(s) successfully added"
745
  msgstr " Bild(er) erfolgreich hinzugefügt"
746
 
747
+ #: ../admin/functions.php:646
748
  msgid "Invalid upload. Error Code : "
749
  msgstr "Ungültiger Upload. Fehler Code :"
750
 
751
+ #: ../admin/functions.php:698
752
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
753
  msgstr "Schade, dein freier Speicher scheint aufgebraucht zu sein. Bitte lösche zuerst ein paar Bilder."
754
 
755
+ #: ../admin/functions.php:725
756
  #, php-format
757
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
758
  msgstr "SAFE MODE Einschränkungen ist aktiv. Du must das Verzeichnis <strong>%s</strong> manuell anlegen."
759
 
760
+ #: ../admin/functions.php:726
761
  #, php-format
762
  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"
763
  msgstr "Wenn der Safe-Mode eingeschaltet ist, überprüft PHP ob der Besitzer (%s) des Skript mit dem Besitzer (%s) der Datei/Verzeichnis übereinstimmt."
985
  msgstr "Verstecke Tags"
986
 
987
  #: ../admin/manage.php:524
988
+ #: ../admin/settings.php:322
989
  msgid "File name"
990
  msgstr "Dateiname"
991
 
1288
  msgid "Update capabilities"
1289
  msgstr "Rechte aktualisieren"
1290
 
1291
+ #: ../admin/settings.php:33
1292
  #: ../admin/style.php:16
1293
  #: ../admin/wpmu.php:32
1294
  msgid "Update successfully"
1295
  msgstr "Aktualisierung erfolgreich"
1296
 
1297
+ #: ../admin/settings.php:50
1298
  msgid "Cache cleared"
1299
  msgstr "Cache löschen"
1300
 
1301
+ #: ../admin/settings.php:103
1302
+ #: ../admin/settings.php:115
1303
  msgid "General Options"
1304
  msgstr "Allg. Optionen"
1305
 
1306
+ #: ../admin/settings.php:105
1307
  msgid "Images"
1308
  msgstr "Bilder"
1309
 
1310
+ #: ../admin/settings.php:107
1311
+ #: ../admin/settings.php:341
1312
  msgid "Effects"
1313
  msgstr "Effekte"
1314
 
1315
+ #: ../admin/settings.php:108
1316
+ #: ../admin/settings.php:394
1317
  #: ../tinymce/window.php:123
1318
  msgid "Watermark"
1319
  msgstr "Wasserzeichen"
1320
 
1321
+ #: ../admin/settings.php:109
1322
+ #: ../admin/settings.php:300
1323
+ #: ../admin/settings.php:502
1324
  #: ../tinymce/window.php:63
1325
  msgid "Slideshow"
1326
  msgstr "Slideshow"
1327
 
1328
+ #: ../admin/settings.php:122
1329
  #: ../admin/wpmu.php:48
1330
  msgid "Gallery path"
1331
  msgstr "Galerie-Pfad"
1332
 
1333
+ #: ../admin/settings.php:124
1334
  msgid "This is the default path for all galleries"
1335
  msgstr "Dies ist der Standard-Pfad für alle Galerien"
1336
 
1337
+ #: ../admin/settings.php:135
1338
  msgid "Delete image files"
1339
  msgstr "Lösche Bilddateien"
1340
 
1341
+ #: ../admin/settings.php:137
1342
  msgid "Delete files, when removing a gallery in the database"
1343
  msgstr "Löscht auch die Dateien, falls die Galerie aus der Datenbank entfernt wird"
1344
 
1345
+ #: ../admin/settings.php:140
1346
  msgid "Activate batch upload"
1347
  msgstr "Aktiviere Batch-Upload"
1348
 
1349
+ #: ../admin/settings.php:142
1350
  msgid "The batch upload requires Adobe Flash 9, disable it if you have problems"
1351
  msgstr "Das Batch-Upload-Skript benötigt Adbode Flash 9, wenn es Probleme gibt deaktiviere es besser."
1352
 
1353
+ #: ../admin/settings.php:145
1354
  msgid "Activate permalinks"
1355
  msgstr "Aktiviere Permalinks"
1356
 
1357
+ #: ../admin/settings.php:147
1358
  msgid "When you activate this option, you need to update your permalink structure one time."
1359
  msgstr "Wenn du diese Option aktivierst, muss du einmal die Permalink Struktur aktualisieren."
1360
 
1361
+ #: ../admin/settings.php:150
1362
  msgid "Tags / Categories"
1363
  msgstr "Stichwörter / Kategorien"
1364
 
1365
+ #: ../admin/settings.php:153
1366
  msgid "Activate related images"
1367
  msgstr "Verwandte Bilder anzeigen"
1368
 
1369
+ #: ../admin/settings.php:155
1370
  msgid "This option will append related images to every post"
1371
  msgstr "Diese Option hängt verwandte Bilder an jeden Beitrag"
1372
 
1373
+ #: ../admin/settings.php:159
1374
  msgid "Match with"
1375
  msgstr "Vergleiche mit"
1376
 
1377
+ #: ../admin/settings.php:160
1378
  msgid "Categories"
1379
  msgstr "Kategorien"
1380
 
1381
+ #: ../admin/settings.php:161
1382
  #: ../lib/nggmeta.lib.php:375
1383
  msgid "Tags"
1384
  msgstr "Stichwörter"
1385
 
1386
+ #: ../admin/settings.php:161
1387
  msgid " (require WordPress 2.3 or higher)"
1388
  msgstr " (benötigt WordPress 2.3 oder höher)"
1389
 
1390
+ #: ../admin/settings.php:165
1391
  msgid "Max. number of images"
1392
  msgstr "Max. Anzahl der Bilder"
1393
 
1394
+ #: ../admin/settings.php:167
1395
  msgid "0 will show all images"
1396
  msgstr "0 zeige alle verwandten Bilder"
1397
 
1398
+ #: ../admin/settings.php:179
1399
  msgid "Thumbnail settings"
1400
  msgstr "Thumbnail Einstellungen"
1401
 
1402
+ #: ../admin/settings.php:184
1403
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1404
  msgstr "Bitte beachten : Änderungen der Einstellungen werden erst übernommen, wenn Du neue Thumbnails unter -> \"Gallery verwalten\" erstellst"
1405
 
1406
+ #: ../admin/settings.php:187
1407
  msgid "Width x height (in pixel)"
1408
  msgstr "Breite x Höhe (in Pixel)"
1409
 
1410
+ #: ../admin/settings.php:189
1411
  msgid "These values are maximum values "
1412
  msgstr "Diese Angaben sind maximale Angaben."
1413
 
1414
+ #: ../admin/settings.php:192
1415
  msgid "Set fix dimension"
1416
  msgstr "Setze fixe Größe"
1417
 
1418
+ #: ../admin/settings.php:194
1419
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1420
  msgstr "Ignoriere Bildseitenverhältnis"
1421
 
1422
+ #: ../admin/settings.php:197
1423
  msgid "Crop square thumbnail from image"
1424
  msgstr "Mittige Thumbnails aus Bildern ausschneiden"
1425
 
1426
+ #: ../admin/settings.php:199
1427
  msgid "Create square thumbnails, use only the width setting :"
1428
  msgstr "Erstellt viereckige Thumbnails, nutzt nur den Wert der Breite :"
1429
 
1430
+ #: ../admin/settings.php:202
1431
  msgid "Thumbnail quality"
1432
  msgstr "Thumbnail Qualität"
1433
 
1434
+ #: ../admin/settings.php:206
1435
+ #: ../admin/settings.php:238
1436
  msgid "Resample Mode"
1437
  msgstr "Resample Modus"
1438
 
1439
+ #: ../admin/settings.php:208
1440
+ #: ../admin/settings.php:241
1441
  msgid "Value between 1-5 (higher value, more CPU load)"
1442
  msgstr "Wähle zwischen 1-5 (je höhere desto länger braucht der Server)"
1443
 
1444
+ #: ../admin/settings.php:219
1445
  msgid "Image settings"
1446
  msgstr "Bild Einstellungen"
1447
 
1448
+ #: ../admin/settings.php:226
1449
  msgid "Resize Images"
1450
  msgstr "Bilder verkleinern"
1451
 
1452
+ #: ../admin/settings.php:230
1453
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1454
  msgstr "Breite x Höhe (in Pixel). NextGEN Galerie beachtet das Seitenverhältnis."
1455
 
1456
+ #: ../admin/settings.php:233
1457
  msgid "Image quality"
1458
  msgstr "Bild Qualität"
1459
 
1460
+ #: ../admin/settings.php:244
1461
  msgid "Single picture"
1462
  msgstr "Einzelbilder"
1463
 
1464
+ #: ../admin/settings.php:247
1465
  msgid "Cache single pictures"
1466
  msgstr "Nutze Cache für Einzelbidler"
1467
 
1468
+ #: ../admin/settings.php:250
1469
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1470
  msgstr "Erstellt ein Cache-Bild für jedes Einzelbild (singlepic). Reduziert die CPU Belastung."
1471
 
1472
+ #: ../admin/settings.php:253
1473
  msgid "Clear cache folder"
1474
  msgstr "Lösche Cache Verzeichnis"
1475
 
1476
+ #: ../admin/settings.php:255
1477
  msgid "Proceed now"
1478
  msgstr "Jetzt durchführen"
1479
 
1480
+ #: ../admin/settings.php:266
1481
  msgid "Gallery settings"
1482
  msgstr "Galerie Einstellungen"
1483
 
1484
+ #: ../admin/settings.php:273
1485
  msgid "Activate jQuery navigation"
1486
  msgstr "Aktiviere jQuery Navigation"
1487
 
1488
+ #: ../admin/settings.php:275
1489
  msgid "Please note : This is still experimental. Requires the Thickbox effect"
1490
  msgstr "Bitte beachten : Diese Funktion befindet sich noch im Teststadium. Geht nur mit Thickbox."
1491
 
1492
+ #: ../admin/settings.php:279
1493
  msgid "Deactivate gallery page link"
1494
  msgstr "Keine Seitenverzweigung"
1495
 
1496
+ #: ../admin/settings.php:281
1497
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1498
  msgstr "Ein Album benötigt dann keinen Link zur Seite. Die Galerie wird direkt angezeigt."
1499
 
1500
+ #: ../admin/settings.php:285
1501
  msgid "Number of images per page"
1502
  msgstr "Anzahl der Bilder pro Seite"
1503
 
1504
+ #: ../admin/settings.php:287
1505
  msgid "0 will disable pagination, all images on one page"
1506
  msgstr "0 schaltet Blätterfunktion ab ( = alle Bilder auf einer Seite )"
1507
 
1508
+ #: ../admin/settings.php:291
1509
  msgid "Integrate slideshow"
1510
  msgstr "Slideshow verwenden"
1511
 
1512
+ #: ../admin/settings.php:298
1513
  msgid "Show first"
1514
  msgstr "Zeige als Erstes"
1515
 
1516
+ #: ../admin/settings.php:304
1517
  msgid "Show thumbnail description"
1518
  msgstr "Zeige Bildbeschreibung"
1519
 
1520
+ #: ../admin/settings.php:305
1521
+ #: ../admin/settings.php:353
1522
  #: ../admin/js/uploadtab.js.php:117
1523
  msgid "None"
1524
  msgstr "Keiner"
1525
 
1526
+ #: ../admin/settings.php:306
1527
  msgid "Description text"
1528
  msgstr "Beschreibung"
1529
 
1530
+ #: ../admin/settings.php:307
1531
+ #: ../admin/settings.php:323
1532
  msgid "Alt / Title text"
1533
  msgstr "Alt / Titel Text"
1534
 
1535
+ #: ../admin/settings.php:311
1536
  msgid "Show ImageBrowser"
1537
  msgstr "Zeige Bilder Browser"
1538
 
1539
+ #: ../admin/settings.php:313
1540
  msgid "The gallery will open the ImageBrowser instead the effect."
1541
  msgstr "Es wird der Bilder Browser angezeigt (Kein JavaScript Effekt)"
1542
 
1543
+ #: ../admin/settings.php:317
1544
  msgid "Sort options"
1545
  msgstr "Sortierung"
1546
 
1547
+ #: ../admin/settings.php:320
1548
  msgid "Sort thumbnails"
1549
  msgstr "Thumbnails sortieren"
1550
 
1551
+ #: ../admin/settings.php:321
1552
  msgid "Image ID"
1553
  msgstr "Bilder ID"
1554
 
1555
+ #: ../admin/settings.php:327
1556
  msgid "Sort direction"
1557
  msgstr "Sortierreihenfolge"
1558
 
1559
+ #: ../admin/settings.php:328
1560
  msgid "Ascending"
1561
  msgstr "Aufsteigend"
1562
 
1563
+ #: ../admin/settings.php:329
1564
  msgid "Descending"
1565
  msgstr "Absteigend"
1566
 
1567
+ #: ../admin/settings.php:345
1568
  msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
1569
  msgstr "Hier kannst Du den Effekt für die Thumbnails auswählen. NextGEN Galerie wird den benötigten HTML Code verwenden. Bitte beachte, das nur der Thickbox Effekt automatisch in Dein Theme von Wordpress integriert wird. Alle anderen Effekte mußt Du selbst in die header.php eintragen (JS)."
1570
 
1571
+ #: ../admin/settings.php:346
1572
  msgid "With the placeholder"
1573
  msgstr "Mit Platzhalter"
1574
 
1575
+ #: ../admin/settings.php:346
1576
  msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
1577
  msgstr "Du kannst eine Navigation durch die Bilder aktivieren (hängt vom Effekt ab). Ändere nur die Codezeile falls Du einen anderen Effekt für die Thumbnails verwendest oder einfach weißt, was Du tust."
1578
 
1579
+ #: ../admin/settings.php:350
1580
  msgid "JavaScript Thumbnail effect"
1581
  msgstr "JavaScript Thumbnail Effekt"
1582
 
1583
+ #: ../admin/settings.php:354
1584
  msgid "Thickbox"
1585
  msgstr "Thickbox"
1586
 
1587
+ #: ../admin/settings.php:355
1588
  msgid "Lightbox"
1589
  msgstr "Lightbox"
1590
 
1591
+ #: ../admin/settings.php:356
1592
  msgid "Highslide"
1593
  msgstr "Highslide"
1594
 
1595
+ #: ../admin/settings.php:357
1596
  msgid "Shutter"
1597
  msgstr "Shutter"
1598
 
1599
+ #: ../admin/settings.php:358
1600
  msgid "Custom"
1601
  msgstr "Eigener"
1602
 
1603
+ #: ../admin/settings.php:363
1604
  msgid "Link Code line"
1605
  msgstr "Link Code Zeile"
1606
 
1607
+ #: ../admin/settings.php:371
1608
  msgid "Select loading image"
1609
  msgstr "Wähle Ladeanimation"
1610
 
1611
+ #: ../admin/settings.php:395
1612
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1613
  msgstr "Bitte beachten : Das Wasserzeichen kann nur unter der Galerieverwaltung gesetzt werden. "
1614
 
1615
+ #: ../admin/settings.php:400
1616
  msgid "Preview"
1617
  msgstr "Vorschau"
1618
 
 
1619
  #: ../admin/settings.php:402
1620
+ #: ../admin/settings.php:406
1621
  msgid "Position"
1622
  msgstr "Position"
1623
 
1624
+ #: ../admin/settings.php:426
1625
  msgid "Offset"
1626
  msgstr "Abstand"
1627
 
1628
+ #: ../admin/settings.php:444
1629
  msgid "Use image as watermark"
1630
  msgstr "Benutze Bild als Wasserzeichen"
1631
 
1632
+ #: ../admin/settings.php:447
1633
  msgid "URL to file"
1634
  msgstr "URL zur Datei"
1635
 
1636
+ #: ../admin/settings.php:449
1637
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
1638
  msgstr "Der Dateizugriff von URL's ist auf diesem Server deaktiviert (allow_url_fopen)"
1639
 
1640
+ #: ../admin/settings.php:455
1641
  msgid "Use text as watermark"
1642
  msgstr "Benutze Text als Wasserzeichen"
1643
 
1644
+ #: ../admin/settings.php:458
1645
  msgid "Font"
1646
  msgstr "Schriftart"
1647
 
1648
+ #: ../admin/settings.php:467
1649
  msgid "This function will not work, cause you need the FreeType library"
1650
  msgstr "Diese Funktion benötigt die FreeType Bibliothek"
1651
 
1652
+ #: ../admin/settings.php:469
1653
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
1654
  msgstr "Du kannst mehr Schriftarten in das Verzeichniss <strong>nggallery/fonts</strong> hochladen."
1655
 
1656
+ #: ../admin/settings.php:473
1657
  msgid "Size"
1658
  msgstr "Größe"
1659
 
1660
+ #: ../admin/settings.php:477
1661
  msgid "Color"
1662
  msgstr "Farbe"
1663
 
1664
+ #: ../admin/settings.php:479
1665
  msgid "(hex w/o #)"
1666
  msgstr "(hex w/o #)"
1667
 
1668
+ #: ../admin/settings.php:482
1669
  msgid "Text"
1670
  msgstr "Text"
1671
 
1672
+ #: ../admin/settings.php:486
1673
  msgid "Opaque"
1674
  msgstr "Transparenz"
1675
 
1676
+ #: ../admin/settings.php:504
1677
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
1678
  msgstr "Die Datei imagerotator.swf ist nicht im Plugin Verzeichniss -> so wird die Slideshow nicht funktionieren."
1679
 
1680
+ #: ../admin/settings.php:505
1681
+ msgid "The settings are used in the JW Image Rotator Version 3.13 ."
1682
+ msgstr "Die Einstellungen werden im JW Image Rotator Version 3.13 benutzt."
1683
 
1684
+ #: ../admin/settings.php:506
1685
  msgid "See more information for the Flash Player on the web page"
1686
  msgstr "Weitere Informationen auf der Flash Player Homepage"
1687
 
1688
+ #: ../admin/settings.php:509
1689
  msgid "Default size (W x H)"
1690
  msgstr "Standard Größe (B x H)"
1691
 
1692
+ #: ../admin/settings.php:514
1693
  msgid "Shuffle mode"
1694
  msgstr "Shuffle Modus"
1695
 
1696
+ #: ../admin/settings.php:518
1697
  msgid "Show next image on click"
1698
  msgstr "Zeige nächstes Bild bei Klick"
1699
 
1700
+ #: ../admin/settings.php:522
1701
  msgid "Show navigation bar"
1702
  msgstr "Zeige Navigations-Leiste"
1703
 
1704
+ #: ../admin/settings.php:526
1705
  msgid "Show loading icon"
1706
  msgstr "Zeige Lade-Bildchen"
1707
 
1708
+ #: ../admin/settings.php:530
1709
  msgid "Use watermark logo"
1710
  msgstr "Wasserzeichen anzeigen"
1711
 
1712
+ #: ../admin/settings.php:532
1713
  msgid "You can change the logo at the watermark settings"
1714
  msgstr "Du kannst den Pfad in Einstellungen für da Wasserzeichen angeben"
1715
 
1716
+ #: ../admin/settings.php:535
1717
  msgid "Stretch image"
1718
  msgstr "Bild dehnen"
1719
 
1720
+ #: ../admin/settings.php:538
1721
  msgid "true"
1722
  msgstr "Ja"
1723
 
1724
+ #: ../admin/settings.php:539
1725
  msgid "false"
1726
  msgstr "Nein"
1727
 
1728
+ #: ../admin/settings.php:540
1729
  msgid "fit"
1730
  msgstr "Passend"
1731
 
1732
+ #: ../admin/settings.php:541
1733
  msgid "none"
1734
  msgstr "keiner"
1735
 
1736
+ #: ../admin/settings.php:546
1737
  msgid "Duration time"
1738
  msgstr "Dauer"
1739
 
1740
+ #: ../admin/settings.php:547
1741
  msgid "sec."
1742
  msgstr "Sek."
1743
 
1744
+ #: ../admin/settings.php:550
1745
  msgid "Transition / Fade effect"
1746
  msgstr "Fade Effekt"
1747
 
1748
+ #: ../admin/settings.php:553
1749
  msgid "fade"
1750
  msgstr "Fade"
1751
 
1752
+ #: ../admin/settings.php:554
1753
  msgid "bgfade"
1754
  msgstr "BGFade"
1755
 
1756
+ #: ../admin/settings.php:555
1757
  msgid "slowfade"
1758
  msgstr "Slowfade"
1759
 
1760
+ #: ../admin/settings.php:556
1761
  msgid "circles"
1762
  msgstr "Kreise"
1763
 
1764
+ #: ../admin/settings.php:557
1765
  msgid "bubbles"
1766
  msgstr "Blasen"
1767
 
1768
+ #: ../admin/settings.php:558
1769
  msgid "blocks"
1770
  msgstr "Blöcke"
1771
 
1772
+ #: ../admin/settings.php:559
1773
  msgid "fluids"
1774
  msgstr "Fluids"
1775
 
1776
+ #: ../admin/settings.php:560
1777
  msgid "flash"
1778
  msgstr "Flash"
1779
 
1780
+ #: ../admin/settings.php:561
1781
  msgid "lines"
1782
  msgstr "Linien"
1783
 
1784
+ #: ../admin/settings.php:566
1785
  msgid "Use slow zooming effect"
1786
  msgstr "nutze Zoom Effekt"
1787
 
1788
+ #: ../admin/settings.php:570
1789
  msgid "Background Color"
1790
  msgstr "Hintergrund (BG) Farbe"
1791
 
1792
+ #: ../admin/settings.php:575
1793
  msgid "Texts / Buttons Color"
1794
  msgstr "Text- / Button Farbe"
1795
 
1796
+ #: ../admin/settings.php:580
1797
  msgid "Rollover / Active Color"
1798
  msgstr "Rollover / Aktiv (Link) Farbe"
1799
 
1800
+ #: ../admin/settings.php:585
1801
+ msgid "Screen Color"
1802
+ msgstr "Seiten Farbe"
1803
+
1804
+ #: ../admin/settings.php:590
1805
  msgid "Background music (URL)"
1806
  msgstr "Hintergrundmusik (URL)"
1807
 
1808
+ #: ../admin/settings.php:594
1809
  msgid "Try XHTML validation (with CDATA)"
1810
  msgstr "Integriere XHTML Validierung (mittels CDATA)"
1811
 
1812
+ #: ../admin/settings.php:596
1813
  msgid "Important : Could causes problem at some browser. Please recheck your page."
1814
  msgstr "Wichtig : Es könnnten Probleme bei einigen Browser auftauchen. Unbedingt Seite prüfen."
1815
 
lang/nggallery.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "POT-Creation-Date: \n"
5
- "PO-Revision-Date: 2008-01-28 20:12+0100\n"
6
  "Last-Translator: Alex Rabe\n"
7
  "Language-Team: Alex Rabe\n"
8
  "MIME-Version: 1.0\n"
@@ -19,36 +19,36 @@ msgstr ""
19
  msgid "Sorry, NextGEN Gallery works only under WordPress 2.1 or higher"
20
  msgstr ""
21
 
22
- #: ../nggfunctions.php:452
23
- #: ../nggfunctions.php:467
24
  msgid "Watch gallery"
25
  msgstr ""
26
 
27
- #: ../nggfunctions.php:461
28
- #: ../nggfunctions.php:473
29
- #: ../nggfunctions.php:750
30
  msgid "Photos"
31
  msgstr ""
32
 
33
- #: ../nggfunctions.php:547
34
  msgid "Back"
35
  msgstr ""
36
 
37
- #: ../nggfunctions.php:551
38
  msgid "Next"
39
  msgstr ""
40
 
41
- #: ../nggfunctions.php:554
42
  #: ../admin/manage.php:85
43
  #: ../tinymce/window.php:37
44
  msgid "Picture"
45
  msgstr ""
46
 
47
- #: ../nggfunctions.php:554
48
  msgid "from"
49
  msgstr ""
50
 
51
- #: ../nggfunctions.php:720
52
  msgid "Overview"
53
  msgstr ""
54
 
@@ -115,8 +115,8 @@ msgid "Show :"
115
  msgstr ""
116
 
117
  #: ../nggwidget.php:311
118
- #: ../admin/settings.php:100
119
- #: ../admin/settings.php:295
120
  msgid "Thumbnails"
121
  msgstr ""
122
 
@@ -125,7 +125,7 @@ msgid "Orginal images"
125
  msgstr ""
126
 
127
  #: ../nggwidget.php:318
128
- #: ../admin/settings.php:558
129
  msgid "random"
130
  msgstr ""
131
 
@@ -279,134 +279,134 @@ msgid "Upload failed!"
279
  msgstr ""
280
 
281
  #: ../admin/addgallery.php:56
282
- #: ../admin/functions.php:567
283
- #: ../admin/functions.php:635
284
  msgid "No gallery selected !"
285
  msgstr ""
286
 
287
- #: ../admin/addgallery.php:103
288
  msgid "Image Files"
289
  msgstr ""
290
 
291
- #: ../admin/addgallery.php:121
292
- #: ../admin/addgallery.php:151
293
  msgid "remove"
294
  msgstr ""
295
 
296
- #: ../admin/addgallery.php:122
297
  msgid "Browse..."
298
  msgstr ""
299
 
300
- #: ../admin/addgallery.php:123
301
- #: ../admin/addgallery.php:296
302
  msgid "Upload images"
303
  msgstr ""
304
 
305
- #: ../admin/addgallery.php:167
306
- #: ../admin/addgallery.php:179
307
  msgid "Add new gallery"
308
  msgstr ""
309
 
310
- #: ../admin/addgallery.php:169
311
- #: ../admin/addgallery.php:200
312
  msgid "Upload a Zip-File"
313
  msgstr ""
314
 
315
- #: ../admin/addgallery.php:172
316
- #: ../admin/addgallery.php:240
317
  msgid "Import image folder"
318
  msgstr ""
319
 
320
- #: ../admin/addgallery.php:174
321
- #: ../admin/addgallery.php:264
322
  msgid "Upload Images"
323
  msgstr ""
324
 
325
- #: ../admin/addgallery.php:185
326
  msgid "New Gallery"
327
  msgstr ""
328
 
329
- #: ../admin/addgallery.php:188
330
  msgid "Create a new , empty gallery below the folder"
331
  msgstr ""
332
 
333
- #: ../admin/addgallery.php:190
334
  msgid "Allowed characters for file and folder names are"
335
  msgstr ""
336
 
337
- #: ../admin/addgallery.php:193
338
  msgid "Add gallery"
339
  msgstr ""
340
 
341
- #: ../admin/addgallery.php:206
342
  msgid "Select Zip-File"
343
  msgstr ""
344
 
345
- #: ../admin/addgallery.php:208
346
  msgid "Upload a zip file with images"
347
  msgstr ""
348
 
349
- #: ../admin/addgallery.php:211
350
- #: ../admin/addgallery.php:274
351
  msgid "in to"
352
  msgstr ""
353
 
354
- #: ../admin/addgallery.php:213
355
  msgid "a new gallery"
356
  msgstr ""
357
 
358
- #: ../admin/addgallery.php:223
359
- #: ../admin/addgallery.php:286
360
  msgid "Note : The upload limit on your server is "
361
  msgstr ""
362
 
363
- #: ../admin/addgallery.php:227
364
- #: ../admin/addgallery.php:252
365
- #: ../admin/addgallery.php:290
366
  msgid "Add Metadata :"
367
  msgstr ""
368
 
369
- #: ../admin/addgallery.php:229
370
- #: ../admin/addgallery.php:254
371
- #: ../admin/addgallery.php:292
372
  msgid "Import EXIF, IPTC or XMP data (if available)"
373
  msgstr ""
374
 
375
- #: ../admin/addgallery.php:232
376
  msgid "Start upload"
377
  msgstr ""
378
 
379
- #: ../admin/addgallery.php:246
380
  msgid "Import from Server path:"
381
  msgstr ""
382
 
383
- #: ../admin/addgallery.php:248
384
  msgid "Import a folder with images. Please note :"
385
  msgstr ""
386
 
387
- #: ../admin/addgallery.php:249
388
  msgid "For safe-mode = ON you need to add the subfolder thumbs manually"
389
  msgstr ""
390
 
391
- #: ../admin/addgallery.php:257
392
  msgid "Import folder"
393
  msgstr ""
394
 
395
- #: ../admin/addgallery.php:270
396
  msgid "Upload image"
397
  msgstr ""
398
 
399
- #: ../admin/addgallery.php:276
400
  msgid "Choose gallery"
401
  msgstr ""
402
 
403
  #: ../admin/admin.php:54
404
- #: ../admin/functions.php:72
405
- #: ../admin/functions.php:76
406
- #: ../admin/functions.php:123
407
  #: ../admin/manage.php:64
408
  #: ../admin/manage.php:424
409
- #: ../admin/settings.php:102
410
  #: ../admin/uploadtab.php:36
411
  #: ../admin/_manage.php:182
412
  #: ../admin/_manage.php:991
@@ -502,13 +502,13 @@ msgid "Delete album ?"
502
  msgstr ""
503
 
504
  #: ../admin/album.php:151
505
- #: ../admin/settings.php:167
506
- #: ../admin/settings.php:207
507
- #: ../admin/settings.php:254
508
- #: ../admin/settings.php:329
509
- #: ../admin/settings.php:376
510
- #: ../admin/settings.php:488
511
- #: ../admin/settings.php:591
512
  #: ../admin/wpmu.php:98
513
  msgid "Update"
514
  msgstr ""
@@ -568,43 +568,35 @@ msgstr ""
568
  msgid "Page"
569
  msgstr ""
570
 
571
- #: ../admin/functions.php:22
572
  msgid "No valid gallery name!"
573
  msgstr ""
574
 
575
- #: ../admin/functions.php:29
576
- #: ../admin/functions.php:39
577
- #: ../admin/functions.php:53
578
- #: ../admin/functions.php:96
579
- #: ../admin/functions.php:103
580
  msgid "Directory"
581
  msgstr ""
582
 
583
- #: ../admin/functions.php:29
584
  msgid "didn't exist. Please create first the main gallery folder "
585
  msgstr ""
586
 
587
- #: ../admin/functions.php:30
588
- #: ../admin/functions.php:40
589
  msgid "Check this link, if you didn't know how to set the permission :"
590
  msgstr ""
591
 
592
- #: ../admin/functions.php:39
593
- #: ../admin/functions.php:53
594
  msgid "is not writeable !"
595
  msgstr ""
596
 
597
- #: ../admin/functions.php:47
598
- msgid "Directory "
599
- msgstr ""
600
-
601
- #: ../admin/functions.php:47
602
- msgid "already exists!"
603
- msgstr ""
604
-
605
- #: ../admin/functions.php:51
606
- #: ../admin/functions.php:55
607
- #: ../admin/functions.php:515
608
  #: ../lib/nggallery.lib.php:297
609
  msgid "Unable to create directory "
610
  msgstr ""
@@ -625,147 +617,147 @@ msgstr ""
625
  msgid "with permission 777 manually !"
626
  msgstr ""
627
 
628
- #: ../admin/functions.php:72
629
  msgid "already exists"
630
  msgstr ""
631
 
632
- #: ../admin/functions.php:76
633
- #: ../admin/functions.php:123
634
  msgid "successfully created!"
635
  msgstr ""
636
 
637
- #: ../admin/functions.php:76
638
  msgid "You can show this gallery with the tag"
639
  msgstr ""
640
 
641
- #: ../admin/functions.php:96
642
  msgid "doesn&#96;t exist!"
643
  msgstr ""
644
 
645
- #: ../admin/functions.php:103
646
  msgid "contains no pictures"
647
  msgstr ""
648
 
649
- #: ../admin/functions.php:120
650
  #: ../admin/myimport.php:38
651
  msgid "Database error. Could not add gallery!"
652
  msgstr ""
653
 
654
- #: ../admin/functions.php:139
655
  msgid " picture(s) successfully added"
656
  msgstr ""
657
 
658
- #: ../admin/functions.php:169
659
- #: ../admin/functions.php:216
660
- #: ../admin/functions.php:277
661
  msgid "Running... Please wait"
662
  msgstr ""
663
 
664
- #: ../admin/functions.php:170
665
  #: ../admin/manage.php:500
666
  msgid "Resize images"
667
  msgstr ""
668
 
669
- #: ../admin/functions.php:192
670
  msgid " : Image resized..."
671
  msgstr ""
672
 
673
- #: ../admin/functions.php:201
674
- #: ../admin/functions.php:256
675
  msgid "Some pictures are not writeable :"
676
  msgstr ""
677
 
678
- #: ../admin/functions.php:217
679
  #: ../admin/manage.php:498
680
  msgid "Set watermark"
681
  msgstr ""
682
 
683
- #: ../admin/functions.php:247
684
  msgid " : Watermark created..."
685
  msgstr ""
686
 
687
- #: ../admin/functions.php:278
688
  #: ../admin/manage.php:499
689
  msgid "Create new thumbnails"
690
  msgstr ""
691
 
692
- #: ../admin/functions.php:343
693
  msgid " : Thumbnail created..."
694
  msgstr ""
695
 
696
- #: ../admin/functions.php:348
697
  msgid "Follow thumbnails could not created."
698
  msgstr ""
699
 
700
- #: ../admin/functions.php:349
701
  msgid "Some thumbnails are not writeable :"
702
  msgstr ""
703
 
704
- #: ../admin/functions.php:450
705
  msgid "The Zip-file is too large. Exceed Memory limit !"
706
  msgstr ""
707
 
708
- #: ../admin/functions.php:491
709
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
710
  msgstr ""
711
 
712
- #: ../admin/functions.php:510
713
  #, php-format
714
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
715
  msgstr ""
716
 
717
- #: ../admin/functions.php:525
718
  msgid "Zip-File successfully unpacked"
719
  msgstr ""
720
 
721
- #: ../admin/functions.php:566
722
- #: ../admin/functions.php:574
723
  msgid "Unable to unlink file "
724
  msgstr ""
725
 
726
- #: ../admin/functions.php:575
727
- #: ../admin/functions.php:660
728
  msgid "Failure in database, no gallery path set !"
729
  msgstr ""
730
 
731
- #: ../admin/functions.php:582
732
- #: ../admin/functions.php:653
733
  msgid "is no valid image file!"
734
  msgstr ""
735
 
736
- #: ../admin/functions.php:590
737
  #, php-format
738
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
739
  msgstr ""
740
 
741
- #: ../admin/functions.php:597
742
- #: ../admin/functions.php:677
743
  msgid "Error, the file could not moved to : "
744
  msgstr ""
745
 
746
- #: ../admin/functions.php:602
747
- #: ../admin/functions.php:681
748
  msgid "Error, the file permissions could not set"
749
  msgstr ""
750
 
751
- #: ../admin/functions.php:620
752
  msgid " Image(s) successfully added"
753
  msgstr ""
754
 
755
- #: ../admin/functions.php:640
756
  msgid "Invalid upload. Error Code : "
757
  msgstr ""
758
 
759
- #: ../admin/functions.php:692
760
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
761
  msgstr ""
762
 
763
- #: ../admin/functions.php:719
764
  #, php-format
765
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
766
  msgstr ""
767
 
768
- #: ../admin/functions.php:720
769
  #, php-format
770
  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"
771
  msgstr ""
@@ -990,7 +982,7 @@ msgid "Hide tags"
990
  msgstr ""
991
 
992
  #: ../admin/manage.php:524
993
- #: ../admin/settings.php:318
994
  msgid "File name"
995
  msgstr ""
996
 
@@ -1293,524 +1285,528 @@ msgstr ""
1293
  msgid "Update capabilities"
1294
  msgstr ""
1295
 
1296
- #: ../admin/settings.php:29
1297
  #: ../admin/style.php:16
1298
  #: ../admin/wpmu.php:32
1299
  msgid "Update successfully"
1300
  msgstr ""
1301
 
1302
- #: ../admin/settings.php:46
1303
  msgid "Cache cleared"
1304
  msgstr ""
1305
 
1306
- #: ../admin/settings.php:99
1307
- #: ../admin/settings.php:111
1308
  msgid "General Options"
1309
  msgstr ""
1310
 
1311
- #: ../admin/settings.php:101
1312
  msgid "Images"
1313
  msgstr ""
1314
 
1315
- #: ../admin/settings.php:103
1316
- #: ../admin/settings.php:337
1317
  msgid "Effects"
1318
  msgstr ""
1319
 
1320
- #: ../admin/settings.php:104
1321
- #: ../admin/settings.php:390
1322
  #: ../tinymce/window.php:123
1323
  msgid "Watermark"
1324
  msgstr ""
1325
 
1326
- #: ../admin/settings.php:105
1327
- #: ../admin/settings.php:296
1328
- #: ../admin/settings.php:498
1329
  #: ../tinymce/window.php:63
1330
  msgid "Slideshow"
1331
  msgstr ""
1332
 
1333
- #: ../admin/settings.php:118
1334
  #: ../admin/wpmu.php:48
1335
  msgid "Gallery path"
1336
  msgstr ""
1337
 
1338
- #: ../admin/settings.php:120
1339
  msgid "This is the default path for all galleries"
1340
  msgstr ""
1341
 
1342
- #: ../admin/settings.php:131
1343
  msgid "Delete image files"
1344
  msgstr ""
1345
 
1346
- #: ../admin/settings.php:133
1347
  msgid "Delete files, when removing a gallery in the database"
1348
  msgstr ""
1349
 
1350
- #: ../admin/settings.php:136
1351
  msgid "Activate batch upload"
1352
  msgstr ""
1353
 
1354
- #: ../admin/settings.php:138
1355
  msgid "The batch upload requires Adobe Flash 9, disable it if you have problems"
1356
  msgstr ""
1357
 
1358
- #: ../admin/settings.php:141
1359
  msgid "Activate permalinks"
1360
  msgstr ""
1361
 
1362
- #: ../admin/settings.php:143
1363
  msgid "When you activate this option, you need to update your permalink structure one time."
1364
  msgstr ""
1365
 
1366
- #: ../admin/settings.php:146
1367
  msgid "Tags / Categories"
1368
  msgstr ""
1369
 
1370
- #: ../admin/settings.php:149
1371
  msgid "Activate related images"
1372
  msgstr ""
1373
 
1374
- #: ../admin/settings.php:151
1375
  msgid "This option will append related images to every post"
1376
  msgstr ""
1377
 
1378
- #: ../admin/settings.php:155
1379
  msgid "Match with"
1380
  msgstr ""
1381
 
1382
- #: ../admin/settings.php:156
1383
  msgid "Categories"
1384
  msgstr ""
1385
 
1386
- #: ../admin/settings.php:157
1387
  #: ../lib/nggmeta.lib.php:375
1388
  msgid "Tags"
1389
  msgstr ""
1390
 
1391
- #: ../admin/settings.php:157
1392
  msgid " (require WordPress 2.3 or higher)"
1393
  msgstr ""
1394
 
1395
- #: ../admin/settings.php:161
1396
  msgid "Max. number of images"
1397
  msgstr ""
1398
 
1399
- #: ../admin/settings.php:163
1400
  msgid "0 will show all images"
1401
  msgstr ""
1402
 
1403
- #: ../admin/settings.php:175
1404
  msgid "Thumbnail settings"
1405
  msgstr ""
1406
 
1407
- #: ../admin/settings.php:180
1408
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1409
  msgstr ""
1410
 
1411
- #: ../admin/settings.php:183
1412
  msgid "Width x height (in pixel)"
1413
  msgstr ""
1414
 
1415
- #: ../admin/settings.php:185
1416
  msgid "These values are maximum values "
1417
  msgstr ""
1418
 
1419
- #: ../admin/settings.php:188
1420
  msgid "Set fix dimension"
1421
  msgstr ""
1422
 
1423
- #: ../admin/settings.php:190
1424
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1425
  msgstr ""
1426
 
1427
- #: ../admin/settings.php:193
1428
  msgid "Crop square thumbnail from image"
1429
  msgstr ""
1430
 
1431
- #: ../admin/settings.php:195
1432
  msgid "Create square thumbnails, use only the width setting :"
1433
  msgstr ""
1434
 
1435
- #: ../admin/settings.php:198
1436
  msgid "Thumbnail quality"
1437
  msgstr ""
1438
 
1439
- #: ../admin/settings.php:202
1440
- #: ../admin/settings.php:234
1441
  msgid "Resample Mode"
1442
  msgstr ""
1443
 
1444
- #: ../admin/settings.php:204
1445
- #: ../admin/settings.php:237
1446
  msgid "Value between 1-5 (higher value, more CPU load)"
1447
  msgstr ""
1448
 
1449
- #: ../admin/settings.php:215
1450
  msgid "Image settings"
1451
  msgstr ""
1452
 
1453
- #: ../admin/settings.php:222
1454
  msgid "Resize Images"
1455
  msgstr ""
1456
 
1457
- #: ../admin/settings.php:226
1458
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1459
  msgstr ""
1460
 
1461
- #: ../admin/settings.php:229
1462
  msgid "Image quality"
1463
  msgstr ""
1464
 
1465
- #: ../admin/settings.php:240
1466
  msgid "Single picture"
1467
  msgstr ""
1468
 
1469
- #: ../admin/settings.php:243
1470
  msgid "Cache single pictures"
1471
  msgstr ""
1472
 
1473
- #: ../admin/settings.php:246
1474
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1475
  msgstr ""
1476
 
1477
- #: ../admin/settings.php:249
1478
  msgid "Clear cache folder"
1479
  msgstr ""
1480
 
1481
- #: ../admin/settings.php:251
1482
  msgid "Proceed now"
1483
  msgstr ""
1484
 
1485
- #: ../admin/settings.php:262
1486
  msgid "Gallery settings"
1487
  msgstr ""
1488
 
1489
- #: ../admin/settings.php:269
1490
  msgid "Activate jQuery navigation"
1491
  msgstr ""
1492
 
1493
- #: ../admin/settings.php:271
1494
  msgid "Please note : This is still experimental. Requires the Thickbox effect"
1495
  msgstr ""
1496
 
1497
- #: ../admin/settings.php:275
1498
  msgid "Deactivate gallery page link"
1499
  msgstr ""
1500
 
1501
- #: ../admin/settings.php:277
1502
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1503
  msgstr ""
1504
 
1505
- #: ../admin/settings.php:281
1506
  msgid "Number of images per page"
1507
  msgstr ""
1508
 
1509
- #: ../admin/settings.php:283
1510
  msgid "0 will disable pagination, all images on one page"
1511
  msgstr ""
1512
 
1513
- #: ../admin/settings.php:287
1514
  msgid "Integrate slideshow"
1515
  msgstr ""
1516
 
1517
- #: ../admin/settings.php:294
1518
  msgid "Show first"
1519
  msgstr ""
1520
 
1521
- #: ../admin/settings.php:300
1522
  msgid "Show thumbnail description"
1523
  msgstr ""
1524
 
1525
- #: ../admin/settings.php:301
1526
- #: ../admin/settings.php:349
1527
  #: ../admin/js/uploadtab.js.php:117
1528
  msgid "None"
1529
  msgstr ""
1530
 
1531
- #: ../admin/settings.php:302
1532
  msgid "Description text"
1533
  msgstr ""
1534
 
1535
- #: ../admin/settings.php:303
1536
- #: ../admin/settings.php:319
1537
  msgid "Alt / Title text"
1538
  msgstr ""
1539
 
1540
- #: ../admin/settings.php:307
1541
  msgid "Show ImageBrowser"
1542
  msgstr ""
1543
 
1544
- #: ../admin/settings.php:309
1545
  msgid "The gallery will open the ImageBrowser instead the effect."
1546
  msgstr ""
1547
 
1548
- #: ../admin/settings.php:313
1549
  msgid "Sort options"
1550
  msgstr ""
1551
 
1552
- #: ../admin/settings.php:316
1553
  msgid "Sort thumbnails"
1554
  msgstr ""
1555
 
1556
- #: ../admin/settings.php:317
1557
  msgid "Image ID"
1558
  msgstr ""
1559
 
1560
- #: ../admin/settings.php:323
1561
  msgid "Sort direction"
1562
  msgstr ""
1563
 
1564
- #: ../admin/settings.php:324
1565
  msgid "Ascending"
1566
  msgstr ""
1567
 
1568
- #: ../admin/settings.php:325
1569
  msgid "Descending"
1570
  msgstr ""
1571
 
1572
- #: ../admin/settings.php:341
1573
  msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
1574
  msgstr ""
1575
 
1576
- #: ../admin/settings.php:342
1577
  msgid "With the placeholder"
1578
  msgstr ""
1579
 
1580
- #: ../admin/settings.php:342
1581
  msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
1582
  msgstr ""
1583
 
1584
- #: ../admin/settings.php:346
1585
  msgid "JavaScript Thumbnail effect"
1586
  msgstr ""
1587
 
1588
- #: ../admin/settings.php:350
1589
  msgid "Thickbox"
1590
  msgstr ""
1591
 
1592
- #: ../admin/settings.php:351
1593
  msgid "Lightbox"
1594
  msgstr ""
1595
 
1596
- #: ../admin/settings.php:352
1597
  msgid "Highslide"
1598
  msgstr ""
1599
 
1600
- #: ../admin/settings.php:353
1601
  msgid "Shutter"
1602
  msgstr ""
1603
 
1604
- #: ../admin/settings.php:354
1605
  msgid "Custom"
1606
  msgstr ""
1607
 
1608
- #: ../admin/settings.php:359
1609
  msgid "Link Code line"
1610
  msgstr ""
1611
 
1612
- #: ../admin/settings.php:367
1613
  msgid "Select loading image"
1614
  msgstr ""
1615
 
1616
- #: ../admin/settings.php:391
1617
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1618
  msgstr ""
1619
 
1620
- #: ../admin/settings.php:396
1621
  msgid "Preview"
1622
  msgstr ""
1623
 
1624
- #: ../admin/settings.php:398
1625
  #: ../admin/settings.php:402
 
1626
  msgid "Position"
1627
  msgstr ""
1628
 
1629
- #: ../admin/settings.php:422
1630
  msgid "Offset"
1631
  msgstr ""
1632
 
1633
- #: ../admin/settings.php:440
1634
  msgid "Use image as watermark"
1635
  msgstr ""
1636
 
1637
- #: ../admin/settings.php:443
1638
  msgid "URL to file"
1639
  msgstr ""
1640
 
1641
- #: ../admin/settings.php:445
1642
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
1643
  msgstr ""
1644
 
1645
- #: ../admin/settings.php:451
1646
  msgid "Use text as watermark"
1647
  msgstr ""
1648
 
1649
- #: ../admin/settings.php:454
1650
  msgid "Font"
1651
  msgstr ""
1652
 
1653
- #: ../admin/settings.php:463
1654
  msgid "This function will not work, cause you need the FreeType library"
1655
  msgstr ""
1656
 
1657
- #: ../admin/settings.php:465
1658
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
1659
  msgstr ""
1660
 
1661
- #: ../admin/settings.php:469
1662
  msgid "Size"
1663
  msgstr ""
1664
 
1665
- #: ../admin/settings.php:473
1666
  msgid "Color"
1667
  msgstr ""
1668
 
1669
- #: ../admin/settings.php:475
1670
  msgid "(hex w/o #)"
1671
  msgstr ""
1672
 
1673
- #: ../admin/settings.php:478
1674
  msgid "Text"
1675
  msgstr ""
1676
 
1677
- #: ../admin/settings.php:482
1678
  msgid "Opaque"
1679
  msgstr ""
1680
 
1681
- #: ../admin/settings.php:500
1682
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
1683
  msgstr ""
1684
 
1685
- #: ../admin/settings.php:501
1686
- msgid "The settings are used in the JW Image Rotator Version 3.9 ."
1687
  msgstr ""
1688
 
1689
- #: ../admin/settings.php:502
1690
  msgid "See more information for the Flash Player on the web page"
1691
  msgstr ""
1692
 
1693
- #: ../admin/settings.php:505
1694
  msgid "Default size (W x H)"
1695
  msgstr ""
1696
 
1697
- #: ../admin/settings.php:510
1698
  msgid "Shuffle mode"
1699
  msgstr ""
1700
 
1701
- #: ../admin/settings.php:514
1702
  msgid "Show next image on click"
1703
  msgstr ""
1704
 
1705
- #: ../admin/settings.php:518
1706
  msgid "Show navigation bar"
1707
  msgstr ""
1708
 
1709
- #: ../admin/settings.php:522
1710
  msgid "Show loading icon"
1711
  msgstr ""
1712
 
1713
- #: ../admin/settings.php:526
1714
  msgid "Use watermark logo"
1715
  msgstr ""
1716
 
1717
- #: ../admin/settings.php:528
1718
  msgid "You can change the logo at the watermark settings"
1719
  msgstr ""
1720
 
1721
- #: ../admin/settings.php:531
1722
  msgid "Stretch image"
1723
  msgstr ""
1724
 
1725
- #: ../admin/settings.php:534
1726
  msgid "true"
1727
  msgstr ""
1728
 
1729
- #: ../admin/settings.php:535
1730
  msgid "false"
1731
  msgstr ""
1732
 
1733
- #: ../admin/settings.php:536
1734
  msgid "fit"
1735
  msgstr ""
1736
 
1737
- #: ../admin/settings.php:537
1738
  msgid "none"
1739
  msgstr ""
1740
 
1741
- #: ../admin/settings.php:542
1742
  msgid "Duration time"
1743
  msgstr ""
1744
 
1745
- #: ../admin/settings.php:543
1746
  msgid "sec."
1747
  msgstr ""
1748
 
1749
- #: ../admin/settings.php:546
1750
  msgid "Transition / Fade effect"
1751
  msgstr ""
1752
 
1753
- #: ../admin/settings.php:549
1754
  msgid "fade"
1755
  msgstr ""
1756
 
1757
- #: ../admin/settings.php:550
1758
  msgid "bgfade"
1759
  msgstr ""
1760
 
1761
- #: ../admin/settings.php:551
1762
  msgid "slowfade"
1763
  msgstr ""
1764
 
1765
- #: ../admin/settings.php:552
1766
  msgid "circles"
1767
  msgstr ""
1768
 
1769
- #: ../admin/settings.php:553
1770
  msgid "bubbles"
1771
  msgstr ""
1772
 
1773
- #: ../admin/settings.php:554
1774
  msgid "blocks"
1775
  msgstr ""
1776
 
1777
- #: ../admin/settings.php:555
1778
  msgid "fluids"
1779
  msgstr ""
1780
 
1781
- #: ../admin/settings.php:556
1782
  msgid "flash"
1783
  msgstr ""
1784
 
1785
- #: ../admin/settings.php:557
1786
  msgid "lines"
1787
  msgstr ""
1788
 
1789
- #: ../admin/settings.php:562
1790
  msgid "Use slow zooming effect"
1791
  msgstr ""
1792
 
1793
- #: ../admin/settings.php:566
1794
  msgid "Background Color"
1795
  msgstr ""
1796
 
1797
- #: ../admin/settings.php:571
1798
  msgid "Texts / Buttons Color"
1799
  msgstr ""
1800
 
1801
- #: ../admin/settings.php:576
1802
  msgid "Rollover / Active Color"
1803
  msgstr ""
1804
 
1805
- #: ../admin/settings.php:581
 
 
 
 
1806
  msgid "Background music (URL)"
1807
  msgstr ""
1808
 
1809
- #: ../admin/settings.php:585
1810
  msgid "Try XHTML validation (with CDATA)"
1811
  msgstr ""
1812
 
1813
- #: ../admin/settings.php:587
1814
  msgid "Important : Could causes problem at some browser. Please recheck your page."
1815
  msgstr ""
1816
 
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "POT-Creation-Date: \n"
5
+ "PO-Revision-Date: 2008-02-04 13:38+0100\n"
6
  "Last-Translator: Alex Rabe\n"
7
  "Language-Team: Alex Rabe\n"
8
  "MIME-Version: 1.0\n"
19
  msgid "Sorry, NextGEN Gallery works only under WordPress 2.1 or higher"
20
  msgstr ""
21
 
22
+ #: ../nggfunctions.php:474
23
+ #: ../nggfunctions.php:489
24
  msgid "Watch gallery"
25
  msgstr ""
26
 
27
+ #: ../nggfunctions.php:483
28
+ #: ../nggfunctions.php:495
29
+ #: ../nggfunctions.php:772
30
  msgid "Photos"
31
  msgstr ""
32
 
33
+ #: ../nggfunctions.php:569
34
  msgid "Back"
35
  msgstr ""
36
 
37
+ #: ../nggfunctions.php:573
38
  msgid "Next"
39
  msgstr ""
40
 
41
+ #: ../nggfunctions.php:576
42
  #: ../admin/manage.php:85
43
  #: ../tinymce/window.php:37
44
  msgid "Picture"
45
  msgstr ""
46
 
47
+ #: ../nggfunctions.php:576
48
  msgid "from"
49
  msgstr ""
50
 
51
+ #: ../nggfunctions.php:742
52
  msgid "Overview"
53
  msgstr ""
54
 
115
  msgstr ""
116
 
117
  #: ../nggwidget.php:311
118
+ #: ../admin/settings.php:104
119
+ #: ../admin/settings.php:299
120
  msgid "Thumbnails"
121
  msgstr ""
122
 
125
  msgstr ""
126
 
127
  #: ../nggwidget.php:318
128
+ #: ../admin/settings.php:562
129
  msgid "random"
130
  msgstr ""
131
 
279
  msgstr ""
280
 
281
  #: ../admin/addgallery.php:56
282
+ #: ../admin/functions.php:572
283
+ #: ../admin/functions.php:640
284
  msgid "No gallery selected !"
285
  msgstr ""
286
 
287
+ #: ../admin/addgallery.php:102
288
  msgid "Image Files"
289
  msgstr ""
290
 
291
+ #: ../admin/addgallery.php:122
292
+ #: ../admin/addgallery.php:152
293
  msgid "remove"
294
  msgstr ""
295
 
296
+ #: ../admin/addgallery.php:123
297
  msgid "Browse..."
298
  msgstr ""
299
 
300
+ #: ../admin/addgallery.php:124
301
+ #: ../admin/addgallery.php:297
302
  msgid "Upload images"
303
  msgstr ""
304
 
305
+ #: ../admin/addgallery.php:168
306
+ #: ../admin/addgallery.php:180
307
  msgid "Add new gallery"
308
  msgstr ""
309
 
310
+ #: ../admin/addgallery.php:170
311
+ #: ../admin/addgallery.php:201
312
  msgid "Upload a Zip-File"
313
  msgstr ""
314
 
315
+ #: ../admin/addgallery.php:173
316
+ #: ../admin/addgallery.php:241
317
  msgid "Import image folder"
318
  msgstr ""
319
 
320
+ #: ../admin/addgallery.php:175
321
+ #: ../admin/addgallery.php:265
322
  msgid "Upload Images"
323
  msgstr ""
324
 
325
+ #: ../admin/addgallery.php:186
326
  msgid "New Gallery"
327
  msgstr ""
328
 
329
+ #: ../admin/addgallery.php:189
330
  msgid "Create a new , empty gallery below the folder"
331
  msgstr ""
332
 
333
+ #: ../admin/addgallery.php:191
334
  msgid "Allowed characters for file and folder names are"
335
  msgstr ""
336
 
337
+ #: ../admin/addgallery.php:194
338
  msgid "Add gallery"
339
  msgstr ""
340
 
341
+ #: ../admin/addgallery.php:207
342
  msgid "Select Zip-File"
343
  msgstr ""
344
 
345
+ #: ../admin/addgallery.php:209
346
  msgid "Upload a zip file with images"
347
  msgstr ""
348
 
349
+ #: ../admin/addgallery.php:212
350
+ #: ../admin/addgallery.php:275
351
  msgid "in to"
352
  msgstr ""
353
 
354
+ #: ../admin/addgallery.php:214
355
  msgid "a new gallery"
356
  msgstr ""
357
 
358
+ #: ../admin/addgallery.php:224
359
+ #: ../admin/addgallery.php:287
360
  msgid "Note : The upload limit on your server is "
361
  msgstr ""
362
 
363
+ #: ../admin/addgallery.php:228
364
+ #: ../admin/addgallery.php:253
365
+ #: ../admin/addgallery.php:291
366
  msgid "Add Metadata :"
367
  msgstr ""
368
 
369
+ #: ../admin/addgallery.php:230
370
+ #: ../admin/addgallery.php:255
371
+ #: ../admin/addgallery.php:293
372
  msgid "Import EXIF, IPTC or XMP data (if available)"
373
  msgstr ""
374
 
375
+ #: ../admin/addgallery.php:233
376
  msgid "Start upload"
377
  msgstr ""
378
 
379
+ #: ../admin/addgallery.php:247
380
  msgid "Import from Server path:"
381
  msgstr ""
382
 
383
+ #: ../admin/addgallery.php:249
384
  msgid "Import a folder with images. Please note :"
385
  msgstr ""
386
 
387
+ #: ../admin/addgallery.php:250
388
  msgid "For safe-mode = ON you need to add the subfolder thumbs manually"
389
  msgstr ""
390
 
391
+ #: ../admin/addgallery.php:258
392
  msgid "Import folder"
393
  msgstr ""
394
 
395
+ #: ../admin/addgallery.php:271
396
  msgid "Upload image"
397
  msgstr ""
398
 
399
+ #: ../admin/addgallery.php:277
400
  msgid "Choose gallery"
401
  msgstr ""
402
 
403
  #: ../admin/admin.php:54
404
+ #: ../admin/functions.php:77
405
+ #: ../admin/functions.php:81
406
+ #: ../admin/functions.php:128
407
  #: ../admin/manage.php:64
408
  #: ../admin/manage.php:424
409
+ #: ../admin/settings.php:106
410
  #: ../admin/uploadtab.php:36
411
  #: ../admin/_manage.php:182
412
  #: ../admin/_manage.php:991
502
  msgstr ""
503
 
504
  #: ../admin/album.php:151
505
+ #: ../admin/settings.php:171
506
+ #: ../admin/settings.php:211
507
+ #: ../admin/settings.php:258
508
+ #: ../admin/settings.php:333
509
+ #: ../admin/settings.php:380
510
+ #: ../admin/settings.php:492
511
+ #: ../admin/settings.php:600
512
  #: ../admin/wpmu.php:98
513
  msgid "Update"
514
  msgstr ""
568
  msgid "Page"
569
  msgstr ""
570
 
571
+ #: ../admin/functions.php:20
572
  msgid "No valid gallery name!"
573
  msgstr ""
574
 
575
+ #: ../admin/functions.php:27
576
+ #: ../admin/functions.php:36
577
+ #: ../admin/functions.php:49
578
+ #: ../admin/functions.php:101
579
+ #: ../admin/functions.php:108
580
  msgid "Directory"
581
  msgstr ""
582
 
583
+ #: ../admin/functions.php:27
584
  msgid "didn't exist. Please create first the main gallery folder "
585
  msgstr ""
586
 
587
+ #: ../admin/functions.php:28
588
+ #: ../admin/functions.php:37
589
  msgid "Check this link, if you didn't know how to set the permission :"
590
  msgstr ""
591
 
592
+ #: ../admin/functions.php:36
593
+ #: ../admin/functions.php:49
594
  msgid "is not writeable !"
595
  msgstr ""
596
 
597
+ #: ../admin/functions.php:45
598
+ #: ../admin/functions.php:54
599
+ #: ../admin/functions.php:520
 
 
 
 
 
 
 
 
600
  #: ../lib/nggallery.lib.php:297
601
  msgid "Unable to create directory "
602
  msgstr ""
617
  msgid "with permission 777 manually !"
618
  msgstr ""
619
 
620
+ #: ../admin/functions.php:77
621
  msgid "already exists"
622
  msgstr ""
623
 
624
+ #: ../admin/functions.php:81
625
+ #: ../admin/functions.php:128
626
  msgid "successfully created!"
627
  msgstr ""
628
 
629
+ #: ../admin/functions.php:81
630
  msgid "You can show this gallery with the tag"
631
  msgstr ""
632
 
633
+ #: ../admin/functions.php:101
634
  msgid "doesn&#96;t exist!"
635
  msgstr ""
636
 
637
+ #: ../admin/functions.php:108
638
  msgid "contains no pictures"
639
  msgstr ""
640
 
641
+ #: ../admin/functions.php:125
642
  #: ../admin/myimport.php:38
643
  msgid "Database error. Could not add gallery!"
644
  msgstr ""
645
 
646
+ #: ../admin/functions.php:144
647
  msgid " picture(s) successfully added"
648
  msgstr ""
649
 
650
+ #: ../admin/functions.php:174
651
+ #: ../admin/functions.php:221
652
+ #: ../admin/functions.php:282
653
  msgid "Running... Please wait"
654
  msgstr ""
655
 
656
+ #: ../admin/functions.php:175
657
  #: ../admin/manage.php:500
658
  msgid "Resize images"
659
  msgstr ""
660
 
661
+ #: ../admin/functions.php:197
662
  msgid " : Image resized..."
663
  msgstr ""
664
 
665
+ #: ../admin/functions.php:206
666
+ #: ../admin/functions.php:261
667
  msgid "Some pictures are not writeable :"
668
  msgstr ""
669
 
670
+ #: ../admin/functions.php:222
671
  #: ../admin/manage.php:498
672
  msgid "Set watermark"
673
  msgstr ""
674
 
675
+ #: ../admin/functions.php:252
676
  msgid " : Watermark created..."
677
  msgstr ""
678
 
679
+ #: ../admin/functions.php:283
680
  #: ../admin/manage.php:499
681
  msgid "Create new thumbnails"
682
  msgstr ""
683
 
684
+ #: ../admin/functions.php:348
685
  msgid " : Thumbnail created..."
686
  msgstr ""
687
 
688
+ #: ../admin/functions.php:353
689
  msgid "Follow thumbnails could not created."
690
  msgstr ""
691
 
692
+ #: ../admin/functions.php:354
693
  msgid "Some thumbnails are not writeable :"
694
  msgstr ""
695
 
696
+ #: ../admin/functions.php:455
697
  msgid "The Zip-file is too large. Exceed Memory limit !"
698
  msgstr ""
699
 
700
+ #: ../admin/functions.php:496
701
  msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
702
  msgstr ""
703
 
704
+ #: ../admin/functions.php:515
705
  #, php-format
706
  msgid "Unable to create directory %s. Is its parent directory writable by the server?"
707
  msgstr ""
708
 
709
+ #: ../admin/functions.php:530
710
  msgid "Zip-File successfully unpacked"
711
  msgstr ""
712
 
713
+ #: ../admin/functions.php:571
714
+ #: ../admin/functions.php:579
715
  msgid "Unable to unlink file "
716
  msgstr ""
717
 
718
+ #: ../admin/functions.php:580
719
+ #: ../admin/functions.php:665
720
  msgid "Failure in database, no gallery path set !"
721
  msgstr ""
722
 
723
+ #: ../admin/functions.php:587
724
+ #: ../admin/functions.php:658
725
  msgid "is no valid image file!"
726
  msgstr ""
727
 
728
+ #: ../admin/functions.php:595
729
  #, php-format
730
  msgid "Unable to write to directory %s. Is this directory writable by the server?"
731
  msgstr ""
732
 
733
+ #: ../admin/functions.php:602
734
+ #: ../admin/functions.php:682
735
  msgid "Error, the file could not moved to : "
736
  msgstr ""
737
 
738
+ #: ../admin/functions.php:607
739
+ #: ../admin/functions.php:686
740
  msgid "Error, the file permissions could not set"
741
  msgstr ""
742
 
743
+ #: ../admin/functions.php:625
744
  msgid " Image(s) successfully added"
745
  msgstr ""
746
 
747
+ #: ../admin/functions.php:645
748
  msgid "Invalid upload. Error Code : "
749
  msgstr ""
750
 
751
+ #: ../admin/functions.php:697
752
  msgid "Sorry, you have used your space allocation. Please delete some files to upload more files."
753
  msgstr ""
754
 
755
+ #: ../admin/functions.php:724
756
  #, php-format
757
  msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
758
  msgstr ""
759
 
760
+ #: ../admin/functions.php:725
761
  #, php-format
762
  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"
763
  msgstr ""
982
  msgstr ""
983
 
984
  #: ../admin/manage.php:524
985
+ #: ../admin/settings.php:322
986
  msgid "File name"
987
  msgstr ""
988
 
1285
  msgid "Update capabilities"
1286
  msgstr ""
1287
 
1288
+ #: ../admin/settings.php:33
1289
  #: ../admin/style.php:16
1290
  #: ../admin/wpmu.php:32
1291
  msgid "Update successfully"
1292
  msgstr ""
1293
 
1294
+ #: ../admin/settings.php:50
1295
  msgid "Cache cleared"
1296
  msgstr ""
1297
 
1298
+ #: ../admin/settings.php:103
1299
+ #: ../admin/settings.php:115
1300
  msgid "General Options"
1301
  msgstr ""
1302
 
1303
+ #: ../admin/settings.php:105
1304
  msgid "Images"
1305
  msgstr ""
1306
 
1307
+ #: ../admin/settings.php:107
1308
+ #: ../admin/settings.php:341
1309
  msgid "Effects"
1310
  msgstr ""
1311
 
1312
+ #: ../admin/settings.php:108
1313
+ #: ../admin/settings.php:394
1314
  #: ../tinymce/window.php:123
1315
  msgid "Watermark"
1316
  msgstr ""
1317
 
1318
+ #: ../admin/settings.php:109
1319
+ #: ../admin/settings.php:300
1320
+ #: ../admin/settings.php:502
1321
  #: ../tinymce/window.php:63
1322
  msgid "Slideshow"
1323
  msgstr ""
1324
 
1325
+ #: ../admin/settings.php:122
1326
  #: ../admin/wpmu.php:48
1327
  msgid "Gallery path"
1328
  msgstr ""
1329
 
1330
+ #: ../admin/settings.php:124
1331
  msgid "This is the default path for all galleries"
1332
  msgstr ""
1333
 
1334
+ #: ../admin/settings.php:135
1335
  msgid "Delete image files"
1336
  msgstr ""
1337
 
1338
+ #: ../admin/settings.php:137
1339
  msgid "Delete files, when removing a gallery in the database"
1340
  msgstr ""
1341
 
1342
+ #: ../admin/settings.php:140
1343
  msgid "Activate batch upload"
1344
  msgstr ""
1345
 
1346
+ #: ../admin/settings.php:142
1347
  msgid "The batch upload requires Adobe Flash 9, disable it if you have problems"
1348
  msgstr ""
1349
 
1350
+ #: ../admin/settings.php:145
1351
  msgid "Activate permalinks"
1352
  msgstr ""
1353
 
1354
+ #: ../admin/settings.php:147
1355
  msgid "When you activate this option, you need to update your permalink structure one time."
1356
  msgstr ""
1357
 
1358
+ #: ../admin/settings.php:150
1359
  msgid "Tags / Categories"
1360
  msgstr ""
1361
 
1362
+ #: ../admin/settings.php:153
1363
  msgid "Activate related images"
1364
  msgstr ""
1365
 
1366
+ #: ../admin/settings.php:155
1367
  msgid "This option will append related images to every post"
1368
  msgstr ""
1369
 
1370
+ #: ../admin/settings.php:159
1371
  msgid "Match with"
1372
  msgstr ""
1373
 
1374
+ #: ../admin/settings.php:160
1375
  msgid "Categories"
1376
  msgstr ""
1377
 
1378
+ #: ../admin/settings.php:161
1379
  #: ../lib/nggmeta.lib.php:375
1380
  msgid "Tags"
1381
  msgstr ""
1382
 
1383
+ #: ../admin/settings.php:161
1384
  msgid " (require WordPress 2.3 or higher)"
1385
  msgstr ""
1386
 
1387
+ #: ../admin/settings.php:165
1388
  msgid "Max. number of images"
1389
  msgstr ""
1390
 
1391
+ #: ../admin/settings.php:167
1392
  msgid "0 will show all images"
1393
  msgstr ""
1394
 
1395
+ #: ../admin/settings.php:179
1396
  msgid "Thumbnail settings"
1397
  msgstr ""
1398
 
1399
+ #: ../admin/settings.php:184
1400
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1401
  msgstr ""
1402
 
1403
+ #: ../admin/settings.php:187
1404
  msgid "Width x height (in pixel)"
1405
  msgstr ""
1406
 
1407
+ #: ../admin/settings.php:189
1408
  msgid "These values are maximum values "
1409
  msgstr ""
1410
 
1411
+ #: ../admin/settings.php:192
1412
  msgid "Set fix dimension"
1413
  msgstr ""
1414
 
1415
+ #: ../admin/settings.php:194
1416
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1417
  msgstr ""
1418
 
1419
+ #: ../admin/settings.php:197
1420
  msgid "Crop square thumbnail from image"
1421
  msgstr ""
1422
 
1423
+ #: ../admin/settings.php:199
1424
  msgid "Create square thumbnails, use only the width setting :"
1425
  msgstr ""
1426
 
1427
+ #: ../admin/settings.php:202
1428
  msgid "Thumbnail quality"
1429
  msgstr ""
1430
 
1431
+ #: ../admin/settings.php:206
1432
+ #: ../admin/settings.php:238
1433
  msgid "Resample Mode"
1434
  msgstr ""
1435
 
1436
+ #: ../admin/settings.php:208
1437
+ #: ../admin/settings.php:241
1438
  msgid "Value between 1-5 (higher value, more CPU load)"
1439
  msgstr ""
1440
 
1441
+ #: ../admin/settings.php:219
1442
  msgid "Image settings"
1443
  msgstr ""
1444
 
1445
+ #: ../admin/settings.php:226
1446
  msgid "Resize Images"
1447
  msgstr ""
1448
 
1449
+ #: ../admin/settings.php:230
1450
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1451
  msgstr ""
1452
 
1453
+ #: ../admin/settings.php:233
1454
  msgid "Image quality"
1455
  msgstr ""
1456
 
1457
+ #: ../admin/settings.php:244
1458
  msgid "Single picture"
1459
  msgstr ""
1460
 
1461
+ #: ../admin/settings.php:247
1462
  msgid "Cache single pictures"
1463
  msgstr ""
1464
 
1465
+ #: ../admin/settings.php:250
1466
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1467
  msgstr ""
1468
 
1469
+ #: ../admin/settings.php:253
1470
  msgid "Clear cache folder"
1471
  msgstr ""
1472
 
1473
+ #: ../admin/settings.php:255
1474
  msgid "Proceed now"
1475
  msgstr ""
1476
 
1477
+ #: ../admin/settings.php:266
1478
  msgid "Gallery settings"
1479
  msgstr ""
1480
 
1481
+ #: ../admin/settings.php:273
1482
  msgid "Activate jQuery navigation"
1483
  msgstr ""
1484
 
1485
+ #: ../admin/settings.php:275
1486
  msgid "Please note : This is still experimental. Requires the Thickbox effect"
1487
  msgstr ""
1488
 
1489
+ #: ../admin/settings.php:279
1490
  msgid "Deactivate gallery page link"
1491
  msgstr ""
1492
 
1493
+ #: ../admin/settings.php:281
1494
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1495
  msgstr ""
1496
 
1497
+ #: ../admin/settings.php:285
1498
  msgid "Number of images per page"
1499
  msgstr ""
1500
 
1501
+ #: ../admin/settings.php:287
1502
  msgid "0 will disable pagination, all images on one page"
1503
  msgstr ""
1504
 
1505
+ #: ../admin/settings.php:291
1506
  msgid "Integrate slideshow"
1507
  msgstr ""
1508
 
1509
+ #: ../admin/settings.php:298
1510
  msgid "Show first"
1511
  msgstr ""
1512
 
1513
+ #: ../admin/settings.php:304
1514
  msgid "Show thumbnail description"
1515
  msgstr ""
1516
 
1517
+ #: ../admin/settings.php:305
1518
+ #: ../admin/settings.php:353
1519
  #: ../admin/js/uploadtab.js.php:117
1520
  msgid "None"
1521
  msgstr ""
1522
 
1523
+ #: ../admin/settings.php:306
1524
  msgid "Description text"
1525
  msgstr ""
1526
 
1527
+ #: ../admin/settings.php:307
1528
+ #: ../admin/settings.php:323
1529
  msgid "Alt / Title text"
1530
  msgstr ""
1531
 
1532
+ #: ../admin/settings.php:311
1533
  msgid "Show ImageBrowser"
1534
  msgstr ""
1535
 
1536
+ #: ../admin/settings.php:313
1537
  msgid "The gallery will open the ImageBrowser instead the effect."
1538
  msgstr ""
1539
 
1540
+ #: ../admin/settings.php:317
1541
  msgid "Sort options"
1542
  msgstr ""
1543
 
1544
+ #: ../admin/settings.php:320
1545
  msgid "Sort thumbnails"
1546
  msgstr ""
1547
 
1548
+ #: ../admin/settings.php:321
1549
  msgid "Image ID"
1550
  msgstr ""
1551
 
1552
+ #: ../admin/settings.php:327
1553
  msgid "Sort direction"
1554
  msgstr ""
1555
 
1556
+ #: ../admin/settings.php:328
1557
  msgid "Ascending"
1558
  msgstr ""
1559
 
1560
+ #: ../admin/settings.php:329
1561
  msgid "Descending"
1562
  msgstr ""
1563
 
1564
+ #: ../admin/settings.php:345
1565
  msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
1566
  msgstr ""
1567
 
1568
+ #: ../admin/settings.php:346
1569
  msgid "With the placeholder"
1570
  msgstr ""
1571
 
1572
+ #: ../admin/settings.php:346
1573
  msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
1574
  msgstr ""
1575
 
1576
+ #: ../admin/settings.php:350
1577
  msgid "JavaScript Thumbnail effect"
1578
  msgstr ""
1579
 
1580
+ #: ../admin/settings.php:354
1581
  msgid "Thickbox"
1582
  msgstr ""
1583
 
1584
+ #: ../admin/settings.php:355
1585
  msgid "Lightbox"
1586
  msgstr ""
1587
 
1588
+ #: ../admin/settings.php:356
1589
  msgid "Highslide"
1590
  msgstr ""
1591
 
1592
+ #: ../admin/settings.php:357
1593
  msgid "Shutter"
1594
  msgstr ""
1595
 
1596
+ #: ../admin/settings.php:358
1597
  msgid "Custom"
1598
  msgstr ""
1599
 
1600
+ #: ../admin/settings.php:363
1601
  msgid "Link Code line"
1602
  msgstr ""
1603
 
1604
+ #: ../admin/settings.php:371
1605
  msgid "Select loading image"
1606
  msgstr ""
1607
 
1608
+ #: ../admin/settings.php:395
1609
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1610
  msgstr ""
1611
 
1612
+ #: ../admin/settings.php:400
1613
  msgid "Preview"
1614
  msgstr ""
1615
 
 
1616
  #: ../admin/settings.php:402
1617
+ #: ../admin/settings.php:406
1618
  msgid "Position"
1619
  msgstr ""
1620
 
1621
+ #: ../admin/settings.php:426
1622
  msgid "Offset"
1623
  msgstr ""
1624
 
1625
+ #: ../admin/settings.php:444
1626
  msgid "Use image as watermark"
1627
  msgstr ""
1628
 
1629
+ #: ../admin/settings.php:447
1630
  msgid "URL to file"
1631
  msgstr ""
1632
 
1633
+ #: ../admin/settings.php:449
1634
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
1635
  msgstr ""
1636
 
1637
+ #: ../admin/settings.php:455
1638
  msgid "Use text as watermark"
1639
  msgstr ""
1640
 
1641
+ #: ../admin/settings.php:458
1642
  msgid "Font"
1643
  msgstr ""
1644
 
1645
+ #: ../admin/settings.php:467
1646
  msgid "This function will not work, cause you need the FreeType library"
1647
  msgstr ""
1648
 
1649
+ #: ../admin/settings.php:469
1650
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
1651
  msgstr ""
1652
 
1653
+ #: ../admin/settings.php:473
1654
  msgid "Size"
1655
  msgstr ""
1656
 
1657
+ #: ../admin/settings.php:477
1658
  msgid "Color"
1659
  msgstr ""
1660
 
1661
+ #: ../admin/settings.php:479
1662
  msgid "(hex w/o #)"
1663
  msgstr ""
1664
 
1665
+ #: ../admin/settings.php:482
1666
  msgid "Text"
1667
  msgstr ""
1668
 
1669
+ #: ../admin/settings.php:486
1670
  msgid "Opaque"
1671
  msgstr ""
1672
 
1673
+ #: ../admin/settings.php:504
1674
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
1675
  msgstr ""
1676
 
1677
+ #: ../admin/settings.php:505
1678
+ msgid "The settings are used in the JW Image Rotator Version 3.13 ."
1679
  msgstr ""
1680
 
1681
+ #: ../admin/settings.php:506
1682
  msgid "See more information for the Flash Player on the web page"
1683
  msgstr ""
1684
 
1685
+ #: ../admin/settings.php:509
1686
  msgid "Default size (W x H)"
1687
  msgstr ""
1688
 
1689
+ #: ../admin/settings.php:514
1690
  msgid "Shuffle mode"
1691
  msgstr ""
1692
 
1693
+ #: ../admin/settings.php:518
1694
  msgid "Show next image on click"
1695
  msgstr ""
1696
 
1697
+ #: ../admin/settings.php:522
1698
  msgid "Show navigation bar"
1699
  msgstr ""
1700
 
1701
+ #: ../admin/settings.php:526
1702
  msgid "Show loading icon"
1703
  msgstr ""
1704
 
1705
+ #: ../admin/settings.php:530
1706
  msgid "Use watermark logo"
1707
  msgstr ""
1708
 
1709
+ #: ../admin/settings.php:532
1710
  msgid "You can change the logo at the watermark settings"
1711
  msgstr ""
1712
 
1713
+ #: ../admin/settings.php:535
1714
  msgid "Stretch image"
1715
  msgstr ""
1716
 
1717
+ #: ../admin/settings.php:538
1718
  msgid "true"
1719
  msgstr ""
1720
 
1721
+ #: ../admin/settings.php:539
1722
  msgid "false"
1723
  msgstr ""
1724
 
1725
+ #: ../admin/settings.php:540
1726
  msgid "fit"
1727
  msgstr ""
1728
 
1729
+ #: ../admin/settings.php:541
1730
  msgid "none"
1731
  msgstr ""
1732
 
1733
+ #: ../admin/settings.php:546
1734
  msgid "Duration time"
1735
  msgstr ""
1736
 
1737
+ #: ../admin/settings.php:547
1738
  msgid "sec."
1739
  msgstr ""
1740
 
1741
+ #: ../admin/settings.php:550
1742
  msgid "Transition / Fade effect"
1743
  msgstr ""
1744
 
1745
+ #: ../admin/settings.php:553
1746
  msgid "fade"
1747
  msgstr ""
1748
 
1749
+ #: ../admin/settings.php:554
1750
  msgid "bgfade"
1751
  msgstr ""
1752
 
1753
+ #: ../admin/settings.php:555
1754
  msgid "slowfade"
1755
  msgstr ""
1756
 
1757
+ #: ../admin/settings.php:556
1758
  msgid "circles"
1759
  msgstr ""
1760
 
1761
+ #: ../admin/settings.php:557
1762
  msgid "bubbles"
1763
  msgstr ""
1764
 
1765
+ #: ../admin/settings.php:558
1766
  msgid "blocks"
1767
  msgstr ""
1768
 
1769
+ #: ../admin/settings.php:559
1770
  msgid "fluids"
1771
  msgstr ""
1772
 
1773
+ #: ../admin/settings.php:560
1774
  msgid "flash"
1775
  msgstr ""
1776
 
1777
+ #: ../admin/settings.php:561
1778
  msgid "lines"
1779
  msgstr ""
1780
 
1781
+ #: ../admin/settings.php:566
1782
  msgid "Use slow zooming effect"
1783
  msgstr ""
1784
 
1785
+ #: ../admin/settings.php:570
1786
  msgid "Background Color"
1787
  msgstr ""
1788
 
1789
+ #: ../admin/settings.php:575
1790
  msgid "Texts / Buttons Color"
1791
  msgstr ""
1792
 
1793
+ #: ../admin/settings.php:580
1794
  msgid "Rollover / Active Color"
1795
  msgstr ""
1796
 
1797
+ #: ../admin/settings.php:585
1798
+ msgid "Screen Color"
1799
+ msgstr ""
1800
+
1801
+ #: ../admin/settings.php:590
1802
  msgid "Background music (URL)"
1803
  msgstr ""
1804
 
1805
+ #: ../admin/settings.php:594
1806
  msgid "Try XHTML validation (with CDATA)"
1807
  msgstr ""
1808
 
1809
+ #: ../admin/settings.php:596
1810
  msgid "Important : Could causes problem at some browser. Please recheck your page."
1811
  msgstr ""
1812
 
lib/nggallery.lib.php CHANGED
@@ -397,6 +397,9 @@ class nggallery {
397
  $options = get_option($key);
398
  // Get all key/value data for the current post.
399
  $meta_array = get_post_custom();
 
 
 
400
  // assign meta key to db setting key
401
  $meta_tags = array(
402
  'string' => array(
397
  $options = get_option($key);
398
  // Get all key/value data for the current post.
399
  $meta_array = get_post_custom();
400
+ // Ensure that this is a array
401
+ if (!is_array($meta_array))
402
+ $meta_array = array($meta_array);
403
  // assign meta key to db setting key
404
  $meta_tags = array(
405
  'string' => array(
nggallery.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: NextGEN Gallery
4
  Plugin URI: http://alexrabe.boelinger.com/?page_id=80
5
  Description: A NextGENeration Photo gallery for the WEB2.0(beta).
6
  Author: NextGEN DEV-Team
7
- Version: 0.80
8
 
9
  Author URI: http://alexrabe.boelinger.com/
10
 
@@ -48,7 +48,7 @@ define('IS_WPMU', version_compare($wpmu_version, '1.3', '>=') );
48
  if ((version_compare($wp_version, '2.1', '>=')) or (IS_WPMU)){
49
 
50
  // Version and path to check version
51
- define('NGGVERSION', "0.80");
52
  define('NGGURL', "http://nextgen.boelinger.com/version.php");
53
 
54
  // define URL
4
  Plugin URI: http://alexrabe.boelinger.com/?page_id=80
5
  Description: A NextGENeration Photo gallery for the WEB2.0(beta).
6
  Author: NextGEN DEV-Team
7
+ Version: 0.81
8
 
9
  Author URI: http://alexrabe.boelinger.com/
10
 
48
  if ((version_compare($wp_version, '2.1', '>=')) or (IS_WPMU)){
49
 
50
  // Version and path to check version
51
+ define('NGGVERSION', "0.81");
52
  define('NGGURL', "http://nextgen.boelinger.com/version.php");
53
 
54
  // define URL
nggfunctions.php CHANGED
@@ -9,115 +9,136 @@ function searchnggallerytags($content) {
9
  //TODO:Refactor this to a class
10
  $ngg_options = nggallery::get_option('ngg_options');
11
 
12
- $search = "@\[singlepic=(\d+)(|,\d+|,)(|,\d+|,)(|,watermark|,web20|,)(|,right|,left|,)\]@i";
13
-
14
- if (preg_match_all($search, $content, $matches)) {
15
 
16
- if (is_array($matches)) {
17
- foreach ($matches[1] as $key =>$v0) {
18
- // check for correct id
19
- $result = $wpdb->get_var("SELECT filename FROM $wpdb->nggpictures WHERE pid = '$v0' ");
20
- if($result){
21
- $search = $matches[0][$key];
22
- $replace= nggSinglePicture($v0,$matches[2][$key],$matches[3][$key],$matches[4][$key],$matches[5][$key]);
23
- $content= str_replace ($search, $replace, $content);
24
- }
25
- }
 
 
 
 
 
26
  }
27
  }// end singelpic
28
 
29
- $search = "@(?:<p>)*\s*\[album\s*=\s*(\w+|^\+)(|,extend|,compact)\]\s*(?:</p>)*@i";
30
-
31
- if (preg_match_all($search, $content, $matches)) {
32
- if (is_array($matches)) {
33
- foreach ($matches[1] as $key =>$v0) {
34
- // check for album id
35
- $albumID = $wpdb->get_var("SELECT id FROM $wpdb->nggalbum WHERE id = '$v0' ");
36
- if(!$albumID) $albumID = $wpdb->get_var("SELECT id FROM $wpdb->nggalbum WHERE name = '$v0' ");
37
- if($albumID) {
38
- $search = $matches[0][$key];
39
- $replace= nggShowAlbum($albumID,$matches[2][$key]);
40
- $content= str_replace ($search, $replace, $content);
41
- }
42
- }
 
 
 
43
  }
44
  }// end album
45
-
46
- $search = "@(?:<p>)*\s*\[gallery\s*=\s*(\w+|^\+)\]\s*(?:</p>)*@i";
47
 
48
- if (preg_match_all($search, $content, $matches)) {
49
- if (is_array($matches)) {
50
- foreach ($matches[1] as $key =>$v0) {
51
- // check for gallery id
52
- $galleryID = $wpdb->get_var("SELECT gid FROM $wpdb->nggallery WHERE gid = '$v0' ");
53
- if(!$galleryID) $galleryID = $wpdb->get_var("SELECT gid FROM $wpdb->nggallery WHERE name = '$v0' ");
54
- if($galleryID) {
55
- $search = $matches[0][$key];
56
- $replace= nggShowGallery($galleryID);
57
- $content= str_replace ($search, $replace, $content);
58
- }
59
- }
 
 
 
 
 
60
  }
61
  }// end gallery
62
-
63
- $search = "@(?:<p>)*\s*\[imagebrowser\s*=\s*(\w+|^\+)\]\s*(?:</p>)*@i";
64
 
65
- if (preg_match_all($search, $content, $matches)) {
66
- if (is_array($matches)) {
67
- foreach ($matches[1] as $key =>$v0) {
68
- // check for gallery id
69
- $galleryID = $wpdb->get_var("SELECT gid FROM $wpdb->nggallery WHERE gid = '$v0' ");
70
- if(!$galleryID) $galleryID = $wpdb->get_var("SELECT gid FROM $wpdb->nggallery WHERE name = '$v0' ");
71
- if($galleryID) {
72
- $search = $matches[0][$key];
73
- $replace= nggShowImageBrowser($galleryID);
74
- $content= str_replace ($search, $replace, $content);
75
- }
76
- }
 
 
 
 
 
77
  }
78
  }// end gallery
79
 
80
- $search = "@(?:<p>)*\s*\[slideshow\s*=\s*(\w+|^\+)(|,(\d+)|,)(|,(\d+))\]\s*(?:</p>)*@i";
81
-
82
- if (preg_match_all($search, $content, $matches)) {
83
- if (is_array($matches)) {
84
- foreach ($matches[1] as $key =>$v0) {
85
- // check for gallery id
86
- $galleryID = $wpdb->get_var("SELECT gid FROM $wpdb->nggallery WHERE gid = '$v0' ");
87
- if(!$galleryID) $galleryID = $wpdb->get_var("SELECT gid FROM $wpdb->nggallery WHERE name = '$v0' ");
88
- if( $galleryID || $v0 == 0 ) {
89
- $search = $matches[0][$key];
90
- // get the size if they are set
91
- $irWidth = $matches[3][$key];
92
- $irHeight = $matches[5][$key];
93
- $replace= nggShowSlideshow($galleryID,$irWidth,$irHeight);
94
- $content= str_replace ($search, $replace, $content);
95
- }
96
- }
 
 
 
97
  }
98
  }// end slideshow
99
 
100
- $search = "@(?:<p>)*\s*\[tags\s*=\s*(.*?)\s*\]\s*(?:</p>)*@i";
101
-
102
- if (preg_match_all($search, $content, $matches)) {
103
- if (is_array($matches)) {
104
- foreach ($matches[1] as $key =>$v0) {
105
- $search = $matches[0][$key];
106
- $replace= nggShowGalleryTags($v0);
107
- $content= str_replace ($search, $replace, $content);
108
- }
 
 
 
109
  }
110
  }// end gallery tags
111
 
112
- $search = "@(?:<p>)*\s*\[albumtags\s*=\s*(.*?)\s*\]\s*(?:</p>)*@i";
113
 
114
- if (preg_match_all($search, $content, $matches)) {
115
- if (is_array($matches)) {
116
- foreach ($matches[1] as $key =>$v0) {
117
- $search = $matches[0][$key];
118
- $replace= nggShowAlbumTags($v0);
119
- $content= str_replace ($search, $replace, $content);
120
- }
 
 
 
121
  }
122
  }// end album tags
123
 
9
  //TODO:Refactor this to a class
10
  $ngg_options = nggallery::get_option('ngg_options');
11
 
12
+ if ( stristr( $content, '[singlepic' )) {
 
 
13
 
14
+ $search = "@\[singlepic=(\d+)(|,\d+|,)(|,\d+|,)(|,watermark|,web20|,)(|,right|,left|,)\]@i";
15
+
16
+ if (preg_match_all($search, $content, $matches)) {
17
+
18
+ if (is_array($matches)) {
19
+ foreach ($matches[1] as $key =>$v0) {
20
+ // check for correct id
21
+ $result = $wpdb->get_var("SELECT filename FROM $wpdb->nggpictures WHERE pid = '$v0' ");
22
+ if($result){
23
+ $search = $matches[0][$key];
24
+ $replace= nggSinglePicture($v0,$matches[2][$key],$matches[3][$key],$matches[4][$key],$matches[5][$key]);
25
+ $content= str_replace ($search, $replace, $content);
26
+ }
27
+ }
28
+ }
29
  }
30
  }// end singelpic
31
 
32
+ if ( stristr( $content, '[album' )) {
33
+
34
+ $search = "@(?:<p>)*\s*\[album\s*=\s*(\w+|^\+)(|,extend|,compact)\]\s*(?:</p>)*@i";
35
+
36
+ if (preg_match_all($search, $content, $matches)) {
37
+ if (is_array($matches)) {
38
+ foreach ($matches[1] as $key =>$v0) {
39
+ // check for album id
40
+ $albumID = $wpdb->get_var("SELECT id FROM $wpdb->nggalbum WHERE id = '$v0' ");
41
+ if(!$albumID) $albumID = $wpdb->get_var("SELECT id FROM $wpdb->nggalbum WHERE name = '$v0' ");
42
+ if($albumID) {
43
+ $search = $matches[0][$key];
44
+ $replace= nggShowAlbum($albumID,$matches[2][$key]);
45
+ $content= str_replace ($search, $replace, $content);
46
+ }
47
+ }
48
+ }
49
  }
50
  }// end album
 
 
51
 
52
+ if ( stristr( $content, '[gallery' )) {
53
+
54
+ $search = "@(?:<p>)*\s*\[gallery\s*=\s*(\w+|^\+)\]\s*(?:</p>)*@i";
55
+
56
+ if (preg_match_all($search, $content, $matches)) {
57
+ if (is_array($matches)) {
58
+ foreach ($matches[1] as $key =>$v0) {
59
+ // check for gallery id
60
+ $galleryID = $wpdb->get_var("SELECT gid FROM $wpdb->nggallery WHERE gid = '$v0' ");
61
+ if(!$galleryID) $galleryID = $wpdb->get_var("SELECT gid FROM $wpdb->nggallery WHERE name = '$v0' ");
62
+ if($galleryID) {
63
+ $search = $matches[0][$key];
64
+ $replace= nggShowGallery($galleryID);
65
+ $content= str_replace ($search, $replace, $content);
66
+ }
67
+ }
68
+ }
69
  }
70
  }// end gallery
 
 
71
 
72
+ if ( stristr( $content, '[imagebrowser' )) {
73
+
74
+ $search = "@(?:<p>)*\s*\[imagebrowser\s*=\s*(\w+|^\+)\]\s*(?:</p>)*@i";
75
+
76
+ if (preg_match_all($search, $content, $matches)) {
77
+ if (is_array($matches)) {
78
+ foreach ($matches[1] as $key =>$v0) {
79
+ // check for gallery id
80
+ $galleryID = $wpdb->get_var("SELECT gid FROM $wpdb->nggallery WHERE gid = '$v0' ");
81
+ if(!$galleryID) $galleryID = $wpdb->get_var("SELECT gid FROM $wpdb->nggallery WHERE name = '$v0' ");
82
+ if($galleryID) {
83
+ $search = $matches[0][$key];
84
+ $replace= nggShowImageBrowser($galleryID);
85
+ $content= str_replace ($search, $replace, $content);
86
+ }
87
+ }
88
+ }
89
  }
90
  }// end gallery
91
 
92
+ if ( stristr( $content, '[slideshow' )) {
93
+
94
+ $search = "@(?:<p>)*\s*\[slideshow\s*=\s*(\w+|^\+)(|,(\d+)|,)(|,(\d+))\]\s*(?:</p>)*@i";
95
+
96
+ if (preg_match_all($search, $content, $matches)) {
97
+ if (is_array($matches)) {
98
+ foreach ($matches[1] as $key =>$v0) {
99
+ // check for gallery id
100
+ $galleryID = $wpdb->get_var("SELECT gid FROM $wpdb->nggallery WHERE gid = '$v0' ");
101
+ if(!$galleryID) $galleryID = $wpdb->get_var("SELECT gid FROM $wpdb->nggallery WHERE name = '$v0' ");
102
+ if( $galleryID || $v0 == 0 ) {
103
+ $search = $matches[0][$key];
104
+ // get the size if they are set
105
+ $irWidth = $matches[3][$key];
106
+ $irHeight = $matches[5][$key];
107
+ $replace= nggShowSlideshow($galleryID,$irWidth,$irHeight);
108
+ $content= str_replace ($search, $replace, $content);
109
+ }
110
+ }
111
+ }
112
  }
113
  }// end slideshow
114
 
115
+ if ( stristr( $content, '[tags' )) {
116
+
117
+ $search = "@(?:<p>)*\s*\[tags\s*=\s*(.*?)\s*\]\s*(?:</p>)*@i";
118
+
119
+ if (preg_match_all($search, $content, $matches)) {
120
+ if (is_array($matches)) {
121
+ foreach ($matches[1] as $key =>$v0) {
122
+ $search = $matches[0][$key];
123
+ $replace= nggShowGalleryTags($v0);
124
+ $content= str_replace ($search, $replace, $content);
125
+ }
126
+ }
127
  }
128
  }// end gallery tags
129
 
130
+ if ( stristr( $content, '[albumtags' )) {
131
 
132
+ $search = "@(?:<p>)*\s*\[albumtags\s*=\s*(.*?)\s*\]\s*(?:</p>)*@i";
133
+
134
+ if (preg_match_all($search, $content, $matches)) {
135
+ if (is_array($matches)) {
136
+ foreach ($matches[1] as $key =>$v0) {
137
+ $search = $matches[0][$key];
138
+ $replace= nggShowAlbumTags($v0);
139
+ $content= str_replace ($search, $replace, $content);
140
+ }
141
+ }
142
  }
143
  }// end album tags
144