NextGEN Gallery – WordPress Gallery Plugin - Version 0.95

Version Description

Download this release

Release Info

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

Code changes from version 0.94 to 0.95

admin/myimport.php DELETED
@@ -1,89 +0,0 @@
1
- <?php
2
- if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You are not allowed to call this page directly.'); }
3
-
4
- function nggallery_admin_import() {
5
-
6
- global $wpdb;
7
-
8
- $ngg_mygallery = $wpdb->prefix . 'mygallery';
9
- $ngg_mygprelation = $wpdb->prefix . 'mygprelation';
10
- $ngg_mypictures = $wpdb->prefix . 'mypictures';
11
-
12
- // GET variables
13
- $gid = trim(attribute_escape($_GET['gid']));
14
- $mode = trim(attribute_escape($_GET['mode']));
15
-
16
- // do the import
17
- if ($mode == 'import') {
18
-
19
- // load path setting
20
- $mygoptions = get_option('mygalleryoptions');
21
- $mygbasepath = $mygoptions['gallerybasepath'];
22
-
23
- $gallery = $wpdb->get_row("SELECT * FROM $ngg_mygallery WHERE id = '$gid'");
24
- if ($gallery) {
25
- $galleryfolder = $mygbasepath . $gallery->name;
26
- $result = $wpdb->query("INSERT INTO $wpdb->nggallery (name, path, title, galdesc, pageid) VALUES ('$gallery->name', '$galleryfolder', '$gallery->longname', '$gallery->galdescrip' ,'$gallery->pageid') ");
27
- if ($result) {
28
- $newgid = $wpdb->insert_id; // get new index_id
29
- $pictures = $wpdb->get_results("SELECT * FROM $ngg_mypictures, $ngg_mygprelation WHERE $ngg_mygprelation.gid = '$gid' AND $ngg_mypictures.id = $ngg_mygprelation.pid ORDER BY $ngg_mygprelation.pid");
30
- // import each picture
31
- if (is_array($pictures)) {
32
- foreach ($pictures as $picture) {
33
- $wpdb->query("INSERT INTO $wpdb->nggpictures (galleryid, filename, description, alttext, exclude) VALUES ('$newgid', '$picture->picturepath', '$picture->description', '$picture->alttitle' ,'$picture->picexclude') ");
34
- }
35
- nggallery::show_message(__('Gallery ',"nggallery"). $gallery->name . __(' : Import successfull',"nggallery"));
36
- }
37
- } else {
38
- nggallery::show_error(__('Database error. Could not add gallery!',"nggallery"));
39
- }
40
- }
41
- }
42
-
43
- ?>
44
- <div class="wrap">
45
- <h2><?php _e('myGallery Import', 'nggallery') ?></h2>
46
- <table id="the-list-x" width="100%" cellspacing="3" cellpadding="3" >
47
- <thead>
48
- <tr>
49
- <th scope="col" ><?php _e('ID') ?></th>
50
- <th scope="col" ><?php _e('Gallery name', 'nggallery') ?></th>
51
- <th scope="col" ><?php _e('Title', 'nggallery') ?></th>
52
- <th scope="col" ><?php _e('Description', 'nggallery') ?></th>
53
- <th scope="col" ><?php _e('Page ID', 'nggallery') ?></th>
54
- <th scope="col" ><?php _e('Quantity', 'nggallery') ?></th>
55
- <th scope="col" ><?php _e('Action'); ?></th>
56
- </tr>
57
- </thead>
58
- <tbody>
59
- <?php
60
- $gallerylist = $wpdb->get_results("SELECT * FROM $ngg_mygallery ORDER BY id ASC");
61
- if($gallerylist) {
62
- foreach($gallerylist as $gallery) {
63
- $class = ( $class == 'class="alternate"' ) ? '' : 'class="alternate"';
64
- $gid = $gallery->id;
65
- $counter = $wpdb->get_var("SELECT COUNT(*) FROM $ngg_mygprelation WHERE gid = '$gid'");
66
- ?>
67
- <tr id="gallery-<?php echo $gid ?>" <?php echo $class; ?> style="text-align:center">
68
- <th scope="row" style="text-align: center"><?php echo $gid; ?></th>
69
- <td><?php echo $gallery->name; ?></td>
70
- <td><?php echo $gallery->longname; ?></td>
71
- <td><?php echo $gallery->galdescrip; ?></td>
72
- <td><?php echo $gallery->pageid; ?></td>
73
- <td><?php echo $counter; ?></td>
74
- <td><a href="admin.php?page=nggallery-import&amp;mode=import&amp;gid=<?php echo $gid; ?>" class="edit" onclick="javascript:check=confirm( '<?php _e("Import this gallery ?",'nggallery')?>');if(check==false) return false;"><?php _e('Import','nggallery') ?></a></td>
75
- </tr>
76
- <?php
77
- }
78
- } else {
79
- echo '<tr><td colspan="7" align="center"><strong>'.__('No entries found','nggallery').'</strong></td></tr>';
80
- }
81
- ?>
82
- </tbody>
83
- </table>
84
- </div>
85
- <?php
86
-
87
- }
88
-
89
- ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/wp25/about.php CHANGED
@@ -28,7 +28,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
28
  <p><?php _e('There exist several ways to contribute, help or support us in this work. Non of them are mandatory.', 'nggallery') ;?></p>
29
  <ul>
30
  <li><strong><?php _e('Send us bugfixes / code changes', 'nggallery') ;?></strong><br /><?php _e('The most motivated support for this plugin are your ideas and brain work', 'nggallery') ;?></li>
31
- <li><strong><?php _e('Translate the plugin', 'nggallery') ;?></strong><br /><?php _e('To help people to work with this plugin, I would like to have it in all avaivable languages', 'nggallery') ;?></li>
32
  <li><strong><?php _e('Donate the work via paypal', 'nggallery') ;?></strong><br />
33
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post" >
34
  <input type="hidden" name="cmd" value="_xclick"/><input type="hidden" name="business" value="alterego@boelinger.com"/>
@@ -40,7 +40,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
40
  <input type="hidden" name="tax" value="0"/>
41
  <input type="hidden" name="bn" value="PP-DonationsBF"/>
42
  <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" name="submit" alt="Make payments with PayPal - it's fast, free and secure!" style="border: none;"/>
43
- </form><?php _e('No doubt a very usefull and easy motivation :-)', 'nggallery') ;?>
44
  </li>
45
  <li><strong><?php _e('Place a link to the plugin in your blog/webpage', 'nggallery') ;?></strong><br /><?php _e('Yes, share and trackback is also a good support for this work ', 'nggallery') ;?></li>
46
  </ul>
28
  <p><?php _e('There exist several ways to contribute, help or support us in this work. Non of them are mandatory.', 'nggallery') ;?></p>
29
  <ul>
30
  <li><strong><?php _e('Send us bugfixes / code changes', 'nggallery') ;?></strong><br /><?php _e('The most motivated support for this plugin are your ideas and brain work', 'nggallery') ;?></li>
31
+ <li><strong><?php _e('Translate the plugin', 'nggallery') ;?></strong><br /><?php _e('To help people to work with this plugin, I would like to have it in all available languages', 'nggallery') ;?></li>
32
  <li><strong><?php _e('Donate the work via paypal', 'nggallery') ;?></strong><br />
33
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post" >
34
  <input type="hidden" name="cmd" value="_xclick"/><input type="hidden" name="business" value="alterego@boelinger.com"/>
40
  <input type="hidden" name="tax" value="0"/>
41
  <input type="hidden" name="bn" value="PP-DonationsBF"/>
42
  <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" name="submit" alt="Make payments with PayPal - it's fast, free and secure!" style="border: none;"/>
43
+ </form><?php _e('No doubt a very useful and easy motivation :-)', 'nggallery') ;?>
44
  </li>
45
  <li><strong><?php _e('Place a link to the plugin in your blog/webpage', 'nggallery') ;?></strong><br /><?php _e('Yes, share and trackback is also a good support for this work ', 'nggallery') ;?></li>
46
  </ul>
admin/wp25/media-upload.php CHANGED
@@ -105,9 +105,9 @@ function media_upload_nextgen_form($errors) {
105
  ?>
106
 
107
  <form id="filter" action="" method="get">
108
- <input type="hidden" name="type" value="<?php echo $type; ?>" />
109
- <input type="hidden" name="tab" value="<?php echo $tab; ?>" />
110
- <input type="hidden" name="post_id" value="<?php echo $post_id; ?>" />
111
 
112
  <div class="tablenav">
113
  <?php
@@ -123,8 +123,8 @@ function media_upload_nextgen_form($errors) {
123
  ?>
124
 
125
  <div class="alignleft">
126
- <select id="select_gal" name="select_gal">;
127
- <option value="0" <?php selected('0', $galleryID); ?> ><?php _e('No gallery',"nggallery"); ?></option>
128
  <?php
129
  // Show gallery selection
130
  $gallerylist = $wpdb->get_results("SELECT * FROM $wpdb->nggallery ORDER BY gid ASC");
@@ -136,7 +136,7 @@ function media_upload_nextgen_form($errors) {
136
  }
137
  ?>
138
  </select>
139
- <input type="submit" id="show-gallery" value="<?php _e('Select Gallery &#187;','nggallery'); ?>" class="button-secondary" />
140
  </div>
141
  <br style="clear:both;" />
142
  </div>
@@ -167,49 +167,48 @@ function media_upload_nextgen_form($errors) {
167
  ?>
168
  <div id='media-item-<?php echo $picid ?>' class='media-item preloaded'>
169
  <div class='filename'></div>
170
- <img class='pinkynail toggle' alt='<?php echo stripslashes($picture->alttext) ?>' src='<?php echo $picture->thumbPath ?>' />
171
- <a class='toggle describe-toggle-on' href='#'><?php _e('Show',"nggallery") ?></a>
172
- <a class='toggle describe-toggle-off' href='#'><?php _e('Hide',"nggallery") ?></a>
173
  <div class='filename new'><?php echo ( empty($picture->alttext) ) ? $picture->filename : stripslashes($picture->alttext); ?></div>
174
  <table class='slidetoggle describe startclosed'><tbody>
175
  <tr>
176
- <td rowspan='4'><img class='thumbnail' alt='<?php echo $picture->alttext ?>' src='<?php echo $picture->thumbPath ?>'/></td>
177
- <td><?php _e('Image ID:',"nggallery") ?><?php echo $picid ?></td>
178
  </tr>
179
- <tr><td><?php echo $picture->filename ?></td></tr>
180
- <tr><td><?php echo stripslashes($picture->alttext) ?></td></tr>
181
  <tr><td>&nbsp;</td></tr>
182
  <tr>
183
- <td class="label"><label for="image[<?php echo $picid ?>][alttext]"><?php _e("Alt/Titel text","nggallery") ?></label></td>
184
- <td class="field"><input id="image[<?php echo $picid ?>][alttext]" name="image[<?php echo $picid ?>][alttext]" value="<?php echo stripslashes($picture->alttext) ?>" type="text"/></td>
185
  </tr>
186
  <tr>
187
- <td class="label"><label for="image[<?php echo $picid ?>][description]"><?php _e("Description","nggallery") ?></label></td>
188
- <td class="field"><textarea name="image[<?php echo $picid ?>][description]" id="image[<?php echo $picid ?>][description]"><?php echo stripslashes($picture->description) ?></textarea></td>
189
  </tr>
190
  <tr class="align">
191
- <td class="label"><label for="image[<?php echo $picid ?>][align]"><?php _e("Alignment") ?></label></td>
192
  <td class="field">
193
  <input name="image[<?php echo $picid ?>][align]" id="image-align-none-<?php echo $picid ?>" checked="checked" value="none" type="radio" />
194
- <label for="image-align-none-<?php echo $picid ?>" class="align image-align-none-label"><?php _e("None") ?></label>
195
  <input name="image[<?php echo $picid ?>][align]" id="image-align-left-<?php echo $picid ?>" value="left" type="radio" />
196
- <label for="image-align-left-<?php echo $picid ?>" class="align image-align-left-label"><?php _e("Left") ?></label>
197
  <input name="image[<?php echo $picid ?>][align]" id="image-align-center-<?php echo $picid ?>" value="center" type="radio" />
198
- <label for="image-align-center-<?php echo $picid ?>" class="align image-align-center-label"><?php _e("Center") ?></label>
199
  <input name="image[<?php echo $picid ?>][align]" id="image-align-right-<?php echo $picid ?>" value="right" type="radio" />
200
- <label for="image-align-right-<?php echo $picid ?>" class="align image-align-right-label"><?php _e("Right") ?></label>
201
  </td>
202
  </tr>
203
  <tr class="image-size">
204
- <th class="label"><label for="image[<?php echo $picid ?>][size]"><span class="alignleft"><?php _e("Size") ?></span></label>
205
  </th>
206
  <td class="field">
207
  <input name="image[<?php echo $picid ?>][size]" id="image-size-thumb-<?php echo $picid ?>" type="radio" checked="checked" value="thumbnail" />
208
- <label for="image-size-thumb-<?php echo $picid ?>"><?php _e("Thumbnail") ?></label>
209
  <input name="image[<?php echo $picid ?>][size]" id="image-size-full-<?php echo $picid ?>" type="radio" value="full" />
210
- <label for="image-size-full-<?php echo $picid ?>"><?php _e("Full size") ?></label>
211
  <input name="image[<?php echo $picid ?>][size]" id="image-size-singlepic-<?php echo $picid ?>" type="radio" value="singlepic" />
212
- <label for="image-size-singlepic-<?php echo $picid ?>"><?php _e("Singlepic", "nggallery") ?></label>
213
  </td>
214
  </tr>
215
  <tr class="submit">
@@ -217,7 +216,7 @@ function media_upload_nextgen_form($errors) {
217
  <input type="hidden" name="image[<?php echo $picid ?>][thumb]" value="<?php echo $picture->thumbPath ?>" />
218
  <input type="hidden" name="image[<?php echo $picid ?>][url]" value="<?php echo $picture->imagePath ?>" />
219
  </td>
220
- <td class="savesend"><button type="submit" class="button" value="1" name="send[<?php echo $picid ?>]"><?php echo attribute_escape(__('Insert into Post')) ?></button></td>
221
  </tr>
222
  </tbody></table>
223
  </div>
@@ -226,9 +225,9 @@ function media_upload_nextgen_form($errors) {
226
  }
227
  ?>
228
  </div>
229
- <input type="submit" class="button savebutton" name="save" value="<?php _e('Save all changes','nggallery'); ?>" />
230
- <input type="hidden" name="post_id" id="post_id" value="<?php echo $post_id; ?>" />
231
- <input type="hidden" name="select_gal" id="select_gal" value="<?php echo $galleryID; ?>" />
232
  </form>
233
 
234
  <?php
105
  ?>
106
 
107
  <form id="filter" action="" method="get">
108
+ <input type="hidden" name="type" value="<?php echo attribute_escape( $GLOBALS['type'] ); ?>" />
109
+ <input type="hidden" name="tab" value="<?php echo attribute_escape( $GLOBALS['tab'] ); ?>" />
110
+ <input type="hidden" name="post_id" value="<?php echo (int) $post_id; ?>" />
111
 
112
  <div class="tablenav">
113
  <?php
123
  ?>
124
 
125
  <div class="alignleft">
126
+ <select id="select_gal" name="select_gal">
127
+ <option value="0" <?php selected('0', $galleryID); ?> ><?php attribute_escape( _e('No gallery',"nggallery") ); ?></option>
128
  <?php
129
  // Show gallery selection
130
  $gallerylist = $wpdb->get_results("SELECT * FROM $wpdb->nggallery ORDER BY gid ASC");
136
  }
137
  ?>
138
  </select>
139
+ <input type="submit" id="show-gallery" value="<?php attribute_escape( _e('Select Gallery &#187;','nggallery') ); ?>" class="button-secondary" />
140
  </div>
141
  <br style="clear:both;" />
142
  </div>
167
  ?>
168
  <div id='media-item-<?php echo $picid ?>' class='media-item preloaded'>
169
  <div class='filename'></div>
170
+ <a class='toggle describe-toggle-on' href='#'><?php attribute_escape( _e('Show',"nggallery") ); ?></a>
171
+ <a class='toggle describe-toggle-off' href='#'><?php attribute_escape( _e('Hide',"nggallery") );?></a>
 
172
  <div class='filename new'><?php echo ( empty($picture->alttext) ) ? $picture->filename : stripslashes($picture->alttext); ?></div>
173
  <table class='slidetoggle describe startclosed'><tbody>
174
  <tr>
175
+ <td rowspan='4'><img class='thumbnail' alt='<?php echo attribute_escape( $picture->alttext ); ?>' src='<?php echo attribute_escape( $picture->thumbPath ); ?>'/></td>
176
+ <td><?php attribute_escape( _e('Image ID:',"nggallery") ); ?><?php echo $picid ?></td>
177
  </tr>
178
+ <tr><td><?php echo attribute_escape( $picture->filename ); ?></td></tr>
179
+ <tr><td><?php echo attribute_escape( stripslashes($picture->alttext) ); ?></td></tr>
180
  <tr><td>&nbsp;</td></tr>
181
  <tr>
182
+ <td class="label"><label for="image[<?php echo $picid ?>][alttext]"><?php attribute_escape( _e("Alt/Title text","nggallery") );?></label></td>
183
+ <td class="field"><input id="image[<?php echo $picid ?>][alttext]" name="image[<?php echo $picid ?>][alttext]" value="<?php echo attribute_escape( stripslashes($picture->alttext) ); ?>" type="text"/></td>
184
  </tr>
185
  <tr>
186
+ <td class="label"><label for="image[<?php echo $picid ?>][description]"><?php attribute_escape( _e("Description","nggallery") ); ?></label></td>
187
+ <td class="field"><textarea name="image[<?php echo $picid ?>][description]" id="image[<?php echo $picid ?>][description]"><?php echo attribute_escape( stripslashes($picture->description) ); ?></textarea></td>
188
  </tr>
189
  <tr class="align">
190
+ <td class="label"><label for="image[<?php echo $picid ?>][align]"><?php attribute_escape( _e("Alignment") ); ?></label></td>
191
  <td class="field">
192
  <input name="image[<?php echo $picid ?>][align]" id="image-align-none-<?php echo $picid ?>" checked="checked" value="none" type="radio" />
193
+ <label for="image-align-none-<?php echo $picid ?>" class="align image-align-none-label"><?php attribute_escape( _e("None") );?></label>
194
  <input name="image[<?php echo $picid ?>][align]" id="image-align-left-<?php echo $picid ?>" value="left" type="radio" />
195
+ <label for="image-align-left-<?php echo $picid ?>" class="align image-align-left-label"><?php attribute_escape( _e("Left") );?></label>
196
  <input name="image[<?php echo $picid ?>][align]" id="image-align-center-<?php echo $picid ?>" value="center" type="radio" />
197
+ <label for="image-align-center-<?php echo $picid ?>" class="align image-align-center-label"><?php attribute_escape( _e("Center") );?></label>
198
  <input name="image[<?php echo $picid ?>][align]" id="image-align-right-<?php echo $picid ?>" value="right" type="radio" />
199
+ <label for="image-align-right-<?php echo $picid ?>" class="align image-align-right-label"><?php attribute_escape( _e("Right") );?></label>
200
  </td>
201
  </tr>
202
  <tr class="image-size">
203
+ <th class="label"><label for="image[<?php echo $picid ?>][size]"><span class="alignleft"><?php attribute_escape( _e("Size") ); ?></span></label>
204
  </th>
205
  <td class="field">
206
  <input name="image[<?php echo $picid ?>][size]" id="image-size-thumb-<?php echo $picid ?>" type="radio" checked="checked" value="thumbnail" />
207
+ <label for="image-size-thumb-<?php echo $picid ?>"><?php attribute_escape( _e("Thumbnail") ); ?></label>
208
  <input name="image[<?php echo $picid ?>][size]" id="image-size-full-<?php echo $picid ?>" type="radio" value="full" />
209
+ <label for="image-size-full-<?php echo $picid ?>"><?php attribute_escape( _e("Full size") ); ?></label>
210
  <input name="image[<?php echo $picid ?>][size]" id="image-size-singlepic-<?php echo $picid ?>" type="radio" value="singlepic" />
211
+ <label for="image-size-singlepic-<?php echo $picid ?>"><?php attribute_escape( _e("Singlepic", "nggallery") ); ?></label>
212
  </td>
213
  </tr>
214
  <tr class="submit">
216
  <input type="hidden" name="image[<?php echo $picid ?>][thumb]" value="<?php echo $picture->thumbPath ?>" />
217
  <input type="hidden" name="image[<?php echo $picid ?>][url]" value="<?php echo $picture->imagePath ?>" />
218
  </td>
219
+ <td class="savesend"><button type="submit" class="button" value="1" name="send[<?php echo $picid ?>]"><?php echo attribute_escape( __('Insert into Post') ); ?></button></td>
220
  </tr>
221
  </tbody></table>
222
  </div>
225
  }
226
  ?>
227
  </div>
228
+ <input type="submit" class="button savebutton" name="save" value="<?php attribute_escape( _e('Save all changes','nggallery') ); ?>" />
229
+ <input type="hidden" name="post_id" id="post_id" value="<?php echo (int) $post_id; ?>" />
230
+ <input type="hidden" name="select_gal" id="select_gal" value="<?php echo (int) $galleryID; ?>" />
231
  </form>
232
 
233
  <?php
changelog.txt CHANGED
@@ -1,6 +1,12 @@
1
  NextGEN Gallery
2
  by Alex Rabe & NextGEN DEV Team
3
 
 
 
 
 
 
 
4
  V0.94 - 20.04.2008
5
  - Added : New filter option ngg_create_gallery_link
6
  - Changed : Reduce amount of DB queries in albums (Big THX to Alexandr Kindras)
1
  NextGEN Gallery
2
  by Alex Rabe & NextGEN DEV Team
3
 
4
+ V0.95 - 25.04.2008
5
+ - Bugfix : Correction in media-upload to fit with Wordpress 2.5.1
6
+ - Bugfix : Attribute_escape all objects in media-upload
7
+ - Bugfix : Correct sortorder for albums
8
+ - Bugfix : Typo correction (THX to Momo-I)
9
+
10
  V0.94 - 20.04.2008
11
  - Added : New filter option ngg_create_gallery_link
12
  - Changed : Reduce amount of DB queries in albums (Big THX to Alexandr Kindras)
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-03-18 19:54+0100\n"
6
  "Last-Translator: Alex Rabe\n"
7
  "Language-Team: Alex Rabe\n"
8
  "MIME-Version: 1.0\n"
@@ -19,26 +19,30 @@ 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:425
23
- #: ../nggfunctions.php:440
 
 
 
 
24
  msgid "Watch gallery"
25
  msgstr "Galerie ansehen"
26
 
27
- #: ../nggfunctions.php:434
28
- #: ../nggfunctions.php:446
29
- #: ../nggfunctions.php:729
30
  msgid "Photos"
31
  msgstr "Fotos"
32
 
33
- #: ../nggfunctions.php:521
34
  msgid "Back"
35
  msgstr "Zurück"
36
 
37
- #: ../nggfunctions.php:525
38
  msgid "Next"
39
  msgstr "Vor"
40
 
41
- #: ../nggfunctions.php:528
42
  #: ../admin/manage.php:85
43
  #: ../admin/wp25/manage.php:85
44
  #: ../tinymce/window.php:37
@@ -46,11 +50,11 @@ msgstr "Vor"
46
  msgid "Picture"
47
  msgstr "Bild"
48
 
49
- #: ../nggfunctions.php:528
50
  msgid "from"
51
  msgstr "von"
52
 
53
- #: ../nggfunctions.php:699
54
  msgid "Overview"
55
  msgstr "Übersicht"
56
 
@@ -70,99 +74,99 @@ msgstr "[Zeige als Diashow]"
70
  msgid "[Show picture list]"
71
  msgstr "[Zeige Bilder-Liste]"
72
 
73
- #: ../nggwidget.php:118
74
  msgid "Title:"
75
  msgstr "Titel:"
76
 
77
- #: ../nggwidget.php:119
78
  msgid "Select Gallery:"
79
  msgstr "Wähle Galerie"
80
 
81
- #: ../nggwidget.php:123
82
  msgid "All images"
83
  msgstr "Alle Bilder"
84
 
85
- #: ../nggwidget.php:133
86
  msgid "Height:"
87
  msgstr "Höhe:"
88
 
89
- #: ../nggwidget.php:134
90
  msgid "Width:"
91
  msgstr "Breite:"
92
 
93
- #: ../nggwidget.php:188
94
  #, php-format
95
  msgid "NextGEN Gallery %d"
96
  msgstr "NextGEN Gallery %d"
97
 
98
- #: ../nggwidget.php:204
99
  msgid "NextGEN Gallery Widgets"
100
  msgstr "NextGEN Gallery Widgets"
101
 
102
- #: ../nggwidget.php:205
103
  msgid "How many NextGEN Gallery widgets would you like?"
104
  msgstr "Wie viele NextGEN Gallery Widgets möchtest du haben ?"
105
 
106
- #: ../nggwidget.php:209
107
  #: ../admin/uploadtab.php:193
108
  msgid "Save"
109
  msgstr "Speichern"
110
 
111
- #: ../nggwidget.php:301
112
  msgid "Title :"
113
  msgstr "Titel :"
114
 
115
- #: ../nggwidget.php:306
116
  msgid "Show :"
117
  msgstr "Zeige als :"
118
 
119
- #: ../nggwidget.php:311
120
- #: ../admin/settings.php:104
121
- #: ../admin/settings.php:297
122
  #: ../admin/wp25/settings.php:99
123
  #: ../admin/wp25/settings.php:285
124
  msgid "Thumbnails"
125
  msgstr "Thumbnails"
126
 
127
- #: ../nggwidget.php:312
128
  msgid "Orginal images"
129
  msgstr "Orginal Bilder"
130
 
131
- #: ../nggwidget.php:318
132
- #: ../admin/settings.php:562
133
  #: ../admin/wp25/settings.php:542
134
  msgid "random"
135
  msgstr "Zufall"
136
 
137
- #: ../nggwidget.php:319
138
  msgid "recent added "
139
  msgstr "zuletzt hinzugefügt"
140
 
141
- #: ../nggwidget.php:323
142
  msgid "Width x Height :"
143
  msgstr "Breite x Höhe :"
144
 
145
- #: ../nggwidget.php:329
146
  msgid "Select :"
147
  msgstr "Wähle :"
148
 
149
- #: ../nggwidget.php:331
150
  msgid "All galleries"
151
  msgstr "Alle Galerien"
152
 
153
- #: ../nggwidget.php:332
154
  msgid "Only which are not listed"
155
  msgstr "Nur ungelistete"
156
 
157
- #: ../nggwidget.php:333
158
  msgid "Only which are listed"
159
  msgstr "Nur gelistete"
160
 
161
- #: ../nggwidget.php:338
162
  msgid "Gallery ID :"
163
  msgstr "Galerie ID :"
164
 
165
- #: ../nggwidget.php:340
166
  msgid "Gallery IDs, separated by commas."
167
  msgstr "Galerie ID's, mit Kommas getrennt"
168
 
@@ -272,7 +276,6 @@ msgid "Translate the plugin"
272
  msgstr "Übersetze das Plugin"
273
 
274
  #: ../admin/about.php:32
275
- #: ../admin/wp25/about.php:31
276
  msgid "To help people to work with this plugin, I would like to have it in all avaivable languages"
277
  msgstr "Um jedem das Arbeiten mit diesem Plugin zu vereinfachen würde ich es gerne in allen verfügbaren Sprachen anbieten"
278
 
@@ -282,7 +285,6 @@ msgid "Donate the work via paypal"
282
  msgstr "Zeig Dich für diese Arbeit per PayPal dankbar"
283
 
284
  #: ../admin/about.php:44
285
- #: ../admin/wp25/about.php:43
286
  msgid "No doubt a very usefull and easy motivation :-)"
287
  msgstr "Kein Zweifel, eine schöne und simple Motivationshilfe"
288
 
@@ -322,185 +324,185 @@ msgstr "Upload fehlgeschlagen!"
322
  msgid "No gallery selected !"
323
  msgstr "Keine Galerie ausgewählt !"
324
 
325
- #: ../admin/addgallery.php:114
326
- #: ../admin/wp25/addgallery.php:106
327
  msgid "Image Files"
328
  msgstr "Bilder"
329
 
330
- #: ../admin/addgallery.php:134
331
- #: ../admin/addgallery.php:164
332
- #: ../admin/wp25/addgallery.php:125
333
- #: ../admin/wp25/addgallery.php:155
334
  msgid "remove"
335
  msgstr "Entfernen"
336
 
337
- #: ../admin/addgallery.php:135
338
- #: ../admin/wp25/addgallery.php:126
339
  msgid "Browse..."
340
  msgstr "Durchsuche..."
341
 
342
- #: ../admin/addgallery.php:136
343
- #: ../admin/addgallery.php:314
344
- #: ../admin/wp25/addgallery.php:127
345
- #: ../admin/wp25/addgallery.php:298
346
  msgid "Upload images"
347
  msgstr "Bilder hochladen"
348
 
349
- #: ../admin/addgallery.php:180
350
- #: ../admin/addgallery.php:192
351
- #: ../admin/wp25/addgallery.php:171
352
- #: ../admin/wp25/addgallery.php:183
353
  msgid "Add new gallery"
354
  msgstr "Neue Galerie erstellen"
355
 
356
- #: ../admin/addgallery.php:182
357
- #: ../admin/addgallery.php:213
358
- #: ../admin/wp25/addgallery.php:173
359
- #: ../admin/wp25/addgallery.php:202
360
  msgid "Upload a Zip-File"
361
  msgstr "Zip-Datei hochladen"
362
 
363
- #: ../admin/addgallery.php:185
364
- #: ../admin/addgallery.php:253
365
- #: ../admin/wp25/addgallery.php:176
366
- #: ../admin/wp25/addgallery.php:240
367
  msgid "Import image folder"
368
  msgstr "Bilder-Verzeichnis importieren"
369
 
370
- #: ../admin/addgallery.php:187
371
- #: ../admin/addgallery.php:277
372
- #: ../admin/wp25/addgallery.php:178
373
- #: ../admin/wp25/addgallery.php:262
374
  msgid "Upload Images"
375
  msgstr "Bilder hochladen"
376
 
377
- #: ../admin/addgallery.php:198
378
- #: ../admin/wp25/addgallery.php:188
379
  msgid "New Gallery"
380
  msgstr "Neue Galerie"
381
 
382
- #: ../admin/addgallery.php:201
383
- #: ../admin/wp25/addgallery.php:191
384
  msgid "Create a new , empty gallery below the folder"
385
  msgstr "Erstelle eine neue, leere Galerie unter dem Verzeichnis"
386
 
387
- #: ../admin/addgallery.php:203
388
- #: ../admin/wp25/addgallery.php:193
389
  msgid "Allowed characters for file and folder names are"
390
  msgstr "Erlaubte Charaktere für die Datei- und Verzeichnisnamen sind"
391
 
392
- #: ../admin/addgallery.php:206
393
- #: ../admin/wp25/addgallery.php:196
394
  msgid "Add gallery"
395
  msgstr "Galerie hinzufügen"
396
 
397
- #: ../admin/addgallery.php:219
398
- #: ../admin/wp25/addgallery.php:207
399
  msgid "Select Zip-File"
400
  msgstr "Wähle Zip-Datei"
401
 
402
- #: ../admin/addgallery.php:221
403
- #: ../admin/wp25/addgallery.php:209
404
  msgid "Upload a zip file with images"
405
  msgstr "Lade eine Zip-Datei mit Bildern hoch"
406
 
407
- #: ../admin/addgallery.php:224
408
- #: ../admin/addgallery.php:287
409
- #: ../admin/wp25/addgallery.php:212
410
- #: ../admin/wp25/addgallery.php:271
411
  msgid "in to"
412
  msgstr "in"
413
 
414
- #: ../admin/addgallery.php:226
415
- #: ../admin/wp25/addgallery.php:214
416
  msgid "a new gallery"
417
  msgstr "eine neue Galerie"
418
 
419
- #: ../admin/addgallery.php:236
420
- #: ../admin/addgallery.php:299
421
- #: ../admin/wp25/addgallery.php:224
422
- #: ../admin/wp25/addgallery.php:283
423
  msgid "Note : The upload limit on your server is "
424
  msgstr "Hinweis : Das Upload-Limit auf dem Server beträgt "
425
 
426
- #: ../admin/addgallery.php:240
427
- #: ../admin/addgallery.php:265
428
- #: ../admin/addgallery.php:303
429
- #: ../admin/wp25/addgallery.php:228
430
- #: ../admin/wp25/addgallery.php:251
431
- #: ../admin/wp25/addgallery.php:287
432
  msgid "Add Metadata :"
433
  msgstr "Metadaten hinzufügen :"
434
 
435
- #: ../admin/addgallery.php:242
436
- #: ../admin/addgallery.php:267
437
- #: ../admin/addgallery.php:305
438
- #: ../admin/wp25/addgallery.php:230
439
- #: ../admin/wp25/addgallery.php:253
440
- #: ../admin/wp25/addgallery.php:289
441
  msgid "Import EXIF, IPTC or XMP data (if available)"
442
  msgstr "EXIF, IPTC oder XMP Daten importieren (wenn verfügbar)"
443
 
444
- #: ../admin/addgallery.php:245
445
- #: ../admin/wp25/addgallery.php:233
446
  msgid "Start upload"
447
  msgstr "Upload starten"
448
 
449
- #: ../admin/addgallery.php:259
450
- #: ../admin/wp25/addgallery.php:245
451
  msgid "Import from Server path:"
452
  msgstr "Importieren aus Server-Pfad:"
453
 
454
- #: ../admin/addgallery.php:261
455
  msgid "Import a folder with images. Please note :"
456
  msgstr "Importiere ein Verzeichniss mit Bildern. Bitte beachte:"
457
 
458
- #: ../admin/addgallery.php:262
459
  msgid "For safe-mode = ON you need to add the subfolder thumbs manually"
460
  msgstr "Da der Safe-Mode (PHP.INI) eingeschaltet ist, mußt Du das Unterverzeichnis für die Vorschaubilder (\"thumbs\") manuell (per FTP) anlegen"
461
 
462
- #: ../admin/addgallery.php:270
463
- #: ../admin/wp25/addgallery.php:256
464
  msgid "Import folder"
465
  msgstr "Verzeichnis importieren"
466
 
467
- #: ../admin/addgallery.php:283
468
- #: ../admin/wp25/addgallery.php:267
469
  msgid "Upload image"
470
  msgstr "Bild hochladen"
471
 
472
- #: ../admin/addgallery.php:289
473
- #: ../admin/wp25/addgallery.php:273
474
  msgid "Choose gallery"
475
  msgstr "Wähle Galerie"
476
 
477
- #: ../admin/addgallery.php:310
478
- #: ../admin/wp25/addgallery.php:294
479
  msgid "The batch upload requires Adobe Flash 9, disable it if you have problems"
480
  msgstr "Das Batch-Upload-Skript benötigt Adbode Flash 9, wenn es Probleme gibt deaktiviere es besser."
481
 
482
- #: ../admin/addgallery.php:310
483
- #: ../admin/wp25/addgallery.php:294
484
  msgid "Disable flash upload"
485
  msgstr "Deaktiviere Batch-Upload"
486
 
487
- #: ../admin/addgallery.php:312
488
- #: ../admin/wp25/addgallery.php:296
489
  msgid "Upload multiple files at once by ctrl/shift-selecting in dialog"
490
  msgstr "Wähle im Dialog mit Ctrl/Shift mehrere Bilder gleichzeitig aus."
491
 
492
- #: ../admin/addgallery.php:312
493
- #: ../admin/wp25/addgallery.php:296
494
  msgid "Enable flash based upload"
495
  msgstr "Aktiviere Flash Batch Uplaod"
496
 
497
- #: ../admin/admin.php:64
498
  #: ../admin/functions.php:78
499
  #: ../admin/functions.php:82
500
  #: ../admin/functions.php:128
501
  #: ../admin/manage.php:64
502
  #: ../admin/manage.php:434
503
- #: ../admin/settings.php:106
504
  #: ../admin/uploadtab.php:36
505
  #: ../admin/wp25/admin.php:72
506
  #: ../admin/wp25/functions.php:78
@@ -514,59 +516,59 @@ msgstr "Aktiviere Flash Batch Uplaod"
514
  msgid "Gallery"
515
  msgstr "Galerie"
516
 
517
- #: ../admin/admin.php:65
518
  #: ../admin/wp25/admin.php:73
519
  msgid "Add Gallery"
520
  msgstr "Bilder/Galerie hinzufügen"
521
 
522
- #: ../admin/admin.php:66
523
  #: ../admin/wp25/admin.php:74
524
  msgid "Manage Gallery"
525
  msgstr "Galerie verwalten"
526
 
527
- #: ../admin/admin.php:67
528
  #: ../admin/wp25/admin.php:75
529
  #: ../tinymce/window.php:36
530
  #: ../tinymce3/window.php:36
531
  msgid "Album"
532
  msgstr "Album"
533
 
534
- #: ../admin/admin.php:68
535
  #: ../admin/wp25/admin.php:76
536
  msgid "Options"
537
  msgstr "Optionen"
538
 
539
- #: ../admin/admin.php:70
540
  #: ../admin/wp25/admin.php:78
541
  msgid "Style"
542
  msgstr "Style"
543
 
544
- #: ../admin/admin.php:71
545
  #: ../admin/wp25/admin.php:79
546
  msgid "Setup Gallery"
547
  msgstr "Galerie Setup"
548
 
549
- #: ../admin/admin.php:71
550
  #: ../admin/wp25/admin.php:79
551
  msgid "Setup"
552
  msgstr "Setup"
553
 
554
- #: ../admin/admin.php:73
555
  #: ../admin/wp25/admin.php:81
556
  msgid "Roles"
557
  msgstr "Zugriff"
558
 
559
- #: ../admin/admin.php:74
560
  #: ../admin/wp25/admin.php:82
561
  msgid "About this Gallery"
562
  msgstr "Über diese Galerie"
563
 
564
- #: ../admin/admin.php:74
565
  #: ../admin/wp25/admin.php:82
566
  msgid "About"
567
  msgstr "Über"
568
 
569
- #: ../admin/admin.php:76
570
  #: ../admin/wp25/admin.php:84
571
  #: ../admin/wp25/media-upload.php:11
572
  msgid "NextGEN Gallery"
@@ -576,6 +578,7 @@ msgstr "NextGEN Gallery"
576
  #: ../admin/album.php:37
577
  #: ../admin/wp25/album.php:19
578
  #: ../admin/wp25/album.php:36
 
579
  msgid "Update Successfully"
580
  msgstr "Update erfolgreich"
581
 
@@ -584,29 +587,29 @@ msgstr "Update erfolgreich"
584
  msgid "Album deleted"
585
  msgstr "Album gelöscht"
586
 
587
- #: ../admin/album.php:124
588
  #: ../admin/wp25/album.php:119
589
  msgid "Manage Albums"
590
  msgstr "Verwalte Alben"
591
 
592
- #: ../admin/album.php:130
593
  #: ../admin/wp25/album.php:125
594
  #: ../tinymce/window.php:74
595
  #: ../tinymce3/window.php:74
596
  msgid "Select album"
597
  msgstr "Wähle Album"
598
 
599
- #: ../admin/album.php:133
600
  #: ../admin/wp25/album.php:128
601
  msgid "No album selected"
602
  msgstr "Kein Album ausgewählt"
603
 
604
- #: ../admin/album.php:146
605
  #: ../admin/wp25/album.php:141
606
  msgid "Add new album"
607
  msgstr "Album hinzufügen"
608
 
609
- #: ../admin/album.php:150
610
  #: ../admin/manage.php:309
611
  #: ../admin/manage.php:580
612
  #: ../admin/wp25/album.php:146
@@ -615,19 +618,19 @@ msgstr "Album hinzufügen"
615
  msgid "Delete"
616
  msgstr "Lösche"
617
 
618
- #: ../admin/album.php:150
619
  #: ../admin/wp25/album.php:146
620
  msgid "Delete album ?"
621
  msgstr "Lösche Album ?"
622
 
623
- #: ../admin/album.php:152
624
- #: ../admin/settings.php:166
625
- #: ../admin/settings.php:206
626
- #: ../admin/settings.php:253
627
- #: ../admin/settings.php:333
628
- #: ../admin/settings.php:380
629
- #: ../admin/settings.php:492
630
- #: ../admin/settings.php:600
631
  #: ../admin/wpmu.php:98
632
  #: ../admin/wp25/album.php:148
633
  #: ../admin/wp25/settings.php:160
@@ -641,42 +644,42 @@ msgstr "Lösche Album ?"
641
  msgid "Update"
642
  msgstr "Aktualisiere"
643
 
644
- #: ../admin/album.php:160
645
  #: ../admin/wp25/album.php:157
646
  msgid "[Show all]"
647
  msgstr "[Alle zeigen]"
648
 
649
- #: ../admin/album.php:161
650
  #: ../admin/wp25/album.php:158
651
  msgid "[Maximize]"
652
  msgstr "[Vergrößern]"
653
 
654
- #: ../admin/album.php:162
655
  #: ../admin/wp25/album.php:159
656
  msgid "[Minimize]"
657
  msgstr "[Verkleinern]"
658
 
659
- #: ../admin/album.php:164
660
  #: ../admin/wp25/album.php:161
661
  msgid "After you create and select a album, you can drag and drop a gallery into your album below"
662
  msgstr "Nachdem du ein Album erstellt und ausgewählt hast, kannst du per Drag & Drop eine Galerie in das Album ziehen"
663
 
664
- #: ../admin/album.php:171
665
  #: ../admin/wp25/album.php:168
666
  msgid "Select Gallery"
667
  msgstr "Wähle Galerie"
668
 
669
- #: ../admin/album.php:210
670
  #: ../admin/wp25/album.php:207
671
  msgid "Album Page ID"
672
  msgstr "Album Seiten ID (Page ID)"
673
 
674
- #: ../admin/album.php:222
675
  #: ../admin/wp25/album.php:219
676
  msgid "No album selected!"
677
  msgstr "Kein Album ausgewählt"
678
 
679
- #: ../admin/album.php:258
680
  #: ../admin/manage.php:283
681
  #: ../admin/manage.php:535
682
  #: ../admin/wp25/album.php:255
@@ -685,23 +688,23 @@ msgstr "Kein Album ausgewählt"
685
  msgid "ID"
686
  msgstr "ID"
687
 
688
- #: ../admin/album.php:259
689
  #: ../admin/wp25/album.php:256
690
  msgid "Name"
691
  msgstr "Name"
692
 
693
- #: ../admin/album.php:260
694
  #: ../admin/manage.php:285
695
  #: ../admin/manage.php:446
696
  #: ../admin/js/uploadtab.js.php:109
697
  #: ../admin/wp25/album.php:257
698
  #: ../admin/wp25/manage.php:290
699
  #: ../admin/wp25/manage.php:415
700
- #: ../lib/nggmeta.lib.php:373
701
  msgid "Title"
702
  msgstr "Titel"
703
 
704
- #: ../admin/album.php:261
705
  #: ../admin/wp25/album.php:258
706
  msgid "Page"
707
  msgstr "Seite"
@@ -749,7 +752,7 @@ msgstr "ist schreibgeschützt !"
749
  #: ../admin/wp25/functions.php:45
750
  #: ../admin/wp25/functions.php:55
751
  #: ../admin/wp25/functions.php:525
752
- #: ../lib/nggallery.lib.php:297
753
  msgid "Unable to create directory "
754
  msgstr "Kann Verzeichnis nicht erstellen "
755
 
@@ -1025,7 +1028,7 @@ msgstr "Galerie Name"
1025
  #: ../admin/wp25/manage.php:291
1026
  #: ../admin/wp25/manage.php:434
1027
  #: ../admin/wp25/manage.php:517
1028
- #: ../admin/wp25/media-upload.php:180
1029
  #: ../admin/wp25/style.php:109
1030
  msgid "Description"
1031
  msgstr "Beschreibung"
@@ -1208,7 +1211,7 @@ msgid "Sort gallery"
1208
  msgstr "Sortiere Bilder"
1209
 
1210
  #: ../admin/manage.php:536
1211
- #: ../admin/settings.php:322
1212
  #: ../admin/wp25/manage.php:512
1213
  #: ../admin/wp25/settings.php:310
1214
  msgid "File name"
@@ -1217,6 +1220,7 @@ msgstr "Dateiname"
1217
  #: ../admin/manage.php:538
1218
  #: ../admin/js/uploadtab.js.php:106
1219
  #: ../admin/wp25/manage.php:514
 
1220
  msgid "Thumbnail"
1221
  msgstr "Thumbnail"
1222
 
@@ -1572,7 +1576,6 @@ msgstr "Rechte aktualisieren"
1572
  #: ../admin/settings.php:33
1573
  #: ../admin/style.php:16
1574
  #: ../admin/wpmu.php:32
1575
- #: ../admin/wp25/settings.php:33
1576
  #: ../admin/wp25/style.php:16
1577
  #: ../admin/wp25/wpmu.php:32
1578
  msgid "Update successfully"
@@ -1583,27 +1586,27 @@ msgstr "Aktualisierung erfolgreich"
1583
  msgid "Cache cleared"
1584
  msgstr "Cache löschen"
1585
 
1586
- #: ../admin/settings.php:103
1587
- #: ../admin/settings.php:115
1588
  #: ../admin/wp25/settings.php:98
1589
  #: ../admin/wp25/settings.php:110
1590
  msgid "General Options"
1591
  msgstr "Allg. Optionen"
1592
 
1593
- #: ../admin/settings.php:105
1594
  #: ../admin/wp25/settings.php:100
1595
  msgid "Images"
1596
  msgstr "Bilder"
1597
 
1598
- #: ../admin/settings.php:107
1599
- #: ../admin/settings.php:341
1600
  #: ../admin/wp25/settings.php:102
1601
  #: ../admin/wp25/settings.php:328
1602
  msgid "Effects"
1603
  msgstr "Effekte"
1604
 
1605
- #: ../admin/settings.php:108
1606
- #: ../admin/settings.php:394
1607
  #: ../admin/wp25/settings.php:103
1608
  #: ../admin/wp25/settings.php:379
1609
  #: ../tinymce/window.php:123
@@ -1611,9 +1614,9 @@ msgstr "Effekte"
1611
  msgid "Watermark"
1612
  msgstr "Wasserzeichen"
1613
 
1614
- #: ../admin/settings.php:109
1615
- #: ../admin/settings.php:298
1616
- #: ../admin/settings.php:502
1617
  #: ../admin/wp25/settings.php:104
1618
  #: ../admin/wp25/settings.php:286
1619
  #: ../admin/wp25/settings.php:482
@@ -1622,633 +1625,634 @@ msgstr "Wasserzeichen"
1622
  msgid "Slideshow"
1623
  msgstr "Slideshow"
1624
 
1625
- #: ../admin/settings.php:122
1626
  #: ../admin/wpmu.php:48
1627
  #: ../admin/wp25/settings.php:116
1628
  #: ../admin/wp25/wpmu.php:48
1629
  msgid "Gallery path"
1630
  msgstr "Galerie-Pfad"
1631
 
1632
- #: ../admin/settings.php:124
1633
  #: ../admin/wp25/settings.php:118
1634
  msgid "This is the default path for all galleries"
1635
  msgstr "Dies ist der Standard-Pfad für alle Galerien"
1636
 
1637
- #: ../admin/settings.php:135
1638
  #: ../admin/wp25/settings.php:129
1639
  msgid "Delete image files"
1640
  msgstr "Lösche Bilddateien"
1641
 
1642
- #: ../admin/settings.php:137
1643
  #: ../admin/wp25/settings.php:131
1644
  msgid "Delete files, when removing a gallery in the database"
1645
  msgstr "Löscht auch die Dateien, falls die Galerie aus der Datenbank entfernt wird"
1646
 
1647
- #: ../admin/settings.php:140
1648
  #: ../admin/wp25/settings.php:134
1649
  msgid "Activate permalinks"
1650
  msgstr "Aktiviere Permalinks"
1651
 
1652
- #: ../admin/settings.php:142
1653
  #: ../admin/wp25/settings.php:136
1654
  msgid "When you activate this option, you need to update your permalink structure one time."
1655
  msgstr "Wenn du diese Option aktivierst, muss du einmal die Permalink Struktur aktualisieren."
1656
 
1657
- #: ../admin/settings.php:145
1658
  #: ../admin/wp25/settings.php:139
1659
  msgid "Tags / Categories"
1660
  msgstr "Stichwörter / Kategorien"
1661
 
1662
- #: ../admin/settings.php:148
1663
  #: ../admin/wp25/settings.php:142
1664
  msgid "Activate related images"
1665
  msgstr "Verwandte Bilder anzeigen"
1666
 
1667
- #: ../admin/settings.php:150
1668
  #: ../admin/wp25/settings.php:144
1669
  msgid "This option will append related images to every post"
1670
  msgstr "Diese Option hängt verwandte Bilder an jeden Beitrag"
1671
 
1672
- #: ../admin/settings.php:154
1673
  #: ../admin/wp25/settings.php:148
1674
  msgid "Match with"
1675
  msgstr "Vergleiche mit"
1676
 
1677
- #: ../admin/settings.php:155
1678
  #: ../admin/wp25/settings.php:149
1679
  msgid "Categories"
1680
  msgstr "Kategorien"
1681
 
1682
- #: ../admin/settings.php:156
1683
  #: ../admin/wp25/settings.php:150
1684
- #: ../lib/nggmeta.lib.php:375
1685
  msgid "Tags"
1686
  msgstr "Stichwörter"
1687
 
1688
- #: ../admin/settings.php:156
1689
  #: ../admin/wp25/settings.php:150
1690
  msgid " (require WordPress 2.3 or higher)"
1691
  msgstr " (benötigt WordPress 2.3 oder höher)"
1692
 
1693
- #: ../admin/settings.php:160
1694
  #: ../admin/wp25/settings.php:154
1695
  msgid "Max. number of images"
1696
  msgstr "Max. Anzahl der Bilder"
1697
 
1698
- #: ../admin/settings.php:162
1699
  #: ../admin/wp25/settings.php:156
1700
  msgid "0 will show all images"
1701
  msgstr "0 zeige alle verwandten Bilder"
1702
 
1703
- #: ../admin/settings.php:174
1704
  #: ../admin/wp25/settings.php:167
1705
  msgid "Thumbnail settings"
1706
  msgstr "Thumbnail Einstellungen"
1707
 
1708
- #: ../admin/settings.php:179
1709
  #: ../admin/wp25/settings.php:171
1710
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1711
  msgstr "Bitte beachten : Änderungen der Einstellungen werden erst übernommen, wenn Du neue Thumbnails unter -> \"Gallery verwalten\" erstellst"
1712
 
1713
- #: ../admin/settings.php:182
1714
  #: ../admin/wp25/settings.php:174
1715
  msgid "Width x height (in pixel)"
1716
  msgstr "Breite x Höhe (in Pixel)"
1717
 
1718
- #: ../admin/settings.php:184
1719
  #: ../admin/wp25/settings.php:176
1720
  msgid "These values are maximum values "
1721
  msgstr "Diese Angaben sind maximale Angaben."
1722
 
1723
- #: ../admin/settings.php:187
1724
  #: ../admin/wp25/settings.php:179
1725
  msgid "Set fix dimension"
1726
  msgstr "Setze fixe Größe"
1727
 
1728
- #: ../admin/settings.php:189
1729
  #: ../admin/wp25/settings.php:181
1730
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1731
  msgstr "Ignoriere Bildseitenverhältnis"
1732
 
1733
- #: ../admin/settings.php:192
1734
  #: ../admin/wp25/settings.php:184
1735
  msgid "Crop square thumbnail from image"
1736
  msgstr "Mittige Thumbnails aus Bildern ausschneiden"
1737
 
1738
- #: ../admin/settings.php:194
1739
  #: ../admin/wp25/settings.php:186
1740
  msgid "Create square thumbnails, use only the width setting :"
1741
  msgstr "Erstellt viereckige Thumbnails, nutzt nur den Wert der Breite :"
1742
 
1743
- #: ../admin/settings.php:197
1744
  #: ../admin/wp25/settings.php:189
1745
  msgid "Thumbnail quality"
1746
  msgstr "Thumbnail Qualität"
1747
 
1748
- #: ../admin/settings.php:201
1749
- #: ../admin/settings.php:233
1750
  #: ../admin/wp25/settings.php:193
1751
  #: ../admin/wp25/settings.php:223
1752
  msgid "Resample Mode"
1753
  msgstr "Resample Modus"
1754
 
1755
- #: ../admin/settings.php:203
1756
- #: ../admin/settings.php:236
1757
  #: ../admin/wp25/settings.php:195
1758
  #: ../admin/wp25/settings.php:226
1759
  msgid "Value between 1-5 (higher value, more CPU load)"
1760
  msgstr "Wähle zwischen 1-5 (je höhere desto länger braucht der Server)"
1761
 
1762
- #: ../admin/settings.php:214
1763
  #: ../admin/wp25/settings.php:205
1764
  msgid "Image settings"
1765
  msgstr "Bild Einstellungen"
1766
 
1767
- #: ../admin/settings.php:221
1768
  #: ../admin/wp25/settings.php:211
1769
  msgid "Resize Images"
1770
  msgstr "Bilder verkleinern"
1771
 
1772
- #: ../admin/settings.php:225
1773
  #: ../admin/wp25/settings.php:215
1774
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1775
  msgstr "Breite x Höhe (in Pixel). NextGEN Galerie beachtet das Seitenverhältnis."
1776
 
1777
- #: ../admin/settings.php:228
1778
  #: ../admin/wp25/settings.php:218
1779
  msgid "Image quality"
1780
  msgstr "Bild Qualität"
1781
 
1782
- #: ../admin/settings.php:239
1783
  #: ../admin/wp25/settings.php:229
1784
  msgid "Single picture"
1785
  msgstr "Einzelbilder"
1786
 
1787
- #: ../admin/settings.php:242
1788
  #: ../admin/wp25/settings.php:232
1789
  msgid "Cache single pictures"
1790
  msgstr "Nutze Cache für Einzelbidler"
1791
 
1792
- #: ../admin/settings.php:245
1793
  #: ../admin/wp25/settings.php:235
1794
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1795
  msgstr "Erstellt ein Cache-Bild für jedes Einzelbild (singlepic). Reduziert die CPU Belastung."
1796
 
1797
- #: ../admin/settings.php:248
1798
  #: ../admin/wp25/settings.php:238
1799
  msgid "Clear cache folder"
1800
  msgstr "Lösche Cache Verzeichnis"
1801
 
1802
- #: ../admin/settings.php:250
1803
  #: ../admin/wp25/settings.php:240
1804
  msgid "Proceed now"
1805
  msgstr "Jetzt durchführen"
1806
 
1807
- #: ../admin/settings.php:261
1808
  #: ../admin/wp25/settings.php:250
1809
  msgid "Gallery settings"
1810
  msgstr "Galerie Einstellungen"
1811
 
1812
- #: ../admin/settings.php:277
1813
  #: ../admin/wp25/settings.php:265
1814
  msgid "Deactivate gallery page link"
1815
  msgstr "Keine Seitenverzweigung"
1816
 
1817
- #: ../admin/settings.php:279
1818
  #: ../admin/wp25/settings.php:267
1819
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1820
  msgstr "Ein Album benötigt dann keinen Link zur Seite. Die Galerie wird direkt angezeigt."
1821
 
1822
- #: ../admin/settings.php:283
1823
  #: ../admin/wp25/settings.php:271
1824
  msgid "Number of images per page"
1825
  msgstr "Anzahl der Bilder pro Seite"
1826
 
1827
- #: ../admin/settings.php:285
1828
  #: ../admin/wp25/settings.php:273
1829
  msgid "0 will disable pagination, all images on one page"
1830
  msgstr "0 schaltet Blätterfunktion ab ( = alle Bilder auf einer Seite )"
1831
 
1832
- #: ../admin/settings.php:289
1833
  #: ../admin/wp25/settings.php:277
1834
  msgid "Integrate slideshow"
1835
  msgstr "Slideshow verwenden"
1836
 
1837
- #: ../admin/settings.php:296
1838
  #: ../admin/wp25/settings.php:284
1839
  msgid "Show first"
1840
  msgstr "Zeige als Erstes"
1841
 
1842
- #: ../admin/settings.php:302
1843
  #: ../admin/wp25/settings.php:290
1844
  msgid "Show thumbnail description"
1845
  msgstr "Zeige Bildbeschreibung"
1846
 
1847
- #: ../admin/settings.php:303
1848
- #: ../admin/settings.php:353
1849
  #: ../admin/js/uploadtab.js.php:117
1850
- #: ../admin/wp25/media-upload.php:187
1851
  #: ../admin/wp25/settings.php:291
1852
  #: ../admin/wp25/settings.php:339
1853
  msgid "None"
1854
  msgstr "Keiner"
1855
 
1856
- #: ../admin/settings.php:304
1857
  #: ../admin/wp25/settings.php:292
1858
  msgid "Description text"
1859
  msgstr "Beschreibung"
1860
 
1861
- #: ../admin/settings.php:305
1862
- #: ../admin/settings.php:323
1863
  #: ../admin/wp25/settings.php:293
1864
  #: ../admin/wp25/settings.php:311
1865
  msgid "Alt / Title text"
1866
  msgstr "Alt / Titel Text"
1867
 
1868
- #: ../admin/settings.php:309
1869
  #: ../admin/wp25/settings.php:297
1870
  msgid "Show ImageBrowser"
1871
  msgstr "Zeige Bilder Browser"
1872
 
1873
- #: ../admin/settings.php:311
1874
  #: ../admin/wp25/settings.php:299
1875
  msgid "The gallery will open the ImageBrowser instead the effect."
1876
  msgstr "Es wird der Bilder Browser angezeigt (Kein JavaScript Effekt)"
1877
 
1878
- #: ../admin/settings.php:315
1879
  #: ../admin/wp25/settings.php:303
1880
  msgid "Sort options"
1881
  msgstr "Sortierung"
1882
 
1883
- #: ../admin/settings.php:318
1884
  #: ../admin/wp25/settings.php:306
1885
  msgid "Sort thumbnails"
1886
  msgstr "Thumbnails sortieren"
1887
 
1888
- #: ../admin/settings.php:320
1889
  #: ../admin/wp25/settings.php:308
1890
  msgid "Custom order"
1891
  msgstr "Benutzerdefiniert"
1892
 
1893
- #: ../admin/settings.php:321
1894
  #: ../admin/wp25/settings.php:309
1895
  msgid "Image ID"
1896
  msgstr "Bilder ID"
1897
 
1898
- #: ../admin/settings.php:327
1899
  #: ../admin/wp25/settings.php:315
1900
  msgid "Sort direction"
1901
  msgstr "Sortierreihenfolge"
1902
 
1903
- #: ../admin/settings.php:328
1904
  #: ../admin/wp25/settings.php:316
1905
  msgid "Ascending"
1906
  msgstr "Aufsteigend"
1907
 
1908
- #: ../admin/settings.php:329
1909
  #: ../admin/wp25/settings.php:317
1910
  msgid "Descending"
1911
  msgstr "Absteigend"
1912
 
1913
- #: ../admin/settings.php:345
1914
  #: ../admin/wp25/settings.php:332
1915
  msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
1916
  msgstr "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)."
1917
 
1918
- #: ../admin/settings.php:346
1919
  #: ../admin/wp25/settings.php:333
1920
  msgid "With the placeholder"
1921
  msgstr "Mit Platzhalter"
1922
 
1923
- #: ../admin/settings.php:346
1924
  #: ../admin/wp25/settings.php:333
1925
  msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
1926
  msgstr "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."
1927
 
1928
- #: ../admin/settings.php:350
1929
  #: ../admin/wp25/settings.php:336
1930
  msgid "JavaScript Thumbnail effect"
1931
  msgstr "JavaScript Thumbnail Effekt"
1932
 
1933
- #: ../admin/settings.php:354
1934
  #: ../admin/wp25/settings.php:340
1935
  msgid "Thickbox"
1936
  msgstr "Thickbox"
1937
 
1938
- #: ../admin/settings.php:355
1939
  #: ../admin/wp25/settings.php:341
1940
  msgid "Lightbox"
1941
  msgstr "Lightbox"
1942
 
1943
- #: ../admin/settings.php:356
1944
  #: ../admin/wp25/settings.php:342
1945
  msgid "Highslide"
1946
  msgstr "Highslide"
1947
 
1948
- #: ../admin/settings.php:357
1949
  #: ../admin/wp25/settings.php:343
1950
  msgid "Shutter"
1951
  msgstr "Shutter"
1952
 
1953
- #: ../admin/settings.php:358
1954
  #: ../admin/wp25/settings.php:344
1955
  msgid "Custom"
1956
  msgstr "Eigener"
1957
 
1958
- #: ../admin/settings.php:363
1959
  #: ../admin/wp25/settings.php:349
1960
  msgid "Link Code line"
1961
  msgstr "Link Code Zeile"
1962
 
1963
- #: ../admin/settings.php:371
1964
  #: ../admin/wp25/settings.php:357
1965
  msgid "Select loading image"
1966
  msgstr "Wähle Ladeanimation"
1967
 
1968
- #: ../admin/settings.php:395
1969
  #: ../admin/wp25/settings.php:380
1970
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1971
  msgstr "Bitte beachten : Das Wasserzeichen kann nur unter der Galerieverwaltung gesetzt werden. "
1972
 
1973
- #: ../admin/settings.php:400
1974
  #: ../admin/wp25/settings.php:385
1975
  msgid "Preview"
1976
  msgstr "Vorschau"
1977
 
1978
- #: ../admin/settings.php:402
1979
- #: ../admin/settings.php:406
1980
  #: ../admin/wp25/settings.php:387
1981
  #: ../admin/wp25/settings.php:392
1982
  msgid "Position"
1983
  msgstr "Position"
1984
 
1985
- #: ../admin/settings.php:426
1986
  #: ../admin/wp25/settings.php:412
1987
  msgid "Offset"
1988
  msgstr "Abstand"
1989
 
1990
- #: ../admin/settings.php:444
1991
  #: ../admin/wp25/settings.php:428
1992
  msgid "Use image as watermark"
1993
  msgstr "Benutze Bild als Wasserzeichen"
1994
 
1995
- #: ../admin/settings.php:447
1996
  #: ../admin/wp25/settings.php:431
1997
  msgid "URL to file"
1998
  msgstr "URL zur Datei"
1999
 
2000
- #: ../admin/settings.php:449
2001
  #: ../admin/wp25/settings.php:433
2002
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
2003
  msgstr "Der Dateizugriff von URL's ist auf diesem Server deaktiviert (allow_url_fopen)"
2004
 
2005
- #: ../admin/settings.php:455
2006
  #: ../admin/wp25/settings.php:436
2007
  msgid "Use text as watermark"
2008
  msgstr "Benutze Text als Wasserzeichen"
2009
 
2010
- #: ../admin/settings.php:458
2011
  #: ../admin/wp25/settings.php:439
2012
  msgid "Font"
2013
  msgstr "Schriftart"
2014
 
2015
- #: ../admin/settings.php:467
2016
  #: ../admin/wp25/settings.php:448
2017
  msgid "This function will not work, cause you need the FreeType library"
2018
  msgstr "Diese Funktion benötigt die FreeType Bibliothek"
2019
 
2020
- #: ../admin/settings.php:469
2021
  #: ../admin/wp25/settings.php:450
2022
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
2023
  msgstr "Du kannst mehr Schriftarten in das Verzeichniss <strong>nggallery/fonts</strong> hochladen."
2024
 
2025
- #: ../admin/settings.php:473
 
2026
  #: ../admin/wp25/settings.php:454
2027
  msgid "Size"
2028
  msgstr "Größe"
2029
 
2030
- #: ../admin/settings.php:477
2031
  #: ../admin/wp25/settings.php:458
2032
  msgid "Color"
2033
  msgstr "Farbe"
2034
 
2035
- #: ../admin/settings.php:479
2036
  #: ../admin/wp25/settings.php:460
2037
  msgid "(hex w/o #)"
2038
  msgstr "(hex w/o #)"
2039
 
2040
- #: ../admin/settings.php:482
2041
  #: ../admin/wp25/settings.php:463
2042
  msgid "Text"
2043
  msgstr "Text"
2044
 
2045
- #: ../admin/settings.php:486
2046
  #: ../admin/wp25/settings.php:467
2047
  msgid "Opaque"
2048
  msgstr "Transparenz"
2049
 
2050
- #: ../admin/settings.php:504
2051
  #: ../admin/wp25/settings.php:483
2052
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
2053
  msgstr "Die Datei imagerotator.swf ist nicht im Plugin Verzeichniss -> so wird die Slideshow nicht funktionieren."
2054
 
2055
- #: ../admin/settings.php:505
2056
  #: ../admin/wp25/settings.php:484
2057
  msgid "The settings are used in the JW Image Rotator Version"
2058
  msgstr "Die Einstellungen werden im JW Image Rotator benutzt , in der Version"
2059
 
2060
- #: ../admin/settings.php:506
2061
  #: ../admin/wp25/settings.php:485
2062
  msgid "See more information for the Flash Player on the web page"
2063
  msgstr "Weitere Informationen auf der Flash Player Homepage"
2064
 
2065
- #: ../admin/settings.php:509
2066
  #: ../admin/wp25/settings.php:489
2067
  msgid "Default size (W x H)"
2068
  msgstr "Standard Größe (B x H)"
2069
 
2070
- #: ../admin/settings.php:514
2071
  #: ../admin/wp25/settings.php:494
2072
  msgid "Shuffle mode"
2073
  msgstr "Shuffle Modus"
2074
 
2075
- #: ../admin/settings.php:518
2076
  #: ../admin/wp25/settings.php:498
2077
  msgid "Show next image on click"
2078
  msgstr "Zeige nächstes Bild bei Klick"
2079
 
2080
- #: ../admin/settings.php:522
2081
  #: ../admin/wp25/settings.php:502
2082
  msgid "Show navigation bar"
2083
  msgstr "Zeige Navigations-Leiste"
2084
 
2085
- #: ../admin/settings.php:526
2086
  #: ../admin/wp25/settings.php:506
2087
  msgid "Show loading icon"
2088
  msgstr "Zeige Lade-Bildchen"
2089
 
2090
- #: ../admin/settings.php:530
2091
  #: ../admin/wp25/settings.php:510
2092
  msgid "Use watermark logo"
2093
  msgstr "Wasserzeichen anzeigen"
2094
 
2095
- #: ../admin/settings.php:532
2096
  #: ../admin/wp25/settings.php:512
2097
  msgid "You can change the logo at the watermark settings"
2098
  msgstr "Du kannst den Pfad in Einstellungen für da Wasserzeichen angeben"
2099
 
2100
- #: ../admin/settings.php:535
2101
  #: ../admin/wp25/settings.php:515
2102
  msgid "Stretch image"
2103
  msgstr "Bild dehnen"
2104
 
2105
- #: ../admin/settings.php:538
2106
  #: ../admin/wp25/settings.php:518
2107
  msgid "true"
2108
  msgstr "Ja"
2109
 
2110
- #: ../admin/settings.php:539
2111
  #: ../admin/wp25/settings.php:519
2112
  msgid "false"
2113
  msgstr "Nein"
2114
 
2115
- #: ../admin/settings.php:540
2116
  #: ../admin/wp25/settings.php:520
2117
  msgid "fit"
2118
  msgstr "Passend"
2119
 
2120
- #: ../admin/settings.php:541
2121
  #: ../admin/wp25/settings.php:521
2122
  msgid "none"
2123
  msgstr "keiner"
2124
 
2125
- #: ../admin/settings.php:546
2126
  #: ../admin/wp25/settings.php:526
2127
  msgid "Duration time"
2128
  msgstr "Dauer"
2129
 
2130
- #: ../admin/settings.php:547
2131
  #: ../admin/wp25/settings.php:527
2132
  msgid "sec."
2133
  msgstr "Sek."
2134
 
2135
- #: ../admin/settings.php:550
2136
  #: ../admin/wp25/settings.php:530
2137
  msgid "Transition / Fade effect"
2138
  msgstr "Fade Effekt"
2139
 
2140
- #: ../admin/settings.php:553
2141
  #: ../admin/wp25/settings.php:533
2142
  msgid "fade"
2143
  msgstr "Fade"
2144
 
2145
- #: ../admin/settings.php:554
2146
  #: ../admin/wp25/settings.php:534
2147
  msgid "bgfade"
2148
  msgstr "BGFade"
2149
 
2150
- #: ../admin/settings.php:555
2151
  #: ../admin/wp25/settings.php:535
2152
  msgid "slowfade"
2153
  msgstr "Slowfade"
2154
 
2155
- #: ../admin/settings.php:556
2156
  #: ../admin/wp25/settings.php:536
2157
  msgid "circles"
2158
  msgstr "Kreise"
2159
 
2160
- #: ../admin/settings.php:557
2161
  #: ../admin/wp25/settings.php:537
2162
  msgid "bubbles"
2163
  msgstr "Blasen"
2164
 
2165
- #: ../admin/settings.php:558
2166
  #: ../admin/wp25/settings.php:538
2167
  msgid "blocks"
2168
  msgstr "Blöcke"
2169
 
2170
- #: ../admin/settings.php:559
2171
  #: ../admin/wp25/settings.php:539
2172
  msgid "fluids"
2173
  msgstr "Fluids"
2174
 
2175
- #: ../admin/settings.php:560
2176
  #: ../admin/wp25/settings.php:540
2177
  msgid "flash"
2178
  msgstr "Flash"
2179
 
2180
- #: ../admin/settings.php:561
2181
  #: ../admin/wp25/settings.php:541
2182
  msgid "lines"
2183
  msgstr "Linien"
2184
 
2185
- #: ../admin/settings.php:566
2186
  #: ../admin/wp25/settings.php:546
2187
  msgid "Use slow zooming effect"
2188
  msgstr "nutze Zoom Effekt"
2189
 
2190
- #: ../admin/settings.php:570
2191
  #: ../admin/wp25/settings.php:550
2192
  msgid "Background Color"
2193
  msgstr "Hintergrund (BG) Farbe"
2194
 
2195
- #: ../admin/settings.php:575
2196
  #: ../admin/wp25/settings.php:555
2197
  msgid "Texts / Buttons Color"
2198
  msgstr "Text- / Button Farbe"
2199
 
2200
- #: ../admin/settings.php:580
2201
  #: ../admin/wp25/settings.php:560
2202
  msgid "Rollover / Active Color"
2203
  msgstr "Rollover / Aktiv (Link) Farbe"
2204
 
2205
- #: ../admin/settings.php:585
2206
  #: ../admin/wp25/settings.php:565
2207
  msgid "Screen Color"
2208
  msgstr "Seiten Farbe"
2209
 
2210
- #: ../admin/settings.php:590
2211
  #: ../admin/wp25/settings.php:570
2212
  msgid "Background music (URL)"
2213
  msgstr "Hintergrundmusik (URL)"
2214
 
2215
- #: ../admin/settings.php:594
2216
  #: ../admin/wp25/settings.php:574
2217
  msgid "Try XHTML validation (with CDATA)"
2218
  msgstr "Integriere XHTML Validierung (mittels CDATA)"
2219
 
2220
- #: ../admin/settings.php:596
2221
  #: ../admin/wp25/settings.php:576
2222
  msgid "Important : Could causes problem at some browser. Please recheck your page."
2223
  msgstr "Wichtig : Es könnnten Probleme bei einigen Browser auftauchen. Unbedingt Seite prüfen."
2224
 
2225
  #: ../admin/setup.php:12
2226
- #: ../admin/wp25/setup.php:12
2227
  msgid "Reset all settings to default parameter"
2228
  msgstr "Stelle alle Einstellungen auf Anfangswerte zurück"
2229
 
2230
  #: ../admin/setup.php:37
2231
- #: ../admin/wp25/setup.php:37
2232
  msgid "Uninstall sucessfull ! Now delete the plugin and enjoy your life ! Good luck !"
2233
  msgstr "Deinstallation erfolgreich ! Nun kannst Du das Plugin löschen und Dein Leben weiterhin genießen ! Stay geeky ! Viel Glück !"
2234
 
2235
  #: ../admin/setup.php:46
2236
- #: ../admin/wp25/setup.php:46
2237
  msgid "Reset options"
2238
  msgstr "Optionen zurücksetzen"
2239
 
2240
  #: ../admin/setup.php:49
2241
- #: ../admin/wp25/setup.php:49
2242
  msgid "Reset all options/settings to the default installation."
2243
  msgstr "Alle Optionen/Einstellungen zurücksetzen"
2244
 
2245
  #: ../admin/setup.php:50
2246
- #: ../admin/wp25/setup.php:50
2247
  msgid "Reset settings"
2248
  msgstr "Einstellungen zurücksetzen"
2249
 
2250
  #: ../admin/setup.php:50
2251
- #: ../admin/wp25/setup.php:50
2252
  msgid ""
2253
  "Reset all options to default settings ?\\n"
2254
  "\\n"
@@ -2259,42 +2263,42 @@ msgstr ""
2259
  "Wähle [Cancel] um abzubrechen, [OK] zum Durchführen.\\n"
2260
 
2261
  #: ../admin/setup.php:55
2262
- #: ../admin/wp25/setup.php:55
2263
  msgid "Uninstall plugin tables"
2264
  msgstr "Plugin Tabellen (DB) entfernen"
2265
 
2266
  #: ../admin/setup.php:58
2267
- #: ../admin/wp25/setup.php:60
2268
  msgid "You don't like NextGEN Gallery ?"
2269
  msgstr "Du magst die NextGEN Galerie nicht ?"
2270
 
2271
  #: ../admin/setup.php:59
2272
- #: ../admin/wp25/setup.php:61
2273
  msgid "No problem, before you deactivate this plugin press the Uninstall Button, because deactivating NextGEN Gallery does not remove any data that may have been created. "
2274
  msgstr "Null Problemo. Einfach nur vor dem Deaktivieren dieses Plugins den Uninstall-Button betätigen damit alle Tabellen der Galerie entfernt werden."
2275
 
2276
  #: ../admin/setup.php:60
2277
- #: ../admin/wp25/setup.php:63
2278
  msgid "WARNING:"
2279
  msgstr "WARNUNG:"
2280
 
2281
  #: ../admin/setup.php:61
2282
- #: ../admin/wp25/setup.php:64
2283
  msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to backup all the tables first. NextGEN gallery is stored in the tables"
2284
  msgstr "Einmal deinstalliert -> keine Rückgängigmachung! D.h. auf Deutsch, das eine einmalig durchgeführte Deinstallation nicht mehr rückgängig gemacht werden kann da alle Tabellen der Galerie aus der Datenbank entfernt werden und KEIN Backup dieser Galerie-Tabellen angelegt wird währenddessen."
2285
 
2286
  #: ../admin/setup.php:61
2287
- #: ../admin/wp25/setup.php:64
2288
  msgid "and"
2289
  msgstr "und"
2290
 
2291
  #: ../admin/setup.php:63
2292
- #: ../admin/wp25/setup.php:66
2293
  msgid "Uninstall plugin"
2294
  msgstr "Plugin deinstallieren"
2295
 
2296
  #: ../admin/setup.php:63
2297
- #: ../admin/wp25/setup.php:66
2298
  msgid ""
2299
  "You are about to Uninstall this plugin from WordPress.\\n"
2300
  "This action is not reversible.\\n"
@@ -2405,7 +2409,7 @@ msgstr "Browse <strong>%s</strong>"
2405
 
2406
  #: ../admin/style.php:100
2407
  #: ../admin/wp25/style.php:107
2408
- #: ../lib/nggmeta.lib.php:374
2409
  msgid "Author"
2410
  msgstr "Autor"
2411
 
@@ -2434,7 +2438,7 @@ msgid "Select a gallery"
2434
  msgstr "Wähle Galerie"
2435
 
2436
  #: ../admin/uploadtab.php:107
2437
- #: ../admin/wp25/media-upload.php:120
2438
  #: ../tinymce/window.php:49
2439
  #: ../tinymce3/window.php:49
2440
  msgid "No gallery"
@@ -2534,6 +2538,7 @@ msgid "Direct link to file"
2534
  msgstr "Link zur Datei"
2535
 
2536
  #: ../admin/js/uploadtab.js.php:107
 
2537
  msgid "Full size"
2538
  msgstr "Volle Größe"
2539
 
@@ -2570,11 +2575,19 @@ msgid ""
2570
  "Click ok to delete or cancel to go back."
2571
  msgstr "Bist du sicher das Du diese Datei '%s' löschen willst ?"
2572
 
2573
- #: ../admin/wp25/addgallery.php:247
 
 
 
 
 
 
 
 
2574
  msgid "Import a folder with all images."
2575
  msgstr "Importiere ein Verzeichniss mit Bildern."
2576
 
2577
- #: ../admin/wp25/addgallery.php:248
2578
  msgid " Please note : For safe-mode = ON you need to add the subfolder thumbs manually"
2579
  msgstr "Achtung : Da der Safe-Mode (PHP.INI) eingeschaltet ist, mußt Du das Unterverzeichnis für die Vorschaubilder (\"thumbs\") manuell (per FTP) anlegen"
2580
 
@@ -2582,53 +2595,57 @@ msgstr "Achtung : Da der Safe-Mode (PHP.INI) eingeschaltet ist, mußt Du das Un
2582
  msgid "Edit gallery"
2583
  msgstr "Galerie ändern"
2584
 
2585
- #: ../admin/wp25/media-upload.php:132
2586
  msgid "Select Gallery &#187;"
2587
  msgstr "Wähle Galerie &#187;"
2588
 
2589
- #: ../admin/wp25/media-upload.php:164
2590
  msgid "Show"
2591
  msgstr "Zeige"
2592
 
2593
- #: ../admin/wp25/media-upload.php:165
2594
  msgid "Hide"
2595
  msgstr "Verstecke"
2596
 
2597
- #: ../admin/wp25/media-upload.php:170
2598
  msgid "Image ID:"
2599
  msgstr "Bilder ID:"
2600
 
2601
- #: ../admin/wp25/media-upload.php:176
2602
- msgid "Alt/Titel text"
2603
  msgstr "Alt / Titel Text"
2604
 
2605
- #: ../admin/wp25/media-upload.php:184
2606
  msgid "Alignment"
2607
  msgstr "Ausrichtung"
2608
 
2609
- #: ../admin/wp25/media-upload.php:189
2610
  #: ../tinymce/window.php:133
2611
  #: ../tinymce3/window.php:133
2612
  msgid "Left"
2613
  msgstr "Links"
2614
 
2615
- #: ../admin/wp25/media-upload.php:191
2616
  #: ../tinymce/window.php:134
2617
  #: ../tinymce3/window.php:134
2618
  msgid "Center"
2619
  msgstr "Zentrieren"
2620
 
2621
- #: ../admin/wp25/media-upload.php:193
2622
  #: ../tinymce/window.php:135
2623
  #: ../tinymce3/window.php:135
2624
  msgid "Right"
2625
  msgstr "Rechts"
2626
 
2627
- #: ../admin/wp25/media-upload.php:201
 
 
 
 
2628
  msgid "Insert into Post"
2629
- msgstr ""
2630
 
2631
- #: ../admin/wp25/media-upload.php:210
2632
  msgid "Save all changes"
2633
  msgstr "Änderungen Speichern"
2634
 
@@ -2661,120 +2678,120 @@ msgstr " mm"
2661
  msgid " sec"
2662
  msgstr " Sek."
2663
 
2664
- #: ../lib/nggmeta.lib.php:364
2665
  msgid "Aperture"
2666
  msgstr "Blende"
2667
 
2668
- #: ../lib/nggmeta.lib.php:365
2669
- #: ../lib/nggmeta.lib.php:390
2670
  msgid "Credit"
2671
  msgstr "Autor"
2672
 
2673
- #: ../lib/nggmeta.lib.php:366
2674
  msgid "Camera"
2675
  msgstr "Kamera"
2676
 
2677
- #: ../lib/nggmeta.lib.php:367
2678
  msgid "Caption"
2679
  msgstr "Beschreibung"
2680
 
2681
- #: ../lib/nggmeta.lib.php:368
2682
  msgid "Date/Time"
2683
  msgstr "Datum/Zeit"
2684
 
2685
- #: ../lib/nggmeta.lib.php:369
2686
  msgid "Copyright"
2687
  msgstr "Rechte"
2688
 
2689
- #: ../lib/nggmeta.lib.php:370
2690
  msgid "Focal length"
2691
  msgstr "Brennweite"
2692
 
2693
- #: ../lib/nggmeta.lib.php:371
2694
  msgid "ISO"
2695
  msgstr "ISO"
2696
 
2697
- #: ../lib/nggmeta.lib.php:372
2698
  msgid "Shutter speed"
2699
  msgstr "Belichtungszeit"
2700
 
2701
- #: ../lib/nggmeta.lib.php:376
2702
  msgid "Subject"
2703
  msgstr "Betreff"
2704
 
2705
- #: ../lib/nggmeta.lib.php:377
2706
  msgid "Make"
2707
  msgstr "Hersteller"
2708
 
2709
- #: ../lib/nggmeta.lib.php:378
2710
  msgid "Edit Status"
2711
  msgstr "Ändere Status"
2712
 
2713
- #: ../lib/nggmeta.lib.php:379
2714
  msgid "Category"
2715
  msgstr "Kategorie"
2716
 
2717
- #: ../lib/nggmeta.lib.php:380
2718
  msgid "Keywords"
2719
  msgstr "Schlüsselwörter"
2720
 
2721
- #: ../lib/nggmeta.lib.php:381
2722
  msgid "Date Created"
2723
  msgstr "erstellt (Datum)"
2724
 
2725
- #: ../lib/nggmeta.lib.php:382
2726
  msgid "Time Created"
2727
  msgstr "erstellt (Zeit)"
2728
 
2729
- #: ../lib/nggmeta.lib.php:383
2730
  msgid "Author Position"
2731
  msgstr "Autor Position"
2732
 
2733
- #: ../lib/nggmeta.lib.php:384
2734
  msgid "City"
2735
  msgstr "Stadt"
2736
 
2737
- #: ../lib/nggmeta.lib.php:385
2738
  msgid "Location"
2739
  msgstr "Ort"
2740
 
2741
- #: ../lib/nggmeta.lib.php:386
2742
  msgid "Province/State"
2743
  msgstr "Staat / PLZ"
2744
 
2745
- #: ../lib/nggmeta.lib.php:387
2746
  msgid "Country code"
2747
  msgstr "Landescode"
2748
 
2749
- #: ../lib/nggmeta.lib.php:388
2750
  msgid "Country"
2751
  msgstr "Land"
2752
 
2753
- #: ../lib/nggmeta.lib.php:389
2754
  msgid "Headline"
2755
  msgstr "Kopfzeile"
2756
 
2757
- #: ../lib/nggmeta.lib.php:391
2758
  msgid "Source"
2759
  msgstr "Quelle"
2760
 
2761
- #: ../lib/nggmeta.lib.php:392
2762
  msgid "Copyright Notice"
2763
  msgstr "Copyright Hinweise / Credits"
2764
 
2765
- #: ../lib/nggmeta.lib.php:393
2766
  msgid "Contact"
2767
  msgstr "Kontakt"
2768
 
2769
- #: ../lib/nggmeta.lib.php:394
2770
  msgid "Last modified"
2771
  msgstr "Zuletzt geändert"
2772
 
2773
- #: ../lib/nggmeta.lib.php:395
2774
  msgid "Program tool"
2775
  msgstr "Programm"
2776
 
2777
- #: ../lib/nggmeta.lib.php:396
2778
  msgid "Format"
2779
  msgstr "Format"
2780
 
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "POT-Creation-Date: \n"
5
+ "PO-Revision-Date: 2008-04-25 20:15+0100\n"
6
  "Last-Translator: Alex Rabe\n"
7
  "Language-Team: Alex Rabe\n"
8
  "MIME-Version: 1.0\n"
19
  msgid "Sorry, NextGEN Gallery works only under WordPress 2.1 or higher"
20
  msgstr "Tut mir leid aber NextGEN Galerie arbeitet nur ab WordPress 2.1 und aufwärts"
21
 
22
+ #: ../nggallery.php:60
23
+ msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB higher"
24
+ msgstr "Tut mir leid aber NextGEN Galerie arbeitet mit einem Memory Limit von 16 MB un mehr"
25
+
26
+ #: ../nggfunctions.php:446
27
+ #: ../nggfunctions.php:461
28
  msgid "Watch gallery"
29
  msgstr "Galerie ansehen"
30
 
31
+ #: ../nggfunctions.php:455
32
+ #: ../nggfunctions.php:467
33
+ #: ../nggfunctions.php:752
34
  msgid "Photos"
35
  msgstr "Fotos"
36
 
37
+ #: ../nggfunctions.php:543
38
  msgid "Back"
39
  msgstr "Zurück"
40
 
41
+ #: ../nggfunctions.php:547
42
  msgid "Next"
43
  msgstr "Vor"
44
 
45
+ #: ../nggfunctions.php:550
46
  #: ../admin/manage.php:85
47
  #: ../admin/wp25/manage.php:85
48
  #: ../tinymce/window.php:37
50
  msgid "Picture"
51
  msgstr "Bild"
52
 
53
+ #: ../nggfunctions.php:550
54
  msgid "from"
55
  msgstr "von"
56
 
57
+ #: ../nggfunctions.php:722
58
  msgid "Overview"
59
  msgstr "Übersicht"
60
 
74
  msgid "[Show picture list]"
75
  msgstr "[Zeige Bilder-Liste]"
76
 
77
+ #: ../nggwidget.php:121
78
  msgid "Title:"
79
  msgstr "Titel:"
80
 
81
+ #: ../nggwidget.php:122
82
  msgid "Select Gallery:"
83
  msgstr "Wähle Galerie"
84
 
85
+ #: ../nggwidget.php:126
86
  msgid "All images"
87
  msgstr "Alle Bilder"
88
 
89
+ #: ../nggwidget.php:136
90
  msgid "Height:"
91
  msgstr "Höhe:"
92
 
93
+ #: ../nggwidget.php:137
94
  msgid "Width:"
95
  msgstr "Breite:"
96
 
97
+ #: ../nggwidget.php:191
98
  #, php-format
99
  msgid "NextGEN Gallery %d"
100
  msgstr "NextGEN Gallery %d"
101
 
102
+ #: ../nggwidget.php:207
103
  msgid "NextGEN Gallery Widgets"
104
  msgstr "NextGEN Gallery Widgets"
105
 
106
+ #: ../nggwidget.php:208
107
  msgid "How many NextGEN Gallery widgets would you like?"
108
  msgstr "Wie viele NextGEN Gallery Widgets möchtest du haben ?"
109
 
110
+ #: ../nggwidget.php:212
111
  #: ../admin/uploadtab.php:193
112
  msgid "Save"
113
  msgstr "Speichern"
114
 
115
+ #: ../nggwidget.php:304
116
  msgid "Title :"
117
  msgstr "Titel :"
118
 
119
+ #: ../nggwidget.php:309
120
  msgid "Show :"
121
  msgstr "Zeige als :"
122
 
123
+ #: ../nggwidget.php:314
124
+ #: ../admin/settings.php:102
125
+ #: ../admin/settings.php:295
126
  #: ../admin/wp25/settings.php:99
127
  #: ../admin/wp25/settings.php:285
128
  msgid "Thumbnails"
129
  msgstr "Thumbnails"
130
 
131
+ #: ../nggwidget.php:315
132
  msgid "Orginal images"
133
  msgstr "Orginal Bilder"
134
 
135
+ #: ../nggwidget.php:321
136
+ #: ../admin/settings.php:560
137
  #: ../admin/wp25/settings.php:542
138
  msgid "random"
139
  msgstr "Zufall"
140
 
141
+ #: ../nggwidget.php:322
142
  msgid "recent added "
143
  msgstr "zuletzt hinzugefügt"
144
 
145
+ #: ../nggwidget.php:326
146
  msgid "Width x Height :"
147
  msgstr "Breite x Höhe :"
148
 
149
+ #: ../nggwidget.php:332
150
  msgid "Select :"
151
  msgstr "Wähle :"
152
 
153
+ #: ../nggwidget.php:334
154
  msgid "All galleries"
155
  msgstr "Alle Galerien"
156
 
157
+ #: ../nggwidget.php:335
158
  msgid "Only which are not listed"
159
  msgstr "Nur ungelistete"
160
 
161
+ #: ../nggwidget.php:336
162
  msgid "Only which are listed"
163
  msgstr "Nur gelistete"
164
 
165
+ #: ../nggwidget.php:341
166
  msgid "Gallery ID :"
167
  msgstr "Galerie ID :"
168
 
169
+ #: ../nggwidget.php:343
170
  msgid "Gallery IDs, separated by commas."
171
  msgstr "Galerie ID's, mit Kommas getrennt"
172
 
276
  msgstr "Übersetze das Plugin"
277
 
278
  #: ../admin/about.php:32
 
279
  msgid "To help people to work with this plugin, I would like to have it in all avaivable languages"
280
  msgstr "Um jedem das Arbeiten mit diesem Plugin zu vereinfachen würde ich es gerne in allen verfügbaren Sprachen anbieten"
281
 
285
  msgstr "Zeig Dich für diese Arbeit per PayPal dankbar"
286
 
287
  #: ../admin/about.php:44
 
288
  msgid "No doubt a very usefull and easy motivation :-)"
289
  msgstr "Kein Zweifel, eine schöne und simple Motivationshilfe"
290
 
324
  msgid "No gallery selected !"
325
  msgstr "Keine Galerie ausgewählt !"
326
 
327
+ #: ../admin/addgallery.php:111
328
+ #: ../admin/wp25/addgallery.php:95
329
  msgid "Image Files"
330
  msgstr "Bilder"
331
 
332
+ #: ../admin/addgallery.php:131
333
+ #: ../admin/addgallery.php:161
334
+ #: ../admin/wp25/addgallery.php:114
335
+ #: ../admin/wp25/addgallery.php:144
336
  msgid "remove"
337
  msgstr "Entfernen"
338
 
339
+ #: ../admin/addgallery.php:132
340
+ #: ../admin/wp25/addgallery.php:115
341
  msgid "Browse..."
342
  msgstr "Durchsuche..."
343
 
344
+ #: ../admin/addgallery.php:133
345
+ #: ../admin/addgallery.php:311
346
+ #: ../admin/wp25/addgallery.php:116
347
+ #: ../admin/wp25/addgallery.php:287
348
  msgid "Upload images"
349
  msgstr "Bilder hochladen"
350
 
351
+ #: ../admin/addgallery.php:177
352
+ #: ../admin/addgallery.php:189
353
+ #: ../admin/wp25/addgallery.php:160
354
+ #: ../admin/wp25/addgallery.php:172
355
  msgid "Add new gallery"
356
  msgstr "Neue Galerie erstellen"
357
 
358
+ #: ../admin/addgallery.php:179
359
+ #: ../admin/addgallery.php:210
360
+ #: ../admin/wp25/addgallery.php:162
361
+ #: ../admin/wp25/addgallery.php:191
362
  msgid "Upload a Zip-File"
363
  msgstr "Zip-Datei hochladen"
364
 
365
+ #: ../admin/addgallery.php:182
366
+ #: ../admin/addgallery.php:250
367
+ #: ../admin/wp25/addgallery.php:165
368
+ #: ../admin/wp25/addgallery.php:229
369
  msgid "Import image folder"
370
  msgstr "Bilder-Verzeichnis importieren"
371
 
372
+ #: ../admin/addgallery.php:184
373
+ #: ../admin/addgallery.php:274
374
+ #: ../admin/wp25/addgallery.php:167
375
+ #: ../admin/wp25/addgallery.php:251
376
  msgid "Upload Images"
377
  msgstr "Bilder hochladen"
378
 
379
+ #: ../admin/addgallery.php:195
380
+ #: ../admin/wp25/addgallery.php:177
381
  msgid "New Gallery"
382
  msgstr "Neue Galerie"
383
 
384
+ #: ../admin/addgallery.php:198
385
+ #: ../admin/wp25/addgallery.php:180
386
  msgid "Create a new , empty gallery below the folder"
387
  msgstr "Erstelle eine neue, leere Galerie unter dem Verzeichnis"
388
 
389
+ #: ../admin/addgallery.php:200
390
+ #: ../admin/wp25/addgallery.php:182
391
  msgid "Allowed characters for file and folder names are"
392
  msgstr "Erlaubte Charaktere für die Datei- und Verzeichnisnamen sind"
393
 
394
+ #: ../admin/addgallery.php:203
395
+ #: ../admin/wp25/addgallery.php:185
396
  msgid "Add gallery"
397
  msgstr "Galerie hinzufügen"
398
 
399
+ #: ../admin/addgallery.php:216
400
+ #: ../admin/wp25/addgallery.php:196
401
  msgid "Select Zip-File"
402
  msgstr "Wähle Zip-Datei"
403
 
404
+ #: ../admin/addgallery.php:218
405
+ #: ../admin/wp25/addgallery.php:198
406
  msgid "Upload a zip file with images"
407
  msgstr "Lade eine Zip-Datei mit Bildern hoch"
408
 
409
+ #: ../admin/addgallery.php:221
410
+ #: ../admin/addgallery.php:284
411
+ #: ../admin/wp25/addgallery.php:201
412
+ #: ../admin/wp25/addgallery.php:260
413
  msgid "in to"
414
  msgstr "in"
415
 
416
+ #: ../admin/addgallery.php:223
417
+ #: ../admin/wp25/addgallery.php:203
418
  msgid "a new gallery"
419
  msgstr "eine neue Galerie"
420
 
421
+ #: ../admin/addgallery.php:233
422
+ #: ../admin/addgallery.php:296
423
+ #: ../admin/wp25/addgallery.php:213
424
+ #: ../admin/wp25/addgallery.php:272
425
  msgid "Note : The upload limit on your server is "
426
  msgstr "Hinweis : Das Upload-Limit auf dem Server beträgt "
427
 
428
+ #: ../admin/addgallery.php:237
429
+ #: ../admin/addgallery.php:262
430
+ #: ../admin/addgallery.php:300
431
+ #: ../admin/wp25/addgallery.php:217
432
+ #: ../admin/wp25/addgallery.php:240
433
+ #: ../admin/wp25/addgallery.php:276
434
  msgid "Add Metadata :"
435
  msgstr "Metadaten hinzufügen :"
436
 
437
+ #: ../admin/addgallery.php:239
438
+ #: ../admin/addgallery.php:264
439
+ #: ../admin/addgallery.php:302
440
+ #: ../admin/wp25/addgallery.php:219
441
+ #: ../admin/wp25/addgallery.php:242
442
+ #: ../admin/wp25/addgallery.php:278
443
  msgid "Import EXIF, IPTC or XMP data (if available)"
444
  msgstr "EXIF, IPTC oder XMP Daten importieren (wenn verfügbar)"
445
 
446
+ #: ../admin/addgallery.php:242
447
+ #: ../admin/wp25/addgallery.php:222
448
  msgid "Start upload"
449
  msgstr "Upload starten"
450
 
451
+ #: ../admin/addgallery.php:256
452
+ #: ../admin/wp25/addgallery.php:234
453
  msgid "Import from Server path:"
454
  msgstr "Importieren aus Server-Pfad:"
455
 
456
+ #: ../admin/addgallery.php:258
457
  msgid "Import a folder with images. Please note :"
458
  msgstr "Importiere ein Verzeichniss mit Bildern. Bitte beachte:"
459
 
460
+ #: ../admin/addgallery.php:259
461
  msgid "For safe-mode = ON you need to add the subfolder thumbs manually"
462
  msgstr "Da der Safe-Mode (PHP.INI) eingeschaltet ist, mußt Du das Unterverzeichnis für die Vorschaubilder (\"thumbs\") manuell (per FTP) anlegen"
463
 
464
+ #: ../admin/addgallery.php:267
465
+ #: ../admin/wp25/addgallery.php:245
466
  msgid "Import folder"
467
  msgstr "Verzeichnis importieren"
468
 
469
+ #: ../admin/addgallery.php:280
470
+ #: ../admin/wp25/addgallery.php:256
471
  msgid "Upload image"
472
  msgstr "Bild hochladen"
473
 
474
+ #: ../admin/addgallery.php:286
475
+ #: ../admin/wp25/addgallery.php:262
476
  msgid "Choose gallery"
477
  msgstr "Wähle Galerie"
478
 
479
+ #: ../admin/addgallery.php:307
480
+ #: ../admin/wp25/addgallery.php:283
481
  msgid "The batch upload requires Adobe Flash 9, disable it if you have problems"
482
  msgstr "Das Batch-Upload-Skript benötigt Adbode Flash 9, wenn es Probleme gibt deaktiviere es besser."
483
 
484
+ #: ../admin/addgallery.php:307
485
+ #: ../admin/wp25/addgallery.php:283
486
  msgid "Disable flash upload"
487
  msgstr "Deaktiviere Batch-Upload"
488
 
489
+ #: ../admin/addgallery.php:309
490
+ #: ../admin/wp25/addgallery.php:285
491
  msgid "Upload multiple files at once by ctrl/shift-selecting in dialog"
492
  msgstr "Wähle im Dialog mit Ctrl/Shift mehrere Bilder gleichzeitig aus."
493
 
494
+ #: ../admin/addgallery.php:309
495
+ #: ../admin/wp25/addgallery.php:285
496
  msgid "Enable flash based upload"
497
  msgstr "Aktiviere Flash Batch Uplaod"
498
 
499
+ #: ../admin/admin.php:75
500
  #: ../admin/functions.php:78
501
  #: ../admin/functions.php:82
502
  #: ../admin/functions.php:128
503
  #: ../admin/manage.php:64
504
  #: ../admin/manage.php:434
505
+ #: ../admin/settings.php:104
506
  #: ../admin/uploadtab.php:36
507
  #: ../admin/wp25/admin.php:72
508
  #: ../admin/wp25/functions.php:78
516
  msgid "Gallery"
517
  msgstr "Galerie"
518
 
519
+ #: ../admin/admin.php:76
520
  #: ../admin/wp25/admin.php:73
521
  msgid "Add Gallery"
522
  msgstr "Bilder/Galerie hinzufügen"
523
 
524
+ #: ../admin/admin.php:77
525
  #: ../admin/wp25/admin.php:74
526
  msgid "Manage Gallery"
527
  msgstr "Galerie verwalten"
528
 
529
+ #: ../admin/admin.php:78
530
  #: ../admin/wp25/admin.php:75
531
  #: ../tinymce/window.php:36
532
  #: ../tinymce3/window.php:36
533
  msgid "Album"
534
  msgstr "Album"
535
 
536
+ #: ../admin/admin.php:79
537
  #: ../admin/wp25/admin.php:76
538
  msgid "Options"
539
  msgstr "Optionen"
540
 
541
+ #: ../admin/admin.php:81
542
  #: ../admin/wp25/admin.php:78
543
  msgid "Style"
544
  msgstr "Style"
545
 
546
+ #: ../admin/admin.php:82
547
  #: ../admin/wp25/admin.php:79
548
  msgid "Setup Gallery"
549
  msgstr "Galerie Setup"
550
 
551
+ #: ../admin/admin.php:82
552
  #: ../admin/wp25/admin.php:79
553
  msgid "Setup"
554
  msgstr "Setup"
555
 
556
+ #: ../admin/admin.php:84
557
  #: ../admin/wp25/admin.php:81
558
  msgid "Roles"
559
  msgstr "Zugriff"
560
 
561
+ #: ../admin/admin.php:85
562
  #: ../admin/wp25/admin.php:82
563
  msgid "About this Gallery"
564
  msgstr "Über diese Galerie"
565
 
566
+ #: ../admin/admin.php:85
567
  #: ../admin/wp25/admin.php:82
568
  msgid "About"
569
  msgstr "Über"
570
 
571
+ #: ../admin/admin.php:87
572
  #: ../admin/wp25/admin.php:84
573
  #: ../admin/wp25/media-upload.php:11
574
  msgid "NextGEN Gallery"
578
  #: ../admin/album.php:37
579
  #: ../admin/wp25/album.php:19
580
  #: ../admin/wp25/album.php:36
581
+ #: ../admin/wp25/settings.php:33
582
  msgid "Update Successfully"
583
  msgstr "Update erfolgreich"
584
 
587
  msgid "Album deleted"
588
  msgstr "Album gelöscht"
589
 
590
+ #: ../admin/album.php:122
591
  #: ../admin/wp25/album.php:119
592
  msgid "Manage Albums"
593
  msgstr "Verwalte Alben"
594
 
595
+ #: ../admin/album.php:128
596
  #: ../admin/wp25/album.php:125
597
  #: ../tinymce/window.php:74
598
  #: ../tinymce3/window.php:74
599
  msgid "Select album"
600
  msgstr "Wähle Album"
601
 
602
+ #: ../admin/album.php:131
603
  #: ../admin/wp25/album.php:128
604
  msgid "No album selected"
605
  msgstr "Kein Album ausgewählt"
606
 
607
+ #: ../admin/album.php:144
608
  #: ../admin/wp25/album.php:141
609
  msgid "Add new album"
610
  msgstr "Album hinzufügen"
611
 
612
+ #: ../admin/album.php:148
613
  #: ../admin/manage.php:309
614
  #: ../admin/manage.php:580
615
  #: ../admin/wp25/album.php:146
618
  msgid "Delete"
619
  msgstr "Lösche"
620
 
621
+ #: ../admin/album.php:148
622
  #: ../admin/wp25/album.php:146
623
  msgid "Delete album ?"
624
  msgstr "Lösche Album ?"
625
 
626
+ #: ../admin/album.php:150
627
+ #: ../admin/settings.php:164
628
+ #: ../admin/settings.php:204
629
+ #: ../admin/settings.php:251
630
+ #: ../admin/settings.php:331
631
+ #: ../admin/settings.php:378
632
+ #: ../admin/settings.php:490
633
+ #: ../admin/settings.php:598
634
  #: ../admin/wpmu.php:98
635
  #: ../admin/wp25/album.php:148
636
  #: ../admin/wp25/settings.php:160
644
  msgid "Update"
645
  msgstr "Aktualisiere"
646
 
647
+ #: ../admin/album.php:158
648
  #: ../admin/wp25/album.php:157
649
  msgid "[Show all]"
650
  msgstr "[Alle zeigen]"
651
 
652
+ #: ../admin/album.php:159
653
  #: ../admin/wp25/album.php:158
654
  msgid "[Maximize]"
655
  msgstr "[Vergrößern]"
656
 
657
+ #: ../admin/album.php:160
658
  #: ../admin/wp25/album.php:159
659
  msgid "[Minimize]"
660
  msgstr "[Verkleinern]"
661
 
662
+ #: ../admin/album.php:162
663
  #: ../admin/wp25/album.php:161
664
  msgid "After you create and select a album, you can drag and drop a gallery into your album below"
665
  msgstr "Nachdem du ein Album erstellt und ausgewählt hast, kannst du per Drag & Drop eine Galerie in das Album ziehen"
666
 
667
+ #: ../admin/album.php:169
668
  #: ../admin/wp25/album.php:168
669
  msgid "Select Gallery"
670
  msgstr "Wähle Galerie"
671
 
672
+ #: ../admin/album.php:208
673
  #: ../admin/wp25/album.php:207
674
  msgid "Album Page ID"
675
  msgstr "Album Seiten ID (Page ID)"
676
 
677
+ #: ../admin/album.php:220
678
  #: ../admin/wp25/album.php:219
679
  msgid "No album selected!"
680
  msgstr "Kein Album ausgewählt"
681
 
682
+ #: ../admin/album.php:256
683
  #: ../admin/manage.php:283
684
  #: ../admin/manage.php:535
685
  #: ../admin/wp25/album.php:255
688
  msgid "ID"
689
  msgstr "ID"
690
 
691
+ #: ../admin/album.php:257
692
  #: ../admin/wp25/album.php:256
693
  msgid "Name"
694
  msgstr "Name"
695
 
696
+ #: ../admin/album.php:258
697
  #: ../admin/manage.php:285
698
  #: ../admin/manage.php:446
699
  #: ../admin/js/uploadtab.js.php:109
700
  #: ../admin/wp25/album.php:257
701
  #: ../admin/wp25/manage.php:290
702
  #: ../admin/wp25/manage.php:415
703
+ #: ../lib/nggmeta.lib.php:375
704
  msgid "Title"
705
  msgstr "Titel"
706
 
707
+ #: ../admin/album.php:259
708
  #: ../admin/wp25/album.php:258
709
  msgid "Page"
710
  msgstr "Seite"
752
  #: ../admin/wp25/functions.php:45
753
  #: ../admin/wp25/functions.php:55
754
  #: ../admin/wp25/functions.php:525
755
+ #: ../lib/nggallery.lib.php:299
756
  msgid "Unable to create directory "
757
  msgstr "Kann Verzeichnis nicht erstellen "
758
 
1028
  #: ../admin/wp25/manage.php:291
1029
  #: ../admin/wp25/manage.php:434
1030
  #: ../admin/wp25/manage.php:517
1031
+ #: ../admin/wp25/media-upload.php:186
1032
  #: ../admin/wp25/style.php:109
1033
  msgid "Description"
1034
  msgstr "Beschreibung"
1211
  msgstr "Sortiere Bilder"
1212
 
1213
  #: ../admin/manage.php:536
1214
+ #: ../admin/settings.php:320
1215
  #: ../admin/wp25/manage.php:512
1216
  #: ../admin/wp25/settings.php:310
1217
  msgid "File name"
1220
  #: ../admin/manage.php:538
1221
  #: ../admin/js/uploadtab.js.php:106
1222
  #: ../admin/wp25/manage.php:514
1223
+ #: ../admin/wp25/media-upload.php:207
1224
  msgid "Thumbnail"
1225
  msgstr "Thumbnail"
1226
 
1576
  #: ../admin/settings.php:33
1577
  #: ../admin/style.php:16
1578
  #: ../admin/wpmu.php:32
 
1579
  #: ../admin/wp25/style.php:16
1580
  #: ../admin/wp25/wpmu.php:32
1581
  msgid "Update successfully"
1586
  msgid "Cache cleared"
1587
  msgstr "Cache löschen"
1588
 
1589
+ #: ../admin/settings.php:101
1590
+ #: ../admin/settings.php:113
1591
  #: ../admin/wp25/settings.php:98
1592
  #: ../admin/wp25/settings.php:110
1593
  msgid "General Options"
1594
  msgstr "Allg. Optionen"
1595
 
1596
+ #: ../admin/settings.php:103
1597
  #: ../admin/wp25/settings.php:100
1598
  msgid "Images"
1599
  msgstr "Bilder"
1600
 
1601
+ #: ../admin/settings.php:105
1602
+ #: ../admin/settings.php:339
1603
  #: ../admin/wp25/settings.php:102
1604
  #: ../admin/wp25/settings.php:328
1605
  msgid "Effects"
1606
  msgstr "Effekte"
1607
 
1608
+ #: ../admin/settings.php:106
1609
+ #: ../admin/settings.php:392
1610
  #: ../admin/wp25/settings.php:103
1611
  #: ../admin/wp25/settings.php:379
1612
  #: ../tinymce/window.php:123
1614
  msgid "Watermark"
1615
  msgstr "Wasserzeichen"
1616
 
1617
+ #: ../admin/settings.php:107
1618
+ #: ../admin/settings.php:296
1619
+ #: ../admin/settings.php:500
1620
  #: ../admin/wp25/settings.php:104
1621
  #: ../admin/wp25/settings.php:286
1622
  #: ../admin/wp25/settings.php:482
1625
  msgid "Slideshow"
1626
  msgstr "Slideshow"
1627
 
1628
+ #: ../admin/settings.php:120
1629
  #: ../admin/wpmu.php:48
1630
  #: ../admin/wp25/settings.php:116
1631
  #: ../admin/wp25/wpmu.php:48
1632
  msgid "Gallery path"
1633
  msgstr "Galerie-Pfad"
1634
 
1635
+ #: ../admin/settings.php:122
1636
  #: ../admin/wp25/settings.php:118
1637
  msgid "This is the default path for all galleries"
1638
  msgstr "Dies ist der Standard-Pfad für alle Galerien"
1639
 
1640
+ #: ../admin/settings.php:133
1641
  #: ../admin/wp25/settings.php:129
1642
  msgid "Delete image files"
1643
  msgstr "Lösche Bilddateien"
1644
 
1645
+ #: ../admin/settings.php:135
1646
  #: ../admin/wp25/settings.php:131
1647
  msgid "Delete files, when removing a gallery in the database"
1648
  msgstr "Löscht auch die Dateien, falls die Galerie aus der Datenbank entfernt wird"
1649
 
1650
+ #: ../admin/settings.php:138
1651
  #: ../admin/wp25/settings.php:134
1652
  msgid "Activate permalinks"
1653
  msgstr "Aktiviere Permalinks"
1654
 
1655
+ #: ../admin/settings.php:140
1656
  #: ../admin/wp25/settings.php:136
1657
  msgid "When you activate this option, you need to update your permalink structure one time."
1658
  msgstr "Wenn du diese Option aktivierst, muss du einmal die Permalink Struktur aktualisieren."
1659
 
1660
+ #: ../admin/settings.php:143
1661
  #: ../admin/wp25/settings.php:139
1662
  msgid "Tags / Categories"
1663
  msgstr "Stichwörter / Kategorien"
1664
 
1665
+ #: ../admin/settings.php:146
1666
  #: ../admin/wp25/settings.php:142
1667
  msgid "Activate related images"
1668
  msgstr "Verwandte Bilder anzeigen"
1669
 
1670
+ #: ../admin/settings.php:148
1671
  #: ../admin/wp25/settings.php:144
1672
  msgid "This option will append related images to every post"
1673
  msgstr "Diese Option hängt verwandte Bilder an jeden Beitrag"
1674
 
1675
+ #: ../admin/settings.php:152
1676
  #: ../admin/wp25/settings.php:148
1677
  msgid "Match with"
1678
  msgstr "Vergleiche mit"
1679
 
1680
+ #: ../admin/settings.php:153
1681
  #: ../admin/wp25/settings.php:149
1682
  msgid "Categories"
1683
  msgstr "Kategorien"
1684
 
1685
+ #: ../admin/settings.php:154
1686
  #: ../admin/wp25/settings.php:150
1687
+ #: ../lib/nggmeta.lib.php:377
1688
  msgid "Tags"
1689
  msgstr "Stichwörter"
1690
 
1691
+ #: ../admin/settings.php:154
1692
  #: ../admin/wp25/settings.php:150
1693
  msgid " (require WordPress 2.3 or higher)"
1694
  msgstr " (benötigt WordPress 2.3 oder höher)"
1695
 
1696
+ #: ../admin/settings.php:158
1697
  #: ../admin/wp25/settings.php:154
1698
  msgid "Max. number of images"
1699
  msgstr "Max. Anzahl der Bilder"
1700
 
1701
+ #: ../admin/settings.php:160
1702
  #: ../admin/wp25/settings.php:156
1703
  msgid "0 will show all images"
1704
  msgstr "0 zeige alle verwandten Bilder"
1705
 
1706
+ #: ../admin/settings.php:172
1707
  #: ../admin/wp25/settings.php:167
1708
  msgid "Thumbnail settings"
1709
  msgstr "Thumbnail Einstellungen"
1710
 
1711
+ #: ../admin/settings.php:177
1712
  #: ../admin/wp25/settings.php:171
1713
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1714
  msgstr "Bitte beachten : Änderungen der Einstellungen werden erst übernommen, wenn Du neue Thumbnails unter -> \"Gallery verwalten\" erstellst"
1715
 
1716
+ #: ../admin/settings.php:180
1717
  #: ../admin/wp25/settings.php:174
1718
  msgid "Width x height (in pixel)"
1719
  msgstr "Breite x Höhe (in Pixel)"
1720
 
1721
+ #: ../admin/settings.php:182
1722
  #: ../admin/wp25/settings.php:176
1723
  msgid "These values are maximum values "
1724
  msgstr "Diese Angaben sind maximale Angaben."
1725
 
1726
+ #: ../admin/settings.php:185
1727
  #: ../admin/wp25/settings.php:179
1728
  msgid "Set fix dimension"
1729
  msgstr "Setze fixe Größe"
1730
 
1731
+ #: ../admin/settings.php:187
1732
  #: ../admin/wp25/settings.php:181
1733
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1734
  msgstr "Ignoriere Bildseitenverhältnis"
1735
 
1736
+ #: ../admin/settings.php:190
1737
  #: ../admin/wp25/settings.php:184
1738
  msgid "Crop square thumbnail from image"
1739
  msgstr "Mittige Thumbnails aus Bildern ausschneiden"
1740
 
1741
+ #: ../admin/settings.php:192
1742
  #: ../admin/wp25/settings.php:186
1743
  msgid "Create square thumbnails, use only the width setting :"
1744
  msgstr "Erstellt viereckige Thumbnails, nutzt nur den Wert der Breite :"
1745
 
1746
+ #: ../admin/settings.php:195
1747
  #: ../admin/wp25/settings.php:189
1748
  msgid "Thumbnail quality"
1749
  msgstr "Thumbnail Qualität"
1750
 
1751
+ #: ../admin/settings.php:199
1752
+ #: ../admin/settings.php:231
1753
  #: ../admin/wp25/settings.php:193
1754
  #: ../admin/wp25/settings.php:223
1755
  msgid "Resample Mode"
1756
  msgstr "Resample Modus"
1757
 
1758
+ #: ../admin/settings.php:201
1759
+ #: ../admin/settings.php:234
1760
  #: ../admin/wp25/settings.php:195
1761
  #: ../admin/wp25/settings.php:226
1762
  msgid "Value between 1-5 (higher value, more CPU load)"
1763
  msgstr "Wähle zwischen 1-5 (je höhere desto länger braucht der Server)"
1764
 
1765
+ #: ../admin/settings.php:212
1766
  #: ../admin/wp25/settings.php:205
1767
  msgid "Image settings"
1768
  msgstr "Bild Einstellungen"
1769
 
1770
+ #: ../admin/settings.php:219
1771
  #: ../admin/wp25/settings.php:211
1772
  msgid "Resize Images"
1773
  msgstr "Bilder verkleinern"
1774
 
1775
+ #: ../admin/settings.php:223
1776
  #: ../admin/wp25/settings.php:215
1777
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1778
  msgstr "Breite x Höhe (in Pixel). NextGEN Galerie beachtet das Seitenverhältnis."
1779
 
1780
+ #: ../admin/settings.php:226
1781
  #: ../admin/wp25/settings.php:218
1782
  msgid "Image quality"
1783
  msgstr "Bild Qualität"
1784
 
1785
+ #: ../admin/settings.php:237
1786
  #: ../admin/wp25/settings.php:229
1787
  msgid "Single picture"
1788
  msgstr "Einzelbilder"
1789
 
1790
+ #: ../admin/settings.php:240
1791
  #: ../admin/wp25/settings.php:232
1792
  msgid "Cache single pictures"
1793
  msgstr "Nutze Cache für Einzelbidler"
1794
 
1795
+ #: ../admin/settings.php:243
1796
  #: ../admin/wp25/settings.php:235
1797
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1798
  msgstr "Erstellt ein Cache-Bild für jedes Einzelbild (singlepic). Reduziert die CPU Belastung."
1799
 
1800
+ #: ../admin/settings.php:246
1801
  #: ../admin/wp25/settings.php:238
1802
  msgid "Clear cache folder"
1803
  msgstr "Lösche Cache Verzeichnis"
1804
 
1805
+ #: ../admin/settings.php:248
1806
  #: ../admin/wp25/settings.php:240
1807
  msgid "Proceed now"
1808
  msgstr "Jetzt durchführen"
1809
 
1810
+ #: ../admin/settings.php:259
1811
  #: ../admin/wp25/settings.php:250
1812
  msgid "Gallery settings"
1813
  msgstr "Galerie Einstellungen"
1814
 
1815
+ #: ../admin/settings.php:275
1816
  #: ../admin/wp25/settings.php:265
1817
  msgid "Deactivate gallery page link"
1818
  msgstr "Keine Seitenverzweigung"
1819
 
1820
+ #: ../admin/settings.php:277
1821
  #: ../admin/wp25/settings.php:267
1822
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1823
  msgstr "Ein Album benötigt dann keinen Link zur Seite. Die Galerie wird direkt angezeigt."
1824
 
1825
+ #: ../admin/settings.php:281
1826
  #: ../admin/wp25/settings.php:271
1827
  msgid "Number of images per page"
1828
  msgstr "Anzahl der Bilder pro Seite"
1829
 
1830
+ #: ../admin/settings.php:283
1831
  #: ../admin/wp25/settings.php:273
1832
  msgid "0 will disable pagination, all images on one page"
1833
  msgstr "0 schaltet Blätterfunktion ab ( = alle Bilder auf einer Seite )"
1834
 
1835
+ #: ../admin/settings.php:287
1836
  #: ../admin/wp25/settings.php:277
1837
  msgid "Integrate slideshow"
1838
  msgstr "Slideshow verwenden"
1839
 
1840
+ #: ../admin/settings.php:294
1841
  #: ../admin/wp25/settings.php:284
1842
  msgid "Show first"
1843
  msgstr "Zeige als Erstes"
1844
 
1845
+ #: ../admin/settings.php:300
1846
  #: ../admin/wp25/settings.php:290
1847
  msgid "Show thumbnail description"
1848
  msgstr "Zeige Bildbeschreibung"
1849
 
1850
+ #: ../admin/settings.php:301
1851
+ #: ../admin/settings.php:351
1852
  #: ../admin/js/uploadtab.js.php:117
1853
+ #: ../admin/wp25/media-upload.php:193
1854
  #: ../admin/wp25/settings.php:291
1855
  #: ../admin/wp25/settings.php:339
1856
  msgid "None"
1857
  msgstr "Keiner"
1858
 
1859
+ #: ../admin/settings.php:302
1860
  #: ../admin/wp25/settings.php:292
1861
  msgid "Description text"
1862
  msgstr "Beschreibung"
1863
 
1864
+ #: ../admin/settings.php:303
1865
+ #: ../admin/settings.php:321
1866
  #: ../admin/wp25/settings.php:293
1867
  #: ../admin/wp25/settings.php:311
1868
  msgid "Alt / Title text"
1869
  msgstr "Alt / Titel Text"
1870
 
1871
+ #: ../admin/settings.php:307
1872
  #: ../admin/wp25/settings.php:297
1873
  msgid "Show ImageBrowser"
1874
  msgstr "Zeige Bilder Browser"
1875
 
1876
+ #: ../admin/settings.php:309
1877
  #: ../admin/wp25/settings.php:299
1878
  msgid "The gallery will open the ImageBrowser instead the effect."
1879
  msgstr "Es wird der Bilder Browser angezeigt (Kein JavaScript Effekt)"
1880
 
1881
+ #: ../admin/settings.php:313
1882
  #: ../admin/wp25/settings.php:303
1883
  msgid "Sort options"
1884
  msgstr "Sortierung"
1885
 
1886
+ #: ../admin/settings.php:316
1887
  #: ../admin/wp25/settings.php:306
1888
  msgid "Sort thumbnails"
1889
  msgstr "Thumbnails sortieren"
1890
 
1891
+ #: ../admin/settings.php:318
1892
  #: ../admin/wp25/settings.php:308
1893
  msgid "Custom order"
1894
  msgstr "Benutzerdefiniert"
1895
 
1896
+ #: ../admin/settings.php:319
1897
  #: ../admin/wp25/settings.php:309
1898
  msgid "Image ID"
1899
  msgstr "Bilder ID"
1900
 
1901
+ #: ../admin/settings.php:325
1902
  #: ../admin/wp25/settings.php:315
1903
  msgid "Sort direction"
1904
  msgstr "Sortierreihenfolge"
1905
 
1906
+ #: ../admin/settings.php:326
1907
  #: ../admin/wp25/settings.php:316
1908
  msgid "Ascending"
1909
  msgstr "Aufsteigend"
1910
 
1911
+ #: ../admin/settings.php:327
1912
  #: ../admin/wp25/settings.php:317
1913
  msgid "Descending"
1914
  msgstr "Absteigend"
1915
 
1916
+ #: ../admin/settings.php:343
1917
  #: ../admin/wp25/settings.php:332
1918
  msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
1919
  msgstr "Hier kannst Du den Effekt für die Thumbnails auswählen. NextGEN Galerie wird den benötigten HTML Code verwenden. Bitte beachte, das nur der Thickbox Effekt automatisch in Dein Theme von Wordpress integriert wird. Alle anderen Effekte mußt Du selbst in die header.php eintragen (JS)."
1920
 
1921
+ #: ../admin/settings.php:344
1922
  #: ../admin/wp25/settings.php:333
1923
  msgid "With the placeholder"
1924
  msgstr "Mit Platzhalter"
1925
 
1926
+ #: ../admin/settings.php:344
1927
  #: ../admin/wp25/settings.php:333
1928
  msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
1929
  msgstr "Du kannst eine Navigation durch die Bilder aktivieren (hängt vom Effekt ab). Ändere nur die Codezeile falls Du einen anderen Effekt für die Thumbnails verwendest oder einfach weißt, was Du tust."
1930
 
1931
+ #: ../admin/settings.php:348
1932
  #: ../admin/wp25/settings.php:336
1933
  msgid "JavaScript Thumbnail effect"
1934
  msgstr "JavaScript Thumbnail Effekt"
1935
 
1936
+ #: ../admin/settings.php:352
1937
  #: ../admin/wp25/settings.php:340
1938
  msgid "Thickbox"
1939
  msgstr "Thickbox"
1940
 
1941
+ #: ../admin/settings.php:353
1942
  #: ../admin/wp25/settings.php:341
1943
  msgid "Lightbox"
1944
  msgstr "Lightbox"
1945
 
1946
+ #: ../admin/settings.php:354
1947
  #: ../admin/wp25/settings.php:342
1948
  msgid "Highslide"
1949
  msgstr "Highslide"
1950
 
1951
+ #: ../admin/settings.php:355
1952
  #: ../admin/wp25/settings.php:343
1953
  msgid "Shutter"
1954
  msgstr "Shutter"
1955
 
1956
+ #: ../admin/settings.php:356
1957
  #: ../admin/wp25/settings.php:344
1958
  msgid "Custom"
1959
  msgstr "Eigener"
1960
 
1961
+ #: ../admin/settings.php:361
1962
  #: ../admin/wp25/settings.php:349
1963
  msgid "Link Code line"
1964
  msgstr "Link Code Zeile"
1965
 
1966
+ #: ../admin/settings.php:369
1967
  #: ../admin/wp25/settings.php:357
1968
  msgid "Select loading image"
1969
  msgstr "Wähle Ladeanimation"
1970
 
1971
+ #: ../admin/settings.php:393
1972
  #: ../admin/wp25/settings.php:380
1973
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1974
  msgstr "Bitte beachten : Das Wasserzeichen kann nur unter der Galerieverwaltung gesetzt werden. "
1975
 
1976
+ #: ../admin/settings.php:398
1977
  #: ../admin/wp25/settings.php:385
1978
  msgid "Preview"
1979
  msgstr "Vorschau"
1980
 
1981
+ #: ../admin/settings.php:400
1982
+ #: ../admin/settings.php:404
1983
  #: ../admin/wp25/settings.php:387
1984
  #: ../admin/wp25/settings.php:392
1985
  msgid "Position"
1986
  msgstr "Position"
1987
 
1988
+ #: ../admin/settings.php:424
1989
  #: ../admin/wp25/settings.php:412
1990
  msgid "Offset"
1991
  msgstr "Abstand"
1992
 
1993
+ #: ../admin/settings.php:442
1994
  #: ../admin/wp25/settings.php:428
1995
  msgid "Use image as watermark"
1996
  msgstr "Benutze Bild als Wasserzeichen"
1997
 
1998
+ #: ../admin/settings.php:445
1999
  #: ../admin/wp25/settings.php:431
2000
  msgid "URL to file"
2001
  msgstr "URL zur Datei"
2002
 
2003
+ #: ../admin/settings.php:447
2004
  #: ../admin/wp25/settings.php:433
2005
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
2006
  msgstr "Der Dateizugriff von URL's ist auf diesem Server deaktiviert (allow_url_fopen)"
2007
 
2008
+ #: ../admin/settings.php:453
2009
  #: ../admin/wp25/settings.php:436
2010
  msgid "Use text as watermark"
2011
  msgstr "Benutze Text als Wasserzeichen"
2012
 
2013
+ #: ../admin/settings.php:456
2014
  #: ../admin/wp25/settings.php:439
2015
  msgid "Font"
2016
  msgstr "Schriftart"
2017
 
2018
+ #: ../admin/settings.php:465
2019
  #: ../admin/wp25/settings.php:448
2020
  msgid "This function will not work, cause you need the FreeType library"
2021
  msgstr "Diese Funktion benötigt die FreeType Bibliothek"
2022
 
2023
+ #: ../admin/settings.php:467
2024
  #: ../admin/wp25/settings.php:450
2025
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
2026
  msgstr "Du kannst mehr Schriftarten in das Verzeichniss <strong>nggallery/fonts</strong> hochladen."
2027
 
2028
+ #: ../admin/settings.php:471
2029
+ #: ../admin/wp25/media-upload.php:203
2030
  #: ../admin/wp25/settings.php:454
2031
  msgid "Size"
2032
  msgstr "Größe"
2033
 
2034
+ #: ../admin/settings.php:475
2035
  #: ../admin/wp25/settings.php:458
2036
  msgid "Color"
2037
  msgstr "Farbe"
2038
 
2039
+ #: ../admin/settings.php:477
2040
  #: ../admin/wp25/settings.php:460
2041
  msgid "(hex w/o #)"
2042
  msgstr "(hex w/o #)"
2043
 
2044
+ #: ../admin/settings.php:480
2045
  #: ../admin/wp25/settings.php:463
2046
  msgid "Text"
2047
  msgstr "Text"
2048
 
2049
+ #: ../admin/settings.php:484
2050
  #: ../admin/wp25/settings.php:467
2051
  msgid "Opaque"
2052
  msgstr "Transparenz"
2053
 
2054
+ #: ../admin/settings.php:502
2055
  #: ../admin/wp25/settings.php:483
2056
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
2057
  msgstr "Die Datei imagerotator.swf ist nicht im Plugin Verzeichniss -> so wird die Slideshow nicht funktionieren."
2058
 
2059
+ #: ../admin/settings.php:503
2060
  #: ../admin/wp25/settings.php:484
2061
  msgid "The settings are used in the JW Image Rotator Version"
2062
  msgstr "Die Einstellungen werden im JW Image Rotator benutzt , in der Version"
2063
 
2064
+ #: ../admin/settings.php:504
2065
  #: ../admin/wp25/settings.php:485
2066
  msgid "See more information for the Flash Player on the web page"
2067
  msgstr "Weitere Informationen auf der Flash Player Homepage"
2068
 
2069
+ #: ../admin/settings.php:507
2070
  #: ../admin/wp25/settings.php:489
2071
  msgid "Default size (W x H)"
2072
  msgstr "Standard Größe (B x H)"
2073
 
2074
+ #: ../admin/settings.php:512
2075
  #: ../admin/wp25/settings.php:494
2076
  msgid "Shuffle mode"
2077
  msgstr "Shuffle Modus"
2078
 
2079
+ #: ../admin/settings.php:516
2080
  #: ../admin/wp25/settings.php:498
2081
  msgid "Show next image on click"
2082
  msgstr "Zeige nächstes Bild bei Klick"
2083
 
2084
+ #: ../admin/settings.php:520
2085
  #: ../admin/wp25/settings.php:502
2086
  msgid "Show navigation bar"
2087
  msgstr "Zeige Navigations-Leiste"
2088
 
2089
+ #: ../admin/settings.php:524
2090
  #: ../admin/wp25/settings.php:506
2091
  msgid "Show loading icon"
2092
  msgstr "Zeige Lade-Bildchen"
2093
 
2094
+ #: ../admin/settings.php:528
2095
  #: ../admin/wp25/settings.php:510
2096
  msgid "Use watermark logo"
2097
  msgstr "Wasserzeichen anzeigen"
2098
 
2099
+ #: ../admin/settings.php:530
2100
  #: ../admin/wp25/settings.php:512
2101
  msgid "You can change the logo at the watermark settings"
2102
  msgstr "Du kannst den Pfad in Einstellungen für da Wasserzeichen angeben"
2103
 
2104
+ #: ../admin/settings.php:533
2105
  #: ../admin/wp25/settings.php:515
2106
  msgid "Stretch image"
2107
  msgstr "Bild dehnen"
2108
 
2109
+ #: ../admin/settings.php:536
2110
  #: ../admin/wp25/settings.php:518
2111
  msgid "true"
2112
  msgstr "Ja"
2113
 
2114
+ #: ../admin/settings.php:537
2115
  #: ../admin/wp25/settings.php:519
2116
  msgid "false"
2117
  msgstr "Nein"
2118
 
2119
+ #: ../admin/settings.php:538
2120
  #: ../admin/wp25/settings.php:520
2121
  msgid "fit"
2122
  msgstr "Passend"
2123
 
2124
+ #: ../admin/settings.php:539
2125
  #: ../admin/wp25/settings.php:521
2126
  msgid "none"
2127
  msgstr "keiner"
2128
 
2129
+ #: ../admin/settings.php:544
2130
  #: ../admin/wp25/settings.php:526
2131
  msgid "Duration time"
2132
  msgstr "Dauer"
2133
 
2134
+ #: ../admin/settings.php:545
2135
  #: ../admin/wp25/settings.php:527
2136
  msgid "sec."
2137
  msgstr "Sek."
2138
 
2139
+ #: ../admin/settings.php:548
2140
  #: ../admin/wp25/settings.php:530
2141
  msgid "Transition / Fade effect"
2142
  msgstr "Fade Effekt"
2143
 
2144
+ #: ../admin/settings.php:551
2145
  #: ../admin/wp25/settings.php:533
2146
  msgid "fade"
2147
  msgstr "Fade"
2148
 
2149
+ #: ../admin/settings.php:552
2150
  #: ../admin/wp25/settings.php:534
2151
  msgid "bgfade"
2152
  msgstr "BGFade"
2153
 
2154
+ #: ../admin/settings.php:553
2155
  #: ../admin/wp25/settings.php:535
2156
  msgid "slowfade"
2157
  msgstr "Slowfade"
2158
 
2159
+ #: ../admin/settings.php:554
2160
  #: ../admin/wp25/settings.php:536
2161
  msgid "circles"
2162
  msgstr "Kreise"
2163
 
2164
+ #: ../admin/settings.php:555
2165
  #: ../admin/wp25/settings.php:537
2166
  msgid "bubbles"
2167
  msgstr "Blasen"
2168
 
2169
+ #: ../admin/settings.php:556
2170
  #: ../admin/wp25/settings.php:538
2171
  msgid "blocks"
2172
  msgstr "Blöcke"
2173
 
2174
+ #: ../admin/settings.php:557
2175
  #: ../admin/wp25/settings.php:539
2176
  msgid "fluids"
2177
  msgstr "Fluids"
2178
 
2179
+ #: ../admin/settings.php:558
2180
  #: ../admin/wp25/settings.php:540
2181
  msgid "flash"
2182
  msgstr "Flash"
2183
 
2184
+ #: ../admin/settings.php:559
2185
  #: ../admin/wp25/settings.php:541
2186
  msgid "lines"
2187
  msgstr "Linien"
2188
 
2189
+ #: ../admin/settings.php:564
2190
  #: ../admin/wp25/settings.php:546
2191
  msgid "Use slow zooming effect"
2192
  msgstr "nutze Zoom Effekt"
2193
 
2194
+ #: ../admin/settings.php:568
2195
  #: ../admin/wp25/settings.php:550
2196
  msgid "Background Color"
2197
  msgstr "Hintergrund (BG) Farbe"
2198
 
2199
+ #: ../admin/settings.php:573
2200
  #: ../admin/wp25/settings.php:555
2201
  msgid "Texts / Buttons Color"
2202
  msgstr "Text- / Button Farbe"
2203
 
2204
+ #: ../admin/settings.php:578
2205
  #: ../admin/wp25/settings.php:560
2206
  msgid "Rollover / Active Color"
2207
  msgstr "Rollover / Aktiv (Link) Farbe"
2208
 
2209
+ #: ../admin/settings.php:583
2210
  #: ../admin/wp25/settings.php:565
2211
  msgid "Screen Color"
2212
  msgstr "Seiten Farbe"
2213
 
2214
+ #: ../admin/settings.php:588
2215
  #: ../admin/wp25/settings.php:570
2216
  msgid "Background music (URL)"
2217
  msgstr "Hintergrundmusik (URL)"
2218
 
2219
+ #: ../admin/settings.php:592
2220
  #: ../admin/wp25/settings.php:574
2221
  msgid "Try XHTML validation (with CDATA)"
2222
  msgstr "Integriere XHTML Validierung (mittels CDATA)"
2223
 
2224
+ #: ../admin/settings.php:594
2225
  #: ../admin/wp25/settings.php:576
2226
  msgid "Important : Could causes problem at some browser. Please recheck your page."
2227
  msgstr "Wichtig : Es könnnten Probleme bei einigen Browser auftauchen. Unbedingt Seite prüfen."
2228
 
2229
  #: ../admin/setup.php:12
2230
+ #: ../admin/wp25/setup.php:11
2231
  msgid "Reset all settings to default parameter"
2232
  msgstr "Stelle alle Einstellungen auf Anfangswerte zurück"
2233
 
2234
  #: ../admin/setup.php:37
2235
+ #: ../admin/wp25/setup.php:36
2236
  msgid "Uninstall sucessfull ! Now delete the plugin and enjoy your life ! Good luck !"
2237
  msgstr "Deinstallation erfolgreich ! Nun kannst Du das Plugin löschen und Dein Leben weiterhin genießen ! Stay geeky ! Viel Glück !"
2238
 
2239
  #: ../admin/setup.php:46
2240
+ #: ../admin/wp25/setup.php:42
2241
  msgid "Reset options"
2242
  msgstr "Optionen zurücksetzen"
2243
 
2244
  #: ../admin/setup.php:49
2245
+ #: ../admin/wp25/setup.php:45
2246
  msgid "Reset all options/settings to the default installation."
2247
  msgstr "Alle Optionen/Einstellungen zurücksetzen"
2248
 
2249
  #: ../admin/setup.php:50
2250
+ #: ../admin/wp25/setup.php:46
2251
  msgid "Reset settings"
2252
  msgstr "Einstellungen zurücksetzen"
2253
 
2254
  #: ../admin/setup.php:50
2255
+ #: ../admin/wp25/setup.php:46
2256
  msgid ""
2257
  "Reset all options to default settings ?\\n"
2258
  "\\n"
2263
  "Wähle [Cancel] um abzubrechen, [OK] zum Durchführen.\\n"
2264
 
2265
  #: ../admin/setup.php:55
2266
+ #: ../admin/wp25/setup.php:51
2267
  msgid "Uninstall plugin tables"
2268
  msgstr "Plugin Tabellen (DB) entfernen"
2269
 
2270
  #: ../admin/setup.php:58
2271
+ #: ../admin/wp25/setup.php:56
2272
  msgid "You don't like NextGEN Gallery ?"
2273
  msgstr "Du magst die NextGEN Galerie nicht ?"
2274
 
2275
  #: ../admin/setup.php:59
2276
+ #: ../admin/wp25/setup.php:57
2277
  msgid "No problem, before you deactivate this plugin press the Uninstall Button, because deactivating NextGEN Gallery does not remove any data that may have been created. "
2278
  msgstr "Null Problemo. Einfach nur vor dem Deaktivieren dieses Plugins den Uninstall-Button betätigen damit alle Tabellen der Galerie entfernt werden."
2279
 
2280
  #: ../admin/setup.php:60
2281
+ #: ../admin/wp25/setup.php:59
2282
  msgid "WARNING:"
2283
  msgstr "WARNUNG:"
2284
 
2285
  #: ../admin/setup.php:61
2286
+ #: ../admin/wp25/setup.php:60
2287
  msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to backup all the tables first. NextGEN gallery is stored in the tables"
2288
  msgstr "Einmal deinstalliert -> keine Rückgängigmachung! D.h. auf Deutsch, das eine einmalig durchgeführte Deinstallation nicht mehr rückgängig gemacht werden kann da alle Tabellen der Galerie aus der Datenbank entfernt werden und KEIN Backup dieser Galerie-Tabellen angelegt wird währenddessen."
2289
 
2290
  #: ../admin/setup.php:61
2291
+ #: ../admin/wp25/setup.php:60
2292
  msgid "and"
2293
  msgstr "und"
2294
 
2295
  #: ../admin/setup.php:63
2296
+ #: ../admin/wp25/setup.php:62
2297
  msgid "Uninstall plugin"
2298
  msgstr "Plugin deinstallieren"
2299
 
2300
  #: ../admin/setup.php:63
2301
+ #: ../admin/wp25/setup.php:62
2302
  msgid ""
2303
  "You are about to Uninstall this plugin from WordPress.\\n"
2304
  "This action is not reversible.\\n"
2409
 
2410
  #: ../admin/style.php:100
2411
  #: ../admin/wp25/style.php:107
2412
+ #: ../lib/nggmeta.lib.php:376
2413
  msgid "Author"
2414
  msgstr "Autor"
2415
 
2438
  msgstr "Wähle Galerie"
2439
 
2440
  #: ../admin/uploadtab.php:107
2441
+ #: ../admin/wp25/media-upload.php:127
2442
  #: ../tinymce/window.php:49
2443
  #: ../tinymce3/window.php:49
2444
  msgid "No gallery"
2538
  msgstr "Link zur Datei"
2539
 
2540
  #: ../admin/js/uploadtab.js.php:107
2541
+ #: ../admin/wp25/media-upload.php:209
2542
  msgid "Full size"
2543
  msgstr "Volle Größe"
2544
 
2575
  "Click ok to delete or cancel to go back."
2576
  msgstr "Bist du sicher das Du diese Datei '%s' löschen willst ?"
2577
 
2578
+ #: ../admin/wp25/about.php:31
2579
+ msgid "To help people to work with this plugin, I would like to have it in all available languages"
2580
+ msgstr "Um jedem das Arbeiten mit diesem Plugin zu vereinfachen würde ich es gerne in allen verfügbaren Sprachen anbieten"
2581
+
2582
+ #: ../admin/wp25/about.php:43
2583
+ msgid "No doubt a very useful and easy motivation :-)"
2584
+ msgstr "Kein Zweifel, eine schöne und simple Motivationshilfe"
2585
+
2586
+ #: ../admin/wp25/addgallery.php:236
2587
  msgid "Import a folder with all images."
2588
  msgstr "Importiere ein Verzeichniss mit Bildern."
2589
 
2590
+ #: ../admin/wp25/addgallery.php:237
2591
  msgid " Please note : For safe-mode = ON you need to add the subfolder thumbs manually"
2592
  msgstr "Achtung : Da der Safe-Mode (PHP.INI) eingeschaltet ist, mußt Du das Unterverzeichnis für die Vorschaubilder (\"thumbs\") manuell (per FTP) anlegen"
2593
 
2595
  msgid "Edit gallery"
2596
  msgstr "Galerie ändern"
2597
 
2598
+ #: ../admin/wp25/media-upload.php:139
2599
  msgid "Select Gallery &#187;"
2600
  msgstr "Wähle Galerie &#187;"
2601
 
2602
+ #: ../admin/wp25/media-upload.php:170
2603
  msgid "Show"
2604
  msgstr "Zeige"
2605
 
2606
+ #: ../admin/wp25/media-upload.php:171
2607
  msgid "Hide"
2608
  msgstr "Verstecke"
2609
 
2610
+ #: ../admin/wp25/media-upload.php:176
2611
  msgid "Image ID:"
2612
  msgstr "Bilder ID:"
2613
 
2614
+ #: ../admin/wp25/media-upload.php:182
2615
+ msgid "Alt/Title text"
2616
  msgstr "Alt / Titel Text"
2617
 
2618
+ #: ../admin/wp25/media-upload.php:190
2619
  msgid "Alignment"
2620
  msgstr "Ausrichtung"
2621
 
2622
+ #: ../admin/wp25/media-upload.php:195
2623
  #: ../tinymce/window.php:133
2624
  #: ../tinymce3/window.php:133
2625
  msgid "Left"
2626
  msgstr "Links"
2627
 
2628
+ #: ../admin/wp25/media-upload.php:197
2629
  #: ../tinymce/window.php:134
2630
  #: ../tinymce3/window.php:134
2631
  msgid "Center"
2632
  msgstr "Zentrieren"
2633
 
2634
+ #: ../admin/wp25/media-upload.php:199
2635
  #: ../tinymce/window.php:135
2636
  #: ../tinymce3/window.php:135
2637
  msgid "Right"
2638
  msgstr "Rechts"
2639
 
2640
+ #: ../admin/wp25/media-upload.php:211
2641
+ msgid "Singlepic"
2642
+ msgstr "Einzelbilder"
2643
+
2644
+ #: ../admin/wp25/media-upload.php:219
2645
  msgid "Insert into Post"
2646
+ msgstr "In Beitrag einfügen"
2647
 
2648
+ #: ../admin/wp25/media-upload.php:228
2649
  msgid "Save all changes"
2650
  msgstr "Änderungen Speichern"
2651
 
2678
  msgid " sec"
2679
  msgstr " Sek."
2680
 
2681
+ #: ../lib/nggmeta.lib.php:366
2682
  msgid "Aperture"
2683
  msgstr "Blende"
2684
 
2685
+ #: ../lib/nggmeta.lib.php:367
2686
+ #: ../lib/nggmeta.lib.php:392
2687
  msgid "Credit"
2688
  msgstr "Autor"
2689
 
2690
+ #: ../lib/nggmeta.lib.php:368
2691
  msgid "Camera"
2692
  msgstr "Kamera"
2693
 
2694
+ #: ../lib/nggmeta.lib.php:369
2695
  msgid "Caption"
2696
  msgstr "Beschreibung"
2697
 
2698
+ #: ../lib/nggmeta.lib.php:370
2699
  msgid "Date/Time"
2700
  msgstr "Datum/Zeit"
2701
 
2702
+ #: ../lib/nggmeta.lib.php:371
2703
  msgid "Copyright"
2704
  msgstr "Rechte"
2705
 
2706
+ #: ../lib/nggmeta.lib.php:372
2707
  msgid "Focal length"
2708
  msgstr "Brennweite"
2709
 
2710
+ #: ../lib/nggmeta.lib.php:373
2711
  msgid "ISO"
2712
  msgstr "ISO"
2713
 
2714
+ #: ../lib/nggmeta.lib.php:374
2715
  msgid "Shutter speed"
2716
  msgstr "Belichtungszeit"
2717
 
2718
+ #: ../lib/nggmeta.lib.php:378
2719
  msgid "Subject"
2720
  msgstr "Betreff"
2721
 
2722
+ #: ../lib/nggmeta.lib.php:379
2723
  msgid "Make"
2724
  msgstr "Hersteller"
2725
 
2726
+ #: ../lib/nggmeta.lib.php:380
2727
  msgid "Edit Status"
2728
  msgstr "Ändere Status"
2729
 
2730
+ #: ../lib/nggmeta.lib.php:381
2731
  msgid "Category"
2732
  msgstr "Kategorie"
2733
 
2734
+ #: ../lib/nggmeta.lib.php:382
2735
  msgid "Keywords"
2736
  msgstr "Schlüsselwörter"
2737
 
2738
+ #: ../lib/nggmeta.lib.php:383
2739
  msgid "Date Created"
2740
  msgstr "erstellt (Datum)"
2741
 
2742
+ #: ../lib/nggmeta.lib.php:384
2743
  msgid "Time Created"
2744
  msgstr "erstellt (Zeit)"
2745
 
2746
+ #: ../lib/nggmeta.lib.php:385
2747
  msgid "Author Position"
2748
  msgstr "Autor Position"
2749
 
2750
+ #: ../lib/nggmeta.lib.php:386
2751
  msgid "City"
2752
  msgstr "Stadt"
2753
 
2754
+ #: ../lib/nggmeta.lib.php:387
2755
  msgid "Location"
2756
  msgstr "Ort"
2757
 
2758
+ #: ../lib/nggmeta.lib.php:388
2759
  msgid "Province/State"
2760
  msgstr "Staat / PLZ"
2761
 
2762
+ #: ../lib/nggmeta.lib.php:389
2763
  msgid "Country code"
2764
  msgstr "Landescode"
2765
 
2766
+ #: ../lib/nggmeta.lib.php:390
2767
  msgid "Country"
2768
  msgstr "Land"
2769
 
2770
+ #: ../lib/nggmeta.lib.php:391
2771
  msgid "Headline"
2772
  msgstr "Kopfzeile"
2773
 
2774
+ #: ../lib/nggmeta.lib.php:393
2775
  msgid "Source"
2776
  msgstr "Quelle"
2777
 
2778
+ #: ../lib/nggmeta.lib.php:394
2779
  msgid "Copyright Notice"
2780
  msgstr "Copyright Hinweise / Credits"
2781
 
2782
+ #: ../lib/nggmeta.lib.php:395
2783
  msgid "Contact"
2784
  msgstr "Kontakt"
2785
 
2786
+ #: ../lib/nggmeta.lib.php:396
2787
  msgid "Last modified"
2788
  msgstr "Zuletzt geändert"
2789
 
2790
+ #: ../lib/nggmeta.lib.php:397
2791
  msgid "Program tool"
2792
  msgstr "Programm"
2793
 
2794
+ #: ../lib/nggmeta.lib.php:398
2795
  msgid "Format"
2796
  msgstr "Format"
2797
 
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-03-18 19:52+0100\n"
6
  "Last-Translator: Alex Rabe\n"
7
  "Language-Team: Alex Rabe\n"
8
  "MIME-Version: 1.0\n"
@@ -19,26 +19,30 @@ msgstr ""
19
  msgid "Sorry, NextGEN Gallery works only under WordPress 2.1 or higher"
20
  msgstr ""
21
 
22
- #: ../nggfunctions.php:425
23
- #: ../nggfunctions.php:440
24
- msgid "Watch gallery"
25
  msgstr ""
26
 
27
- #: ../nggfunctions.php:434
28
  #: ../nggfunctions.php:446
29
- #: ../nggfunctions.php:729
 
 
 
 
 
 
30
  msgid "Photos"
31
  msgstr ""
32
 
33
- #: ../nggfunctions.php:521
34
  msgid "Back"
35
  msgstr ""
36
 
37
- #: ../nggfunctions.php:525
38
  msgid "Next"
39
  msgstr ""
40
 
41
- #: ../nggfunctions.php:528
42
  #: ../admin/manage.php:85
43
  #: ../admin/wp25/manage.php:85
44
  #: ../tinymce/window.php:37
@@ -46,11 +50,11 @@ msgstr ""
46
  msgid "Picture"
47
  msgstr ""
48
 
49
- #: ../nggfunctions.php:528
50
  msgid "from"
51
  msgstr ""
52
 
53
- #: ../nggfunctions.php:699
54
  msgid "Overview"
55
  msgstr ""
56
 
@@ -70,99 +74,99 @@ msgstr ""
70
  msgid "[Show picture list]"
71
  msgstr ""
72
 
73
- #: ../nggwidget.php:118
74
  msgid "Title:"
75
  msgstr ""
76
 
77
- #: ../nggwidget.php:119
78
  msgid "Select Gallery:"
79
  msgstr ""
80
 
81
- #: ../nggwidget.php:123
82
  msgid "All images"
83
  msgstr ""
84
 
85
- #: ../nggwidget.php:133
86
  msgid "Height:"
87
  msgstr ""
88
 
89
- #: ../nggwidget.php:134
90
  msgid "Width:"
91
  msgstr ""
92
 
93
- #: ../nggwidget.php:188
94
  #, php-format
95
  msgid "NextGEN Gallery %d"
96
  msgstr ""
97
 
98
- #: ../nggwidget.php:204
99
  msgid "NextGEN Gallery Widgets"
100
  msgstr ""
101
 
102
- #: ../nggwidget.php:205
103
  msgid "How many NextGEN Gallery widgets would you like?"
104
  msgstr ""
105
 
106
- #: ../nggwidget.php:209
107
  #: ../admin/uploadtab.php:193
108
  msgid "Save"
109
  msgstr ""
110
 
111
- #: ../nggwidget.php:301
112
  msgid "Title :"
113
  msgstr ""
114
 
115
- #: ../nggwidget.php:306
116
  msgid "Show :"
117
  msgstr ""
118
 
119
- #: ../nggwidget.php:311
120
- #: ../admin/settings.php:104
121
- #: ../admin/settings.php:297
122
  #: ../admin/wp25/settings.php:99
123
  #: ../admin/wp25/settings.php:285
124
  msgid "Thumbnails"
125
  msgstr ""
126
 
127
- #: ../nggwidget.php:312
128
  msgid "Orginal images"
129
  msgstr ""
130
 
131
- #: ../nggwidget.php:318
132
- #: ../admin/settings.php:562
133
  #: ../admin/wp25/settings.php:542
134
  msgid "random"
135
  msgstr ""
136
 
137
- #: ../nggwidget.php:319
138
  msgid "recent added "
139
  msgstr ""
140
 
141
- #: ../nggwidget.php:323
142
  msgid "Width x Height :"
143
  msgstr ""
144
 
145
- #: ../nggwidget.php:329
146
  msgid "Select :"
147
  msgstr ""
148
 
149
- #: ../nggwidget.php:331
150
  msgid "All galleries"
151
  msgstr ""
152
 
153
- #: ../nggwidget.php:332
154
  msgid "Only which are not listed"
155
  msgstr ""
156
 
157
- #: ../nggwidget.php:333
158
  msgid "Only which are listed"
159
  msgstr ""
160
 
161
- #: ../nggwidget.php:338
162
  msgid "Gallery ID :"
163
  msgstr ""
164
 
165
- #: ../nggwidget.php:340
166
  msgid "Gallery IDs, separated by commas."
167
  msgstr ""
168
 
@@ -272,7 +276,6 @@ msgid "Translate the plugin"
272
  msgstr ""
273
 
274
  #: ../admin/about.php:32
275
- #: ../admin/wp25/about.php:31
276
  msgid "To help people to work with this plugin, I would like to have it in all avaivable languages"
277
  msgstr ""
278
 
@@ -282,7 +285,6 @@ msgid "Donate the work via paypal"
282
  msgstr ""
283
 
284
  #: ../admin/about.php:44
285
- #: ../admin/wp25/about.php:43
286
  msgid "No doubt a very usefull and easy motivation :-)"
287
  msgstr ""
288
 
@@ -322,185 +324,185 @@ msgstr ""
322
  msgid "No gallery selected !"
323
  msgstr ""
324
 
325
- #: ../admin/addgallery.php:114
326
- #: ../admin/wp25/addgallery.php:106
327
  msgid "Image Files"
328
  msgstr ""
329
 
330
- #: ../admin/addgallery.php:134
331
- #: ../admin/addgallery.php:164
332
- #: ../admin/wp25/addgallery.php:125
333
- #: ../admin/wp25/addgallery.php:155
334
  msgid "remove"
335
  msgstr ""
336
 
337
- #: ../admin/addgallery.php:135
338
- #: ../admin/wp25/addgallery.php:126
339
  msgid "Browse..."
340
  msgstr ""
341
 
342
- #: ../admin/addgallery.php:136
343
- #: ../admin/addgallery.php:314
344
- #: ../admin/wp25/addgallery.php:127
345
- #: ../admin/wp25/addgallery.php:298
346
  msgid "Upload images"
347
  msgstr ""
348
 
349
- #: ../admin/addgallery.php:180
350
- #: ../admin/addgallery.php:192
351
- #: ../admin/wp25/addgallery.php:171
352
- #: ../admin/wp25/addgallery.php:183
353
  msgid "Add new gallery"
354
  msgstr ""
355
 
356
- #: ../admin/addgallery.php:182
357
- #: ../admin/addgallery.php:213
358
- #: ../admin/wp25/addgallery.php:173
359
- #: ../admin/wp25/addgallery.php:202
360
  msgid "Upload a Zip-File"
361
  msgstr ""
362
 
363
- #: ../admin/addgallery.php:185
364
- #: ../admin/addgallery.php:253
365
- #: ../admin/wp25/addgallery.php:176
366
- #: ../admin/wp25/addgallery.php:240
367
  msgid "Import image folder"
368
  msgstr ""
369
 
370
- #: ../admin/addgallery.php:187
371
- #: ../admin/addgallery.php:277
372
- #: ../admin/wp25/addgallery.php:178
373
- #: ../admin/wp25/addgallery.php:262
374
  msgid "Upload Images"
375
  msgstr ""
376
 
377
- #: ../admin/addgallery.php:198
378
- #: ../admin/wp25/addgallery.php:188
379
  msgid "New Gallery"
380
  msgstr ""
381
 
382
- #: ../admin/addgallery.php:201
383
- #: ../admin/wp25/addgallery.php:191
384
  msgid "Create a new , empty gallery below the folder"
385
  msgstr ""
386
 
387
- #: ../admin/addgallery.php:203
388
- #: ../admin/wp25/addgallery.php:193
389
  msgid "Allowed characters for file and folder names are"
390
  msgstr ""
391
 
392
- #: ../admin/addgallery.php:206
393
- #: ../admin/wp25/addgallery.php:196
394
  msgid "Add gallery"
395
  msgstr ""
396
 
397
- #: ../admin/addgallery.php:219
398
- #: ../admin/wp25/addgallery.php:207
399
  msgid "Select Zip-File"
400
  msgstr ""
401
 
402
- #: ../admin/addgallery.php:221
403
- #: ../admin/wp25/addgallery.php:209
404
  msgid "Upload a zip file with images"
405
  msgstr ""
406
 
407
- #: ../admin/addgallery.php:224
408
- #: ../admin/addgallery.php:287
409
- #: ../admin/wp25/addgallery.php:212
410
- #: ../admin/wp25/addgallery.php:271
411
  msgid "in to"
412
  msgstr ""
413
 
414
- #: ../admin/addgallery.php:226
415
- #: ../admin/wp25/addgallery.php:214
416
  msgid "a new gallery"
417
  msgstr ""
418
 
419
- #: ../admin/addgallery.php:236
420
- #: ../admin/addgallery.php:299
421
- #: ../admin/wp25/addgallery.php:224
422
- #: ../admin/wp25/addgallery.php:283
423
  msgid "Note : The upload limit on your server is "
424
  msgstr ""
425
 
426
- #: ../admin/addgallery.php:240
427
- #: ../admin/addgallery.php:265
428
- #: ../admin/addgallery.php:303
429
- #: ../admin/wp25/addgallery.php:228
430
- #: ../admin/wp25/addgallery.php:251
431
- #: ../admin/wp25/addgallery.php:287
432
  msgid "Add Metadata :"
433
  msgstr ""
434
 
435
- #: ../admin/addgallery.php:242
436
- #: ../admin/addgallery.php:267
437
- #: ../admin/addgallery.php:305
438
- #: ../admin/wp25/addgallery.php:230
439
- #: ../admin/wp25/addgallery.php:253
440
- #: ../admin/wp25/addgallery.php:289
441
  msgid "Import EXIF, IPTC or XMP data (if available)"
442
  msgstr ""
443
 
444
- #: ../admin/addgallery.php:245
445
- #: ../admin/wp25/addgallery.php:233
446
  msgid "Start upload"
447
  msgstr ""
448
 
449
- #: ../admin/addgallery.php:259
450
- #: ../admin/wp25/addgallery.php:245
451
  msgid "Import from Server path:"
452
  msgstr ""
453
 
454
- #: ../admin/addgallery.php:261
455
  msgid "Import a folder with images. Please note :"
456
  msgstr ""
457
 
458
- #: ../admin/addgallery.php:262
459
  msgid "For safe-mode = ON you need to add the subfolder thumbs manually"
460
  msgstr ""
461
 
462
- #: ../admin/addgallery.php:270
463
- #: ../admin/wp25/addgallery.php:256
464
  msgid "Import folder"
465
  msgstr ""
466
 
467
- #: ../admin/addgallery.php:283
468
- #: ../admin/wp25/addgallery.php:267
469
  msgid "Upload image"
470
  msgstr ""
471
 
472
- #: ../admin/addgallery.php:289
473
- #: ../admin/wp25/addgallery.php:273
474
  msgid "Choose gallery"
475
  msgstr ""
476
 
477
- #: ../admin/addgallery.php:310
478
- #: ../admin/wp25/addgallery.php:294
479
  msgid "The batch upload requires Adobe Flash 9, disable it if you have problems"
480
  msgstr ""
481
 
482
- #: ../admin/addgallery.php:310
483
- #: ../admin/wp25/addgallery.php:294
484
  msgid "Disable flash upload"
485
  msgstr ""
486
 
487
- #: ../admin/addgallery.php:312
488
- #: ../admin/wp25/addgallery.php:296
489
  msgid "Upload multiple files at once by ctrl/shift-selecting in dialog"
490
  msgstr ""
491
 
492
- #: ../admin/addgallery.php:312
493
- #: ../admin/wp25/addgallery.php:296
494
  msgid "Enable flash based upload"
495
  msgstr ""
496
 
497
- #: ../admin/admin.php:64
498
  #: ../admin/functions.php:78
499
  #: ../admin/functions.php:82
500
  #: ../admin/functions.php:128
501
  #: ../admin/manage.php:64
502
  #: ../admin/manage.php:434
503
- #: ../admin/settings.php:106
504
  #: ../admin/uploadtab.php:36
505
  #: ../admin/wp25/admin.php:72
506
  #: ../admin/wp25/functions.php:78
@@ -514,59 +516,59 @@ msgstr ""
514
  msgid "Gallery"
515
  msgstr ""
516
 
517
- #: ../admin/admin.php:65
518
  #: ../admin/wp25/admin.php:73
519
  msgid "Add Gallery"
520
  msgstr ""
521
 
522
- #: ../admin/admin.php:66
523
  #: ../admin/wp25/admin.php:74
524
  msgid "Manage Gallery"
525
  msgstr ""
526
 
527
- #: ../admin/admin.php:67
528
  #: ../admin/wp25/admin.php:75
529
  #: ../tinymce/window.php:36
530
  #: ../tinymce3/window.php:36
531
  msgid "Album"
532
  msgstr ""
533
 
534
- #: ../admin/admin.php:68
535
  #: ../admin/wp25/admin.php:76
536
  msgid "Options"
537
  msgstr ""
538
 
539
- #: ../admin/admin.php:70
540
  #: ../admin/wp25/admin.php:78
541
  msgid "Style"
542
  msgstr ""
543
 
544
- #: ../admin/admin.php:71
545
  #: ../admin/wp25/admin.php:79
546
  msgid "Setup Gallery"
547
  msgstr ""
548
 
549
- #: ../admin/admin.php:71
550
  #: ../admin/wp25/admin.php:79
551
  msgid "Setup"
552
  msgstr ""
553
 
554
- #: ../admin/admin.php:73
555
  #: ../admin/wp25/admin.php:81
556
  msgid "Roles"
557
  msgstr ""
558
 
559
- #: ../admin/admin.php:74
560
  #: ../admin/wp25/admin.php:82
561
  msgid "About this Gallery"
562
  msgstr ""
563
 
564
- #: ../admin/admin.php:74
565
  #: ../admin/wp25/admin.php:82
566
  msgid "About"
567
  msgstr ""
568
 
569
- #: ../admin/admin.php:76
570
  #: ../admin/wp25/admin.php:84
571
  #: ../admin/wp25/media-upload.php:11
572
  msgid "NextGEN Gallery"
@@ -576,6 +578,7 @@ msgstr ""
576
  #: ../admin/album.php:37
577
  #: ../admin/wp25/album.php:19
578
  #: ../admin/wp25/album.php:36
 
579
  msgid "Update Successfully"
580
  msgstr ""
581
 
@@ -584,29 +587,29 @@ msgstr ""
584
  msgid "Album deleted"
585
  msgstr ""
586
 
587
- #: ../admin/album.php:124
588
  #: ../admin/wp25/album.php:119
589
  msgid "Manage Albums"
590
  msgstr ""
591
 
592
- #: ../admin/album.php:130
593
  #: ../admin/wp25/album.php:125
594
  #: ../tinymce/window.php:74
595
  #: ../tinymce3/window.php:74
596
  msgid "Select album"
597
  msgstr ""
598
 
599
- #: ../admin/album.php:133
600
  #: ../admin/wp25/album.php:128
601
  msgid "No album selected"
602
  msgstr ""
603
 
604
- #: ../admin/album.php:146
605
  #: ../admin/wp25/album.php:141
606
  msgid "Add new album"
607
  msgstr ""
608
 
609
- #: ../admin/album.php:150
610
  #: ../admin/manage.php:309
611
  #: ../admin/manage.php:580
612
  #: ../admin/wp25/album.php:146
@@ -615,19 +618,19 @@ msgstr ""
615
  msgid "Delete"
616
  msgstr ""
617
 
618
- #: ../admin/album.php:150
619
  #: ../admin/wp25/album.php:146
620
  msgid "Delete album ?"
621
  msgstr ""
622
 
623
- #: ../admin/album.php:152
624
- #: ../admin/settings.php:166
625
- #: ../admin/settings.php:206
626
- #: ../admin/settings.php:253
627
- #: ../admin/settings.php:333
628
- #: ../admin/settings.php:380
629
- #: ../admin/settings.php:492
630
- #: ../admin/settings.php:600
631
  #: ../admin/wpmu.php:98
632
  #: ../admin/wp25/album.php:148
633
  #: ../admin/wp25/settings.php:160
@@ -641,42 +644,42 @@ msgstr ""
641
  msgid "Update"
642
  msgstr ""
643
 
644
- #: ../admin/album.php:160
645
  #: ../admin/wp25/album.php:157
646
  msgid "[Show all]"
647
  msgstr ""
648
 
649
- #: ../admin/album.php:161
650
  #: ../admin/wp25/album.php:158
651
  msgid "[Maximize]"
652
  msgstr ""
653
 
654
- #: ../admin/album.php:162
655
  #: ../admin/wp25/album.php:159
656
  msgid "[Minimize]"
657
  msgstr ""
658
 
659
- #: ../admin/album.php:164
660
  #: ../admin/wp25/album.php:161
661
  msgid "After you create and select a album, you can drag and drop a gallery into your album below"
662
  msgstr ""
663
 
664
- #: ../admin/album.php:171
665
  #: ../admin/wp25/album.php:168
666
  msgid "Select Gallery"
667
  msgstr ""
668
 
669
- #: ../admin/album.php:210
670
  #: ../admin/wp25/album.php:207
671
  msgid "Album Page ID"
672
  msgstr ""
673
 
674
- #: ../admin/album.php:222
675
  #: ../admin/wp25/album.php:219
676
  msgid "No album selected!"
677
  msgstr ""
678
 
679
- #: ../admin/album.php:258
680
  #: ../admin/manage.php:283
681
  #: ../admin/manage.php:535
682
  #: ../admin/wp25/album.php:255
@@ -685,23 +688,23 @@ msgstr ""
685
  msgid "ID"
686
  msgstr ""
687
 
688
- #: ../admin/album.php:259
689
  #: ../admin/wp25/album.php:256
690
  msgid "Name"
691
  msgstr ""
692
 
693
- #: ../admin/album.php:260
694
  #: ../admin/manage.php:285
695
  #: ../admin/manage.php:446
696
  #: ../admin/js/uploadtab.js.php:109
697
  #: ../admin/wp25/album.php:257
698
  #: ../admin/wp25/manage.php:290
699
  #: ../admin/wp25/manage.php:415
700
- #: ../lib/nggmeta.lib.php:373
701
  msgid "Title"
702
  msgstr ""
703
 
704
- #: ../admin/album.php:261
705
  #: ../admin/wp25/album.php:258
706
  msgid "Page"
707
  msgstr ""
@@ -749,7 +752,7 @@ msgstr ""
749
  #: ../admin/wp25/functions.php:45
750
  #: ../admin/wp25/functions.php:55
751
  #: ../admin/wp25/functions.php:525
752
- #: ../lib/nggallery.lib.php:297
753
  msgid "Unable to create directory "
754
  msgstr ""
755
 
@@ -1025,7 +1028,7 @@ msgstr ""
1025
  #: ../admin/wp25/manage.php:291
1026
  #: ../admin/wp25/manage.php:434
1027
  #: ../admin/wp25/manage.php:517
1028
- #: ../admin/wp25/media-upload.php:180
1029
  #: ../admin/wp25/style.php:109
1030
  msgid "Description"
1031
  msgstr ""
@@ -1205,7 +1208,7 @@ msgid "Sort gallery"
1205
  msgstr ""
1206
 
1207
  #: ../admin/manage.php:536
1208
- #: ../admin/settings.php:322
1209
  #: ../admin/wp25/manage.php:512
1210
  #: ../admin/wp25/settings.php:310
1211
  msgid "File name"
@@ -1214,6 +1217,7 @@ msgstr ""
1214
  #: ../admin/manage.php:538
1215
  #: ../admin/js/uploadtab.js.php:106
1216
  #: ../admin/wp25/manage.php:514
 
1217
  msgid "Thumbnail"
1218
  msgstr ""
1219
 
@@ -1569,7 +1573,6 @@ msgstr ""
1569
  #: ../admin/settings.php:33
1570
  #: ../admin/style.php:16
1571
  #: ../admin/wpmu.php:32
1572
- #: ../admin/wp25/settings.php:33
1573
  #: ../admin/wp25/style.php:16
1574
  #: ../admin/wp25/wpmu.php:32
1575
  msgid "Update successfully"
@@ -1580,27 +1583,27 @@ msgstr ""
1580
  msgid "Cache cleared"
1581
  msgstr ""
1582
 
1583
- #: ../admin/settings.php:103
1584
- #: ../admin/settings.php:115
1585
  #: ../admin/wp25/settings.php:98
1586
  #: ../admin/wp25/settings.php:110
1587
  msgid "General Options"
1588
  msgstr ""
1589
 
1590
- #: ../admin/settings.php:105
1591
  #: ../admin/wp25/settings.php:100
1592
  msgid "Images"
1593
  msgstr ""
1594
 
1595
- #: ../admin/settings.php:107
1596
- #: ../admin/settings.php:341
1597
  #: ../admin/wp25/settings.php:102
1598
  #: ../admin/wp25/settings.php:328
1599
  msgid "Effects"
1600
  msgstr ""
1601
 
1602
- #: ../admin/settings.php:108
1603
- #: ../admin/settings.php:394
1604
  #: ../admin/wp25/settings.php:103
1605
  #: ../admin/wp25/settings.php:379
1606
  #: ../tinymce/window.php:123
@@ -1608,9 +1611,9 @@ msgstr ""
1608
  msgid "Watermark"
1609
  msgstr ""
1610
 
1611
- #: ../admin/settings.php:109
1612
- #: ../admin/settings.php:298
1613
- #: ../admin/settings.php:502
1614
  #: ../admin/wp25/settings.php:104
1615
  #: ../admin/wp25/settings.php:286
1616
  #: ../admin/wp25/settings.php:482
@@ -1619,633 +1622,634 @@ msgstr ""
1619
  msgid "Slideshow"
1620
  msgstr ""
1621
 
1622
- #: ../admin/settings.php:122
1623
  #: ../admin/wpmu.php:48
1624
  #: ../admin/wp25/settings.php:116
1625
  #: ../admin/wp25/wpmu.php:48
1626
  msgid "Gallery path"
1627
  msgstr ""
1628
 
1629
- #: ../admin/settings.php:124
1630
  #: ../admin/wp25/settings.php:118
1631
  msgid "This is the default path for all galleries"
1632
  msgstr ""
1633
 
1634
- #: ../admin/settings.php:135
1635
  #: ../admin/wp25/settings.php:129
1636
  msgid "Delete image files"
1637
  msgstr ""
1638
 
1639
- #: ../admin/settings.php:137
1640
  #: ../admin/wp25/settings.php:131
1641
  msgid "Delete files, when removing a gallery in the database"
1642
  msgstr ""
1643
 
1644
- #: ../admin/settings.php:140
1645
  #: ../admin/wp25/settings.php:134
1646
  msgid "Activate permalinks"
1647
  msgstr ""
1648
 
1649
- #: ../admin/settings.php:142
1650
  #: ../admin/wp25/settings.php:136
1651
  msgid "When you activate this option, you need to update your permalink structure one time."
1652
  msgstr ""
1653
 
1654
- #: ../admin/settings.php:145
1655
  #: ../admin/wp25/settings.php:139
1656
  msgid "Tags / Categories"
1657
  msgstr ""
1658
 
1659
- #: ../admin/settings.php:148
1660
  #: ../admin/wp25/settings.php:142
1661
  msgid "Activate related images"
1662
  msgstr ""
1663
 
1664
- #: ../admin/settings.php:150
1665
  #: ../admin/wp25/settings.php:144
1666
  msgid "This option will append related images to every post"
1667
  msgstr ""
1668
 
1669
- #: ../admin/settings.php:154
1670
  #: ../admin/wp25/settings.php:148
1671
  msgid "Match with"
1672
  msgstr ""
1673
 
1674
- #: ../admin/settings.php:155
1675
  #: ../admin/wp25/settings.php:149
1676
  msgid "Categories"
1677
  msgstr ""
1678
 
1679
- #: ../admin/settings.php:156
1680
  #: ../admin/wp25/settings.php:150
1681
- #: ../lib/nggmeta.lib.php:375
1682
  msgid "Tags"
1683
  msgstr ""
1684
 
1685
- #: ../admin/settings.php:156
1686
  #: ../admin/wp25/settings.php:150
1687
  msgid " (require WordPress 2.3 or higher)"
1688
  msgstr ""
1689
 
1690
- #: ../admin/settings.php:160
1691
  #: ../admin/wp25/settings.php:154
1692
  msgid "Max. number of images"
1693
  msgstr ""
1694
 
1695
- #: ../admin/settings.php:162
1696
  #: ../admin/wp25/settings.php:156
1697
  msgid "0 will show all images"
1698
  msgstr ""
1699
 
1700
- #: ../admin/settings.php:174
1701
  #: ../admin/wp25/settings.php:167
1702
  msgid "Thumbnail settings"
1703
  msgstr ""
1704
 
1705
- #: ../admin/settings.php:179
1706
  #: ../admin/wp25/settings.php:171
1707
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1708
  msgstr ""
1709
 
1710
- #: ../admin/settings.php:182
1711
  #: ../admin/wp25/settings.php:174
1712
  msgid "Width x height (in pixel)"
1713
  msgstr ""
1714
 
1715
- #: ../admin/settings.php:184
1716
  #: ../admin/wp25/settings.php:176
1717
  msgid "These values are maximum values "
1718
  msgstr ""
1719
 
1720
- #: ../admin/settings.php:187
1721
  #: ../admin/wp25/settings.php:179
1722
  msgid "Set fix dimension"
1723
  msgstr ""
1724
 
1725
- #: ../admin/settings.php:189
1726
  #: ../admin/wp25/settings.php:181
1727
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1728
  msgstr ""
1729
 
1730
- #: ../admin/settings.php:192
1731
  #: ../admin/wp25/settings.php:184
1732
  msgid "Crop square thumbnail from image"
1733
  msgstr ""
1734
 
1735
- #: ../admin/settings.php:194
1736
  #: ../admin/wp25/settings.php:186
1737
  msgid "Create square thumbnails, use only the width setting :"
1738
  msgstr ""
1739
 
1740
- #: ../admin/settings.php:197
1741
  #: ../admin/wp25/settings.php:189
1742
  msgid "Thumbnail quality"
1743
  msgstr ""
1744
 
1745
- #: ../admin/settings.php:201
1746
- #: ../admin/settings.php:233
1747
  #: ../admin/wp25/settings.php:193
1748
  #: ../admin/wp25/settings.php:223
1749
  msgid "Resample Mode"
1750
  msgstr ""
1751
 
1752
- #: ../admin/settings.php:203
1753
- #: ../admin/settings.php:236
1754
  #: ../admin/wp25/settings.php:195
1755
  #: ../admin/wp25/settings.php:226
1756
  msgid "Value between 1-5 (higher value, more CPU load)"
1757
  msgstr ""
1758
 
1759
- #: ../admin/settings.php:214
1760
  #: ../admin/wp25/settings.php:205
1761
  msgid "Image settings"
1762
  msgstr ""
1763
 
1764
- #: ../admin/settings.php:221
1765
  #: ../admin/wp25/settings.php:211
1766
  msgid "Resize Images"
1767
  msgstr ""
1768
 
1769
- #: ../admin/settings.php:225
1770
  #: ../admin/wp25/settings.php:215
1771
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1772
  msgstr ""
1773
 
1774
- #: ../admin/settings.php:228
1775
  #: ../admin/wp25/settings.php:218
1776
  msgid "Image quality"
1777
  msgstr ""
1778
 
1779
- #: ../admin/settings.php:239
1780
  #: ../admin/wp25/settings.php:229
1781
  msgid "Single picture"
1782
  msgstr ""
1783
 
1784
- #: ../admin/settings.php:242
1785
  #: ../admin/wp25/settings.php:232
1786
  msgid "Cache single pictures"
1787
  msgstr ""
1788
 
1789
- #: ../admin/settings.php:245
1790
  #: ../admin/wp25/settings.php:235
1791
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1792
  msgstr ""
1793
 
1794
- #: ../admin/settings.php:248
1795
  #: ../admin/wp25/settings.php:238
1796
  msgid "Clear cache folder"
1797
  msgstr ""
1798
 
1799
- #: ../admin/settings.php:250
1800
  #: ../admin/wp25/settings.php:240
1801
  msgid "Proceed now"
1802
  msgstr ""
1803
 
1804
- #: ../admin/settings.php:261
1805
  #: ../admin/wp25/settings.php:250
1806
  msgid "Gallery settings"
1807
  msgstr ""
1808
 
1809
- #: ../admin/settings.php:277
1810
  #: ../admin/wp25/settings.php:265
1811
  msgid "Deactivate gallery page link"
1812
  msgstr ""
1813
 
1814
- #: ../admin/settings.php:279
1815
  #: ../admin/wp25/settings.php:267
1816
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1817
  msgstr ""
1818
 
1819
- #: ../admin/settings.php:283
1820
  #: ../admin/wp25/settings.php:271
1821
  msgid "Number of images per page"
1822
  msgstr ""
1823
 
1824
- #: ../admin/settings.php:285
1825
  #: ../admin/wp25/settings.php:273
1826
  msgid "0 will disable pagination, all images on one page"
1827
  msgstr ""
1828
 
1829
- #: ../admin/settings.php:289
1830
  #: ../admin/wp25/settings.php:277
1831
  msgid "Integrate slideshow"
1832
  msgstr ""
1833
 
1834
- #: ../admin/settings.php:296
1835
  #: ../admin/wp25/settings.php:284
1836
  msgid "Show first"
1837
  msgstr ""
1838
 
1839
- #: ../admin/settings.php:302
1840
  #: ../admin/wp25/settings.php:290
1841
  msgid "Show thumbnail description"
1842
  msgstr ""
1843
 
1844
- #: ../admin/settings.php:303
1845
- #: ../admin/settings.php:353
1846
  #: ../admin/js/uploadtab.js.php:117
1847
- #: ../admin/wp25/media-upload.php:187
1848
  #: ../admin/wp25/settings.php:291
1849
  #: ../admin/wp25/settings.php:339
1850
  msgid "None"
1851
  msgstr ""
1852
 
1853
- #: ../admin/settings.php:304
1854
  #: ../admin/wp25/settings.php:292
1855
  msgid "Description text"
1856
  msgstr ""
1857
 
1858
- #: ../admin/settings.php:305
1859
- #: ../admin/settings.php:323
1860
  #: ../admin/wp25/settings.php:293
1861
  #: ../admin/wp25/settings.php:311
1862
  msgid "Alt / Title text"
1863
  msgstr ""
1864
 
1865
- #: ../admin/settings.php:309
1866
  #: ../admin/wp25/settings.php:297
1867
  msgid "Show ImageBrowser"
1868
  msgstr ""
1869
 
1870
- #: ../admin/settings.php:311
1871
  #: ../admin/wp25/settings.php:299
1872
  msgid "The gallery will open the ImageBrowser instead the effect."
1873
  msgstr ""
1874
 
1875
- #: ../admin/settings.php:315
1876
  #: ../admin/wp25/settings.php:303
1877
  msgid "Sort options"
1878
  msgstr ""
1879
 
1880
- #: ../admin/settings.php:318
1881
  #: ../admin/wp25/settings.php:306
1882
  msgid "Sort thumbnails"
1883
  msgstr ""
1884
 
1885
- #: ../admin/settings.php:320
1886
  #: ../admin/wp25/settings.php:308
1887
  msgid "Custom order"
1888
  msgstr ""
1889
 
1890
- #: ../admin/settings.php:321
1891
  #: ../admin/wp25/settings.php:309
1892
  msgid "Image ID"
1893
  msgstr ""
1894
 
1895
- #: ../admin/settings.php:327
1896
  #: ../admin/wp25/settings.php:315
1897
  msgid "Sort direction"
1898
  msgstr ""
1899
 
1900
- #: ../admin/settings.php:328
1901
  #: ../admin/wp25/settings.php:316
1902
  msgid "Ascending"
1903
  msgstr ""
1904
 
1905
- #: ../admin/settings.php:329
1906
  #: ../admin/wp25/settings.php:317
1907
  msgid "Descending"
1908
  msgstr ""
1909
 
1910
- #: ../admin/settings.php:345
1911
  #: ../admin/wp25/settings.php:332
1912
  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."
1913
  msgstr ""
1914
 
1915
- #: ../admin/settings.php:346
1916
  #: ../admin/wp25/settings.php:333
1917
  msgid "With the placeholder"
1918
  msgstr ""
1919
 
1920
- #: ../admin/settings.php:346
1921
  #: ../admin/wp25/settings.php:333
1922
  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."
1923
  msgstr ""
1924
 
1925
- #: ../admin/settings.php:350
1926
  #: ../admin/wp25/settings.php:336
1927
  msgid "JavaScript Thumbnail effect"
1928
  msgstr ""
1929
 
1930
- #: ../admin/settings.php:354
1931
  #: ../admin/wp25/settings.php:340
1932
  msgid "Thickbox"
1933
  msgstr ""
1934
 
1935
- #: ../admin/settings.php:355
1936
  #: ../admin/wp25/settings.php:341
1937
  msgid "Lightbox"
1938
  msgstr ""
1939
 
1940
- #: ../admin/settings.php:356
1941
  #: ../admin/wp25/settings.php:342
1942
  msgid "Highslide"
1943
  msgstr ""
1944
 
1945
- #: ../admin/settings.php:357
1946
  #: ../admin/wp25/settings.php:343
1947
  msgid "Shutter"
1948
  msgstr ""
1949
 
1950
- #: ../admin/settings.php:358
1951
  #: ../admin/wp25/settings.php:344
1952
  msgid "Custom"
1953
  msgstr ""
1954
 
1955
- #: ../admin/settings.php:363
1956
  #: ../admin/wp25/settings.php:349
1957
  msgid "Link Code line"
1958
  msgstr ""
1959
 
1960
- #: ../admin/settings.php:371
1961
  #: ../admin/wp25/settings.php:357
1962
  msgid "Select loading image"
1963
  msgstr ""
1964
 
1965
- #: ../admin/settings.php:395
1966
  #: ../admin/wp25/settings.php:380
1967
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1968
  msgstr ""
1969
 
1970
- #: ../admin/settings.php:400
1971
  #: ../admin/wp25/settings.php:385
1972
  msgid "Preview"
1973
  msgstr ""
1974
 
1975
- #: ../admin/settings.php:402
1976
- #: ../admin/settings.php:406
1977
  #: ../admin/wp25/settings.php:387
1978
  #: ../admin/wp25/settings.php:392
1979
  msgid "Position"
1980
  msgstr ""
1981
 
1982
- #: ../admin/settings.php:426
1983
  #: ../admin/wp25/settings.php:412
1984
  msgid "Offset"
1985
  msgstr ""
1986
 
1987
- #: ../admin/settings.php:444
1988
  #: ../admin/wp25/settings.php:428
1989
  msgid "Use image as watermark"
1990
  msgstr ""
1991
 
1992
- #: ../admin/settings.php:447
1993
  #: ../admin/wp25/settings.php:431
1994
  msgid "URL to file"
1995
  msgstr ""
1996
 
1997
- #: ../admin/settings.php:449
1998
  #: ../admin/wp25/settings.php:433
1999
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
2000
  msgstr ""
2001
 
2002
- #: ../admin/settings.php:455
2003
  #: ../admin/wp25/settings.php:436
2004
  msgid "Use text as watermark"
2005
  msgstr ""
2006
 
2007
- #: ../admin/settings.php:458
2008
  #: ../admin/wp25/settings.php:439
2009
  msgid "Font"
2010
  msgstr ""
2011
 
2012
- #: ../admin/settings.php:467
2013
  #: ../admin/wp25/settings.php:448
2014
  msgid "This function will not work, cause you need the FreeType library"
2015
  msgstr ""
2016
 
2017
- #: ../admin/settings.php:469
2018
  #: ../admin/wp25/settings.php:450
2019
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
2020
  msgstr ""
2021
 
2022
- #: ../admin/settings.php:473
 
2023
  #: ../admin/wp25/settings.php:454
2024
  msgid "Size"
2025
  msgstr ""
2026
 
2027
- #: ../admin/settings.php:477
2028
  #: ../admin/wp25/settings.php:458
2029
  msgid "Color"
2030
  msgstr ""
2031
 
2032
- #: ../admin/settings.php:479
2033
  #: ../admin/wp25/settings.php:460
2034
  msgid "(hex w/o #)"
2035
  msgstr ""
2036
 
2037
- #: ../admin/settings.php:482
2038
  #: ../admin/wp25/settings.php:463
2039
  msgid "Text"
2040
  msgstr ""
2041
 
2042
- #: ../admin/settings.php:486
2043
  #: ../admin/wp25/settings.php:467
2044
  msgid "Opaque"
2045
  msgstr ""
2046
 
2047
- #: ../admin/settings.php:504
2048
  #: ../admin/wp25/settings.php:483
2049
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
2050
  msgstr ""
2051
 
2052
- #: ../admin/settings.php:505
2053
  #: ../admin/wp25/settings.php:484
2054
  msgid "The settings are used in the JW Image Rotator Version"
2055
  msgstr ""
2056
 
2057
- #: ../admin/settings.php:506
2058
  #: ../admin/wp25/settings.php:485
2059
  msgid "See more information for the Flash Player on the web page"
2060
  msgstr ""
2061
 
2062
- #: ../admin/settings.php:509
2063
  #: ../admin/wp25/settings.php:489
2064
  msgid "Default size (W x H)"
2065
  msgstr ""
2066
 
2067
- #: ../admin/settings.php:514
2068
  #: ../admin/wp25/settings.php:494
2069
  msgid "Shuffle mode"
2070
  msgstr ""
2071
 
2072
- #: ../admin/settings.php:518
2073
  #: ../admin/wp25/settings.php:498
2074
  msgid "Show next image on click"
2075
  msgstr ""
2076
 
2077
- #: ../admin/settings.php:522
2078
  #: ../admin/wp25/settings.php:502
2079
  msgid "Show navigation bar"
2080
  msgstr ""
2081
 
2082
- #: ../admin/settings.php:526
2083
  #: ../admin/wp25/settings.php:506
2084
  msgid "Show loading icon"
2085
  msgstr ""
2086
 
2087
- #: ../admin/settings.php:530
2088
  #: ../admin/wp25/settings.php:510
2089
  msgid "Use watermark logo"
2090
  msgstr ""
2091
 
2092
- #: ../admin/settings.php:532
2093
  #: ../admin/wp25/settings.php:512
2094
  msgid "You can change the logo at the watermark settings"
2095
  msgstr ""
2096
 
2097
- #: ../admin/settings.php:535
2098
  #: ../admin/wp25/settings.php:515
2099
  msgid "Stretch image"
2100
  msgstr ""
2101
 
2102
- #: ../admin/settings.php:538
2103
  #: ../admin/wp25/settings.php:518
2104
  msgid "true"
2105
  msgstr ""
2106
 
2107
- #: ../admin/settings.php:539
2108
  #: ../admin/wp25/settings.php:519
2109
  msgid "false"
2110
  msgstr ""
2111
 
2112
- #: ../admin/settings.php:540
2113
  #: ../admin/wp25/settings.php:520
2114
  msgid "fit"
2115
  msgstr ""
2116
 
2117
- #: ../admin/settings.php:541
2118
  #: ../admin/wp25/settings.php:521
2119
  msgid "none"
2120
  msgstr ""
2121
 
2122
- #: ../admin/settings.php:546
2123
  #: ../admin/wp25/settings.php:526
2124
  msgid "Duration time"
2125
  msgstr ""
2126
 
2127
- #: ../admin/settings.php:547
2128
  #: ../admin/wp25/settings.php:527
2129
  msgid "sec."
2130
  msgstr ""
2131
 
2132
- #: ../admin/settings.php:550
2133
  #: ../admin/wp25/settings.php:530
2134
  msgid "Transition / Fade effect"
2135
  msgstr ""
2136
 
2137
- #: ../admin/settings.php:553
2138
  #: ../admin/wp25/settings.php:533
2139
  msgid "fade"
2140
  msgstr ""
2141
 
2142
- #: ../admin/settings.php:554
2143
  #: ../admin/wp25/settings.php:534
2144
  msgid "bgfade"
2145
  msgstr ""
2146
 
2147
- #: ../admin/settings.php:555
2148
  #: ../admin/wp25/settings.php:535
2149
  msgid "slowfade"
2150
  msgstr ""
2151
 
2152
- #: ../admin/settings.php:556
2153
  #: ../admin/wp25/settings.php:536
2154
  msgid "circles"
2155
  msgstr ""
2156
 
2157
- #: ../admin/settings.php:557
2158
  #: ../admin/wp25/settings.php:537
2159
  msgid "bubbles"
2160
  msgstr ""
2161
 
2162
- #: ../admin/settings.php:558
2163
  #: ../admin/wp25/settings.php:538
2164
  msgid "blocks"
2165
  msgstr ""
2166
 
2167
- #: ../admin/settings.php:559
2168
  #: ../admin/wp25/settings.php:539
2169
  msgid "fluids"
2170
  msgstr ""
2171
 
2172
- #: ../admin/settings.php:560
2173
  #: ../admin/wp25/settings.php:540
2174
  msgid "flash"
2175
  msgstr ""
2176
 
2177
- #: ../admin/settings.php:561
2178
  #: ../admin/wp25/settings.php:541
2179
  msgid "lines"
2180
  msgstr ""
2181
 
2182
- #: ../admin/settings.php:566
2183
  #: ../admin/wp25/settings.php:546
2184
  msgid "Use slow zooming effect"
2185
  msgstr ""
2186
 
2187
- #: ../admin/settings.php:570
2188
  #: ../admin/wp25/settings.php:550
2189
  msgid "Background Color"
2190
  msgstr ""
2191
 
2192
- #: ../admin/settings.php:575
2193
  #: ../admin/wp25/settings.php:555
2194
  msgid "Texts / Buttons Color"
2195
  msgstr ""
2196
 
2197
- #: ../admin/settings.php:580
2198
  #: ../admin/wp25/settings.php:560
2199
  msgid "Rollover / Active Color"
2200
  msgstr ""
2201
 
2202
- #: ../admin/settings.php:585
2203
  #: ../admin/wp25/settings.php:565
2204
  msgid "Screen Color"
2205
  msgstr ""
2206
 
2207
- #: ../admin/settings.php:590
2208
  #: ../admin/wp25/settings.php:570
2209
  msgid "Background music (URL)"
2210
  msgstr ""
2211
 
2212
- #: ../admin/settings.php:594
2213
  #: ../admin/wp25/settings.php:574
2214
  msgid "Try XHTML validation (with CDATA)"
2215
  msgstr ""
2216
 
2217
- #: ../admin/settings.php:596
2218
  #: ../admin/wp25/settings.php:576
2219
  msgid "Important : Could causes problem at some browser. Please recheck your page."
2220
  msgstr ""
2221
 
2222
  #: ../admin/setup.php:12
2223
- #: ../admin/wp25/setup.php:12
2224
  msgid "Reset all settings to default parameter"
2225
  msgstr ""
2226
 
2227
  #: ../admin/setup.php:37
2228
- #: ../admin/wp25/setup.php:37
2229
  msgid "Uninstall sucessfull ! Now delete the plugin and enjoy your life ! Good luck !"
2230
  msgstr ""
2231
 
2232
  #: ../admin/setup.php:46
2233
- #: ../admin/wp25/setup.php:46
2234
  msgid "Reset options"
2235
  msgstr ""
2236
 
2237
  #: ../admin/setup.php:49
2238
- #: ../admin/wp25/setup.php:49
2239
  msgid "Reset all options/settings to the default installation."
2240
  msgstr ""
2241
 
2242
  #: ../admin/setup.php:50
2243
- #: ../admin/wp25/setup.php:50
2244
  msgid "Reset settings"
2245
  msgstr ""
2246
 
2247
  #: ../admin/setup.php:50
2248
- #: ../admin/wp25/setup.php:50
2249
  msgid ""
2250
  "Reset all options to default settings ?\\n"
2251
  "\\n"
@@ -2253,42 +2257,42 @@ msgid ""
2253
  msgstr ""
2254
 
2255
  #: ../admin/setup.php:55
2256
- #: ../admin/wp25/setup.php:55
2257
  msgid "Uninstall plugin tables"
2258
  msgstr ""
2259
 
2260
  #: ../admin/setup.php:58
2261
- #: ../admin/wp25/setup.php:60
2262
  msgid "You don't like NextGEN Gallery ?"
2263
  msgstr ""
2264
 
2265
  #: ../admin/setup.php:59
2266
- #: ../admin/wp25/setup.php:61
2267
  msgid "No problem, before you deactivate this plugin press the Uninstall Button, because deactivating NextGEN Gallery does not remove any data that may have been created. "
2268
  msgstr ""
2269
 
2270
  #: ../admin/setup.php:60
2271
- #: ../admin/wp25/setup.php:63
2272
  msgid "WARNING:"
2273
  msgstr ""
2274
 
2275
  #: ../admin/setup.php:61
2276
- #: ../admin/wp25/setup.php:64
2277
  msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to backup all the tables first. NextGEN gallery is stored in the tables"
2278
  msgstr ""
2279
 
2280
  #: ../admin/setup.php:61
2281
- #: ../admin/wp25/setup.php:64
2282
  msgid "and"
2283
  msgstr ""
2284
 
2285
  #: ../admin/setup.php:63
2286
- #: ../admin/wp25/setup.php:66
2287
  msgid "Uninstall plugin"
2288
  msgstr ""
2289
 
2290
  #: ../admin/setup.php:63
2291
- #: ../admin/wp25/setup.php:66
2292
  msgid ""
2293
  "You are about to Uninstall this plugin from WordPress.\\n"
2294
  "This action is not reversible.\\n"
@@ -2395,7 +2399,7 @@ msgstr ""
2395
 
2396
  #: ../admin/style.php:100
2397
  #: ../admin/wp25/style.php:107
2398
- #: ../lib/nggmeta.lib.php:374
2399
  msgid "Author"
2400
  msgstr ""
2401
 
@@ -2424,7 +2428,7 @@ msgid "Select a gallery"
2424
  msgstr ""
2425
 
2426
  #: ../admin/uploadtab.php:107
2427
- #: ../admin/wp25/media-upload.php:120
2428
  #: ../tinymce/window.php:49
2429
  #: ../tinymce3/window.php:49
2430
  msgid "No gallery"
@@ -2524,6 +2528,7 @@ msgid "Direct link to file"
2524
  msgstr ""
2525
 
2526
  #: ../admin/js/uploadtab.js.php:107
 
2527
  msgid "Full size"
2528
  msgstr ""
2529
 
@@ -2560,11 +2565,19 @@ msgid ""
2560
  "Click ok to delete or cancel to go back."
2561
  msgstr ""
2562
 
2563
- #: ../admin/wp25/addgallery.php:247
 
 
 
 
 
 
 
 
2564
  msgid "Import a folder with all images."
2565
  msgstr ""
2566
 
2567
- #: ../admin/wp25/addgallery.php:248
2568
  msgid " Please note : For safe-mode = ON you need to add the subfolder thumbs manually"
2569
  msgstr ""
2570
 
@@ -2572,53 +2585,57 @@ msgstr ""
2572
  msgid "Edit gallery"
2573
  msgstr ""
2574
 
2575
- #: ../admin/wp25/media-upload.php:132
2576
  msgid "Select Gallery &#187;"
2577
  msgstr ""
2578
 
2579
- #: ../admin/wp25/media-upload.php:164
2580
  msgid "Show"
2581
  msgstr ""
2582
 
2583
- #: ../admin/wp25/media-upload.php:165
2584
  msgid "Hide"
2585
  msgstr ""
2586
 
2587
- #: ../admin/wp25/media-upload.php:170
2588
  msgid "Image ID:"
2589
  msgstr ""
2590
 
2591
- #: ../admin/wp25/media-upload.php:176
2592
- msgid "Alt/Titel text"
2593
  msgstr ""
2594
 
2595
- #: ../admin/wp25/media-upload.php:184
2596
  msgid "Alignment"
2597
  msgstr ""
2598
 
2599
- #: ../admin/wp25/media-upload.php:189
2600
  #: ../tinymce/window.php:133
2601
  #: ../tinymce3/window.php:133
2602
  msgid "Left"
2603
  msgstr ""
2604
 
2605
- #: ../admin/wp25/media-upload.php:191
2606
  #: ../tinymce/window.php:134
2607
  #: ../tinymce3/window.php:134
2608
  msgid "Center"
2609
  msgstr ""
2610
 
2611
- #: ../admin/wp25/media-upload.php:193
2612
  #: ../tinymce/window.php:135
2613
  #: ../tinymce3/window.php:135
2614
  msgid "Right"
2615
  msgstr ""
2616
 
2617
- #: ../admin/wp25/media-upload.php:201
 
 
 
 
2618
  msgid "Insert into Post"
2619
  msgstr ""
2620
 
2621
- #: ../admin/wp25/media-upload.php:210
2622
  msgid "Save all changes"
2623
  msgstr ""
2624
 
@@ -2651,120 +2668,120 @@ msgstr ""
2651
  msgid " sec"
2652
  msgstr ""
2653
 
2654
- #: ../lib/nggmeta.lib.php:364
2655
  msgid "Aperture"
2656
  msgstr ""
2657
 
2658
- #: ../lib/nggmeta.lib.php:365
2659
- #: ../lib/nggmeta.lib.php:390
2660
  msgid "Credit"
2661
  msgstr ""
2662
 
2663
- #: ../lib/nggmeta.lib.php:366
2664
  msgid "Camera"
2665
  msgstr ""
2666
 
2667
- #: ../lib/nggmeta.lib.php:367
2668
  msgid "Caption"
2669
  msgstr ""
2670
 
2671
- #: ../lib/nggmeta.lib.php:368
2672
  msgid "Date/Time"
2673
  msgstr ""
2674
 
2675
- #: ../lib/nggmeta.lib.php:369
2676
  msgid "Copyright"
2677
  msgstr ""
2678
 
2679
- #: ../lib/nggmeta.lib.php:370
2680
  msgid "Focal length"
2681
  msgstr ""
2682
 
2683
- #: ../lib/nggmeta.lib.php:371
2684
  msgid "ISO"
2685
  msgstr ""
2686
 
2687
- #: ../lib/nggmeta.lib.php:372
2688
  msgid "Shutter speed"
2689
  msgstr ""
2690
 
2691
- #: ../lib/nggmeta.lib.php:376
2692
  msgid "Subject"
2693
  msgstr ""
2694
 
2695
- #: ../lib/nggmeta.lib.php:377
2696
  msgid "Make"
2697
  msgstr ""
2698
 
2699
- #: ../lib/nggmeta.lib.php:378
2700
  msgid "Edit Status"
2701
  msgstr ""
2702
 
2703
- #: ../lib/nggmeta.lib.php:379
2704
  msgid "Category"
2705
  msgstr ""
2706
 
2707
- #: ../lib/nggmeta.lib.php:380
2708
  msgid "Keywords"
2709
  msgstr ""
2710
 
2711
- #: ../lib/nggmeta.lib.php:381
2712
  msgid "Date Created"
2713
  msgstr ""
2714
 
2715
- #: ../lib/nggmeta.lib.php:382
2716
  msgid "Time Created"
2717
  msgstr ""
2718
 
2719
- #: ../lib/nggmeta.lib.php:383
2720
  msgid "Author Position"
2721
  msgstr ""
2722
 
2723
- #: ../lib/nggmeta.lib.php:384
2724
  msgid "City"
2725
  msgstr ""
2726
 
2727
- #: ../lib/nggmeta.lib.php:385
2728
  msgid "Location"
2729
  msgstr ""
2730
 
2731
- #: ../lib/nggmeta.lib.php:386
2732
  msgid "Province/State"
2733
  msgstr ""
2734
 
2735
- #: ../lib/nggmeta.lib.php:387
2736
  msgid "Country code"
2737
  msgstr ""
2738
 
2739
- #: ../lib/nggmeta.lib.php:388
2740
  msgid "Country"
2741
  msgstr ""
2742
 
2743
- #: ../lib/nggmeta.lib.php:389
2744
  msgid "Headline"
2745
  msgstr ""
2746
 
2747
- #: ../lib/nggmeta.lib.php:391
2748
  msgid "Source"
2749
  msgstr ""
2750
 
2751
- #: ../lib/nggmeta.lib.php:392
2752
  msgid "Copyright Notice"
2753
  msgstr ""
2754
 
2755
- #: ../lib/nggmeta.lib.php:393
2756
  msgid "Contact"
2757
  msgstr ""
2758
 
2759
- #: ../lib/nggmeta.lib.php:394
2760
  msgid "Last modified"
2761
  msgstr ""
2762
 
2763
- #: ../lib/nggmeta.lib.php:395
2764
  msgid "Program tool"
2765
  msgstr ""
2766
 
2767
- #: ../lib/nggmeta.lib.php:396
2768
  msgid "Format"
2769
  msgstr ""
2770
 
2
  msgstr ""
3
  "Project-Id-Version: NextGEN Gallery\n"
4
  "POT-Creation-Date: \n"
5
+ "PO-Revision-Date: 2008-04-25 20:12+0100\n"
6
  "Last-Translator: Alex Rabe\n"
7
  "Language-Team: Alex Rabe\n"
8
  "MIME-Version: 1.0\n"
19
  msgid "Sorry, NextGEN Gallery works only under WordPress 2.1 or higher"
20
  msgstr ""
21
 
22
+ #: ../nggallery.php:60
23
+ msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB higher"
 
24
  msgstr ""
25
 
 
26
  #: ../nggfunctions.php:446
27
+ #: ../nggfunctions.php:461
28
+ msgid "Watch gallery"
29
+ msgstr ""
30
+
31
+ #: ../nggfunctions.php:455
32
+ #: ../nggfunctions.php:467
33
+ #: ../nggfunctions.php:752
34
  msgid "Photos"
35
  msgstr ""
36
 
37
+ #: ../nggfunctions.php:543
38
  msgid "Back"
39
  msgstr ""
40
 
41
+ #: ../nggfunctions.php:547
42
  msgid "Next"
43
  msgstr ""
44
 
45
+ #: ../nggfunctions.php:550
46
  #: ../admin/manage.php:85
47
  #: ../admin/wp25/manage.php:85
48
  #: ../tinymce/window.php:37
50
  msgid "Picture"
51
  msgstr ""
52
 
53
+ #: ../nggfunctions.php:550
54
  msgid "from"
55
  msgstr ""
56
 
57
+ #: ../nggfunctions.php:722
58
  msgid "Overview"
59
  msgstr ""
60
 
74
  msgid "[Show picture list]"
75
  msgstr ""
76
 
77
+ #: ../nggwidget.php:121
78
  msgid "Title:"
79
  msgstr ""
80
 
81
+ #: ../nggwidget.php:122
82
  msgid "Select Gallery:"
83
  msgstr ""
84
 
85
+ #: ../nggwidget.php:126
86
  msgid "All images"
87
  msgstr ""
88
 
89
+ #: ../nggwidget.php:136
90
  msgid "Height:"
91
  msgstr ""
92
 
93
+ #: ../nggwidget.php:137
94
  msgid "Width:"
95
  msgstr ""
96
 
97
+ #: ../nggwidget.php:191
98
  #, php-format
99
  msgid "NextGEN Gallery %d"
100
  msgstr ""
101
 
102
+ #: ../nggwidget.php:207
103
  msgid "NextGEN Gallery Widgets"
104
  msgstr ""
105
 
106
+ #: ../nggwidget.php:208
107
  msgid "How many NextGEN Gallery widgets would you like?"
108
  msgstr ""
109
 
110
+ #: ../nggwidget.php:212
111
  #: ../admin/uploadtab.php:193
112
  msgid "Save"
113
  msgstr ""
114
 
115
+ #: ../nggwidget.php:304
116
  msgid "Title :"
117
  msgstr ""
118
 
119
+ #: ../nggwidget.php:309
120
  msgid "Show :"
121
  msgstr ""
122
 
123
+ #: ../nggwidget.php:314
124
+ #: ../admin/settings.php:102
125
+ #: ../admin/settings.php:295
126
  #: ../admin/wp25/settings.php:99
127
  #: ../admin/wp25/settings.php:285
128
  msgid "Thumbnails"
129
  msgstr ""
130
 
131
+ #: ../nggwidget.php:315
132
  msgid "Orginal images"
133
  msgstr ""
134
 
135
+ #: ../nggwidget.php:321
136
+ #: ../admin/settings.php:560
137
  #: ../admin/wp25/settings.php:542
138
  msgid "random"
139
  msgstr ""
140
 
141
+ #: ../nggwidget.php:322
142
  msgid "recent added "
143
  msgstr ""
144
 
145
+ #: ../nggwidget.php:326
146
  msgid "Width x Height :"
147
  msgstr ""
148
 
149
+ #: ../nggwidget.php:332
150
  msgid "Select :"
151
  msgstr ""
152
 
153
+ #: ../nggwidget.php:334
154
  msgid "All galleries"
155
  msgstr ""
156
 
157
+ #: ../nggwidget.php:335
158
  msgid "Only which are not listed"
159
  msgstr ""
160
 
161
+ #: ../nggwidget.php:336
162
  msgid "Only which are listed"
163
  msgstr ""
164
 
165
+ #: ../nggwidget.php:341
166
  msgid "Gallery ID :"
167
  msgstr ""
168
 
169
+ #: ../nggwidget.php:343
170
  msgid "Gallery IDs, separated by commas."
171
  msgstr ""
172
 
276
  msgstr ""
277
 
278
  #: ../admin/about.php:32
 
279
  msgid "To help people to work with this plugin, I would like to have it in all avaivable languages"
280
  msgstr ""
281
 
285
  msgstr ""
286
 
287
  #: ../admin/about.php:44
 
288
  msgid "No doubt a very usefull and easy motivation :-)"
289
  msgstr ""
290
 
324
  msgid "No gallery selected !"
325
  msgstr ""
326
 
327
+ #: ../admin/addgallery.php:111
328
+ #: ../admin/wp25/addgallery.php:95
329
  msgid "Image Files"
330
  msgstr ""
331
 
332
+ #: ../admin/addgallery.php:131
333
+ #: ../admin/addgallery.php:161
334
+ #: ../admin/wp25/addgallery.php:114
335
+ #: ../admin/wp25/addgallery.php:144
336
  msgid "remove"
337
  msgstr ""
338
 
339
+ #: ../admin/addgallery.php:132
340
+ #: ../admin/wp25/addgallery.php:115
341
  msgid "Browse..."
342
  msgstr ""
343
 
344
+ #: ../admin/addgallery.php:133
345
+ #: ../admin/addgallery.php:311
346
+ #: ../admin/wp25/addgallery.php:116
347
+ #: ../admin/wp25/addgallery.php:287
348
  msgid "Upload images"
349
  msgstr ""
350
 
351
+ #: ../admin/addgallery.php:177
352
+ #: ../admin/addgallery.php:189
353
+ #: ../admin/wp25/addgallery.php:160
354
+ #: ../admin/wp25/addgallery.php:172
355
  msgid "Add new gallery"
356
  msgstr ""
357
 
358
+ #: ../admin/addgallery.php:179
359
+ #: ../admin/addgallery.php:210
360
+ #: ../admin/wp25/addgallery.php:162
361
+ #: ../admin/wp25/addgallery.php:191
362
  msgid "Upload a Zip-File"
363
  msgstr ""
364
 
365
+ #: ../admin/addgallery.php:182
366
+ #: ../admin/addgallery.php:250
367
+ #: ../admin/wp25/addgallery.php:165
368
+ #: ../admin/wp25/addgallery.php:229
369
  msgid "Import image folder"
370
  msgstr ""
371
 
372
+ #: ../admin/addgallery.php:184
373
+ #: ../admin/addgallery.php:274
374
+ #: ../admin/wp25/addgallery.php:167
375
+ #: ../admin/wp25/addgallery.php:251
376
  msgid "Upload Images"
377
  msgstr ""
378
 
379
+ #: ../admin/addgallery.php:195
380
+ #: ../admin/wp25/addgallery.php:177
381
  msgid "New Gallery"
382
  msgstr ""
383
 
384
+ #: ../admin/addgallery.php:198
385
+ #: ../admin/wp25/addgallery.php:180
386
  msgid "Create a new , empty gallery below the folder"
387
  msgstr ""
388
 
389
+ #: ../admin/addgallery.php:200
390
+ #: ../admin/wp25/addgallery.php:182
391
  msgid "Allowed characters for file and folder names are"
392
  msgstr ""
393
 
394
+ #: ../admin/addgallery.php:203
395
+ #: ../admin/wp25/addgallery.php:185
396
  msgid "Add gallery"
397
  msgstr ""
398
 
399
+ #: ../admin/addgallery.php:216
400
+ #: ../admin/wp25/addgallery.php:196
401
  msgid "Select Zip-File"
402
  msgstr ""
403
 
404
+ #: ../admin/addgallery.php:218
405
+ #: ../admin/wp25/addgallery.php:198
406
  msgid "Upload a zip file with images"
407
  msgstr ""
408
 
409
+ #: ../admin/addgallery.php:221
410
+ #: ../admin/addgallery.php:284
411
+ #: ../admin/wp25/addgallery.php:201
412
+ #: ../admin/wp25/addgallery.php:260
413
  msgid "in to"
414
  msgstr ""
415
 
416
+ #: ../admin/addgallery.php:223
417
+ #: ../admin/wp25/addgallery.php:203
418
  msgid "a new gallery"
419
  msgstr ""
420
 
421
+ #: ../admin/addgallery.php:233
422
+ #: ../admin/addgallery.php:296
423
+ #: ../admin/wp25/addgallery.php:213
424
+ #: ../admin/wp25/addgallery.php:272
425
  msgid "Note : The upload limit on your server is "
426
  msgstr ""
427
 
428
+ #: ../admin/addgallery.php:237
429
+ #: ../admin/addgallery.php:262
430
+ #: ../admin/addgallery.php:300
431
+ #: ../admin/wp25/addgallery.php:217
432
+ #: ../admin/wp25/addgallery.php:240
433
+ #: ../admin/wp25/addgallery.php:276
434
  msgid "Add Metadata :"
435
  msgstr ""
436
 
437
+ #: ../admin/addgallery.php:239
438
+ #: ../admin/addgallery.php:264
439
+ #: ../admin/addgallery.php:302
440
+ #: ../admin/wp25/addgallery.php:219
441
+ #: ../admin/wp25/addgallery.php:242
442
+ #: ../admin/wp25/addgallery.php:278
443
  msgid "Import EXIF, IPTC or XMP data (if available)"
444
  msgstr ""
445
 
446
+ #: ../admin/addgallery.php:242
447
+ #: ../admin/wp25/addgallery.php:222
448
  msgid "Start upload"
449
  msgstr ""
450
 
451
+ #: ../admin/addgallery.php:256
452
+ #: ../admin/wp25/addgallery.php:234
453
  msgid "Import from Server path:"
454
  msgstr ""
455
 
456
+ #: ../admin/addgallery.php:258
457
  msgid "Import a folder with images. Please note :"
458
  msgstr ""
459
 
460
+ #: ../admin/addgallery.php:259
461
  msgid "For safe-mode = ON you need to add the subfolder thumbs manually"
462
  msgstr ""
463
 
464
+ #: ../admin/addgallery.php:267
465
+ #: ../admin/wp25/addgallery.php:245
466
  msgid "Import folder"
467
  msgstr ""
468
 
469
+ #: ../admin/addgallery.php:280
470
+ #: ../admin/wp25/addgallery.php:256
471
  msgid "Upload image"
472
  msgstr ""
473
 
474
+ #: ../admin/addgallery.php:286
475
+ #: ../admin/wp25/addgallery.php:262
476
  msgid "Choose gallery"
477
  msgstr ""
478
 
479
+ #: ../admin/addgallery.php:307
480
+ #: ../admin/wp25/addgallery.php:283
481
  msgid "The batch upload requires Adobe Flash 9, disable it if you have problems"
482
  msgstr ""
483
 
484
+ #: ../admin/addgallery.php:307
485
+ #: ../admin/wp25/addgallery.php:283
486
  msgid "Disable flash upload"
487
  msgstr ""
488
 
489
+ #: ../admin/addgallery.php:309
490
+ #: ../admin/wp25/addgallery.php:285
491
  msgid "Upload multiple files at once by ctrl/shift-selecting in dialog"
492
  msgstr ""
493
 
494
+ #: ../admin/addgallery.php:309
495
+ #: ../admin/wp25/addgallery.php:285
496
  msgid "Enable flash based upload"
497
  msgstr ""
498
 
499
+ #: ../admin/admin.php:75
500
  #: ../admin/functions.php:78
501
  #: ../admin/functions.php:82
502
  #: ../admin/functions.php:128
503
  #: ../admin/manage.php:64
504
  #: ../admin/manage.php:434
505
+ #: ../admin/settings.php:104
506
  #: ../admin/uploadtab.php:36
507
  #: ../admin/wp25/admin.php:72
508
  #: ../admin/wp25/functions.php:78
516
  msgid "Gallery"
517
  msgstr ""
518
 
519
+ #: ../admin/admin.php:76
520
  #: ../admin/wp25/admin.php:73
521
  msgid "Add Gallery"
522
  msgstr ""
523
 
524
+ #: ../admin/admin.php:77
525
  #: ../admin/wp25/admin.php:74
526
  msgid "Manage Gallery"
527
  msgstr ""
528
 
529
+ #: ../admin/admin.php:78
530
  #: ../admin/wp25/admin.php:75
531
  #: ../tinymce/window.php:36
532
  #: ../tinymce3/window.php:36
533
  msgid "Album"
534
  msgstr ""
535
 
536
+ #: ../admin/admin.php:79
537
  #: ../admin/wp25/admin.php:76
538
  msgid "Options"
539
  msgstr ""
540
 
541
+ #: ../admin/admin.php:81
542
  #: ../admin/wp25/admin.php:78
543
  msgid "Style"
544
  msgstr ""
545
 
546
+ #: ../admin/admin.php:82
547
  #: ../admin/wp25/admin.php:79
548
  msgid "Setup Gallery"
549
  msgstr ""
550
 
551
+ #: ../admin/admin.php:82
552
  #: ../admin/wp25/admin.php:79
553
  msgid "Setup"
554
  msgstr ""
555
 
556
+ #: ../admin/admin.php:84
557
  #: ../admin/wp25/admin.php:81
558
  msgid "Roles"
559
  msgstr ""
560
 
561
+ #: ../admin/admin.php:85
562
  #: ../admin/wp25/admin.php:82
563
  msgid "About this Gallery"
564
  msgstr ""
565
 
566
+ #: ../admin/admin.php:85
567
  #: ../admin/wp25/admin.php:82
568
  msgid "About"
569
  msgstr ""
570
 
571
+ #: ../admin/admin.php:87
572
  #: ../admin/wp25/admin.php:84
573
  #: ../admin/wp25/media-upload.php:11
574
  msgid "NextGEN Gallery"
578
  #: ../admin/album.php:37
579
  #: ../admin/wp25/album.php:19
580
  #: ../admin/wp25/album.php:36
581
+ #: ../admin/wp25/settings.php:33
582
  msgid "Update Successfully"
583
  msgstr ""
584
 
587
  msgid "Album deleted"
588
  msgstr ""
589
 
590
+ #: ../admin/album.php:122
591
  #: ../admin/wp25/album.php:119
592
  msgid "Manage Albums"
593
  msgstr ""
594
 
595
+ #: ../admin/album.php:128
596
  #: ../admin/wp25/album.php:125
597
  #: ../tinymce/window.php:74
598
  #: ../tinymce3/window.php:74
599
  msgid "Select album"
600
  msgstr ""
601
 
602
+ #: ../admin/album.php:131
603
  #: ../admin/wp25/album.php:128
604
  msgid "No album selected"
605
  msgstr ""
606
 
607
+ #: ../admin/album.php:144
608
  #: ../admin/wp25/album.php:141
609
  msgid "Add new album"
610
  msgstr ""
611
 
612
+ #: ../admin/album.php:148
613
  #: ../admin/manage.php:309
614
  #: ../admin/manage.php:580
615
  #: ../admin/wp25/album.php:146
618
  msgid "Delete"
619
  msgstr ""
620
 
621
+ #: ../admin/album.php:148
622
  #: ../admin/wp25/album.php:146
623
  msgid "Delete album ?"
624
  msgstr ""
625
 
626
+ #: ../admin/album.php:150
627
+ #: ../admin/settings.php:164
628
+ #: ../admin/settings.php:204
629
+ #: ../admin/settings.php:251
630
+ #: ../admin/settings.php:331
631
+ #: ../admin/settings.php:378
632
+ #: ../admin/settings.php:490
633
+ #: ../admin/settings.php:598
634
  #: ../admin/wpmu.php:98
635
  #: ../admin/wp25/album.php:148
636
  #: ../admin/wp25/settings.php:160
644
  msgid "Update"
645
  msgstr ""
646
 
647
+ #: ../admin/album.php:158
648
  #: ../admin/wp25/album.php:157
649
  msgid "[Show all]"
650
  msgstr ""
651
 
652
+ #: ../admin/album.php:159
653
  #: ../admin/wp25/album.php:158
654
  msgid "[Maximize]"
655
  msgstr ""
656
 
657
+ #: ../admin/album.php:160
658
  #: ../admin/wp25/album.php:159
659
  msgid "[Minimize]"
660
  msgstr ""
661
 
662
+ #: ../admin/album.php:162
663
  #: ../admin/wp25/album.php:161
664
  msgid "After you create and select a album, you can drag and drop a gallery into your album below"
665
  msgstr ""
666
 
667
+ #: ../admin/album.php:169
668
  #: ../admin/wp25/album.php:168
669
  msgid "Select Gallery"
670
  msgstr ""
671
 
672
+ #: ../admin/album.php:208
673
  #: ../admin/wp25/album.php:207
674
  msgid "Album Page ID"
675
  msgstr ""
676
 
677
+ #: ../admin/album.php:220
678
  #: ../admin/wp25/album.php:219
679
  msgid "No album selected!"
680
  msgstr ""
681
 
682
+ #: ../admin/album.php:256
683
  #: ../admin/manage.php:283
684
  #: ../admin/manage.php:535
685
  #: ../admin/wp25/album.php:255
688
  msgid "ID"
689
  msgstr ""
690
 
691
+ #: ../admin/album.php:257
692
  #: ../admin/wp25/album.php:256
693
  msgid "Name"
694
  msgstr ""
695
 
696
+ #: ../admin/album.php:258
697
  #: ../admin/manage.php:285
698
  #: ../admin/manage.php:446
699
  #: ../admin/js/uploadtab.js.php:109
700
  #: ../admin/wp25/album.php:257
701
  #: ../admin/wp25/manage.php:290
702
  #: ../admin/wp25/manage.php:415
703
+ #: ../lib/nggmeta.lib.php:375
704
  msgid "Title"
705
  msgstr ""
706
 
707
+ #: ../admin/album.php:259
708
  #: ../admin/wp25/album.php:258
709
  msgid "Page"
710
  msgstr ""
752
  #: ../admin/wp25/functions.php:45
753
  #: ../admin/wp25/functions.php:55
754
  #: ../admin/wp25/functions.php:525
755
+ #: ../lib/nggallery.lib.php:299
756
  msgid "Unable to create directory "
757
  msgstr ""
758
 
1028
  #: ../admin/wp25/manage.php:291
1029
  #: ../admin/wp25/manage.php:434
1030
  #: ../admin/wp25/manage.php:517
1031
+ #: ../admin/wp25/media-upload.php:186
1032
  #: ../admin/wp25/style.php:109
1033
  msgid "Description"
1034
  msgstr ""
1208
  msgstr ""
1209
 
1210
  #: ../admin/manage.php:536
1211
+ #: ../admin/settings.php:320
1212
  #: ../admin/wp25/manage.php:512
1213
  #: ../admin/wp25/settings.php:310
1214
  msgid "File name"
1217
  #: ../admin/manage.php:538
1218
  #: ../admin/js/uploadtab.js.php:106
1219
  #: ../admin/wp25/manage.php:514
1220
+ #: ../admin/wp25/media-upload.php:207
1221
  msgid "Thumbnail"
1222
  msgstr ""
1223
 
1573
  #: ../admin/settings.php:33
1574
  #: ../admin/style.php:16
1575
  #: ../admin/wpmu.php:32
 
1576
  #: ../admin/wp25/style.php:16
1577
  #: ../admin/wp25/wpmu.php:32
1578
  msgid "Update successfully"
1583
  msgid "Cache cleared"
1584
  msgstr ""
1585
 
1586
+ #: ../admin/settings.php:101
1587
+ #: ../admin/settings.php:113
1588
  #: ../admin/wp25/settings.php:98
1589
  #: ../admin/wp25/settings.php:110
1590
  msgid "General Options"
1591
  msgstr ""
1592
 
1593
+ #: ../admin/settings.php:103
1594
  #: ../admin/wp25/settings.php:100
1595
  msgid "Images"
1596
  msgstr ""
1597
 
1598
+ #: ../admin/settings.php:105
1599
+ #: ../admin/settings.php:339
1600
  #: ../admin/wp25/settings.php:102
1601
  #: ../admin/wp25/settings.php:328
1602
  msgid "Effects"
1603
  msgstr ""
1604
 
1605
+ #: ../admin/settings.php:106
1606
+ #: ../admin/settings.php:392
1607
  #: ../admin/wp25/settings.php:103
1608
  #: ../admin/wp25/settings.php:379
1609
  #: ../tinymce/window.php:123
1611
  msgid "Watermark"
1612
  msgstr ""
1613
 
1614
+ #: ../admin/settings.php:107
1615
+ #: ../admin/settings.php:296
1616
+ #: ../admin/settings.php:500
1617
  #: ../admin/wp25/settings.php:104
1618
  #: ../admin/wp25/settings.php:286
1619
  #: ../admin/wp25/settings.php:482
1622
  msgid "Slideshow"
1623
  msgstr ""
1624
 
1625
+ #: ../admin/settings.php:120
1626
  #: ../admin/wpmu.php:48
1627
  #: ../admin/wp25/settings.php:116
1628
  #: ../admin/wp25/wpmu.php:48
1629
  msgid "Gallery path"
1630
  msgstr ""
1631
 
1632
+ #: ../admin/settings.php:122
1633
  #: ../admin/wp25/settings.php:118
1634
  msgid "This is the default path for all galleries"
1635
  msgstr ""
1636
 
1637
+ #: ../admin/settings.php:133
1638
  #: ../admin/wp25/settings.php:129
1639
  msgid "Delete image files"
1640
  msgstr ""
1641
 
1642
+ #: ../admin/settings.php:135
1643
  #: ../admin/wp25/settings.php:131
1644
  msgid "Delete files, when removing a gallery in the database"
1645
  msgstr ""
1646
 
1647
+ #: ../admin/settings.php:138
1648
  #: ../admin/wp25/settings.php:134
1649
  msgid "Activate permalinks"
1650
  msgstr ""
1651
 
1652
+ #: ../admin/settings.php:140
1653
  #: ../admin/wp25/settings.php:136
1654
  msgid "When you activate this option, you need to update your permalink structure one time."
1655
  msgstr ""
1656
 
1657
+ #: ../admin/settings.php:143
1658
  #: ../admin/wp25/settings.php:139
1659
  msgid "Tags / Categories"
1660
  msgstr ""
1661
 
1662
+ #: ../admin/settings.php:146
1663
  #: ../admin/wp25/settings.php:142
1664
  msgid "Activate related images"
1665
  msgstr ""
1666
 
1667
+ #: ../admin/settings.php:148
1668
  #: ../admin/wp25/settings.php:144
1669
  msgid "This option will append related images to every post"
1670
  msgstr ""
1671
 
1672
+ #: ../admin/settings.php:152
1673
  #: ../admin/wp25/settings.php:148
1674
  msgid "Match with"
1675
  msgstr ""
1676
 
1677
+ #: ../admin/settings.php:153
1678
  #: ../admin/wp25/settings.php:149
1679
  msgid "Categories"
1680
  msgstr ""
1681
 
1682
+ #: ../admin/settings.php:154
1683
  #: ../admin/wp25/settings.php:150
1684
+ #: ../lib/nggmeta.lib.php:377
1685
  msgid "Tags"
1686
  msgstr ""
1687
 
1688
+ #: ../admin/settings.php:154
1689
  #: ../admin/wp25/settings.php:150
1690
  msgid " (require WordPress 2.3 or higher)"
1691
  msgstr ""
1692
 
1693
+ #: ../admin/settings.php:158
1694
  #: ../admin/wp25/settings.php:154
1695
  msgid "Max. number of images"
1696
  msgstr ""
1697
 
1698
+ #: ../admin/settings.php:160
1699
  #: ../admin/wp25/settings.php:156
1700
  msgid "0 will show all images"
1701
  msgstr ""
1702
 
1703
+ #: ../admin/settings.php:172
1704
  #: ../admin/wp25/settings.php:167
1705
  msgid "Thumbnail settings"
1706
  msgstr ""
1707
 
1708
+ #: ../admin/settings.php:177
1709
  #: ../admin/wp25/settings.php:171
1710
  msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
1711
  msgstr ""
1712
 
1713
+ #: ../admin/settings.php:180
1714
  #: ../admin/wp25/settings.php:174
1715
  msgid "Width x height (in pixel)"
1716
  msgstr ""
1717
 
1718
+ #: ../admin/settings.php:182
1719
  #: ../admin/wp25/settings.php:176
1720
  msgid "These values are maximum values "
1721
  msgstr ""
1722
 
1723
+ #: ../admin/settings.php:185
1724
  #: ../admin/wp25/settings.php:179
1725
  msgid "Set fix dimension"
1726
  msgstr ""
1727
 
1728
+ #: ../admin/settings.php:187
1729
  #: ../admin/wp25/settings.php:181
1730
  msgid "Ignore the aspect ratio, no portrait thumbnails"
1731
  msgstr ""
1732
 
1733
+ #: ../admin/settings.php:190
1734
  #: ../admin/wp25/settings.php:184
1735
  msgid "Crop square thumbnail from image"
1736
  msgstr ""
1737
 
1738
+ #: ../admin/settings.php:192
1739
  #: ../admin/wp25/settings.php:186
1740
  msgid "Create square thumbnails, use only the width setting :"
1741
  msgstr ""
1742
 
1743
+ #: ../admin/settings.php:195
1744
  #: ../admin/wp25/settings.php:189
1745
  msgid "Thumbnail quality"
1746
  msgstr ""
1747
 
1748
+ #: ../admin/settings.php:199
1749
+ #: ../admin/settings.php:231
1750
  #: ../admin/wp25/settings.php:193
1751
  #: ../admin/wp25/settings.php:223
1752
  msgid "Resample Mode"
1753
  msgstr ""
1754
 
1755
+ #: ../admin/settings.php:201
1756
+ #: ../admin/settings.php:234
1757
  #: ../admin/wp25/settings.php:195
1758
  #: ../admin/wp25/settings.php:226
1759
  msgid "Value between 1-5 (higher value, more CPU load)"
1760
  msgstr ""
1761
 
1762
+ #: ../admin/settings.php:212
1763
  #: ../admin/wp25/settings.php:205
1764
  msgid "Image settings"
1765
  msgstr ""
1766
 
1767
+ #: ../admin/settings.php:219
1768
  #: ../admin/wp25/settings.php:211
1769
  msgid "Resize Images"
1770
  msgstr ""
1771
 
1772
+ #: ../admin/settings.php:223
1773
  #: ../admin/wp25/settings.php:215
1774
  msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
1775
  msgstr ""
1776
 
1777
+ #: ../admin/settings.php:226
1778
  #: ../admin/wp25/settings.php:218
1779
  msgid "Image quality"
1780
  msgstr ""
1781
 
1782
+ #: ../admin/settings.php:237
1783
  #: ../admin/wp25/settings.php:229
1784
  msgid "Single picture"
1785
  msgstr ""
1786
 
1787
+ #: ../admin/settings.php:240
1788
  #: ../admin/wp25/settings.php:232
1789
  msgid "Cache single pictures"
1790
  msgstr ""
1791
 
1792
+ #: ../admin/settings.php:243
1793
  #: ../admin/wp25/settings.php:235
1794
  msgid "Creates a file for each singlepic settings. Reduce the CPU load"
1795
  msgstr ""
1796
 
1797
+ #: ../admin/settings.php:246
1798
  #: ../admin/wp25/settings.php:238
1799
  msgid "Clear cache folder"
1800
  msgstr ""
1801
 
1802
+ #: ../admin/settings.php:248
1803
  #: ../admin/wp25/settings.php:240
1804
  msgid "Proceed now"
1805
  msgstr ""
1806
 
1807
+ #: ../admin/settings.php:259
1808
  #: ../admin/wp25/settings.php:250
1809
  msgid "Gallery settings"
1810
  msgstr ""
1811
 
1812
+ #: ../admin/settings.php:275
1813
  #: ../admin/wp25/settings.php:265
1814
  msgid "Deactivate gallery page link"
1815
  msgstr ""
1816
 
1817
+ #: ../admin/settings.php:277
1818
  #: ../admin/wp25/settings.php:267
1819
  msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
1820
  msgstr ""
1821
 
1822
+ #: ../admin/settings.php:281
1823
  #: ../admin/wp25/settings.php:271
1824
  msgid "Number of images per page"
1825
  msgstr ""
1826
 
1827
+ #: ../admin/settings.php:283
1828
  #: ../admin/wp25/settings.php:273
1829
  msgid "0 will disable pagination, all images on one page"
1830
  msgstr ""
1831
 
1832
+ #: ../admin/settings.php:287
1833
  #: ../admin/wp25/settings.php:277
1834
  msgid "Integrate slideshow"
1835
  msgstr ""
1836
 
1837
+ #: ../admin/settings.php:294
1838
  #: ../admin/wp25/settings.php:284
1839
  msgid "Show first"
1840
  msgstr ""
1841
 
1842
+ #: ../admin/settings.php:300
1843
  #: ../admin/wp25/settings.php:290
1844
  msgid "Show thumbnail description"
1845
  msgstr ""
1846
 
1847
+ #: ../admin/settings.php:301
1848
+ #: ../admin/settings.php:351
1849
  #: ../admin/js/uploadtab.js.php:117
1850
+ #: ../admin/wp25/media-upload.php:193
1851
  #: ../admin/wp25/settings.php:291
1852
  #: ../admin/wp25/settings.php:339
1853
  msgid "None"
1854
  msgstr ""
1855
 
1856
+ #: ../admin/settings.php:302
1857
  #: ../admin/wp25/settings.php:292
1858
  msgid "Description text"
1859
  msgstr ""
1860
 
1861
+ #: ../admin/settings.php:303
1862
+ #: ../admin/settings.php:321
1863
  #: ../admin/wp25/settings.php:293
1864
  #: ../admin/wp25/settings.php:311
1865
  msgid "Alt / Title text"
1866
  msgstr ""
1867
 
1868
+ #: ../admin/settings.php:307
1869
  #: ../admin/wp25/settings.php:297
1870
  msgid "Show ImageBrowser"
1871
  msgstr ""
1872
 
1873
+ #: ../admin/settings.php:309
1874
  #: ../admin/wp25/settings.php:299
1875
  msgid "The gallery will open the ImageBrowser instead the effect."
1876
  msgstr ""
1877
 
1878
+ #: ../admin/settings.php:313
1879
  #: ../admin/wp25/settings.php:303
1880
  msgid "Sort options"
1881
  msgstr ""
1882
 
1883
+ #: ../admin/settings.php:316
1884
  #: ../admin/wp25/settings.php:306
1885
  msgid "Sort thumbnails"
1886
  msgstr ""
1887
 
1888
+ #: ../admin/settings.php:318
1889
  #: ../admin/wp25/settings.php:308
1890
  msgid "Custom order"
1891
  msgstr ""
1892
 
1893
+ #: ../admin/settings.php:319
1894
  #: ../admin/wp25/settings.php:309
1895
  msgid "Image ID"
1896
  msgstr ""
1897
 
1898
+ #: ../admin/settings.php:325
1899
  #: ../admin/wp25/settings.php:315
1900
  msgid "Sort direction"
1901
  msgstr ""
1902
 
1903
+ #: ../admin/settings.php:326
1904
  #: ../admin/wp25/settings.php:316
1905
  msgid "Ascending"
1906
  msgstr ""
1907
 
1908
+ #: ../admin/settings.php:327
1909
  #: ../admin/wp25/settings.php:317
1910
  msgid "Descending"
1911
  msgstr ""
1912
 
1913
+ #: ../admin/settings.php:343
1914
  #: ../admin/wp25/settings.php:332
1915
  msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
1916
  msgstr ""
1917
 
1918
+ #: ../admin/settings.php:344
1919
  #: ../admin/wp25/settings.php:333
1920
  msgid "With the placeholder"
1921
  msgstr ""
1922
 
1923
+ #: ../admin/settings.php:344
1924
  #: ../admin/wp25/settings.php:333
1925
  msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
1926
  msgstr ""
1927
 
1928
+ #: ../admin/settings.php:348
1929
  #: ../admin/wp25/settings.php:336
1930
  msgid "JavaScript Thumbnail effect"
1931
  msgstr ""
1932
 
1933
+ #: ../admin/settings.php:352
1934
  #: ../admin/wp25/settings.php:340
1935
  msgid "Thickbox"
1936
  msgstr ""
1937
 
1938
+ #: ../admin/settings.php:353
1939
  #: ../admin/wp25/settings.php:341
1940
  msgid "Lightbox"
1941
  msgstr ""
1942
 
1943
+ #: ../admin/settings.php:354
1944
  #: ../admin/wp25/settings.php:342
1945
  msgid "Highslide"
1946
  msgstr ""
1947
 
1948
+ #: ../admin/settings.php:355
1949
  #: ../admin/wp25/settings.php:343
1950
  msgid "Shutter"
1951
  msgstr ""
1952
 
1953
+ #: ../admin/settings.php:356
1954
  #: ../admin/wp25/settings.php:344
1955
  msgid "Custom"
1956
  msgstr ""
1957
 
1958
+ #: ../admin/settings.php:361
1959
  #: ../admin/wp25/settings.php:349
1960
  msgid "Link Code line"
1961
  msgstr ""
1962
 
1963
+ #: ../admin/settings.php:369
1964
  #: ../admin/wp25/settings.php:357
1965
  msgid "Select loading image"
1966
  msgstr ""
1967
 
1968
+ #: ../admin/settings.php:393
1969
  #: ../admin/wp25/settings.php:380
1970
  msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
1971
  msgstr ""
1972
 
1973
+ #: ../admin/settings.php:398
1974
  #: ../admin/wp25/settings.php:385
1975
  msgid "Preview"
1976
  msgstr ""
1977
 
1978
+ #: ../admin/settings.php:400
1979
+ #: ../admin/settings.php:404
1980
  #: ../admin/wp25/settings.php:387
1981
  #: ../admin/wp25/settings.php:392
1982
  msgid "Position"
1983
  msgstr ""
1984
 
1985
+ #: ../admin/settings.php:424
1986
  #: ../admin/wp25/settings.php:412
1987
  msgid "Offset"
1988
  msgstr ""
1989
 
1990
+ #: ../admin/settings.php:442
1991
  #: ../admin/wp25/settings.php:428
1992
  msgid "Use image as watermark"
1993
  msgstr ""
1994
 
1995
+ #: ../admin/settings.php:445
1996
  #: ../admin/wp25/settings.php:431
1997
  msgid "URL to file"
1998
  msgstr ""
1999
 
2000
+ #: ../admin/settings.php:447
2001
  #: ../admin/wp25/settings.php:433
2002
  msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
2003
  msgstr ""
2004
 
2005
+ #: ../admin/settings.php:453
2006
  #: ../admin/wp25/settings.php:436
2007
  msgid "Use text as watermark"
2008
  msgstr ""
2009
 
2010
+ #: ../admin/settings.php:456
2011
  #: ../admin/wp25/settings.php:439
2012
  msgid "Font"
2013
  msgstr ""
2014
 
2015
+ #: ../admin/settings.php:465
2016
  #: ../admin/wp25/settings.php:448
2017
  msgid "This function will not work, cause you need the FreeType library"
2018
  msgstr ""
2019
 
2020
+ #: ../admin/settings.php:467
2021
  #: ../admin/wp25/settings.php:450
2022
  msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
2023
  msgstr ""
2024
 
2025
+ #: ../admin/settings.php:471
2026
+ #: ../admin/wp25/media-upload.php:203
2027
  #: ../admin/wp25/settings.php:454
2028
  msgid "Size"
2029
  msgstr ""
2030
 
2031
+ #: ../admin/settings.php:475
2032
  #: ../admin/wp25/settings.php:458
2033
  msgid "Color"
2034
  msgstr ""
2035
 
2036
+ #: ../admin/settings.php:477
2037
  #: ../admin/wp25/settings.php:460
2038
  msgid "(hex w/o #)"
2039
  msgstr ""
2040
 
2041
+ #: ../admin/settings.php:480
2042
  #: ../admin/wp25/settings.php:463
2043
  msgid "Text"
2044
  msgstr ""
2045
 
2046
+ #: ../admin/settings.php:484
2047
  #: ../admin/wp25/settings.php:467
2048
  msgid "Opaque"
2049
  msgstr ""
2050
 
2051
+ #: ../admin/settings.php:502
2052
  #: ../admin/wp25/settings.php:483
2053
  msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
2054
  msgstr ""
2055
 
2056
+ #: ../admin/settings.php:503
2057
  #: ../admin/wp25/settings.php:484
2058
  msgid "The settings are used in the JW Image Rotator Version"
2059
  msgstr ""
2060
 
2061
+ #: ../admin/settings.php:504
2062
  #: ../admin/wp25/settings.php:485
2063
  msgid "See more information for the Flash Player on the web page"
2064
  msgstr ""
2065
 
2066
+ #: ../admin/settings.php:507
2067
  #: ../admin/wp25/settings.php:489
2068
  msgid "Default size (W x H)"
2069
  msgstr ""
2070
 
2071
+ #: ../admin/settings.php:512
2072
  #: ../admin/wp25/settings.php:494
2073
  msgid "Shuffle mode"
2074
  msgstr ""
2075
 
2076
+ #: ../admin/settings.php:516
2077
  #: ../admin/wp25/settings.php:498
2078
  msgid "Show next image on click"
2079
  msgstr ""
2080
 
2081
+ #: ../admin/settings.php:520
2082
  #: ../admin/wp25/settings.php:502
2083
  msgid "Show navigation bar"
2084
  msgstr ""
2085
 
2086
+ #: ../admin/settings.php:524
2087
  #: ../admin/wp25/settings.php:506
2088
  msgid "Show loading icon"
2089
  msgstr ""
2090
 
2091
+ #: ../admin/settings.php:528
2092
  #: ../admin/wp25/settings.php:510
2093
  msgid "Use watermark logo"
2094
  msgstr ""
2095
 
2096
+ #: ../admin/settings.php:530
2097
  #: ../admin/wp25/settings.php:512
2098
  msgid "You can change the logo at the watermark settings"
2099
  msgstr ""
2100
 
2101
+ #: ../admin/settings.php:533
2102
  #: ../admin/wp25/settings.php:515
2103
  msgid "Stretch image"
2104
  msgstr ""
2105
 
2106
+ #: ../admin/settings.php:536
2107
  #: ../admin/wp25/settings.php:518
2108
  msgid "true"
2109
  msgstr ""
2110
 
2111
+ #: ../admin/settings.php:537
2112
  #: ../admin/wp25/settings.php:519
2113
  msgid "false"
2114
  msgstr ""
2115
 
2116
+ #: ../admin/settings.php:538
2117
  #: ../admin/wp25/settings.php:520
2118
  msgid "fit"
2119
  msgstr ""
2120
 
2121
+ #: ../admin/settings.php:539
2122
  #: ../admin/wp25/settings.php:521
2123
  msgid "none"
2124
  msgstr ""
2125
 
2126
+ #: ../admin/settings.php:544
2127
  #: ../admin/wp25/settings.php:526
2128
  msgid "Duration time"
2129
  msgstr ""
2130
 
2131
+ #: ../admin/settings.php:545
2132
  #: ../admin/wp25/settings.php:527
2133
  msgid "sec."
2134
  msgstr ""
2135
 
2136
+ #: ../admin/settings.php:548
2137
  #: ../admin/wp25/settings.php:530
2138
  msgid "Transition / Fade effect"
2139
  msgstr ""
2140
 
2141
+ #: ../admin/settings.php:551
2142
  #: ../admin/wp25/settings.php:533
2143
  msgid "fade"
2144
  msgstr ""
2145
 
2146
+ #: ../admin/settings.php:552
2147
  #: ../admin/wp25/settings.php:534
2148
  msgid "bgfade"
2149
  msgstr ""
2150
 
2151
+ #: ../admin/settings.php:553
2152
  #: ../admin/wp25/settings.php:535
2153
  msgid "slowfade"
2154
  msgstr ""
2155
 
2156
+ #: ../admin/settings.php:554
2157
  #: ../admin/wp25/settings.php:536
2158
  msgid "circles"
2159
  msgstr ""
2160
 
2161
+ #: ../admin/settings.php:555
2162
  #: ../admin/wp25/settings.php:537
2163
  msgid "bubbles"
2164
  msgstr ""
2165
 
2166
+ #: ../admin/settings.php:556
2167
  #: ../admin/wp25/settings.php:538
2168
  msgid "blocks"
2169
  msgstr ""
2170
 
2171
+ #: ../admin/settings.php:557
2172
  #: ../admin/wp25/settings.php:539
2173
  msgid "fluids"
2174
  msgstr ""
2175
 
2176
+ #: ../admin/settings.php:558
2177
  #: ../admin/wp25/settings.php:540
2178
  msgid "flash"
2179
  msgstr ""
2180
 
2181
+ #: ../admin/settings.php:559
2182
  #: ../admin/wp25/settings.php:541
2183
  msgid "lines"
2184
  msgstr ""
2185
 
2186
+ #: ../admin/settings.php:564
2187
  #: ../admin/wp25/settings.php:546
2188
  msgid "Use slow zooming effect"
2189
  msgstr ""
2190
 
2191
+ #: ../admin/settings.php:568
2192
  #: ../admin/wp25/settings.php:550
2193
  msgid "Background Color"
2194
  msgstr ""
2195
 
2196
+ #: ../admin/settings.php:573
2197
  #: ../admin/wp25/settings.php:555
2198
  msgid "Texts / Buttons Color"
2199
  msgstr ""
2200
 
2201
+ #: ../admin/settings.php:578
2202
  #: ../admin/wp25/settings.php:560
2203
  msgid "Rollover / Active Color"
2204
  msgstr ""
2205
 
2206
+ #: ../admin/settings.php:583
2207
  #: ../admin/wp25/settings.php:565
2208
  msgid "Screen Color"
2209
  msgstr ""
2210
 
2211
+ #: ../admin/settings.php:588
2212
  #: ../admin/wp25/settings.php:570
2213
  msgid "Background music (URL)"
2214
  msgstr ""
2215
 
2216
+ #: ../admin/settings.php:592
2217
  #: ../admin/wp25/settings.php:574
2218
  msgid "Try XHTML validation (with CDATA)"
2219
  msgstr ""
2220
 
2221
+ #: ../admin/settings.php:594
2222
  #: ../admin/wp25/settings.php:576
2223
  msgid "Important : Could causes problem at some browser. Please recheck your page."
2224
  msgstr ""
2225
 
2226
  #: ../admin/setup.php:12
2227
+ #: ../admin/wp25/setup.php:11
2228
  msgid "Reset all settings to default parameter"
2229
  msgstr ""
2230
 
2231
  #: ../admin/setup.php:37
2232
+ #: ../admin/wp25/setup.php:36
2233
  msgid "Uninstall sucessfull ! Now delete the plugin and enjoy your life ! Good luck !"
2234
  msgstr ""
2235
 
2236
  #: ../admin/setup.php:46
2237
+ #: ../admin/wp25/setup.php:42
2238
  msgid "Reset options"
2239
  msgstr ""
2240
 
2241
  #: ../admin/setup.php:49
2242
+ #: ../admin/wp25/setup.php:45
2243
  msgid "Reset all options/settings to the default installation."
2244
  msgstr ""
2245
 
2246
  #: ../admin/setup.php:50
2247
+ #: ../admin/wp25/setup.php:46
2248
  msgid "Reset settings"
2249
  msgstr ""
2250
 
2251
  #: ../admin/setup.php:50
2252
+ #: ../admin/wp25/setup.php:46
2253
  msgid ""
2254
  "Reset all options to default settings ?\\n"
2255
  "\\n"
2257
  msgstr ""
2258
 
2259
  #: ../admin/setup.php:55
2260
+ #: ../admin/wp25/setup.php:51
2261
  msgid "Uninstall plugin tables"
2262
  msgstr ""
2263
 
2264
  #: ../admin/setup.php:58
2265
+ #: ../admin/wp25/setup.php:56
2266
  msgid "You don't like NextGEN Gallery ?"
2267
  msgstr ""
2268
 
2269
  #: ../admin/setup.php:59
2270
+ #: ../admin/wp25/setup.php:57
2271
  msgid "No problem, before you deactivate this plugin press the Uninstall Button, because deactivating NextGEN Gallery does not remove any data that may have been created. "
2272
  msgstr ""
2273
 
2274
  #: ../admin/setup.php:60
2275
+ #: ../admin/wp25/setup.php:59
2276
  msgid "WARNING:"
2277
  msgstr ""
2278
 
2279
  #: ../admin/setup.php:61
2280
+ #: ../admin/wp25/setup.php:60
2281
  msgid "Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to backup all the tables first. NextGEN gallery is stored in the tables"
2282
  msgstr ""
2283
 
2284
  #: ../admin/setup.php:61
2285
+ #: ../admin/wp25/setup.php:60
2286
  msgid "and"
2287
  msgstr ""
2288
 
2289
  #: ../admin/setup.php:63
2290
+ #: ../admin/wp25/setup.php:62
2291
  msgid "Uninstall plugin"
2292
  msgstr ""
2293
 
2294
  #: ../admin/setup.php:63
2295
+ #: ../admin/wp25/setup.php:62
2296
  msgid ""
2297
  "You are about to Uninstall this plugin from WordPress.\\n"
2298
  "This action is not reversible.\\n"
2399
 
2400
  #: ../admin/style.php:100
2401
  #: ../admin/wp25/style.php:107
2402
+ #: ../lib/nggmeta.lib.php:376
2403
  msgid "Author"
2404
  msgstr ""
2405
 
2428
  msgstr ""
2429
 
2430
  #: ../admin/uploadtab.php:107
2431
+ #: ../admin/wp25/media-upload.php:127
2432
  #: ../tinymce/window.php:49
2433
  #: ../tinymce3/window.php:49
2434
  msgid "No gallery"
2528
  msgstr ""
2529
 
2530
  #: ../admin/js/uploadtab.js.php:107
2531
+ #: ../admin/wp25/media-upload.php:209
2532
  msgid "Full size"
2533
  msgstr ""
2534
 
2565
  "Click ok to delete or cancel to go back."
2566
  msgstr ""
2567
 
2568
+ #: ../admin/wp25/about.php:31
2569
+ msgid "To help people to work with this plugin, I would like to have it in all available languages"
2570
+ msgstr ""
2571
+
2572
+ #: ../admin/wp25/about.php:43
2573
+ msgid "No doubt a very useful and easy motivation :-)"
2574
+ msgstr ""
2575
+
2576
+ #: ../admin/wp25/addgallery.php:236
2577
  msgid "Import a folder with all images."
2578
  msgstr ""
2579
 
2580
+ #: ../admin/wp25/addgallery.php:237
2581
  msgid " Please note : For safe-mode = ON you need to add the subfolder thumbs manually"
2582
  msgstr ""
2583
 
2585
  msgid "Edit gallery"
2586
  msgstr ""
2587
 
2588
+ #: ../admin/wp25/media-upload.php:139
2589
  msgid "Select Gallery &#187;"
2590
  msgstr ""
2591
 
2592
+ #: ../admin/wp25/media-upload.php:170
2593
  msgid "Show"
2594
  msgstr ""
2595
 
2596
+ #: ../admin/wp25/media-upload.php:171
2597
  msgid "Hide"
2598
  msgstr ""
2599
 
2600
+ #: ../admin/wp25/media-upload.php:176
2601
  msgid "Image ID:"
2602
  msgstr ""
2603
 
2604
+ #: ../admin/wp25/media-upload.php:182
2605
+ msgid "Alt/Title text"
2606
  msgstr ""
2607
 
2608
+ #: ../admin/wp25/media-upload.php:190
2609
  msgid "Alignment"
2610
  msgstr ""
2611
 
2612
+ #: ../admin/wp25/media-upload.php:195
2613
  #: ../tinymce/window.php:133
2614
  #: ../tinymce3/window.php:133
2615
  msgid "Left"
2616
  msgstr ""
2617
 
2618
+ #: ../admin/wp25/media-upload.php:197
2619
  #: ../tinymce/window.php:134
2620
  #: ../tinymce3/window.php:134
2621
  msgid "Center"
2622
  msgstr ""
2623
 
2624
+ #: ../admin/wp25/media-upload.php:199
2625
  #: ../tinymce/window.php:135
2626
  #: ../tinymce3/window.php:135
2627
  msgid "Right"
2628
  msgstr ""
2629
 
2630
+ #: ../admin/wp25/media-upload.php:211
2631
+ msgid "Singlepic"
2632
+ msgstr ""
2633
+
2634
+ #: ../admin/wp25/media-upload.php:219
2635
  msgid "Insert into Post"
2636
  msgstr ""
2637
 
2638
+ #: ../admin/wp25/media-upload.php:228
2639
  msgid "Save all changes"
2640
  msgstr ""
2641
 
2668
  msgid " sec"
2669
  msgstr ""
2670
 
2671
+ #: ../lib/nggmeta.lib.php:366
2672
  msgid "Aperture"
2673
  msgstr ""
2674
 
2675
+ #: ../lib/nggmeta.lib.php:367
2676
+ #: ../lib/nggmeta.lib.php:392
2677
  msgid "Credit"
2678
  msgstr ""
2679
 
2680
+ #: ../lib/nggmeta.lib.php:368
2681
  msgid "Camera"
2682
  msgstr ""
2683
 
2684
+ #: ../lib/nggmeta.lib.php:369
2685
  msgid "Caption"
2686
  msgstr ""
2687
 
2688
+ #: ../lib/nggmeta.lib.php:370
2689
  msgid "Date/Time"
2690
  msgstr ""
2691
 
2692
+ #: ../lib/nggmeta.lib.php:371
2693
  msgid "Copyright"
2694
  msgstr ""
2695
 
2696
+ #: ../lib/nggmeta.lib.php:372
2697
  msgid "Focal length"
2698
  msgstr ""
2699
 
2700
+ #: ../lib/nggmeta.lib.php:373
2701
  msgid "ISO"
2702
  msgstr ""
2703
 
2704
+ #: ../lib/nggmeta.lib.php:374
2705
  msgid "Shutter speed"
2706
  msgstr ""
2707
 
2708
+ #: ../lib/nggmeta.lib.php:378
2709
  msgid "Subject"
2710
  msgstr ""
2711
 
2712
+ #: ../lib/nggmeta.lib.php:379
2713
  msgid "Make"
2714
  msgstr ""
2715
 
2716
+ #: ../lib/nggmeta.lib.php:380
2717
  msgid "Edit Status"
2718
  msgstr ""
2719
 
2720
+ #: ../lib/nggmeta.lib.php:381
2721
  msgid "Category"
2722
  msgstr ""
2723
 
2724
+ #: ../lib/nggmeta.lib.php:382
2725
  msgid "Keywords"
2726
  msgstr ""
2727
 
2728
+ #: ../lib/nggmeta.lib.php:383
2729
  msgid "Date Created"
2730
  msgstr ""
2731
 
2732
+ #: ../lib/nggmeta.lib.php:384
2733
  msgid "Time Created"
2734
  msgstr ""
2735
 
2736
+ #: ../lib/nggmeta.lib.php:385
2737
  msgid "Author Position"
2738
  msgstr ""
2739
 
2740
+ #: ../lib/nggmeta.lib.php:386
2741
  msgid "City"
2742
  msgstr ""
2743
 
2744
+ #: ../lib/nggmeta.lib.php:387
2745
  msgid "Location"
2746
  msgstr ""
2747
 
2748
+ #: ../lib/nggmeta.lib.php:388
2749
  msgid "Province/State"
2750
  msgstr ""
2751
 
2752
+ #: ../lib/nggmeta.lib.php:389
2753
  msgid "Country code"
2754
  msgstr ""
2755
 
2756
+ #: ../lib/nggmeta.lib.php:390
2757
  msgid "Country"
2758
  msgstr ""
2759
 
2760
+ #: ../lib/nggmeta.lib.php:391
2761
  msgid "Headline"
2762
  msgstr ""
2763
 
2764
+ #: ../lib/nggmeta.lib.php:393
2765
  msgid "Source"
2766
  msgstr ""
2767
 
2768
+ #: ../lib/nggmeta.lib.php:394
2769
  msgid "Copyright Notice"
2770
  msgstr ""
2771
 
2772
+ #: ../lib/nggmeta.lib.php:395
2773
  msgid "Contact"
2774
  msgstr ""
2775
 
2776
+ #: ../lib/nggmeta.lib.php:396
2777
  msgid "Last modified"
2778
  msgstr ""
2779
 
2780
+ #: ../lib/nggmeta.lib.php:397
2781
  msgid "Program tool"
2782
  msgstr ""
2783
 
2784
+ #: ../lib/nggmeta.lib.php:398
2785
  msgid "Format"
2786
  msgstr ""
2787
 
lib/pclzip.lib.php CHANGED
@@ -3941,7 +3941,7 @@
3941
  }
3942
  }
3943
 
3944
- $v_buffer = fread($this->zip_fd, $p_entry['compressed_size']);
3945
  }
3946
 
3947
  // ----- Decompress the file
@@ -3949,7 +3949,7 @@
3949
  if ( (function_exists('memory_get_usage')) && (ini_get('memory_limit')) ) {
3950
  // take a overhead of 350000 byte (tested with XAMPP)
3951
  $maxMemory = $memory_limit - memory_get_usage() - 350000;
3952
- $v_file_content = gzinflate($v_buffer,$maxMemory);
3953
  } else {
3954
  $v_file_content = @gzinflate($v_buffer);
3955
  }
3941
  }
3942
  }
3943
 
3944
+ $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']);
3945
  }
3946
 
3947
  // ----- Decompress the file
3949
  if ( (function_exists('memory_get_usage')) && (ini_get('memory_limit')) ) {
3950
  // take a overhead of 350000 byte (tested with XAMPP)
3951
  $maxMemory = $memory_limit - memory_get_usage() - 350000;
3952
+ $v_file_content = @gzinflate($v_buffer,$maxMemory);
3953
  } else {
3954
  $v_file_content = @gzinflate($v_buffer);
3955
  }
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.94
8
 
9
  Author URI: http://alexrabe.boelinger.com/
10
 
@@ -62,7 +62,7 @@ if ( ($memory_limit != 0) && ($memory_limit < 12 ) ) {
62
  }
63
 
64
  // Version and path to check version
65
- define('NGGVERSION', "0.94");
66
  // Minimum required database version
67
  define('NGG_DBVERSION', "0.84");
68
  define('NGGURL', "http://nextgen.boelinger.com/version.php");
4
  Plugin URI: http://alexrabe.boelinger.com/?page_id=80
5
  Description: A NextGENeration Photo gallery for the WEB2.0(beta).
6
  Author: NextGEN DEV-Team
7
+ Version: 0.95
8
 
9
  Author URI: http://alexrabe.boelinger.com/
10
 
62
  }
63
 
64
  // Version and path to check version
65
+ define('NGGVERSION', "0.95");
66
  // Minimum required database version
67
  define('NGG_DBVERSION', "0.84");
68
  define('NGGURL', "http://nextgen.boelinger.com/version.php");
nggfunctions.php CHANGED
@@ -406,26 +406,28 @@ function nggCreateAlbum( $galleriesID, $mode = "extend", $albumID = 0) {
406
  global $wpdb, $nggRewrite;
407
 
408
  $ngg_options = nggallery::get_option('ngg_options');
 
409
 
410
  foreach ($galleriesID as $i => $value) {
411
  $galleriesID[$i] = addslashes($value);
412
  }
413
 
414
- $galleriesOfAlbum = $wpdb->get_results('SELECT * FROM '.$wpdb->nggallery.' WHERE gid IN (\''.implode('\',\'', $galleriesID).'\')');
415
- $picturesCounter = $wpdb->get_results('SELECT galleryid, COUNT(*) as counter FROM '.$wpdb->nggpictures.' WHERE galleryid IN (\''.implode('\',\'', $galleriesID).'\') AND exclude != 1 GROUP BY galleryid', OBJECT);
 
416
  $picturesCounter = ngg_emulate_objekt_k($picturesCounter);
417
  $imagesID = array();
418
 
 
419
  foreach ($galleriesOfAlbum as $gallery_row)
420
  $imagesID[] = $gallery_row->previewpic;
421
  $albumPreview = $wpdb->get_results('SELECT pid, filename FROM '.$wpdb->nggpictures.' WHERE pid IN (\''.implode('\',\'', $imagesID).'\')', OBJECT);
422
  $albumPreview = ngg_emulate_objekt_k($albumPreview);
423
 
424
  $out = '';
425
-
426
- foreach ($galleriesOfAlbum as $gallery_row) {
427
- $gallerycontent = $gallery_row;
428
- $galleryID = $gallerycontent->gid;
429
 
430
  // choose between variable and page link
431
  if ($ngg_options['galNoPages']) {
406
  global $wpdb, $nggRewrite;
407
 
408
  $ngg_options = nggallery::get_option('ngg_options');
409
+ $sortorder = $galleriesID;
410
 
411
  foreach ($galleriesID as $i => $value) {
412
  $galleriesID[$i] = addslashes($value);
413
  }
414
 
415
+ $galleriesOfAlbum = $wpdb->get_results('SELECT * FROM '.$wpdb->nggallery.' WHERE gid IN (\''.implode('\',\'', $galleriesID).'\')', OBJECT);
416
+ $galleriesOfAlbum = ngg_emulate_objekt_k($galleriesOfAlbum);
417
+ $picturesCounter = $wpdb->get_results('SELECT galleryid, COUNT(*) as counter FROM '.$wpdb->nggpictures.' WHERE galleryid IN (\''.implode('\',\'', $galleriesID).'\') AND exclude != 1 GROUP BY galleryid', OBJECT);
418
  $picturesCounter = ngg_emulate_objekt_k($picturesCounter);
419
  $imagesID = array();
420
 
421
+ // Add the preview picture
422
  foreach ($galleriesOfAlbum as $gallery_row)
423
  $imagesID[] = $gallery_row->previewpic;
424
  $albumPreview = $wpdb->get_results('SELECT pid, filename FROM '.$wpdb->nggpictures.' WHERE pid IN (\''.implode('\',\'', $imagesID).'\')', OBJECT);
425
  $albumPreview = ngg_emulate_objekt_k($albumPreview);
426
 
427
  $out = '';
428
+ // Start the output
429
+ foreach ($sortorder as $galleryID) {
430
+ $gallerycontent = $galleriesOfAlbum[$galleryID];
 
431
 
432
  // choose between variable and page link
433
  if ($ngg_options['galNoPages']) {