Version Description
- 12.06.2011 =
- NEW : Full rework of permalink url structure
- NEW : Adding Google Sitemaps for Images (require WordPress SEO plugin by YOAST )
- NEW : Support for WPML ( WordPress Multilingual Plugin )
- NEW : Adding support for arrow key in shutter effect (THX to Flyvans)
- NEW : Adding sort operation for galleries overview page
- Changed : Updated pagination to new WP3.1 style
- Bugfix : Create unique slug in a better way
- Bugfix : Rework screen options filter for gallery and image table
- Bugfix : Empty values in XMLRPC update calls are ignored
- Bugfix : Create gallery failed when safe-mode on
- Bugfix : Permalink didn't work in combination with album & imagebrowser
Download this release
Release Info
Developer | alexrabe |
Plugin | NextGEN Gallery – WordPress Gallery Plugin |
Version | 1.8.0 |
Comparing to | |
See all releases |
Code changes from version 1.7.4 to 1.8.0
- admin/addgallery.php +4 -1
- admin/admin.php +28 -23
- admin/ajax.php +9 -5
- admin/album.php +2 -2
- admin/css/nggadmin.css +8 -4
- admin/functions.php +13 -5
- admin/install.php +2 -1
- admin/manage-galleries.php +95 -51
- admin/manage-images.php +88 -60
- admin/manage.php +90 -4
- admin/media-upload.php +3 -3
- admin/overview.php +1 -6
- admin/settings.php +12 -6
- admin/tinymce/window.php +4 -4
- admin/upgrade.php +8 -0
- changelog.txt +15 -2
- lang/nggallery-de_DE.mo +0 -0
- lang/nggallery-de_DE.po +617 -619
- lang/nggallery.pot +602 -619
- lib/core.php +23 -6
- lib/gd.thumbnail.inc.php +12 -9
- lib/media-rss.php +4 -4
- lib/ngg-db.php +30 -25
- lib/rewrite.php +156 -72
- lib/sitemap.php +127 -0
- nggallery.php +34 -26
- nggfunctions.php +52 -35
- readme.txt +16 -4
- shutter/shutter-reloaded.js +31 -6
- widgets/widgets.php +2 -2
- xml/imagerotator.php +2 -2
admin/addgallery.php
CHANGED
@@ -133,6 +133,9 @@ class nggAddGallery {
|
|
133 |
|
134 |
// get list of tabs
|
135 |
$tabs = $this->tabs_order();
|
|
|
|
|
|
|
136 |
?>
|
137 |
|
138 |
<?php if($ngg->options['swfUpload'] && !empty ($this->gallerylist) ) { ?>
|
@@ -155,7 +158,7 @@ class nggAddGallery {
|
|
155 |
|
156 |
// File Upload Settings
|
157 |
file_size_limit : "<?php echo wp_max_upload_size(); ?>b",
|
158 |
-
file_types : "
|
159 |
file_types_description : "<?php _e('Image Files', 'nggallery') ;?>",
|
160 |
|
161 |
// Queue handler
|
133 |
|
134 |
// get list of tabs
|
135 |
$tabs = $this->tabs_order();
|
136 |
+
|
137 |
+
// with this filter you can add custom file types
|
138 |
+
$file_types = apply_filters( 'ngg_swf_file_types', '*.jpg;*.jpeg;*.gif;*.png;*.JPG;*.JPEG;*.GIF;*.PNG' );
|
139 |
?>
|
140 |
|
141 |
<?php if($ngg->options['swfUpload'] && !empty ($this->gallerylist) ) { ?>
|
158 |
|
159 |
// File Upload Settings
|
160 |
file_size_limit : "<?php echo wp_max_upload_size(); ?>b",
|
161 |
+
file_types : "<?php echo $file_types; ?>",
|
162 |
file_types_description : "<?php _e('Image Files', 'nggallery') ;?>",
|
163 |
|
164 |
// Queue handler
|
admin/admin.php
CHANGED
@@ -21,8 +21,11 @@ class nggAdminPanel{
|
|
21 |
add_action('admin_print_styles', array(&$this, 'load_styles') );
|
22 |
|
23 |
add_filter('contextual_help', array(&$this, 'show_help'), 10, 2);
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
26 |
}
|
27 |
|
28 |
// integrate the menu
|
@@ -353,50 +356,52 @@ class nggAdminPanel{
|
|
353 |
|
354 |
return $help;
|
355 |
}
|
356 |
-
|
357 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
|
359 |
// menu title is localized, so we need to change the toplevel name
|
360 |
$i18n = strtolower ( _n( 'Gallery', 'Galleries', 1, 'nggallery' ) );
|
361 |
|
362 |
-
switch ($screen) {
|
363 |
case "{$i18n}_page_nggallery-manage-gallery" :
|
364 |
// we would like to have screen option only at the manage images / gallery page
|
365 |
if ( isset ($_POST['sortGallery']) )
|
366 |
$screen = $screen;
|
367 |
else if ( ($_GET['mode'] == 'edit') || isset ($_POST['backToGallery']) )
|
368 |
-
$screen = 'nggallery-manage-images';
|
369 |
else if ( ($_GET['mode'] == 'sort') )
|
370 |
$screen = $screen;
|
371 |
else
|
372 |
-
$screen = 'nggallery-manage-gallery';
|
373 |
break;
|
374 |
}
|
375 |
|
376 |
return $screen;
|
377 |
}
|
378 |
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
$_wp_column_headers[$screen] = $columns;
|
386 |
-
|
387 |
-
//TODO: Deprecated in 3.1, see http://core.trac.wordpress.org/ticket/14579
|
388 |
-
//$wp_list_table = new _WP_List_Table_Compat($screen);
|
389 |
-
//$wp_list_table->_columns = $columns;
|
390 |
-
}
|
391 |
-
|
392 |
function register_columns() {
|
393 |
include_once ( dirname (__FILE__) . '/manage-images.php' );
|
394 |
-
|
395 |
-
$
|
396 |
|
397 |
include_once ( dirname (__FILE__) . '/manage-galleries.php' );
|
398 |
|
399 |
-
$
|
400 |
}
|
401 |
|
402 |
/**
|
21 |
add_action('admin_print_styles', array(&$this, 'load_styles') );
|
22 |
|
23 |
add_filter('contextual_help', array(&$this, 'show_help'), 10, 2);
|
24 |
+
add_filter('current_screen', array(&$this, 'edit_current_screen'));
|
25 |
+
|
26 |
+
// Add WPML hook to register description / alt text for translation
|
27 |
+
add_action('ngg_image_updated', array('nggGallery', 'RegisterString') );
|
28 |
+
|
29 |
}
|
30 |
|
31 |
// integrate the menu
|
356 |
|
357 |
return $help;
|
358 |
}
|
359 |
+
|
360 |
+
/**
|
361 |
+
* We need to manipulate the current_screen name so that we can show the correct column screen options
|
362 |
+
*
|
363 |
+
* @since 1.8.0
|
364 |
+
* @param object $screen
|
365 |
+
* @return object $screen
|
366 |
+
*/
|
367 |
+
function edit_current_screen($screen) {
|
368 |
+
|
369 |
+
if ( is_string($screen) )
|
370 |
+
$screen = convert_to_screen($screen);
|
371 |
|
372 |
// menu title is localized, so we need to change the toplevel name
|
373 |
$i18n = strtolower ( _n( 'Gallery', 'Galleries', 1, 'nggallery' ) );
|
374 |
|
375 |
+
switch ($screen->id) {
|
376 |
case "{$i18n}_page_nggallery-manage-gallery" :
|
377 |
// we would like to have screen option only at the manage images / gallery page
|
378 |
if ( isset ($_POST['sortGallery']) )
|
379 |
$screen = $screen;
|
380 |
else if ( ($_GET['mode'] == 'edit') || isset ($_POST['backToGallery']) )
|
381 |
+
$screen->base = $screen->id = 'nggallery-manage-images';
|
382 |
else if ( ($_GET['mode'] == 'sort') )
|
383 |
$screen = $screen;
|
384 |
else
|
385 |
+
$screen->base = $screen->id = 'nggallery-manage-gallery';
|
386 |
break;
|
387 |
}
|
388 |
|
389 |
return $screen;
|
390 |
}
|
391 |
|
392 |
+
/**
|
393 |
+
* We need to register the columns at a very early point
|
394 |
+
*
|
395 |
+
* @return void
|
396 |
+
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
397 |
function register_columns() {
|
398 |
include_once ( dirname (__FILE__) . '/manage-images.php' );
|
399 |
+
|
400 |
+
$wp_list_table = new _NGG_Images_List_Table('nggallery-manage-images');
|
401 |
|
402 |
include_once ( dirname (__FILE__) . '/manage-galleries.php' );
|
403 |
|
404 |
+
$wp_list_table = new _NGG_Galleries_List_Table('nggallery-manage-gallery');
|
405 |
}
|
406 |
|
407 |
/**
|
admin/ajax.php
CHANGED
@@ -325,6 +325,10 @@ add_action( 'wp_ajax_ngg_rebuild_unique_slugs', 'ngg_ajax_rebuild_unique_slugs'
|
|
325 |
*/
|
326 |
function ngg_ajax_rebuild_unique_slugs() {
|
327 |
global $wpdb;
|
|
|
|
|
|
|
|
|
328 |
|
329 |
$action = $_POST['_action'];
|
330 |
$offset = (int) $_POST['offset'];
|
@@ -335,7 +339,7 @@ function ngg_ajax_rebuild_unique_slugs() {
|
|
335 |
if ( is_array($images) ) {
|
336 |
foreach ($images as $image) {
|
337 |
//slug must be unique, we use the alttext for that
|
338 |
-
$image->slug = nggdb::get_unique_slug( sanitize_title( $image->alttext ), 'image' );
|
339 |
$wpdb->query( $wpdb->prepare( "UPDATE $wpdb->nggpictures SET image_slug= '%s' WHERE pid = '%d'" , $image->slug, $image->pid ) );
|
340 |
}
|
341 |
}
|
@@ -345,7 +349,7 @@ function ngg_ajax_rebuild_unique_slugs() {
|
|
345 |
if ( is_array($galleries) ) {
|
346 |
foreach ($galleries as $gallery) {
|
347 |
//slug must be unique, we use the title for that
|
348 |
-
$gallery->slug = nggdb::get_unique_slug( sanitize_title( $gallery->title ), 'gallery' );
|
349 |
$wpdb->query( $wpdb->prepare( "UPDATE $wpdb->nggallery SET slug= '%s' WHERE gid = '%d'" , $gallery->slug, $gallery->gid ) );
|
350 |
}
|
351 |
}
|
@@ -355,7 +359,7 @@ function ngg_ajax_rebuild_unique_slugs() {
|
|
355 |
if ( is_array($albumlist) ) {
|
356 |
foreach ($albumlist as $album) {
|
357 |
//slug must be unique, we use the name for that
|
358 |
-
$album->slug = nggdb::get_unique_slug( sanitize_title( $album->name ), 'album' );
|
359 |
$wpdb->query( $wpdb->prepare( "UPDATE $wpdb->nggalbum SET slug= '%s' WHERE id = '%d'" , $album->slug, $album->id ) );
|
360 |
}
|
361 |
}
|
@@ -436,10 +440,10 @@ function ngg_ajax_test_head_footer() {
|
|
436 |
|
437 |
// Check to see if we found the existence of wp_head
|
438 |
if ( ! strstr( $html, '<!--wp_head-->' ) )
|
439 |
-
die('Missing the call to
|
440 |
// Check to see if we found the existence of wp_footer
|
441 |
if ( ! strstr( $html, '<!--wp_footer-->' ) )
|
442 |
-
die('Missing the call to
|
443 |
}
|
444 |
die('success');
|
445 |
}
|
325 |
*/
|
326 |
function ngg_ajax_rebuild_unique_slugs() {
|
327 |
global $wpdb;
|
328 |
+
|
329 |
+
// check for correct NextGEN capability
|
330 |
+
if ( !current_user_can('NextGEN Change options') )
|
331 |
+
die('No access');
|
332 |
|
333 |
$action = $_POST['_action'];
|
334 |
$offset = (int) $_POST['offset'];
|
339 |
if ( is_array($images) ) {
|
340 |
foreach ($images as $image) {
|
341 |
//slug must be unique, we use the alttext for that
|
342 |
+
$image->slug = nggdb::get_unique_slug( sanitize_title( $image->alttext ), 'image', $image->pid );
|
343 |
$wpdb->query( $wpdb->prepare( "UPDATE $wpdb->nggpictures SET image_slug= '%s' WHERE pid = '%d'" , $image->slug, $image->pid ) );
|
344 |
}
|
345 |
}
|
349 |
if ( is_array($galleries) ) {
|
350 |
foreach ($galleries as $gallery) {
|
351 |
//slug must be unique, we use the title for that
|
352 |
+
$gallery->slug = nggdb::get_unique_slug( sanitize_title( $gallery->title ), 'gallery', $gallery->gid );
|
353 |
$wpdb->query( $wpdb->prepare( "UPDATE $wpdb->nggallery SET slug= '%s' WHERE gid = '%d'" , $gallery->slug, $gallery->gid ) );
|
354 |
}
|
355 |
}
|
359 |
if ( is_array($albumlist) ) {
|
360 |
foreach ($albumlist as $album) {
|
361 |
//slug must be unique, we use the name for that
|
362 |
+
$album->slug = nggdb::get_unique_slug( sanitize_title( $album->name ), 'album', $album->id );
|
363 |
$wpdb->query( $wpdb->prepare( "UPDATE $wpdb->nggalbum SET slug= '%s' WHERE id = '%d'" , $album->slug, $album->id ) );
|
364 |
}
|
365 |
}
|
440 |
|
441 |
// Check to see if we found the existence of wp_head
|
442 |
if ( ! strstr( $html, '<!--wp_head-->' ) )
|
443 |
+
die('Missing the call to wp_head() in your theme, contact the theme author');
|
444 |
// Check to see if we found the existence of wp_footer
|
445 |
if ( ! strstr( $html, '<!--wp_footer-->' ) )
|
446 |
+
die('Missing the call to wp_footer() in your theme, contact the theme author');
|
447 |
}
|
448 |
die('success');
|
449 |
}
|
admin/album.php
CHANGED
@@ -147,7 +147,7 @@ class nggManageAlbum {
|
|
147 |
$link = (int) $_POST['pageid'];
|
148 |
|
149 |
// slug must be unique, we use the title for that
|
150 |
-
$slug = nggdb::get_unique_slug( sanitize_title( $name ), 'album' );
|
151 |
|
152 |
$result = $wpdb->query( $wpdb->prepare( "UPDATE $wpdb->nggalbum SET slug= '%s', name= '%s', albumdesc= '%s', previewpic= %d, pageid= %d WHERE id = '%d'" , $slug, $name, $desc, $prev, $link, $this->currentID ) );
|
153 |
|
@@ -173,7 +173,7 @@ jQuery(document).ready(
|
|
173 |
function()
|
174 |
{
|
175 |
jQuery("#previewpic").nggAutocomplete( {
|
176 |
-
type: 'image',domain: "<?php echo
|
177 |
});
|
178 |
|
179 |
jQuery('#selectContainer').sortable( {
|
147 |
$link = (int) $_POST['pageid'];
|
148 |
|
149 |
// slug must be unique, we use the title for that
|
150 |
+
$slug = nggdb::get_unique_slug( sanitize_title( $name ), 'album', $this->currentID );
|
151 |
|
152 |
$result = $wpdb->query( $wpdb->prepare( "UPDATE $wpdb->nggalbum SET slug= '%s', name= '%s', albumdesc= '%s', previewpic= %d, pageid= %d WHERE id = '%d'" , $slug, $name, $desc, $prev, $link, $this->currentID ) );
|
153 |
|
173 |
function()
|
174 |
{
|
175 |
jQuery("#previewpic").nggAutocomplete( {
|
176 |
+
type: 'image',domain: "<?php echo home_url(); ?>/"
|
177 |
});
|
178 |
|
179 |
jQuery('#selectContainer').sortable( {
|
admin/css/nggadmin.css
CHANGED
@@ -151,10 +151,6 @@ p#ngg-inlinebutton {
|
|
151 |
.fixed tbody th.column-cb {
|
152 |
padding:7px 0 22px;
|
153 |
}
|
154 |
-
.fixed .column-cb {
|
155 |
-
padding:0;
|
156 |
-
width:2.2em;
|
157 |
-
}
|
158 |
|
159 |
.fixed .column-thumbnail{
|
160 |
width:85px;
|
@@ -169,6 +165,14 @@ p#ngg-inlinebutton {
|
|
169 |
width: 5em;
|
170 |
}
|
171 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
.fixed .column-exclude, .fixed .column-action, .fixed .column-delete {
|
173 |
width: 10%;
|
174 |
}
|
151 |
.fixed tbody th.column-cb {
|
152 |
padding:7px 0 22px;
|
153 |
}
|
|
|
|
|
|
|
|
|
154 |
|
155 |
.fixed .column-thumbnail{
|
156 |
width:85px;
|
165 |
width: 5em;
|
166 |
}
|
167 |
|
168 |
+
.fixed .column-title {
|
169 |
+
width: 25%;
|
170 |
+
}
|
171 |
+
|
172 |
+
.fixed .column-description {
|
173 |
+
width: 40%;
|
174 |
+
}
|
175 |
+
|
176 |
.fixed .column-exclude, .fixed .column-action, .fixed .column-delete {
|
177 |
width: 10%;
|
178 |
}
|
admin/functions.php
CHANGED
@@ -59,7 +59,7 @@ class nggAdmin{
|
|
59 |
}
|
60 |
|
61 |
// 1. Check for existing folder
|
62 |
-
if ( is_dir(WINABSPATH . $defaultpath . $name ) ) {
|
63 |
$suffix = 1;
|
64 |
do {
|
65 |
$alt_name = substr ($name, 0, 200 - ( strlen( $suffix ) + 1 ) ) . "_$suffix";
|
@@ -191,6 +191,11 @@ class nggAdmin{
|
|
191 |
|
192 |
// all images must be valid files
|
193 |
foreach($new_images as $key => $picture) {
|
|
|
|
|
|
|
|
|
|
|
194 |
if (!@getimagesize($gallerypath . '/' . $picture) ) {
|
195 |
unset($new_images[$key]);
|
196 |
@unlink($gallerypath . '/' . $picture);
|
@@ -221,7 +226,7 @@ class nggAdmin{
|
|
221 |
* @return array $files list of image filenames
|
222 |
*/
|
223 |
function scandir( $dirname = '.' ) {
|
224 |
-
$ext = array('jpeg', 'jpg', 'png', 'gif');
|
225 |
|
226 |
$files = array();
|
227 |
if( $handle = opendir( $dirname ) ) {
|
@@ -584,6 +589,9 @@ class nggAdmin{
|
|
584 |
if ( is_array($imageslist) ) {
|
585 |
foreach($imageslist as $picture) {
|
586 |
|
|
|
|
|
|
|
587 |
// strip off the extension of the filename
|
588 |
$path_parts = pathinfo( $picture );
|
589 |
$alttext = ( !isset($path_parts['filename']) ) ? substr($path_parts['basename'], 0,strpos($path_parts['basename'], '.')) : $path_parts['filename'];
|
@@ -785,7 +793,7 @@ class nggAdmin{
|
|
785 |
// check for extension
|
786 |
$info = pathinfo($p_header['filename']);
|
787 |
// check for extension
|
788 |
-
$ext = array('jpeg', 'jpg', 'png', 'gif');
|
789 |
if ( in_array( strtolower($info['extension']), $ext) ) {
|
790 |
// For MAC skip the ".image" files
|
791 |
if ($info['basename']{0} == '.' )
|
@@ -1044,8 +1052,8 @@ class nggAdmin{
|
|
1044 |
$filename = $filepart['basename'];
|
1045 |
|
1046 |
// check for allowed extension
|
1047 |
-
$ext = array('jpg', 'png', 'gif');
|
1048 |
-
if (!in_array($filepart['extension'], $ext))
|
1049 |
return $_FILES[$key]['name'] . __('is no valid image file!', 'nggallery');
|
1050 |
|
1051 |
// get the path to the gallery
|
59 |
}
|
60 |
|
61 |
// 1. Check for existing folder
|
62 |
+
if ( is_dir(WINABSPATH . $defaultpath . $name ) && !(SAFE_MODE) ) {
|
63 |
$suffix = 1;
|
64 |
do {
|
65 |
$alt_name = substr ($name, 0, 200 - ( strlen( $suffix ) + 1 ) ) . "_$suffix";
|
191 |
|
192 |
// all images must be valid files
|
193 |
foreach($new_images as $key => $picture) {
|
194 |
+
|
195 |
+
// filter function to rename/change/modify image before
|
196 |
+
$picture = apply_filters('ngg_pre_add_new_image', $picture, $gallery_id);
|
197 |
+
$new_images[$key] = $picture;
|
198 |
+
|
199 |
if (!@getimagesize($gallerypath . '/' . $picture) ) {
|
200 |
unset($new_images[$key]);
|
201 |
@unlink($gallerypath . '/' . $picture);
|
226 |
* @return array $files list of image filenames
|
227 |
*/
|
228 |
function scandir( $dirname = '.' ) {
|
229 |
+
$ext = apply_filters('ngg_allowed_file_types', array('jpeg', 'jpg', 'png', 'gif') );
|
230 |
|
231 |
$files = array();
|
232 |
if( $handle = opendir( $dirname ) ) {
|
589 |
if ( is_array($imageslist) ) {
|
590 |
foreach($imageslist as $picture) {
|
591 |
|
592 |
+
// filter function to rename/change/modify image before
|
593 |
+
$picture = apply_filters('ngg_pre_add_new_image', $picture, $galleryID);
|
594 |
+
|
595 |
// strip off the extension of the filename
|
596 |
$path_parts = pathinfo( $picture );
|
597 |
$alttext = ( !isset($path_parts['filename']) ) ? substr($path_parts['basename'], 0,strpos($path_parts['basename'], '.')) : $path_parts['filename'];
|
793 |
// check for extension
|
794 |
$info = pathinfo($p_header['filename']);
|
795 |
// check for extension
|
796 |
+
$ext = apply_filters('ngg_allowed_file_types', array('jpeg', 'jpg', 'png', 'gif') );
|
797 |
if ( in_array( strtolower($info['extension']), $ext) ) {
|
798 |
// For MAC skip the ".image" files
|
799 |
if ($info['basename']{0} == '.' )
|
1052 |
$filename = $filepart['basename'];
|
1053 |
|
1054 |
// check for allowed extension
|
1055 |
+
$ext = apply_filters('ngg_allowed_file_types', array('jpeg', 'jpg', 'png', 'gif') );
|
1056 |
+
if (!in_array( strtolower( $filepart['extension'] ), $ext))
|
1057 |
return $_FILES[$key]['name'] . __('is no valid image file!', 'nggallery');
|
1058 |
|
1059 |
// get the path to the gallery
|
admin/install.php
CHANGED
@@ -138,7 +138,8 @@ function ngg_default_options() {
|
|
138 |
$ngg_options['deleteImg'] = true; // delete Images
|
139 |
$ngg_options['swfUpload'] = true; // activate the batch upload
|
140 |
$ngg_options['usePermalinks'] = false; // use permalinks for parameters
|
141 |
-
|
|
|
142 |
$ngg_options['imageMagickDir'] = '/usr/local/bin/'; // default path to ImageMagick
|
143 |
$ngg_options['useMediaRSS'] = false; // activate the global Media RSS file
|
144 |
$ngg_options['usePicLens'] = false; // activate the PicLens Link for galleries
|
138 |
$ngg_options['deleteImg'] = true; // delete Images
|
139 |
$ngg_options['swfUpload'] = true; // activate the batch upload
|
140 |
$ngg_options['usePermalinks'] = false; // use permalinks for parameters
|
141 |
+
$ngg_options['permalinkSlug'] = 'nggallery'; // the default slug for permalinks
|
142 |
+
$ngg_options['graphicLibrary'] = 'gd'; // default graphic library
|
143 |
$ngg_options['imageMagickDir'] = '/usr/local/bin/'; // default path to ImageMagick
|
144 |
$ngg_options['useMediaRSS'] = false; // activate the global Media RSS file
|
145 |
$ngg_options['usePicLens'] = false; // activate the PicLens Link for galleries
|
admin/manage-galleries.php
CHANGED
@@ -11,17 +11,15 @@ function nggallery_manage_gallery_main() {
|
|
11 |
if ( ! isset( $_GET['paged'] ) || $_GET['paged'] < 1 )
|
12 |
$_GET['paged'] = 1;
|
13 |
|
14 |
-
|
15 |
-
|
|
|
|
|
|
|
|
|
16 |
|
17 |
-
$
|
18 |
-
|
19 |
-
'format' => '',
|
20 |
-
'prev_text' => __('«'),
|
21 |
-
'next_text' => __('»'),
|
22 |
-
'total' => $nggdb->paged['max_objects_per_page'],
|
23 |
-
'current' => $_GET['paged']
|
24 |
-
));
|
25 |
|
26 |
?>
|
27 |
<script type="text/javascript">
|
@@ -55,6 +53,15 @@ function nggallery_manage_gallery_main() {
|
|
55 |
|
56 |
// this function check for a the number of selected images, sumbmit false when no one selected
|
57 |
function checkSelected() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
var numchecked = getNumChecked(document.getElementById('editgalleries'));
|
60 |
|
@@ -130,7 +137,7 @@ function nggallery_manage_gallery_main() {
|
|
130 |
<?php wp_nonce_field('ngg_bulkgallery') ?>
|
131 |
<input type="hidden" name="page" value="manage-galleries" />
|
132 |
|
133 |
-
<div class="tablenav">
|
134 |
|
135 |
<div class="alignleft actions">
|
136 |
<?php if ( function_exists('json_encode') ) : ?>
|
@@ -150,34 +157,28 @@ function nggallery_manage_gallery_main() {
|
|
150 |
<?php endif; ?>
|
151 |
</div>
|
152 |
|
153 |
-
|
154 |
-
|
155 |
-
number_format_i18n( ( $_GET['paged'] - 1 ) * $nggdb->paged['objects_per_page'] + 1 ),
|
156 |
-
number_format_i18n( min( $_GET['paged'] * $nggdb->paged['objects_per_page'], $nggdb->paged['total_objects'] ) ),
|
157 |
-
number_format_i18n( $nggdb->paged['total_objects'] ),
|
158 |
-
$page_links
|
159 |
-
); echo $page_links_text; ?></div>
|
160 |
-
<?php endif; ?>
|
161 |
|
162 |
</div>
|
163 |
-
<table class="widefat" cellspacing="0">
|
164 |
<thead>
|
165 |
<tr>
|
166 |
-
<?php print_column_headers(
|
167 |
</tr>
|
168 |
</thead>
|
169 |
<tfoot>
|
170 |
<tr>
|
171 |
-
<?php print_column_headers(
|
172 |
</tr>
|
173 |
</tfoot>
|
174 |
-
<tbody>
|
175 |
<?php
|
176 |
|
177 |
if($gallerylist) {
|
178 |
//get the columns
|
179 |
-
$gallery_columns =
|
180 |
-
$hidden_columns = get_hidden_columns('nggallery-manage-
|
181 |
$num_columns = count($gallery_columns) - count($hidden_columns);
|
182 |
|
183 |
foreach($gallerylist as $gallery) {
|
@@ -200,7 +201,7 @@ if($gallerylist) {
|
|
200 |
switch ($gallery_column_key) {
|
201 |
case 'cb' :
|
202 |
?>
|
203 |
-
<th scope="row" class="cb column
|
204 |
<?php if (nggAdmin::can_manage_this_gallery($gallery->author)) { ?>
|
205 |
<input name="doaction[]" type="checkbox" value="<?php echo $gid ?>" />
|
206 |
<?php } ?>
|
@@ -209,12 +210,12 @@ if($gallerylist) {
|
|
209 |
break;
|
210 |
case 'id' :
|
211 |
?>
|
212 |
-
<td <?php echo $attributes
|
213 |
<?php
|
214 |
break;
|
215 |
case 'title' :
|
216 |
?>
|
217 |
-
<td>
|
218 |
<?php if (nggAdmin::can_manage_this_gallery($gallery->author)) { ?>
|
219 |
<a href="<?php echo wp_nonce_url( $ngg->manage_page->base_page . '&mode=edit&gid=' . $gid, 'ngg_editgallery')?>" class='edit' title="<?php _e('Edit'); ?>" >
|
220 |
<?php echo nggGallery::i18n($name); ?>
|
@@ -222,6 +223,7 @@ if($gallerylist) {
|
|
222 |
<?php } else { ?>
|
223 |
<?php echo nggGallery::i18n($gallery->title); ?>
|
224 |
<?php } ?>
|
|
|
225 |
</td>
|
226 |
<?php
|
227 |
break;
|
@@ -261,15 +263,8 @@ if($gallerylist) {
|
|
261 |
?>
|
262 |
</tbody>
|
263 |
</table>
|
264 |
-
<div class="tablenav">
|
265 |
-
<?php
|
266 |
-
<div class="tablenav-pages"><?php $page_links_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s–%s of %s' ) . '</span>%s',
|
267 |
-
number_format_i18n( ( $_GET['paged'] - 1 ) * $nggdb->paged['objects_per_page'] + 1 ),
|
268 |
-
number_format_i18n( min( $_GET['paged'] * $nggdb->paged['objects_per_page'], $nggdb->paged['total_objects'] ) ),
|
269 |
-
number_format_i18n( $nggdb->paged['total_objects'] ),
|
270 |
-
$page_links
|
271 |
-
); echo $page_links_text; ?></div>
|
272 |
-
<?php endif; ?>
|
273 |
</div>
|
274 |
</form>
|
275 |
</div>
|
@@ -362,21 +357,70 @@ if($gallerylist) {
|
|
362 |
<?php
|
363 |
}
|
364 |
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
$
|
375 |
-
$
|
376 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
|
378 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
379 |
|
380 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
381 |
}
|
382 |
?>
|
11 |
if ( ! isset( $_GET['paged'] ) || $_GET['paged'] < 1 )
|
12 |
$_GET['paged'] = 1;
|
13 |
|
14 |
+
$items_per_page = 25;
|
15 |
+
|
16 |
+
$start = ( $_GET['paged'] - 1 ) * $items_per_page;
|
17 |
+
|
18 |
+
$order = ( isset ( $_GET['order'] ) && $_GET['order'] == 'desc' ) ? 'DESC' : 'ASC';
|
19 |
+
$orderby = ( isset ( $_GET['orderby'] ) && ( in_array( $_GET['orderby'], array('gid', 'title', 'author') )) ) ? $_GET['orderby'] : 'gid';
|
20 |
|
21 |
+
$gallerylist = $nggdb->find_all_galleries( $orderby, $order , TRUE, $items_per_page, $start, false);
|
22 |
+
$wp_list_table = new _NGG_Galleries_List_Table('nggallery-manage-gallery');
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
?>
|
25 |
<script type="text/javascript">
|
53 |
|
54 |
// this function check for a the number of selected images, sumbmit false when no one selected
|
55 |
function checkSelected() {
|
56 |
+
|
57 |
+
if (typeof document.activeElement == "undefined" && document.addEventListener) {
|
58 |
+
document.addEventListener("focus", function (e) {
|
59 |
+
document.activeElement = e.target;
|
60 |
+
}, true);
|
61 |
+
}
|
62 |
+
|
63 |
+
if ( document.activeElement.name == 'paged' )
|
64 |
+
return true;
|
65 |
|
66 |
var numchecked = getNumChecked(document.getElementById('editgalleries'));
|
67 |
|
137 |
<?php wp_nonce_field('ngg_bulkgallery') ?>
|
138 |
<input type="hidden" name="page" value="manage-galleries" />
|
139 |
|
140 |
+
<div class="tablenav top">
|
141 |
|
142 |
<div class="alignleft actions">
|
143 |
<?php if ( function_exists('json_encode') ) : ?>
|
157 |
<?php endif; ?>
|
158 |
</div>
|
159 |
|
160 |
+
|
161 |
+
<?php $ngg->manage_page->pagination( 'top', $_GET['paged'], $nggdb->paged['total_objects'], $nggdb->paged['objects_per_page'] ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
|
163 |
</div>
|
164 |
+
<table class="wp-list-table widefat fixed" cellspacing="0">
|
165 |
<thead>
|
166 |
<tr>
|
167 |
+
<?php $wp_list_table->print_column_headers(true); ?>
|
168 |
</tr>
|
169 |
</thead>
|
170 |
<tfoot>
|
171 |
<tr>
|
172 |
+
<?php $wp_list_table->print_column_headers(false); ?>
|
173 |
</tr>
|
174 |
</tfoot>
|
175 |
+
<tbody id="the-list">
|
176 |
<?php
|
177 |
|
178 |
if($gallerylist) {
|
179 |
//get the columns
|
180 |
+
$gallery_columns = $wp_list_table->get_columns();
|
181 |
+
$hidden_columns = get_hidden_columns('nggallery-manage-gallery');
|
182 |
$num_columns = count($gallery_columns) - count($hidden_columns);
|
183 |
|
184 |
foreach($gallerylist as $gallery) {
|
201 |
switch ($gallery_column_key) {
|
202 |
case 'cb' :
|
203 |
?>
|
204 |
+
<th scope="row" class="column-cb check-column">
|
205 |
<?php if (nggAdmin::can_manage_this_gallery($gallery->author)) { ?>
|
206 |
<input name="doaction[]" type="checkbox" value="<?php echo $gid ?>" />
|
207 |
<?php } ?>
|
210 |
break;
|
211 |
case 'id' :
|
212 |
?>
|
213 |
+
<td <?php echo $attributes ?>><?php echo $gid; ?></td>
|
214 |
<?php
|
215 |
break;
|
216 |
case 'title' :
|
217 |
?>
|
218 |
+
<td class="title column-title">
|
219 |
<?php if (nggAdmin::can_manage_this_gallery($gallery->author)) { ?>
|
220 |
<a href="<?php echo wp_nonce_url( $ngg->manage_page->base_page . '&mode=edit&gid=' . $gid, 'ngg_editgallery')?>" class='edit' title="<?php _e('Edit'); ?>" >
|
221 |
<?php echo nggGallery::i18n($name); ?>
|
223 |
<?php } else { ?>
|
224 |
<?php echo nggGallery::i18n($gallery->title); ?>
|
225 |
<?php } ?>
|
226 |
+
<div class="row-actions"></div>
|
227 |
</td>
|
228 |
<?php
|
229 |
break;
|
263 |
?>
|
264 |
</tbody>
|
265 |
</table>
|
266 |
+
<div class="tablenav bottom">
|
267 |
+
<?php $ngg->manage_page->pagination( 'bottom', $_GET['paged'], $nggdb->paged['total_objects'], $nggdb->paged['objects_per_page'] ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
</div>
|
269 |
</form>
|
270 |
</div>
|
357 |
<?php
|
358 |
}
|
359 |
|
360 |
+
/**
|
361 |
+
* Construtor class to create the table layout
|
362 |
+
*
|
363 |
+
* @package WordPress
|
364 |
+
* @subpackage List_Table
|
365 |
+
* @since 1.8.0
|
366 |
+
* @access private
|
367 |
+
*/
|
368 |
+
class _NGG_Galleries_List_Table extends WP_List_Table {
|
369 |
+
var $_screen;
|
370 |
+
var $_columns;
|
371 |
+
|
372 |
+
function _NGG_Galleries_List_Table( $screen ) {
|
373 |
+
if ( is_string( $screen ) )
|
374 |
+
$screen = convert_to_screen( $screen );
|
375 |
+
|
376 |
+
$this->_screen = $screen;
|
377 |
+
$this->_columns = array() ;
|
378 |
+
|
379 |
+
add_filter( 'manage_' . $screen->id . '_columns', array( &$this, 'get_columns' ), 0 );
|
380 |
+
}
|
381 |
|
382 |
+
function get_column_info() {
|
383 |
+
$columns = get_column_headers( $this->_screen );
|
384 |
+
$hidden = get_hidden_columns( $this->_screen );
|
385 |
+
$_sortable = $this->get_sortable_columns();
|
386 |
+
|
387 |
+
foreach ( $_sortable as $id => $data ) {
|
388 |
+
if ( empty( $data ) )
|
389 |
+
continue;
|
390 |
+
|
391 |
+
$data = (array) $data;
|
392 |
+
if ( !isset( $data[1] ) )
|
393 |
+
$data[1] = false;
|
394 |
+
|
395 |
+
$sortable[$id] = $data;
|
396 |
+
}
|
397 |
+
|
398 |
+
return array( $columns, $hidden, $sortable );
|
399 |
+
}
|
400 |
+
|
401 |
+
// define the columns to display, the syntax is 'internal name' => 'display name'
|
402 |
+
function get_columns() {
|
403 |
+
$columns = array();
|
404 |
+
|
405 |
+
$columns['cb'] = '<input name="checkall" type="checkbox" onclick="checkAll(document.getElementById(\'editgalleries\'));" />';
|
406 |
+
$columns['id'] = __('ID');
|
407 |
+
$columns['title'] = _n( 'Gallery', 'Galleries', 1, 'nggallery');
|
408 |
+
$columns['description'] = __('Description', 'nggallery');
|
409 |
+
$columns['author'] = __('Author', 'nggallery');
|
410 |
+
$columns['page_id'] = __('Page ID', 'nggallery');
|
411 |
+
$columns['quantity'] = _n( 'Image', 'Images', 2, 'nggallery' );
|
412 |
+
|
413 |
+
$columns = apply_filters('ngg_manage_gallery_columns', $columns);
|
414 |
+
|
415 |
+
return $columns;
|
416 |
+
}
|
417 |
|
418 |
+
function get_sortable_columns() {
|
419 |
+
return array(
|
420 |
+
'id' => array( 'gid', true ),
|
421 |
+
'title' => 'title',
|
422 |
+
'author' => 'author'
|
423 |
+
);
|
424 |
+
}
|
425 |
}
|
426 |
?>
|
admin/manage-images.php
CHANGED
@@ -8,7 +8,9 @@ function nggallery_picturelist() {
|
|
8 |
|
9 |
// Look if its a search result
|
10 |
$is_search = isset ($_GET['s']) ? true : false;
|
11 |
-
$counter = 0;
|
|
|
|
|
12 |
|
13 |
if ($is_search) {
|
14 |
|
@@ -47,17 +49,7 @@ function nggallery_picturelist() {
|
|
47 |
|
48 |
// get picture values
|
49 |
$picturelist = $nggdb->get_gallery($act_gid, $ngg->options['galSort'], $ngg->options['galSortDir'], false, 50, $start );
|
50 |
-
|
51 |
-
// build pagination
|
52 |
-
$page_links = paginate_links( array(
|
53 |
-
'base' => add_query_arg( 'paged', '%#%' ),
|
54 |
-
'format' => '',
|
55 |
-
'prev_text' => __('«'),
|
56 |
-
'next_text' => __('»'),
|
57 |
-
'total' => $nggdb->paged['max_objects_per_page'],
|
58 |
-
'current' => $_GET['paged']
|
59 |
-
));
|
60 |
-
|
61 |
// get the current author
|
62 |
$act_author_user = get_userdata( (int) $gallery->author );
|
63 |
|
@@ -67,7 +59,7 @@ function nggallery_picturelist() {
|
|
67 |
$gallerylist = $nggdb->find_all_galleries();
|
68 |
|
69 |
//get the columns
|
70 |
-
$image_columns
|
71 |
$hidden_columns = get_hidden_columns('nggallery-manage-images');
|
72 |
$num_columns = count($image_columns) - count($hidden_columns);
|
73 |
|
@@ -165,7 +157,16 @@ function getNumChecked(form)
|
|
165 |
function checkSelected() {
|
166 |
|
167 |
var numchecked = getNumChecked(document.getElementById('updategallery'));
|
168 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
if(numchecked < 1) {
|
170 |
alert('<?php echo esc_js(__('No images selected', 'nggallery')); ?>');
|
171 |
return false;
|
@@ -211,7 +212,6 @@ jQuery(document).ready( function() {
|
|
211 |
// close postboxes that should be closed
|
212 |
jQuery('.if-js-closed').removeClass('if-js-closed').addClass('closed');
|
213 |
postboxes.add_postbox_toggles('ngg-manage-gallery');
|
214 |
-
|
215 |
});
|
216 |
|
217 |
//-->
|
@@ -325,15 +325,8 @@ jQuery(document).ready( function() {
|
|
325 |
|
326 |
<?php endif; ?>
|
327 |
|
328 |
-
<div class="tablenav ngg-tablenav">
|
329 |
-
|
330 |
-
<div class="tablenav-pages"><?php $page_links_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s–%s of %s' ) . '</span>%s',
|
331 |
-
number_format_i18n( ( $_GET['paged'] - 1 ) * $nggdb->paged['objects_per_page'] + 1 ),
|
332 |
-
number_format_i18n( min( $_GET['paged'] * $nggdb->paged['objects_per_page'], $nggdb->paged['total_objects'] ) ),
|
333 |
-
number_format_i18n( $nggdb->paged['total_objects'] ),
|
334 |
-
$page_links
|
335 |
-
); echo $page_links_text; ?></div>
|
336 |
-
<?php endif; ?>
|
337 |
<div class="alignleft actions">
|
338 |
<select id="bulkaction" name="bulkaction">
|
339 |
<option value="no_action" ><?php _e("Bulk actions",'nggallery'); ?></option>
|
@@ -365,15 +358,15 @@ jQuery(document).ready( function() {
|
|
365 |
|
366 |
<thead>
|
367 |
<tr>
|
368 |
-
<?php print_column_headers(
|
369 |
</tr>
|
370 |
</thead>
|
371 |
<tfoot>
|
372 |
<tr>
|
373 |
-
<?php print_column_headers(
|
374 |
</tr>
|
375 |
</tfoot>
|
376 |
-
<tbody>
|
377 |
<?php
|
378 |
if($picturelist) {
|
379 |
|
@@ -399,28 +392,30 @@ if($picturelist) {
|
|
399 |
<tr id="picture-<?php echo $pid ?>" class="<?php echo $alternate ?> iedit" valign="top">
|
400 |
<?php
|
401 |
foreach($image_columns as $image_column_key => $column_display_name) {
|
402 |
-
$class = "class
|
403 |
|
404 |
$style = '';
|
405 |
if ( in_array($image_column_key, $hidden_columns) )
|
406 |
$style = ' style="display:none;"';
|
407 |
|
408 |
-
$attributes =
|
409 |
|
410 |
switch ($image_column_key) {
|
411 |
case 'cb' :
|
|
|
412 |
?>
|
413 |
<th <?php echo $attributes ?> scope="row"><input name="doaction[]" type="checkbox" value="<?php echo $pid ?>" /></th>
|
414 |
<?php
|
415 |
break;
|
416 |
case 'id' :
|
417 |
?>
|
418 |
-
<td <?php echo $attributes ?>
|
419 |
<input type="hidden" name="pid[]" value="<?php echo $pid ?>" />
|
420 |
</td>
|
421 |
<?php
|
422 |
break;
|
423 |
case 'filename' :
|
|
|
424 |
?>
|
425 |
<td <?php echo $attributes ?>>
|
426 |
<strong><a href="<?php echo $picture->imageURL; ?>" class="thickbox" title="<?php echo $picture->filename ?>">
|
@@ -457,12 +452,10 @@ if($picturelist) {
|
|
457 |
<?php
|
458 |
break;
|
459 |
case 'thumbnail' :
|
460 |
-
|
461 |
-
if (is_array ($size = $picture->meta_data['thumbnail']) )
|
462 |
-
$thumbsize = 'width="' . $size['width'] . '" height="' . $size['height'] . '"';
|
463 |
?>
|
464 |
<td <?php echo $attributes ?>><a href="<?php echo $picture->imageURL; if(strpos($picture->imageURL, '?')) { echo '&'; } else { echo '?'; } echo mt_rand(); ?>" class="thickbox" title="<?php echo $picture->filename ?>">
|
465 |
-
<img class="thumb" src="<?php echo $picture->thumbURL; if(strpos($picture->thumbURL, '?')) { echo '&'; } else { echo '?'; } echo mt_rand(); ?>"
|
466 |
</a>
|
467 |
</td>
|
468 |
<?php
|
@@ -508,16 +501,9 @@ if ( $counter == 0 )
|
|
508 |
|
509 |
</tbody>
|
510 |
</table>
|
511 |
-
<div class="tablenav">
|
512 |
<input type="submit" class="button-primary action" name="updatepictures" value="<?php _e('Save Changes', 'nggallery'); ?>" />
|
513 |
-
|
514 |
-
<div class="tablenav-pages"><?php $page_links_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s–%s of %s' ) . '</span>%s',
|
515 |
-
number_format_i18n( ( $_GET['paged'] - 1 ) * $nggdb->paged['objects_per_page'] + 1 ),
|
516 |
-
number_format_i18n( min( $_GET['paged'] * $nggdb->paged['objects_per_page'], $nggdb->paged['total_objects'] ) ),
|
517 |
-
number_format_i18n( $nggdb->paged['total_objects'] ),
|
518 |
-
$page_links
|
519 |
-
); echo $page_links_text; ?></div>
|
520 |
-
<?php endif; ?>
|
521 |
</div>
|
522 |
</form>
|
523 |
<br class="clear"/>
|
@@ -649,25 +635,67 @@ if ( $counter == 0 )
|
|
649 |
<?php
|
650 |
}
|
651 |
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
$
|
662 |
-
|
663 |
-
|
664 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
665 |
|
666 |
-
|
667 |
-
|
668 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
669 |
|
670 |
-
|
|
|
|
|
671 |
}
|
672 |
|
673 |
?>
|
8 |
|
9 |
// Look if its a search result
|
10 |
$is_search = isset ($_GET['s']) ? true : false;
|
11 |
+
$counter = 0;
|
12 |
+
|
13 |
+
$wp_list_table = new _NGG_Images_List_Table('nggallery-manage-images');
|
14 |
|
15 |
if ($is_search) {
|
16 |
|
49 |
|
50 |
// get picture values
|
51 |
$picturelist = $nggdb->get_gallery($act_gid, $ngg->options['galSort'], $ngg->options['galSortDir'], false, 50, $start );
|
52 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
// get the current author
|
54 |
$act_author_user = get_userdata( (int) $gallery->author );
|
55 |
|
59 |
$gallerylist = $nggdb->find_all_galleries();
|
60 |
|
61 |
//get the columns
|
62 |
+
$image_columns = $wp_list_table->get_columns();
|
63 |
$hidden_columns = get_hidden_columns('nggallery-manage-images');
|
64 |
$num_columns = count($image_columns) - count($hidden_columns);
|
65 |
|
157 |
function checkSelected() {
|
158 |
|
159 |
var numchecked = getNumChecked(document.getElementById('updategallery'));
|
160 |
+
|
161 |
+
if (typeof document.activeElement == "undefined" && document.addEventListener) {
|
162 |
+
document.addEventListener("focus", function (e) {
|
163 |
+
document.activeElement = e.target;
|
164 |
+
}, true);
|
165 |
+
}
|
166 |
+
|
167 |
+
if ( document.activeElement.name == 'paged' )
|
168 |
+
return true;
|
169 |
+
|
170 |
if(numchecked < 1) {
|
171 |
alert('<?php echo esc_js(__('No images selected', 'nggallery')); ?>');
|
172 |
return false;
|
212 |
// close postboxes that should be closed
|
213 |
jQuery('.if-js-closed').removeClass('if-js-closed').addClass('closed');
|
214 |
postboxes.add_postbox_toggles('ngg-manage-gallery');
|
|
|
215 |
});
|
216 |
|
217 |
//-->
|
325 |
|
326 |
<?php endif; ?>
|
327 |
|
328 |
+
<div class="tablenav top ngg-tablenav">
|
329 |
+
<?php $ngg->manage_page->pagination( 'top', $_GET['paged'], $nggdb->paged['total_objects'], $nggdb->paged['objects_per_page'] ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
330 |
<div class="alignleft actions">
|
331 |
<select id="bulkaction" name="bulkaction">
|
332 |
<option value="no_action" ><?php _e("Bulk actions",'nggallery'); ?></option>
|
358 |
|
359 |
<thead>
|
360 |
<tr>
|
361 |
+
<?php $wp_list_table->print_column_headers(true); ?>
|
362 |
</tr>
|
363 |
</thead>
|
364 |
<tfoot>
|
365 |
<tr>
|
366 |
+
<?php $wp_list_table->print_column_headers(false); ?>
|
367 |
</tr>
|
368 |
</tfoot>
|
369 |
+
<tbody id="the-list">
|
370 |
<?php
|
371 |
if($picturelist) {
|
372 |
|
392 |
<tr id="picture-<?php echo $pid ?>" class="<?php echo $alternate ?> iedit" valign="top">
|
393 |
<?php
|
394 |
foreach($image_columns as $image_column_key => $column_display_name) {
|
395 |
+
$class = "class='$image_column_key column-$image_column_key'";
|
396 |
|
397 |
$style = '';
|
398 |
if ( in_array($image_column_key, $hidden_columns) )
|
399 |
$style = ' style="display:none;"';
|
400 |
|
401 |
+
$attributes = $class . $style;
|
402 |
|
403 |
switch ($image_column_key) {
|
404 |
case 'cb' :
|
405 |
+
$attributes = 'class="column-cb check-column"' . $style;
|
406 |
?>
|
407 |
<th <?php echo $attributes ?> scope="row"><input name="doaction[]" type="checkbox" value="<?php echo $pid ?>" /></th>
|
408 |
<?php
|
409 |
break;
|
410 |
case 'id' :
|
411 |
?>
|
412 |
+
<td <?php echo $attributes ?> style=""><?php echo $pid; ?>
|
413 |
<input type="hidden" name="pid[]" value="<?php echo $pid ?>" />
|
414 |
</td>
|
415 |
<?php
|
416 |
break;
|
417 |
case 'filename' :
|
418 |
+
$attributes = 'class="title column-filename column-title"' . $style;
|
419 |
?>
|
420 |
<td <?php echo $attributes ?>>
|
421 |
<strong><a href="<?php echo $picture->imageURL; ?>" class="thickbox" title="<?php echo $picture->filename ?>">
|
452 |
<?php
|
453 |
break;
|
454 |
case 'thumbnail' :
|
455 |
+
$attributes = 'class="id column-thumbnail media-icon"' . $style;
|
|
|
|
|
456 |
?>
|
457 |
<td <?php echo $attributes ?>><a href="<?php echo $picture->imageURL; if(strpos($picture->imageURL, '?')) { echo '&'; } else { echo '?'; } echo mt_rand(); ?>" class="thickbox" title="<?php echo $picture->filename ?>">
|
458 |
+
<img class="thumb" src="<?php echo $picture->thumbURL; if(strpos($picture->thumbURL, '?')) { echo '&'; } else { echo '?'; } echo mt_rand(); ?>" id="thumb<?php echo $pid ?>" />
|
459 |
</a>
|
460 |
</td>
|
461 |
<?php
|
501 |
|
502 |
</tbody>
|
503 |
</table>
|
504 |
+
<div class="tablenav bottom">
|
505 |
<input type="submit" class="button-primary action" name="updatepictures" value="<?php _e('Save Changes', 'nggallery'); ?>" />
|
506 |
+
<?php $ngg->manage_page->pagination( 'bottom', $_GET['paged'], $nggdb->paged['total_objects'], $nggdb->paged['objects_per_page'] ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
507 |
</div>
|
508 |
</form>
|
509 |
<br class="clear"/>
|
635 |
<?php
|
636 |
}
|
637 |
|
638 |
+
/**
|
639 |
+
* Construtor class to create the table layout
|
640 |
+
*
|
641 |
+
* @package WordPress
|
642 |
+
* @subpackage List_Table
|
643 |
+
* @since 1.8.0
|
644 |
+
* @access private
|
645 |
+
*/
|
646 |
+
class _NGG_Images_List_Table extends WP_List_Table {
|
647 |
+
var $_screen;
|
648 |
+
var $_columns;
|
649 |
+
|
650 |
+
function _NGG_Images_List_Table( $screen ) {
|
651 |
+
if ( is_string( $screen ) )
|
652 |
+
$screen = convert_to_screen( $screen );
|
653 |
+
|
654 |
+
$this->_screen = $screen;
|
655 |
+
$this->_columns = array() ;
|
656 |
+
|
657 |
+
add_filter( 'manage_' . $screen->id . '_columns', array( &$this, 'get_columns' ), 0 );
|
658 |
+
}
|
659 |
|
660 |
+
function get_column_info() {
|
661 |
+
$columns = get_column_headers( $this->_screen );
|
662 |
+
$hidden = get_hidden_columns( $this->_screen );
|
663 |
+
$_sortable = $this->get_sortable_columns();
|
664 |
+
|
665 |
+
foreach ( $_sortable as $id => $data ) {
|
666 |
+
if ( empty( $data ) )
|
667 |
+
continue;
|
668 |
+
|
669 |
+
$data = (array) $data;
|
670 |
+
if ( !isset( $data[1] ) )
|
671 |
+
$data[1] = false;
|
672 |
+
|
673 |
+
$sortable[$id] = $data;
|
674 |
+
}
|
675 |
+
|
676 |
+
return array( $columns, $hidden, $sortable );
|
677 |
+
}
|
678 |
+
|
679 |
+
// define the columns to display, the syntax is 'internal name' => 'display name'
|
680 |
+
function get_columns() {
|
681 |
+
$columns = array();
|
682 |
+
|
683 |
+
$columns['cb'] = '<input name="checkall" type="checkbox" onclick="checkAll(document.getElementById(\'updategallery\'));" />';
|
684 |
+
$columns['id'] = __('ID');
|
685 |
+
$columns['thumbnail'] = __('Thumbnail', 'nggallery');
|
686 |
+
$columns['filename'] = __('Filename', 'nggallery');
|
687 |
+
$columns['alt_title_desc'] = __('Alt & Title Text', 'nggallery') . ' / ' . __('Description', 'nggallery');
|
688 |
+
$columns['tags'] = __('Tags (comma separated list)', 'nggallery');
|
689 |
+
$columns['exclude'] = __('exclude', 'nggallery');
|
690 |
+
|
691 |
+
$columns = apply_filters('ngg_manage_images_columns', $columns);
|
692 |
+
|
693 |
+
return $columns;
|
694 |
+
}
|
695 |
|
696 |
+
function get_sortable_columns() {
|
697 |
+
return array();
|
698 |
+
}
|
699 |
}
|
700 |
|
701 |
?>
|
admin/manage.php
CHANGED
@@ -20,6 +20,13 @@ class nggManageGallery {
|
|
20 |
$this->pid = (int) $_GET['pid'];
|
21 |
if( isset($_GET['mode']) )
|
22 |
$this->mode = trim ($_GET['mode']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
// Should be only called via manage galleries overview
|
24 |
if ( isset($_POST['page']) && $_POST['page'] == 'manage-galleries' )
|
25 |
$this->post_processor_galleries();
|
@@ -57,7 +64,7 @@ class nggManageGallery {
|
|
57 |
function processor() {
|
58 |
|
59 |
global $wpdb, $ngg, $nggdb;
|
60 |
-
|
61 |
// Delete a picture
|
62 |
if ($this->mode == 'delpic') {
|
63 |
|
@@ -364,7 +371,7 @@ class nggManageGallery {
|
|
364 |
|
365 |
if ( nggGallery::current_user_can( 'NextGEN Edit gallery title' )) {
|
366 |
// don't forget to update the slug
|
367 |
-
$slug = nggdb::get_unique_slug( sanitize_title( $_POST['title'] ), 'gallery' );
|
368 |
$wpdb->query( $wpdb->prepare ("UPDATE $wpdb->nggallery SET title= '%s', slug= '%s' WHERE gid = %d", esc_attr($_POST['title']), $slug, $this->gid) );
|
369 |
}
|
370 |
if ( nggGallery::current_user_can( 'NextGEN Edit gallery path' ))
|
@@ -483,7 +490,7 @@ class nggManageGallery {
|
|
483 |
// only uptade this field if someone change the alttext
|
484 |
if ( $image->alttext != $alttext[$image->pid] ) {
|
485 |
$image->alttext = $alttext[$image->pid];
|
486 |
-
$image->image_slug = nggdb::get_unique_slug( sanitize_title( $image->alttext ), 'image' );
|
487 |
}
|
488 |
|
489 |
// set exclude flag
|
@@ -496,7 +503,10 @@ class nggManageGallery {
|
|
496 |
$wpdb->query( $wpdb->prepare ("UPDATE $wpdb->nggpictures SET image_slug = '%s', alttext = '%s', description = '%s', exclude = %d WHERE pid = %d",
|
497 |
$image->image_slug, $image->alttext, $image->description, $image->exclude, $image->pid) );
|
498 |
// remove from cache
|
499 |
-
wp_cache_delete($image->pid, 'ngg_image');
|
|
|
|
|
|
|
500 |
}
|
501 |
|
502 |
}
|
@@ -547,5 +557,81 @@ class nggManageGallery {
|
|
547 |
// show pictures page
|
548 |
$this->mode = 'edit';
|
549 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
550 |
}
|
551 |
?>
|
20 |
$this->pid = (int) $_GET['pid'];
|
21 |
if( isset($_GET['mode']) )
|
22 |
$this->mode = trim ($_GET['mode']);
|
23 |
+
// Check for pagination request, avoid post process of other submit button
|
24 |
+
if ( isset($_POST['paged']) ) {
|
25 |
+
if ( $_GET['paged'] != $_POST['paged'] ) {
|
26 |
+
$_GET['paged'] = $_POST['paged'];
|
27 |
+
return;
|
28 |
+
}
|
29 |
+
}
|
30 |
// Should be only called via manage galleries overview
|
31 |
if ( isset($_POST['page']) && $_POST['page'] == 'manage-galleries' )
|
32 |
$this->post_processor_galleries();
|
64 |
function processor() {
|
65 |
|
66 |
global $wpdb, $ngg, $nggdb;
|
67 |
+
|
68 |
// Delete a picture
|
69 |
if ($this->mode == 'delpic') {
|
70 |
|
371 |
|
372 |
if ( nggGallery::current_user_can( 'NextGEN Edit gallery title' )) {
|
373 |
// don't forget to update the slug
|
374 |
+
$slug = nggdb::get_unique_slug( sanitize_title( $_POST['title'] ), 'gallery', $this->gid );
|
375 |
$wpdb->query( $wpdb->prepare ("UPDATE $wpdb->nggallery SET title= '%s', slug= '%s' WHERE gid = %d", esc_attr($_POST['title']), $slug, $this->gid) );
|
376 |
}
|
377 |
if ( nggGallery::current_user_can( 'NextGEN Edit gallery path' ))
|
490 |
// only uptade this field if someone change the alttext
|
491 |
if ( $image->alttext != $alttext[$image->pid] ) {
|
492 |
$image->alttext = $alttext[$image->pid];
|
493 |
+
$image->image_slug = nggdb::get_unique_slug( sanitize_title( $image->alttext ), 'image', $image->pid );
|
494 |
}
|
495 |
|
496 |
// set exclude flag
|
503 |
$wpdb->query( $wpdb->prepare ("UPDATE $wpdb->nggpictures SET image_slug = '%s', alttext = '%s', description = '%s', exclude = %d WHERE pid = %d",
|
504 |
$image->image_slug, $image->alttext, $image->description, $image->exclude, $image->pid) );
|
505 |
// remove from cache
|
506 |
+
wp_cache_delete($image->pid, 'ngg_image');
|
507 |
+
|
508 |
+
// hook for other plugins after image is updated
|
509 |
+
do_action('ngg_image_updated', $image);
|
510 |
}
|
511 |
|
512 |
}
|
557 |
// show pictures page
|
558 |
$this->mode = 'edit';
|
559 |
}
|
560 |
+
|
561 |
+
/**
|
562 |
+
* Display the pagination.
|
563 |
+
*
|
564 |
+
* @since 1.8.0
|
565 |
+
* @author taken from WP core
|
566 |
+
* @return string echo the html pagination bar
|
567 |
+
*/
|
568 |
+
function pagination( $which, $current, $total_items, $per_page ) {
|
569 |
+
|
570 |
+
$total_pages = ceil( $total_items / $per_page );
|
571 |
+
|
572 |
+
$output = '<span class="displaying-num">' . sprintf( _n( '1 item', '%s items', $total_items ), number_format_i18n( $total_items ) ) . '</span>';
|
573 |
+
|
574 |
+
$current_url = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
|
575 |
+
|
576 |
+
$current_url = remove_query_arg( array( 'hotkeys_highlight_last', 'hotkeys_highlight_first' ), $current_url );
|
577 |
+
|
578 |
+
$page_links = array();
|
579 |
+
|
580 |
+
$disable_first = $disable_last = '';
|
581 |
+
if ( $current == 1 )
|
582 |
+
$disable_first = ' disabled';
|
583 |
+
if ( $current == $total_pages )
|
584 |
+
$disable_last = ' disabled';
|
585 |
+
|
586 |
+
$page_links[] = sprintf( "<a class='%s' title='%s' href='%s'>%s</a>",
|
587 |
+
'first-page' . $disable_first,
|
588 |
+
esc_attr__( 'Go to the first page' ),
|
589 |
+
esc_url( remove_query_arg( 'paged', $current_url ) ),
|
590 |
+
'«'
|
591 |
+
);
|
592 |
+
|
593 |
+
$page_links[] = sprintf( "<a class='%s' title='%s' href='%s'>%s</a>",
|
594 |
+
'prev-page' . $disable_first,
|
595 |
+
esc_attr__( 'Go to the previous page' ),
|
596 |
+
esc_url( add_query_arg( 'paged', max( 1, $current-1 ), $current_url ) ),
|
597 |
+
'‹'
|
598 |
+
);
|
599 |
+
|
600 |
+
if ( 'bottom' == $which )
|
601 |
+
$html_current_page = $current;
|
602 |
+
else
|
603 |
+
$html_current_page = sprintf( "<input class='current-page' title='%s' type='text' name='%s' value='%s' size='%d' />",
|
604 |
+
esc_attr__( 'Current page' ),
|
605 |
+
esc_attr( 'paged' ),
|
606 |
+
$current,
|
607 |
+
strlen( $total_pages )
|
608 |
+
);
|
609 |
+
|
610 |
+
$html_total_pages = sprintf( "<span class='total-pages'>%s</span>", number_format_i18n( $total_pages ) );
|
611 |
+
$page_links[] = '<span class="paging-input">' . sprintf( _x( '%1$s of %2$s', 'paging' ), $html_current_page, $html_total_pages ) . '</span>';
|
612 |
+
|
613 |
+
$page_links[] = sprintf( "<a class='%s' title='%s' href='%s'>%s</a>",
|
614 |
+
'next-page' . $disable_last,
|
615 |
+
esc_attr__( 'Go to the next page' ),
|
616 |
+
esc_url( add_query_arg( 'paged', min( $total_pages, $current+1 ), $current_url ) ),
|
617 |
+
'›'
|
618 |
+
);
|
619 |
+
|
620 |
+
$page_links[] = sprintf( "<a class='%s' title='%s' href='%s'>%s</a>",
|
621 |
+
'last-page' . $disable_last,
|
622 |
+
esc_attr__( 'Go to the last page' ),
|
623 |
+
esc_url( add_query_arg( 'paged', $total_pages, $current_url ) ),
|
624 |
+
'»'
|
625 |
+
);
|
626 |
+
|
627 |
+
$output .= "\n" . join( "\n", $page_links );
|
628 |
+
|
629 |
+
$page_class = $total_pages < 2 ? ' one-page' : '';
|
630 |
+
|
631 |
+
$pagination = "<div class='tablenav-pages{$page_class}'>$output</div>";
|
632 |
+
|
633 |
+
echo $pagination;
|
634 |
+
}
|
635 |
+
|
636 |
}
|
637 |
?>
|
admin/media-upload.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
* @title Add action/filter for the upload tab
|
5 |
* @author Alex Rabe
|
6 |
-
* @copyright 2008-
|
7 |
*/
|
8 |
|
9 |
function ngg_wp_upload_tabs ($tabs) {
|
@@ -79,7 +79,7 @@ function media_upload_nextgen_save_image() {
|
|
79 |
|
80 |
function media_upload_nextgen_form($errors) {
|
81 |
|
82 |
-
global $wpdb, $wp_query, $wp_locale, $type, $tab, $post_mime_types, $ngg;
|
83 |
|
84 |
media_upload_header();
|
85 |
|
@@ -166,7 +166,7 @@ function media_upload_nextgen_form($errors) {
|
|
166 |
<option value="0" <?php selected('0', $galleryID); ?> ><?php esc_attr( _e('No gallery',"nggallery") ); ?></option>
|
167 |
<?php
|
168 |
// Show gallery selection
|
169 |
-
$gallerylist = $
|
170 |
if(is_array($gallerylist)) {
|
171 |
foreach($gallerylist as $gallery) {
|
172 |
$selected = ($gallery->gid == $galleryID )? ' selected="selected"' : "";
|
3 |
/**
|
4 |
* @title Add action/filter for the upload tab
|
5 |
* @author Alex Rabe
|
6 |
+
* @copyright 2008-2011
|
7 |
*/
|
8 |
|
9 |
function ngg_wp_upload_tabs ($tabs) {
|
79 |
|
80 |
function media_upload_nextgen_form($errors) {
|
81 |
|
82 |
+
global $wpdb, $wp_query, $wp_locale, $type, $tab, $post_mime_types, $ngg, $nggdb;
|
83 |
|
84 |
media_upload_header();
|
85 |
|
166 |
<option value="0" <?php selected('0', $galleryID); ?> ><?php esc_attr( _e('No gallery',"nggallery") ); ?></option>
|
167 |
<?php
|
168 |
// Show gallery selection
|
169 |
+
$gallerylist = $nggdb->find_all_galleries();
|
170 |
if(is_array($gallerylist)) {
|
171 |
foreach($gallerylist as $gallery) {
|
172 |
$selected = ($gallery->gid == $galleryID )? ' selected="selected"' : "";
|
admin/overview.php
CHANGED
@@ -111,11 +111,6 @@ function ngg_likeThisMetaBox() {
|
|
111 |
_e("Donate the work via paypal.", 'nggallery');
|
112 |
echo "</a></li>";
|
113 |
|
114 |
-
$url = 'http://www.amazon.de/gp/registry/wishlist/28H3MATVSL17C';
|
115 |
-
echo "<li style='padding-left: 38px; background:transparent url(" . NGGALLERY_URLPATH . "admin/images/icon-amazon.gif ) no-repeat scroll center left; background-position: 16px 50%; text-decoration: none;'><a href='{$url}' target='_blank'>";
|
116 |
-
_e("Send a gift to show your appreciation.", 'nggallery');
|
117 |
-
echo "</a></li>";
|
118 |
-
|
119 |
$url = 'http://alexrabe.de/wordpress-plugins/wordtube/translation-of-plugins/';
|
120 |
echo "<li style='padding-left: 38px; background:transparent url(" . NGGALLERY_URLPATH . "admin/images/icon-translate.png ) no-repeat scroll center left; background-position: 16px 50%; text-decoration: none;'><a href='{$url}'>";
|
121 |
_e("Help translating it.", 'nggallery');
|
@@ -705,7 +700,7 @@ function ngg_get_serverinfo() {
|
|
705 |
if(ini_get('max_execution_time')) $max_execute = ini_get('max_execution_time');
|
706 |
else $max_execute = __('N/A', 'nggallery');
|
707 |
// Get PHP Memory Limit
|
708 |
-
if(ini_get('memory_limit')) $memory_limit = $ngg->memory_limit
|
709 |
else $memory_limit = __('N/A', 'nggallery');
|
710 |
// Get actual memory_get_usage
|
711 |
if (function_exists('memory_get_usage')) $memory_usage = round(memory_get_usage() / 1024 / 1024, 2) . __(' MByte', 'nggallery');
|
111 |
_e("Donate the work via paypal.", 'nggallery');
|
112 |
echo "</a></li>";
|
113 |
|
|
|
|
|
|
|
|
|
|
|
114 |
$url = 'http://alexrabe.de/wordpress-plugins/wordtube/translation-of-plugins/';
|
115 |
echo "<li style='padding-left: 38px; background:transparent url(" . NGGALLERY_URLPATH . "admin/images/icon-translate.png ) no-repeat scroll center left; background-position: 16px 50%; text-decoration: none;'><a href='{$url}'>";
|
116 |
_e("Help translating it.", 'nggallery');
|
700 |
if(ini_get('max_execution_time')) $max_execute = ini_get('max_execution_time');
|
701 |
else $max_execute = __('N/A', 'nggallery');
|
702 |
// Get PHP Memory Limit
|
703 |
+
if(ini_get('memory_limit')) $memory_limit = $ngg->memory_limit;
|
704 |
else $memory_limit = __('N/A', 'nggallery');
|
705 |
// Get actual memory_get_usage
|
706 |
if (function_exists('memory_get_usage')) $memory_usage = round(memory_get_usage() / 1024 / 1024, 2) . __(' MByte', 'nggallery');
|
admin/settings.php
CHANGED
@@ -36,7 +36,8 @@ class nggOptions {
|
|
36 |
global $ngg, $nggRewrite;
|
37 |
|
38 |
$old_state = $ngg->options['usePermalinks'];
|
39 |
-
|
|
|
40 |
if ( isset($_POST['irDetect']) ) {
|
41 |
check_admin_referer('ngg_settings');
|
42 |
$ngg->options['irURL'] = ngg_search_imagerotator();
|
@@ -56,6 +57,10 @@ class nggOptions {
|
|
56 |
// $value = sanitize_option($option, $value); // This does stripslashes on those that need it
|
57 |
$ngg->options[$option] = $value;
|
58 |
}
|
|
|
|
|
|
|
|
|
59 |
|
60 |
// the path should always end with a slash
|
61 |
$ngg->options['gallerypath'] = trailingslashit($ngg->options['gallerypath']);
|
@@ -68,7 +73,7 @@ class nggOptions {
|
|
68 |
update_option('ngg_options', $ngg->options);
|
69 |
|
70 |
// Flush Rewrite rules
|
71 |
-
if ( $old_state != $ngg->options['usePermalinks'] )
|
72 |
$nggRewrite->flush();
|
73 |
|
74 |
nggGallery::show_message(__('Update Successfully','nggallery'));
|
@@ -230,7 +235,7 @@ class nggOptions {
|
|
230 |
<h2><?php _e('General Options','nggallery'); ?></h2>
|
231 |
<form name="generaloptions" method="post" action="<?php echo $this->filepath; ?>">
|
232 |
<?php wp_nonce_field('ngg_settings') ?>
|
233 |
-
<input type="hidden" name="page_options" value="gallerypath,deleteImg,useMediaRSS,usePicLens,usePermalinks,graphicLibrary,imageMagickDir,activateTags,appendType,maxImages" />
|
234 |
<table class="form-table ngg-options">
|
235 |
<tr valign="top">
|
236 |
<th align="left"><?php _e('Gallery path','nggallery'); ?></th>
|
@@ -245,12 +250,13 @@ class nggOptions {
|
|
245 |
<tr valign="top">
|
246 |
<th align="left"><?php _e('Activate permalinks','nggallery') ?></th>
|
247 |
<td><input type="checkbox" name="usePermalinks" value="1" <?php checked('1', $ngg->options['usePermalinks']); ?> />
|
248 |
-
<?php _e('When you activate this option, you need to update your permalink structure one time.','nggallery');
|
|
|
|
|
249 |
</tr>
|
250 |
<tr class="expert">
|
251 |
<th valign="top"><?php _e('Create new URL friendly image slugs','nggallery'); ?></th>
|
252 |
-
<td><input type="submit" name="createslugs" class="button-secondary" value="<?php _e('Proceed now','nggallery') ;?> »"
|
253 |
-
<?php _e('Currently not used, prepare database for upcoming version','nggallery'); ?></td>
|
254 |
</tr>
|
255 |
<tr class="expert">
|
256 |
<th valign="top"><?php _e('Select graphic library','nggallery'); ?></th>
|
36 |
global $ngg, $nggRewrite;
|
37 |
|
38 |
$old_state = $ngg->options['usePermalinks'];
|
39 |
+
$old_slug = $ngg->options['permalinkSlug'];
|
40 |
+
|
41 |
if ( isset($_POST['irDetect']) ) {
|
42 |
check_admin_referer('ngg_settings');
|
43 |
$ngg->options['irURL'] = ngg_search_imagerotator();
|
57 |
// $value = sanitize_option($option, $value); // This does stripslashes on those that need it
|
58 |
$ngg->options[$option] = $value;
|
59 |
}
|
60 |
+
|
61 |
+
// do not allow a empty string
|
62 |
+
if ( empty ( $ngg->options['permalinkSlug'] ) )
|
63 |
+
$ngg->options['permalinkSlug'] = 'nggallery';
|
64 |
|
65 |
// the path should always end with a slash
|
66 |
$ngg->options['gallerypath'] = trailingslashit($ngg->options['gallerypath']);
|
73 |
update_option('ngg_options', $ngg->options);
|
74 |
|
75 |
// Flush Rewrite rules
|
76 |
+
if ( $old_state != $ngg->options['usePermalinks'] || $old_slug != $ngg->options['permalinkSlug'] )
|
77 |
$nggRewrite->flush();
|
78 |
|
79 |
nggGallery::show_message(__('Update Successfully','nggallery'));
|
235 |
<h2><?php _e('General Options','nggallery'); ?></h2>
|
236 |
<form name="generaloptions" method="post" action="<?php echo $this->filepath; ?>">
|
237 |
<?php wp_nonce_field('ngg_settings') ?>
|
238 |
+
<input type="hidden" name="page_options" value="gallerypath,deleteImg,useMediaRSS,usePicLens,usePermalinks,permalinkSlug,graphicLibrary,imageMagickDir,activateTags,appendType,maxImages" />
|
239 |
<table class="form-table ngg-options">
|
240 |
<tr valign="top">
|
241 |
<th align="left"><?php _e('Gallery path','nggallery'); ?></th>
|
250 |
<tr valign="top">
|
251 |
<th align="left"><?php _e('Activate permalinks','nggallery') ?></th>
|
252 |
<td><input type="checkbox" name="usePermalinks" value="1" <?php checked('1', $ngg->options['usePermalinks']); ?> />
|
253 |
+
<?php _e('When you activate this option, you need to update your permalink structure one time.','nggallery'); ?>
|
254 |
+
<?php _e('Gallery slug name :','nggallery'); ?>
|
255 |
+
<input type="text" size="15" name="permalinkSlug" value="<?php echo $ngg->options['permalinkSlug']; ?>" /></td>
|
256 |
</tr>
|
257 |
<tr class="expert">
|
258 |
<th valign="top"><?php _e('Create new URL friendly image slugs','nggallery'); ?></th>
|
259 |
+
<td><input type="submit" name="createslugs" class="button-secondary" value="<?php _e('Proceed now','nggallery') ;?> »"/></td>
|
|
|
260 |
</tr>
|
261 |
<tr class="expert">
|
262 |
<th valign="top"><?php _e('Select graphic library','nggallery'); ?></th>
|
admin/tinymce/window.php
CHANGED
@@ -24,17 +24,17 @@ global $wpdb, $nggdb;
|
|
24 |
<script type="text/javascript">
|
25 |
jQuery(document).ready(function(){
|
26 |
jQuery("#gallerytag").nggAutocomplete( {
|
27 |
-
type: 'gallery',domain: "<?php echo
|
28 |
});
|
29 |
jQuery("#albumtag").nggAutocomplete( {
|
30 |
-
type: 'album',domain: "<?php echo
|
31 |
});
|
32 |
jQuery("#singlepictag").nggAutocomplete( {
|
33 |
-
type: 'image',domain: "<?php echo
|
34 |
});
|
35 |
});
|
36 |
</script>
|
37 |
-
<body id="link" onload="tinyMCEPopup.executeOnLoad('init();');document.body.style.display='';
|
38 |
<!-- <form onsubmit="insertLink();return false;" action="#"> -->
|
39 |
<form name="NextGEN" action="#">
|
40 |
<div class="tabs">
|
24 |
<script type="text/javascript">
|
25 |
jQuery(document).ready(function(){
|
26 |
jQuery("#gallerytag").nggAutocomplete( {
|
27 |
+
type: 'gallery',domain: "<?php echo home_url(); ?>/"
|
28 |
});
|
29 |
jQuery("#albumtag").nggAutocomplete( {
|
30 |
+
type: 'album',domain: "<?php echo home_url(); ?>/"
|
31 |
});
|
32 |
jQuery("#singlepictag").nggAutocomplete( {
|
33 |
+
type: 'image',domain: "<?php echo home_url(); ?>/"
|
34 |
});
|
35 |
});
|
36 |
</script>
|
37 |
+
<body id="link" onload="tinyMCEPopup.executeOnLoad('init();');document.body.style.display='';" style="display: none">
|
38 |
<!-- <form onsubmit="insertLink();return false;" action="#"> -->
|
39 |
<form name="NextGEN" action="#">
|
40 |
<div class="tabs">
|
admin/upgrade.php
CHANGED
@@ -180,6 +180,14 @@ function ngg_upgrade() {
|
|
180 |
ngg_rebuild_unique_slugs::start_rebuild();
|
181 |
}
|
182 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
}
|
184 |
return;
|
185 |
}
|
180 |
ngg_rebuild_unique_slugs::start_rebuild();
|
181 |
}
|
182 |
|
183 |
+
}
|
184 |
+
|
185 |
+
if (version_compare($installed_ver, '1.8.0', '<')) {
|
186 |
+
$ngg_options = get_option('ngg_options');
|
187 |
+
// new permalink structure
|
188 |
+
$ngg_options['permalinkSlug'] = 'nggallery';
|
189 |
+
update_option('ngg_options', $ngg_options);
|
190 |
+
echo __('Updated options.', 'nggallery');
|
191 |
}
|
192 |
return;
|
193 |
}
|
changelog.txt
CHANGED
@@ -1,10 +1,23 @@
|
|
1 |
NextGEN Gallery
|
2 |
by Alex Rabe & NextGEN DEV Team
|
3 |
|
4 |
-
= V1.
|
5 |
-
* TODO : Adding Google Sitemaps for Images (see http://wordpress.org/extend/plugins/google-image-sitemap/ , http://wordpress.org/support/topic/plugin-google-xml-sitemap-for-images-how-to-include-galleries)
|
6 |
* TODO : Facebook connector
|
7 |
* TODO : Switch to Plupload (http://www.plupload.com/)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
= V1.7.4 - 15.02.2011 =
|
10 |
* Bugfix : Disallow direct call of ajax file to avoid path disclosure (THX to High-Tech Bridge SA)
|
1 |
NextGEN Gallery
|
2 |
by Alex Rabe & NextGEN DEV Team
|
3 |
|
4 |
+
= V1.9.0 - sometimes =
|
|
|
5 |
* TODO : Facebook connector
|
6 |
* TODO : Switch to Plupload (http://www.plupload.com/)
|
7 |
+
* TODO : Rework album page for large amount of galleries
|
8 |
+
|
9 |
+
= V1.8.0 - 12.06.2011 =
|
10 |
+
* NEW : Full rework of permalink url structure
|
11 |
+
* NEW : Adding Google Sitemaps for Images (require WordPress SEO plugin by YOAST )
|
12 |
+
* NEW : Support for WPML ( WordPress Multilingual Plugin )
|
13 |
+
* NEW : Adding support for arrow key in shutter effect (THX to Flyvans)
|
14 |
+
* NEW : Adding sort operation for galleries overview page
|
15 |
+
* Changed : Updated pagination to new WP3.1 style
|
16 |
+
* Bugfix : Create unique slug in a better way
|
17 |
+
* Bugfix : Rework screen options filter for gallery and image table
|
18 |
+
* Bugfix : Empty values in XMLRPC update calls are ignored
|
19 |
+
* Bugfix : Create gallery failed when safe-mode on
|
20 |
+
* Bugfix : Permalink didn't work in combination with album & imagebrowser
|
21 |
|
22 |
= V1.7.4 - 15.02.2011 =
|
23 |
* Bugfix : Disallow direct call of ajax file to avoid path disclosure (THX to High-Tech Bridge SA)
|
lang/nggallery-de_DE.mo
CHANGED
Binary file
|
lang/nggallery-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: NextGEN Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Alex Rabe\n"
|
8 |
"Language-Team: Alex Rabe\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -23,60 +23,60 @@ msgid "<strong>Translation by : </strong><a target=\"_blank\" href=\"http://alex
|
|
23 |
msgstr "<strong>Übersetzt von : </strong><a target=\"_blank\" href=\"http://alexrabe.de/wordpress-plugins/wordtube/translation-of-plugins/\">Alex Rabe</a>"
|
24 |
|
25 |
#: ../nggallery.php:98
|
26 |
-
msgid "<strong>This translation is not yet updated for Version 1.
|
27 |
msgstr "Sollten jemand Rechtschreibfehler, Deppenapostrophe oder andere deutsche Ungereimtheiten finden, freue ich mich jederzeit über einen kurzen Hinweis</p>"
|
28 |
|
29 |
-
#: ../nggallery.php:
|
30 |
msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB or higher"
|
31 |
msgstr "Tut mir leid, aber NextGEN-Galerie benötigt minimum 16MB Speicher (Memory Limit) oder mehr"
|
32 |
|
33 |
-
#: ../nggallery.php:
|
34 |
msgid "Please update the database of NextGEN Gallery."
|
35 |
msgstr "Bitte aktualisiere die Datenbank von NextGEN Gallery."
|
36 |
|
37 |
-
#: ../nggallery.php:
|
38 |
msgid "Click here to proceed."
|
39 |
msgstr "Hier klicken um fortzufahren."
|
40 |
|
41 |
-
#: ../nggallery.php:
|
42 |
msgid "Picture tag"
|
43 |
msgstr "Bilder-Stichwort"
|
44 |
|
45 |
-
#: ../nggallery.php:
|
46 |
msgid "Picture tag: %2$l."
|
47 |
msgstr "Bilder-Stichwort: %2$l."
|
48 |
|
49 |
-
#: ../nggallery.php:
|
50 |
msgid "Separate picture tags with commas."
|
51 |
msgstr "Trenne Stichwörter mittels Komma"
|
52 |
|
53 |
-
#: ../nggallery.php:
|
54 |
msgid "L O A D I N G"
|
55 |
msgstr "B I T T E W A R T E N"
|
56 |
|
57 |
-
#: ../nggallery.php:
|
58 |
msgid "Click to Close"
|
59 |
msgstr "Klicken zum Schliessen "
|
60 |
|
61 |
-
#: ../nggallery.php:
|
62 |
msgid "loading"
|
63 |
msgstr "lade..."
|
64 |
|
65 |
-
#: ../nggallery.php:
|
66 |
-
#: ../nggfunctions.php:
|
67 |
-
#: ../admin/admin.php:
|
68 |
msgid "Overview"
|
69 |
msgstr "Übersicht"
|
70 |
|
71 |
-
#: ../nggallery.php:
|
72 |
msgid "Get help"
|
73 |
msgstr "Hilfe"
|
74 |
|
75 |
-
#: ../nggallery.php:
|
76 |
msgid "Contribute"
|
77 |
msgstr "Mithelfen"
|
78 |
|
79 |
-
#: ../nggallery.php:
|
80 |
msgid "Donate"
|
81 |
msgstr "Spenden"
|
82 |
|
@@ -84,20 +84,20 @@ msgstr "Spenden"
|
|
84 |
msgid "The <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player</a> and <a href=\"http://www.mozilla.com/firefox/\">a browser with Javascript support</a> are needed."
|
85 |
msgstr "Es wird der <a href=\"http://www.macromedia.com/go/getflashplayer\">Adobe Flash Player</a> benötigt und <a href=\"http://www.mozilla.com/firefox/\">im Browser muss Javascript</a> aktiviert sein."
|
86 |
|
87 |
-
#: ../nggfunctions.php:
|
88 |
-
#: ../nggfunctions.php:
|
89 |
msgid "[Gallery not found]"
|
90 |
msgstr "[Galerie nicht gefunden]"
|
91 |
|
92 |
-
#: ../nggfunctions.php:
|
93 |
msgid "[Album not found]"
|
94 |
msgstr "[Album nicht gefunden]"
|
95 |
|
96 |
-
#: ../nggfunctions.php:
|
97 |
msgid "[SinglePic not found]"
|
98 |
msgstr "[Bild nicht gefunden]"
|
99 |
|
100 |
-
#: ../nggfunctions.php:
|
101 |
msgid "Related images for"
|
102 |
msgstr "Verwandte Bilder von"
|
103 |
|
@@ -226,7 +226,7 @@ msgstr "und allen anderen Spendern..."
|
|
226 |
#: ../admin/album.php:142
|
227 |
#: ../admin/edit-thumbnail.php:19
|
228 |
#: ../admin/edit-thumbnail.php:22
|
229 |
-
#: ../admin/manage.php:
|
230 |
msgid "Cheatin’ uh?"
|
231 |
msgstr "Cheatin’ uh?"
|
232 |
|
@@ -239,326 +239,326 @@ msgid "Upload failed! "
|
|
239 |
msgstr "Upload fehlgeschlagen!"
|
240 |
|
241 |
#: ../admin/addgallery.php:90
|
242 |
-
#: ../admin/functions.php:
|
243 |
-
#: ../admin/functions.php:
|
244 |
msgid "No gallery selected !"
|
245 |
msgstr "Keine Galerie ausgewählt !"
|
246 |
|
247 |
-
#: ../admin/addgallery.php:
|
248 |
msgid "Image Files"
|
249 |
msgstr "Bilder"
|
250 |
|
251 |
-
#: ../admin/addgallery.php:
|
252 |
-
#: ../admin/addgallery.php:
|
253 |
msgid "remove"
|
254 |
msgstr "Entfernen"
|
255 |
|
256 |
-
#: ../admin/addgallery.php:
|
257 |
-
#: ../admin/addgallery.php:
|
258 |
msgid "Browse..."
|
259 |
msgstr "Durchsuche..."
|
260 |
|
261 |
-
#: ../admin/addgallery.php:
|
262 |
-
#: ../admin/addgallery.php:
|
263 |
-
#: ../admin/addgallery.php:
|
264 |
msgid "Upload images"
|
265 |
msgstr "Bilder hochladen"
|
266 |
|
267 |
-
#: ../admin/addgallery.php:
|
268 |
-
#: ../admin/addgallery.php:
|
269 |
msgid "Upload Images"
|
270 |
msgstr "Bilder hochladen"
|
271 |
|
272 |
-
#: ../admin/addgallery.php:
|
273 |
-
#: ../admin/addgallery.php:
|
274 |
-
#: ../admin/manage-galleries.php:
|
275 |
-
#: ../admin/manage-galleries.php:
|
276 |
msgid "Add new gallery"
|
277 |
msgstr "Neue Galerie erstellen"
|
278 |
|
279 |
-
#: ../admin/addgallery.php:
|
280 |
-
#: ../admin/addgallery.php:
|
281 |
msgid "Upload a Zip-File"
|
282 |
msgstr "Zip-Datei hochladen"
|
283 |
|
284 |
-
#: ../admin/addgallery.php:
|
285 |
-
#: ../admin/addgallery.php:
|
286 |
msgid "Import image folder"
|
287 |
msgstr "Bilder-Verzeichnis importieren"
|
288 |
|
289 |
-
#: ../admin/addgallery.php:
|
290 |
-
#: ../admin/manage-galleries.php:
|
291 |
msgid "New Gallery"
|
292 |
msgstr "Neue Galerie"
|
293 |
|
294 |
-
#: ../admin/addgallery.php:
|
295 |
-
#: ../admin/manage-galleries.php:
|
296 |
msgid "Create a new , empty gallery below the folder"
|
297 |
msgstr "Erstelle eine neue, leere Galerie unter dem Verzeichnis"
|
298 |
|
299 |
-
#: ../admin/addgallery.php:
|
300 |
-
#: ../admin/manage-galleries.php:
|
301 |
msgid "Allowed characters for file and folder names are"
|
302 |
msgstr "Erlaubte Zeichen für die Datei- und Verzeichnisnamen sind"
|
303 |
|
304 |
-
#: ../admin/addgallery.php:
|
305 |
msgid "Add gallery"
|
306 |
msgstr "Galerie hinzufügen"
|
307 |
|
308 |
-
#: ../admin/addgallery.php:
|
309 |
msgid "Select Zip-File"
|
310 |
msgstr "Wähle Zip-Datei"
|
311 |
|
312 |
-
#: ../admin/addgallery.php:
|
313 |
msgid "Upload a zip file with images"
|
314 |
msgstr "Lade eine Zip-Datei mit Bildern hoch"
|
315 |
|
316 |
-
#: ../admin/addgallery.php:
|
317 |
msgid "or enter a Zip-File URL"
|
318 |
msgstr "oder gib eine URL zur ZIP-Datei an"
|
319 |
|
320 |
-
#: ../admin/addgallery.php:
|
321 |
msgid "Import a zip file with images from a url"
|
322 |
msgstr "Lade eine Zip-Datei mit Bildern über ein URL hoch"
|
323 |
|
324 |
-
#: ../admin/addgallery.php:
|
325 |
-
#: ../admin/addgallery.php:
|
326 |
msgid "in to"
|
327 |
msgstr "in"
|
328 |
|
329 |
-
#: ../admin/addgallery.php:
|
330 |
msgid "a new gallery"
|
331 |
msgstr "eine neue Galerie"
|
332 |
|
333 |
-
#: ../admin/addgallery.php:
|
334 |
msgid "Note : The upload limit on your server is "
|
335 |
msgstr "Hinweis : Das Upload-Limit auf dem Server beträgt "
|
336 |
|
337 |
-
#: ../admin/addgallery.php:
|
338 |
msgid "Start upload"
|
339 |
msgstr "Upload starten"
|
340 |
|
341 |
-
#: ../admin/addgallery.php:
|
342 |
msgid "Import from Server path:"
|
343 |
msgstr "Importieren aus Server-Pfad:"
|
344 |
|
345 |
-
#: ../admin/addgallery.php:
|
346 |
msgid "Note : Change the default path in the gallery settings"
|
347 |
msgstr "Hinweis : Der Default-Pfad kann in den Einstellungen angepasst werden"
|
348 |
|
349 |
-
#: ../admin/addgallery.php:
|
350 |
msgid " Please note : For safe-mode = ON you need to add the subfolder thumbs manually"
|
351 |
msgstr "Achtung : Da der Safe-Mode (PHP.INI) eingeschaltet ist, mußt Du das Unterverzeichnis für die Vorschaubilder (\"thumbs\") manuell (per FTP) anlegen"
|
352 |
|
353 |
-
#: ../admin/addgallery.php:
|
354 |
msgid "Import folder"
|
355 |
msgstr "Verzeichnis importieren"
|
356 |
|
357 |
-
#: ../admin/addgallery.php:
|
358 |
msgid "Upload image"
|
359 |
msgstr "Bild hochladen"
|
360 |
|
361 |
-
#: ../admin/addgallery.php:
|
362 |
msgid "Choose gallery"
|
363 |
msgstr "Wähle Galerie"
|
364 |
|
365 |
-
#: ../admin/addgallery.php:
|
366 |
msgid "The batch upload requires Adobe Flash 10, disable it if you have problems"
|
367 |
msgstr "Das Batch-Upload benötigt Adbode Flash 10, wenn es Probleme gibt deaktiviere es besser."
|
368 |
|
369 |
-
#: ../admin/addgallery.php:
|
370 |
msgid "Disable flash upload"
|
371 |
msgstr "Deaktiviere Batch-Upload"
|
372 |
|
373 |
-
#: ../admin/addgallery.php:
|
374 |
msgid "Upload multiple files at once by ctrl/shift-selecting in dialog"
|
375 |
msgstr "Wähle im Dialog mit Ctrl/Shift mehrere Bilder gleichzeitig aus."
|
376 |
|
377 |
-
#: ../admin/addgallery.php:
|
378 |
msgid "Enable flash based upload"
|
379 |
msgstr "Aktiviere Flash Batch Upload"
|
380 |
|
381 |
-
#: ../admin/admin.php:
|
382 |
-
#: ../admin/admin.php:
|
383 |
-
#: ../admin/admin.php:
|
384 |
-
#: ../admin/admin.php:
|
385 |
#: ../admin/functions.php:178
|
386 |
-
#: ../admin/manage-galleries.php:
|
387 |
-
#: ../admin/manage-galleries.php:
|
388 |
#: ../admin/manage-images.php:239
|
389 |
msgid "Gallery"
|
390 |
msgid_plural "Galleries"
|
391 |
msgstr[0] "Galerie"
|
392 |
msgstr[1] "Galerien"
|
393 |
|
394 |
-
#: ../admin/admin.php:
|
395 |
msgid "Add Gallery / Images"
|
396 |
msgstr "Galerie / Bilder hinzufügen"
|
397 |
|
398 |
-
#: ../admin/admin.php:
|
399 |
msgid "Manage Gallery"
|
400 |
msgstr "Galerie verwalten"
|
401 |
|
402 |
-
#: ../admin/admin.php:
|
403 |
msgid "Album"
|
404 |
msgid_plural "Albums"
|
405 |
msgstr[0] "Album"
|
406 |
msgstr[1] "Alben"
|
407 |
|
408 |
-
#: ../admin/admin.php:
|
409 |
msgid "Tags"
|
410 |
msgstr "Stichwörter"
|
411 |
|
412 |
-
#: ../admin/admin.php:
|
413 |
msgid "Options"
|
414 |
msgstr "Optionen"
|
415 |
|
416 |
-
#: ../admin/admin.php:
|
417 |
msgid "Style"
|
418 |
msgstr "Style"
|
419 |
|
420 |
-
#: ../admin/admin.php:
|
421 |
msgid "Roles"
|
422 |
msgstr "Zugriff"
|
423 |
|
424 |
-
#: ../admin/admin.php:
|
425 |
msgid "About this Gallery"
|
426 |
msgstr "Über diese Galerie"
|
427 |
|
428 |
-
#: ../admin/admin.php:
|
429 |
msgid "About"
|
430 |
msgstr "Über"
|
431 |
|
432 |
-
#: ../admin/admin.php:
|
433 |
msgid "NextGEN Gallery"
|
434 |
msgstr "NextGEN Gallery"
|
435 |
|
436 |
-
#: ../admin/admin.php:
|
437 |
-
#: ../admin/admin.php:
|
438 |
msgid "Reset / Uninstall"
|
439 |
msgstr "Rücksetzen"
|
440 |
|
441 |
-
#: ../admin/admin.php:
|
442 |
msgid "Network settings"
|
443 |
msgstr "Netzwerk Einstellungen"
|
444 |
|
445 |
-
#: ../admin/admin.php:
|
446 |
#, php-format
|
447 |
msgid "Thanks for using this plugin, I hope you are satisfied ! If you would like to support the further development, please consider a <strong><a href=\"%s\">donation</a></strong>! If you still need some help, please post your questions <a href=\"http://wordpress.org/tags/nextgen-gallery?forum_id=10\">here</a> ."
|
448 |
msgstr "Vielen Dank, dass Du dieses Plugin nutzt. Ich hoffe, Du bist soweit zufrieden! Wenn Du die Weiterentwicklung unterstützen möchtest, würde ich mich über eine kleine <strong><a href=\"%s\">Spende</a></strong> freuen! Wenn Du Fragen oder Problem hast, schreib sie doch <a href=\"http://wordpress.org/tags/nextgen-gallery?forum_id=10\">hier</a> ins Forum."
|
449 |
|
450 |
-
#: ../admin/admin.php:
|
451 |
msgid "OK, hide this message now !"
|
452 |
msgstr "OK, danke für die Info !"
|
453 |
|
454 |
-
#: ../admin/admin.php:
|
455 |
msgid "You do not have the correct permission"
|
456 |
msgstr "Du hast keine Zugriffsrechte"
|
457 |
|
458 |
-
#: ../admin/admin.php:
|
459 |
msgid "Unexpected Error"
|
460 |
msgstr "Unerwarteter Fehler"
|
461 |
|
462 |
-
#: ../admin/admin.php:
|
463 |
msgid "A failure occurred"
|
464 |
msgstr "Ein Fehler ist aufgetreten"
|
465 |
|
466 |
-
#: ../admin/admin.php:
|
467 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Introduction</a>"
|
468 |
msgstr "<a href=\"http://www.curlyrob.de/curlyrob/?page_id=129\" target=\"_blank\">Einführung</a>"
|
469 |
|
470 |
-
#: ../admin/admin.php:
|
471 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Setup</a>"
|
472 |
msgstr "<a href=\"http://www.curlyrob.de/curlyrob/?page_id=129\" target=\"_blank\">Setup</a>"
|
473 |
|
474 |
-
#: ../admin/admin.php:
|
475 |
msgid "<a href=\"http://alexrabe.de/wordpress-plugins/nextgen-gallery/languages/\" target=\"_blank\">Translation by alex rabe</a>"
|
476 |
msgstr "<a href=\"http://alexrabe.de/wordpress-plugins/nextgen-gallery/languages/\" target=\"_blank\">Unterstütze bei der Übersetzung</a>"
|
477 |
|
478 |
-
#: ../admin/admin.php:
|
479 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Roles / Capabilities</a>"
|
480 |
msgstr "<a href=\"http://www.curlyrob.de/curlyrob/?page_id=129\" target=\"_blank\">Einführung</a>"
|
481 |
|
482 |
-
#: ../admin/admin.php:
|
483 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Styles</a>"
|
484 |
msgstr "<a href=\"http://www.curlyrob.de/curlyrob/?page_id=129\" target=\"_blank\">Einführung</a>"
|
485 |
|
486 |
-
#: ../admin/admin.php:
|
487 |
msgid "Templates"
|
488 |
msgstr "Vorlagen"
|
489 |
|
490 |
-
#: ../admin/admin.php:
|
491 |
-
#: ../admin/admin.php:
|
492 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Gallery management</a>"
|
493 |
msgstr "<a href=\"http://www.curlyrob.de/curlyrob/?page_id=129\" target=\"_blank\">Einführung</a>"
|
494 |
|
495 |
-
#: ../admin/admin.php:
|
496 |
msgid "Gallery example"
|
497 |
msgstr "Galerie Beispiel"
|
498 |
|
499 |
-
#: ../admin/admin.php:
|
500 |
-
#: ../admin/admin.php:
|
501 |
msgid "Gallery tags"
|
502 |
msgstr "Galerie Stichwörter"
|
503 |
|
504 |
-
#: ../admin/admin.php:
|
505 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Album management</a>"
|
506 |
msgstr "<a href=\"http://www.curlyrob.de/curlyrob/?page_id=129\" target=\"_blank\">Einführung</a>"
|
507 |
|
508 |
-
#: ../admin/admin.php:
|
509 |
msgid "Album example"
|
510 |
msgstr "Album Beispiel"
|
511 |
|
512 |
-
#: ../admin/admin.php:
|
513 |
-
#: ../admin/admin.php:
|
514 |
msgid "Album tags"
|
515 |
msgstr "Album Stichwörter"
|
516 |
|
517 |
-
#: ../admin/admin.php:
|
518 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Gallery tags</a>"
|
519 |
msgstr "<a href=\"http://www.curlyrob.de/curlyrob/?page_id=129\" target=\"_blank\">Einführung</a>"
|
520 |
|
521 |
-
#: ../admin/admin.php:
|
522 |
msgid "Related images"
|
523 |
msgstr "Verwandte Bilder"
|
524 |
|
525 |
-
#: ../admin/admin.php:
|
526 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-image-management/\" target=\"_blank\">Image management</a>"
|
527 |
msgstr "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-image-management/\" target=\"_blank\">Bilderverwaltung (englisch)</a>"
|
528 |
|
529 |
-
#: ../admin/admin.php:
|
530 |
msgid "Custom fields"
|
531 |
msgstr "Spezialfelder"
|
532 |
|
533 |
-
#: ../admin/admin.php:
|
534 |
msgid "Get help with NextGEN Gallery"
|
535 |
msgstr "Weitere Hilfe zu NextGEN Gallery"
|
536 |
|
537 |
-
#: ../admin/admin.php:
|
538 |
msgid "More Help & Info"
|
539 |
msgstr "Weitere Hilfe & Informationen"
|
540 |
|
541 |
-
#: ../admin/admin.php:
|
542 |
msgid "<a href=\"http://wordpress.org/tags/nextgen-gallery?forum_id=10\" target=\"_blank\">Support Forums</a>"
|
543 |
msgstr "<a href=\"http://wordpress.org/tags/nextgen-gallery?forum_id=10\" target=\"_blank\">Support Forum (englisch)</a>"
|
544 |
|
545 |
-
#: ../admin/admin.php:
|
546 |
msgid "FAQ"
|
547 |
msgstr "FAQ (englisch)"
|
548 |
|
549 |
-
#: ../admin/admin.php:
|
550 |
msgid "Feature request"
|
551 |
msgstr "Wünsch Dir was"
|
552 |
|
553 |
-
#: ../admin/admin.php:
|
554 |
msgid "Get your language pack"
|
555 |
msgstr "Lade Deine Sprachdatei"
|
556 |
|
557 |
-
#: ../admin/admin.php:
|
558 |
msgid "Contribute development"
|
559 |
msgstr "Entwicklung helfen"
|
560 |
|
561 |
-
#: ../admin/admin.php:
|
562 |
msgid "Download latest version"
|
563 |
msgstr "Aktuelle Version downloaden"
|
564 |
|
@@ -566,7 +566,7 @@ msgstr "Aktuelle Version downloaden"
|
|
566 |
msgid "You are not allowed to be here"
|
567 |
msgstr "Keine Zugangsberechtigung"
|
568 |
|
569 |
-
#: ../admin/ajax.php:
|
570 |
#, php-format
|
571 |
msgid "Could create image with %s x %s pixel"
|
572 |
msgstr "Konnte ein Bild mit %s x %s Pixel erstellen"
|
@@ -608,8 +608,8 @@ msgid "Edit album"
|
|
608 |
msgstr "Album ändern"
|
609 |
|
610 |
#: ../admin/album.php:302
|
611 |
-
#: ../admin/manage-galleries.php:
|
612 |
-
#: ../admin/manage-images.php:
|
613 |
msgid "Delete"
|
614 |
msgstr "Lösche"
|
615 |
|
@@ -689,24 +689,24 @@ msgid "Not linked"
|
|
689 |
msgstr "Nicht verlinkt"
|
690 |
|
691 |
#: ../admin/album.php:455
|
692 |
-
#: ../admin/manage-galleries.php:
|
693 |
-
#: ../admin/manage-galleries.php:
|
694 |
-
#: ../admin/manage-galleries.php:
|
695 |
-
#: ../admin/manage-images.php:
|
696 |
-
#: ../admin/manage-images.php:
|
697 |
-
#: ../admin/manage-images.php:
|
698 |
-
#: ../admin/manage-images.php:
|
699 |
msgid "OK"
|
700 |
msgstr "OK"
|
701 |
|
702 |
#: ../admin/album.php:457
|
703 |
-
#: ../admin/manage-galleries.php:
|
704 |
-
#: ../admin/manage-galleries.php:
|
705 |
-
#: ../admin/manage-galleries.php:
|
706 |
-
#: ../admin/manage-images.php:
|
707 |
-
#: ../admin/manage-images.php:
|
708 |
-
#: ../admin/manage-images.php:
|
709 |
-
#: ../admin/manage-images.php:
|
710 |
msgid "Cancel"
|
711 |
msgstr "Abbrechen"
|
712 |
|
@@ -767,7 +767,7 @@ msgstr "ist schreibgeschützt !"
|
|
767 |
|
768 |
#: ../admin/functions.php:76
|
769 |
#: ../admin/functions.php:85
|
770 |
-
#: ../admin/functions.php:
|
771 |
msgid "Unable to create directory "
|
772 |
msgstr "Kann Verzeichnis nicht erstellen "
|
773 |
|
@@ -812,199 +812,199 @@ msgstr "Datenbank-Fehler. Kann Galerie nicht hinzufügen!"
|
|
812 |
msgid "successfully created!"
|
813 |
msgstr "erfolgreich erstellt!"
|
814 |
|
815 |
-
#: ../admin/functions.php:
|
816 |
-
#: ../admin/functions.php:
|
817 |
-
#: ../admin/manage-galleries.php:
|
818 |
-
#: ../admin/manage-galleries.php:
|
819 |
-
#: ../admin/manage-images.php:
|
820 |
-
#: ../admin/manage-images.php:
|
821 |
-
#: ../admin/manage.php:
|
822 |
-
#: ../admin/manage.php:
|
823 |
msgid "Create new thumbnails"
|
824 |
msgstr "Neue Vorschaubilder erstellen"
|
825 |
|
826 |
-
#: ../admin/functions.php:
|
827 |
msgid " picture(s) successfully added"
|
828 |
msgstr " Bild(er) erfolgreich hinzugefügt"
|
829 |
|
830 |
-
#: ../admin/functions.php:
|
831 |
-
#: ../admin/functions.php:
|
832 |
-
#: ../admin/functions.php:
|
833 |
-
#: ../admin/functions.php:
|
834 |
-
#: ../admin/functions.php:
|
835 |
msgid "Object didn't contain correct data"
|
836 |
msgstr "Das Objekt enhält nicht die notwendigen Daten"
|
837 |
|
838 |
-
#: ../admin/functions.php:
|
839 |
msgid " is not writeable "
|
840 |
msgstr "ist schreibgeschützt !"
|
841 |
|
842 |
-
#: ../admin/functions.php:
|
843 |
-
#: ../admin/functions.php:
|
844 |
-
#: ../admin/functions.php:
|
845 |
-
#: ../admin/functions.php:
|
846 |
msgid " is not writeable"
|
847 |
msgstr "ist schreibgeschützt !"
|
848 |
|
849 |
-
#: ../admin/functions.php:
|
850 |
msgid "File do not exists"
|
851 |
msgstr "Datei existiert nicht"
|
852 |
|
853 |
-
#: ../admin/functions.php:
|
854 |
msgid "Couldn't restore original image"
|
855 |
msgstr "Konnte Originalbild nicht wiederherstellen"
|
856 |
|
857 |
-
#: ../admin/functions.php:
|
858 |
msgid "(Error : Couldn't not update data base)"
|
859 |
msgstr "(Fehler : Konnte Datenbank nicht updaten)"
|
860 |
|
861 |
-
#: ../admin/functions.php:
|
862 |
msgid "(Error : Couldn't not update meta data)"
|
863 |
msgstr "(Fehler : Konnte Metadaten nicht speichern)"
|
864 |
|
865 |
-
#: ../admin/functions.php:
|
866 |
msgid "(Error : Couldn't not find image)"
|
867 |
msgstr "(Fehler : Konnte das Bild nicht finden)"
|
868 |
|
869 |
-
#: ../admin/functions.php:
|
870 |
msgid "No valid URL path "
|
871 |
msgstr "Kein gültiger URL-Pfad"
|
872 |
|
873 |
-
#: ../admin/functions.php:
|
874 |
msgid "Import via cURL failed."
|
875 |
msgstr "Import via cURL abgebrochen"
|
876 |
|
877 |
-
#: ../admin/functions.php:
|
878 |
msgid "Uploaded file was no or a faulty zip file ! The server recognized : "
|
879 |
msgstr "Die hochgeladene Datei war keine korrekte Zip-Datei. Servermeldung :"
|
880 |
|
881 |
-
#: ../admin/functions.php:
|
882 |
msgid "Could not get a valid foldername"
|
883 |
msgstr "Konnte keinen gültigen Verzeichnisnamen finden"
|
884 |
|
885 |
-
#: ../admin/functions.php:
|
886 |
#, php-format
|
887 |
msgid "Unable to create directory %s. Is its parent directory writable by the server?"
|
888 |
msgstr "Kann das Verzeichnis %s nicht erstellen. Ist das Hauptverzeichnis vielleicht schreibgeschützt ?"
|
889 |
|
890 |
-
#: ../admin/functions.php:
|
891 |
msgid "Zip-File successfully unpacked"
|
892 |
msgstr "Zip-Datei erfolgreich entpackt"
|
893 |
|
894 |
-
#: ../admin/functions.php:
|
895 |
-
#: ../admin/functions.php:
|
896 |
msgid "Failure in database, no gallery path set !"
|
897 |
msgstr "Datenbankfehler! Kein Galerie-Pfad gesetzt !"
|
898 |
|
899 |
-
#: ../admin/functions.php:
|
900 |
-
#: ../admin/functions.php:
|
901 |
msgid "is no valid image file!"
|
902 |
msgstr "ist keine zulässige Bilddatei !"
|
903 |
|
904 |
-
#: ../admin/functions.php:
|
905 |
-
#: ../admin/functions.php:
|
906 |
-
#: ../admin/functions.php:
|
907 |
#, php-format
|
908 |
msgid "Unable to write to directory %s. Is this directory writable by the server?"
|
909 |
msgstr "Kann das Verzeichnis %s nicht erstellen. Ist das Hauptverzeichnis vielleicht schreibgeschützt ?"
|
910 |
|
911 |
-
#: ../admin/functions.php:
|
912 |
-
#: ../admin/functions.php:
|
913 |
msgid "Error, the file could not be moved to : "
|
914 |
msgstr "Fehler: Diese Datei kann nicht verschoben werden zu :"
|
915 |
|
916 |
-
#: ../admin/functions.php:
|
917 |
-
#: ../admin/functions.php:
|
918 |
msgid "Error, the file permissions could not be set"
|
919 |
msgstr "Fehler: Die Berechtigungen für diese Datei können nicht gesetzt werden"
|
920 |
|
921 |
-
#: ../admin/functions.php:
|
922 |
msgid " Image(s) successfully added"
|
923 |
msgstr " Bild(er) erfolgreich hinzugefügt"
|
924 |
|
925 |
-
#: ../admin/functions.php:
|
926 |
msgid "Invalid upload. Error Code : "
|
927 |
msgstr "Ungültiger Upload. Fehler Code :"
|
928 |
|
929 |
-
#: ../admin/functions.php:
|
930 |
#, php-format
|
931 |
msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
|
932 |
msgstr "SAFE MODE Einschränkungen ist aktiv. Du musst das Verzeichnis <strong>%s</strong> manuell anlegen."
|
933 |
|
934 |
-
#: ../admin/functions.php:
|
935 |
#, php-format
|
936 |
msgid "When safe_mode is on, PHP checks to see if the owner (%s) of the current script matches the owner (%s) of the file to be operated on by a file function or its directory"
|
937 |
msgstr "Wenn der Safe-Mode eingeschaltet ist, überprüft PHP, ob der Besitzer (%s) des Skript mit dem Besitzer (%s) der Datei/Verzeichnis übereinstimmt."
|
938 |
|
939 |
-
#: ../admin/functions.php:
|
940 |
-
#: ../admin/functions.php:
|
941 |
msgid "The destination gallery does not exist"
|
942 |
msgstr "Die ausgewählte Galerie existiert nicht"
|
943 |
|
944 |
-
#: ../admin/functions.php:
|
945 |
#, php-format
|
946 |
msgid "Failed to move image %1$s to %2$s"
|
947 |
msgstr "Konnte das Bild %1$s nicht nach %2$s verschieben"
|
948 |
|
949 |
-
#: ../admin/functions.php:
|
950 |
#, php-format
|
951 |
msgid "Moved %1$s picture(s) to gallery : %2$s ."
|
952 |
msgstr " %1$s Bild(er) in Galerie : %2$s verschoben."
|
953 |
|
954 |
-
#: ../admin/functions.php:
|
955 |
#, php-format
|
956 |
msgid "Failed to copy image %1$s to %2$s"
|
957 |
msgstr "Konnte das Bild %1$s nicht nach %2$s kopieren"
|
958 |
|
959 |
-
#: ../admin/functions.php:
|
960 |
#, php-format
|
961 |
msgid "Failed to copy database row for picture %s"
|
962 |
msgstr "Fehler bei der Datenbank-Operation für Bild %s"
|
963 |
|
964 |
-
#: ../admin/functions.php:
|
965 |
#, php-format
|
966 |
msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) » The file already existed in the destination gallery."
|
967 |
msgstr "Bild %1$s (%2$s) als Bild %3$s (%4$s) kopiert » Die Datei existierte bereits."
|
968 |
|
969 |
-
#: ../admin/functions.php:
|
970 |
#, php-format
|
971 |
msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
|
972 |
msgstr "Bild %1$s (%2$s) kopiert als Bild %3$s (%4$s)"
|
973 |
|
974 |
-
#: ../admin/functions.php:
|
975 |
#, php-format
|
976 |
msgid "Copied %1$s picture(s) to gallery: %2$s ."
|
977 |
msgstr "Kopiere %1$s Bild(er) in die Galerie : %2$s ."
|
978 |
|
979 |
-
#: ../admin/functions.php:
|
980 |
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
|
981 |
msgstr "Die Datei überschreitet die erlaubte Grösse (upload_max_filesize) in der php.ini"
|
982 |
|
983 |
-
#: ../admin/functions.php:
|
984 |
msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"
|
985 |
msgstr "Die Datei ist zu gross"
|
986 |
|
987 |
-
#: ../admin/functions.php:
|
988 |
msgid "The uploaded file was only partially uploaded"
|
989 |
msgstr "Die Datei wurde nur teilweise hochgeladen"
|
990 |
|
991 |
-
#: ../admin/functions.php:
|
992 |
msgid "No file was uploaded"
|
993 |
msgstr "Keinen Datei wurde geladen"
|
994 |
|
995 |
-
#: ../admin/functions.php:
|
996 |
msgid "Missing a temporary folder"
|
997 |
msgstr "Konnte temporäres Verzeichnis nicht finden"
|
998 |
|
999 |
-
#: ../admin/functions.php:
|
1000 |
msgid "Failed to write file to disk"
|
1001 |
msgstr "Konnte Datei nicht speichern"
|
1002 |
|
1003 |
-
#: ../admin/functions.php:
|
1004 |
msgid "File upload stopped by extension"
|
1005 |
msgstr "Upload dieser Dateierweiterung nicht erlaubt"
|
1006 |
|
1007 |
-
#: ../admin/functions.php:
|
1008 |
msgid "Unknown upload error"
|
1009 |
msgstr "Unbekannter Uploadfehler"
|
1010 |
|
@@ -1016,39 +1016,29 @@ msgstr "Tut mir leid, aber NextGEN Gallery benötigt zwingend die Rolle \"Admini
|
|
1016 |
msgid "NextGEN Gallery : Tables could not created, please check your database settings"
|
1017 |
msgstr "NextGEN Gallery : Tabellen konnten nicht erstellt werden, überprüfe Deine Datenbank"
|
1018 |
|
1019 |
-
#: ../admin/install.php:
|
1020 |
msgid "[Show as slideshow]"
|
1021 |
msgstr "[Zeige als Diashow]"
|
1022 |
|
1023 |
-
#: ../admin/install.php:
|
1024 |
msgid "[Show picture list]"
|
1025 |
msgstr "[Zeige Bilder-Liste]"
|
1026 |
|
1027 |
-
#: ../admin/manage-galleries.php:
|
1028 |
-
#: ../admin/manage-images.php:
|
1029 |
-
msgid "«"
|
1030 |
-
msgstr "«"
|
1031 |
-
|
1032 |
-
#: ../admin/manage-galleries.php:21
|
1033 |
-
#: ../admin/manage-images.php:56
|
1034 |
-
msgid "»"
|
1035 |
-
msgstr "»"
|
1036 |
-
|
1037 |
-
#: ../admin/manage-galleries.php:62
|
1038 |
-
#: ../admin/manage-images.php:170
|
1039 |
msgid "No images selected"
|
1040 |
msgstr "Keine Bilder ausgewählt"
|
1041 |
|
1042 |
-
#: ../admin/manage-galleries.php:
|
1043 |
-
#: ../admin/manage-galleries.php:
|
1044 |
-
#: ../admin/manage-images.php:
|
1045 |
-
#: ../admin/manage-images.php:
|
1046 |
-
#: ../admin/manage.php:
|
1047 |
-
#: ../admin/manage.php:
|
1048 |
msgid "Resize images"
|
1049 |
msgstr "Bilder verkleinern"
|
1050 |
|
1051 |
-
#: ../admin/manage-galleries.php:
|
1052 |
#, php-format
|
1053 |
msgid ""
|
1054 |
"You are about to start the bulk edit for %s galleries \n"
|
@@ -1059,147 +1049,139 @@ msgstr ""
|
|
1059 |
" \n"
|
1060 |
" 'Abbrechen' um zu stoppen, 'OK' um die Bearbeitung durchzuführen."
|
1061 |
|
1062 |
-
#: ../admin/manage-galleries.php:
|
1063 |
-
#: ../admin/manage-galleries.php:
|
1064 |
#: ../admin/manage-images.php:225
|
1065 |
#: ../admin/manage-images.php:228
|
1066 |
msgid "Search Images"
|
1067 |
msgstr "Suche Bilder"
|
1068 |
|
1069 |
-
#: ../admin/manage-galleries.php:
|
1070 |
-
#: ../admin/manage-images.php:
|
1071 |
msgid "Bulk actions"
|
1072 |
msgstr "Aktion wählen"
|
1073 |
|
1074 |
-
#: ../admin/manage-galleries.php:
|
1075 |
-
#: ../admin/manage-images.php:
|
1076 |
-
#: ../admin/manage.php:
|
1077 |
-
#: ../admin/manage.php:
|
1078 |
msgid "Set watermark"
|
1079 |
msgstr "Wasserzeichen setzen"
|
1080 |
|
1081 |
-
#: ../admin/manage-galleries.php:
|
1082 |
-
#: ../admin/manage-images.php:
|
1083 |
-
#: ../admin/manage.php:
|
1084 |
-
#: ../admin/manage.php:
|
1085 |
msgid "Import metadata"
|
1086 |
msgstr "Metadaten importieren"
|
1087 |
|
1088 |
-
#: ../admin/manage-galleries.php:
|
1089 |
-
#: ../admin/manage-images.php:
|
1090 |
-
#: ../admin/manage.php:
|
1091 |
-
#: ../admin/manage.php:
|
1092 |
msgid "Recover from backup"
|
1093 |
msgstr "Original wiederherstellen"
|
1094 |
|
1095 |
-
#: ../admin/manage-galleries.php:
|
1096 |
-
#: ../admin/manage-images.php:
|
1097 |
msgid "Apply"
|
1098 |
msgstr "Übernehmen"
|
1099 |
|
1100 |
-
#: ../admin/manage-galleries.php:
|
1101 |
-
#: ../admin/manage-galleries.php:266
|
1102 |
-
#: ../admin/manage-images.php:330
|
1103 |
-
#: ../admin/manage-images.php:514
|
1104 |
-
#, php-format
|
1105 |
-
msgid "Displaying %s–%s of %s"
|
1106 |
-
msgstr "Zeige %s–%s von %s"
|
1107 |
-
|
1108 |
-
#: ../admin/manage-galleries.php:219
|
1109 |
msgid "Edit"
|
1110 |
msgstr "Bearbeiten"
|
1111 |
|
1112 |
-
#: ../admin/manage-galleries.php:
|
1113 |
-
#: ../admin/manage-images.php:
|
1114 |
msgid "No entries found"
|
1115 |
msgstr "Keine Einträge gefunden"
|
1116 |
|
1117 |
-
#: ../admin/manage-galleries.php:
|
1118 |
-
#: ../admin/manage-images.php:
|
1119 |
msgid "Resize Images to"
|
1120 |
msgstr "Verkleiner Bilder auf"
|
1121 |
|
1122 |
-
#: ../admin/manage-galleries.php:
|
1123 |
-
#: ../admin/manage-images.php:
|
1124 |
msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
|
1125 |
msgstr "Breite x Höhe (in Pixel). Das Seitenverhältnis wird berücksichtigt."
|
1126 |
|
1127 |
-
#: ../admin/manage-galleries.php:
|
1128 |
-
#: ../admin/manage-images.php:
|
1129 |
msgid "Width x height (in pixel)"
|
1130 |
msgstr "Breite x Höhe (in Pixel)"
|
1131 |
|
1132 |
-
#: ../admin/manage-galleries.php:
|
1133 |
-
#: ../admin/manage-images.php:
|
1134 |
msgid "These values are maximum values "
|
1135 |
msgstr "Diese Angaben sind maximale Angaben."
|
1136 |
|
1137 |
-
#: ../admin/manage-galleries.php:
|
1138 |
-
#: ../admin/manage-images.php:
|
1139 |
msgid "Set fix dimension"
|
1140 |
msgstr "Setze feste Größe"
|
1141 |
|
1142 |
-
#: ../admin/manage-galleries.php:
|
1143 |
-
#: ../admin/manage-images.php:
|
1144 |
msgid "Ignore the aspect ratio, no portrait thumbnails"
|
1145 |
msgstr "Ignoriere Bildseitenverhältnis"
|
1146 |
|
1147 |
-
#: ../admin/manage-galleries.php:
|
1148 |
-
#: ../admin/manage-images.php:
|
1149 |
msgid "ID"
|
1150 |
msgstr "ID"
|
1151 |
|
1152 |
-
#: ../admin/manage-galleries.php:
|
1153 |
#: ../admin/manage-images.php:266
|
1154 |
-
#: ../admin/manage-images.php:
|
1155 |
msgid "Description"
|
1156 |
msgstr "Beschreibung"
|
1157 |
|
1158 |
-
#: ../admin/manage-galleries.php:
|
1159 |
#: ../admin/manage-images.php:287
|
1160 |
msgid "Author"
|
1161 |
msgstr "Autor"
|
1162 |
|
1163 |
-
#: ../admin/manage-galleries.php:
|
1164 |
msgid "Page ID"
|
1165 |
msgstr "Seiten-ID"
|
1166 |
|
1167 |
-
#: ../admin/manage-galleries.php:
|
1168 |
msgid "Image"
|
1169 |
msgid_plural "Images"
|
1170 |
msgstr[0] "Bild"
|
1171 |
msgstr[1] "Bilder"
|
1172 |
|
1173 |
-
#: ../admin/manage-images.php:
|
1174 |
msgid "Gallery not found."
|
1175 |
msgstr "Galerie nicht gefunden"
|
1176 |
|
1177 |
-
#: ../admin/manage-images.php:
|
1178 |
msgid "Sorry, you have no access here"
|
1179 |
msgstr "Sorry, Du hast nicht genügend Rechte"
|
1180 |
|
1181 |
-
#: ../admin/manage-images.php:
|
1182 |
msgid "Copy image to..."
|
1183 |
msgstr "Kopiere nach..."
|
1184 |
|
1185 |
-
#: ../admin/manage-images.php:
|
1186 |
msgid "Move image to..."
|
1187 |
msgstr "Verschiebe nach..."
|
1188 |
|
1189 |
-
#: ../admin/manage-images.php:
|
1190 |
msgid "Add new tags"
|
1191 |
msgstr "Stichwörter hinzufügen"
|
1192 |
|
1193 |
-
#: ../admin/manage-images.php:
|
1194 |
-
#: ../admin/manage-images.php:
|
1195 |
msgid "Delete tags"
|
1196 |
msgstr "Stichwörter löschen"
|
1197 |
|
1198 |
-
#: ../admin/manage-images.php:
|
1199 |
msgid "Overwrite"
|
1200 |
msgstr "Überschreiben"
|
1201 |
|
1202 |
-
#: ../admin/manage-images.php:
|
1203 |
#, php-format
|
1204 |
msgid ""
|
1205 |
"You are about to start the bulk edit for %s images \n"
|
@@ -1252,124 +1234,124 @@ msgid "Scan Folder for new images"
|
|
1252 |
msgstr "Überprüfe Verzeichnis nach neuen Bildern"
|
1253 |
|
1254 |
#: ../admin/manage-images.php:318
|
1255 |
-
#: ../admin/manage-images.php:
|
1256 |
-
#: ../admin/manage-images.php:
|
1257 |
msgid "Save Changes"
|
1258 |
msgstr "Änderungen speichern"
|
1259 |
|
1260 |
-
#: ../admin/manage-images.php:
|
1261 |
msgid "Delete images"
|
1262 |
msgstr "Bilder löschen"
|
1263 |
|
1264 |
-
#: ../admin/manage-images.php:
|
1265 |
msgid "Rotate images clockwise"
|
1266 |
msgstr "Rechts drehen"
|
1267 |
|
1268 |
-
#: ../admin/manage-images.php:
|
1269 |
msgid "Rotate images counter-clockwise"
|
1270 |
msgstr "Links drehen"
|
1271 |
|
1272 |
-
#: ../admin/manage-images.php:
|
1273 |
msgid "Copy to..."
|
1274 |
msgstr "Kopiere nach..."
|
1275 |
|
1276 |
-
#: ../admin/manage-images.php:
|
1277 |
msgid "Move to..."
|
1278 |
msgstr "Verschiebe nach..."
|
1279 |
|
1280 |
-
#: ../admin/manage-images.php:
|
1281 |
msgid "Add tags"
|
1282 |
msgstr "Stichwörter hinzufügen"
|
1283 |
|
1284 |
-
#: ../admin/manage-images.php:
|
1285 |
msgid "Overwrite tags"
|
1286 |
msgstr "Stichwörter überschreiben"
|
1287 |
|
1288 |
-
#: ../admin/manage-images.php:
|
1289 |
msgid "Sort gallery"
|
1290 |
msgstr "Sortiere Bilder"
|
1291 |
|
1292 |
-
#: ../admin/manage-images.php:
|
1293 |
msgid "pixel"
|
1294 |
msgstr "pixel"
|
1295 |
|
1296 |
-
#: ../admin/manage-images.php:
|
1297 |
#, php-format
|
1298 |
msgid "View \"%s\""
|
1299 |
msgstr "Anzeigen \"%s\""
|
1300 |
|
1301 |
-
#: ../admin/manage-images.php:
|
1302 |
msgid "View"
|
1303 |
msgstr "Ansehen"
|
1304 |
|
1305 |
-
#: ../admin/manage-images.php:
|
1306 |
msgid "Show Meta data"
|
1307 |
msgstr "Zeige Metadaten"
|
1308 |
|
1309 |
-
#: ../admin/manage-images.php:
|
1310 |
msgid "Meta"
|
1311 |
msgstr "Meta"
|
1312 |
|
1313 |
-
#: ../admin/manage-images.php:
|
1314 |
msgid "Customize thumbnail"
|
1315 |
msgstr "Thumbnails anpassen"
|
1316 |
|
1317 |
-
#: ../admin/manage-images.php:
|
1318 |
msgid "Edit thumb"
|
1319 |
msgstr "Thumbnail ändern"
|
1320 |
|
1321 |
-
#: ../admin/manage-images.php:
|
1322 |
msgid "Rotate"
|
1323 |
msgstr "Drehen"
|
1324 |
|
1325 |
-
#: ../admin/manage-images.php:
|
1326 |
msgid "Publish this image"
|
1327 |
msgstr "Bild veröffentlichen"
|
1328 |
|
1329 |
-
#: ../admin/manage-images.php:
|
1330 |
msgid "Publish"
|
1331 |
msgstr "Veröffentlichen"
|
1332 |
|
1333 |
-
#: ../admin/manage-images.php:
|
1334 |
msgid "Recover"
|
1335 |
msgstr "Rücksetzen"
|
1336 |
|
1337 |
-
#: ../admin/manage-images.php:
|
1338 |
#, php-format
|
1339 |
msgid "Recover \"%s\" ?"
|
1340 |
msgstr " \"%s\" wiederherstellen ?"
|
1341 |
|
1342 |
-
#: ../admin/manage-images.php:
|
1343 |
#, php-format
|
1344 |
msgid "Delete \"%s\" ?"
|
1345 |
msgstr "Lösche \"%s\" ?"
|
1346 |
|
1347 |
-
#: ../admin/manage-images.php:
|
1348 |
msgid "Enter the tags"
|
1349 |
msgstr "Stichwörter angeben"
|
1350 |
|
1351 |
-
#: ../admin/manage-images.php:
|
1352 |
msgid "Select the destination gallery:"
|
1353 |
msgstr "Galerie auswählen:"
|
1354 |
|
1355 |
-
#: ../admin/manage-images.php:
|
1356 |
msgid "Thumbnail"
|
1357 |
msgstr "Thumbnail"
|
1358 |
|
1359 |
-
#: ../admin/manage-images.php:
|
1360 |
#: ../admin/manage-sort.php:77
|
1361 |
msgid "Filename"
|
1362 |
msgstr "Dateiname"
|
1363 |
|
1364 |
-
#: ../admin/manage-images.php:
|
1365 |
msgid "Alt & Title Text"
|
1366 |
msgstr "Alt & Titel Text"
|
1367 |
|
1368 |
-
#: ../admin/manage-images.php:
|
1369 |
msgid "Tags (comma separated list)"
|
1370 |
msgstr "Stichwörter (Tags)"
|
1371 |
|
1372 |
-
#: ../admin/manage-images.php:
|
1373 |
msgid "exclude"
|
1374 |
msgstr "ausschließen"
|
1375 |
|
@@ -1417,52 +1399,59 @@ msgstr "Aufsteigend"
|
|
1417 |
msgid "Descending"
|
1418 |
msgstr "Absteigend"
|
1419 |
|
1420 |
-
#: ../admin/manage.php:
|
1421 |
msgid "Picture"
|
1422 |
msgstr "Bild"
|
1423 |
|
1424 |
-
#: ../admin/manage.php:
|
1425 |
msgid "deleted successfully"
|
1426 |
msgstr "erfolgreich gelöscht"
|
1427 |
|
1428 |
-
#: ../admin/manage.php:
|
1429 |
-
#: ../admin/manage.php:
|
1430 |
msgid "Operation successful. Please clear your browser cache."
|
1431 |
msgstr "Thumbnails erfolgreich erstellt. Bitte Browser-Cache löschen."
|
1432 |
|
1433 |
-
#: ../admin/manage.php:
|
1434 |
msgid "Gallery deleted successfully "
|
1435 |
msgstr "Galerie gelöscht"
|
1436 |
|
1437 |
-
#: ../admin/manage.php:
|
1438 |
-
#: ../admin/manage.php:
|
1439 |
msgid "Rotate images"
|
1440 |
msgstr "Bild drehen"
|
1441 |
|
1442 |
-
#: ../admin/manage.php:
|
1443 |
msgid "Pictures deleted successfully "
|
1444 |
msgstr "Bilder erfolgreich gelöscht"
|
1445 |
|
1446 |
-
#: ../admin/manage.php:
|
1447 |
msgid "Tags changed"
|
1448 |
msgstr "Stichwörter geändert"
|
1449 |
|
1450 |
-
#: ../admin/manage.php:
|
1451 |
msgid "Update successful"
|
1452 |
msgstr "Aktualisierung erfolgreich"
|
1453 |
|
1454 |
-
#: ../admin/manage.php:
|
1455 |
msgid "New gallery page ID"
|
1456 |
msgstr "Neue Galerie Seiten ID"
|
1457 |
|
1458 |
-
#: ../admin/manage.php:
|
1459 |
msgid "created"
|
1460 |
msgstr "erstellt"
|
1461 |
|
1462 |
-
#: ../admin/manage.php:
|
1463 |
msgid "Published a new post"
|
1464 |
msgstr "Verföffentliche einen neuen Beitrag"
|
1465 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1466 |
#: ../admin/media-upload.php:166
|
1467 |
msgid "No gallery"
|
1468 |
msgstr "Keine Galerie"
|
@@ -1490,7 +1479,7 @@ msgstr "Ausrichtung"
|
|
1490 |
|
1491 |
#: ../admin/media-upload.php:232
|
1492 |
#: ../admin/publish.php:57
|
1493 |
-
#: ../admin/settings.php:
|
1494 |
msgid "None"
|
1495 |
msgstr "Keiner"
|
1496 |
|
@@ -1513,7 +1502,7 @@ msgid "Right"
|
|
1513 |
msgstr "Rechts"
|
1514 |
|
1515 |
#: ../admin/media-upload.php:242
|
1516 |
-
#: ../admin/settings.php:
|
1517 |
msgid "Size"
|
1518 |
msgstr "Größe"
|
1519 |
|
@@ -1583,262 +1572,258 @@ msgid "Donate the work via paypal."
|
|
1583 |
msgstr "Zeig Dich für diese Arbeit per PayPal dankbar"
|
1584 |
|
1585 |
#: ../admin/overview.php:116
|
1586 |
-
msgid "Send a gift to show your appreciation."
|
1587 |
-
msgstr "Schau doch einfach auf meinen Wunschzettel."
|
1588 |
-
|
1589 |
-
#: ../admin/overview.php:121
|
1590 |
msgid "Help translating it."
|
1591 |
msgstr "Hilf das Plugin zu übersetzen."
|
1592 |
|
1593 |
-
#: ../admin/overview.php:
|
1594 |
msgid "Running..."
|
1595 |
msgstr "Läuft... Bitte warten"
|
1596 |
|
1597 |
-
#: ../admin/overview.php:
|
1598 |
msgid "Check plugin/theme conflict"
|
1599 |
msgstr "Plugin/Theme Konflikt prüfen"
|
1600 |
|
1601 |
-
#: ../admin/overview.php:
|
1602 |
-
#: ../admin/overview.php:
|
1603 |
-
#: ../admin/overview.php:
|
1604 |
msgid "Not tested"
|
1605 |
msgstr "Nicht getested"
|
1606 |
|
1607 |
-
#: ../admin/overview.php:
|
1608 |
msgid "No conflict could be detected"
|
1609 |
msgstr "Es konnte kein Konflikt festgestellt werden"
|
1610 |
|
1611 |
-
#: ../admin/overview.php:
|
1612 |
msgid "Test failed, disable other plugins & switch to default theme"
|
1613 |
msgstr "Test fehlgeschlagen, deaktiviere andere Plugins & aktiviere das Default Theme"
|
1614 |
|
1615 |
-
#: ../admin/overview.php:
|
1616 |
msgid "Test image function"
|
1617 |
msgstr "Teste Bildbearbeitung"
|
1618 |
|
1619 |
-
#: ../admin/overview.php:
|
1620 |
msgid "The plugin could create images"
|
1621 |
msgstr "Es konnte ein Bild erstellt werden"
|
1622 |
|
1623 |
-
#: ../admin/overview.php:
|
1624 |
msgid "Couldn't create image, check your memory limit"
|
1625 |
msgstr "Konne kein Bild erzeugen, überprüfe dein Speicherlimit (Server)"
|
1626 |
|
1627 |
-
#: ../admin/overview.php:
|
1628 |
msgid "Check theme compatibility"
|
1629 |
msgstr "Theme Kompatibilität prüfen"
|
1630 |
|
1631 |
-
#: ../admin/overview.php:
|
1632 |
msgid "Your theme should work fine with NextGEN Gallery"
|
1633 |
msgstr "Dein Theme sollte mit NextGEN Gallery funktionieren"
|
1634 |
|
1635 |
-
#: ../admin/overview.php:
|
1636 |
msgid "wp_head()/wp_footer() is missing, contact the theme author"
|
1637 |
msgstr "wp_head()/wp_footer() wurde nicht gefunden, kontaktiere den Theme Author"
|
1638 |
|
1639 |
-
#: ../admin/overview.php:
|
1640 |
msgid "Check plugin"
|
1641 |
msgstr "Plugin prüfen"
|
1642 |
|
1643 |
-
#: ../admin/overview.php:
|
1644 |
msgid "Graphic Library"
|
1645 |
msgstr "Grafik-Bibliothek"
|
1646 |
|
1647 |
-
#: ../admin/overview.php:
|
1648 |
-
#: ../admin/overview.php:
|
1649 |
-
#: ../admin/overview.php:
|
1650 |
-
#: ../admin/overview.php:
|
1651 |
msgid "Loading…"
|
1652 |
msgstr "Lade…"
|
1653 |
|
1654 |
-
#: ../admin/overview.php:
|
1655 |
-
#: ../admin/overview.php:
|
1656 |
-
#: ../admin/overview.php:
|
1657 |
-
#: ../admin/overview.php:
|
1658 |
msgid "This widget requires JavaScript."
|
1659 |
msgstr "Dieses Widget braucht JavaScript."
|
1660 |
|
1661 |
-
#: ../admin/overview.php:
|
1662 |
msgid "Thanks to all donators..."
|
1663 |
msgstr "Danke an alle Spender..."
|
1664 |
|
1665 |
-
#: ../admin/overview.php:
|
1666 |
msgid "View all"
|
1667 |
msgstr "Alle ansehen"
|
1668 |
|
1669 |
-
#: ../admin/overview.php:
|
1670 |
#, php-format
|
1671 |
msgid "Newsfeed could not be loaded. Check the <a href=\"%s\">front page</a> to check for updates."
|
1672 |
msgstr "Der Newsfeed kann nicht geladen werden. Schaue auf die <a href=\"%s\">Hauptseite</a>, um Updates mitzubekommen."
|
1673 |
|
1674 |
-
#: ../admin/overview.php:
|
1675 |
msgid "Untitled"
|
1676 |
msgstr "Kein Titel"
|
1677 |
|
1678 |
-
#: ../admin/overview.php:
|
1679 |
msgid "At a Glance"
|
1680 |
msgstr "Übersicht"
|
1681 |
|
1682 |
-
#: ../admin/overview.php:
|
1683 |
msgid "Upload pictures"
|
1684 |
msgstr "Bilder hochladen"
|
1685 |
|
1686 |
-
#: ../admin/overview.php:
|
1687 |
msgid "Here you can control your images, galleries and albums."
|
1688 |
msgstr "Hier kannst Du die Bilder, Galerien und Alben verwalten."
|
1689 |
|
1690 |
-
#: ../admin/overview.php:
|
1691 |
msgid "Storage Space"
|
1692 |
msgstr "Speicherplatz"
|
1693 |
|
1694 |
-
#: ../admin/overview.php:
|
1695 |
#, php-format
|
1696 |
msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB</a>"
|
1697 |
msgstr "<a href=\"%1$s\" title=\"Verwalte Uploads\" class=\"musublink\">%2$sMB</a>"
|
1698 |
|
1699 |
-
#: ../admin/overview.php:
|
1700 |
msgid "Space Allowed"
|
1701 |
msgstr "Speicher verfügbar"
|
1702 |
|
1703 |
-
#: ../admin/overview.php:
|
1704 |
#, php-format
|
1705 |
msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB (%3$s%%)</a>"
|
1706 |
msgstr "<a href=\"%1$s\" title=\"Verwalte Uploads\" class=\"musublink\">%2$sMB (%3$s%%)</a>"
|
1707 |
|
1708 |
-
#: ../admin/overview.php:
|
1709 |
msgid "Space Used"
|
1710 |
msgstr "Verbrauchter Uploadspeicher"
|
1711 |
|
1712 |
-
#: ../admin/overview.php:
|
1713 |
msgid "Translation file successful updated. Please reload page."
|
1714 |
msgstr "Übersetzungsdatei aktualisiert. Bitte Seite neu laden."
|
1715 |
|
1716 |
-
#: ../admin/overview.php:
|
1717 |
msgid "Reload page"
|
1718 |
msgstr "Seite neu laden"
|
1719 |
|
1720 |
-
#: ../admin/overview.php:
|
1721 |
msgid "Translation file couldn't be updated"
|
1722 |
msgstr "Übersetzung konnte nicht aktualisiert werden"
|
1723 |
|
1724 |
-
#: ../admin/overview.php:
|
1725 |
msgid "Download"
|
1726 |
msgstr "Jetzt updaten"
|
1727 |
|
1728 |
-
#: ../admin/overview.php:
|
1729 |
msgid "No GD support"
|
1730 |
msgstr "Keine GD Unterstützung"
|
1731 |
|
1732 |
-
#: ../admin/overview.php:
|
1733 |
-
#: ../admin/overview.php:
|
1734 |
-
#: ../admin/overview.php:
|
1735 |
-
#: ../admin/overview.php:
|
1736 |
msgid "Yes"
|
1737 |
msgstr "Ja"
|
1738 |
|
1739 |
-
#: ../admin/overview.php:
|
1740 |
-
#: ../admin/overview.php:
|
1741 |
-
#: ../admin/overview.php:
|
1742 |
-
#: ../admin/overview.php:
|
1743 |
msgid "No"
|
1744 |
msgstr "Nein"
|
1745 |
|
1746 |
-
#: ../admin/overview.php:
|
1747 |
msgid "Not set"
|
1748 |
msgstr "Nicht gesetzt"
|
1749 |
|
1750 |
-
#: ../admin/overview.php:
|
1751 |
-
#: ../admin/overview.php:
|
1752 |
msgid "On"
|
1753 |
msgstr "An"
|
1754 |
|
1755 |
-
#: ../admin/overview.php:
|
1756 |
-
#: ../admin/overview.php:
|
1757 |
msgid "Off"
|
1758 |
msgstr "Aus"
|
1759 |
|
1760 |
-
#: ../admin/overview.php:
|
1761 |
-
#: ../admin/overview.php:
|
1762 |
-
#: ../admin/overview.php:
|
1763 |
-
#: ../admin/overview.php:
|
1764 |
-
#: ../admin/overview.php:
|
1765 |
-
#: ../admin/overview.php:
|
1766 |
msgid "N/A"
|
1767 |
msgstr "N/A"
|
1768 |
|
1769 |
-
#: ../admin/overview.php:
|
1770 |
msgid " MByte"
|
1771 |
msgstr " MByte"
|
1772 |
|
1773 |
-
#: ../admin/overview.php:
|
1774 |
msgid "Operating System"
|
1775 |
msgstr "Betriebssystem"
|
1776 |
|
1777 |
-
#: ../admin/overview.php:
|
1778 |
msgid "Server"
|
1779 |
msgstr "Server"
|
1780 |
|
1781 |
-
#: ../admin/overview.php:
|
1782 |
msgid "Memory usage"
|
1783 |
msgstr "Speicherverbrauch"
|
1784 |
|
1785 |
-
#: ../admin/overview.php:
|
1786 |
msgid "MYSQL Version"
|
1787 |
msgstr "MySQL Version"
|
1788 |
|
1789 |
-
#: ../admin/overview.php:
|
1790 |
msgid "SQL Mode"
|
1791 |
msgstr "SQL Modus"
|
1792 |
|
1793 |
-
#: ../admin/overview.php:
|
1794 |
msgid "PHP Version"
|
1795 |
msgstr "PHP Version"
|
1796 |
|
1797 |
-
#: ../admin/overview.php:
|
1798 |
msgid "PHP Safe Mode"
|
1799 |
msgstr "PHP Safe Mode"
|
1800 |
|
1801 |
-
#: ../admin/overview.php:
|
1802 |
msgid "PHP Allow URL fopen"
|
1803 |
msgstr "PHP Allow URL fopen"
|
1804 |
|
1805 |
-
#: ../admin/overview.php:
|
1806 |
msgid "PHP Memory Limit"
|
1807 |
msgstr "PHP Memory Limit"
|
1808 |
|
1809 |
-
#: ../admin/overview.php:
|
1810 |
msgid "PHP Max Upload Size"
|
1811 |
msgstr "PHP Max Upload Größe"
|
1812 |
|
1813 |
-
#: ../admin/overview.php:
|
1814 |
msgid "PHP Max Post Size"
|
1815 |
msgstr "PHP Max Post Größe"
|
1816 |
|
1817 |
-
#: ../admin/overview.php:
|
1818 |
msgid "PCRE Backtracking Limit"
|
1819 |
msgstr "PCRE Backtracking Limit"
|
1820 |
|
1821 |
-
#: ../admin/overview.php:
|
1822 |
msgid "PHP Max Script Execute Time"
|
1823 |
msgstr "PHP Max Script Execute Time"
|
1824 |
|
1825 |
-
#: ../admin/overview.php:
|
1826 |
msgid "PHP Exif support"
|
1827 |
msgstr "PHP Exif Modul"
|
1828 |
|
1829 |
-
#: ../admin/overview.php:
|
1830 |
msgid "PHP IPTC support"
|
1831 |
msgstr "PHP IPTC Modul"
|
1832 |
|
1833 |
-
#: ../admin/overview.php:
|
1834 |
msgid "PHP XML support"
|
1835 |
msgstr "PHP XML Modul"
|
1836 |
|
1837 |
-
#: ../admin/overview.php:
|
1838 |
msgid "NextGEN Gallery contains some functions which are only available under PHP 5.2. You are using the old PHP 4 version, upgrade now! It's no longer supported by the PHP group. Many shared hosting providers offer both PHP 4 and PHP 5, running simultaneously. Ask your provider if they can do this."
|
1839 |
msgstr "NextGEN Gallery enthält einige Funktionen, die nur unter PHP 5.2 verfügbar sind. Du nutzt immer noch die alte PHP 4 Version. Bitte aktualisiere so bald wie möglich diese Version, sie wird nicht mehr gepflegt und weiterentwicklelt. Die meisten Hoster bieten bereits PHP5 an. Bitte kontaktiere Deinen Provider und frag kurz nach, ob sie ein Update durchführen können."
|
1840 |
|
1841 |
-
#: ../admin/overview.php:
|
1842 |
msgid "Install"
|
1843 |
msgstr "Installieren"
|
1844 |
|
@@ -1934,589 +1919,589 @@ msgstr "Vertikal spiegeln"
|
|
1934 |
msgid "Flip horizontally"
|
1935 |
msgstr "Horizontal spiegeln"
|
1936 |
|
1937 |
-
#: ../admin/settings.php:
|
1938 |
msgid "Cache cleared"
|
1939 |
msgstr "Cache löschen"
|
1940 |
|
1941 |
-
#: ../admin/settings.php:
|
1942 |
-
#: ../admin/settings.php:
|
1943 |
msgid "General Options"
|
1944 |
msgstr "Allg. Optionen"
|
1945 |
|
1946 |
-
#: ../admin/settings.php:
|
1947 |
-
#: ../admin/settings.php:
|
1948 |
msgid "Thumbnails"
|
1949 |
msgstr "Thumbnails"
|
1950 |
|
1951 |
-
#: ../admin/settings.php:
|
1952 |
msgid "Images"
|
1953 |
msgstr "Bilder"
|
1954 |
|
1955 |
-
#: ../admin/settings.php:
|
1956 |
-
#: ../admin/settings.php:
|
1957 |
msgid "Effects"
|
1958 |
msgstr "Effekte"
|
1959 |
|
1960 |
-
#: ../admin/settings.php:
|
1961 |
-
#: ../admin/settings.php:
|
1962 |
#: ../admin/tinymce/window.php:110
|
1963 |
msgid "Watermark"
|
1964 |
msgstr "Wasserzeichen"
|
1965 |
|
1966 |
-
#: ../admin/settings.php:
|
1967 |
-
#: ../admin/settings.php:
|
1968 |
-
#: ../admin/settings.php:
|
1969 |
#: ../admin/tinymce/window.php:63
|
1970 |
msgid "Slideshow"
|
1971 |
msgstr "Slideshow"
|
1972 |
|
1973 |
-
#: ../admin/settings.php:
|
1974 |
#: ../admin/wpmu.php:68
|
1975 |
msgid "Gallery path"
|
1976 |
msgstr "Galerie-Pfad"
|
1977 |
|
1978 |
-
#: ../admin/settings.php:
|
1979 |
msgid "This is the default path for all galleries"
|
1980 |
msgstr "Dies ist der Standard-Pfad für alle Galerien"
|
1981 |
|
1982 |
-
#: ../admin/settings.php:
|
1983 |
msgid "Delete image files"
|
1984 |
msgstr "Lösche Bilddateien"
|
1985 |
|
1986 |
-
#: ../admin/settings.php:
|
1987 |
msgid "Delete files, when removing a gallery in the database"
|
1988 |
msgstr "Löscht auch die Dateien, falls die Galerie aus der Datenbank entfernt wird"
|
1989 |
|
1990 |
-
#: ../admin/settings.php:
|
1991 |
msgid "Activate permalinks"
|
1992 |
msgstr "Aktiviere Permalinks"
|
1993 |
|
1994 |
-
#: ../admin/settings.php:
|
1995 |
msgid "When you activate this option, you need to update your permalink structure one time."
|
1996 |
msgstr "Wenn Du diese Option aktivierst, muss Du einmal die Permalink Struktur aktualisieren."
|
1997 |
|
1998 |
-
#: ../admin/settings.php:
|
|
|
|
|
|
|
|
|
1999 |
msgid "Create new URL friendly image slugs"
|
2000 |
msgstr "Erstelle neue URL lesbare Schlagwörter "
|
2001 |
|
2002 |
-
#: ../admin/settings.php:
|
2003 |
-
#: ../admin/settings.php:
|
2004 |
msgid "Proceed now"
|
2005 |
msgstr "Jetzt durchführen"
|
2006 |
|
2007 |
-
#: ../admin/settings.php:
|
2008 |
-
msgid "Currently not used, prepare database for upcoming version"
|
2009 |
-
msgstr "Derzeit nicht genutzt, Vorbereitung für kommende Versionen"
|
2010 |
-
|
2011 |
-
#: ../admin/settings.php:256
|
2012 |
msgid "Select graphic library"
|
2013 |
msgstr "Wähle Grafik-Bibliothek"
|
2014 |
|
2015 |
-
#: ../admin/settings.php:
|
2016 |
msgid "GD Library"
|
2017 |
msgstr "GD Bibliothek"
|
2018 |
|
2019 |
-
#: ../admin/settings.php:
|
2020 |
msgid "ImageMagick (Experimental). Path to the library :"
|
2021 |
msgstr "ImageMagick (Experimental). Pfad zur Bibliothek :"
|
2022 |
|
2023 |
-
#: ../admin/settings.php:
|
2024 |
msgid "Activate Media RSS feed"
|
2025 |
msgstr "Aktiviere Media-RSS-Feed"
|
2026 |
|
2027 |
-
#: ../admin/settings.php:
|
2028 |
msgid "A RSS feed will be added to you blog header. Useful for CoolIris/PicLens"
|
2029 |
msgstr "Ein Bilder-RSS Feed wird zum Blog hinzugefügt"
|
2030 |
|
2031 |
-
#: ../admin/settings.php:
|
2032 |
msgid "Activate PicLens/CoolIris support"
|
2033 |
msgstr "Aktiviere PicLens/CoolIris"
|
2034 |
|
2035 |
-
#: ../admin/settings.php:
|
2036 |
msgid "When you activate this option, some javascript is added to your site footer. Make sure that wp_footer is called in your theme."
|
2037 |
msgstr "Dieser Effekt fügt ein neues Javascript zu Deinem Theme hinzu. Beachte, dass wp_footer() in Deinen Vorlagen aufgerufen wird."
|
2038 |
|
2039 |
-
#: ../admin/settings.php:
|
2040 |
msgid "Tags / Categories"
|
2041 |
msgstr "Stichwörter / Kategorien"
|
2042 |
|
2043 |
-
#: ../admin/settings.php:
|
2044 |
msgid "Activate related images"
|
2045 |
msgstr "Verwandte Bilder anzeigen"
|
2046 |
|
2047 |
-
#: ../admin/settings.php:
|
2048 |
msgid "This option will append related images to every post"
|
2049 |
msgstr "Diese Option hängt verwandte Bilder an jeden Beitrag"
|
2050 |
|
2051 |
-
#: ../admin/settings.php:
|
2052 |
msgid "Match with"
|
2053 |
msgstr "Vergleiche mit"
|
2054 |
|
2055 |
-
#: ../admin/settings.php:
|
2056 |
msgid "Categories"
|
2057 |
msgstr "Kategorien"
|
2058 |
|
2059 |
-
#: ../admin/settings.php:
|
2060 |
msgid "Max. number of images"
|
2061 |
msgstr "Max. Anzahl der Bilder"
|
2062 |
|
2063 |
-
#: ../admin/settings.php:
|
2064 |
msgid "0 will show all images"
|
2065 |
msgstr "0 zeige alle verwandten Bilder"
|
2066 |
|
2067 |
-
#: ../admin/settings.php:
|
2068 |
-
#: ../admin/settings.php:
|
2069 |
-
#: ../admin/settings.php:
|
2070 |
-
#: ../admin/settings.php:
|
2071 |
-
#: ../admin/settings.php:
|
2072 |
-
#: ../admin/settings.php:
|
2073 |
msgid "More settings"
|
2074 |
msgstr "Mehr Einstellungen"
|
2075 |
|
2076 |
-
#: ../admin/settings.php:
|
2077 |
msgid "Thumbnail settings"
|
2078 |
msgstr "Thumbnail-Einstellungen"
|
2079 |
|
2080 |
-
#: ../admin/settings.php:
|
2081 |
msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
|
2082 |
msgstr "Bitte beachten : Änderungen der Einstellungen werden erst übernommen, wenn Du neue Thumbnails unter -> \"Gallery verwalten\" erstellst"
|
2083 |
|
2084 |
-
#: ../admin/settings.php:
|
2085 |
msgid "Thumbnail quality"
|
2086 |
msgstr "Thumbnail Qualität"
|
2087 |
|
2088 |
-
#: ../admin/settings.php:
|
2089 |
msgid "Image settings"
|
2090 |
msgstr "Bild-Einstellungen"
|
2091 |
|
2092 |
-
#: ../admin/settings.php:
|
2093 |
msgid "Resize Images"
|
2094 |
msgstr "Bilder verkleinern"
|
2095 |
|
2096 |
-
#: ../admin/settings.php:
|
2097 |
msgid "Image quality"
|
2098 |
msgstr "Bild Qualität"
|
2099 |
|
2100 |
-
#: ../admin/settings.php:
|
2101 |
msgid "Backup original images"
|
2102 |
msgstr "Backup von Original-Bildern "
|
2103 |
|
2104 |
-
#: ../admin/settings.php:
|
2105 |
msgid "Creates a backup for inserted images"
|
2106 |
msgstr "Backup der Bilder anlegen"
|
2107 |
|
2108 |
-
#: ../admin/settings.php:
|
2109 |
msgid "Automatically resize"
|
2110 |
msgstr "Grösse automatisch anpassen"
|
2111 |
|
2112 |
-
#: ../admin/settings.php:
|
2113 |
msgid "Automatically resize images on upload."
|
2114 |
msgstr "Passt die Grösse automatisch beim Upload an"
|
2115 |
|
2116 |
-
#: ../admin/settings.php:
|
2117 |
msgid "Single picture"
|
2118 |
msgstr "Einzelbilder"
|
2119 |
|
2120 |
-
#: ../admin/settings.php:
|
2121 |
msgid "Cache single pictures"
|
2122 |
msgstr "Nutze Cache für Einzelbilder"
|
2123 |
|
2124 |
-
#: ../admin/settings.php:
|
2125 |
msgid "Creates a file for each singlepic settings. Reduce the CPU load"
|
2126 |
msgstr "Erstellt ein Cache-Bild für jedes Einzelbild (singlepic). Reduziert die CPU Belastung."
|
2127 |
|
2128 |
-
#: ../admin/settings.php:
|
2129 |
msgid "Clear cache folder"
|
2130 |
msgstr "Lösche Cache-Verzeichnis"
|
2131 |
|
2132 |
-
#: ../admin/settings.php:
|
2133 |
msgid "Deactivate gallery page link"
|
2134 |
msgstr "Keine Seitenverzweigung"
|
2135 |
|
2136 |
-
#: ../admin/settings.php:
|
2137 |
msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
|
2138 |
msgstr "Ein Album benötigt dann keinen Link zur Seite. Die Galerie wird direkt angezeigt."
|
2139 |
|
2140 |
-
#: ../admin/settings.php:
|
2141 |
msgid "Number of images per page"
|
2142 |
msgstr "Anzahl der Bilder pro Seite"
|
2143 |
|
2144 |
-
#: ../admin/settings.php:
|
2145 |
msgid "0 will disable pagination, all images on one page"
|
2146 |
msgstr "0 schaltet Blätterfunktion ab ( = alle Bilder auf einer Seite )"
|
2147 |
|
2148 |
-
#: ../admin/settings.php:
|
2149 |
msgid "Number of columns"
|
2150 |
msgstr "Anzahl der Spalten"
|
2151 |
|
2152 |
-
#: ../admin/settings.php:
|
2153 |
msgid "0 will display as much as possible based on the width of your theme. Setting normally only required for captions below the images"
|
2154 |
msgstr "Mit \"0\" werden soviele Bilder wie möglich in einer Reihe dargestellt. Die Einstellung ist normalerweise nur für Beschriftungen unterhalb der Bilder sinnvoll."
|
2155 |
|
2156 |
-
#: ../admin/settings.php:
|
2157 |
msgid "Integrate slideshow"
|
2158 |
msgstr "Slideshow verwenden"
|
2159 |
|
2160 |
-
#: ../admin/settings.php:
|
2161 |
msgid "Show first"
|
2162 |
msgstr "Zeige als Erstes"
|
2163 |
|
2164 |
-
#: ../admin/settings.php:
|
2165 |
msgid "Show ImageBrowser"
|
2166 |
msgstr "Zeige Bilder-Browser"
|
2167 |
|
2168 |
-
#: ../admin/settings.php:
|
2169 |
msgid "The gallery will open the ImageBrowser instead the effect."
|
2170 |
msgstr "Es wird der Bilder-Browser angezeigt (Kein JavaScript Effekt)"
|
2171 |
|
2172 |
-
#: ../admin/settings.php:
|
2173 |
msgid "Add hidden images"
|
2174 |
msgstr "Versteckte Bilder hinzufügen"
|
2175 |
|
2176 |
-
#: ../admin/settings.php:
|
2177 |
msgid "If pagination is used, this option will still show all images in the modal window (Thickbox, Lightbox etc.). Note : This increases the page load"
|
2178 |
msgstr "Wenn Du die Blätterfunktion nutzt, dann kannst Du mit dieser Option alle Bilder im Modal-Fenster (Thickbox,Lightbox etc.) anzeigen. Berücksichtige, dass die Ladezeit der Seite erhöht wird."
|
2179 |
|
2180 |
-
#: ../admin/settings.php:
|
2181 |
msgid "Enable AJAX pagination"
|
2182 |
msgstr "Aktiviere AJAX-Navigation"
|
2183 |
|
2184 |
-
#: ../admin/settings.php:
|
2185 |
msgid "Browse images without reload the page. Note : Works only in combination with Shutter effect"
|
2186 |
msgstr "Ermöglicht das Blättern zwischen den Bildern ohne die Seite neu zu laden. Hinweis : Funktioniert nur mit dem Shutter-Effekt."
|
2187 |
|
2188 |
-
#: ../admin/settings.php:
|
2189 |
msgid "Sort options"
|
2190 |
msgstr "Sortierung"
|
2191 |
|
2192 |
-
#: ../admin/settings.php:
|
2193 |
msgid "Sort thumbnails"
|
2194 |
msgstr "Thumbnails sortieren"
|
2195 |
|
2196 |
-
#: ../admin/settings.php:
|
2197 |
msgid "Custom order"
|
2198 |
msgstr "Benutzerdefiniert"
|
2199 |
|
2200 |
-
#: ../admin/settings.php:
|
2201 |
msgid "File name"
|
2202 |
msgstr "Dateiname"
|
2203 |
|
2204 |
-
#: ../admin/settings.php:
|
2205 |
msgid "Alt / Title text"
|
2206 |
msgstr "Alt / Titel Text"
|
2207 |
|
2208 |
-
#: ../admin/settings.php:
|
2209 |
msgid "Date / Time"
|
2210 |
msgstr "Datum/Zeit"
|
2211 |
|
2212 |
-
#: ../admin/settings.php:
|
2213 |
msgid "Sort direction"
|
2214 |
msgstr "Sortierreihenfolge"
|
2215 |
|
2216 |
-
#: ../admin/settings.php:
|
2217 |
msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Shutter and Thickbox effect will automatic added to your theme."
|
2218 |
msgstr "Hier kannst Du den Effekt für die Thumbnails auswählen. NextGEN Galerie wird den benötigten HTML-Code verwenden. Bitte beachte, dass nur Shutter und der Thickbox Effekt automatisch in Dein Theme von Wordpress integriert wird. Alle anderen Effekte mußt Du selbst in die header.php eintragen (JS)."
|
2219 |
|
2220 |
-
#: ../admin/settings.php:
|
2221 |
msgid "With the placeholder"
|
2222 |
msgstr "Mit Platzhalter"
|
2223 |
|
2224 |
-
#: ../admin/settings.php:
|
2225 |
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."
|
2226 |
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."
|
2227 |
|
2228 |
-
#: ../admin/settings.php:
|
2229 |
msgid "JavaScript Thumbnail effect"
|
2230 |
msgstr "JavaScript Thumbnail Effekt"
|
2231 |
|
2232 |
-
#: ../admin/settings.php:
|
2233 |
msgid "Thickbox"
|
2234 |
msgstr "Thickbox"
|
2235 |
|
2236 |
-
#: ../admin/settings.php:
|
2237 |
msgid "Lightbox"
|
2238 |
msgstr "Lightbox"
|
2239 |
|
2240 |
-
#: ../admin/settings.php:
|
2241 |
msgid "Highslide"
|
2242 |
msgstr "Highslide"
|
2243 |
|
2244 |
-
#: ../admin/settings.php:
|
2245 |
msgid "Shutter"
|
2246 |
msgstr "Shutter"
|
2247 |
|
2248 |
-
#: ../admin/settings.php:
|
2249 |
msgid "Custom"
|
2250 |
msgstr "Eigener"
|
2251 |
|
2252 |
-
#: ../admin/settings.php:
|
2253 |
msgid "Link Code line"
|
2254 |
msgstr "Link-Code-Zeile"
|
2255 |
|
2256 |
-
#: ../admin/settings.php:
|
2257 |
msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
|
2258 |
msgstr "Bitte beachten : Das Wasserzeichen kann nur unter der Galerieverwaltung gesetzt werden. "
|
2259 |
|
2260 |
-
#: ../admin/settings.php:
|
2261 |
msgid "Preview"
|
2262 |
msgstr "Vorschau"
|
2263 |
|
2264 |
-
#: ../admin/settings.php:
|
2265 |
-
#: ../admin/settings.php:
|
2266 |
msgid "Position"
|
2267 |
msgstr "Position"
|
2268 |
|
2269 |
-
#: ../admin/settings.php:
|
2270 |
msgid "Offset"
|
2271 |
msgstr "Abstand"
|
2272 |
|
2273 |
-
#: ../admin/settings.php:
|
2274 |
msgid "Use image as watermark"
|
2275 |
msgstr "Benutze das Bild als Wasserzeichen"
|
2276 |
|
2277 |
-
#: ../admin/settings.php:
|
2278 |
msgid "URL to file"
|
2279 |
msgstr "URL zur Datei"
|
2280 |
|
2281 |
-
#: ../admin/settings.php:
|
2282 |
msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
|
2283 |
msgstr "Der Dateizugriff von URLs ist auf diesem Server deaktiviert (allow_url_fopen)"
|
2284 |
|
2285 |
-
#: ../admin/settings.php:
|
2286 |
msgid "Use text as watermark"
|
2287 |
msgstr "Benutze Text als Wasserzeichen"
|
2288 |
|
2289 |
-
#: ../admin/settings.php:
|
2290 |
msgid "Font"
|
2291 |
msgstr "Schriftart"
|
2292 |
|
2293 |
-
#: ../admin/settings.php:
|
2294 |
msgid "This function will not work, cause you need the FreeType library"
|
2295 |
msgstr "Diese Funktion benötigt die FreeType-Bibliothek"
|
2296 |
|
2297 |
-
#: ../admin/settings.php:
|
2298 |
msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
|
2299 |
msgstr "Du kannst mehr Schriftarten in das Verzeichniss <strong>nggallery/fonts</strong> hochladen."
|
2300 |
|
2301 |
-
#: ../admin/settings.php:
|
2302 |
msgid "Color"
|
2303 |
msgstr "Farbe"
|
2304 |
|
2305 |
-
#: ../admin/settings.php:
|
2306 |
msgid "(hex w/o #)"
|
2307 |
msgstr "(hex w/o #)"
|
2308 |
|
2309 |
-
#: ../admin/settings.php:
|
2310 |
msgid "Text"
|
2311 |
msgstr "Text"
|
2312 |
|
2313 |
-
#: ../admin/settings.php:
|
2314 |
msgid "Opaque"
|
2315 |
msgstr "Transparenz"
|
2316 |
|
2317 |
-
#: ../admin/settings.php:
|
2318 |
msgid "Default size (W x H)"
|
2319 |
msgstr "Standard Größe (B x H)"
|
2320 |
|
2321 |
-
#: ../admin/settings.php:
|
2322 |
msgid "Duration time"
|
2323 |
msgstr "Dauer"
|
2324 |
|
2325 |
-
#: ../admin/settings.php:
|
2326 |
msgid "sec."
|
2327 |
msgstr "Sek."
|
2328 |
|
2329 |
-
#: ../admin/settings.php:
|
2330 |
-
#: ../admin/settings.php:
|
2331 |
msgid "Transition / Fade effect"
|
2332 |
msgstr "Fade Effekt"
|
2333 |
|
2334 |
-
#: ../admin/settings.php:
|
2335 |
-
#: ../admin/settings.php:
|
2336 |
msgid "fade"
|
2337 |
msgstr "Fade"
|
2338 |
|
2339 |
-
#: ../admin/settings.php:
|
2340 |
msgid "blindX"
|
2341 |
msgstr "blindX"
|
2342 |
|
2343 |
-
#: ../admin/settings.php:
|
2344 |
msgid "cover"
|
2345 |
msgstr "Blenden"
|
2346 |
|
2347 |
-
#: ../admin/settings.php:
|
2348 |
msgid "scrollUp"
|
2349 |
msgstr "ScrollUp"
|
2350 |
|
2351 |
-
#: ../admin/settings.php:
|
2352 |
msgid "scrollDown"
|
2353 |
msgstr "ScrollDown"
|
2354 |
|
2355 |
-
#: ../admin/settings.php:
|
2356 |
msgid "shuffle"
|
2357 |
msgstr "Shuffle"
|
2358 |
|
2359 |
-
#: ../admin/settings.php:
|
2360 |
msgid "toss"
|
2361 |
msgstr "Schüttel"
|
2362 |
|
2363 |
-
#: ../admin/settings.php:
|
2364 |
msgid "wipe"
|
2365 |
msgstr "wischen"
|
2366 |
|
2367 |
-
#: ../admin/settings.php:
|
2368 |
msgid "See here for more information about the effects :"
|
2369 |
msgstr "Hier bekommst du mehr Informationen über die Effekte :"
|
2370 |
|
2371 |
-
#: ../admin/settings.php:
|
2372 |
msgid "Settings for the JW Image Rotator"
|
2373 |
msgstr "JW-Image-Rotator Einstellungen"
|
2374 |
|
2375 |
-
#: ../admin/settings.php:
|
2376 |
msgid "The settings are only used in the JW Image Rotator Version"
|
2377 |
msgstr "Die Einstellungen werden im JW-Image-Rotator benutzt, in der Version"
|
2378 |
|
2379 |
-
#: ../admin/settings.php:
|
2380 |
msgid "See more information for the Flash Player on the web page"
|
2381 |
msgstr "Weitere Informationen auf der Flash-Player-Homepage"
|
2382 |
|
2383 |
-
#: ../admin/settings.php:
|
2384 |
msgid "The path to imagerotator.swf is not defined, the slideshow will not work."
|
2385 |
msgstr "Der Pfad zu imagerotator.swf ist nicht gesetzt, die Flash-Diaschau kann dann nicht angezeigt werden"
|
2386 |
|
2387 |
-
#: ../admin/settings.php:
|
2388 |
msgid "If you would like to use the JW Image Rotatator, please download the player <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" target=\"_blank\" >here</a> and upload it to your Upload folder (Default is wp-content/uploads)."
|
2389 |
msgstr "Wenn Du den JW-Image-Rotator (Slideshow) nutzen möchtest, lade Dir die aktuelle Version <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" target=\"_blank\" >hier</a> herunter und übertrage sie dann in Dein WordPress-Upload-Verzeichnis (normalerweise wp-content/uploads),"
|
2390 |
|
2391 |
-
#: ../admin/settings.php:
|
2392 |
msgid "Enable flash slideshow"
|
2393 |
msgstr "Aktiviere Flash Slideshow"
|
2394 |
|
2395 |
-
#: ../admin/settings.php:
|
2396 |
msgid "Integrate the flash based slideshow for all flash supported devices"
|
2397 |
msgstr "Verwende die Flash Slideshow für alle Flash-unterstützte Geräte"
|
2398 |
|
2399 |
-
#: ../admin/settings.php:
|
2400 |
msgid "Path to the Imagerotator (URL)"
|
2401 |
msgstr "Pfad zum JW-Image-Rotator (URL)"
|
2402 |
|
2403 |
-
#: ../admin/settings.php:
|
2404 |
msgid "Search now"
|
2405 |
msgstr "Suche jetzt"
|
2406 |
|
2407 |
-
#: ../admin/settings.php:
|
2408 |
msgid "Press the button to search automatically for the imagerotator, if you uploaded it to wp-content/uploads or a subfolder"
|
2409 |
msgstr "Drücke 'Suche jetzt' um automatisch den Pfad zum Image-Rotator zu ermitteln, sofern Du den Player in wp-content/uploads oder ein Unterverzeichnis hochgeladen hast."
|
2410 |
|
2411 |
-
#: ../admin/settings.php:
|
2412 |
msgid "Shuffle mode"
|
2413 |
msgstr "Shuffle Modus"
|
2414 |
|
2415 |
-
#: ../admin/settings.php:
|
2416 |
msgid "Show next image on click"
|
2417 |
msgstr "Zeige nächstes Bild bei Klick"
|
2418 |
|
2419 |
-
#: ../admin/settings.php:
|
2420 |
msgid "Show navigation bar"
|
2421 |
msgstr "Zeige Navigations-Leiste"
|
2422 |
|
2423 |
-
#: ../admin/settings.php:
|
2424 |
msgid "Show loading icon"
|
2425 |
msgstr "Zeige Lade-Bildchen"
|
2426 |
|
2427 |
-
#: ../admin/settings.php:
|
2428 |
msgid "Use watermark logo"
|
2429 |
msgstr "Wasserzeichen anzeigen"
|
2430 |
|
2431 |
-
#: ../admin/settings.php:
|
2432 |
msgid "You can change the logo at the watermark settings"
|
2433 |
msgstr "Du kannst den Pfad in Einstellungen für das Wasserzeichen angeben"
|
2434 |
|
2435 |
-
#: ../admin/settings.php:
|
2436 |
msgid "Stretch image"
|
2437 |
msgstr "Bild dehnen"
|
2438 |
|
2439 |
-
#: ../admin/settings.php:
|
2440 |
msgid "true"
|
2441 |
msgstr "Ja"
|
2442 |
|
2443 |
-
#: ../admin/settings.php:
|
2444 |
msgid "false"
|
2445 |
msgstr "Nein"
|
2446 |
|
2447 |
-
#: ../admin/settings.php:
|
2448 |
msgid "fit"
|
2449 |
msgstr "Passend"
|
2450 |
|
2451 |
-
#: ../admin/settings.php:
|
2452 |
msgid "none"
|
2453 |
msgstr "keiner"
|
2454 |
|
2455 |
-
#: ../admin/settings.php:
|
2456 |
msgid "bgfade"
|
2457 |
msgstr "BGFade"
|
2458 |
|
2459 |
-
#: ../admin/settings.php:
|
2460 |
msgid "slowfade"
|
2461 |
msgstr "Slowfade"
|
2462 |
|
2463 |
-
#: ../admin/settings.php:
|
2464 |
msgid "circles"
|
2465 |
msgstr "Kreise"
|
2466 |
|
2467 |
-
#: ../admin/settings.php:
|
2468 |
msgid "bubbles"
|
2469 |
msgstr "Blasen"
|
2470 |
|
2471 |
-
#: ../admin/settings.php:
|
2472 |
msgid "blocks"
|
2473 |
msgstr "Blöcke"
|
2474 |
|
2475 |
-
#: ../admin/settings.php:
|
2476 |
msgid "fluids"
|
2477 |
msgstr "Fluids"
|
2478 |
|
2479 |
-
#: ../admin/settings.php:
|
2480 |
msgid "flash"
|
2481 |
msgstr "Flash"
|
2482 |
|
2483 |
-
#: ../admin/settings.php:
|
2484 |
msgid "lines"
|
2485 |
msgstr "Linien"
|
2486 |
|
2487 |
-
#: ../admin/settings.php:
|
2488 |
msgid "random"
|
2489 |
msgstr "Zufall"
|
2490 |
|
2491 |
-
#: ../admin/settings.php:
|
2492 |
msgid "Use slow zooming effect"
|
2493 |
msgstr "nutze Zoom-Effekt"
|
2494 |
|
2495 |
-
#: ../admin/settings.php:
|
2496 |
msgid "Background Color"
|
2497 |
msgstr "Hintergrund (BG) Farbe"
|
2498 |
|
2499 |
-
#: ../admin/settings.php:
|
2500 |
msgid "Texts / Buttons Color"
|
2501 |
msgstr "Text- / Button Farbe"
|
2502 |
|
2503 |
-
#: ../admin/settings.php:
|
2504 |
msgid "Rollover / Active Color"
|
2505 |
msgstr "Rollover / Aktiv (Link) Farbe"
|
2506 |
|
2507 |
-
#: ../admin/settings.php:
|
2508 |
msgid "Screen Color"
|
2509 |
msgstr "Seiten-Farbe"
|
2510 |
|
2511 |
-
#: ../admin/settings.php:
|
2512 |
msgid "Background music (URL)"
|
2513 |
msgstr "Hintergrundmusik (URL)"
|
2514 |
|
2515 |
-
#: ../admin/settings.php:
|
2516 |
msgid "Try XHTML validation (with CDATA)"
|
2517 |
msgstr "Integriere XHTML-Validierung (mittels CDATA)"
|
2518 |
|
2519 |
-
#: ../admin/settings.php:
|
2520 |
msgid "Important : Could causes problem at some browser. Please recheck your page."
|
2521 |
msgstr "Wichtig : Es könnten Probleme bei einigen Browser entstehen. Unbedingt Seite danach prüfen."
|
2522 |
|
@@ -2822,6 +2807,7 @@ msgid "Updated widget structure. If you used NextGEN Widgets, you need to setup
|
|
2822 |
msgstr "Die Widgets wurden überarbeitet. Wenn Du NextGEN Widgets nutzt, musst du Sie nun neu einfügen..."
|
2823 |
|
2824 |
#: ../admin/upgrade.php:168
|
|
|
2825 |
msgid "Updated options."
|
2826 |
msgstr "Einstellungen gespeichert."
|
2827 |
|
@@ -2841,67 +2827,67 @@ msgstr "Deshalb ist es notwendig ein eindeutiges Schlagwort für jedes Bild, Gal
|
|
2841 |
msgid "Depend on the amount of database entries this will take a while, don't reload this page."
|
2842 |
msgstr "Diese Operation kann je nach Anzahl der Bilder eine Weile daueren, bitte die Seite nicht neu laden."
|
2843 |
|
2844 |
-
#: ../admin/upgrade.php:
|
2845 |
msgid "Could not find NextGEN Gallery database tables, upgrade failed !"
|
2846 |
msgstr "Konnte die NextGEN Gallery Tabellen nicht finden, Upgrade fehlgeschlagen !"
|
2847 |
|
2848 |
-
#: ../admin/upgrade.php:
|
2849 |
msgid "Some folders/files could not renamed, please recheck the permission and rescan the folder in the manage gallery section."
|
2850 |
msgstr "Einige Verzeichnisse / Bilder konnten nicht umbenannt werden, bitte überprüfe die Zugriffsrechte und scanne dann das Verzeichnis neu ein."
|
2851 |
|
2852 |
-
#: ../admin/upgrade.php:
|
2853 |
msgid "Rename failed"
|
2854 |
msgstr "Konnte nicht umbenannt werden"
|
2855 |
|
2856 |
-
#: ../admin/upgrade.php:
|
2857 |
-
#: ../admin/upgrade.php:
|
2858 |
msgid "Upgrade NextGEN Gallery"
|
2859 |
msgstr "NextGEN-Gallery aktualisieren"
|
2860 |
|
2861 |
-
#: ../admin/upgrade.php:
|
2862 |
msgid "The script detect that you upgrade from a older version."
|
2863 |
msgstr "Es wurde eine ältere NextGEN-Datenbank erkannt."
|
2864 |
|
2865 |
-
#: ../admin/upgrade.php:
|
2866 |
msgid "Your database tables for NextGEN Gallery is out-of-date, and must be upgraded before you can continue."
|
2867 |
msgstr "Deine Datenbanktabellen für NextGEN-Gallery sind nicht auf dem aktuellen Stand, sie müssen jetzt aktualisiert werden."
|
2868 |
|
2869 |
-
#: ../admin/upgrade.php:
|
2870 |
msgid "If you would like to downgrade later, please make first a complete backup of your database and the images."
|
2871 |
msgstr "Wenn Du wieder auf eine ältere Version zurückgehen möchtest, solltest Du vorher die Datenbank sichern."
|
2872 |
|
2873 |
-
#: ../admin/upgrade.php:
|
2874 |
msgid "The upgrade process may take a while, so please be patient."
|
2875 |
msgstr "Der Upgrade-Prozess kann etwas dauern, bitte sei geduldig..."
|
2876 |
|
2877 |
-
#: ../admin/upgrade.php:
|
2878 |
msgid "Start upgrade now"
|
2879 |
msgstr "Aktualisierung starten"
|
2880 |
|
2881 |
-
#: ../admin/upgrade.php:
|
2882 |
msgid "Upgrade finished..."
|
2883 |
msgstr "Upgrade beendet..."
|
2884 |
|
2885 |
-
#: ../admin/upgrade.php:
|
2886 |
msgid "Continue"
|
2887 |
msgstr "Weiter"
|
2888 |
|
2889 |
-
#: ../admin/upgrade.php:
|
2890 |
#, php-format
|
2891 |
msgid "Rebuild image structure : %s / %s images"
|
2892 |
msgstr "Erzeuge Permalinks für Bilder : %s / %s Bilder"
|
2893 |
|
2894 |
-
#: ../admin/upgrade.php:
|
2895 |
#, php-format
|
2896 |
msgid "Rebuild gallery structure : %s / %s galleries"
|
2897 |
msgstr "Erzeuge Permalinks für Galerien : %s / %s Galerien"
|
2898 |
|
2899 |
-
#: ../admin/upgrade.php:
|
2900 |
#, php-format
|
2901 |
msgid "Rebuild album structure : %s / %s albums"
|
2902 |
msgstr "Erzeuge Permalinks für Alben : %s / %s Alben"
|
2903 |
|
2904 |
-
#: ../admin/upgrade.php:
|
2905 |
msgid "Done."
|
2906 |
msgstr "Fertig."
|
2907 |
|
@@ -3036,7 +3022,7 @@ msgstr "Kein Float"
|
|
3036 |
msgid "Insert"
|
3037 |
msgstr "Einfügen"
|
3038 |
|
3039 |
-
#: ../lib/core.php:
|
3040 |
#, php-format
|
3041 |
msgid "Note : Based on your server memory limit you should not upload larger images then <strong>%d x %d</strong> pixel"
|
3042 |
msgstr "Hinweis: Basierend auf der Speicherbegrenzung auf dem Server, solltest Du keine Bilder grösser als <strong>%d x %d</strong> Pixel hochladen"
|
@@ -3066,128 +3052,128 @@ msgstr "ausgelöst"
|
|
3066 |
msgid "Not fired"
|
3067 |
msgstr "Nicht ausgelöst"
|
3068 |
|
3069 |
-
#: ../lib/meta.php:
|
3070 |
msgid "Aperture"
|
3071 |
msgstr "Blende"
|
3072 |
|
3073 |
-
#: ../lib/meta.php:
|
3074 |
-
#: ../lib/meta.php:
|
3075 |
msgid "Credit"
|
3076 |
msgstr "Autor"
|
3077 |
|
3078 |
-
#: ../lib/meta.php:
|
3079 |
msgid "Camera"
|
3080 |
msgstr "Kamera"
|
3081 |
|
3082 |
-
#: ../lib/meta.php:
|
3083 |
msgid "Caption"
|
3084 |
msgstr "Beschreibung"
|
3085 |
|
3086 |
-
#: ../lib/meta.php:
|
3087 |
msgid "Copyright"
|
3088 |
msgstr "Rechte"
|
3089 |
|
3090 |
-
#: ../lib/meta.php:
|
3091 |
msgid "Focal length"
|
3092 |
msgstr "Brennweite"
|
3093 |
|
3094 |
-
#: ../lib/meta.php:
|
3095 |
msgid "ISO"
|
3096 |
msgstr "ISO"
|
3097 |
|
3098 |
-
#: ../lib/meta.php:
|
3099 |
msgid "Shutter speed"
|
3100 |
msgstr "Belichtungszeit"
|
3101 |
|
3102 |
-
#: ../lib/meta.php:
|
3103 |
msgid "Subject"
|
3104 |
msgstr "Betreff"
|
3105 |
|
3106 |
-
#: ../lib/meta.php:
|
3107 |
msgid "Make"
|
3108 |
msgstr "Hersteller"
|
3109 |
|
3110 |
-
#: ../lib/meta.php:
|
3111 |
msgid "Edit Status"
|
3112 |
msgstr "Ändere Status"
|
3113 |
|
3114 |
-
#: ../lib/meta.php:
|
3115 |
msgid "Category"
|
3116 |
msgstr "Kategorie"
|
3117 |
|
3118 |
-
#: ../lib/meta.php:
|
3119 |
msgid "Keywords"
|
3120 |
msgstr "Schlüsselwörter"
|
3121 |
|
3122 |
-
#: ../lib/meta.php:
|
3123 |
msgid "Date Created"
|
3124 |
msgstr "erstellt (Datum)"
|
3125 |
|
3126 |
-
#: ../lib/meta.php:
|
3127 |
msgid "Time Created"
|
3128 |
msgstr "erstellt (Zeit)"
|
3129 |
|
3130 |
-
#: ../lib/meta.php:
|
3131 |
msgid "Author Position"
|
3132 |
msgstr "Autor Position"
|
3133 |
|
3134 |
-
#: ../lib/meta.php:
|
3135 |
msgid "City"
|
3136 |
msgstr "Stadt"
|
3137 |
|
3138 |
-
#: ../lib/meta.php:
|
3139 |
msgid "Location"
|
3140 |
msgstr "Ort"
|
3141 |
|
3142 |
-
#: ../lib/meta.php:
|
3143 |
msgid "Province/State"
|
3144 |
msgstr "Staat / PLZ"
|
3145 |
|
3146 |
-
#: ../lib/meta.php:
|
3147 |
msgid "Country code"
|
3148 |
msgstr "Landescode"
|
3149 |
|
3150 |
-
#: ../lib/meta.php:
|
3151 |
msgid "Country"
|
3152 |
msgstr "Land"
|
3153 |
|
3154 |
-
#: ../lib/meta.php:
|
3155 |
msgid "Headline"
|
3156 |
msgstr "Kopfzeile"
|
3157 |
|
3158 |
-
#: ../lib/meta.php:
|
3159 |
msgid "Source"
|
3160 |
msgstr "Quelle"
|
3161 |
|
3162 |
-
#: ../lib/meta.php:
|
3163 |
msgid "Copyright Notice"
|
3164 |
msgstr "Copyright Hinweise / Credits"
|
3165 |
|
3166 |
-
#: ../lib/meta.php:
|
3167 |
msgid "Contact"
|
3168 |
msgstr "Kontakt"
|
3169 |
|
3170 |
-
#: ../lib/meta.php:
|
3171 |
msgid "Last modified"
|
3172 |
msgstr "Zuletzt geändert"
|
3173 |
|
3174 |
-
#: ../lib/meta.php:
|
3175 |
msgid "Program tool"
|
3176 |
msgstr "Programm"
|
3177 |
|
3178 |
-
#: ../lib/meta.php:
|
3179 |
msgid "Format"
|
3180 |
msgstr "Format"
|
3181 |
|
3182 |
-
#: ../lib/meta.php:
|
3183 |
msgid "Image Width"
|
3184 |
msgstr "Breite"
|
3185 |
|
3186 |
-
#: ../lib/meta.php:
|
3187 |
msgid "Image Height"
|
3188 |
msgstr "Höhe"
|
3189 |
|
3190 |
-
#: ../lib/meta.php:
|
3191 |
msgid "Flash"
|
3192 |
msgstr "Blitz"
|
3193 |
|
@@ -3371,11 +3357,11 @@ msgid "Sorry, could not update the album"
|
|
3371 |
msgstr "Konnte das Album nicht aktualisieren"
|
3372 |
|
3373 |
#: ../view/album-compact.php:32
|
|
|
3374 |
msgid "Photos"
|
3375 |
msgstr "Fotos"
|
3376 |
|
3377 |
#: ../view/gallery-caption.php:32
|
3378 |
-
#: ../view/gallery-fuchs.php:32
|
3379 |
#: ../view/gallery.php:32
|
3380 |
#: ../widgets/media-rss-widget.php:122
|
3381 |
msgid "[View with PicLens]"
|
@@ -3383,21 +3369,18 @@ msgstr "[Mit PicLens anzeigen]"
|
|
3383 |
|
3384 |
#: ../view/imagebrowser-caption.php:26
|
3385 |
#: ../view/imagebrowser-exif.php:30
|
3386 |
-
#: ../view/imagebrowser-fuchs.php:26
|
3387 |
#: ../view/imagebrowser.php:26
|
3388 |
msgid "Back"
|
3389 |
msgstr "Zurück"
|
3390 |
|
3391 |
#: ../view/imagebrowser-caption.php:29
|
3392 |
#: ../view/imagebrowser-exif.php:33
|
3393 |
-
#: ../view/imagebrowser-fuchs.php:29
|
3394 |
#: ../view/imagebrowser.php:29
|
3395 |
msgid "Next"
|
3396 |
msgstr "Vor"
|
3397 |
|
3398 |
#: ../view/imagebrowser-caption.php:31
|
3399 |
#: ../view/imagebrowser-exif.php:35
|
3400 |
-
#: ../view/imagebrowser-fuchs.php:31
|
3401 |
#: ../view/imagebrowser.php:31
|
3402 |
msgid "of"
|
3403 |
msgstr "von"
|
@@ -3557,6 +3540,21 @@ msgstr "Album-ID %s existiert nicht"
|
|
3557 |
msgid "Invalid MediaRSS command"
|
3558 |
msgstr "Ungültiger Media-RSS-Befehl"
|
3559 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3560 |
#~ msgid "Delete album ?"
|
3561 |
#~ msgstr "Album löschen ?"
|
3562 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: NextGEN Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-05-17 14:19+0100\n"
|
6 |
+
"PO-Revision-Date: 2011-05-17 14:19+0100\n"
|
7 |
"Last-Translator: Alex Rabe\n"
|
8 |
"Language-Team: Alex Rabe\n"
|
9 |
"MIME-Version: 1.0\n"
|
23 |
msgstr "<strong>Übersetzt von : </strong><a target=\"_blank\" href=\"http://alexrabe.de/wordpress-plugins/wordtube/translation-of-plugins/\">Alex Rabe</a>"
|
24 |
|
25 |
#: ../nggallery.php:98
|
26 |
+
msgid "<strong>This translation is not yet updated for Version 1.8.0</strong>. If you would like to help with translation, download the current po from the plugin folder and read <a href=\"http://alexrabe.de/wordpress-plugins/wordtube/translation-of-plugins/\">here</a> how you can translate the plugin."
|
27 |
msgstr "Sollten jemand Rechtschreibfehler, Deppenapostrophe oder andere deutsche Ungereimtheiten finden, freue ich mich jederzeit über einen kurzen Hinweis</p>"
|
28 |
|
29 |
+
#: ../nggallery.php:202
|
30 |
msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB or higher"
|
31 |
msgstr "Tut mir leid, aber NextGEN-Galerie benötigt minimum 16MB Speicher (Memory Limit) oder mehr"
|
32 |
|
33 |
+
#: ../nggallery.php:222
|
34 |
msgid "Please update the database of NextGEN Gallery."
|
35 |
msgstr "Bitte aktualisiere die Datenbank von NextGEN Gallery."
|
36 |
|
37 |
+
#: ../nggallery.php:222
|
38 |
msgid "Click here to proceed."
|
39 |
msgstr "Hier klicken um fortzufahren."
|
40 |
|
41 |
+
#: ../nggallery.php:245
|
42 |
msgid "Picture tag"
|
43 |
msgstr "Bilder-Stichwort"
|
44 |
|
45 |
+
#: ../nggallery.php:246
|
46 |
msgid "Picture tag: %2$l."
|
47 |
msgstr "Bilder-Stichwort: %2$l."
|
48 |
|
49 |
+
#: ../nggallery.php:247
|
50 |
msgid "Separate picture tags with commas."
|
51 |
msgstr "Trenne Stichwörter mittels Komma"
|
52 |
|
53 |
+
#: ../nggallery.php:347
|
54 |
msgid "L O A D I N G"
|
55 |
msgstr "B I T T E W A R T E N"
|
56 |
|
57 |
+
#: ../nggallery.php:348
|
58 |
msgid "Click to Close"
|
59 |
msgstr "Klicken zum Schliessen "
|
60 |
|
61 |
+
#: ../nggallery.php:369
|
62 |
msgid "loading"
|
63 |
msgstr "lade..."
|
64 |
|
65 |
+
#: ../nggallery.php:509
|
66 |
+
#: ../nggfunctions.php:940
|
67 |
+
#: ../admin/admin.php:35
|
68 |
msgid "Overview"
|
69 |
msgstr "Übersicht"
|
70 |
|
71 |
+
#: ../nggallery.php:510
|
72 |
msgid "Get help"
|
73 |
msgstr "Hilfe"
|
74 |
|
75 |
+
#: ../nggallery.php:511
|
76 |
msgid "Contribute"
|
77 |
msgstr "Mithelfen"
|
78 |
|
79 |
+
#: ../nggallery.php:512
|
80 |
msgid "Donate"
|
81 |
msgstr "Spenden"
|
82 |
|
84 |
msgid "The <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player</a> and <a href=\"http://www.mozilla.com/firefox/\">a browser with Javascript support</a> are needed."
|
85 |
msgstr "Es wird der <a href=\"http://www.macromedia.com/go/getflashplayer\">Adobe Flash Player</a> benötigt und <a href=\"http://www.mozilla.com/firefox/\">im Browser muss Javascript</a> aktiviert sein."
|
86 |
|
87 |
+
#: ../nggfunctions.php:163
|
88 |
+
#: ../nggfunctions.php:641
|
89 |
msgid "[Gallery not found]"
|
90 |
msgstr "[Galerie nicht gefunden]"
|
91 |
|
92 |
+
#: ../nggfunctions.php:448
|
93 |
msgid "[Album not found]"
|
94 |
msgstr "[Album nicht gefunden]"
|
95 |
|
96 |
+
#: ../nggfunctions.php:770
|
97 |
msgid "[SinglePic not found]"
|
98 |
msgstr "[Bild nicht gefunden]"
|
99 |
|
100 |
+
#: ../nggfunctions.php:905
|
101 |
msgid "Related images for"
|
102 |
msgstr "Verwandte Bilder von"
|
103 |
|
226 |
#: ../admin/album.php:142
|
227 |
#: ../admin/edit-thumbnail.php:19
|
228 |
#: ../admin/edit-thumbnail.php:22
|
229 |
+
#: ../admin/manage.php:186
|
230 |
msgid "Cheatin’ uh?"
|
231 |
msgstr "Cheatin’ uh?"
|
232 |
|
239 |
msgstr "Upload fehlgeschlagen!"
|
240 |
|
241 |
#: ../admin/addgallery.php:90
|
242 |
+
#: ../admin/functions.php:938
|
243 |
+
#: ../admin/functions.php:1038
|
244 |
msgid "No gallery selected !"
|
245 |
msgstr "Keine Galerie ausgewählt !"
|
246 |
|
247 |
+
#: ../admin/addgallery.php:162
|
248 |
msgid "Image Files"
|
249 |
msgstr "Bilder"
|
250 |
|
251 |
+
#: ../admin/addgallery.php:183
|
252 |
+
#: ../admin/addgallery.php:211
|
253 |
msgid "remove"
|
254 |
msgstr "Entfernen"
|
255 |
|
256 |
+
#: ../admin/addgallery.php:184
|
257 |
+
#: ../admin/addgallery.php:364
|
258 |
msgid "Browse..."
|
259 |
msgstr "Durchsuche..."
|
260 |
|
261 |
+
#: ../admin/addgallery.php:185
|
262 |
+
#: ../admin/addgallery.php:197
|
263 |
+
#: ../admin/addgallery.php:414
|
264 |
msgid "Upload images"
|
265 |
msgstr "Bilder hochladen"
|
266 |
|
267 |
+
#: ../admin/addgallery.php:274
|
268 |
+
#: ../admin/addgallery.php:380
|
269 |
msgid "Upload Images"
|
270 |
msgstr "Bilder hochladen"
|
271 |
|
272 |
+
#: ../admin/addgallery.php:277
|
273 |
+
#: ../admin/addgallery.php:294
|
274 |
+
#: ../admin/manage-galleries.php:119
|
275 |
+
#: ../admin/manage-galleries.php:156
|
276 |
msgid "Add new gallery"
|
277 |
msgstr "Neue Galerie erstellen"
|
278 |
|
279 |
+
#: ../admin/addgallery.php:280
|
280 |
+
#: ../admin/addgallery.php:316
|
281 |
msgid "Upload a Zip-File"
|
282 |
msgstr "Zip-Datei hochladen"
|
283 |
|
284 |
+
#: ../admin/addgallery.php:283
|
285 |
+
#: ../admin/addgallery.php:358
|
286 |
msgid "Import image folder"
|
287 |
msgstr "Bilder-Verzeichnis importieren"
|
288 |
|
289 |
+
#: ../admin/addgallery.php:299
|
290 |
+
#: ../admin/manage-galleries.php:279
|
291 |
msgid "New Gallery"
|
292 |
msgstr "Neue Galerie"
|
293 |
|
294 |
+
#: ../admin/addgallery.php:302
|
295 |
+
#: ../admin/manage-galleries.php:281
|
296 |
msgid "Create a new , empty gallery below the folder"
|
297 |
msgstr "Erstelle eine neue, leere Galerie unter dem Verzeichnis"
|
298 |
|
299 |
+
#: ../admin/addgallery.php:304
|
300 |
+
#: ../admin/manage-galleries.php:283
|
301 |
msgid "Allowed characters for file and folder names are"
|
302 |
msgstr "Erlaubte Zeichen für die Datei- und Verzeichnisnamen sind"
|
303 |
|
304 |
+
#: ../admin/addgallery.php:308
|
305 |
msgid "Add gallery"
|
306 |
msgstr "Galerie hinzufügen"
|
307 |
|
308 |
+
#: ../admin/addgallery.php:321
|
309 |
msgid "Select Zip-File"
|
310 |
msgstr "Wähle Zip-Datei"
|
311 |
|
312 |
+
#: ../admin/addgallery.php:323
|
313 |
msgid "Upload a zip file with images"
|
314 |
msgstr "Lade eine Zip-Datei mit Bildern hoch"
|
315 |
|
316 |
+
#: ../admin/addgallery.php:327
|
317 |
msgid "or enter a Zip-File URL"
|
318 |
msgstr "oder gib eine URL zur ZIP-Datei an"
|
319 |
|
320 |
+
#: ../admin/addgallery.php:329
|
321 |
msgid "Import a zip file with images from a url"
|
322 |
msgstr "Lade eine Zip-Datei mit Bildern über ein URL hoch"
|
323 |
|
324 |
+
#: ../admin/addgallery.php:333
|
325 |
+
#: ../admin/addgallery.php:389
|
326 |
msgid "in to"
|
327 |
msgstr "in"
|
328 |
|
329 |
+
#: ../admin/addgallery.php:335
|
330 |
msgid "a new gallery"
|
331 |
msgstr "eine neue Galerie"
|
332 |
|
333 |
+
#: ../admin/addgallery.php:346
|
334 |
msgid "Note : The upload limit on your server is "
|
335 |
msgstr "Hinweis : Das Upload-Limit auf dem Server beträgt "
|
336 |
|
337 |
+
#: ../admin/addgallery.php:350
|
338 |
msgid "Start upload"
|
339 |
msgstr "Upload starten"
|
340 |
|
341 |
+
#: ../admin/addgallery.php:363
|
342 |
msgid "Import from Server path:"
|
343 |
msgstr "Importieren aus Server-Pfad:"
|
344 |
|
345 |
+
#: ../admin/addgallery.php:366
|
346 |
msgid "Note : Change the default path in the gallery settings"
|
347 |
msgstr "Hinweis : Der Default-Pfad kann in den Einstellungen angepasst werden"
|
348 |
|
349 |
+
#: ../admin/addgallery.php:368
|
350 |
msgid " Please note : For safe-mode = ON you need to add the subfolder thumbs manually"
|
351 |
msgstr "Achtung : Da der Safe-Mode (PHP.INI) eingeschaltet ist, mußt Du das Unterverzeichnis für die Vorschaubilder (\"thumbs\") manuell (per FTP) anlegen"
|
352 |
|
353 |
+
#: ../admin/addgallery.php:371
|
354 |
msgid "Import folder"
|
355 |
msgstr "Verzeichnis importieren"
|
356 |
|
357 |
+
#: ../admin/addgallery.php:385
|
358 |
msgid "Upload image"
|
359 |
msgstr "Bild hochladen"
|
360 |
|
361 |
+
#: ../admin/addgallery.php:391
|
362 |
msgid "Choose gallery"
|
363 |
msgstr "Wähle Galerie"
|
364 |
|
365 |
+
#: ../admin/addgallery.php:410
|
366 |
msgid "The batch upload requires Adobe Flash 10, disable it if you have problems"
|
367 |
msgstr "Das Batch-Upload benötigt Adbode Flash 10, wenn es Probleme gibt deaktiviere es besser."
|
368 |
|
369 |
+
#: ../admin/addgallery.php:410
|
370 |
msgid "Disable flash upload"
|
371 |
msgstr "Deaktiviere Batch-Upload"
|
372 |
|
373 |
+
#: ../admin/addgallery.php:412
|
374 |
msgid "Upload multiple files at once by ctrl/shift-selecting in dialog"
|
375 |
msgstr "Wähle im Dialog mit Ctrl/Shift mehrere Bilder gleichzeitig aus."
|
376 |
|
377 |
+
#: ../admin/addgallery.php:412
|
378 |
msgid "Enable flash based upload"
|
379 |
msgstr "Aktiviere Flash Batch Upload"
|
380 |
|
381 |
+
#: ../admin/admin.php:34
|
382 |
+
#: ../admin/admin.php:60
|
383 |
+
#: ../admin/admin.php:295
|
384 |
+
#: ../admin/admin.php:373
|
385 |
#: ../admin/functions.php:178
|
386 |
+
#: ../admin/manage-galleries.php:127
|
387 |
+
#: ../admin/manage-galleries.php:407
|
388 |
#: ../admin/manage-images.php:239
|
389 |
msgid "Gallery"
|
390 |
msgid_plural "Galleries"
|
391 |
msgstr[0] "Galerie"
|
392 |
msgstr[1] "Galerien"
|
393 |
|
394 |
+
#: ../admin/admin.php:36
|
395 |
msgid "Add Gallery / Images"
|
396 |
msgstr "Galerie / Bilder hinzufügen"
|
397 |
|
398 |
+
#: ../admin/admin.php:37
|
399 |
msgid "Manage Gallery"
|
400 |
msgstr "Galerie verwalten"
|
401 |
|
402 |
+
#: ../admin/admin.php:38
|
403 |
msgid "Album"
|
404 |
msgid_plural "Albums"
|
405 |
msgstr[0] "Album"
|
406 |
msgstr[1] "Alben"
|
407 |
|
408 |
+
#: ../admin/admin.php:39
|
409 |
msgid "Tags"
|
410 |
msgstr "Stichwörter"
|
411 |
|
412 |
+
#: ../admin/admin.php:40
|
413 |
msgid "Options"
|
414 |
msgstr "Optionen"
|
415 |
|
416 |
+
#: ../admin/admin.php:42
|
417 |
msgid "Style"
|
418 |
msgstr "Style"
|
419 |
|
420 |
+
#: ../admin/admin.php:44
|
421 |
msgid "Roles"
|
422 |
msgstr "Zugriff"
|
423 |
|
424 |
+
#: ../admin/admin.php:45
|
425 |
msgid "About this Gallery"
|
426 |
msgstr "Über diese Galerie"
|
427 |
|
428 |
+
#: ../admin/admin.php:45
|
429 |
msgid "About"
|
430 |
msgstr "Über"
|
431 |
|
432 |
+
#: ../admin/admin.php:48
|
433 |
msgid "NextGEN Gallery"
|
434 |
msgstr "NextGEN Gallery"
|
435 |
|
436 |
+
#: ../admin/admin.php:51
|
437 |
+
#: ../admin/admin.php:62
|
438 |
msgid "Reset / Uninstall"
|
439 |
msgstr "Rücksetzen"
|
440 |
|
441 |
+
#: ../admin/admin.php:61
|
442 |
msgid "Network settings"
|
443 |
msgstr "Netzwerk Einstellungen"
|
444 |
|
445 |
+
#: ../admin/admin.php:101
|
446 |
#, php-format
|
447 |
msgid "Thanks for using this plugin, I hope you are satisfied ! If you would like to support the further development, please consider a <strong><a href=\"%s\">donation</a></strong>! If you still need some help, please post your questions <a href=\"http://wordpress.org/tags/nextgen-gallery?forum_id=10\">here</a> ."
|
448 |
msgstr "Vielen Dank, dass Du dieses Plugin nutzt. Ich hoffe, Du bist soweit zufrieden! Wenn Du die Weiterentwicklung unterstützen möchtest, würde ich mich über eine kleine <strong><a href=\"%s\">Spende</a></strong> freuen! Wenn Du Fragen oder Problem hast, schreib sie doch <a href=\"http://wordpress.org/tags/nextgen-gallery?forum_id=10\">hier</a> ins Forum."
|
449 |
|
450 |
+
#: ../admin/admin.php:104
|
451 |
msgid "OK, hide this message now !"
|
452 |
msgstr "OK, danke für die Info !"
|
453 |
|
454 |
+
#: ../admin/admin.php:189
|
455 |
msgid "You do not have the correct permission"
|
456 |
msgstr "Du hast keine Zugriffsrechte"
|
457 |
|
458 |
+
#: ../admin/admin.php:190
|
459 |
msgid "Unexpected Error"
|
460 |
msgstr "Unerwarteter Fehler"
|
461 |
|
462 |
+
#: ../admin/admin.php:191
|
463 |
msgid "A failure occurred"
|
464 |
msgstr "Ein Fehler ist aufgetreten"
|
465 |
|
466 |
+
#: ../admin/admin.php:299
|
467 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Introduction</a>"
|
468 |
msgstr "<a href=\"http://www.curlyrob.de/curlyrob/?page_id=129\" target=\"_blank\">Einführung</a>"
|
469 |
|
470 |
+
#: ../admin/admin.php:302
|
471 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Setup</a>"
|
472 |
msgstr "<a href=\"http://www.curlyrob.de/curlyrob/?page_id=129\" target=\"_blank\">Setup</a>"
|
473 |
|
474 |
+
#: ../admin/admin.php:305
|
475 |
msgid "<a href=\"http://alexrabe.de/wordpress-plugins/nextgen-gallery/languages/\" target=\"_blank\">Translation by alex rabe</a>"
|
476 |
msgstr "<a href=\"http://alexrabe.de/wordpress-plugins/nextgen-gallery/languages/\" target=\"_blank\">Unterstütze bei der Übersetzung</a>"
|
477 |
|
478 |
+
#: ../admin/admin.php:308
|
479 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Roles / Capabilities</a>"
|
480 |
msgstr "<a href=\"http://www.curlyrob.de/curlyrob/?page_id=129\" target=\"_blank\">Einführung</a>"
|
481 |
|
482 |
+
#: ../admin/admin.php:311
|
483 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Styles</a>"
|
484 |
msgstr "<a href=\"http://www.curlyrob.de/curlyrob/?page_id=129\" target=\"_blank\">Einführung</a>"
|
485 |
|
486 |
+
#: ../admin/admin.php:312
|
487 |
msgid "Templates"
|
488 |
msgstr "Vorlagen"
|
489 |
|
490 |
+
#: ../admin/admin.php:315
|
491 |
+
#: ../admin/admin.php:321
|
492 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Gallery management</a>"
|
493 |
msgstr "<a href=\"http://www.curlyrob.de/curlyrob/?page_id=129\" target=\"_blank\">Einführung</a>"
|
494 |
|
495 |
+
#: ../admin/admin.php:316
|
496 |
msgid "Gallery example"
|
497 |
msgstr "Galerie Beispiel"
|
498 |
|
499 |
+
#: ../admin/admin.php:322
|
500 |
+
#: ../admin/admin.php:332
|
501 |
msgid "Gallery tags"
|
502 |
msgstr "Galerie Stichwörter"
|
503 |
|
504 |
+
#: ../admin/admin.php:325
|
505 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Album management</a>"
|
506 |
msgstr "<a href=\"http://www.curlyrob.de/curlyrob/?page_id=129\" target=\"_blank\">Einführung</a>"
|
507 |
|
508 |
+
#: ../admin/admin.php:326
|
509 |
msgid "Album example"
|
510 |
msgstr "Album Beispiel"
|
511 |
|
512 |
+
#: ../admin/admin.php:327
|
513 |
+
#: ../admin/admin.php:333
|
514 |
msgid "Album tags"
|
515 |
msgstr "Album Stichwörter"
|
516 |
|
517 |
+
#: ../admin/admin.php:330
|
518 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Gallery tags</a>"
|
519 |
msgstr "<a href=\"http://www.curlyrob.de/curlyrob/?page_id=129\" target=\"_blank\">Einführung</a>"
|
520 |
|
521 |
+
#: ../admin/admin.php:331
|
522 |
msgid "Related images"
|
523 |
msgstr "Verwandte Bilder"
|
524 |
|
525 |
+
#: ../admin/admin.php:336
|
526 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-image-management/\" target=\"_blank\">Image management</a>"
|
527 |
msgstr "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-image-management/\" target=\"_blank\">Bilderverwaltung (englisch)</a>"
|
528 |
|
529 |
+
#: ../admin/admin.php:337
|
530 |
msgid "Custom fields"
|
531 |
msgstr "Spezialfelder"
|
532 |
|
533 |
+
#: ../admin/admin.php:342
|
534 |
msgid "Get help with NextGEN Gallery"
|
535 |
msgstr "Weitere Hilfe zu NextGEN Gallery"
|
536 |
|
537 |
+
#: ../admin/admin.php:346
|
538 |
msgid "More Help & Info"
|
539 |
msgstr "Weitere Hilfe & Informationen"
|
540 |
|
541 |
+
#: ../admin/admin.php:348
|
542 |
msgid "<a href=\"http://wordpress.org/tags/nextgen-gallery?forum_id=10\" target=\"_blank\">Support Forums</a>"
|
543 |
msgstr "<a href=\"http://wordpress.org/tags/nextgen-gallery?forum_id=10\" target=\"_blank\">Support Forum (englisch)</a>"
|
544 |
|
545 |
+
#: ../admin/admin.php:349
|
546 |
msgid "FAQ"
|
547 |
msgstr "FAQ (englisch)"
|
548 |
|
549 |
+
#: ../admin/admin.php:350
|
550 |
msgid "Feature request"
|
551 |
msgstr "Wünsch Dir was"
|
552 |
|
553 |
+
#: ../admin/admin.php:351
|
554 |
msgid "Get your language pack"
|
555 |
msgstr "Lade Deine Sprachdatei"
|
556 |
|
557 |
+
#: ../admin/admin.php:352
|
558 |
msgid "Contribute development"
|
559 |
msgstr "Entwicklung helfen"
|
560 |
|
561 |
+
#: ../admin/admin.php:353
|
562 |
msgid "Download latest version"
|
563 |
msgstr "Aktuelle Version downloaden"
|
564 |
|
566 |
msgid "You are not allowed to be here"
|
567 |
msgstr "Keine Zugangsberechtigung"
|
568 |
|
569 |
+
#: ../admin/ajax.php:410
|
570 |
#, php-format
|
571 |
msgid "Could create image with %s x %s pixel"
|
572 |
msgstr "Konnte ein Bild mit %s x %s Pixel erstellen"
|
608 |
msgstr "Album ändern"
|
609 |
|
610 |
#: ../admin/album.php:302
|
611 |
+
#: ../admin/manage-galleries.php:146
|
612 |
+
#: ../admin/manage-images.php:440
|
613 |
msgid "Delete"
|
614 |
msgstr "Lösche"
|
615 |
|
689 |
msgstr "Nicht verlinkt"
|
690 |
|
691 |
#: ../admin/album.php:455
|
692 |
+
#: ../admin/manage-galleries.php:288
|
693 |
+
#: ../admin/manage-galleries.php:317
|
694 |
+
#: ../admin/manage-galleries.php:347
|
695 |
+
#: ../admin/manage-images.php:525
|
696 |
+
#: ../admin/manage-images.php:561
|
697 |
+
#: ../admin/manage-images.php:590
|
698 |
+
#: ../admin/manage-images.php:620
|
699 |
msgid "OK"
|
700 |
msgstr "OK"
|
701 |
|
702 |
#: ../admin/album.php:457
|
703 |
+
#: ../admin/manage-galleries.php:290
|
704 |
+
#: ../admin/manage-galleries.php:319
|
705 |
+
#: ../admin/manage-galleries.php:349
|
706 |
+
#: ../admin/manage-images.php:527
|
707 |
+
#: ../admin/manage-images.php:563
|
708 |
+
#: ../admin/manage-images.php:592
|
709 |
+
#: ../admin/manage-images.php:622
|
710 |
msgid "Cancel"
|
711 |
msgstr "Abbrechen"
|
712 |
|
767 |
|
768 |
#: ../admin/functions.php:76
|
769 |
#: ../admin/functions.php:85
|
770 |
+
#: ../admin/functions.php:897
|
771 |
msgid "Unable to create directory "
|
772 |
msgstr "Kann Verzeichnis nicht erstellen "
|
773 |
|
812 |
msgid "successfully created!"
|
813 |
msgstr "erfolgreich erstellt!"
|
814 |
|
815 |
+
#: ../admin/functions.php:212
|
816 |
+
#: ../admin/functions.php:1014
|
817 |
+
#: ../admin/manage-galleries.php:81
|
818 |
+
#: ../admin/manage-galleries.php:148
|
819 |
+
#: ../admin/manage-images.php:203
|
820 |
+
#: ../admin/manage-images.php:334
|
821 |
+
#: ../admin/manage.php:223
|
822 |
+
#: ../admin/manage.php:299
|
823 |
msgid "Create new thumbnails"
|
824 |
msgstr "Neue Vorschaubilder erstellen"
|
825 |
|
826 |
+
#: ../admin/functions.php:215
|
827 |
msgid " picture(s) successfully added"
|
828 |
msgstr " Bild(er) erfolgreich hinzugefügt"
|
829 |
|
830 |
+
#: ../admin/functions.php:265
|
831 |
+
#: ../admin/functions.php:345
|
832 |
+
#: ../admin/functions.php:400
|
833 |
+
#: ../admin/functions.php:497
|
834 |
+
#: ../admin/functions.php:551
|
835 |
msgid "Object didn't contain correct data"
|
836 |
msgstr "Das Objekt enhält nicht die notwendigen Daten"
|
837 |
|
838 |
+
#: ../admin/functions.php:273
|
839 |
msgid " is not writeable "
|
840 |
msgstr "ist schreibgeschützt !"
|
841 |
|
842 |
+
#: ../admin/functions.php:355
|
843 |
+
#: ../admin/functions.php:403
|
844 |
+
#: ../admin/functions.php:503
|
845 |
+
#: ../admin/functions.php:554
|
846 |
msgid " is not writeable"
|
847 |
msgstr "ist schreibgeschützt !"
|
848 |
|
849 |
+
#: ../admin/functions.php:557
|
850 |
msgid "File do not exists"
|
851 |
msgstr "Datei existiert nicht"
|
852 |
|
853 |
+
#: ../admin/functions.php:561
|
854 |
msgid "Couldn't restore original image"
|
855 |
msgstr "Konnte Originalbild nicht wiederherstellen"
|
856 |
|
857 |
+
#: ../admin/functions.php:677
|
858 |
msgid "(Error : Couldn't not update data base)"
|
859 |
msgstr "(Fehler : Konnte Datenbank nicht updaten)"
|
860 |
|
861 |
+
#: ../admin/functions.php:684
|
862 |
msgid "(Error : Couldn't not update meta data)"
|
863 |
msgstr "(Fehler : Konnte Metadaten nicht speichern)"
|
864 |
|
865 |
+
#: ../admin/functions.php:693
|
866 |
msgid "(Error : Couldn't not find image)"
|
867 |
msgstr "(Fehler : Konnte das Bild nicht finden)"
|
868 |
|
869 |
+
#: ../admin/functions.php:831
|
870 |
msgid "No valid URL path "
|
871 |
msgstr "Kein gültiger URL-Pfad"
|
872 |
|
873 |
+
#: ../admin/functions.php:847
|
874 |
msgid "Import via cURL failed."
|
875 |
msgstr "Import via cURL abgebrochen"
|
876 |
|
877 |
+
#: ../admin/functions.php:864
|
878 |
msgid "Uploaded file was no or a faulty zip file ! The server recognized : "
|
879 |
msgstr "Die hochgeladene Datei war keine korrekte Zip-Datei. Servermeldung :"
|
880 |
|
881 |
+
#: ../admin/functions.php:881
|
882 |
msgid "Could not get a valid foldername"
|
883 |
msgstr "Konnte keinen gültigen Verzeichnisnamen finden"
|
884 |
|
885 |
+
#: ../admin/functions.php:892
|
886 |
#, php-format
|
887 |
msgid "Unable to create directory %s. Is its parent directory writable by the server?"
|
888 |
msgstr "Kann das Verzeichnis %s nicht erstellen. Ist das Hauptverzeichnis vielleicht schreibgeschützt ?"
|
889 |
|
890 |
+
#: ../admin/functions.php:907
|
891 |
msgid "Zip-File successfully unpacked"
|
892 |
msgstr "Zip-Datei erfolgreich entpackt"
|
893 |
|
894 |
+
#: ../admin/functions.php:946
|
895 |
+
#: ../admin/functions.php:1063
|
896 |
msgid "Failure in database, no gallery path set !"
|
897 |
msgstr "Datenbankfehler! Kein Galerie-Pfad gesetzt !"
|
898 |
|
899 |
+
#: ../admin/functions.php:970
|
900 |
+
#: ../admin/functions.php:1057
|
901 |
msgid "is no valid image file!"
|
902 |
msgstr "ist keine zulässige Bilddatei !"
|
903 |
|
904 |
+
#: ../admin/functions.php:984
|
905 |
+
#: ../admin/functions.php:1183
|
906 |
+
#: ../admin/functions.php:1260
|
907 |
#, php-format
|
908 |
msgid "Unable to write to directory %s. Is this directory writable by the server?"
|
909 |
msgstr "Kann das Verzeichnis %s nicht erstellen. Ist das Hauptverzeichnis vielleicht schreibgeschützt ?"
|
910 |
|
911 |
+
#: ../admin/functions.php:991
|
912 |
+
#: ../admin/functions.php:1080
|
913 |
msgid "Error, the file could not be moved to : "
|
914 |
msgstr "Fehler: Diese Datei kann nicht verschoben werden zu :"
|
915 |
|
916 |
+
#: ../admin/functions.php:996
|
917 |
+
#: ../admin/functions.php:1084
|
918 |
msgid "Error, the file permissions could not be set"
|
919 |
msgstr "Fehler: Die Berechtigungen für diese Datei können nicht gesetzt werden"
|
920 |
|
921 |
+
#: ../admin/functions.php:1019
|
922 |
msgid " Image(s) successfully added"
|
923 |
msgstr " Bild(er) erfolgreich hinzugefügt"
|
924 |
|
925 |
+
#: ../admin/functions.php:1046
|
926 |
msgid "Invalid upload. Error Code : "
|
927 |
msgstr "Ungültiger Upload. Fehler Code :"
|
928 |
|
929 |
+
#: ../admin/functions.php:1123
|
930 |
#, php-format
|
931 |
msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
|
932 |
msgstr "SAFE MODE Einschränkungen ist aktiv. Du musst das Verzeichnis <strong>%s</strong> manuell anlegen."
|
933 |
|
934 |
+
#: ../admin/functions.php:1124
|
935 |
#, php-format
|
936 |
msgid "When safe_mode is on, PHP checks to see if the owner (%s) of the current script matches the owner (%s) of the file to be operated on by a file function or its directory"
|
937 |
msgstr "Wenn der Safe-Mode eingeschaltet ist, überprüft PHP, ob der Besitzer (%s) des Skript mit dem Besitzer (%s) der Datei/Verzeichnis übereinstimmt."
|
938 |
|
939 |
+
#: ../admin/functions.php:1177
|
940 |
+
#: ../admin/functions.php:1254
|
941 |
msgid "The destination gallery does not exist"
|
942 |
msgstr "Die ausgewählte Galerie existiert nicht"
|
943 |
|
944 |
+
#: ../admin/functions.php:1208
|
945 |
#, php-format
|
946 |
msgid "Failed to move image %1$s to %2$s"
|
947 |
msgstr "Konnte das Bild %1$s nicht nach %2$s verschieben"
|
948 |
|
949 |
+
#: ../admin/functions.php:1228
|
950 |
#, php-format
|
951 |
msgid "Moved %1$s picture(s) to gallery : %2$s ."
|
952 |
msgstr " %1$s Bild(er) in Galerie : %2$s verschoben."
|
953 |
|
954 |
+
#: ../admin/functions.php:1287
|
955 |
#, php-format
|
956 |
msgid "Failed to copy image %1$s to %2$s"
|
957 |
msgstr "Konnte das Bild %1$s nicht nach %2$s kopieren"
|
958 |
|
959 |
+
#: ../admin/functions.php:1301
|
960 |
#, php-format
|
961 |
msgid "Failed to copy database row for picture %s"
|
962 |
msgstr "Fehler bei der Datenbank-Operation für Bild %s"
|
963 |
|
964 |
+
#: ../admin/functions.php:1313
|
965 |
#, php-format
|
966 |
msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) » The file already existed in the destination gallery."
|
967 |
msgstr "Bild %1$s (%2$s) als Bild %3$s (%4$s) kopiert » Die Datei existierte bereits."
|
968 |
|
969 |
+
#: ../admin/functions.php:1316
|
970 |
#, php-format
|
971 |
msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
|
972 |
msgstr "Bild %1$s (%2$s) kopiert als Bild %3$s (%4$s)"
|
973 |
|
974 |
+
#: ../admin/functions.php:1325
|
975 |
#, php-format
|
976 |
msgid "Copied %1$s picture(s) to gallery: %2$s ."
|
977 |
msgstr "Kopiere %1$s Bild(er) in die Galerie : %2$s ."
|
978 |
|
979 |
+
#: ../admin/functions.php:1433
|
980 |
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
|
981 |
msgstr "Die Datei überschreitet die erlaubte Grösse (upload_max_filesize) in der php.ini"
|
982 |
|
983 |
+
#: ../admin/functions.php:1436
|
984 |
msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"
|
985 |
msgstr "Die Datei ist zu gross"
|
986 |
|
987 |
+
#: ../admin/functions.php:1439
|
988 |
msgid "The uploaded file was only partially uploaded"
|
989 |
msgstr "Die Datei wurde nur teilweise hochgeladen"
|
990 |
|
991 |
+
#: ../admin/functions.php:1442
|
992 |
msgid "No file was uploaded"
|
993 |
msgstr "Keinen Datei wurde geladen"
|
994 |
|
995 |
+
#: ../admin/functions.php:1445
|
996 |
msgid "Missing a temporary folder"
|
997 |
msgstr "Konnte temporäres Verzeichnis nicht finden"
|
998 |
|
999 |
+
#: ../admin/functions.php:1448
|
1000 |
msgid "Failed to write file to disk"
|
1001 |
msgstr "Konnte Datei nicht speichern"
|
1002 |
|
1003 |
+
#: ../admin/functions.php:1451
|
1004 |
msgid "File upload stopped by extension"
|
1005 |
msgstr "Upload dieser Dateierweiterung nicht erlaubt"
|
1006 |
|
1007 |
+
#: ../admin/functions.php:1454
|
1008 |
msgid "Unknown upload error"
|
1009 |
msgstr "Unbekannter Uploadfehler"
|
1010 |
|
1016 |
msgid "NextGEN Gallery : Tables could not created, please check your database settings"
|
1017 |
msgstr "NextGEN Gallery : Tabellen konnten nicht erstellt werden, überprüfe Deine Datenbank"
|
1018 |
|
1019 |
+
#: ../admin/install.php:171
|
1020 |
msgid "[Show as slideshow]"
|
1021 |
msgstr "[Zeige als Diashow]"
|
1022 |
|
1023 |
+
#: ../admin/install.php:172
|
1024 |
msgid "[Show picture list]"
|
1025 |
msgstr "[Zeige Bilder-Liste]"
|
1026 |
|
1027 |
+
#: ../admin/manage-galleries.php:69
|
1028 |
+
#: ../admin/manage-images.php:171
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1029 |
msgid "No images selected"
|
1030 |
msgstr "Keine Bilder ausgewählt"
|
1031 |
|
1032 |
+
#: ../admin/manage-galleries.php:77
|
1033 |
+
#: ../admin/manage-galleries.php:149
|
1034 |
+
#: ../admin/manage-images.php:199
|
1035 |
+
#: ../admin/manage-images.php:335
|
1036 |
+
#: ../admin/manage.php:207
|
1037 |
+
#: ../admin/manage.php:285
|
1038 |
msgid "Resize images"
|
1039 |
msgstr "Bilder verkleinern"
|
1040 |
|
1041 |
+
#: ../admin/manage-galleries.php:86
|
1042 |
#, php-format
|
1043 |
msgid ""
|
1044 |
"You are about to start the bulk edit for %s galleries \n"
|
1049 |
" \n"
|
1050 |
" 'Abbrechen' um zu stoppen, 'OK' um die Bearbeitung durchzuführen."
|
1051 |
|
1052 |
+
#: ../admin/manage-galleries.php:130
|
1053 |
+
#: ../admin/manage-galleries.php:133
|
1054 |
#: ../admin/manage-images.php:225
|
1055 |
#: ../admin/manage-images.php:228
|
1056 |
msgid "Search Images"
|
1057 |
msgstr "Suche Bilder"
|
1058 |
|
1059 |
+
#: ../admin/manage-galleries.php:145
|
1060 |
+
#: ../admin/manage-images.php:332
|
1061 |
msgid "Bulk actions"
|
1062 |
msgstr "Aktion wählen"
|
1063 |
|
1064 |
+
#: ../admin/manage-galleries.php:147
|
1065 |
+
#: ../admin/manage-images.php:333
|
1066 |
+
#: ../admin/manage.php:140
|
1067 |
+
#: ../admin/manage.php:249
|
1068 |
msgid "Set watermark"
|
1069 |
msgstr "Wasserzeichen setzen"
|
1070 |
|
1071 |
+
#: ../admin/manage-galleries.php:150
|
1072 |
+
#: ../admin/manage-images.php:338
|
1073 |
+
#: ../admin/manage.php:145
|
1074 |
+
#: ../admin/manage.php:269
|
1075 |
msgid "Import metadata"
|
1076 |
msgstr "Metadaten importieren"
|
1077 |
|
1078 |
+
#: ../admin/manage-galleries.php:151
|
1079 |
+
#: ../admin/manage-images.php:336
|
1080 |
+
#: ../admin/manage.php:135
|
1081 |
+
#: ../admin/manage.php:246
|
1082 |
msgid "Recover from backup"
|
1083 |
msgstr "Original wiederherstellen"
|
1084 |
|
1085 |
+
#: ../admin/manage-galleries.php:153
|
1086 |
+
#: ../admin/manage-images.php:347
|
1087 |
msgid "Apply"
|
1088 |
msgstr "Übernehmen"
|
1089 |
|
1090 |
+
#: ../admin/manage-galleries.php:220
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1091 |
msgid "Edit"
|
1092 |
msgstr "Bearbeiten"
|
1093 |
|
1094 |
+
#: ../admin/manage-galleries.php:261
|
1095 |
+
#: ../admin/manage-images.php:498
|
1096 |
msgid "No entries found"
|
1097 |
msgstr "Keine Einträge gefunden"
|
1098 |
|
1099 |
+
#: ../admin/manage-galleries.php:308
|
1100 |
+
#: ../admin/manage-images.php:581
|
1101 |
msgid "Resize Images to"
|
1102 |
msgstr "Verkleiner Bilder auf"
|
1103 |
|
1104 |
+
#: ../admin/manage-galleries.php:312
|
1105 |
+
#: ../admin/manage-images.php:585
|
1106 |
msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
|
1107 |
msgstr "Breite x Höhe (in Pixel). Das Seitenverhältnis wird berücksichtigt."
|
1108 |
|
1109 |
+
#: ../admin/manage-galleries.php:336
|
1110 |
+
#: ../admin/manage-images.php:609
|
1111 |
msgid "Width x height (in pixel)"
|
1112 |
msgstr "Breite x Höhe (in Pixel)"
|
1113 |
|
1114 |
+
#: ../admin/manage-galleries.php:338
|
1115 |
+
#: ../admin/manage-images.php:611
|
1116 |
msgid "These values are maximum values "
|
1117 |
msgstr "Diese Angaben sind maximale Angaben."
|
1118 |
|
1119 |
+
#: ../admin/manage-galleries.php:341
|
1120 |
+
#: ../admin/manage-images.php:614
|
1121 |
msgid "Set fix dimension"
|
1122 |
msgstr "Setze feste Größe"
|
1123 |
|
1124 |
+
#: ../admin/manage-galleries.php:343
|
1125 |
+
#: ../admin/manage-images.php:616
|
1126 |
msgid "Ignore the aspect ratio, no portrait thumbnails"
|
1127 |
msgstr "Ignoriere Bildseitenverhältnis"
|
1128 |
|
1129 |
+
#: ../admin/manage-galleries.php:406
|
1130 |
+
#: ../admin/manage-images.php:684
|
1131 |
msgid "ID"
|
1132 |
msgstr "ID"
|
1133 |
|
1134 |
+
#: ../admin/manage-galleries.php:408
|
1135 |
#: ../admin/manage-images.php:266
|
1136 |
+
#: ../admin/manage-images.php:687
|
1137 |
msgid "Description"
|
1138 |
msgstr "Beschreibung"
|
1139 |
|
1140 |
+
#: ../admin/manage-galleries.php:409
|
1141 |
#: ../admin/manage-images.php:287
|
1142 |
msgid "Author"
|
1143 |
msgstr "Autor"
|
1144 |
|
1145 |
+
#: ../admin/manage-galleries.php:410
|
1146 |
msgid "Page ID"
|
1147 |
msgstr "Seiten-ID"
|
1148 |
|
1149 |
+
#: ../admin/manage-galleries.php:411
|
1150 |
msgid "Image"
|
1151 |
msgid_plural "Images"
|
1152 |
msgstr[0] "Bild"
|
1153 |
msgstr[1] "Bilder"
|
1154 |
|
1155 |
+
#: ../admin/manage-images.php:34
|
1156 |
msgid "Gallery not found."
|
1157 |
msgstr "Galerie nicht gefunden"
|
1158 |
|
1159 |
+
#: ../admin/manage-images.php:40
|
1160 |
msgid "Sorry, you have no access here"
|
1161 |
msgstr "Sorry, Du hast nicht genügend Rechte"
|
1162 |
|
1163 |
+
#: ../admin/manage-images.php:179
|
1164 |
msgid "Copy image to..."
|
1165 |
msgstr "Kopiere nach..."
|
1166 |
|
1167 |
+
#: ../admin/manage-images.php:183
|
1168 |
msgid "Move image to..."
|
1169 |
msgstr "Verschiebe nach..."
|
1170 |
|
1171 |
+
#: ../admin/manage-images.php:187
|
1172 |
msgid "Add new tags"
|
1173 |
msgstr "Stichwörter hinzufügen"
|
1174 |
|
1175 |
+
#: ../admin/manage-images.php:191
|
1176 |
+
#: ../admin/manage-images.php:344
|
1177 |
msgid "Delete tags"
|
1178 |
msgstr "Stichwörter löschen"
|
1179 |
|
1180 |
+
#: ../admin/manage-images.php:195
|
1181 |
msgid "Overwrite"
|
1182 |
msgstr "Überschreiben"
|
1183 |
|
1184 |
+
#: ../admin/manage-images.php:208
|
1185 |
#, php-format
|
1186 |
msgid ""
|
1187 |
"You are about to start the bulk edit for %s images \n"
|
1234 |
msgstr "Überprüfe Verzeichnis nach neuen Bildern"
|
1235 |
|
1236 |
#: ../admin/manage-images.php:318
|
1237 |
+
#: ../admin/manage-images.php:353
|
1238 |
+
#: ../admin/manage-images.php:505
|
1239 |
msgid "Save Changes"
|
1240 |
msgstr "Änderungen speichern"
|
1241 |
|
1242 |
+
#: ../admin/manage-images.php:337
|
1243 |
msgid "Delete images"
|
1244 |
msgstr "Bilder löschen"
|
1245 |
|
1246 |
+
#: ../admin/manage-images.php:339
|
1247 |
msgid "Rotate images clockwise"
|
1248 |
msgstr "Rechts drehen"
|
1249 |
|
1250 |
+
#: ../admin/manage-images.php:340
|
1251 |
msgid "Rotate images counter-clockwise"
|
1252 |
msgstr "Links drehen"
|
1253 |
|
1254 |
+
#: ../admin/manage-images.php:341
|
1255 |
msgid "Copy to..."
|
1256 |
msgstr "Kopiere nach..."
|
1257 |
|
1258 |
+
#: ../admin/manage-images.php:342
|
1259 |
msgid "Move to..."
|
1260 |
msgstr "Verschiebe nach..."
|
1261 |
|
1262 |
+
#: ../admin/manage-images.php:343
|
1263 |
msgid "Add tags"
|
1264 |
msgstr "Stichwörter hinzufügen"
|
1265 |
|
1266 |
+
#: ../admin/manage-images.php:345
|
1267 |
msgid "Overwrite tags"
|
1268 |
msgstr "Stichwörter überschreiben"
|
1269 |
|
1270 |
+
#: ../admin/manage-images.php:350
|
1271 |
msgid "Sort gallery"
|
1272 |
msgstr "Sortiere Bilder"
|
1273 |
|
1274 |
+
#: ../admin/manage-images.php:426
|
1275 |
msgid "pixel"
|
1276 |
msgstr "pixel"
|
1277 |
|
1278 |
+
#: ../admin/manage-images.php:432
|
1279 |
#, php-format
|
1280 |
msgid "View \"%s\""
|
1281 |
msgstr "Anzeigen \"%s\""
|
1282 |
|
1283 |
+
#: ../admin/manage-images.php:432
|
1284 |
msgid "View"
|
1285 |
msgstr "Ansehen"
|
1286 |
|
1287 |
+
#: ../admin/manage-images.php:433
|
1288 |
msgid "Show Meta data"
|
1289 |
msgstr "Zeige Metadaten"
|
1290 |
|
1291 |
+
#: ../admin/manage-images.php:433
|
1292 |
msgid "Meta"
|
1293 |
msgstr "Meta"
|
1294 |
|
1295 |
+
#: ../admin/manage-images.php:434
|
1296 |
msgid "Customize thumbnail"
|
1297 |
msgstr "Thumbnails anpassen"
|
1298 |
|
1299 |
+
#: ../admin/manage-images.php:434
|
1300 |
msgid "Edit thumb"
|
1301 |
msgstr "Thumbnail ändern"
|
1302 |
|
1303 |
+
#: ../admin/manage-images.php:435
|
1304 |
msgid "Rotate"
|
1305 |
msgstr "Drehen"
|
1306 |
|
1307 |
+
#: ../admin/manage-images.php:437
|
1308 |
msgid "Publish this image"
|
1309 |
msgstr "Bild veröffentlichen"
|
1310 |
|
1311 |
+
#: ../admin/manage-images.php:437
|
1312 |
msgid "Publish"
|
1313 |
msgstr "Veröffentlichen"
|
1314 |
|
1315 |
+
#: ../admin/manage-images.php:439
|
1316 |
msgid "Recover"
|
1317 |
msgstr "Rücksetzen"
|
1318 |
|
1319 |
+
#: ../admin/manage-images.php:439
|
1320 |
#, php-format
|
1321 |
msgid "Recover \"%s\" ?"
|
1322 |
msgstr " \"%s\" wiederherstellen ?"
|
1323 |
|
1324 |
+
#: ../admin/manage-images.php:440
|
1325 |
#, php-format
|
1326 |
msgid "Delete \"%s\" ?"
|
1327 |
msgstr "Lösche \"%s\" ?"
|
1328 |
|
1329 |
+
#: ../admin/manage-images.php:521
|
1330 |
msgid "Enter the tags"
|
1331 |
msgstr "Stichwörter angeben"
|
1332 |
|
1333 |
+
#: ../admin/manage-images.php:545
|
1334 |
msgid "Select the destination gallery:"
|
1335 |
msgstr "Galerie auswählen:"
|
1336 |
|
1337 |
+
#: ../admin/manage-images.php:685
|
1338 |
msgid "Thumbnail"
|
1339 |
msgstr "Thumbnail"
|
1340 |
|
1341 |
+
#: ../admin/manage-images.php:686
|
1342 |
#: ../admin/manage-sort.php:77
|
1343 |
msgid "Filename"
|
1344 |
msgstr "Dateiname"
|
1345 |
|
1346 |
+
#: ../admin/manage-images.php:687
|
1347 |
msgid "Alt & Title Text"
|
1348 |
msgstr "Alt & Titel Text"
|
1349 |
|
1350 |
+
#: ../admin/manage-images.php:688
|
1351 |
msgid "Tags (comma separated list)"
|
1352 |
msgstr "Stichwörter (Tags)"
|
1353 |
|
1354 |
+
#: ../admin/manage-images.php:689
|
1355 |
msgid "exclude"
|
1356 |
msgstr "ausschließen"
|
1357 |
|
1399 |
msgid "Descending"
|
1400 |
msgstr "Absteigend"
|
1401 |
|
1402 |
+
#: ../admin/manage.php:84
|
1403 |
msgid "Picture"
|
1404 |
msgstr "Bild"
|
1405 |
|
1406 |
+
#: ../admin/manage.php:84
|
1407 |
msgid "deleted successfully"
|
1408 |
msgstr "erfolgreich gelöscht"
|
1409 |
|
1410 |
+
#: ../admin/manage.php:99
|
1411 |
+
#: ../admin/manage.php:108
|
1412 |
msgid "Operation successful. Please clear your browser cache."
|
1413 |
msgstr "Thumbnails erfolgreich erstellt. Bitte Browser-Cache löschen."
|
1414 |
|
1415 |
+
#: ../admin/manage.php:175
|
1416 |
msgid "Gallery deleted successfully "
|
1417 |
msgstr "Galerie gelöscht"
|
1418 |
|
1419 |
+
#: ../admin/manage.php:240
|
1420 |
+
#: ../admin/manage.php:243
|
1421 |
msgid "Rotate images"
|
1422 |
msgstr "Bild drehen"
|
1423 |
|
1424 |
+
#: ../admin/manage.php:265
|
1425 |
msgid "Pictures deleted successfully "
|
1426 |
msgstr "Bilder erfolgreich gelöscht"
|
1427 |
|
1428 |
+
#: ../admin/manage.php:361
|
1429 |
msgid "Tags changed"
|
1430 |
msgstr "Stichwörter geändert"
|
1431 |
|
1432 |
+
#: ../admin/manage.php:397
|
1433 |
msgid "Update successful"
|
1434 |
msgstr "Aktualisierung erfolgreich"
|
1435 |
|
1436 |
+
#: ../admin/manage.php:432
|
1437 |
msgid "New gallery page ID"
|
1438 |
msgstr "Neue Galerie Seiten ID"
|
1439 |
|
1440 |
+
#: ../admin/manage.php:432
|
1441 |
msgid "created"
|
1442 |
msgstr "erstellt"
|
1443 |
|
1444 |
+
#: ../admin/manage.php:468
|
1445 |
msgid "Published a new post"
|
1446 |
msgstr "Verföffentliche einen neuen Beitrag"
|
1447 |
|
1448 |
+
#: ../admin/manage.php:572
|
1449 |
+
#, php-format
|
1450 |
+
msgid "1 item"
|
1451 |
+
msgid_plural "%s items"
|
1452 |
+
msgstr[0] "1 Element"
|
1453 |
+
msgstr[1] "%s Elemente"
|
1454 |
+
|
1455 |
#: ../admin/media-upload.php:166
|
1456 |
msgid "No gallery"
|
1457 |
msgstr "Keine Galerie"
|
1479 |
|
1480 |
#: ../admin/media-upload.php:232
|
1481 |
#: ../admin/publish.php:57
|
1482 |
+
#: ../admin/settings.php:484
|
1483 |
msgid "None"
|
1484 |
msgstr "Keiner"
|
1485 |
|
1502 |
msgstr "Rechts"
|
1503 |
|
1504 |
#: ../admin/media-upload.php:242
|
1505 |
+
#: ../admin/settings.php:591
|
1506 |
msgid "Size"
|
1507 |
msgstr "Größe"
|
1508 |
|
1572 |
msgstr "Zeig Dich für diese Arbeit per PayPal dankbar"
|
1573 |
|
1574 |
#: ../admin/overview.php:116
|
|
|
|
|
|
|
|
|
1575 |
msgid "Help translating it."
|
1576 |
msgstr "Hilf das Plugin zu übersetzen."
|
1577 |
|
1578 |
+
#: ../admin/overview.php:253
|
1579 |
msgid "Running..."
|
1580 |
msgstr "Läuft... Bitte warten"
|
1581 |
|
1582 |
+
#: ../admin/overview.php:300
|
1583 |
msgid "Check plugin/theme conflict"
|
1584 |
msgstr "Plugin/Theme Konflikt prüfen"
|
1585 |
|
1586 |
+
#: ../admin/overview.php:301
|
1587 |
+
#: ../admin/overview.php:307
|
1588 |
+
#: ../admin/overview.php:313
|
1589 |
msgid "Not tested"
|
1590 |
msgstr "Nicht getested"
|
1591 |
|
1592 |
+
#: ../admin/overview.php:302
|
1593 |
msgid "No conflict could be detected"
|
1594 |
msgstr "Es konnte kein Konflikt festgestellt werden"
|
1595 |
|
1596 |
+
#: ../admin/overview.php:303
|
1597 |
msgid "Test failed, disable other plugins & switch to default theme"
|
1598 |
msgstr "Test fehlgeschlagen, deaktiviere andere Plugins & aktiviere das Default Theme"
|
1599 |
|
1600 |
+
#: ../admin/overview.php:306
|
1601 |
msgid "Test image function"
|
1602 |
msgstr "Teste Bildbearbeitung"
|
1603 |
|
1604 |
+
#: ../admin/overview.php:308
|
1605 |
msgid "The plugin could create images"
|
1606 |
msgstr "Es konnte ein Bild erstellt werden"
|
1607 |
|
1608 |
+
#: ../admin/overview.php:309
|
1609 |
msgid "Couldn't create image, check your memory limit"
|
1610 |
msgstr "Konne kein Bild erzeugen, überprüfe dein Speicherlimit (Server)"
|
1611 |
|
1612 |
+
#: ../admin/overview.php:312
|
1613 |
msgid "Check theme compatibility"
|
1614 |
msgstr "Theme Kompatibilität prüfen"
|
1615 |
|
1616 |
+
#: ../admin/overview.php:314
|
1617 |
msgid "Your theme should work fine with NextGEN Gallery"
|
1618 |
msgstr "Dein Theme sollte mit NextGEN Gallery funktionieren"
|
1619 |
|
1620 |
+
#: ../admin/overview.php:315
|
1621 |
msgid "wp_head()/wp_footer() is missing, contact the theme author"
|
1622 |
msgstr "wp_head()/wp_footer() wurde nicht gefunden, kontaktiere den Theme Author"
|
1623 |
|
1624 |
+
#: ../admin/overview.php:319
|
1625 |
msgid "Check plugin"
|
1626 |
msgstr "Plugin prüfen"
|
1627 |
|
1628 |
+
#: ../admin/overview.php:340
|
1629 |
msgid "Graphic Library"
|
1630 |
msgstr "Grafik-Bibliothek"
|
1631 |
|
1632 |
+
#: ../admin/overview.php:356
|
1633 |
+
#: ../admin/overview.php:405
|
1634 |
+
#: ../admin/overview.php:592
|
1635 |
+
#: ../admin/overview.php:782
|
1636 |
msgid "Loading…"
|
1637 |
msgstr "Lade…"
|
1638 |
|
1639 |
+
#: ../admin/overview.php:356
|
1640 |
+
#: ../admin/overview.php:405
|
1641 |
+
#: ../admin/overview.php:592
|
1642 |
+
#: ../admin/overview.php:782
|
1643 |
msgid "This widget requires JavaScript."
|
1644 |
msgstr "Dieses Widget braucht JavaScript."
|
1645 |
|
1646 |
+
#: ../admin/overview.php:369
|
1647 |
msgid "Thanks to all donators..."
|
1648 |
msgstr "Danke an alle Spender..."
|
1649 |
|
1650 |
+
#: ../admin/overview.php:391
|
1651 |
msgid "View all"
|
1652 |
msgstr "Alle ansehen"
|
1653 |
|
1654 |
+
#: ../admin/overview.php:417
|
1655 |
#, php-format
|
1656 |
msgid "Newsfeed could not be loaded. Check the <a href=\"%s\">front page</a> to check for updates."
|
1657 |
msgstr "Der Newsfeed kann nicht geladen werden. Schaue auf die <a href=\"%s\">Hauptseite</a>, um Updates mitzubekommen."
|
1658 |
|
1659 |
+
#: ../admin/overview.php:429
|
1660 |
msgid "Untitled"
|
1661 |
msgstr "Kein Titel"
|
1662 |
|
1663 |
+
#: ../admin/overview.php:479
|
1664 |
msgid "At a Glance"
|
1665 |
msgstr "Übersicht"
|
1666 |
|
1667 |
+
#: ../admin/overview.php:505
|
1668 |
msgid "Upload pictures"
|
1669 |
msgstr "Bilder hochladen"
|
1670 |
|
1671 |
+
#: ../admin/overview.php:506
|
1672 |
msgid "Here you can control your images, galleries and albums."
|
1673 |
msgstr "Hier kannst Du die Bilder, Galerien und Alben verwalten."
|
1674 |
|
1675 |
+
#: ../admin/overview.php:536
|
1676 |
msgid "Storage Space"
|
1677 |
msgstr "Speicherplatz"
|
1678 |
|
1679 |
+
#: ../admin/overview.php:540
|
1680 |
#, php-format
|
1681 |
msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB</a>"
|
1682 |
msgstr "<a href=\"%1$s\" title=\"Verwalte Uploads\" class=\"musublink\">%2$sMB</a>"
|
1683 |
|
1684 |
+
#: ../admin/overview.php:541
|
1685 |
msgid "Space Allowed"
|
1686 |
msgstr "Speicher verfügbar"
|
1687 |
|
1688 |
+
#: ../admin/overview.php:548
|
1689 |
#, php-format
|
1690 |
msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB (%3$s%%)</a>"
|
1691 |
msgstr "<a href=\"%1$s\" title=\"Verwalte Uploads\" class=\"musublink\">%2$sMB (%3$s%%)</a>"
|
1692 |
|
1693 |
+
#: ../admin/overview.php:549
|
1694 |
msgid "Space Used"
|
1695 |
msgstr "Verbrauchter Uploadspeicher"
|
1696 |
|
1697 |
+
#: ../admin/overview.php:578
|
1698 |
msgid "Translation file successful updated. Please reload page."
|
1699 |
msgstr "Übersetzungsdatei aktualisiert. Bitte Seite neu laden."
|
1700 |
|
1701 |
+
#: ../admin/overview.php:580
|
1702 |
msgid "Reload page"
|
1703 |
msgstr "Seite neu laden"
|
1704 |
|
1705 |
+
#: ../admin/overview.php:585
|
1706 |
msgid "Translation file couldn't be updated"
|
1707 |
msgstr "Übersetzung konnte nicht aktualisiert werden"
|
1708 |
|
1709 |
+
#: ../admin/overview.php:622
|
1710 |
msgid "Download"
|
1711 |
msgstr "Jetzt updaten"
|
1712 |
|
1713 |
+
#: ../admin/overview.php:651
|
1714 |
msgid "No GD support"
|
1715 |
msgstr "Keine GD Unterstützung"
|
1716 |
|
1717 |
+
#: ../admin/overview.php:663
|
1718 |
+
#: ../admin/overview.php:709
|
1719 |
+
#: ../admin/overview.php:712
|
1720 |
+
#: ../admin/overview.php:715
|
1721 |
msgid "Yes"
|
1722 |
msgstr "Ja"
|
1723 |
|
1724 |
+
#: ../admin/overview.php:665
|
1725 |
+
#: ../admin/overview.php:710
|
1726 |
+
#: ../admin/overview.php:713
|
1727 |
+
#: ../admin/overview.php:716
|
1728 |
msgid "No"
|
1729 |
msgstr "Nein"
|
1730 |
|
1731 |
+
#: ../admin/overview.php:683
|
1732 |
msgid "Not set"
|
1733 |
msgstr "Nicht gesetzt"
|
1734 |
|
1735 |
+
#: ../admin/overview.php:685
|
1736 |
+
#: ../admin/overview.php:688
|
1737 |
msgid "On"
|
1738 |
msgstr "An"
|
1739 |
|
1740 |
+
#: ../admin/overview.php:686
|
1741 |
+
#: ../admin/overview.php:689
|
1742 |
msgid "Off"
|
1743 |
msgstr "Aus"
|
1744 |
|
1745 |
+
#: ../admin/overview.php:692
|
1746 |
+
#: ../admin/overview.php:695
|
1747 |
+
#: ../admin/overview.php:698
|
1748 |
+
#: ../admin/overview.php:701
|
1749 |
+
#: ../admin/overview.php:704
|
1750 |
+
#: ../admin/overview.php:707
|
1751 |
msgid "N/A"
|
1752 |
msgstr "N/A"
|
1753 |
|
1754 |
+
#: ../admin/overview.php:706
|
1755 |
msgid " MByte"
|
1756 |
msgstr " MByte"
|
1757 |
|
1758 |
+
#: ../admin/overview.php:719
|
1759 |
msgid "Operating System"
|
1760 |
msgstr "Betriebssystem"
|
1761 |
|
1762 |
+
#: ../admin/overview.php:720
|
1763 |
msgid "Server"
|
1764 |
msgstr "Server"
|
1765 |
|
1766 |
+
#: ../admin/overview.php:721
|
1767 |
msgid "Memory usage"
|
1768 |
msgstr "Speicherverbrauch"
|
1769 |
|
1770 |
+
#: ../admin/overview.php:722
|
1771 |
msgid "MYSQL Version"
|
1772 |
msgstr "MySQL Version"
|
1773 |
|
1774 |
+
#: ../admin/overview.php:723
|
1775 |
msgid "SQL Mode"
|
1776 |
msgstr "SQL Modus"
|
1777 |
|
1778 |
+
#: ../admin/overview.php:724
|
1779 |
msgid "PHP Version"
|
1780 |
msgstr "PHP Version"
|
1781 |
|
1782 |
+
#: ../admin/overview.php:725
|
1783 |
msgid "PHP Safe Mode"
|
1784 |
msgstr "PHP Safe Mode"
|
1785 |
|
1786 |
+
#: ../admin/overview.php:726
|
1787 |
msgid "PHP Allow URL fopen"
|
1788 |
msgstr "PHP Allow URL fopen"
|
1789 |
|
1790 |
+
#: ../admin/overview.php:727
|
1791 |
msgid "PHP Memory Limit"
|
1792 |
msgstr "PHP Memory Limit"
|
1793 |
|
1794 |
+
#: ../admin/overview.php:728
|
1795 |
msgid "PHP Max Upload Size"
|
1796 |
msgstr "PHP Max Upload Größe"
|
1797 |
|
1798 |
+
#: ../admin/overview.php:729
|
1799 |
msgid "PHP Max Post Size"
|
1800 |
msgstr "PHP Max Post Größe"
|
1801 |
|
1802 |
+
#: ../admin/overview.php:730
|
1803 |
msgid "PCRE Backtracking Limit"
|
1804 |
msgstr "PCRE Backtracking Limit"
|
1805 |
|
1806 |
+
#: ../admin/overview.php:731
|
1807 |
msgid "PHP Max Script Execute Time"
|
1808 |
msgstr "PHP Max Script Execute Time"
|
1809 |
|
1810 |
+
#: ../admin/overview.php:732
|
1811 |
msgid "PHP Exif support"
|
1812 |
msgstr "PHP Exif Modul"
|
1813 |
|
1814 |
+
#: ../admin/overview.php:733
|
1815 |
msgid "PHP IPTC support"
|
1816 |
msgstr "PHP IPTC Modul"
|
1817 |
|
1818 |
+
#: ../admin/overview.php:734
|
1819 |
msgid "PHP XML support"
|
1820 |
msgstr "PHP XML Modul"
|
1821 |
|
1822 |
+
#: ../admin/overview.php:746
|
1823 |
msgid "NextGEN Gallery contains some functions which are only available under PHP 5.2. You are using the old PHP 4 version, upgrade now! It's no longer supported by the PHP group. Many shared hosting providers offer both PHP 4 and PHP 5, running simultaneously. Ask your provider if they can do this."
|
1824 |
msgstr "NextGEN Gallery enthält einige Funktionen, die nur unter PHP 5.2 verfügbar sind. Du nutzt immer noch die alte PHP 4 Version. Bitte aktualisiere so bald wie möglich diese Version, sie wird nicht mehr gepflegt und weiterentwicklelt. Die meisten Hoster bieten bereits PHP5 an. Bitte kontaktiere Deinen Provider und frag kurz nach, ob sie ein Update durchführen können."
|
1825 |
|
1826 |
+
#: ../admin/overview.php:838
|
1827 |
msgid "Install"
|
1828 |
msgstr "Installieren"
|
1829 |
|
1919 |
msgid "Flip horizontally"
|
1920 |
msgstr "Horizontal spiegeln"
|
1921 |
|
1922 |
+
#: ../admin/settings.php:97
|
1923 |
msgid "Cache cleared"
|
1924 |
msgstr "Cache löschen"
|
1925 |
|
1926 |
+
#: ../admin/settings.php:216
|
1927 |
+
#: ../admin/settings.php:235
|
1928 |
msgid "General Options"
|
1929 |
msgstr "Allg. Optionen"
|
1930 |
|
1931 |
+
#: ../admin/settings.php:217
|
1932 |
+
#: ../admin/settings.php:421
|
1933 |
msgid "Thumbnails"
|
1934 |
msgstr "Thumbnails"
|
1935 |
|
1936 |
+
#: ../admin/settings.php:218
|
1937 |
msgid "Images"
|
1938 |
msgstr "Bilder"
|
1939 |
|
1940 |
+
#: ../admin/settings.php:220
|
1941 |
+
#: ../admin/settings.php:473
|
1942 |
msgid "Effects"
|
1943 |
msgstr "Effekte"
|
1944 |
|
1945 |
+
#: ../admin/settings.php:221
|
1946 |
+
#: ../admin/settings.php:515
|
1947 |
#: ../admin/tinymce/window.php:110
|
1948 |
msgid "Watermark"
|
1949 |
msgstr "Wasserzeichen"
|
1950 |
|
1951 |
+
#: ../admin/settings.php:222
|
1952 |
+
#: ../admin/settings.php:422
|
1953 |
+
#: ../admin/settings.php:622
|
1954 |
#: ../admin/tinymce/window.php:63
|
1955 |
msgid "Slideshow"
|
1956 |
msgstr "Slideshow"
|
1957 |
|
1958 |
+
#: ../admin/settings.php:241
|
1959 |
#: ../admin/wpmu.php:68
|
1960 |
msgid "Gallery path"
|
1961 |
msgstr "Galerie-Pfad"
|
1962 |
|
1963 |
+
#: ../admin/settings.php:243
|
1964 |
msgid "This is the default path for all galleries"
|
1965 |
msgstr "Dies ist der Standard-Pfad für alle Galerien"
|
1966 |
|
1967 |
+
#: ../admin/settings.php:246
|
1968 |
msgid "Delete image files"
|
1969 |
msgstr "Lösche Bilddateien"
|
1970 |
|
1971 |
+
#: ../admin/settings.php:248
|
1972 |
msgid "Delete files, when removing a gallery in the database"
|
1973 |
msgstr "Löscht auch die Dateien, falls die Galerie aus der Datenbank entfernt wird"
|
1974 |
|
1975 |
+
#: ../admin/settings.php:251
|
1976 |
msgid "Activate permalinks"
|
1977 |
msgstr "Aktiviere Permalinks"
|
1978 |
|
1979 |
+
#: ../admin/settings.php:253
|
1980 |
msgid "When you activate this option, you need to update your permalink structure one time."
|
1981 |
msgstr "Wenn Du diese Option aktivierst, muss Du einmal die Permalink Struktur aktualisieren."
|
1982 |
|
1983 |
+
#: ../admin/settings.php:254
|
1984 |
+
msgid "Gallery slug name :"
|
1985 |
+
msgstr "Galerie Schlagwort :"
|
1986 |
+
|
1987 |
+
#: ../admin/settings.php:258
|
1988 |
msgid "Create new URL friendly image slugs"
|
1989 |
msgstr "Erstelle neue URL lesbare Schlagwörter "
|
1990 |
|
1991 |
+
#: ../admin/settings.php:259
|
1992 |
+
#: ../admin/settings.php:375
|
1993 |
msgid "Proceed now"
|
1994 |
msgstr "Jetzt durchführen"
|
1995 |
|
1996 |
+
#: ../admin/settings.php:262
|
|
|
|
|
|
|
|
|
1997 |
msgid "Select graphic library"
|
1998 |
msgstr "Wähle Grafik-Bibliothek"
|
1999 |
|
2000 |
+
#: ../admin/settings.php:263
|
2001 |
msgid "GD Library"
|
2002 |
msgstr "GD Bibliothek"
|
2003 |
|
2004 |
+
#: ../admin/settings.php:264
|
2005 |
msgid "ImageMagick (Experimental). Path to the library :"
|
2006 |
msgstr "ImageMagick (Experimental). Pfad zur Bibliothek :"
|
2007 |
|
2008 |
+
#: ../admin/settings.php:269
|
2009 |
msgid "Activate Media RSS feed"
|
2010 |
msgstr "Aktiviere Media-RSS-Feed"
|
2011 |
|
2012 |
+
#: ../admin/settings.php:271
|
2013 |
msgid "A RSS feed will be added to you blog header. Useful for CoolIris/PicLens"
|
2014 |
msgstr "Ein Bilder-RSS Feed wird zum Blog hinzugefügt"
|
2015 |
|
2016 |
+
#: ../admin/settings.php:274
|
2017 |
msgid "Activate PicLens/CoolIris support"
|
2018 |
msgstr "Aktiviere PicLens/CoolIris"
|
2019 |
|
2020 |
+
#: ../admin/settings.php:276
|
2021 |
msgid "When you activate this option, some javascript is added to your site footer. Make sure that wp_footer is called in your theme."
|
2022 |
msgstr "Dieser Effekt fügt ein neues Javascript zu Deinem Theme hinzu. Beachte, dass wp_footer() in Deinen Vorlagen aufgerufen wird."
|
2023 |
|
2024 |
+
#: ../admin/settings.php:279
|
2025 |
msgid "Tags / Categories"
|
2026 |
msgstr "Stichwörter / Kategorien"
|
2027 |
|
2028 |
+
#: ../admin/settings.php:282
|
2029 |
msgid "Activate related images"
|
2030 |
msgstr "Verwandte Bilder anzeigen"
|
2031 |
|
2032 |
+
#: ../admin/settings.php:284
|
2033 |
msgid "This option will append related images to every post"
|
2034 |
msgstr "Diese Option hängt verwandte Bilder an jeden Beitrag"
|
2035 |
|
2036 |
+
#: ../admin/settings.php:288
|
2037 |
msgid "Match with"
|
2038 |
msgstr "Vergleiche mit"
|
2039 |
|
2040 |
+
#: ../admin/settings.php:289
|
2041 |
msgid "Categories"
|
2042 |
msgstr "Kategorien"
|
2043 |
|
2044 |
+
#: ../admin/settings.php:294
|
2045 |
msgid "Max. number of images"
|
2046 |
msgstr "Max. Anzahl der Bilder"
|
2047 |
|
2048 |
+
#: ../admin/settings.php:296
|
2049 |
msgid "0 will show all images"
|
2050 |
msgstr "0 zeige alle verwandten Bilder"
|
2051 |
|
2052 |
+
#: ../admin/settings.php:300
|
2053 |
+
#: ../admin/settings.php:331
|
2054 |
+
#: ../admin/settings.php:378
|
2055 |
+
#: ../admin/settings.php:463
|
2056 |
+
#: ../admin/settings.php:498
|
2057 |
+
#: ../admin/settings.php:759
|
2058 |
msgid "More settings"
|
2059 |
msgstr "Mehr Einstellungen"
|
2060 |
|
2061 |
+
#: ../admin/settings.php:310
|
2062 |
msgid "Thumbnail settings"
|
2063 |
msgstr "Thumbnail-Einstellungen"
|
2064 |
|
2065 |
+
#: ../admin/settings.php:314
|
2066 |
msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
|
2067 |
msgstr "Bitte beachten : Änderungen der Einstellungen werden erst übernommen, wenn Du neue Thumbnails unter -> \"Gallery verwalten\" erstellst"
|
2068 |
|
2069 |
+
#: ../admin/settings.php:327
|
2070 |
msgid "Thumbnail quality"
|
2071 |
msgstr "Thumbnail Qualität"
|
2072 |
|
2073 |
+
#: ../admin/settings.php:341
|
2074 |
msgid "Image settings"
|
2075 |
msgstr "Bild-Einstellungen"
|
2076 |
|
2077 |
+
#: ../admin/settings.php:347
|
2078 |
msgid "Resize Images"
|
2079 |
msgstr "Bilder verkleinern"
|
2080 |
|
2081 |
+
#: ../admin/settings.php:352
|
2082 |
msgid "Image quality"
|
2083 |
msgstr "Bild Qualität"
|
2084 |
|
2085 |
+
#: ../admin/settings.php:356
|
2086 |
msgid "Backup original images"
|
2087 |
msgstr "Backup von Original-Bildern "
|
2088 |
|
2089 |
+
#: ../admin/settings.php:358
|
2090 |
msgid "Creates a backup for inserted images"
|
2091 |
msgstr "Backup der Bilder anlegen"
|
2092 |
|
2093 |
+
#: ../admin/settings.php:361
|
2094 |
msgid "Automatically resize"
|
2095 |
msgstr "Grösse automatisch anpassen"
|
2096 |
|
2097 |
+
#: ../admin/settings.php:363
|
2098 |
msgid "Automatically resize images on upload."
|
2099 |
msgstr "Passt die Grösse automatisch beim Upload an"
|
2100 |
|
2101 |
+
#: ../admin/settings.php:366
|
2102 |
msgid "Single picture"
|
2103 |
msgstr "Einzelbilder"
|
2104 |
|
2105 |
+
#: ../admin/settings.php:369
|
2106 |
msgid "Cache single pictures"
|
2107 |
msgstr "Nutze Cache für Einzelbilder"
|
2108 |
|
2109 |
+
#: ../admin/settings.php:371
|
2110 |
msgid "Creates a file for each singlepic settings. Reduce the CPU load"
|
2111 |
msgstr "Erstellt ein Cache-Bild für jedes Einzelbild (singlepic). Reduziert die CPU Belastung."
|
2112 |
|
2113 |
+
#: ../admin/settings.php:374
|
2114 |
msgid "Clear cache folder"
|
2115 |
msgstr "Lösche Cache-Verzeichnis"
|
2116 |
|
2117 |
+
#: ../admin/settings.php:395
|
2118 |
msgid "Deactivate gallery page link"
|
2119 |
msgstr "Keine Seitenverzweigung"
|
2120 |
|
2121 |
+
#: ../admin/settings.php:397
|
2122 |
msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
|
2123 |
msgstr "Ein Album benötigt dann keinen Link zur Seite. Die Galerie wird direkt angezeigt."
|
2124 |
|
2125 |
+
#: ../admin/settings.php:401
|
2126 |
msgid "Number of images per page"
|
2127 |
msgstr "Anzahl der Bilder pro Seite"
|
2128 |
|
2129 |
+
#: ../admin/settings.php:403
|
2130 |
msgid "0 will disable pagination, all images on one page"
|
2131 |
msgstr "0 schaltet Blätterfunktion ab ( = alle Bilder auf einer Seite )"
|
2132 |
|
2133 |
+
#: ../admin/settings.php:407
|
2134 |
msgid "Number of columns"
|
2135 |
msgstr "Anzahl der Spalten"
|
2136 |
|
2137 |
+
#: ../admin/settings.php:409
|
2138 |
msgid "0 will display as much as possible based on the width of your theme. Setting normally only required for captions below the images"
|
2139 |
msgstr "Mit \"0\" werden soviele Bilder wie möglich in einer Reihe dargestellt. Die Einstellung ist normalerweise nur für Beschriftungen unterhalb der Bilder sinnvoll."
|
2140 |
|
2141 |
+
#: ../admin/settings.php:413
|
2142 |
msgid "Integrate slideshow"
|
2143 |
msgstr "Slideshow verwenden"
|
2144 |
|
2145 |
+
#: ../admin/settings.php:420
|
2146 |
msgid "Show first"
|
2147 |
msgstr "Zeige als Erstes"
|
2148 |
|
2149 |
+
#: ../admin/settings.php:426
|
2150 |
msgid "Show ImageBrowser"
|
2151 |
msgstr "Zeige Bilder-Browser"
|
2152 |
|
2153 |
+
#: ../admin/settings.php:428
|
2154 |
msgid "The gallery will open the ImageBrowser instead the effect."
|
2155 |
msgstr "Es wird der Bilder-Browser angezeigt (Kein JavaScript Effekt)"
|
2156 |
|
2157 |
+
#: ../admin/settings.php:432
|
2158 |
msgid "Add hidden images"
|
2159 |
msgstr "Versteckte Bilder hinzufügen"
|
2160 |
|
2161 |
+
#: ../admin/settings.php:434
|
2162 |
msgid "If pagination is used, this option will still show all images in the modal window (Thickbox, Lightbox etc.). Note : This increases the page load"
|
2163 |
msgstr "Wenn Du die Blätterfunktion nutzt, dann kannst Du mit dieser Option alle Bilder im Modal-Fenster (Thickbox,Lightbox etc.) anzeigen. Berücksichtige, dass die Ladezeit der Seite erhöht wird."
|
2164 |
|
2165 |
+
#: ../admin/settings.php:438
|
2166 |
msgid "Enable AJAX pagination"
|
2167 |
msgstr "Aktiviere AJAX-Navigation"
|
2168 |
|
2169 |
+
#: ../admin/settings.php:440
|
2170 |
msgid "Browse images without reload the page. Note : Works only in combination with Shutter effect"
|
2171 |
msgstr "Ermöglicht das Blättern zwischen den Bildern ohne die Seite neu zu laden. Hinweis : Funktioniert nur mit dem Shutter-Effekt."
|
2172 |
|
2173 |
+
#: ../admin/settings.php:444
|
2174 |
msgid "Sort options"
|
2175 |
msgstr "Sortierung"
|
2176 |
|
2177 |
+
#: ../admin/settings.php:447
|
2178 |
msgid "Sort thumbnails"
|
2179 |
msgstr "Thumbnails sortieren"
|
2180 |
|
2181 |
+
#: ../admin/settings.php:449
|
2182 |
msgid "Custom order"
|
2183 |
msgstr "Benutzerdefiniert"
|
2184 |
|
2185 |
+
#: ../admin/settings.php:451
|
2186 |
msgid "File name"
|
2187 |
msgstr "Dateiname"
|
2188 |
|
2189 |
+
#: ../admin/settings.php:452
|
2190 |
msgid "Alt / Title text"
|
2191 |
msgstr "Alt / Titel Text"
|
2192 |
|
2193 |
+
#: ../admin/settings.php:453
|
2194 |
msgid "Date / Time"
|
2195 |
msgstr "Datum/Zeit"
|
2196 |
|
2197 |
+
#: ../admin/settings.php:457
|
2198 |
msgid "Sort direction"
|
2199 |
msgstr "Sortierreihenfolge"
|
2200 |
|
2201 |
+
#: ../admin/settings.php:477
|
2202 |
msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Shutter and Thickbox effect will automatic added to your theme."
|
2203 |
msgstr "Hier kannst Du den Effekt für die Thumbnails auswählen. NextGEN Galerie wird den benötigten HTML-Code verwenden. Bitte beachte, dass nur Shutter und der Thickbox Effekt automatisch in Dein Theme von Wordpress integriert wird. Alle anderen Effekte mußt Du selbst in die header.php eintragen (JS)."
|
2204 |
|
2205 |
+
#: ../admin/settings.php:478
|
2206 |
msgid "With the placeholder"
|
2207 |
msgstr "Mit Platzhalter"
|
2208 |
|
2209 |
+
#: ../admin/settings.php:478
|
2210 |
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."
|
2211 |
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."
|
2212 |
|
2213 |
+
#: ../admin/settings.php:481
|
2214 |
msgid "JavaScript Thumbnail effect"
|
2215 |
msgstr "JavaScript Thumbnail Effekt"
|
2216 |
|
2217 |
+
#: ../admin/settings.php:485
|
2218 |
msgid "Thickbox"
|
2219 |
msgstr "Thickbox"
|
2220 |
|
2221 |
+
#: ../admin/settings.php:486
|
2222 |
msgid "Lightbox"
|
2223 |
msgstr "Lightbox"
|
2224 |
|
2225 |
+
#: ../admin/settings.php:487
|
2226 |
msgid "Highslide"
|
2227 |
msgstr "Highslide"
|
2228 |
|
2229 |
+
#: ../admin/settings.php:488
|
2230 |
msgid "Shutter"
|
2231 |
msgstr "Shutter"
|
2232 |
|
2233 |
+
#: ../admin/settings.php:489
|
2234 |
msgid "Custom"
|
2235 |
msgstr "Eigener"
|
2236 |
|
2237 |
+
#: ../admin/settings.php:494
|
2238 |
msgid "Link Code line"
|
2239 |
msgstr "Link-Code-Zeile"
|
2240 |
|
2241 |
+
#: ../admin/settings.php:516
|
2242 |
msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
|
2243 |
msgstr "Bitte beachten : Das Wasserzeichen kann nur unter der Galerieverwaltung gesetzt werden. "
|
2244 |
|
2245 |
+
#: ../admin/settings.php:521
|
2246 |
msgid "Preview"
|
2247 |
msgstr "Vorschau"
|
2248 |
|
2249 |
+
#: ../admin/settings.php:523
|
2250 |
+
#: ../admin/settings.php:528
|
2251 |
msgid "Position"
|
2252 |
msgstr "Position"
|
2253 |
|
2254 |
+
#: ../admin/settings.php:548
|
2255 |
msgid "Offset"
|
2256 |
msgstr "Abstand"
|
2257 |
|
2258 |
+
#: ../admin/settings.php:564
|
2259 |
msgid "Use image as watermark"
|
2260 |
msgstr "Benutze das Bild als Wasserzeichen"
|
2261 |
|
2262 |
+
#: ../admin/settings.php:567
|
2263 |
msgid "URL to file"
|
2264 |
msgstr "URL zur Datei"
|
2265 |
|
2266 |
+
#: ../admin/settings.php:569
|
2267 |
msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
|
2268 |
msgstr "Der Dateizugriff von URLs ist auf diesem Server deaktiviert (allow_url_fopen)"
|
2269 |
|
2270 |
+
#: ../admin/settings.php:572
|
2271 |
msgid "Use text as watermark"
|
2272 |
msgstr "Benutze Text als Wasserzeichen"
|
2273 |
|
2274 |
+
#: ../admin/settings.php:575
|
2275 |
msgid "Font"
|
2276 |
msgstr "Schriftart"
|
2277 |
|
2278 |
+
#: ../admin/settings.php:584
|
2279 |
msgid "This function will not work, cause you need the FreeType library"
|
2280 |
msgstr "Diese Funktion benötigt die FreeType-Bibliothek"
|
2281 |
|
2282 |
+
#: ../admin/settings.php:586
|
2283 |
msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
|
2284 |
msgstr "Du kannst mehr Schriftarten in das Verzeichniss <strong>nggallery/fonts</strong> hochladen."
|
2285 |
|
2286 |
+
#: ../admin/settings.php:595
|
2287 |
msgid "Color"
|
2288 |
msgstr "Farbe"
|
2289 |
|
2290 |
+
#: ../admin/settings.php:597
|
2291 |
msgid "(hex w/o #)"
|
2292 |
msgstr "(hex w/o #)"
|
2293 |
|
2294 |
+
#: ../admin/settings.php:600
|
2295 |
msgid "Text"
|
2296 |
msgstr "Text"
|
2297 |
|
2298 |
+
#: ../admin/settings.php:604
|
2299 |
msgid "Opaque"
|
2300 |
msgstr "Transparenz"
|
2301 |
|
2302 |
+
#: ../admin/settings.php:625
|
2303 |
msgid "Default size (W x H)"
|
2304 |
msgstr "Standard Größe (B x H)"
|
2305 |
|
2306 |
+
#: ../admin/settings.php:630
|
2307 |
msgid "Duration time"
|
2308 |
msgstr "Dauer"
|
2309 |
|
2310 |
+
#: ../admin/settings.php:631
|
2311 |
msgid "sec."
|
2312 |
msgstr "Sek."
|
2313 |
|
2314 |
+
#: ../admin/settings.php:634
|
2315 |
+
#: ../admin/settings.php:709
|
2316 |
msgid "Transition / Fade effect"
|
2317 |
msgstr "Fade Effekt"
|
2318 |
|
2319 |
+
#: ../admin/settings.php:637
|
2320 |
+
#: ../admin/settings.php:712
|
2321 |
msgid "fade"
|
2322 |
msgstr "Fade"
|
2323 |
|
2324 |
+
#: ../admin/settings.php:638
|
2325 |
msgid "blindX"
|
2326 |
msgstr "blindX"
|
2327 |
|
2328 |
+
#: ../admin/settings.php:639
|
2329 |
msgid "cover"
|
2330 |
msgstr "Blenden"
|
2331 |
|
2332 |
+
#: ../admin/settings.php:640
|
2333 |
msgid "scrollUp"
|
2334 |
msgstr "ScrollUp"
|
2335 |
|
2336 |
+
#: ../admin/settings.php:641
|
2337 |
msgid "scrollDown"
|
2338 |
msgstr "ScrollDown"
|
2339 |
|
2340 |
+
#: ../admin/settings.php:642
|
2341 |
msgid "shuffle"
|
2342 |
msgstr "Shuffle"
|
2343 |
|
2344 |
+
#: ../admin/settings.php:643
|
2345 |
msgid "toss"
|
2346 |
msgstr "Schüttel"
|
2347 |
|
2348 |
+
#: ../admin/settings.php:644
|
2349 |
msgid "wipe"
|
2350 |
msgstr "wischen"
|
2351 |
|
2352 |
+
#: ../admin/settings.php:646
|
2353 |
msgid "See here for more information about the effects :"
|
2354 |
msgstr "Hier bekommst du mehr Informationen über die Effekte :"
|
2355 |
|
2356 |
+
#: ../admin/settings.php:650
|
2357 |
msgid "Settings for the JW Image Rotator"
|
2358 |
msgstr "JW-Image-Rotator Einstellungen"
|
2359 |
|
2360 |
+
#: ../admin/settings.php:651
|
2361 |
msgid "The settings are only used in the JW Image Rotator Version"
|
2362 |
msgstr "Die Einstellungen werden im JW-Image-Rotator benutzt, in der Version"
|
2363 |
|
2364 |
+
#: ../admin/settings.php:652
|
2365 |
msgid "See more information for the Flash Player on the web page"
|
2366 |
msgstr "Weitere Informationen auf der Flash-Player-Homepage"
|
2367 |
|
2368 |
+
#: ../admin/settings.php:657
|
2369 |
msgid "The path to imagerotator.swf is not defined, the slideshow will not work."
|
2370 |
msgstr "Der Pfad zu imagerotator.swf ist nicht gesetzt, die Flash-Diaschau kann dann nicht angezeigt werden"
|
2371 |
|
2372 |
+
#: ../admin/settings.php:658
|
2373 |
msgid "If you would like to use the JW Image Rotatator, please download the player <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" target=\"_blank\" >here</a> and upload it to your Upload folder (Default is wp-content/uploads)."
|
2374 |
msgstr "Wenn Du den JW-Image-Rotator (Slideshow) nutzen möchtest, lade Dir die aktuelle Version <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" target=\"_blank\" >hier</a> herunter und übertrage sie dann in Dein WordPress-Upload-Verzeichnis (normalerweise wp-content/uploads),"
|
2375 |
|
2376 |
+
#: ../admin/settings.php:664
|
2377 |
msgid "Enable flash slideshow"
|
2378 |
msgstr "Aktiviere Flash Slideshow"
|
2379 |
|
2380 |
+
#: ../admin/settings.php:666
|
2381 |
msgid "Integrate the flash based slideshow for all flash supported devices"
|
2382 |
msgstr "Verwende die Flash Slideshow für alle Flash-unterstützte Geräte"
|
2383 |
|
2384 |
+
#: ../admin/settings.php:669
|
2385 |
msgid "Path to the Imagerotator (URL)"
|
2386 |
msgstr "Pfad zum JW-Image-Rotator (URL)"
|
2387 |
|
2388 |
+
#: ../admin/settings.php:672
|
2389 |
msgid "Search now"
|
2390 |
msgstr "Suche jetzt"
|
2391 |
|
2392 |
+
#: ../admin/settings.php:673
|
2393 |
msgid "Press the button to search automatically for the imagerotator, if you uploaded it to wp-content/uploads or a subfolder"
|
2394 |
msgstr "Drücke 'Suche jetzt' um automatisch den Pfad zum Image-Rotator zu ermitteln, sofern Du den Player in wp-content/uploads oder ein Unterverzeichnis hochgeladen hast."
|
2395 |
|
2396 |
+
#: ../admin/settings.php:677
|
2397 |
msgid "Shuffle mode"
|
2398 |
msgstr "Shuffle Modus"
|
2399 |
|
2400 |
+
#: ../admin/settings.php:681
|
2401 |
msgid "Show next image on click"
|
2402 |
msgstr "Zeige nächstes Bild bei Klick"
|
2403 |
|
2404 |
+
#: ../admin/settings.php:685
|
2405 |
msgid "Show navigation bar"
|
2406 |
msgstr "Zeige Navigations-Leiste"
|
2407 |
|
2408 |
+
#: ../admin/settings.php:689
|
2409 |
msgid "Show loading icon"
|
2410 |
msgstr "Zeige Lade-Bildchen"
|
2411 |
|
2412 |
+
#: ../admin/settings.php:693
|
2413 |
msgid "Use watermark logo"
|
2414 |
msgstr "Wasserzeichen anzeigen"
|
2415 |
|
2416 |
+
#: ../admin/settings.php:695
|
2417 |
msgid "You can change the logo at the watermark settings"
|
2418 |
msgstr "Du kannst den Pfad in Einstellungen für das Wasserzeichen angeben"
|
2419 |
|
2420 |
+
#: ../admin/settings.php:698
|
2421 |
msgid "Stretch image"
|
2422 |
msgstr "Bild dehnen"
|
2423 |
|
2424 |
+
#: ../admin/settings.php:701
|
2425 |
msgid "true"
|
2426 |
msgstr "Ja"
|
2427 |
|
2428 |
+
#: ../admin/settings.php:702
|
2429 |
msgid "false"
|
2430 |
msgstr "Nein"
|
2431 |
|
2432 |
+
#: ../admin/settings.php:703
|
2433 |
msgid "fit"
|
2434 |
msgstr "Passend"
|
2435 |
|
2436 |
+
#: ../admin/settings.php:704
|
2437 |
msgid "none"
|
2438 |
msgstr "keiner"
|
2439 |
|
2440 |
+
#: ../admin/settings.php:713
|
2441 |
msgid "bgfade"
|
2442 |
msgstr "BGFade"
|
2443 |
|
2444 |
+
#: ../admin/settings.php:714
|
2445 |
msgid "slowfade"
|
2446 |
msgstr "Slowfade"
|
2447 |
|
2448 |
+
#: ../admin/settings.php:715
|
2449 |
msgid "circles"
|
2450 |
msgstr "Kreise"
|
2451 |
|
2452 |
+
#: ../admin/settings.php:716
|
2453 |
msgid "bubbles"
|
2454 |
msgstr "Blasen"
|
2455 |
|
2456 |
+
#: ../admin/settings.php:717
|
2457 |
msgid "blocks"
|
2458 |
msgstr "Blöcke"
|
2459 |
|
2460 |
+
#: ../admin/settings.php:718
|
2461 |
msgid "fluids"
|
2462 |
msgstr "Fluids"
|
2463 |
|
2464 |
+
#: ../admin/settings.php:719
|
2465 |
msgid "flash"
|
2466 |
msgstr "Flash"
|
2467 |
|
2468 |
+
#: ../admin/settings.php:720
|
2469 |
msgid "lines"
|
2470 |
msgstr "Linien"
|
2471 |
|
2472 |
+
#: ../admin/settings.php:721
|
2473 |
msgid "random"
|
2474 |
msgstr "Zufall"
|
2475 |
|
2476 |
+
#: ../admin/settings.php:726
|
2477 |
msgid "Use slow zooming effect"
|
2478 |
msgstr "nutze Zoom-Effekt"
|
2479 |
|
2480 |
+
#: ../admin/settings.php:730
|
2481 |
msgid "Background Color"
|
2482 |
msgstr "Hintergrund (BG) Farbe"
|
2483 |
|
2484 |
+
#: ../admin/settings.php:735
|
2485 |
msgid "Texts / Buttons Color"
|
2486 |
msgstr "Text- / Button Farbe"
|
2487 |
|
2488 |
+
#: ../admin/settings.php:740
|
2489 |
msgid "Rollover / Active Color"
|
2490 |
msgstr "Rollover / Aktiv (Link) Farbe"
|
2491 |
|
2492 |
+
#: ../admin/settings.php:745
|
2493 |
msgid "Screen Color"
|
2494 |
msgstr "Seiten-Farbe"
|
2495 |
|
2496 |
+
#: ../admin/settings.php:750
|
2497 |
msgid "Background music (URL)"
|
2498 |
msgstr "Hintergrundmusik (URL)"
|
2499 |
|
2500 |
+
#: ../admin/settings.php:754
|
2501 |
msgid "Try XHTML validation (with CDATA)"
|
2502 |
msgstr "Integriere XHTML-Validierung (mittels CDATA)"
|
2503 |
|
2504 |
+
#: ../admin/settings.php:756
|
2505 |
msgid "Important : Could causes problem at some browser. Please recheck your page."
|
2506 |
msgstr "Wichtig : Es könnten Probleme bei einigen Browser entstehen. Unbedingt Seite danach prüfen."
|
2507 |
|
2807 |
msgstr "Die Widgets wurden überarbeitet. Wenn Du NextGEN Widgets nutzt, musst du Sie nun neu einfügen..."
|
2808 |
|
2809 |
#: ../admin/upgrade.php:168
|
2810 |
+
#: ../admin/upgrade.php:190
|
2811 |
msgid "Updated options."
|
2812 |
msgstr "Einstellungen gespeichert."
|
2813 |
|
2827 |
msgid "Depend on the amount of database entries this will take a while, don't reload this page."
|
2828 |
msgstr "Diese Operation kann je nach Anzahl der Bilder eine Weile daueren, bitte die Seite nicht neu laden."
|
2829 |
|
2830 |
+
#: ../admin/upgrade.php:195
|
2831 |
msgid "Could not find NextGEN Gallery database tables, upgrade failed !"
|
2832 |
msgstr "Konnte die NextGEN Gallery Tabellen nicht finden, Upgrade fehlgeschlagen !"
|
2833 |
|
2834 |
+
#: ../admin/upgrade.php:258
|
2835 |
msgid "Some folders/files could not renamed, please recheck the permission and rescan the folder in the manage gallery section."
|
2836 |
msgstr "Einige Verzeichnisse / Bilder konnten nicht umbenannt werden, bitte überprüfe die Zugriffsrechte und scanne dann das Verzeichnis neu ein."
|
2837 |
|
2838 |
+
#: ../admin/upgrade.php:260
|
2839 |
msgid "Rename failed"
|
2840 |
msgstr "Konnte nicht umbenannt werden"
|
2841 |
|
2842 |
+
#: ../admin/upgrade.php:356
|
2843 |
+
#: ../admin/upgrade.php:375
|
2844 |
msgid "Upgrade NextGEN Gallery"
|
2845 |
msgstr "NextGEN-Gallery aktualisieren"
|
2846 |
|
2847 |
+
#: ../admin/upgrade.php:357
|
2848 |
msgid "The script detect that you upgrade from a older version."
|
2849 |
msgstr "Es wurde eine ältere NextGEN-Datenbank erkannt."
|
2850 |
|
2851 |
+
#: ../admin/upgrade.php:358
|
2852 |
msgid "Your database tables for NextGEN Gallery is out-of-date, and must be upgraded before you can continue."
|
2853 |
msgstr "Deine Datenbanktabellen für NextGEN-Gallery sind nicht auf dem aktuellen Stand, sie müssen jetzt aktualisiert werden."
|
2854 |
|
2855 |
+
#: ../admin/upgrade.php:359
|
2856 |
msgid "If you would like to downgrade later, please make first a complete backup of your database and the images."
|
2857 |
msgstr "Wenn Du wieder auf eine ältere Version zurückgehen möchtest, solltest Du vorher die Datenbank sichern."
|
2858 |
|
2859 |
+
#: ../admin/upgrade.php:360
|
2860 |
msgid "The upgrade process may take a while, so please be patient."
|
2861 |
msgstr "Der Upgrade-Prozess kann etwas dauern, bitte sei geduldig..."
|
2862 |
|
2863 |
+
#: ../admin/upgrade.php:361
|
2864 |
msgid "Start upgrade now"
|
2865 |
msgstr "Aktualisierung starten"
|
2866 |
|
2867 |
+
#: ../admin/upgrade.php:377
|
2868 |
msgid "Upgrade finished..."
|
2869 |
msgstr "Upgrade beendet..."
|
2870 |
|
2871 |
+
#: ../admin/upgrade.php:378
|
2872 |
msgid "Continue"
|
2873 |
msgstr "Weiter"
|
2874 |
|
2875 |
+
#: ../admin/upgrade.php:401
|
2876 |
#, php-format
|
2877 |
msgid "Rebuild image structure : %s / %s images"
|
2878 |
msgstr "Erzeuge Permalinks für Bilder : %s / %s Bilder"
|
2879 |
|
2880 |
+
#: ../admin/upgrade.php:402
|
2881 |
#, php-format
|
2882 |
msgid "Rebuild gallery structure : %s / %s galleries"
|
2883 |
msgstr "Erzeuge Permalinks für Galerien : %s / %s Galerien"
|
2884 |
|
2885 |
+
#: ../admin/upgrade.php:403
|
2886 |
#, php-format
|
2887 |
msgid "Rebuild album structure : %s / %s albums"
|
2888 |
msgstr "Erzeuge Permalinks für Alben : %s / %s Alben"
|
2889 |
|
2890 |
+
#: ../admin/upgrade.php:460
|
2891 |
msgid "Done."
|
2892 |
msgstr "Fertig."
|
2893 |
|
3022 |
msgid "Insert"
|
3023 |
msgstr "Einfügen"
|
3024 |
|
3025 |
+
#: ../lib/core.php:397
|
3026 |
#, php-format
|
3027 |
msgid "Note : Based on your server memory limit you should not upload larger images then <strong>%d x %d</strong> pixel"
|
3028 |
msgstr "Hinweis: Basierend auf der Speicherbegrenzung auf dem Server, solltest Du keine Bilder grösser als <strong>%d x %d</strong> Pixel hochladen"
|
3052 |
msgid "Not fired"
|
3053 |
msgstr "Nicht ausgelöst"
|
3054 |
|
3055 |
+
#: ../lib/meta.php:430
|
3056 |
msgid "Aperture"
|
3057 |
msgstr "Blende"
|
3058 |
|
3059 |
+
#: ../lib/meta.php:431
|
3060 |
+
#: ../lib/meta.php:456
|
3061 |
msgid "Credit"
|
3062 |
msgstr "Autor"
|
3063 |
|
3064 |
+
#: ../lib/meta.php:432
|
3065 |
msgid "Camera"
|
3066 |
msgstr "Kamera"
|
3067 |
|
3068 |
+
#: ../lib/meta.php:433
|
3069 |
msgid "Caption"
|
3070 |
msgstr "Beschreibung"
|
3071 |
|
3072 |
+
#: ../lib/meta.php:435
|
3073 |
msgid "Copyright"
|
3074 |
msgstr "Rechte"
|
3075 |
|
3076 |
+
#: ../lib/meta.php:436
|
3077 |
msgid "Focal length"
|
3078 |
msgstr "Brennweite"
|
3079 |
|
3080 |
+
#: ../lib/meta.php:437
|
3081 |
msgid "ISO"
|
3082 |
msgstr "ISO"
|
3083 |
|
3084 |
+
#: ../lib/meta.php:438
|
3085 |
msgid "Shutter speed"
|
3086 |
msgstr "Belichtungszeit"
|
3087 |
|
3088 |
+
#: ../lib/meta.php:442
|
3089 |
msgid "Subject"
|
3090 |
msgstr "Betreff"
|
3091 |
|
3092 |
+
#: ../lib/meta.php:443
|
3093 |
msgid "Make"
|
3094 |
msgstr "Hersteller"
|
3095 |
|
3096 |
+
#: ../lib/meta.php:444
|
3097 |
msgid "Edit Status"
|
3098 |
msgstr "Ändere Status"
|
3099 |
|
3100 |
+
#: ../lib/meta.php:445
|
3101 |
msgid "Category"
|
3102 |
msgstr "Kategorie"
|
3103 |
|
3104 |
+
#: ../lib/meta.php:446
|
3105 |
msgid "Keywords"
|
3106 |
msgstr "Schlüsselwörter"
|
3107 |
|
3108 |
+
#: ../lib/meta.php:447
|
3109 |
msgid "Date Created"
|
3110 |
msgstr "erstellt (Datum)"
|
3111 |
|
3112 |
+
#: ../lib/meta.php:448
|
3113 |
msgid "Time Created"
|
3114 |
msgstr "erstellt (Zeit)"
|
3115 |
|
3116 |
+
#: ../lib/meta.php:449
|
3117 |
msgid "Author Position"
|
3118 |
msgstr "Autor Position"
|
3119 |
|
3120 |
+
#: ../lib/meta.php:450
|
3121 |
msgid "City"
|
3122 |
msgstr "Stadt"
|
3123 |
|
3124 |
+
#: ../lib/meta.php:451
|
3125 |
msgid "Location"
|
3126 |
msgstr "Ort"
|
3127 |
|
3128 |
+
#: ../lib/meta.php:452
|
3129 |
msgid "Province/State"
|
3130 |
msgstr "Staat / PLZ"
|
3131 |
|
3132 |
+
#: ../lib/meta.php:453
|
3133 |
msgid "Country code"
|
3134 |
msgstr "Landescode"
|
3135 |
|
3136 |
+
#: ../lib/meta.php:454
|
3137 |
msgid "Country"
|
3138 |
msgstr "Land"
|
3139 |
|
3140 |
+
#: ../lib/meta.php:455
|
3141 |
msgid "Headline"
|
3142 |
msgstr "Kopfzeile"
|
3143 |
|
3144 |
+
#: ../lib/meta.php:457
|
3145 |
msgid "Source"
|
3146 |
msgstr "Quelle"
|
3147 |
|
3148 |
+
#: ../lib/meta.php:458
|
3149 |
msgid "Copyright Notice"
|
3150 |
msgstr "Copyright Hinweise / Credits"
|
3151 |
|
3152 |
+
#: ../lib/meta.php:459
|
3153 |
msgid "Contact"
|
3154 |
msgstr "Kontakt"
|
3155 |
|
3156 |
+
#: ../lib/meta.php:460
|
3157 |
msgid "Last modified"
|
3158 |
msgstr "Zuletzt geändert"
|
3159 |
|
3160 |
+
#: ../lib/meta.php:461
|
3161 |
msgid "Program tool"
|
3162 |
msgstr "Programm"
|
3163 |
|
3164 |
+
#: ../lib/meta.php:462
|
3165 |
msgid "Format"
|
3166 |
msgstr "Format"
|
3167 |
|
3168 |
+
#: ../lib/meta.php:463
|
3169 |
msgid "Image Width"
|
3170 |
msgstr "Breite"
|
3171 |
|
3172 |
+
#: ../lib/meta.php:464
|
3173 |
msgid "Image Height"
|
3174 |
msgstr "Höhe"
|
3175 |
|
3176 |
+
#: ../lib/meta.php:465
|
3177 |
msgid "Flash"
|
3178 |
msgstr "Blitz"
|
3179 |
|
3357 |
msgstr "Konnte das Album nicht aktualisieren"
|
3358 |
|
3359 |
#: ../view/album-compact.php:32
|
3360 |
+
#: ../view/album-extend.php:30
|
3361 |
msgid "Photos"
|
3362 |
msgstr "Fotos"
|
3363 |
|
3364 |
#: ../view/gallery-caption.php:32
|
|
|
3365 |
#: ../view/gallery.php:32
|
3366 |
#: ../widgets/media-rss-widget.php:122
|
3367 |
msgid "[View with PicLens]"
|
3369 |
|
3370 |
#: ../view/imagebrowser-caption.php:26
|
3371 |
#: ../view/imagebrowser-exif.php:30
|
|
|
3372 |
#: ../view/imagebrowser.php:26
|
3373 |
msgid "Back"
|
3374 |
msgstr "Zurück"
|
3375 |
|
3376 |
#: ../view/imagebrowser-caption.php:29
|
3377 |
#: ../view/imagebrowser-exif.php:33
|
|
|
3378 |
#: ../view/imagebrowser.php:29
|
3379 |
msgid "Next"
|
3380 |
msgstr "Vor"
|
3381 |
|
3382 |
#: ../view/imagebrowser-caption.php:31
|
3383 |
#: ../view/imagebrowser-exif.php:35
|
|
|
3384 |
#: ../view/imagebrowser.php:31
|
3385 |
msgid "of"
|
3386 |
msgstr "von"
|
3540 |
msgid "Invalid MediaRSS command"
|
3541 |
msgstr "Ungültiger Media-RSS-Befehl"
|
3542 |
|
3543 |
+
#~ msgid "Currently not used, prepare database for upcoming version"
|
3544 |
+
#~ msgstr "Derzeit nicht genutzt, Vorbereitung für kommende Versionen"
|
3545 |
+
|
3546 |
+
#~ msgid "Send a gift to show your appreciation."
|
3547 |
+
#~ msgstr "Schau doch einfach auf meinen Wunschzettel."
|
3548 |
+
|
3549 |
+
#~ msgid "«"
|
3550 |
+
#~ msgstr "«"
|
3551 |
+
|
3552 |
+
#~ msgid "»"
|
3553 |
+
#~ msgstr "»"
|
3554 |
+
|
3555 |
+
#~ msgid "Displaying %s–%s of %s"
|
3556 |
+
#~ msgstr "Zeige %s–%s von %s"
|
3557 |
+
|
3558 |
#~ msgid "Delete album ?"
|
3559 |
#~ msgstr "Album löschen ?"
|
3560 |
|
lang/nggallery.pot
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: NextGEN Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Alex Rabe\n"
|
8 |
"Language-Team: Alex Rabe\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -22,60 +22,60 @@ msgid "<strong>Translation by : </strong><a target=\"_blank\" href=\"http://alex
|
|
22 |
msgstr ""
|
23 |
|
24 |
#: ../nggallery.php:98
|
25 |
-
msgid "<strong>This translation is not yet updated for Version 1.
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: ../nggallery.php:
|
29 |
msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB or higher"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: ../nggallery.php:
|
33 |
msgid "Please update the database of NextGEN Gallery."
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: ../nggallery.php:
|
37 |
msgid "Click here to proceed."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: ../nggallery.php:
|
41 |
msgid "Picture tag"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: ../nggallery.php:
|
45 |
msgid "Picture tag: %2$l."
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: ../nggallery.php:
|
49 |
msgid "Separate picture tags with commas."
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../nggallery.php:
|
53 |
msgid "L O A D I N G"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: ../nggallery.php:
|
57 |
msgid "Click to Close"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: ../nggallery.php:
|
61 |
msgid "loading"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: ../nggallery.php:
|
65 |
-
#: ../nggfunctions.php:
|
66 |
-
#: ../admin/admin.php:
|
67 |
msgid "Overview"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: ../nggallery.php:
|
71 |
msgid "Get help"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: ../nggallery.php:
|
75 |
msgid "Contribute"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: ../nggallery.php:
|
79 |
msgid "Donate"
|
80 |
msgstr ""
|
81 |
|
@@ -83,20 +83,20 @@ msgstr ""
|
|
83 |
msgid "The <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player</a> and <a href=\"http://www.mozilla.com/firefox/\">a browser with Javascript support</a> are needed."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: ../nggfunctions.php:
|
87 |
-
#: ../nggfunctions.php:
|
88 |
msgid "[Gallery not found]"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: ../nggfunctions.php:
|
92 |
msgid "[Album not found]"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: ../nggfunctions.php:
|
96 |
msgid "[SinglePic not found]"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: ../nggfunctions.php:
|
100 |
msgid "Related images for"
|
101 |
msgstr ""
|
102 |
|
@@ -225,7 +225,7 @@ msgstr ""
|
|
225 |
#: ../admin/album.php:142
|
226 |
#: ../admin/edit-thumbnail.php:19
|
227 |
#: ../admin/edit-thumbnail.php:22
|
228 |
-
#: ../admin/manage.php:
|
229 |
msgid "Cheatin’ uh?"
|
230 |
msgstr ""
|
231 |
|
@@ -238,326 +238,326 @@ msgid "Upload failed! "
|
|
238 |
msgstr ""
|
239 |
|
240 |
#: ../admin/addgallery.php:90
|
241 |
-
#: ../admin/functions.php:
|
242 |
-
#: ../admin/functions.php:
|
243 |
msgid "No gallery selected !"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../admin/addgallery.php:
|
247 |
msgid "Image Files"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../admin/addgallery.php:
|
251 |
-
#: ../admin/addgallery.php:
|
252 |
msgid "remove"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: ../admin/addgallery.php:
|
256 |
-
#: ../admin/addgallery.php:
|
257 |
msgid "Browse..."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: ../admin/addgallery.php:
|
261 |
-
#: ../admin/addgallery.php:
|
262 |
-
#: ../admin/addgallery.php:
|
263 |
msgid "Upload images"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: ../admin/addgallery.php:
|
267 |
-
#: ../admin/addgallery.php:
|
268 |
msgid "Upload Images"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../admin/addgallery.php:
|
272 |
-
#: ../admin/addgallery.php:
|
273 |
-
#: ../admin/manage-galleries.php:
|
274 |
-
#: ../admin/manage-galleries.php:
|
275 |
msgid "Add new gallery"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../admin/addgallery.php:
|
279 |
-
#: ../admin/addgallery.php:
|
280 |
msgid "Upload a Zip-File"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: ../admin/addgallery.php:
|
284 |
-
#: ../admin/addgallery.php:
|
285 |
msgid "Import image folder"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: ../admin/addgallery.php:
|
289 |
-
#: ../admin/manage-galleries.php:
|
290 |
msgid "New Gallery"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: ../admin/addgallery.php:
|
294 |
-
#: ../admin/manage-galleries.php:
|
295 |
msgid "Create a new , empty gallery below the folder"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: ../admin/addgallery.php:
|
299 |
-
#: ../admin/manage-galleries.php:
|
300 |
msgid "Allowed characters for file and folder names are"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: ../admin/addgallery.php:
|
304 |
msgid "Add gallery"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: ../admin/addgallery.php:
|
308 |
msgid "Select Zip-File"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../admin/addgallery.php:
|
312 |
msgid "Upload a zip file with images"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../admin/addgallery.php:
|
316 |
msgid "or enter a Zip-File URL"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../admin/addgallery.php:
|
320 |
msgid "Import a zip file with images from a url"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../admin/addgallery.php:
|
324 |
-
#: ../admin/addgallery.php:
|
325 |
msgid "in to"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: ../admin/addgallery.php:
|
329 |
msgid "a new gallery"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: ../admin/addgallery.php:
|
333 |
msgid "Note : The upload limit on your server is "
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: ../admin/addgallery.php:
|
337 |
msgid "Start upload"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: ../admin/addgallery.php:
|
341 |
msgid "Import from Server path:"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: ../admin/addgallery.php:
|
345 |
msgid "Note : Change the default path in the gallery settings"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: ../admin/addgallery.php:
|
349 |
msgid " Please note : For safe-mode = ON you need to add the subfolder thumbs manually"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: ../admin/addgallery.php:
|
353 |
msgid "Import folder"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: ../admin/addgallery.php:
|
357 |
msgid "Upload image"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: ../admin/addgallery.php:
|
361 |
msgid "Choose gallery"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: ../admin/addgallery.php:
|
365 |
msgid "The batch upload requires Adobe Flash 10, disable it if you have problems"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: ../admin/addgallery.php:
|
369 |
msgid "Disable flash upload"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: ../admin/addgallery.php:
|
373 |
msgid "Upload multiple files at once by ctrl/shift-selecting in dialog"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: ../admin/addgallery.php:
|
377 |
msgid "Enable flash based upload"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: ../admin/admin.php:
|
381 |
-
#: ../admin/admin.php:
|
382 |
-
#: ../admin/admin.php:
|
383 |
-
#: ../admin/admin.php:
|
384 |
#: ../admin/functions.php:178
|
385 |
-
#: ../admin/manage-galleries.php:
|
386 |
-
#: ../admin/manage-galleries.php:
|
387 |
#: ../admin/manage-images.php:239
|
388 |
msgid "Gallery"
|
389 |
msgid_plural "Galleries"
|
390 |
msgstr[0] ""
|
391 |
msgstr[1] ""
|
392 |
|
393 |
-
#: ../admin/admin.php:
|
394 |
msgid "Add Gallery / Images"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: ../admin/admin.php:
|
398 |
msgid "Manage Gallery"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: ../admin/admin.php:
|
402 |
msgid "Album"
|
403 |
msgid_plural "Albums"
|
404 |
msgstr[0] ""
|
405 |
msgstr[1] ""
|
406 |
|
407 |
-
#: ../admin/admin.php:
|
408 |
msgid "Tags"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: ../admin/admin.php:
|
412 |
msgid "Options"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../admin/admin.php:
|
416 |
msgid "Style"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../admin/admin.php:
|
420 |
msgid "Roles"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../admin/admin.php:
|
424 |
msgid "About this Gallery"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: ../admin/admin.php:
|
428 |
msgid "About"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../admin/admin.php:
|
432 |
msgid "NextGEN Gallery"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../admin/admin.php:
|
436 |
-
#: ../admin/admin.php:
|
437 |
msgid "Reset / Uninstall"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../admin/admin.php:
|
441 |
msgid "Network settings"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ../admin/admin.php:
|
445 |
#, php-format
|
446 |
msgid "Thanks for using this plugin, I hope you are satisfied ! If you would like to support the further development, please consider a <strong><a href=\"%s\">donation</a></strong>! If you still need some help, please post your questions <a href=\"http://wordpress.org/tags/nextgen-gallery?forum_id=10\">here</a> ."
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: ../admin/admin.php:
|
450 |
msgid "OK, hide this message now !"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: ../admin/admin.php:
|
454 |
msgid "You do not have the correct permission"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: ../admin/admin.php:
|
458 |
msgid "Unexpected Error"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: ../admin/admin.php:
|
462 |
msgid "A failure occurred"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: ../admin/admin.php:
|
466 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Introduction</a>"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: ../admin/admin.php:
|
470 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Setup</a>"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: ../admin/admin.php:
|
474 |
msgid "<a href=\"http://alexrabe.de/wordpress-plugins/nextgen-gallery/languages/\" target=\"_blank\">Translation by alex rabe</a>"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ../admin/admin.php:
|
478 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Roles / Capabilities</a>"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../admin/admin.php:
|
482 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Styles</a>"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../admin/admin.php:
|
486 |
msgid "Templates"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../admin/admin.php:
|
490 |
-
#: ../admin/admin.php:
|
491 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Gallery management</a>"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: ../admin/admin.php:
|
495 |
msgid "Gallery example"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: ../admin/admin.php:
|
499 |
-
#: ../admin/admin.php:
|
500 |
msgid "Gallery tags"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: ../admin/admin.php:
|
504 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Album management</a>"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: ../admin/admin.php:
|
508 |
msgid "Album example"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: ../admin/admin.php:
|
512 |
-
#: ../admin/admin.php:
|
513 |
msgid "Album tags"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: ../admin/admin.php:
|
517 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Gallery tags</a>"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: ../admin/admin.php:
|
521 |
msgid "Related images"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: ../admin/admin.php:
|
525 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-image-management/\" target=\"_blank\">Image management</a>"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: ../admin/admin.php:
|
529 |
msgid "Custom fields"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: ../admin/admin.php:
|
533 |
msgid "Get help with NextGEN Gallery"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: ../admin/admin.php:
|
537 |
msgid "More Help & Info"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: ../admin/admin.php:
|
541 |
msgid "<a href=\"http://wordpress.org/tags/nextgen-gallery?forum_id=10\" target=\"_blank\">Support Forums</a>"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: ../admin/admin.php:
|
545 |
msgid "FAQ"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: ../admin/admin.php:
|
549 |
msgid "Feature request"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: ../admin/admin.php:
|
553 |
msgid "Get your language pack"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: ../admin/admin.php:
|
557 |
msgid "Contribute development"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: ../admin/admin.php:
|
561 |
msgid "Download latest version"
|
562 |
msgstr ""
|
563 |
|
@@ -565,7 +565,7 @@ msgstr ""
|
|
565 |
msgid "You are not allowed to be here"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../admin/ajax.php:
|
569 |
#, php-format
|
570 |
msgid "Could create image with %s x %s pixel"
|
571 |
msgstr ""
|
@@ -607,8 +607,8 @@ msgid "Edit album"
|
|
607 |
msgstr ""
|
608 |
|
609 |
#: ../admin/album.php:302
|
610 |
-
#: ../admin/manage-galleries.php:
|
611 |
-
#: ../admin/manage-images.php:
|
612 |
msgid "Delete"
|
613 |
msgstr ""
|
614 |
|
@@ -688,24 +688,24 @@ msgid "Not linked"
|
|
688 |
msgstr ""
|
689 |
|
690 |
#: ../admin/album.php:455
|
691 |
-
#: ../admin/manage-galleries.php:
|
692 |
-
#: ../admin/manage-galleries.php:
|
693 |
-
#: ../admin/manage-galleries.php:
|
694 |
-
#: ../admin/manage-images.php:
|
695 |
-
#: ../admin/manage-images.php:
|
696 |
-
#: ../admin/manage-images.php:
|
697 |
-
#: ../admin/manage-images.php:
|
698 |
msgid "OK"
|
699 |
msgstr ""
|
700 |
|
701 |
#: ../admin/album.php:457
|
702 |
-
#: ../admin/manage-galleries.php:
|
703 |
-
#: ../admin/manage-galleries.php:
|
704 |
-
#: ../admin/manage-galleries.php:
|
705 |
-
#: ../admin/manage-images.php:
|
706 |
-
#: ../admin/manage-images.php:
|
707 |
-
#: ../admin/manage-images.php:
|
708 |
-
#: ../admin/manage-images.php:
|
709 |
msgid "Cancel"
|
710 |
msgstr ""
|
711 |
|
@@ -766,7 +766,7 @@ msgstr ""
|
|
766 |
|
767 |
#: ../admin/functions.php:76
|
768 |
#: ../admin/functions.php:85
|
769 |
-
#: ../admin/functions.php:
|
770 |
msgid "Unable to create directory "
|
771 |
msgstr ""
|
772 |
|
@@ -811,199 +811,199 @@ msgstr ""
|
|
811 |
msgid "successfully created!"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: ../admin/functions.php:
|
815 |
-
#: ../admin/functions.php:
|
816 |
-
#: ../admin/manage-galleries.php:
|
817 |
-
#: ../admin/manage-galleries.php:
|
818 |
-
#: ../admin/manage-images.php:
|
819 |
-
#: ../admin/manage-images.php:
|
820 |
-
#: ../admin/manage.php:
|
821 |
-
#: ../admin/manage.php:
|
822 |
msgid "Create new thumbnails"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: ../admin/functions.php:
|
826 |
msgid " picture(s) successfully added"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: ../admin/functions.php:
|
830 |
-
#: ../admin/functions.php:
|
831 |
-
#: ../admin/functions.php:
|
832 |
-
#: ../admin/functions.php:
|
833 |
-
#: ../admin/functions.php:
|
834 |
msgid "Object didn't contain correct data"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: ../admin/functions.php:
|
838 |
msgid " is not writeable "
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: ../admin/functions.php:
|
842 |
-
#: ../admin/functions.php:
|
843 |
-
#: ../admin/functions.php:
|
844 |
-
#: ../admin/functions.php:
|
845 |
msgid " is not writeable"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: ../admin/functions.php:
|
849 |
msgid "File do not exists"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: ../admin/functions.php:
|
853 |
msgid "Couldn't restore original image"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: ../admin/functions.php:
|
857 |
msgid "(Error : Couldn't not update data base)"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: ../admin/functions.php:
|
861 |
msgid "(Error : Couldn't not update meta data)"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: ../admin/functions.php:
|
865 |
msgid "(Error : Couldn't not find image)"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: ../admin/functions.php:
|
869 |
msgid "No valid URL path "
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: ../admin/functions.php:
|
873 |
msgid "Import via cURL failed."
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: ../admin/functions.php:
|
877 |
msgid "Uploaded file was no or a faulty zip file ! The server recognized : "
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: ../admin/functions.php:
|
881 |
msgid "Could not get a valid foldername"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: ../admin/functions.php:
|
885 |
#, php-format
|
886 |
msgid "Unable to create directory %s. Is its parent directory writable by the server?"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: ../admin/functions.php:
|
890 |
msgid "Zip-File successfully unpacked"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: ../admin/functions.php:
|
894 |
-
#: ../admin/functions.php:
|
895 |
msgid "Failure in database, no gallery path set !"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../admin/functions.php:
|
899 |
-
#: ../admin/functions.php:
|
900 |
msgid "is no valid image file!"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: ../admin/functions.php:
|
904 |
-
#: ../admin/functions.php:
|
905 |
-
#: ../admin/functions.php:
|
906 |
#, php-format
|
907 |
msgid "Unable to write to directory %s. Is this directory writable by the server?"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: ../admin/functions.php:
|
911 |
-
#: ../admin/functions.php:
|
912 |
msgid "Error, the file could not be moved to : "
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: ../admin/functions.php:
|
916 |
-
#: ../admin/functions.php:
|
917 |
msgid "Error, the file permissions could not be set"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: ../admin/functions.php:
|
921 |
msgid " Image(s) successfully added"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: ../admin/functions.php:
|
925 |
msgid "Invalid upload. Error Code : "
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: ../admin/functions.php:
|
929 |
#, php-format
|
930 |
msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: ../admin/functions.php:
|
934 |
#, php-format
|
935 |
msgid "When safe_mode is on, PHP checks to see if the owner (%s) of the current script matches the owner (%s) of the file to be operated on by a file function or its directory"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: ../admin/functions.php:
|
939 |
-
#: ../admin/functions.php:
|
940 |
msgid "The destination gallery does not exist"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: ../admin/functions.php:
|
944 |
#, php-format
|
945 |
msgid "Failed to move image %1$s to %2$s"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: ../admin/functions.php:
|
949 |
#, php-format
|
950 |
msgid "Moved %1$s picture(s) to gallery : %2$s ."
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: ../admin/functions.php:
|
954 |
#, php-format
|
955 |
msgid "Failed to copy image %1$s to %2$s"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: ../admin/functions.php:
|
959 |
#, php-format
|
960 |
msgid "Failed to copy database row for picture %s"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: ../admin/functions.php:
|
964 |
#, php-format
|
965 |
msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) » The file already existed in the destination gallery."
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: ../admin/functions.php:
|
969 |
#, php-format
|
970 |
msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: ../admin/functions.php:
|
974 |
#, php-format
|
975 |
msgid "Copied %1$s picture(s) to gallery: %2$s ."
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: ../admin/functions.php:
|
979 |
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: ../admin/functions.php:
|
983 |
msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: ../admin/functions.php:
|
987 |
msgid "The uploaded file was only partially uploaded"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: ../admin/functions.php:
|
991 |
msgid "No file was uploaded"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: ../admin/functions.php:
|
995 |
msgid "Missing a temporary folder"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: ../admin/functions.php:
|
999 |
msgid "Failed to write file to disk"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: ../admin/functions.php:
|
1003 |
msgid "File upload stopped by extension"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: ../admin/functions.php:
|
1007 |
msgid "Unknown upload error"
|
1008 |
msgstr ""
|
1009 |
|
@@ -1015,39 +1015,29 @@ msgstr ""
|
|
1015 |
msgid "NextGEN Gallery : Tables could not created, please check your database settings"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: ../admin/install.php:
|
1019 |
msgid "[Show as slideshow]"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: ../admin/install.php:
|
1023 |
msgid "[Show picture list]"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: ../admin/manage-galleries.php:
|
1027 |
-
#: ../admin/manage-images.php:
|
1028 |
-
msgid "«"
|
1029 |
-
msgstr ""
|
1030 |
-
|
1031 |
-
#: ../admin/manage-galleries.php:21
|
1032 |
-
#: ../admin/manage-images.php:56
|
1033 |
-
msgid "»"
|
1034 |
-
msgstr ""
|
1035 |
-
|
1036 |
-
#: ../admin/manage-galleries.php:62
|
1037 |
-
#: ../admin/manage-images.php:170
|
1038 |
msgid "No images selected"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: ../admin/manage-galleries.php:
|
1042 |
-
#: ../admin/manage-galleries.php:
|
1043 |
-
#: ../admin/manage-images.php:
|
1044 |
-
#: ../admin/manage-images.php:
|
1045 |
-
#: ../admin/manage.php:
|
1046 |
-
#: ../admin/manage.php:
|
1047 |
msgid "Resize images"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: ../admin/manage-galleries.php:
|
1051 |
#, php-format
|
1052 |
msgid ""
|
1053 |
"You are about to start the bulk edit for %s galleries \n"
|
@@ -1055,147 +1045,139 @@ msgid ""
|
|
1055 |
" 'Cancel' to stop, 'OK' to proceed."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: ../admin/manage-galleries.php:
|
1059 |
-
#: ../admin/manage-galleries.php:
|
1060 |
#: ../admin/manage-images.php:225
|
1061 |
#: ../admin/manage-images.php:228
|
1062 |
msgid "Search Images"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: ../admin/manage-galleries.php:
|
1066 |
-
#: ../admin/manage-images.php:
|
1067 |
msgid "Bulk actions"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: ../admin/manage-galleries.php:
|
1071 |
-
#: ../admin/manage-images.php:
|
1072 |
-
#: ../admin/manage.php:
|
1073 |
-
#: ../admin/manage.php:
|
1074 |
msgid "Set watermark"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: ../admin/manage-galleries.php:
|
1078 |
-
#: ../admin/manage-images.php:
|
1079 |
-
#: ../admin/manage.php:
|
1080 |
-
#: ../admin/manage.php:
|
1081 |
msgid "Import metadata"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: ../admin/manage-galleries.php:
|
1085 |
-
#: ../admin/manage-images.php:
|
1086 |
-
#: ../admin/manage.php:
|
1087 |
-
#: ../admin/manage.php:
|
1088 |
msgid "Recover from backup"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: ../admin/manage-galleries.php:
|
1092 |
-
#: ../admin/manage-images.php:
|
1093 |
msgid "Apply"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: ../admin/manage-galleries.php:
|
1097 |
-
#: ../admin/manage-galleries.php:266
|
1098 |
-
#: ../admin/manage-images.php:330
|
1099 |
-
#: ../admin/manage-images.php:514
|
1100 |
-
#, php-format
|
1101 |
-
msgid "Displaying %s–%s of %s"
|
1102 |
-
msgstr ""
|
1103 |
-
|
1104 |
-
#: ../admin/manage-galleries.php:219
|
1105 |
msgid "Edit"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: ../admin/manage-galleries.php:
|
1109 |
-
#: ../admin/manage-images.php:
|
1110 |
msgid "No entries found"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: ../admin/manage-galleries.php:
|
1114 |
-
#: ../admin/manage-images.php:
|
1115 |
msgid "Resize Images to"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: ../admin/manage-galleries.php:
|
1119 |
-
#: ../admin/manage-images.php:
|
1120 |
msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: ../admin/manage-galleries.php:
|
1124 |
-
#: ../admin/manage-images.php:
|
1125 |
msgid "Width x height (in pixel)"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: ../admin/manage-galleries.php:
|
1129 |
-
#: ../admin/manage-images.php:
|
1130 |
msgid "These values are maximum values "
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: ../admin/manage-galleries.php:
|
1134 |
-
#: ../admin/manage-images.php:
|
1135 |
msgid "Set fix dimension"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: ../admin/manage-galleries.php:
|
1139 |
-
#: ../admin/manage-images.php:
|
1140 |
msgid "Ignore the aspect ratio, no portrait thumbnails"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: ../admin/manage-galleries.php:
|
1144 |
-
#: ../admin/manage-images.php:
|
1145 |
msgid "ID"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: ../admin/manage-galleries.php:
|
1149 |
#: ../admin/manage-images.php:266
|
1150 |
-
#: ../admin/manage-images.php:
|
1151 |
msgid "Description"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: ../admin/manage-galleries.php:
|
1155 |
#: ../admin/manage-images.php:287
|
1156 |
msgid "Author"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: ../admin/manage-galleries.php:
|
1160 |
msgid "Page ID"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: ../admin/manage-galleries.php:
|
1164 |
msgid "Image"
|
1165 |
msgid_plural "Images"
|
1166 |
msgstr[0] ""
|
1167 |
msgstr[1] ""
|
1168 |
|
1169 |
-
#: ../admin/manage-images.php:
|
1170 |
msgid "Gallery not found."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: ../admin/manage-images.php:
|
1174 |
msgid "Sorry, you have no access here"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: ../admin/manage-images.php:
|
1178 |
msgid "Copy image to..."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: ../admin/manage-images.php:
|
1182 |
msgid "Move image to..."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: ../admin/manage-images.php:
|
1186 |
msgid "Add new tags"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: ../admin/manage-images.php:
|
1190 |
-
#: ../admin/manage-images.php:
|
1191 |
msgid "Delete tags"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: ../admin/manage-images.php:
|
1195 |
msgid "Overwrite"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: ../admin/manage-images.php:
|
1199 |
#, php-format
|
1200 |
msgid ""
|
1201 |
"You are about to start the bulk edit for %s images \n"
|
@@ -1245,124 +1227,124 @@ msgid "Scan Folder for new images"
|
|
1245 |
msgstr ""
|
1246 |
|
1247 |
#: ../admin/manage-images.php:318
|
1248 |
-
#: ../admin/manage-images.php:
|
1249 |
-
#: ../admin/manage-images.php:
|
1250 |
msgid "Save Changes"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: ../admin/manage-images.php:
|
1254 |
msgid "Delete images"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: ../admin/manage-images.php:
|
1258 |
msgid "Rotate images clockwise"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: ../admin/manage-images.php:
|
1262 |
msgid "Rotate images counter-clockwise"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: ../admin/manage-images.php:
|
1266 |
msgid "Copy to..."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: ../admin/manage-images.php:
|
1270 |
msgid "Move to..."
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: ../admin/manage-images.php:
|
1274 |
msgid "Add tags"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: ../admin/manage-images.php:
|
1278 |
msgid "Overwrite tags"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: ../admin/manage-images.php:
|
1282 |
msgid "Sort gallery"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: ../admin/manage-images.php:
|
1286 |
msgid "pixel"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: ../admin/manage-images.php:
|
1290 |
#, php-format
|
1291 |
msgid "View \"%s\""
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: ../admin/manage-images.php:
|
1295 |
msgid "View"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: ../admin/manage-images.php:
|
1299 |
msgid "Show Meta data"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: ../admin/manage-images.php:
|
1303 |
msgid "Meta"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: ../admin/manage-images.php:
|
1307 |
msgid "Customize thumbnail"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: ../admin/manage-images.php:
|
1311 |
msgid "Edit thumb"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: ../admin/manage-images.php:
|
1315 |
msgid "Rotate"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: ../admin/manage-images.php:
|
1319 |
msgid "Publish this image"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: ../admin/manage-images.php:
|
1323 |
msgid "Publish"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: ../admin/manage-images.php:
|
1327 |
msgid "Recover"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: ../admin/manage-images.php:
|
1331 |
#, php-format
|
1332 |
msgid "Recover \"%s\" ?"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: ../admin/manage-images.php:
|
1336 |
#, php-format
|
1337 |
msgid "Delete \"%s\" ?"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: ../admin/manage-images.php:
|
1341 |
msgid "Enter the tags"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: ../admin/manage-images.php:
|
1345 |
msgid "Select the destination gallery:"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: ../admin/manage-images.php:
|
1349 |
msgid "Thumbnail"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: ../admin/manage-images.php:
|
1353 |
#: ../admin/manage-sort.php:77
|
1354 |
msgid "Filename"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: ../admin/manage-images.php:
|
1358 |
msgid "Alt & Title Text"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: ../admin/manage-images.php:
|
1362 |
msgid "Tags (comma separated list)"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: ../admin/manage-images.php:
|
1366 |
msgid "exclude"
|
1367 |
msgstr ""
|
1368 |
|
@@ -1410,52 +1392,59 @@ msgstr ""
|
|
1410 |
msgid "Descending"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: ../admin/manage.php:
|
1414 |
msgid "Picture"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: ../admin/manage.php:
|
1418 |
msgid "deleted successfully"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: ../admin/manage.php:
|
1422 |
-
#: ../admin/manage.php:
|
1423 |
msgid "Operation successful. Please clear your browser cache."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: ../admin/manage.php:
|
1427 |
msgid "Gallery deleted successfully "
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: ../admin/manage.php:
|
1431 |
-
#: ../admin/manage.php:
|
1432 |
msgid "Rotate images"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: ../admin/manage.php:
|
1436 |
msgid "Pictures deleted successfully "
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: ../admin/manage.php:
|
1440 |
msgid "Tags changed"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: ../admin/manage.php:
|
1444 |
msgid "Update successful"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: ../admin/manage.php:
|
1448 |
msgid "New gallery page ID"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: ../admin/manage.php:
|
1452 |
msgid "created"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: ../admin/manage.php:
|
1456 |
msgid "Published a new post"
|
1457 |
msgstr ""
|
1458 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1459 |
#: ../admin/media-upload.php:166
|
1460 |
msgid "No gallery"
|
1461 |
msgstr ""
|
@@ -1483,7 +1472,7 @@ msgstr ""
|
|
1483 |
|
1484 |
#: ../admin/media-upload.php:232
|
1485 |
#: ../admin/publish.php:57
|
1486 |
-
#: ../admin/settings.php:
|
1487 |
msgid "None"
|
1488 |
msgstr ""
|
1489 |
|
@@ -1506,7 +1495,7 @@ msgid "Right"
|
|
1506 |
msgstr ""
|
1507 |
|
1508 |
#: ../admin/media-upload.php:242
|
1509 |
-
#: ../admin/settings.php:
|
1510 |
msgid "Size"
|
1511 |
msgstr ""
|
1512 |
|
@@ -1576,262 +1565,258 @@ msgid "Donate the work via paypal."
|
|
1576 |
msgstr ""
|
1577 |
|
1578 |
#: ../admin/overview.php:116
|
1579 |
-
msgid "Send a gift to show your appreciation."
|
1580 |
-
msgstr ""
|
1581 |
-
|
1582 |
-
#: ../admin/overview.php:121
|
1583 |
msgid "Help translating it."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: ../admin/overview.php:
|
1587 |
msgid "Running..."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: ../admin/overview.php:
|
1591 |
msgid "Check plugin/theme conflict"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: ../admin/overview.php:
|
1595 |
-
#: ../admin/overview.php:
|
1596 |
-
#: ../admin/overview.php:
|
1597 |
msgid "Not tested"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: ../admin/overview.php:
|
1601 |
msgid "No conflict could be detected"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: ../admin/overview.php:
|
1605 |
msgid "Test failed, disable other plugins & switch to default theme"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: ../admin/overview.php:
|
1609 |
msgid "Test image function"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: ../admin/overview.php:
|
1613 |
msgid "The plugin could create images"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: ../admin/overview.php:
|
1617 |
msgid "Couldn't create image, check your memory limit"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#: ../admin/overview.php:
|
1621 |
msgid "Check theme compatibility"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: ../admin/overview.php:
|
1625 |
msgid "Your theme should work fine with NextGEN Gallery"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: ../admin/overview.php:
|
1629 |
msgid "wp_head()/wp_footer() is missing, contact the theme author"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: ../admin/overview.php:
|
1633 |
msgid "Check plugin"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: ../admin/overview.php:
|
1637 |
msgid "Graphic Library"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: ../admin/overview.php:
|
1641 |
-
#: ../admin/overview.php:
|
1642 |
-
#: ../admin/overview.php:
|
1643 |
-
#: ../admin/overview.php:
|
1644 |
msgid "Loading…"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: ../admin/overview.php:
|
1648 |
-
#: ../admin/overview.php:
|
1649 |
-
#: ../admin/overview.php:
|
1650 |
-
#: ../admin/overview.php:
|
1651 |
msgid "This widget requires JavaScript."
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: ../admin/overview.php:
|
1655 |
msgid "Thanks to all donators..."
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: ../admin/overview.php:
|
1659 |
msgid "View all"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: ../admin/overview.php:
|
1663 |
#, php-format
|
1664 |
msgid "Newsfeed could not be loaded. Check the <a href=\"%s\">front page</a> to check for updates."
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: ../admin/overview.php:
|
1668 |
msgid "Untitled"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: ../admin/overview.php:
|
1672 |
msgid "At a Glance"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: ../admin/overview.php:
|
1676 |
msgid "Upload pictures"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: ../admin/overview.php:
|
1680 |
msgid "Here you can control your images, galleries and albums."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: ../admin/overview.php:
|
1684 |
msgid "Storage Space"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: ../admin/overview.php:
|
1688 |
#, php-format
|
1689 |
msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB</a>"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: ../admin/overview.php:
|
1693 |
msgid "Space Allowed"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: ../admin/overview.php:
|
1697 |
#, php-format
|
1698 |
msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB (%3$s%%)</a>"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: ../admin/overview.php:
|
1702 |
msgid "Space Used"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: ../admin/overview.php:
|
1706 |
msgid "Translation file successful updated. Please reload page."
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: ../admin/overview.php:
|
1710 |
msgid "Reload page"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: ../admin/overview.php:
|
1714 |
msgid "Translation file couldn't be updated"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: ../admin/overview.php:
|
1718 |
msgid "Download"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: ../admin/overview.php:
|
1722 |
msgid "No GD support"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: ../admin/overview.php:
|
1726 |
-
#: ../admin/overview.php:
|
1727 |
-
#: ../admin/overview.php:
|
1728 |
-
#: ../admin/overview.php:
|
1729 |
msgid "Yes"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: ../admin/overview.php:
|
1733 |
-
#: ../admin/overview.php:
|
1734 |
-
#: ../admin/overview.php:
|
1735 |
-
#: ../admin/overview.php:
|
1736 |
msgid "No"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: ../admin/overview.php:
|
1740 |
msgid "Not set"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: ../admin/overview.php:
|
1744 |
-
#: ../admin/overview.php:
|
1745 |
msgid "On"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: ../admin/overview.php:
|
1749 |
-
#: ../admin/overview.php:
|
1750 |
msgid "Off"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: ../admin/overview.php:
|
1754 |
-
#: ../admin/overview.php:
|
1755 |
-
#: ../admin/overview.php:
|
1756 |
-
#: ../admin/overview.php:
|
1757 |
-
#: ../admin/overview.php:
|
1758 |
-
#: ../admin/overview.php:
|
1759 |
msgid "N/A"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: ../admin/overview.php:
|
1763 |
msgid " MByte"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: ../admin/overview.php:
|
1767 |
msgid "Operating System"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: ../admin/overview.php:
|
1771 |
msgid "Server"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: ../admin/overview.php:
|
1775 |
msgid "Memory usage"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: ../admin/overview.php:
|
1779 |
msgid "MYSQL Version"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: ../admin/overview.php:
|
1783 |
msgid "SQL Mode"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: ../admin/overview.php:
|
1787 |
msgid "PHP Version"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: ../admin/overview.php:
|
1791 |
msgid "PHP Safe Mode"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: ../admin/overview.php:
|
1795 |
msgid "PHP Allow URL fopen"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: ../admin/overview.php:
|
1799 |
msgid "PHP Memory Limit"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: ../admin/overview.php:
|
1803 |
msgid "PHP Max Upload Size"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: ../admin/overview.php:
|
1807 |
msgid "PHP Max Post Size"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: ../admin/overview.php:
|
1811 |
msgid "PCRE Backtracking Limit"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#: ../admin/overview.php:
|
1815 |
msgid "PHP Max Script Execute Time"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: ../admin/overview.php:
|
1819 |
msgid "PHP Exif support"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: ../admin/overview.php:
|
1823 |
msgid "PHP IPTC support"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: ../admin/overview.php:
|
1827 |
msgid "PHP XML support"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: ../admin/overview.php:
|
1831 |
msgid "NextGEN Gallery contains some functions which are only available under PHP 5.2. You are using the old PHP 4 version, upgrade now! It's no longer supported by the PHP group. Many shared hosting providers offer both PHP 4 and PHP 5, running simultaneously. Ask your provider if they can do this."
|
1832 |
msgstr ""
|
1833 |
|
1834 |
-
#: ../admin/overview.php:
|
1835 |
msgid "Install"
|
1836 |
msgstr ""
|
1837 |
|
@@ -1927,589 +1912,589 @@ msgstr ""
|
|
1927 |
msgid "Flip horizontally"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: ../admin/settings.php:
|
1931 |
msgid "Cache cleared"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: ../admin/settings.php:
|
1935 |
-
#: ../admin/settings.php:
|
1936 |
msgid "General Options"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: ../admin/settings.php:
|
1940 |
-
#: ../admin/settings.php:
|
1941 |
msgid "Thumbnails"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: ../admin/settings.php:
|
1945 |
msgid "Images"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
-
#: ../admin/settings.php:
|
1949 |
-
#: ../admin/settings.php:
|
1950 |
msgid "Effects"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: ../admin/settings.php:
|
1954 |
-
#: ../admin/settings.php:
|
1955 |
#: ../admin/tinymce/window.php:110
|
1956 |
msgid "Watermark"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: ../admin/settings.php:
|
1960 |
-
#: ../admin/settings.php:
|
1961 |
-
#: ../admin/settings.php:
|
1962 |
#: ../admin/tinymce/window.php:63
|
1963 |
msgid "Slideshow"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: ../admin/settings.php:
|
1967 |
#: ../admin/wpmu.php:68
|
1968 |
msgid "Gallery path"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: ../admin/settings.php:
|
1972 |
msgid "This is the default path for all galleries"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: ../admin/settings.php:
|
1976 |
msgid "Delete image files"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#: ../admin/settings.php:
|
1980 |
msgid "Delete files, when removing a gallery in the database"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: ../admin/settings.php:
|
1984 |
msgid "Activate permalinks"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#: ../admin/settings.php:
|
1988 |
msgid "When you activate this option, you need to update your permalink structure one time."
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#: ../admin/settings.php:
|
1992 |
-
msgid "
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: ../admin/settings.php:
|
1996 |
-
|
1997 |
-
msgid "Proceed now"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: ../admin/settings.php:
|
2001 |
-
|
|
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: ../admin/settings.php:
|
2005 |
msgid "Select graphic library"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#: ../admin/settings.php:
|
2009 |
msgid "GD Library"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: ../admin/settings.php:
|
2013 |
msgid "ImageMagick (Experimental). Path to the library :"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: ../admin/settings.php:
|
2017 |
msgid "Activate Media RSS feed"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: ../admin/settings.php:
|
2021 |
msgid "A RSS feed will be added to you blog header. Useful for CoolIris/PicLens"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: ../admin/settings.php:
|
2025 |
msgid "Activate PicLens/CoolIris support"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: ../admin/settings.php:
|
2029 |
msgid "When you activate this option, some javascript is added to your site footer. Make sure that wp_footer is called in your theme."
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: ../admin/settings.php:
|
2033 |
msgid "Tags / Categories"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: ../admin/settings.php:
|
2037 |
msgid "Activate related images"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: ../admin/settings.php:
|
2041 |
msgid "This option will append related images to every post"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: ../admin/settings.php:
|
2045 |
msgid "Match with"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: ../admin/settings.php:
|
2049 |
msgid "Categories"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: ../admin/settings.php:
|
2053 |
msgid "Max. number of images"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: ../admin/settings.php:
|
2057 |
msgid "0 will show all images"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: ../admin/settings.php:
|
2061 |
-
#: ../admin/settings.php:
|
2062 |
-
#: ../admin/settings.php:
|
2063 |
-
#: ../admin/settings.php:
|
2064 |
-
#: ../admin/settings.php:
|
2065 |
-
#: ../admin/settings.php:
|
2066 |
msgid "More settings"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
-
#: ../admin/settings.php:
|
2070 |
msgid "Thumbnail settings"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: ../admin/settings.php:
|
2074 |
msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: ../admin/settings.php:
|
2078 |
msgid "Thumbnail quality"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: ../admin/settings.php:
|
2082 |
msgid "Image settings"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: ../admin/settings.php:
|
2086 |
msgid "Resize Images"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: ../admin/settings.php:
|
2090 |
msgid "Image quality"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: ../admin/settings.php:
|
2094 |
msgid "Backup original images"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: ../admin/settings.php:
|
2098 |
msgid "Creates a backup for inserted images"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: ../admin/settings.php:
|
2102 |
msgid "Automatically resize"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#: ../admin/settings.php:
|
2106 |
msgid "Automatically resize images on upload."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: ../admin/settings.php:
|
2110 |
msgid "Single picture"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
-
#: ../admin/settings.php:
|
2114 |
msgid "Cache single pictures"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#: ../admin/settings.php:
|
2118 |
msgid "Creates a file for each singlepic settings. Reduce the CPU load"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
-
#: ../admin/settings.php:
|
2122 |
msgid "Clear cache folder"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
-
#: ../admin/settings.php:
|
2126 |
msgid "Deactivate gallery page link"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
-
#: ../admin/settings.php:
|
2130 |
msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
|
2131 |
msgstr ""
|
2132 |
|
2133 |
-
#: ../admin/settings.php:
|
2134 |
msgid "Number of images per page"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
-
#: ../admin/settings.php:
|
2138 |
msgid "0 will disable pagination, all images on one page"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
-
#: ../admin/settings.php:
|
2142 |
msgid "Number of columns"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
-
#: ../admin/settings.php:
|
2146 |
msgid "0 will display as much as possible based on the width of your theme. Setting normally only required for captions below the images"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
-
#: ../admin/settings.php:
|
2150 |
msgid "Integrate slideshow"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
-
#: ../admin/settings.php:
|
2154 |
msgid "Show first"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
-
#: ../admin/settings.php:
|
2158 |
msgid "Show ImageBrowser"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
-
#: ../admin/settings.php:
|
2162 |
msgid "The gallery will open the ImageBrowser instead the effect."
|
2163 |
msgstr ""
|
2164 |
|
2165 |
-
#: ../admin/settings.php:
|
2166 |
msgid "Add hidden images"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
-
#: ../admin/settings.php:
|
2170 |
msgid "If pagination is used, this option will still show all images in the modal window (Thickbox, Lightbox etc.). Note : This increases the page load"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
-
#: ../admin/settings.php:
|
2174 |
msgid "Enable AJAX pagination"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#: ../admin/settings.php:
|
2178 |
msgid "Browse images without reload the page. Note : Works only in combination with Shutter effect"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#: ../admin/settings.php:
|
2182 |
msgid "Sort options"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
-
#: ../admin/settings.php:
|
2186 |
msgid "Sort thumbnails"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
-
#: ../admin/settings.php:
|
2190 |
msgid "Custom order"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#: ../admin/settings.php:
|
2194 |
msgid "File name"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: ../admin/settings.php:
|
2198 |
msgid "Alt / Title text"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#: ../admin/settings.php:
|
2202 |
msgid "Date / Time"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#: ../admin/settings.php:
|
2206 |
msgid "Sort direction"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#: ../admin/settings.php:
|
2210 |
msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Shutter and Thickbox effect will automatic added to your theme."
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#: ../admin/settings.php:
|
2214 |
msgid "With the placeholder"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#: ../admin/settings.php:
|
2218 |
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."
|
2219 |
msgstr ""
|
2220 |
|
2221 |
-
#: ../admin/settings.php:
|
2222 |
msgid "JavaScript Thumbnail effect"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: ../admin/settings.php:
|
2226 |
msgid "Thickbox"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#: ../admin/settings.php:
|
2230 |
msgid "Lightbox"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: ../admin/settings.php:
|
2234 |
msgid "Highslide"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: ../admin/settings.php:
|
2238 |
msgid "Shutter"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: ../admin/settings.php:
|
2242 |
msgid "Custom"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: ../admin/settings.php:
|
2246 |
msgid "Link Code line"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: ../admin/settings.php:
|
2250 |
msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: ../admin/settings.php:
|
2254 |
msgid "Preview"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: ../admin/settings.php:
|
2258 |
-
#: ../admin/settings.php:
|
2259 |
msgid "Position"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#: ../admin/settings.php:
|
2263 |
msgid "Offset"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
-
#: ../admin/settings.php:
|
2267 |
msgid "Use image as watermark"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: ../admin/settings.php:
|
2271 |
msgid "URL to file"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: ../admin/settings.php:
|
2275 |
msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: ../admin/settings.php:
|
2279 |
msgid "Use text as watermark"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: ../admin/settings.php:
|
2283 |
msgid "Font"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: ../admin/settings.php:
|
2287 |
msgid "This function will not work, cause you need the FreeType library"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: ../admin/settings.php:
|
2291 |
msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: ../admin/settings.php:
|
2295 |
msgid "Color"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: ../admin/settings.php:
|
2299 |
msgid "(hex w/o #)"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
#: ../admin/settings.php:
|
2303 |
msgid "Text"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: ../admin/settings.php:
|
2307 |
msgid "Opaque"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: ../admin/settings.php:
|
2311 |
msgid "Default size (W x H)"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: ../admin/settings.php:
|
2315 |
msgid "Duration time"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: ../admin/settings.php:
|
2319 |
msgid "sec."
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: ../admin/settings.php:
|
2323 |
-
#: ../admin/settings.php:
|
2324 |
msgid "Transition / Fade effect"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: ../admin/settings.php:
|
2328 |
-
#: ../admin/settings.php:
|
2329 |
msgid "fade"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
-
#: ../admin/settings.php:
|
2333 |
msgid "blindX"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: ../admin/settings.php:
|
2337 |
msgid "cover"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#: ../admin/settings.php:
|
2341 |
msgid "scrollUp"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#: ../admin/settings.php:
|
2345 |
msgid "scrollDown"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: ../admin/settings.php:
|
2349 |
msgid "shuffle"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#: ../admin/settings.php:
|
2353 |
msgid "toss"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#: ../admin/settings.php:
|
2357 |
msgid "wipe"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#: ../admin/settings.php:
|
2361 |
msgid "See here for more information about the effects :"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: ../admin/settings.php:
|
2365 |
msgid "Settings for the JW Image Rotator"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#: ../admin/settings.php:
|
2369 |
msgid "The settings are only used in the JW Image Rotator Version"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
-
#: ../admin/settings.php:
|
2373 |
msgid "See more information for the Flash Player on the web page"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: ../admin/settings.php:
|
2377 |
msgid "The path to imagerotator.swf is not defined, the slideshow will not work."
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#: ../admin/settings.php:
|
2381 |
msgid "If you would like to use the JW Image Rotatator, please download the player <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" target=\"_blank\" >here</a> and upload it to your Upload folder (Default is wp-content/uploads)."
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#: ../admin/settings.php:
|
2385 |
msgid "Enable flash slideshow"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
-
#: ../admin/settings.php:
|
2389 |
msgid "Integrate the flash based slideshow for all flash supported devices"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
-
#: ../admin/settings.php:
|
2393 |
msgid "Path to the Imagerotator (URL)"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
-
#: ../admin/settings.php:
|
2397 |
msgid "Search now"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
-
#: ../admin/settings.php:
|
2401 |
msgid "Press the button to search automatically for the imagerotator, if you uploaded it to wp-content/uploads or a subfolder"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
#: ../admin/settings.php:
|
2405 |
msgid "Shuffle mode"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
-
#: ../admin/settings.php:
|
2409 |
msgid "Show next image on click"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
-
#: ../admin/settings.php:
|
2413 |
msgid "Show navigation bar"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: ../admin/settings.php:
|
2417 |
msgid "Show loading icon"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
-
#: ../admin/settings.php:
|
2421 |
msgid "Use watermark logo"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
-
#: ../admin/settings.php:
|
2425 |
msgid "You can change the logo at the watermark settings"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: ../admin/settings.php:
|
2429 |
msgid "Stretch image"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: ../admin/settings.php:
|
2433 |
msgid "true"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: ../admin/settings.php:
|
2437 |
msgid "false"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
#: ../admin/settings.php:
|
2441 |
msgid "fit"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
-
#: ../admin/settings.php:
|
2445 |
msgid "none"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
-
#: ../admin/settings.php:
|
2449 |
msgid "bgfade"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
-
#: ../admin/settings.php:
|
2453 |
msgid "slowfade"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: ../admin/settings.php:
|
2457 |
msgid "circles"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
-
#: ../admin/settings.php:
|
2461 |
msgid "bubbles"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
-
#: ../admin/settings.php:
|
2465 |
msgid "blocks"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: ../admin/settings.php:
|
2469 |
msgid "fluids"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: ../admin/settings.php:
|
2473 |
msgid "flash"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: ../admin/settings.php:
|
2477 |
msgid "lines"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
-
#: ../admin/settings.php:
|
2481 |
msgid "random"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: ../admin/settings.php:
|
2485 |
msgid "Use slow zooming effect"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#: ../admin/settings.php:
|
2489 |
msgid "Background Color"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: ../admin/settings.php:
|
2493 |
msgid "Texts / Buttons Color"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#: ../admin/settings.php:
|
2497 |
msgid "Rollover / Active Color"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: ../admin/settings.php:
|
2501 |
msgid "Screen Color"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
-
#: ../admin/settings.php:
|
2505 |
msgid "Background music (URL)"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: ../admin/settings.php:
|
2509 |
msgid "Try XHTML validation (with CDATA)"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
-
#: ../admin/settings.php:
|
2513 |
msgid "Important : Could causes problem at some browser. Please recheck your page."
|
2514 |
msgstr ""
|
2515 |
|
@@ -2808,6 +2793,7 @@ msgid "Updated widget structure. If you used NextGEN Widgets, you need to setup
|
|
2808 |
msgstr ""
|
2809 |
|
2810 |
#: ../admin/upgrade.php:168
|
|
|
2811 |
msgid "Updated options."
|
2812 |
msgstr ""
|
2813 |
|
@@ -2827,67 +2813,67 @@ msgstr ""
|
|
2827 |
msgid "Depend on the amount of database entries this will take a while, don't reload this page."
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: ../admin/upgrade.php:
|
2831 |
msgid "Could not find NextGEN Gallery database tables, upgrade failed !"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: ../admin/upgrade.php:
|
2835 |
msgid "Some folders/files could not renamed, please recheck the permission and rescan the folder in the manage gallery section."
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: ../admin/upgrade.php:
|
2839 |
msgid "Rename failed"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: ../admin/upgrade.php:
|
2843 |
-
#: ../admin/upgrade.php:
|
2844 |
msgid "Upgrade NextGEN Gallery"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
-
#: ../admin/upgrade.php:
|
2848 |
msgid "The script detect that you upgrade from a older version."
|
2849 |
msgstr ""
|
2850 |
|
2851 |
-
#: ../admin/upgrade.php:
|
2852 |
msgid "Your database tables for NextGEN Gallery is out-of-date, and must be upgraded before you can continue."
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: ../admin/upgrade.php:
|
2856 |
msgid "If you would like to downgrade later, please make first a complete backup of your database and the images."
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: ../admin/upgrade.php:
|
2860 |
msgid "The upgrade process may take a while, so please be patient."
|
2861 |
msgstr ""
|
2862 |
|
2863 |
-
#: ../admin/upgrade.php:
|
2864 |
msgid "Start upgrade now"
|
2865 |
msgstr ""
|
2866 |
|
2867 |
-
#: ../admin/upgrade.php:
|
2868 |
msgid "Upgrade finished..."
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: ../admin/upgrade.php:
|
2872 |
msgid "Continue"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
-
#: ../admin/upgrade.php:
|
2876 |
#, php-format
|
2877 |
msgid "Rebuild image structure : %s / %s images"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
-
#: ../admin/upgrade.php:
|
2881 |
#, php-format
|
2882 |
msgid "Rebuild gallery structure : %s / %s galleries"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
-
#: ../admin/upgrade.php:
|
2886 |
#, php-format
|
2887 |
msgid "Rebuild album structure : %s / %s albums"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: ../admin/upgrade.php:
|
2891 |
msgid "Done."
|
2892 |
msgstr ""
|
2893 |
|
@@ -3022,7 +3008,7 @@ msgstr ""
|
|
3022 |
msgid "Insert"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#: ../lib/core.php:
|
3026 |
#, php-format
|
3027 |
msgid "Note : Based on your server memory limit you should not upload larger images then <strong>%d x %d</strong> pixel"
|
3028 |
msgstr ""
|
@@ -3052,128 +3038,128 @@ msgstr ""
|
|
3052 |
msgid "Not fired"
|
3053 |
msgstr ""
|
3054 |
|
3055 |
-
#: ../lib/meta.php:
|
3056 |
msgid "Aperture"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
-
#: ../lib/meta.php:
|
3060 |
-
#: ../lib/meta.php:
|
3061 |
msgid "Credit"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
-
#: ../lib/meta.php:
|
3065 |
msgid "Camera"
|
3066 |
msgstr ""
|
3067 |
|
3068 |
-
#: ../lib/meta.php:
|
3069 |
msgid "Caption"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
-
#: ../lib/meta.php:
|
3073 |
msgid "Copyright"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
-
#: ../lib/meta.php:
|
3077 |
msgid "Focal length"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
-
#: ../lib/meta.php:
|
3081 |
msgid "ISO"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
-
#: ../lib/meta.php:
|
3085 |
msgid "Shutter speed"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
-
#: ../lib/meta.php:
|
3089 |
msgid "Subject"
|
3090 |
msgstr ""
|
3091 |
|
3092 |
-
#: ../lib/meta.php:
|
3093 |
msgid "Make"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: ../lib/meta.php:
|
3097 |
msgid "Edit Status"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
-
#: ../lib/meta.php:
|
3101 |
msgid "Category"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
-
#: ../lib/meta.php:
|
3105 |
msgid "Keywords"
|
3106 |
msgstr ""
|
3107 |
|
3108 |
-
#: ../lib/meta.php:
|
3109 |
msgid "Date Created"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
-
#: ../lib/meta.php:
|
3113 |
msgid "Time Created"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
-
#: ../lib/meta.php:
|
3117 |
msgid "Author Position"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
-
#: ../lib/meta.php:
|
3121 |
msgid "City"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
-
#: ../lib/meta.php:
|
3125 |
msgid "Location"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
-
#: ../lib/meta.php:
|
3129 |
msgid "Province/State"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
-
#: ../lib/meta.php:
|
3133 |
msgid "Country code"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#: ../lib/meta.php:
|
3137 |
msgid "Country"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
-
#: ../lib/meta.php:
|
3141 |
msgid "Headline"
|
3142 |
msgstr ""
|
3143 |
|
3144 |
-
#: ../lib/meta.php:
|
3145 |
msgid "Source"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
-
#: ../lib/meta.php:
|
3149 |
msgid "Copyright Notice"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
-
#: ../lib/meta.php:
|
3153 |
msgid "Contact"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
-
#: ../lib/meta.php:
|
3157 |
msgid "Last modified"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
-
#: ../lib/meta.php:
|
3161 |
msgid "Program tool"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
-
#: ../lib/meta.php:
|
3165 |
msgid "Format"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
-
#: ../lib/meta.php:
|
3169 |
msgid "Image Width"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
-
#: ../lib/meta.php:
|
3173 |
msgid "Image Height"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
-
#: ../lib/meta.php:
|
3177 |
msgid "Flash"
|
3178 |
msgstr ""
|
3179 |
|
@@ -3357,11 +3343,11 @@ msgid "Sorry, could not update the album"
|
|
3357 |
msgstr ""
|
3358 |
|
3359 |
#: ../view/album-compact.php:32
|
|
|
3360 |
msgid "Photos"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
#: ../view/gallery-caption.php:32
|
3364 |
-
#: ../view/gallery-fuchs.php:32
|
3365 |
#: ../view/gallery.php:32
|
3366 |
#: ../widgets/media-rss-widget.php:122
|
3367 |
msgid "[View with PicLens]"
|
@@ -3369,21 +3355,18 @@ msgstr ""
|
|
3369 |
|
3370 |
#: ../view/imagebrowser-caption.php:26
|
3371 |
#: ../view/imagebrowser-exif.php:30
|
3372 |
-
#: ../view/imagebrowser-fuchs.php:26
|
3373 |
#: ../view/imagebrowser.php:26
|
3374 |
msgid "Back"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
#: ../view/imagebrowser-caption.php:29
|
3378 |
#: ../view/imagebrowser-exif.php:33
|
3379 |
-
#: ../view/imagebrowser-fuchs.php:29
|
3380 |
#: ../view/imagebrowser.php:29
|
3381 |
msgid "Next"
|
3382 |
msgstr ""
|
3383 |
|
3384 |
#: ../view/imagebrowser-caption.php:31
|
3385 |
#: ../view/imagebrowser-exif.php:35
|
3386 |
-
#: ../view/imagebrowser-fuchs.php:31
|
3387 |
#: ../view/imagebrowser.php:31
|
3388 |
msgid "of"
|
3389 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: NextGEN Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-05-17 14:19+0100\n"
|
6 |
+
"PO-Revision-Date: 2011-05-17 14:19+0100\n"
|
7 |
"Last-Translator: Alex Rabe\n"
|
8 |
"Language-Team: Alex Rabe\n"
|
9 |
"MIME-Version: 1.0\n"
|
22 |
msgstr ""
|
23 |
|
24 |
#: ../nggallery.php:98
|
25 |
+
msgid "<strong>This translation is not yet updated for Version 1.8.0</strong>. If you would like to help with translation, download the current po from the plugin folder and read <a href=\"http://alexrabe.de/wordpress-plugins/wordtube/translation-of-plugins/\">here</a> how you can translate the plugin."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: ../nggallery.php:202
|
29 |
msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB or higher"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: ../nggallery.php:222
|
33 |
msgid "Please update the database of NextGEN Gallery."
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: ../nggallery.php:222
|
37 |
msgid "Click here to proceed."
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ../nggallery.php:245
|
41 |
msgid "Picture tag"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: ../nggallery.php:246
|
45 |
msgid "Picture tag: %2$l."
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: ../nggallery.php:247
|
49 |
msgid "Separate picture tags with commas."
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../nggallery.php:347
|
53 |
msgid "L O A D I N G"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: ../nggallery.php:348
|
57 |
msgid "Click to Close"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: ../nggallery.php:369
|
61 |
msgid "loading"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: ../nggallery.php:509
|
65 |
+
#: ../nggfunctions.php:940
|
66 |
+
#: ../admin/admin.php:35
|
67 |
msgid "Overview"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: ../nggallery.php:510
|
71 |
msgid "Get help"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: ../nggallery.php:511
|
75 |
msgid "Contribute"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: ../nggallery.php:512
|
79 |
msgid "Donate"
|
80 |
msgstr ""
|
81 |
|
83 |
msgid "The <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player</a> and <a href=\"http://www.mozilla.com/firefox/\">a browser with Javascript support</a> are needed."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: ../nggfunctions.php:163
|
87 |
+
#: ../nggfunctions.php:641
|
88 |
msgid "[Gallery not found]"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../nggfunctions.php:448
|
92 |
msgid "[Album not found]"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: ../nggfunctions.php:770
|
96 |
msgid "[SinglePic not found]"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: ../nggfunctions.php:905
|
100 |
msgid "Related images for"
|
101 |
msgstr ""
|
102 |
|
225 |
#: ../admin/album.php:142
|
226 |
#: ../admin/edit-thumbnail.php:19
|
227 |
#: ../admin/edit-thumbnail.php:22
|
228 |
+
#: ../admin/manage.php:186
|
229 |
msgid "Cheatin’ uh?"
|
230 |
msgstr ""
|
231 |
|
238 |
msgstr ""
|
239 |
|
240 |
#: ../admin/addgallery.php:90
|
241 |
+
#: ../admin/functions.php:938
|
242 |
+
#: ../admin/functions.php:1038
|
243 |
msgid "No gallery selected !"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../admin/addgallery.php:162
|
247 |
msgid "Image Files"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../admin/addgallery.php:183
|
251 |
+
#: ../admin/addgallery.php:211
|
252 |
msgid "remove"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../admin/addgallery.php:184
|
256 |
+
#: ../admin/addgallery.php:364
|
257 |
msgid "Browse..."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: ../admin/addgallery.php:185
|
261 |
+
#: ../admin/addgallery.php:197
|
262 |
+
#: ../admin/addgallery.php:414
|
263 |
msgid "Upload images"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: ../admin/addgallery.php:274
|
267 |
+
#: ../admin/addgallery.php:380
|
268 |
msgid "Upload Images"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../admin/addgallery.php:277
|
272 |
+
#: ../admin/addgallery.php:294
|
273 |
+
#: ../admin/manage-galleries.php:119
|
274 |
+
#: ../admin/manage-galleries.php:156
|
275 |
msgid "Add new gallery"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: ../admin/addgallery.php:280
|
279 |
+
#: ../admin/addgallery.php:316
|
280 |
msgid "Upload a Zip-File"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: ../admin/addgallery.php:283
|
284 |
+
#: ../admin/addgallery.php:358
|
285 |
msgid "Import image folder"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: ../admin/addgallery.php:299
|
289 |
+
#: ../admin/manage-galleries.php:279
|
290 |
msgid "New Gallery"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: ../admin/addgallery.php:302
|
294 |
+
#: ../admin/manage-galleries.php:281
|
295 |
msgid "Create a new , empty gallery below the folder"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: ../admin/addgallery.php:304
|
299 |
+
#: ../admin/manage-galleries.php:283
|
300 |
msgid "Allowed characters for file and folder names are"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../admin/addgallery.php:308
|
304 |
msgid "Add gallery"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../admin/addgallery.php:321
|
308 |
msgid "Select Zip-File"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../admin/addgallery.php:323
|
312 |
msgid "Upload a zip file with images"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../admin/addgallery.php:327
|
316 |
msgid "or enter a Zip-File URL"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ../admin/addgallery.php:329
|
320 |
msgid "Import a zip file with images from a url"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../admin/addgallery.php:333
|
324 |
+
#: ../admin/addgallery.php:389
|
325 |
msgid "in to"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: ../admin/addgallery.php:335
|
329 |
msgid "a new gallery"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: ../admin/addgallery.php:346
|
333 |
msgid "Note : The upload limit on your server is "
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: ../admin/addgallery.php:350
|
337 |
msgid "Start upload"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: ../admin/addgallery.php:363
|
341 |
msgid "Import from Server path:"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: ../admin/addgallery.php:366
|
345 |
msgid "Note : Change the default path in the gallery settings"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: ../admin/addgallery.php:368
|
349 |
msgid " Please note : For safe-mode = ON you need to add the subfolder thumbs manually"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: ../admin/addgallery.php:371
|
353 |
msgid "Import folder"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: ../admin/addgallery.php:385
|
357 |
msgid "Upload image"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ../admin/addgallery.php:391
|
361 |
msgid "Choose gallery"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: ../admin/addgallery.php:410
|
365 |
msgid "The batch upload requires Adobe Flash 10, disable it if you have problems"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: ../admin/addgallery.php:410
|
369 |
msgid "Disable flash upload"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: ../admin/addgallery.php:412
|
373 |
msgid "Upload multiple files at once by ctrl/shift-selecting in dialog"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: ../admin/addgallery.php:412
|
377 |
msgid "Enable flash based upload"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: ../admin/admin.php:34
|
381 |
+
#: ../admin/admin.php:60
|
382 |
+
#: ../admin/admin.php:295
|
383 |
+
#: ../admin/admin.php:373
|
384 |
#: ../admin/functions.php:178
|
385 |
+
#: ../admin/manage-galleries.php:127
|
386 |
+
#: ../admin/manage-galleries.php:407
|
387 |
#: ../admin/manage-images.php:239
|
388 |
msgid "Gallery"
|
389 |
msgid_plural "Galleries"
|
390 |
msgstr[0] ""
|
391 |
msgstr[1] ""
|
392 |
|
393 |
+
#: ../admin/admin.php:36
|
394 |
msgid "Add Gallery / Images"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: ../admin/admin.php:37
|
398 |
msgid "Manage Gallery"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: ../admin/admin.php:38
|
402 |
msgid "Album"
|
403 |
msgid_plural "Albums"
|
404 |
msgstr[0] ""
|
405 |
msgstr[1] ""
|
406 |
|
407 |
+
#: ../admin/admin.php:39
|
408 |
msgid "Tags"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: ../admin/admin.php:40
|
412 |
msgid "Options"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../admin/admin.php:42
|
416 |
msgid "Style"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: ../admin/admin.php:44
|
420 |
msgid "Roles"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: ../admin/admin.php:45
|
424 |
msgid "About this Gallery"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: ../admin/admin.php:45
|
428 |
msgid "About"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: ../admin/admin.php:48
|
432 |
msgid "NextGEN Gallery"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: ../admin/admin.php:51
|
436 |
+
#: ../admin/admin.php:62
|
437 |
msgid "Reset / Uninstall"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../admin/admin.php:61
|
441 |
msgid "Network settings"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ../admin/admin.php:101
|
445 |
#, php-format
|
446 |
msgid "Thanks for using this plugin, I hope you are satisfied ! If you would like to support the further development, please consider a <strong><a href=\"%s\">donation</a></strong>! If you still need some help, please post your questions <a href=\"http://wordpress.org/tags/nextgen-gallery?forum_id=10\">here</a> ."
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: ../admin/admin.php:104
|
450 |
msgid "OK, hide this message now !"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: ../admin/admin.php:189
|
454 |
msgid "You do not have the correct permission"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: ../admin/admin.php:190
|
458 |
msgid "Unexpected Error"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ../admin/admin.php:191
|
462 |
msgid "A failure occurred"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ../admin/admin.php:299
|
466 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Introduction</a>"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: ../admin/admin.php:302
|
470 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Setup</a>"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: ../admin/admin.php:305
|
474 |
msgid "<a href=\"http://alexrabe.de/wordpress-plugins/nextgen-gallery/languages/\" target=\"_blank\">Translation by alex rabe</a>"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: ../admin/admin.php:308
|
478 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Roles / Capabilities</a>"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: ../admin/admin.php:311
|
482 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Styles</a>"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../admin/admin.php:312
|
486 |
msgid "Templates"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../admin/admin.php:315
|
490 |
+
#: ../admin/admin.php:321
|
491 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Gallery management</a>"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: ../admin/admin.php:316
|
495 |
msgid "Gallery example"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: ../admin/admin.php:322
|
499 |
+
#: ../admin/admin.php:332
|
500 |
msgid "Gallery tags"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: ../admin/admin.php:325
|
504 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Album management</a>"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: ../admin/admin.php:326
|
508 |
msgid "Album example"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: ../admin/admin.php:327
|
512 |
+
#: ../admin/admin.php:333
|
513 |
msgid "Album tags"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: ../admin/admin.php:330
|
517 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-introduction/\" target=\"_blank\">Gallery tags</a>"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: ../admin/admin.php:331
|
521 |
msgid "Related images"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: ../admin/admin.php:336
|
525 |
msgid "<a href=\"http://dpotter.net/Technical/2008/03/nextgen-gallery-review-image-management/\" target=\"_blank\">Image management</a>"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: ../admin/admin.php:337
|
529 |
msgid "Custom fields"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: ../admin/admin.php:342
|
533 |
msgid "Get help with NextGEN Gallery"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: ../admin/admin.php:346
|
537 |
msgid "More Help & Info"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: ../admin/admin.php:348
|
541 |
msgid "<a href=\"http://wordpress.org/tags/nextgen-gallery?forum_id=10\" target=\"_blank\">Support Forums</a>"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: ../admin/admin.php:349
|
545 |
msgid "FAQ"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ../admin/admin.php:350
|
549 |
msgid "Feature request"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: ../admin/admin.php:351
|
553 |
msgid "Get your language pack"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: ../admin/admin.php:352
|
557 |
msgid "Contribute development"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: ../admin/admin.php:353
|
561 |
msgid "Download latest version"
|
562 |
msgstr ""
|
563 |
|
565 |
msgid "You are not allowed to be here"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../admin/ajax.php:410
|
569 |
#, php-format
|
570 |
msgid "Could create image with %s x %s pixel"
|
571 |
msgstr ""
|
607 |
msgstr ""
|
608 |
|
609 |
#: ../admin/album.php:302
|
610 |
+
#: ../admin/manage-galleries.php:146
|
611 |
+
#: ../admin/manage-images.php:440
|
612 |
msgid "Delete"
|
613 |
msgstr ""
|
614 |
|
688 |
msgstr ""
|
689 |
|
690 |
#: ../admin/album.php:455
|
691 |
+
#: ../admin/manage-galleries.php:288
|
692 |
+
#: ../admin/manage-galleries.php:317
|
693 |
+
#: ../admin/manage-galleries.php:347
|
694 |
+
#: ../admin/manage-images.php:525
|
695 |
+
#: ../admin/manage-images.php:561
|
696 |
+
#: ../admin/manage-images.php:590
|
697 |
+
#: ../admin/manage-images.php:620
|
698 |
msgid "OK"
|
699 |
msgstr ""
|
700 |
|
701 |
#: ../admin/album.php:457
|
702 |
+
#: ../admin/manage-galleries.php:290
|
703 |
+
#: ../admin/manage-galleries.php:319
|
704 |
+
#: ../admin/manage-galleries.php:349
|
705 |
+
#: ../admin/manage-images.php:527
|
706 |
+
#: ../admin/manage-images.php:563
|
707 |
+
#: ../admin/manage-images.php:592
|
708 |
+
#: ../admin/manage-images.php:622
|
709 |
msgid "Cancel"
|
710 |
msgstr ""
|
711 |
|
766 |
|
767 |
#: ../admin/functions.php:76
|
768 |
#: ../admin/functions.php:85
|
769 |
+
#: ../admin/functions.php:897
|
770 |
msgid "Unable to create directory "
|
771 |
msgstr ""
|
772 |
|
811 |
msgid "successfully created!"
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: ../admin/functions.php:212
|
815 |
+
#: ../admin/functions.php:1014
|
816 |
+
#: ../admin/manage-galleries.php:81
|
817 |
+
#: ../admin/manage-galleries.php:148
|
818 |
+
#: ../admin/manage-images.php:203
|
819 |
+
#: ../admin/manage-images.php:334
|
820 |
+
#: ../admin/manage.php:223
|
821 |
+
#: ../admin/manage.php:299
|
822 |
msgid "Create new thumbnails"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: ../admin/functions.php:215
|
826 |
msgid " picture(s) successfully added"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: ../admin/functions.php:265
|
830 |
+
#: ../admin/functions.php:345
|
831 |
+
#: ../admin/functions.php:400
|
832 |
+
#: ../admin/functions.php:497
|
833 |
+
#: ../admin/functions.php:551
|
834 |
msgid "Object didn't contain correct data"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: ../admin/functions.php:273
|
838 |
msgid " is not writeable "
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: ../admin/functions.php:355
|
842 |
+
#: ../admin/functions.php:403
|
843 |
+
#: ../admin/functions.php:503
|
844 |
+
#: ../admin/functions.php:554
|
845 |
msgid " is not writeable"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: ../admin/functions.php:557
|
849 |
msgid "File do not exists"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: ../admin/functions.php:561
|
853 |
msgid "Couldn't restore original image"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: ../admin/functions.php:677
|
857 |
msgid "(Error : Couldn't not update data base)"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: ../admin/functions.php:684
|
861 |
msgid "(Error : Couldn't not update meta data)"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: ../admin/functions.php:693
|
865 |
msgid "(Error : Couldn't not find image)"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: ../admin/functions.php:831
|
869 |
msgid "No valid URL path "
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: ../admin/functions.php:847
|
873 |
msgid "Import via cURL failed."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: ../admin/functions.php:864
|
877 |
msgid "Uploaded file was no or a faulty zip file ! The server recognized : "
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: ../admin/functions.php:881
|
881 |
msgid "Could not get a valid foldername"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: ../admin/functions.php:892
|
885 |
#, php-format
|
886 |
msgid "Unable to create directory %s. Is its parent directory writable by the server?"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: ../admin/functions.php:907
|
890 |
msgid "Zip-File successfully unpacked"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: ../admin/functions.php:946
|
894 |
+
#: ../admin/functions.php:1063
|
895 |
msgid "Failure in database, no gallery path set !"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: ../admin/functions.php:970
|
899 |
+
#: ../admin/functions.php:1057
|
900 |
msgid "is no valid image file!"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: ../admin/functions.php:984
|
904 |
+
#: ../admin/functions.php:1183
|
905 |
+
#: ../admin/functions.php:1260
|
906 |
#, php-format
|
907 |
msgid "Unable to write to directory %s. Is this directory writable by the server?"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: ../admin/functions.php:991
|
911 |
+
#: ../admin/functions.php:1080
|
912 |
msgid "Error, the file could not be moved to : "
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: ../admin/functions.php:996
|
916 |
+
#: ../admin/functions.php:1084
|
917 |
msgid "Error, the file permissions could not be set"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: ../admin/functions.php:1019
|
921 |
msgid " Image(s) successfully added"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: ../admin/functions.php:1046
|
925 |
msgid "Invalid upload. Error Code : "
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: ../admin/functions.php:1123
|
929 |
#, php-format
|
930 |
msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: ../admin/functions.php:1124
|
934 |
#, php-format
|
935 |
msgid "When safe_mode is on, PHP checks to see if the owner (%s) of the current script matches the owner (%s) of the file to be operated on by a file function or its directory"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: ../admin/functions.php:1177
|
939 |
+
#: ../admin/functions.php:1254
|
940 |
msgid "The destination gallery does not exist"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: ../admin/functions.php:1208
|
944 |
#, php-format
|
945 |
msgid "Failed to move image %1$s to %2$s"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: ../admin/functions.php:1228
|
949 |
#, php-format
|
950 |
msgid "Moved %1$s picture(s) to gallery : %2$s ."
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: ../admin/functions.php:1287
|
954 |
#, php-format
|
955 |
msgid "Failed to copy image %1$s to %2$s"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: ../admin/functions.php:1301
|
959 |
#, php-format
|
960 |
msgid "Failed to copy database row for picture %s"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: ../admin/functions.php:1313
|
964 |
#, php-format
|
965 |
msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) » The file already existed in the destination gallery."
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: ../admin/functions.php:1316
|
969 |
#, php-format
|
970 |
msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: ../admin/functions.php:1325
|
974 |
#, php-format
|
975 |
msgid "Copied %1$s picture(s) to gallery: %2$s ."
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: ../admin/functions.php:1433
|
979 |
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: ../admin/functions.php:1436
|
983 |
msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: ../admin/functions.php:1439
|
987 |
msgid "The uploaded file was only partially uploaded"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: ../admin/functions.php:1442
|
991 |
msgid "No file was uploaded"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: ../admin/functions.php:1445
|
995 |
msgid "Missing a temporary folder"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: ../admin/functions.php:1448
|
999 |
msgid "Failed to write file to disk"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: ../admin/functions.php:1451
|
1003 |
msgid "File upload stopped by extension"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: ../admin/functions.php:1454
|
1007 |
msgid "Unknown upload error"
|
1008 |
msgstr ""
|
1009 |
|
1015 |
msgid "NextGEN Gallery : Tables could not created, please check your database settings"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: ../admin/install.php:171
|
1019 |
msgid "[Show as slideshow]"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: ../admin/install.php:172
|
1023 |
msgid "[Show picture list]"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: ../admin/manage-galleries.php:69
|
1027 |
+
#: ../admin/manage-images.php:171
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1028 |
msgid "No images selected"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: ../admin/manage-galleries.php:77
|
1032 |
+
#: ../admin/manage-galleries.php:149
|
1033 |
+
#: ../admin/manage-images.php:199
|
1034 |
+
#: ../admin/manage-images.php:335
|
1035 |
+
#: ../admin/manage.php:207
|
1036 |
+
#: ../admin/manage.php:285
|
1037 |
msgid "Resize images"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: ../admin/manage-galleries.php:86
|
1041 |
#, php-format
|
1042 |
msgid ""
|
1043 |
"You are about to start the bulk edit for %s galleries \n"
|
1045 |
" 'Cancel' to stop, 'OK' to proceed."
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: ../admin/manage-galleries.php:130
|
1049 |
+
#: ../admin/manage-galleries.php:133
|
1050 |
#: ../admin/manage-images.php:225
|
1051 |
#: ../admin/manage-images.php:228
|
1052 |
msgid "Search Images"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: ../admin/manage-galleries.php:145
|
1056 |
+
#: ../admin/manage-images.php:332
|
1057 |
msgid "Bulk actions"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: ../admin/manage-galleries.php:147
|
1061 |
+
#: ../admin/manage-images.php:333
|
1062 |
+
#: ../admin/manage.php:140
|
1063 |
+
#: ../admin/manage.php:249
|
1064 |
msgid "Set watermark"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: ../admin/manage-galleries.php:150
|
1068 |
+
#: ../admin/manage-images.php:338
|
1069 |
+
#: ../admin/manage.php:145
|
1070 |
+
#: ../admin/manage.php:269
|
1071 |
msgid "Import metadata"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: ../admin/manage-galleries.php:151
|
1075 |
+
#: ../admin/manage-images.php:336
|
1076 |
+
#: ../admin/manage.php:135
|
1077 |
+
#: ../admin/manage.php:246
|
1078 |
msgid "Recover from backup"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: ../admin/manage-galleries.php:153
|
1082 |
+
#: ../admin/manage-images.php:347
|
1083 |
msgid "Apply"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: ../admin/manage-galleries.php:220
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1087 |
msgid "Edit"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: ../admin/manage-galleries.php:261
|
1091 |
+
#: ../admin/manage-images.php:498
|
1092 |
msgid "No entries found"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: ../admin/manage-galleries.php:308
|
1096 |
+
#: ../admin/manage-images.php:581
|
1097 |
msgid "Resize Images to"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: ../admin/manage-galleries.php:312
|
1101 |
+
#: ../admin/manage-images.php:585
|
1102 |
msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: ../admin/manage-galleries.php:336
|
1106 |
+
#: ../admin/manage-images.php:609
|
1107 |
msgid "Width x height (in pixel)"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: ../admin/manage-galleries.php:338
|
1111 |
+
#: ../admin/manage-images.php:611
|
1112 |
msgid "These values are maximum values "
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: ../admin/manage-galleries.php:341
|
1116 |
+
#: ../admin/manage-images.php:614
|
1117 |
msgid "Set fix dimension"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: ../admin/manage-galleries.php:343
|
1121 |
+
#: ../admin/manage-images.php:616
|
1122 |
msgid "Ignore the aspect ratio, no portrait thumbnails"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: ../admin/manage-galleries.php:406
|
1126 |
+
#: ../admin/manage-images.php:684
|
1127 |
msgid "ID"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: ../admin/manage-galleries.php:408
|
1131 |
#: ../admin/manage-images.php:266
|
1132 |
+
#: ../admin/manage-images.php:687
|
1133 |
msgid "Description"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: ../admin/manage-galleries.php:409
|
1137 |
#: ../admin/manage-images.php:287
|
1138 |
msgid "Author"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: ../admin/manage-galleries.php:410
|
1142 |
msgid "Page ID"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: ../admin/manage-galleries.php:411
|
1146 |
msgid "Image"
|
1147 |
msgid_plural "Images"
|
1148 |
msgstr[0] ""
|
1149 |
msgstr[1] ""
|
1150 |
|
1151 |
+
#: ../admin/manage-images.php:34
|
1152 |
msgid "Gallery not found."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: ../admin/manage-images.php:40
|
1156 |
msgid "Sorry, you have no access here"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: ../admin/manage-images.php:179
|
1160 |
msgid "Copy image to..."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: ../admin/manage-images.php:183
|
1164 |
msgid "Move image to..."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: ../admin/manage-images.php:187
|
1168 |
msgid "Add new tags"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: ../admin/manage-images.php:191
|
1172 |
+
#: ../admin/manage-images.php:344
|
1173 |
msgid "Delete tags"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: ../admin/manage-images.php:195
|
1177 |
msgid "Overwrite"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: ../admin/manage-images.php:208
|
1181 |
#, php-format
|
1182 |
msgid ""
|
1183 |
"You are about to start the bulk edit for %s images \n"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
#: ../admin/manage-images.php:318
|
1230 |
+
#: ../admin/manage-images.php:353
|
1231 |
+
#: ../admin/manage-images.php:505
|
1232 |
msgid "Save Changes"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: ../admin/manage-images.php:337
|
1236 |
msgid "Delete images"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: ../admin/manage-images.php:339
|
1240 |
msgid "Rotate images clockwise"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: ../admin/manage-images.php:340
|
1244 |
msgid "Rotate images counter-clockwise"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: ../admin/manage-images.php:341
|
1248 |
msgid "Copy to..."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: ../admin/manage-images.php:342
|
1252 |
msgid "Move to..."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: ../admin/manage-images.php:343
|
1256 |
msgid "Add tags"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: ../admin/manage-images.php:345
|
1260 |
msgid "Overwrite tags"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: ../admin/manage-images.php:350
|
1264 |
msgid "Sort gallery"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: ../admin/manage-images.php:426
|
1268 |
msgid "pixel"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: ../admin/manage-images.php:432
|
1272 |
#, php-format
|
1273 |
msgid "View \"%s\""
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: ../admin/manage-images.php:432
|
1277 |
msgid "View"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: ../admin/manage-images.php:433
|
1281 |
msgid "Show Meta data"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: ../admin/manage-images.php:433
|
1285 |
msgid "Meta"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: ../admin/manage-images.php:434
|
1289 |
msgid "Customize thumbnail"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: ../admin/manage-images.php:434
|
1293 |
msgid "Edit thumb"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: ../admin/manage-images.php:435
|
1297 |
msgid "Rotate"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: ../admin/manage-images.php:437
|
1301 |
msgid "Publish this image"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: ../admin/manage-images.php:437
|
1305 |
msgid "Publish"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: ../admin/manage-images.php:439
|
1309 |
msgid "Recover"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: ../admin/manage-images.php:439
|
1313 |
#, php-format
|
1314 |
msgid "Recover \"%s\" ?"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: ../admin/manage-images.php:440
|
1318 |
#, php-format
|
1319 |
msgid "Delete \"%s\" ?"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: ../admin/manage-images.php:521
|
1323 |
msgid "Enter the tags"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: ../admin/manage-images.php:545
|
1327 |
msgid "Select the destination gallery:"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: ../admin/manage-images.php:685
|
1331 |
msgid "Thumbnail"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: ../admin/manage-images.php:686
|
1335 |
#: ../admin/manage-sort.php:77
|
1336 |
msgid "Filename"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: ../admin/manage-images.php:687
|
1340 |
msgid "Alt & Title Text"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: ../admin/manage-images.php:688
|
1344 |
msgid "Tags (comma separated list)"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: ../admin/manage-images.php:689
|
1348 |
msgid "exclude"
|
1349 |
msgstr ""
|
1350 |
|
1392 |
msgid "Descending"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: ../admin/manage.php:84
|
1396 |
msgid "Picture"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: ../admin/manage.php:84
|
1400 |
msgid "deleted successfully"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: ../admin/manage.php:99
|
1404 |
+
#: ../admin/manage.php:108
|
1405 |
msgid "Operation successful. Please clear your browser cache."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: ../admin/manage.php:175
|
1409 |
msgid "Gallery deleted successfully "
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: ../admin/manage.php:240
|
1413 |
+
#: ../admin/manage.php:243
|
1414 |
msgid "Rotate images"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: ../admin/manage.php:265
|
1418 |
msgid "Pictures deleted successfully "
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: ../admin/manage.php:361
|
1422 |
msgid "Tags changed"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: ../admin/manage.php:397
|
1426 |
msgid "Update successful"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: ../admin/manage.php:432
|
1430 |
msgid "New gallery page ID"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: ../admin/manage.php:432
|
1434 |
msgid "created"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: ../admin/manage.php:468
|
1438 |
msgid "Published a new post"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: ../admin/manage.php:572
|
1442 |
+
#, php-format
|
1443 |
+
msgid "1 item"
|
1444 |
+
msgid_plural "%s items"
|
1445 |
+
msgstr[0] ""
|
1446 |
+
msgstr[1] ""
|
1447 |
+
|
1448 |
#: ../admin/media-upload.php:166
|
1449 |
msgid "No gallery"
|
1450 |
msgstr ""
|
1472 |
|
1473 |
#: ../admin/media-upload.php:232
|
1474 |
#: ../admin/publish.php:57
|
1475 |
+
#: ../admin/settings.php:484
|
1476 |
msgid "None"
|
1477 |
msgstr ""
|
1478 |
|
1495 |
msgstr ""
|
1496 |
|
1497 |
#: ../admin/media-upload.php:242
|
1498 |
+
#: ../admin/settings.php:591
|
1499 |
msgid "Size"
|
1500 |
msgstr ""
|
1501 |
|
1565 |
msgstr ""
|
1566 |
|
1567 |
#: ../admin/overview.php:116
|
|
|
|
|
|
|
|
|
1568 |
msgid "Help translating it."
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: ../admin/overview.php:253
|
1572 |
msgid "Running..."
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: ../admin/overview.php:300
|
1576 |
msgid "Check plugin/theme conflict"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: ../admin/overview.php:301
|
1580 |
+
#: ../admin/overview.php:307
|
1581 |
+
#: ../admin/overview.php:313
|
1582 |
msgid "Not tested"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: ../admin/overview.php:302
|
1586 |
msgid "No conflict could be detected"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: ../admin/overview.php:303
|
1590 |
msgid "Test failed, disable other plugins & switch to default theme"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: ../admin/overview.php:306
|
1594 |
msgid "Test image function"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: ../admin/overview.php:308
|
1598 |
msgid "The plugin could create images"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: ../admin/overview.php:309
|
1602 |
msgid "Couldn't create image, check your memory limit"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: ../admin/overview.php:312
|
1606 |
msgid "Check theme compatibility"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: ../admin/overview.php:314
|
1610 |
msgid "Your theme should work fine with NextGEN Gallery"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: ../admin/overview.php:315
|
1614 |
msgid "wp_head()/wp_footer() is missing, contact the theme author"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: ../admin/overview.php:319
|
1618 |
msgid "Check plugin"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: ../admin/overview.php:340
|
1622 |
msgid "Graphic Library"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: ../admin/overview.php:356
|
1626 |
+
#: ../admin/overview.php:405
|
1627 |
+
#: ../admin/overview.php:592
|
1628 |
+
#: ../admin/overview.php:782
|
1629 |
msgid "Loading…"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: ../admin/overview.php:356
|
1633 |
+
#: ../admin/overview.php:405
|
1634 |
+
#: ../admin/overview.php:592
|
1635 |
+
#: ../admin/overview.php:782
|
1636 |
msgid "This widget requires JavaScript."
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: ../admin/overview.php:369
|
1640 |
msgid "Thanks to all donators..."
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: ../admin/overview.php:391
|
1644 |
msgid "View all"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: ../admin/overview.php:417
|
1648 |
#, php-format
|
1649 |
msgid "Newsfeed could not be loaded. Check the <a href=\"%s\">front page</a> to check for updates."
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: ../admin/overview.php:429
|
1653 |
msgid "Untitled"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: ../admin/overview.php:479
|
1657 |
msgid "At a Glance"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: ../admin/overview.php:505
|
1661 |
msgid "Upload pictures"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: ../admin/overview.php:506
|
1665 |
msgid "Here you can control your images, galleries and albums."
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: ../admin/overview.php:536
|
1669 |
msgid "Storage Space"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: ../admin/overview.php:540
|
1673 |
#, php-format
|
1674 |
msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB</a>"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: ../admin/overview.php:541
|
1678 |
msgid "Space Allowed"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: ../admin/overview.php:548
|
1682 |
#, php-format
|
1683 |
msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB (%3$s%%)</a>"
|
1684 |
msgstr ""
|
1685 |
|
1686 |
+
#: ../admin/overview.php:549
|
1687 |
msgid "Space Used"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: ../admin/overview.php:578
|
1691 |
msgid "Translation file successful updated. Please reload page."
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: ../admin/overview.php:580
|
1695 |
msgid "Reload page"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: ../admin/overview.php:585
|
1699 |
msgid "Translation file couldn't be updated"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: ../admin/overview.php:622
|
1703 |
msgid "Download"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: ../admin/overview.php:651
|
1707 |
msgid "No GD support"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: ../admin/overview.php:663
|
1711 |
+
#: ../admin/overview.php:709
|
1712 |
+
#: ../admin/overview.php:712
|
1713 |
+
#: ../admin/overview.php:715
|
1714 |
msgid "Yes"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: ../admin/overview.php:665
|
1718 |
+
#: ../admin/overview.php:710
|
1719 |
+
#: ../admin/overview.php:713
|
1720 |
+
#: ../admin/overview.php:716
|
1721 |
msgid "No"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: ../admin/overview.php:683
|
1725 |
msgid "Not set"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: ../admin/overview.php:685
|
1729 |
+
#: ../admin/overview.php:688
|
1730 |
msgid "On"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
+
#: ../admin/overview.php:686
|
1734 |
+
#: ../admin/overview.php:689
|
1735 |
msgid "Off"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
+
#: ../admin/overview.php:692
|
1739 |
+
#: ../admin/overview.php:695
|
1740 |
+
#: ../admin/overview.php:698
|
1741 |
+
#: ../admin/overview.php:701
|
1742 |
+
#: ../admin/overview.php:704
|
1743 |
+
#: ../admin/overview.php:707
|
1744 |
msgid "N/A"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: ../admin/overview.php:706
|
1748 |
msgid " MByte"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: ../admin/overview.php:719
|
1752 |
msgid "Operating System"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: ../admin/overview.php:720
|
1756 |
msgid "Server"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: ../admin/overview.php:721
|
1760 |
msgid "Memory usage"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: ../admin/overview.php:722
|
1764 |
msgid "MYSQL Version"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: ../admin/overview.php:723
|
1768 |
msgid "SQL Mode"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: ../admin/overview.php:724
|
1772 |
msgid "PHP Version"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: ../admin/overview.php:725
|
1776 |
msgid "PHP Safe Mode"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: ../admin/overview.php:726
|
1780 |
msgid "PHP Allow URL fopen"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: ../admin/overview.php:727
|
1784 |
msgid "PHP Memory Limit"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: ../admin/overview.php:728
|
1788 |
msgid "PHP Max Upload Size"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: ../admin/overview.php:729
|
1792 |
msgid "PHP Max Post Size"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: ../admin/overview.php:730
|
1796 |
msgid "PCRE Backtracking Limit"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: ../admin/overview.php:731
|
1800 |
msgid "PHP Max Script Execute Time"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: ../admin/overview.php:732
|
1804 |
msgid "PHP Exif support"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: ../admin/overview.php:733
|
1808 |
msgid "PHP IPTC support"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: ../admin/overview.php:734
|
1812 |
msgid "PHP XML support"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: ../admin/overview.php:746
|
1816 |
msgid "NextGEN Gallery contains some functions which are only available under PHP 5.2. You are using the old PHP 4 version, upgrade now! It's no longer supported by the PHP group. Many shared hosting providers offer both PHP 4 and PHP 5, running simultaneously. Ask your provider if they can do this."
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: ../admin/overview.php:838
|
1820 |
msgid "Install"
|
1821 |
msgstr ""
|
1822 |
|
1912 |
msgid "Flip horizontally"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: ../admin/settings.php:97
|
1916 |
msgid "Cache cleared"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: ../admin/settings.php:216
|
1920 |
+
#: ../admin/settings.php:235
|
1921 |
msgid "General Options"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: ../admin/settings.php:217
|
1925 |
+
#: ../admin/settings.php:421
|
1926 |
msgid "Thumbnails"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: ../admin/settings.php:218
|
1930 |
msgid "Images"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: ../admin/settings.php:220
|
1934 |
+
#: ../admin/settings.php:473
|
1935 |
msgid "Effects"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: ../admin/settings.php:221
|
1939 |
+
#: ../admin/settings.php:515
|
1940 |
#: ../admin/tinymce/window.php:110
|
1941 |
msgid "Watermark"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: ../admin/settings.php:222
|
1945 |
+
#: ../admin/settings.php:422
|
1946 |
+
#: ../admin/settings.php:622
|
1947 |
#: ../admin/tinymce/window.php:63
|
1948 |
msgid "Slideshow"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: ../admin/settings.php:241
|
1952 |
#: ../admin/wpmu.php:68
|
1953 |
msgid "Gallery path"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: ../admin/settings.php:243
|
1957 |
msgid "This is the default path for all galleries"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: ../admin/settings.php:246
|
1961 |
msgid "Delete image files"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: ../admin/settings.php:248
|
1965 |
msgid "Delete files, when removing a gallery in the database"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: ../admin/settings.php:251
|
1969 |
msgid "Activate permalinks"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: ../admin/settings.php:253
|
1973 |
msgid "When you activate this option, you need to update your permalink structure one time."
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: ../admin/settings.php:254
|
1977 |
+
msgid "Gallery slug name :"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: ../admin/settings.php:258
|
1981 |
+
msgid "Create new URL friendly image slugs"
|
|
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: ../admin/settings.php:259
|
1985 |
+
#: ../admin/settings.php:375
|
1986 |
+
msgid "Proceed now"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: ../admin/settings.php:262
|
1990 |
msgid "Select graphic library"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: ../admin/settings.php:263
|
1994 |
msgid "GD Library"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: ../admin/settings.php:264
|
1998 |
msgid "ImageMagick (Experimental). Path to the library :"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: ../admin/settings.php:269
|
2002 |
msgid "Activate Media RSS feed"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: ../admin/settings.php:271
|
2006 |
msgid "A RSS feed will be added to you blog header. Useful for CoolIris/PicLens"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: ../admin/settings.php:274
|
2010 |
msgid "Activate PicLens/CoolIris support"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: ../admin/settings.php:276
|
2014 |
msgid "When you activate this option, some javascript is added to your site footer. Make sure that wp_footer is called in your theme."
|
2015 |
msgstr ""
|
2016 |
|
2017 |
+
#: ../admin/settings.php:279
|
2018 |
msgid "Tags / Categories"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: ../admin/settings.php:282
|
2022 |
msgid "Activate related images"
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: ../admin/settings.php:284
|
2026 |
msgid "This option will append related images to every post"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: ../admin/settings.php:288
|
2030 |
msgid "Match with"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: ../admin/settings.php:289
|
2034 |
msgid "Categories"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: ../admin/settings.php:294
|
2038 |
msgid "Max. number of images"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: ../admin/settings.php:296
|
2042 |
msgid "0 will show all images"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: ../admin/settings.php:300
|
2046 |
+
#: ../admin/settings.php:331
|
2047 |
+
#: ../admin/settings.php:378
|
2048 |
+
#: ../admin/settings.php:463
|
2049 |
+
#: ../admin/settings.php:498
|
2050 |
+
#: ../admin/settings.php:759
|
2051 |
msgid "More settings"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: ../admin/settings.php:310
|
2055 |
msgid "Thumbnail settings"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: ../admin/settings.php:314
|
2059 |
msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: ../admin/settings.php:327
|
2063 |
msgid "Thumbnail quality"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: ../admin/settings.php:341
|
2067 |
msgid "Image settings"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: ../admin/settings.php:347
|
2071 |
msgid "Resize Images"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: ../admin/settings.php:352
|
2075 |
msgid "Image quality"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: ../admin/settings.php:356
|
2079 |
msgid "Backup original images"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
+
#: ../admin/settings.php:358
|
2083 |
msgid "Creates a backup for inserted images"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: ../admin/settings.php:361
|
2087 |
msgid "Automatically resize"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
+
#: ../admin/settings.php:363
|
2091 |
msgid "Automatically resize images on upload."
|
2092 |
msgstr ""
|
2093 |
|
2094 |
+
#: ../admin/settings.php:366
|
2095 |
msgid "Single picture"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: ../admin/settings.php:369
|
2099 |
msgid "Cache single pictures"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: ../admin/settings.php:371
|
2103 |
msgid "Creates a file for each singlepic settings. Reduce the CPU load"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: ../admin/settings.php:374
|
2107 |
msgid "Clear cache folder"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: ../admin/settings.php:395
|
2111 |
msgid "Deactivate gallery page link"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: ../admin/settings.php:397
|
2115 |
msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: ../admin/settings.php:401
|
2119 |
msgid "Number of images per page"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: ../admin/settings.php:403
|
2123 |
msgid "0 will disable pagination, all images on one page"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: ../admin/settings.php:407
|
2127 |
msgid "Number of columns"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: ../admin/settings.php:409
|
2131 |
msgid "0 will display as much as possible based on the width of your theme. Setting normally only required for captions below the images"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: ../admin/settings.php:413
|
2135 |
msgid "Integrate slideshow"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: ../admin/settings.php:420
|
2139 |
msgid "Show first"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: ../admin/settings.php:426
|
2143 |
msgid "Show ImageBrowser"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: ../admin/settings.php:428
|
2147 |
msgid "The gallery will open the ImageBrowser instead the effect."
|
2148 |
msgstr ""
|
2149 |
|
2150 |
+
#: ../admin/settings.php:432
|
2151 |
msgid "Add hidden images"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: ../admin/settings.php:434
|
2155 |
msgid "If pagination is used, this option will still show all images in the modal window (Thickbox, Lightbox etc.). Note : This increases the page load"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: ../admin/settings.php:438
|
2159 |
msgid "Enable AJAX pagination"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: ../admin/settings.php:440
|
2163 |
msgid "Browse images without reload the page. Note : Works only in combination with Shutter effect"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: ../admin/settings.php:444
|
2167 |
msgid "Sort options"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
+
#: ../admin/settings.php:447
|
2171 |
msgid "Sort thumbnails"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: ../admin/settings.php:449
|
2175 |
msgid "Custom order"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: ../admin/settings.php:451
|
2179 |
msgid "File name"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: ../admin/settings.php:452
|
2183 |
msgid "Alt / Title text"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: ../admin/settings.php:453
|
2187 |
msgid "Date / Time"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: ../admin/settings.php:457
|
2191 |
msgid "Sort direction"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: ../admin/settings.php:477
|
2195 |
msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Shutter and Thickbox effect will automatic added to your theme."
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: ../admin/settings.php:478
|
2199 |
msgid "With the placeholder"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: ../admin/settings.php:478
|
2203 |
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."
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: ../admin/settings.php:481
|
2207 |
msgid "JavaScript Thumbnail effect"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: ../admin/settings.php:485
|
2211 |
msgid "Thickbox"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
+
#: ../admin/settings.php:486
|
2215 |
msgid "Lightbox"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: ../admin/settings.php:487
|
2219 |
msgid "Highslide"
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: ../admin/settings.php:488
|
2223 |
msgid "Shutter"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: ../admin/settings.php:489
|
2227 |
msgid "Custom"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: ../admin/settings.php:494
|
2231 |
msgid "Link Code line"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: ../admin/settings.php:516
|
2235 |
msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: ../admin/settings.php:521
|
2239 |
msgid "Preview"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: ../admin/settings.php:523
|
2243 |
+
#: ../admin/settings.php:528
|
2244 |
msgid "Position"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: ../admin/settings.php:548
|
2248 |
msgid "Offset"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
#: ../admin/settings.php:564
|
2252 |
msgid "Use image as watermark"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
+
#: ../admin/settings.php:567
|
2256 |
msgid "URL to file"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
+
#: ../admin/settings.php:569
|
2260 |
msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
+
#: ../admin/settings.php:572
|
2264 |
msgid "Use text as watermark"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: ../admin/settings.php:575
|
2268 |
msgid "Font"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
#: ../admin/settings.php:584
|
2272 |
msgid "This function will not work, cause you need the FreeType library"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
+
#: ../admin/settings.php:586
|
2276 |
msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
+
#: ../admin/settings.php:595
|
2280 |
msgid "Color"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
+
#: ../admin/settings.php:597
|
2284 |
msgid "(hex w/o #)"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
+
#: ../admin/settings.php:600
|
2288 |
msgid "Text"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
#: ../admin/settings.php:604
|
2292 |
msgid "Opaque"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
#: ../admin/settings.php:625
|
2296 |
msgid "Default size (W x H)"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
+
#: ../admin/settings.php:630
|
2300 |
msgid "Duration time"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
+
#: ../admin/settings.php:631
|
2304 |
msgid "sec."
|
2305 |
msgstr ""
|
2306 |
|
2307 |
+
#: ../admin/settings.php:634
|
2308 |
+
#: ../admin/settings.php:709
|
2309 |
msgid "Transition / Fade effect"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: ../admin/settings.php:637
|
2313 |
+
#: ../admin/settings.php:712
|
2314 |
msgid "fade"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: ../admin/settings.php:638
|
2318 |
msgid "blindX"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
+
#: ../admin/settings.php:639
|
2322 |
msgid "cover"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
+
#: ../admin/settings.php:640
|
2326 |
msgid "scrollUp"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: ../admin/settings.php:641
|
2330 |
msgid "scrollDown"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: ../admin/settings.php:642
|
2334 |
msgid "shuffle"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: ../admin/settings.php:643
|
2338 |
msgid "toss"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: ../admin/settings.php:644
|
2342 |
msgid "wipe"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: ../admin/settings.php:646
|
2346 |
msgid "See here for more information about the effects :"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: ../admin/settings.php:650
|
2350 |
msgid "Settings for the JW Image Rotator"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: ../admin/settings.php:651
|
2354 |
msgid "The settings are only used in the JW Image Rotator Version"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: ../admin/settings.php:652
|
2358 |
msgid "See more information for the Flash Player on the web page"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: ../admin/settings.php:657
|
2362 |
msgid "The path to imagerotator.swf is not defined, the slideshow will not work."
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: ../admin/settings.php:658
|
2366 |
msgid "If you would like to use the JW Image Rotatator, please download the player <a href=\"http://www.longtailvideo.com/players/jw-image-rotator/\" target=\"_blank\" >here</a> and upload it to your Upload folder (Default is wp-content/uploads)."
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: ../admin/settings.php:664
|
2370 |
msgid "Enable flash slideshow"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
+
#: ../admin/settings.php:666
|
2374 |
msgid "Integrate the flash based slideshow for all flash supported devices"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: ../admin/settings.php:669
|
2378 |
msgid "Path to the Imagerotator (URL)"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
+
#: ../admin/settings.php:672
|
2382 |
msgid "Search now"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: ../admin/settings.php:673
|
2386 |
msgid "Press the button to search automatically for the imagerotator, if you uploaded it to wp-content/uploads or a subfolder"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: ../admin/settings.php:677
|
2390 |
msgid "Shuffle mode"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: ../admin/settings.php:681
|
2394 |
msgid "Show next image on click"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: ../admin/settings.php:685
|
2398 |
msgid "Show navigation bar"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: ../admin/settings.php:689
|
2402 |
msgid "Show loading icon"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: ../admin/settings.php:693
|
2406 |
msgid "Use watermark logo"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: ../admin/settings.php:695
|
2410 |
msgid "You can change the logo at the watermark settings"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: ../admin/settings.php:698
|
2414 |
msgid "Stretch image"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: ../admin/settings.php:701
|
2418 |
msgid "true"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: ../admin/settings.php:702
|
2422 |
msgid "false"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: ../admin/settings.php:703
|
2426 |
msgid "fit"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: ../admin/settings.php:704
|
2430 |
msgid "none"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: ../admin/settings.php:713
|
2434 |
msgid "bgfade"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: ../admin/settings.php:714
|
2438 |
msgid "slowfade"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
+
#: ../admin/settings.php:715
|
2442 |
msgid "circles"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
+
#: ../admin/settings.php:716
|
2446 |
msgid "bubbles"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
+
#: ../admin/settings.php:717
|
2450 |
msgid "blocks"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: ../admin/settings.php:718
|
2454 |
msgid "fluids"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
+
#: ../admin/settings.php:719
|
2458 |
msgid "flash"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: ../admin/settings.php:720
|
2462 |
msgid "lines"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: ../admin/settings.php:721
|
2466 |
msgid "random"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: ../admin/settings.php:726
|
2470 |
msgid "Use slow zooming effect"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: ../admin/settings.php:730
|
2474 |
msgid "Background Color"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: ../admin/settings.php:735
|
2478 |
msgid "Texts / Buttons Color"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
+
#: ../admin/settings.php:740
|
2482 |
msgid "Rollover / Active Color"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
+
#: ../admin/settings.php:745
|
2486 |
msgid "Screen Color"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: ../admin/settings.php:750
|
2490 |
msgid "Background music (URL)"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: ../admin/settings.php:754
|
2494 |
msgid "Try XHTML validation (with CDATA)"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
+
#: ../admin/settings.php:756
|
2498 |
msgid "Important : Could causes problem at some browser. Please recheck your page."
|
2499 |
msgstr ""
|
2500 |
|
2793 |
msgstr ""
|
2794 |
|
2795 |
#: ../admin/upgrade.php:168
|
2796 |
+
#: ../admin/upgrade.php:190
|
2797 |
msgid "Updated options."
|
2798 |
msgstr ""
|
2799 |
|
2813 |
msgid "Depend on the amount of database entries this will take a while, don't reload this page."
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: ../admin/upgrade.php:195
|
2817 |
msgid "Could not find NextGEN Gallery database tables, upgrade failed !"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: ../admin/upgrade.php:258
|
2821 |
msgid "Some folders/files could not renamed, please recheck the permission and rescan the folder in the manage gallery section."
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: ../admin/upgrade.php:260
|
2825 |
msgid "Rename failed"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
+
#: ../admin/upgrade.php:356
|
2829 |
+
#: ../admin/upgrade.php:375
|
2830 |
msgid "Upgrade NextGEN Gallery"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
+
#: ../admin/upgrade.php:357
|
2834 |
msgid "The script detect that you upgrade from a older version."
|
2835 |
msgstr ""
|
2836 |
|
2837 |
+
#: ../admin/upgrade.php:358
|
2838 |
msgid "Your database tables for NextGEN Gallery is out-of-date, and must be upgraded before you can continue."
|
2839 |
msgstr ""
|
2840 |
|
2841 |
+
#: ../admin/upgrade.php:359
|
2842 |
msgid "If you would like to downgrade later, please make first a complete backup of your database and the images."
|
2843 |
msgstr ""
|
2844 |
|
2845 |
+
#: ../admin/upgrade.php:360
|
2846 |
msgid "The upgrade process may take a while, so please be patient."
|
2847 |
msgstr ""
|
2848 |
|
2849 |
+
#: ../admin/upgrade.php:361
|
2850 |
msgid "Start upgrade now"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
+
#: ../admin/upgrade.php:377
|
2854 |
msgid "Upgrade finished..."
|
2855 |
msgstr ""
|
2856 |
|
2857 |
+
#: ../admin/upgrade.php:378
|
2858 |
msgid "Continue"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
+
#: ../admin/upgrade.php:401
|
2862 |
#, php-format
|
2863 |
msgid "Rebuild image structure : %s / %s images"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: ../admin/upgrade.php:402
|
2867 |
#, php-format
|
2868 |
msgid "Rebuild gallery structure : %s / %s galleries"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
+
#: ../admin/upgrade.php:403
|
2872 |
#, php-format
|
2873 |
msgid "Rebuild album structure : %s / %s albums"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: ../admin/upgrade.php:460
|
2877 |
msgid "Done."
|
2878 |
msgstr ""
|
2879 |
|
3008 |
msgid "Insert"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: ../lib/core.php:397
|
3012 |
#, php-format
|
3013 |
msgid "Note : Based on your server memory limit you should not upload larger images then <strong>%d x %d</strong> pixel"
|
3014 |
msgstr ""
|
3038 |
msgid "Not fired"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: ../lib/meta.php:430
|
3042 |
msgid "Aperture"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
+
#: ../lib/meta.php:431
|
3046 |
+
#: ../lib/meta.php:456
|
3047 |
msgid "Credit"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: ../lib/meta.php:432
|
3051 |
msgid "Camera"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: ../lib/meta.php:433
|
3055 |
msgid "Caption"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: ../lib/meta.php:435
|
3059 |
msgid "Copyright"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: ../lib/meta.php:436
|
3063 |
msgid "Focal length"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: ../lib/meta.php:437
|
3067 |
msgid "ISO"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: ../lib/meta.php:438
|
3071 |
msgid "Shutter speed"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: ../lib/meta.php:442
|
3075 |
msgid "Subject"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: ../lib/meta.php:443
|
3079 |
msgid "Make"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: ../lib/meta.php:444
|
3083 |
msgid "Edit Status"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: ../lib/meta.php:445
|
3087 |
msgid "Category"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: ../lib/meta.php:446
|
3091 |
msgid "Keywords"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: ../lib/meta.php:447
|
3095 |
msgid "Date Created"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
+
#: ../lib/meta.php:448
|
3099 |
msgid "Time Created"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: ../lib/meta.php:449
|
3103 |
msgid "Author Position"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: ../lib/meta.php:450
|
3107 |
msgid "City"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: ../lib/meta.php:451
|
3111 |
msgid "Location"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: ../lib/meta.php:452
|
3115 |
msgid "Province/State"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: ../lib/meta.php:453
|
3119 |
msgid "Country code"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: ../lib/meta.php:454
|
3123 |
msgid "Country"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: ../lib/meta.php:455
|
3127 |
msgid "Headline"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: ../lib/meta.php:457
|
3131 |
msgid "Source"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: ../lib/meta.php:458
|
3135 |
msgid "Copyright Notice"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: ../lib/meta.php:459
|
3139 |
msgid "Contact"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: ../lib/meta.php:460
|
3143 |
msgid "Last modified"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: ../lib/meta.php:461
|
3147 |
msgid "Program tool"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: ../lib/meta.php:462
|
3151 |
msgid "Format"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: ../lib/meta.php:463
|
3155 |
msgid "Image Width"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: ../lib/meta.php:464
|
3159 |
msgid "Image Height"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: ../lib/meta.php:465
|
3163 |
msgid "Flash"
|
3164 |
msgstr ""
|
3165 |
|
3343 |
msgstr ""
|
3344 |
|
3345 |
#: ../view/album-compact.php:32
|
3346 |
+
#: ../view/album-extend.php:30
|
3347 |
msgid "Photos"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
#: ../view/gallery-caption.php:32
|
|
|
3351 |
#: ../view/gallery.php:32
|
3352 |
#: ../widgets/media-rss-widget.php:122
|
3353 |
msgid "[View with PicLens]"
|
3355 |
|
3356 |
#: ../view/imagebrowser-caption.php:26
|
3357 |
#: ../view/imagebrowser-exif.php:30
|
|
|
3358 |
#: ../view/imagebrowser.php:26
|
3359 |
msgid "Back"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
#: ../view/imagebrowser-caption.php:29
|
3363 |
#: ../view/imagebrowser-exif.php:33
|
|
|
3364 |
#: ../view/imagebrowser.php:29
|
3365 |
msgid "Next"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
#: ../view/imagebrowser-caption.php:31
|
3369 |
#: ../view/imagebrowser-exif.php:35
|
|
|
3370 |
#: ../view/imagebrowser.php:31
|
3371 |
msgid "of"
|
3372 |
msgstr ""
|
lib/core.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Main PHP class for the WordPress plugin NextGEN Gallery
|
4 |
*
|
5 |
* @author Alex Rabe
|
6 |
-
* @copyright Copyright 2007 -
|
7 |
*
|
8 |
*/
|
9 |
class nggGallery {
|
@@ -311,10 +311,10 @@ class nggGallery {
|
|
311 |
*/
|
312 |
function get_theme_css_file() {
|
313 |
|
314 |
-
// allow other plugins to include a stylesheet
|
315 |
$stylesheet = apply_filters( 'ngg_load_stylesheet', false );
|
316 |
|
317 |
-
if (
|
318 |
return ( $stylesheet );
|
319 |
elseif ( file_exists (STYLESHEETPATH . '/nggallery.css') )
|
320 |
return get_stylesheet_directory_uri() . '/nggallery.css';
|
@@ -323,12 +323,13 @@ class nggGallery {
|
|
323 |
}
|
324 |
|
325 |
/**
|
326 |
-
* Support for i18n with polyglot or qtrans
|
327 |
*
|
328 |
* @param string $in
|
|
|
329 |
* @return string $in localized
|
330 |
*/
|
331 |
-
function i18n($in) {
|
332 |
|
333 |
if ( function_exists( 'langswitch_filter_langs_with_message' ) )
|
334 |
$in = langswitch_filter_langs_with_message($in);
|
@@ -338,11 +339,28 @@ class nggGallery {
|
|
338 |
|
339 |
if ( function_exists( 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage' ))
|
340 |
$in = qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($in);
|
|
|
|
|
|
|
341 |
|
342 |
$in = apply_filters('localization', $in);
|
343 |
|
344 |
return $in;
|
345 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
|
347 |
/**
|
348 |
* Check the memory_limit and calculate a recommended memory size
|
@@ -520,5 +538,4 @@ class nggGallery {
|
|
520 |
return false;
|
521 |
}
|
522 |
}
|
523 |
-
|
524 |
?>
|
3 |
* Main PHP class for the WordPress plugin NextGEN Gallery
|
4 |
*
|
5 |
* @author Alex Rabe
|
6 |
+
* @copyright Copyright 2007 - 2011
|
7 |
*
|
8 |
*/
|
9 |
class nggGallery {
|
311 |
*/
|
312 |
function get_theme_css_file() {
|
313 |
|
314 |
+
// allow other plugins to include a custom stylesheet
|
315 |
$stylesheet = apply_filters( 'ngg_load_stylesheet', false );
|
316 |
|
317 |
+
if ( $stylesheet !== false )
|
318 |
return ( $stylesheet );
|
319 |
elseif ( file_exists (STYLESHEETPATH . '/nggallery.css') )
|
320 |
return get_stylesheet_directory_uri() . '/nggallery.css';
|
323 |
}
|
324 |
|
325 |
/**
|
326 |
+
* Support for i18n with wpml, polyglot or qtrans
|
327 |
*
|
328 |
* @param string $in
|
329 |
+
* @param string $name (optional) required for wpml to determine the type of translation
|
330 |
* @return string $in localized
|
331 |
*/
|
332 |
+
function i18n($in, $name = null) {
|
333 |
|
334 |
if ( function_exists( 'langswitch_filter_langs_with_message' ) )
|
335 |
$in = langswitch_filter_langs_with_message($in);
|
339 |
|
340 |
if ( function_exists( 'qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage' ))
|
341 |
$in = qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($in);
|
342 |
+
|
343 |
+
if (is_string($name) && !empty($name) && function_exists('icl_translate'))
|
344 |
+
$in = icl_translate('plugin_ngg', $name, $in, true);
|
345 |
|
346 |
$in = apply_filters('localization', $in);
|
347 |
|
348 |
return $in;
|
349 |
}
|
350 |
+
|
351 |
+
/**
|
352 |
+
* This function register strings for the use with WPML plugin (see http://wpml.org/ )
|
353 |
+
*
|
354 |
+
* @param object $image
|
355 |
+
* @return void
|
356 |
+
*/
|
357 |
+
function RegisterString($image) {
|
358 |
+
if (function_exists('icl_register_string')) {
|
359 |
+
global $wpdb;
|
360 |
+
icl_register_string('plugin_ngg', 'pic_' . $image->pid . '_description', $image->description, TRUE);
|
361 |
+
icl_register_string('plugin_ngg', 'pic_' . $image->pid . '_alttext', $image->alttext, TRUE);
|
362 |
+
}
|
363 |
+
}
|
364 |
|
365 |
/**
|
366 |
* Check the memory_limit and calculate a recommended memory size
|
538 |
return false;
|
539 |
}
|
540 |
}
|
|
|
541 |
?>
|
lib/gd.thumbnail.inc.php
CHANGED
@@ -233,15 +233,18 @@ class ngg_Thumbnail {
|
|
233 |
$memoryNeeded = memory_get_usage() + $memoryNeeded;
|
234 |
// get memory limit
|
235 |
$memory_limit = ini_get('memory_limit');
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
|
|
|
|
|
|
245 |
}
|
246 |
return;
|
247 |
}
|
233 |
$memoryNeeded = memory_get_usage() + $memoryNeeded;
|
234 |
// get memory limit
|
235 |
$memory_limit = ini_get('memory_limit');
|
236 |
+
if ( strtolower(substr($memory_limit, -1)) == 'm' ) {
|
237 |
+
|
238 |
+
if ($memory_limit != '') {
|
239 |
+
$memory_limit = substr($memory_limit, 0, -1) * 1024 * 1024;
|
240 |
+
}
|
241 |
+
|
242 |
+
if ($memoryNeeded > $memory_limit) {
|
243 |
+
$memoryNeeded = round ($memoryNeeded / 1024 / 1024, 2);
|
244 |
+
$this->errmsg = 'Exceed Memory limit. Require : '.$memoryNeeded. " MByte" ;
|
245 |
+
$this->error = true;
|
246 |
+
}
|
247 |
+
}
|
248 |
}
|
249 |
return;
|
250 |
}
|
lib/media-rss.php
CHANGED
@@ -219,13 +219,13 @@ class nggMediaRss {
|
|
219 |
$thumbheight = ($ngg_options['thumbfix'] ? $ngg_options['thumbheight'] : $thumbwidth);
|
220 |
|
221 |
$out = $indent . "<item>\n";
|
222 |
-
$out .= $indent . "\t<title><![CDATA[" . nggGallery::i18n($title) . "]]></title>\n";
|
223 |
-
$out .= $indent . "\t<description><![CDATA[" . nggGallery::i18n($desc) . "]]></description>\n";
|
224 |
$out .= $indent . "\t<link><![CDATA[" . $image->get_permalink() . "]]></link>\n";
|
225 |
$out .= $indent . "\t<guid>image-id:" . $image->pid . "</guid>\n";
|
226 |
$out .= $indent . "\t<media:content url='" . esc_url($image->imageURL) . "' medium='image' />\n";
|
227 |
-
$out .= $indent . "\t<media:title><![CDATA[" . nggGallery::i18n($title) . "]]></media:title>\n";
|
228 |
-
$out .= $indent . "\t<media:description><![CDATA[" . nggGallery::i18n($desc) . "]]></media:description>\n";
|
229 |
$out .= $indent . "\t<media:thumbnail url='" . esc_url($image->thumbURL) . "' width='" . $thumbwidth . "' height='" . $thumbheight . "' />\n";
|
230 |
$out .= $indent . "\t<media:keywords><![CDATA[" . nggGallery::i18n($tag_names) . "]]></media:keywords>\n";
|
231 |
$out .= $indent . "\t<media:copyright><![CDATA[Copyright (c) " . get_option("blogname") . " (" . site_url() . ")]]></media:copyright>\n";
|
219 |
$thumbheight = ($ngg_options['thumbfix'] ? $ngg_options['thumbheight'] : $thumbwidth);
|
220 |
|
221 |
$out = $indent . "<item>\n";
|
222 |
+
$out .= $indent . "\t<title><![CDATA[" . nggGallery::i18n($title, 'pic_' . $image->pid . '_alttext') . "]]></title>\n";
|
223 |
+
$out .= $indent . "\t<description><![CDATA[" . nggGallery::i18n($desc, 'pic_' . $image->pid . '_description') . "]]></description>\n";
|
224 |
$out .= $indent . "\t<link><![CDATA[" . $image->get_permalink() . "]]></link>\n";
|
225 |
$out .= $indent . "\t<guid>image-id:" . $image->pid . "</guid>\n";
|
226 |
$out .= $indent . "\t<media:content url='" . esc_url($image->imageURL) . "' medium='image' />\n";
|
227 |
+
$out .= $indent . "\t<media:title><![CDATA[" . nggGallery::i18n($title, 'pic_' . $image->pid . '_alttext') . "]]></media:title>\n";
|
228 |
+
$out .= $indent . "\t<media:description><![CDATA[" . nggGallery::i18n($desc, 'pic_' . $image->pid . '_description') . "]]></media:description>\n";
|
229 |
$out .= $indent . "\t<media:thumbnail url='" . esc_url($image->thumbURL) . "' width='" . $thumbwidth . "' height='" . $thumbheight . "' />\n";
|
230 |
$out .= $indent . "\t<media:keywords><![CDATA[" . nggGallery::i18n($tag_names) . "]]></media:keywords>\n";
|
231 |
$out .= $indent . "\t<media:copyright><![CDATA[Copyright (c) " . get_option("blogname") . " (" . site_url() . ")]]></media:copyright>\n";
|
lib/ngg-db.php
CHANGED
@@ -170,7 +170,7 @@ class nggdb {
|
|
170 |
/**
|
171 |
* Get a gallery given its ID
|
172 |
*
|
173 |
-
* @param int|string $id or $
|
174 |
* @return A nggGallery object (null if not found)
|
175 |
*/
|
176 |
function find_gallery( $id ) {
|
@@ -184,7 +184,7 @@ class nggdb {
|
|
184 |
$gallery = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->nggallery WHERE gid = %d", $id ) );
|
185 |
|
186 |
} else
|
187 |
-
$gallery = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->nggallery WHERE
|
188 |
|
189 |
// Build the object from the query result
|
190 |
if ($gallery) {
|
@@ -235,7 +235,7 @@ class nggdb {
|
|
235 |
if( is_numeric($id) )
|
236 |
$result = $wpdb->get_results( $wpdb->prepare( "SELECT SQL_CALC_FOUND_ROWS tt.*, t.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE t.gid = %d {$exclude_clause} ORDER BY tt.{$order_by} {$order_dir} {$limit_by}", $id ), OBJECT_K );
|
237 |
else
|
238 |
-
$result = $wpdb->get_results( $wpdb->prepare( "SELECT SQL_CALC_FOUND_ROWS tt.*, t.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE t.
|
239 |
|
240 |
// Count the number of images and calculate the pagination
|
241 |
if ($limit > 0) {
|
@@ -286,7 +286,7 @@ class nggdb {
|
|
286 |
if( is_numeric($id) )
|
287 |
$result = $wpdb->get_col( $wpdb->prepare( "SELECT tt.pid FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE t.gid = %d $exclude_clause ORDER BY tt.{$order_by} $order_dir", $id ) );
|
288 |
else
|
289 |
-
$result = $wpdb->get_col( $wpdb->prepare( "SELECT tt.pid FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE t.
|
290 |
|
291 |
return $result;
|
292 |
}
|
@@ -317,11 +317,11 @@ class nggdb {
|
|
317 |
function find_album( $id ) {
|
318 |
global $wpdb;
|
319 |
|
320 |
-
if ( $album = wp_cache_get($id, 'ngg_album') )
|
321 |
-
return $album;
|
322 |
-
|
323 |
// Query database
|
324 |
if ( is_numeric($id) && $id != 0 ) {
|
|
|
|
|
|
|
325 |
$album = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->nggalbum WHERE id = %d", $id) );
|
326 |
} elseif ( $id == 'all' || (is_numeric($id) && $id == 0) ) {
|
327 |
// init the object and fill it
|
@@ -332,7 +332,7 @@ class nggdb {
|
|
332 |
$album->previewpic = 0;
|
333 |
$album->sortorder = serialize( $wpdb->get_col("SELECT gid FROM $wpdb->nggallery") );
|
334 |
} else {
|
335 |
-
$album = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->nggalbum WHERE
|
336 |
}
|
337 |
|
338 |
// Unserialize the galleries inside the album
|
@@ -344,7 +344,7 @@ class nggdb {
|
|
344 |
$album->albumdesc = stripslashes($album->albumdesc);
|
345 |
$album->name = stripslashes($album->name);
|
346 |
|
347 |
-
wp_cache_add($id, $album, 'ngg_album');
|
348 |
return $album;
|
349 |
}
|
350 |
|
@@ -415,7 +415,7 @@ class nggdb {
|
|
415 |
|
416 |
// create the sql parameter "name = value"
|
417 |
foreach ($update as $key => $value)
|
418 |
-
if ($value)
|
419 |
$sql[] = $key . " = '" . $value . "'";
|
420 |
|
421 |
// create the final string
|
@@ -464,7 +464,7 @@ class nggdb {
|
|
464 |
|
465 |
// create the sql parameter "name = value"
|
466 |
foreach ($update as $key => $value)
|
467 |
-
if ($value)
|
468 |
$sql[] = $key . " = '" . $value . "'";
|
469 |
|
470 |
// create the final string
|
@@ -510,7 +510,7 @@ class nggdb {
|
|
510 |
|
511 |
// create the sql parameter "name = value"
|
512 |
foreach ($update as $key => $value)
|
513 |
-
if ($value)
|
514 |
$sql[] = $key . " = '" . $value . "'";
|
515 |
|
516 |
// create the final string
|
@@ -527,17 +527,21 @@ class nggdb {
|
|
527 |
/**
|
528 |
* Get an image given its ID
|
529 |
*
|
530 |
-
* @param
|
531 |
* @return object A nggImage object representing the image (false if not found)
|
532 |
*/
|
533 |
function find_image( $id ) {
|
534 |
global $wpdb;
|
|
|
|
|
|
|
|
|
|
|
535 |
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
// Build the object from the query result
|
542 |
if ($result) {
|
543 |
$image = new nggImage($result);
|
@@ -1046,37 +1050,38 @@ class nggdb {
|
|
1046 |
* @author taken from WP Core includes/post.php
|
1047 |
* @param string $slug the desired slug (post_name)
|
1048 |
* @param string $type ('image', 'album' or 'gallery')
|
|
|
1049 |
* @return string unique slug for the object, based on $slug (with a -1, -2, etc. suffix)
|
1050 |
*/
|
1051 |
-
function get_unique_slug( $slug, $type ) {
|
1052 |
|
1053 |
global $wpdb;
|
1054 |
|
1055 |
switch ($type) {
|
1056 |
case 'image':
|
1057 |
-
$check_sql = "SELECT image_slug FROM $wpdb->nggpictures WHERE image_slug = %s LIMIT 1";
|
1058 |
break;
|
1059 |
case 'album':
|
1060 |
-
$check_sql = "SELECT slug FROM $wpdb->nggalbum WHERE slug = %s LIMIT 1";
|
1061 |
break;
|
1062 |
case 'gallery':
|
1063 |
-
$check_sql = "SELECT slug FROM $wpdb->nggallery WHERE slug = %s LIMIT 1";
|
1064 |
break;
|
1065 |
default:
|
1066 |
return false;
|
1067 |
}
|
1068 |
|
1069 |
-
//if you didn't give us a
|
1070 |
$slug = empty($slug) ? $type: $slug;
|
1071 |
|
1072 |
// Slugs must be unique across all objects.
|
1073 |
-
|
1074 |
|
1075 |
if ( $slug_check ) {
|
1076 |
$suffix = 2;
|
1077 |
do {
|
1078 |
$alt_name = substr ($slug, 0, 200 - ( strlen( $suffix ) + 1 ) ) . "-$suffix";
|
1079 |
-
$slug_check = $wpdb->get_var( $wpdb->prepare($check_sql, $alt_name ) );
|
1080 |
$suffix++;
|
1081 |
} while ( $slug_check );
|
1082 |
$slug = $alt_name;
|
170 |
/**
|
171 |
* Get a gallery given its ID
|
172 |
*
|
173 |
+
* @param int|string $id or $slug
|
174 |
* @return A nggGallery object (null if not found)
|
175 |
*/
|
176 |
function find_gallery( $id ) {
|
184 |
$gallery = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->nggallery WHERE gid = %d", $id ) );
|
185 |
|
186 |
} else
|
187 |
+
$gallery = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->nggallery WHERE slug = %s", $id ) );
|
188 |
|
189 |
// Build the object from the query result
|
190 |
if ($gallery) {
|
235 |
if( is_numeric($id) )
|
236 |
$result = $wpdb->get_results( $wpdb->prepare( "SELECT SQL_CALC_FOUND_ROWS tt.*, t.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE t.gid = %d {$exclude_clause} ORDER BY tt.{$order_by} {$order_dir} {$limit_by}", $id ), OBJECT_K );
|
237 |
else
|
238 |
+
$result = $wpdb->get_results( $wpdb->prepare( "SELECT SQL_CALC_FOUND_ROWS tt.*, t.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE t.slug = %s {$exclude_clause} ORDER BY tt.{$order_by} {$order_dir} {$limit_by}", $id ), OBJECT_K );
|
239 |
|
240 |
// Count the number of images and calculate the pagination
|
241 |
if ($limit > 0) {
|
286 |
if( is_numeric($id) )
|
287 |
$result = $wpdb->get_col( $wpdb->prepare( "SELECT tt.pid FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE t.gid = %d $exclude_clause ORDER BY tt.{$order_by} $order_dir", $id ) );
|
288 |
else
|
289 |
+
$result = $wpdb->get_col( $wpdb->prepare( "SELECT tt.pid FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE t.slug = %s $exclude_clause ORDER BY tt.{$order_by} $order_dir", $id ) );
|
290 |
|
291 |
return $result;
|
292 |
}
|
317 |
function find_album( $id ) {
|
318 |
global $wpdb;
|
319 |
|
|
|
|
|
|
|
320 |
// Query database
|
321 |
if ( is_numeric($id) && $id != 0 ) {
|
322 |
+
if ( $album = wp_cache_get($id, 'ngg_album') )
|
323 |
+
return $album;
|
324 |
+
|
325 |
$album = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->nggalbum WHERE id = %d", $id) );
|
326 |
} elseif ( $id == 'all' || (is_numeric($id) && $id == 0) ) {
|
327 |
// init the object and fill it
|
332 |
$album->previewpic = 0;
|
333 |
$album->sortorder = serialize( $wpdb->get_col("SELECT gid FROM $wpdb->nggallery") );
|
334 |
} else {
|
335 |
+
$album = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->nggalbum WHERE slug = %s", $id) );
|
336 |
}
|
337 |
|
338 |
// Unserialize the galleries inside the album
|
344 |
$album->albumdesc = stripslashes($album->albumdesc);
|
345 |
$album->name = stripslashes($album->name);
|
346 |
|
347 |
+
wp_cache_add($album->id, $album, 'ngg_album');
|
348 |
return $album;
|
349 |
}
|
350 |
|
415 |
|
416 |
// create the sql parameter "name = value"
|
417 |
foreach ($update as $key => $value)
|
418 |
+
if ($value !== false)
|
419 |
$sql[] = $key . " = '" . $value . "'";
|
420 |
|
421 |
// create the final string
|
464 |
|
465 |
// create the sql parameter "name = value"
|
466 |
foreach ($update as $key => $value)
|
467 |
+
if ($value !== false)
|
468 |
$sql[] = $key . " = '" . $value . "'";
|
469 |
|
470 |
// create the final string
|
510 |
|
511 |
// create the sql parameter "name = value"
|
512 |
foreach ($update as $key => $value)
|
513 |
+
if ($value !== false)
|
514 |
$sql[] = $key . " = '" . $value . "'";
|
515 |
|
516 |
// create the final string
|
527 |
/**
|
528 |
* Get an image given its ID
|
529 |
*
|
530 |
+
* @param int|string The image ID or Slug
|
531 |
* @return object A nggImage object representing the image (false if not found)
|
532 |
*/
|
533 |
function find_image( $id ) {
|
534 |
global $wpdb;
|
535 |
+
|
536 |
+
if( is_numeric($id) ) {
|
537 |
+
|
538 |
+
if ( $image = wp_cache_get($id, 'ngg_image') )
|
539 |
+
return $image;
|
540 |
|
541 |
+
$result = $wpdb->get_row( $wpdb->prepare( "SELECT tt.*, t.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE tt.pid = %d ", $id ) );
|
542 |
+
} else
|
543 |
+
$result = $wpdb->get_row( $wpdb->prepare( "SELECT tt.*, t.* FROM $wpdb->nggallery AS t INNER JOIN $wpdb->nggpictures AS tt ON t.gid = tt.galleryid WHERE tt.image_slug = %s ", $id ) );
|
544 |
+
|
|
|
545 |
// Build the object from the query result
|
546 |
if ($result) {
|
547 |
$image = new nggImage($result);
|
1050 |
* @author taken from WP Core includes/post.php
|
1051 |
* @param string $slug the desired slug (post_name)
|
1052 |
* @param string $type ('image', 'album' or 'gallery')
|
1053 |
+
* @param int (optional) $id of the object, so that it's not checked against itself
|
1054 |
* @return string unique slug for the object, based on $slug (with a -1, -2, etc. suffix)
|
1055 |
*/
|
1056 |
+
function get_unique_slug( $slug, $type, $id = 0 ) {
|
1057 |
|
1058 |
global $wpdb;
|
1059 |
|
1060 |
switch ($type) {
|
1061 |
case 'image':
|
1062 |
+
$check_sql = "SELECT image_slug FROM $wpdb->nggpictures WHERE image_slug = %s AND NOT pid = %d LIMIT 1";
|
1063 |
break;
|
1064 |
case 'album':
|
1065 |
+
$check_sql = "SELECT slug FROM $wpdb->nggalbum WHERE slug = %s AND NOT id = %d LIMIT 1";
|
1066 |
break;
|
1067 |
case 'gallery':
|
1068 |
+
$check_sql = "SELECT slug FROM $wpdb->nggallery WHERE slug = %s AND NOT gid = %d LIMIT 1";
|
1069 |
break;
|
1070 |
default:
|
1071 |
return false;
|
1072 |
}
|
1073 |
|
1074 |
+
//if you didn't give us a name we take the type
|
1075 |
$slug = empty($slug) ? $type: $slug;
|
1076 |
|
1077 |
// Slugs must be unique across all objects.
|
1078 |
+
$slug_check = $wpdb->get_var( $wpdb->prepare( $check_sql, $slug, $id ) );
|
1079 |
|
1080 |
if ( $slug_check ) {
|
1081 |
$suffix = 2;
|
1082 |
do {
|
1083 |
$alt_name = substr ($slug, 0, 200 - ( strlen( $suffix ) + 1 ) ) . "-$suffix";
|
1084 |
+
$slug_check = $wpdb->get_var( $wpdb->prepare($check_sql, $alt_name, $id ) );
|
1085 |
$suffix++;
|
1086 |
} while ( $slug_check );
|
1087 |
$slug = $alt_name;
|
lib/rewrite.php
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* nggRewrite -
|
5 |
*
|
6 |
* sorry wp-guys I didn't understand this at all.
|
7 |
* I tried it a couple of hours : this is the only pooooor result
|
8 |
*
|
9 |
* @package NextGEN Gallery
|
10 |
* @author Alex Rabe
|
11 |
-
* @copyright 2008
|
12 |
*/
|
13 |
class nggRewrite {
|
14 |
|
@@ -24,7 +24,7 @@ class nggRewrite {
|
|
24 |
$this->options = get_option('ngg_options');
|
25 |
|
26 |
// get later from the options
|
27 |
-
|
28 |
|
29 |
/*WARNING: Do nothook rewrite rule regentation on the init hook for anything other than dev. */
|
30 |
//add_action('init',array(&$this, 'flush'));
|
@@ -64,8 +64,7 @@ class nggRewrite {
|
|
64 |
if ( !empty( $gallerytag ) )
|
65 |
$args ['gallerytag'] = $gallerytag;
|
66 |
|
67 |
-
/** urlconstructor =
|
68 |
-
type : page | post
|
69 |
tags : album, gallery -> /album-([0-9]+)/gallery-([0-9]+)/
|
70 |
pid -> /image/([0-9]+)/
|
71 |
gallerytag -> /tags/([^/]+)/
|
@@ -74,21 +73,14 @@ class nggRewrite {
|
|
74 |
show=gallery -> /images/
|
75 |
**/
|
76 |
|
77 |
-
// 1.
|
78 |
-
|
79 |
|
80 |
-
// 2.
|
81 |
-
if ( $post->post_type == 'page' )
|
82 |
-
$url .= '/page-' . $post->ID; // Pagnename is nicer but how to handle /parent/pagename ? Confused...
|
83 |
-
else
|
84 |
-
$url .= '/post/' . $post->post_name;
|
85 |
-
|
86 |
-
// 3. Album, pid or tags
|
87 |
-
|
88 |
if (isset ($args['album']) && ($args['gallery'] == false) )
|
89 |
-
$url .= '/
|
90 |
elseif (isset ($args['album']) && isset ($args['gallery']) )
|
91 |
-
$url .= '/
|
92 |
|
93 |
if (isset ($args['gallerytag']))
|
94 |
$url .= '/tags/' . $args['gallerytag'];
|
@@ -96,15 +88,15 @@ class nggRewrite {
|
|
96 |
if (isset ($args['pid']))
|
97 |
$url .= '/image/' . $args['pid'];
|
98 |
|
99 |
-
//
|
100 |
if (isset ($args['nggpage']) && ($args['nggpage']) )
|
101 |
$url .= '/page-' . $args['nggpage'];
|
102 |
|
103 |
-
//
|
104 |
if (isset ($args['show']))
|
105 |
$url .= ( $args['show'] == 'slide' ) ? '/slideshow' : '/images';
|
106 |
|
107 |
-
return $url;
|
108 |
|
109 |
} else {
|
110 |
// we need to add the page/post id at the start_page otherwise we don't know which gallery is clicked
|
@@ -123,7 +115,7 @@ class nggRewrite {
|
|
123 |
else
|
124 |
$query = htmlspecialchars( add_query_arg( $args ) );
|
125 |
|
126 |
-
|
127 |
}
|
128 |
}
|
129 |
|
@@ -131,11 +123,12 @@ class nggRewrite {
|
|
131 |
* The permalinks needs to be flushed after activation
|
132 |
*/
|
133 |
function flush() {
|
134 |
-
global $wp_rewrite;
|
135 |
-
|
136 |
-
$this->options = get_option('ngg_options');
|
137 |
|
138 |
-
|
|
|
|
|
|
|
139 |
add_action('generate_rewrite_rules', array(&$this, 'RewriteRules'));
|
140 |
|
141 |
$wp_rewrite->flush_rules();
|
@@ -176,8 +169,8 @@ class nggRewrite {
|
|
176 |
$tag = get_query_var('gallerytag');
|
177 |
$show = get_query_var('show');
|
178 |
|
179 |
-
//TODO
|
180 |
-
//TODO
|
181 |
|
182 |
if ( $show == 'slide' )
|
183 |
$new_title .= __('Slideshow', 'nggallery') . $sep ;
|
@@ -185,16 +178,16 @@ class nggRewrite {
|
|
185 |
$new_title .= __('Gallery', 'nggallery') . $sep ;
|
186 |
|
187 |
if ( !empty($pid) )
|
188 |
-
$new_title .= __('Picture', 'nggallery') . ' ' .
|
189 |
|
190 |
if ( !empty($album) )
|
191 |
-
$new_title .= __('Album', 'nggallery') . ' ' .
|
192 |
|
193 |
if ( !empty($gallery) )
|
194 |
-
$new_title .= __('Gallery', 'nggallery') . ' ' .
|
195 |
|
196 |
if ( !empty($nggpage) )
|
197 |
-
$new_title .= __('Page', 'nggallery') . ' ' .
|
198 |
|
199 |
//esc_attr should avoid XSS like http://domain/?gallerytag=%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E
|
200 |
if ( !empty($tag) )
|
@@ -226,52 +219,143 @@ class nggRewrite {
|
|
226 |
/**
|
227 |
* The actual rewrite rules
|
228 |
*/
|
229 |
-
function RewriteRules($wp_rewrite) {
|
|
|
|
|
230 |
$rewrite_rules = array (
|
231 |
-
|
232 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
|
234 |
-
|
235 |
-
|
236 |
-
$this->slug.'/page-([0-9]+)/page-([0-9]+)/?$' => 'index.php?page_id=$matches[1]&nggpage=$matches[2]',
|
237 |
-
$this->slug.'/page-([0-9]+)/image/([0-9]+)/?$' => 'index.php?page_id=$matches[1]&pid=$matches[2]',
|
238 |
-
$this->slug.'/page-([0-9]+)/image/([0-9]+)/page-([0-9]+)/?$' => 'index.php?page_id=$matches[1]&pid=$matches[2]&nggpage=$matches[3]',
|
239 |
-
$this->slug.'/page-([0-9]+)/slideshow/?$' => 'index.php?page_id=$matches[1]&show=slide',
|
240 |
-
$this->slug.'/page-([0-9]+)/images/?$' => 'index.php?page_id=$matches[1]&show=gallery',
|
241 |
-
$this->slug.'/page-([0-9]+)/tags/([^/]+)/?$' => 'index.php?page_id=$matches[1]&gallerytag=$matches[2]',
|
242 |
-
$this->slug.'/page-([0-9]+)/tags/([^/]+)/page-([0-9]+)/?$' => 'index.php?page_id=$matches[1]&gallerytag=$matches[2]&nggpage=$matches[3]',
|
243 |
-
$this->slug.'/page-([0-9]+)/album-([^/]+)/?$' => 'index.php?page_id=$matches[1]&album=$matches[2]',
|
244 |
-
$this->slug.'/page-([0-9]+)/album-([^/]+)/page-([0-9]+)/?$' => 'index.php?page_id=$matches[1]&album=$matches[2]&nggpage=$matches[3]',
|
245 |
-
$this->slug.'/page-([0-9]+)/album-([^/]+)/gallery-([0-9]+)/?$' => 'index.php?page_id=$matches[1]&album=$matches[2]&gallery=$matches[3]',
|
246 |
-
$this->slug.'/page-([0-9]+)/album-([^/]+)/gallery-([0-9]+)/slideshow/?$' => 'index.php?page_id=$matches[1]&album=$matches[2]&gallery=$matches[3]&show=slide',
|
247 |
-
$this->slug.'/page-([0-9]+)/album-([^/]+)/gallery-([0-9]+)/images/?$' => 'index.php?page_id=$matches[1]&album=$matches[2]&gallery=$matches[3]&show=gallery',
|
248 |
-
$this->slug.'/page-([0-9]+)/album-([^/]+)/gallery-([0-9]+)/page/([0-9]+)/?$' => 'index.php?page_id=$matches[1]&album=$matches[2]&gallery=$matches[3]&pid=$matches[4]',
|
249 |
-
$this->slug.'/page-([0-9]+)/album-([^/]+)/gallery-([0-9]+)/page-([0-9]+)/?$' => 'index.php?page_id=$matches[1]&album=$matches[2]&gallery=$matches[3]&nggpage=$matches[4]',
|
250 |
-
$this->slug.'/page-([0-9]+)/album-([^/]+)/gallery-([0-9]+)/page-([0-9]+)/slideshow/?$' => 'index.php?page_id=$matches[1]&album=$matches[2]&gallery=$matches[3]&nggpage=$matches[4]&show=slide',
|
251 |
-
$this->slug.'/page-([0-9]+)/album-([^/]+)/gallery-([0-9]+)/page-([0-9]+)/images/?$' => 'index.php?page_id=$matches[1]&album=$matches[2]&gallery=$matches[3]&nggpage=$matches[4]&show=gallery',
|
252 |
-
|
253 |
-
// rewrite rules for posts
|
254 |
-
$this->slug.'/post/([^/]+)/?$' => 'index.php?name=$matches[1]',
|
255 |
-
$this->slug.'/post/([^/]+)/page-([0-9]+)/?$' => 'index.php?name=$matches[1]&nggpage=$matches[2]',
|
256 |
-
$this->slug.'/post/([^/]+)/image/([0-9]+)/?$' => 'index.php?name=$matches[1]&pid=$matches[2]',
|
257 |
-
$this->slug.'/post/([^/]+)/image/([0-9]+)/page-([0-9]+)/?$' => 'index.php?name=$matches[1]&pid=$matches[2]&nggpage=$matches[3]',
|
258 |
-
$this->slug.'/post/([^/]+)/slideshow/?$' => 'index.php?name=$matches[1]&show=slide',
|
259 |
-
$this->slug.'/post/([^/]+)/images/?$' => 'index.php?name=$matches[1]&show=gallery',
|
260 |
-
$this->slug.'/post/([^/]+)/tags/([^/]+)/?$' => 'index.php?name=$matches[1]&gallerytag=$matches[2]',
|
261 |
-
$this->slug.'/post/([^/]+)/tags/([^/]+)/page-([0-9]+)/?$' => 'index.php?name=$matches[1]&gallerytag=$matches[2]&nggpage=$matches[3]',
|
262 |
-
$this->slug.'/post/([^/]+)/album-([^/]+)/?$' => 'index.php?name=$matches[1]&album=$matches[2]',
|
263 |
-
$this->slug.'/post/([^/]+)/album-([^/]+)/page-([0-9]+)/?$' => 'index.php?name=$matches[1]&album=$matches[2]&nggpage=$matches[3]',
|
264 |
-
$this->slug.'/post/([^/]+)/album-([^/]+)/gallery-([0-9]+)/?$' => 'index.php?name=$matches[1]&album=$matches[2]&gallery=$matches[3]',
|
265 |
-
$this->slug.'/post/([^/]+)/album-([^/]+)/gallery-([0-9]+)/slideshow/?$' => 'index.php?name=$matches[1]&album=$matches[2]&gallery=$matches[3]&show=slide',
|
266 |
-
$this->slug.'/post/([^/]+)/album-([^/]+)/gallery-([0-9]+)/images/?$' => 'index.php?name=$matches[1]&album=$matches[2]&gallery=$matches[3]&show=gallery',
|
267 |
-
$this->slug.'/post/([^/]+)/album-([^/]+)/gallery-([0-9]+)/page/([0-9]+)/?$' => 'index.php?name=$matches[1]&album=$matches[2]&gallery=$matches[3]&pid=$matches[4]',
|
268 |
-
$this->slug.'/post/([^/]+)/album-([^/]+)/gallery-([0-9]+)/page-([0-9]+)/?$' => 'index.php?name=$matches[1]&album=$matches[2]&gallery=$matches[3]&nggpage=$matches[4]',
|
269 |
-
$this->slug.'/post/([^/]+)/album-([^/]+)/gallery-([0-9]+)/page-([0-9]+)/slideshow/?$' => 'index.php?name=$matches[1]&album=$matches[2]&gallery=$matches[3]&nggpage=$matches[4]&show=slide',
|
270 |
-
$this->slug.'/post/([^/]+)/album-([^/]+)/gallery-([0-9]+)/page-([0-9]+)/images/?$' => 'index.php?name=$matches[1]&album=$matches[2]&gallery=$matches[3]&nggpage=$matches[4]&show=gallery',
|
271 |
);
|
272 |
-
|
|
|
273 |
$wp_rewrite->rules = array_merge($rewrite_rules, $wp_rewrite->rules);
|
274 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
|
276 |
} // of nggRewrite CLASS
|
277 |
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* nggRewrite - Rewrite Rules for NextGEN Gallery
|
5 |
*
|
6 |
* sorry wp-guys I didn't understand this at all.
|
7 |
* I tried it a couple of hours : this is the only pooooor result
|
8 |
*
|
9 |
* @package NextGEN Gallery
|
10 |
* @author Alex Rabe
|
11 |
+
* @copyright 2008-2011
|
12 |
*/
|
13 |
class nggRewrite {
|
14 |
|
24 |
$this->options = get_option('ngg_options');
|
25 |
|
26 |
// get later from the options
|
27 |
+
$this->slug = $this->options['permalinkSlug'];
|
28 |
|
29 |
/*WARNING: Do nothook rewrite rule regentation on the init hook for anything other than dev. */
|
30 |
//add_action('init',array(&$this, 'flush'));
|
64 |
if ( !empty( $gallerytag ) )
|
65 |
$args ['gallerytag'] = $gallerytag;
|
66 |
|
67 |
+
/** urlconstructor = post url | slug | tags | [nav] | [show]
|
|
|
68 |
tags : album, gallery -> /album-([0-9]+)/gallery-([0-9]+)/
|
69 |
pid -> /image/([0-9]+)/
|
70 |
gallerytag -> /tags/([^/]+)/
|
73 |
show=gallery -> /images/
|
74 |
**/
|
75 |
|
76 |
+
// 1. Post / Page url + main slug
|
77 |
+
$url = trailingslashit ( get_permalink ($post->ID) ) . $this->slug;
|
78 |
|
79 |
+
// 2. Album, pid or tags
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
if (isset ($args['album']) && ($args['gallery'] == false) )
|
81 |
+
$url .= '/' . $args['album'];
|
82 |
elseif (isset ($args['album']) && isset ($args['gallery']) )
|
83 |
+
$url .= '/' . $args['album'] . '/' . $args['gallery'];
|
84 |
|
85 |
if (isset ($args['gallerytag']))
|
86 |
$url .= '/tags/' . $args['gallerytag'];
|
88 |
if (isset ($args['pid']))
|
89 |
$url .= '/image/' . $args['pid'];
|
90 |
|
91 |
+
// 3. Navigation
|
92 |
if (isset ($args['nggpage']) && ($args['nggpage']) )
|
93 |
$url .= '/page-' . $args['nggpage'];
|
94 |
|
95 |
+
// 4. Show images or Slideshow
|
96 |
if (isset ($args['show']))
|
97 |
$url .= ( $args['show'] == 'slide' ) ? '/slideshow' : '/images';
|
98 |
|
99 |
+
return apply_filters('ngg_get_permalink', $url, $args);
|
100 |
|
101 |
} else {
|
102 |
// we need to add the page/post id at the start_page otherwise we don't know which gallery is clicked
|
115 |
else
|
116 |
$query = htmlspecialchars( add_query_arg( $args ) );
|
117 |
|
118 |
+
return apply_filters('ngg_get_permalink', $query, $args);
|
119 |
}
|
120 |
}
|
121 |
|
123 |
* The permalinks needs to be flushed after activation
|
124 |
*/
|
125 |
function flush() {
|
126 |
+
global $wp_rewrite, $ngg;
|
|
|
|
|
127 |
|
128 |
+
// reload slug, maybe it changed during the flush routine
|
129 |
+
$this->slug = $ngg->options['permalinkSlug'];
|
130 |
+
|
131 |
+
if ($ngg->options['usePermalinks'])
|
132 |
add_action('generate_rewrite_rules', array(&$this, 'RewriteRules'));
|
133 |
|
134 |
$wp_rewrite->flush_rules();
|
169 |
$tag = get_query_var('gallerytag');
|
170 |
$show = get_query_var('show');
|
171 |
|
172 |
+
//TODO: I could parse for the Picture name , gallery etc, but this increase the queries
|
173 |
+
//TODO: Class nggdb need to cache the query for the nggfunctions.php
|
174 |
|
175 |
if ( $show == 'slide' )
|
176 |
$new_title .= __('Slideshow', 'nggallery') . $sep ;
|
178 |
$new_title .= __('Gallery', 'nggallery') . $sep ;
|
179 |
|
180 |
if ( !empty($pid) )
|
181 |
+
$new_title .= __('Picture', 'nggallery') . ' ' . esc_attr($pid) . $sep ;
|
182 |
|
183 |
if ( !empty($album) )
|
184 |
+
$new_title .= __('Album', 'nggallery') . ' ' . esc_attr($album) . $sep ;
|
185 |
|
186 |
if ( !empty($gallery) )
|
187 |
+
$new_title .= __('Gallery', 'nggallery') . ' ' . esc_attr($gallery) . $sep ;
|
188 |
|
189 |
if ( !empty($nggpage) )
|
190 |
+
$new_title .= __('Page', 'nggallery') . ' ' . esc_attr($nggpage) . $sep ;
|
191 |
|
192 |
//esc_attr should avoid XSS like http://domain/?gallerytag=%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E
|
193 |
if ( !empty($tag) )
|
219 |
/**
|
220 |
* The actual rewrite rules
|
221 |
*/
|
222 |
+
function RewriteRules($wp_rewrite) {
|
223 |
+
global $ngg;
|
224 |
+
|
225 |
$rewrite_rules = array (
|
226 |
+
|
227 |
+
// new page rewrites
|
228 |
+
'(.+?)/' . $this->slug . '/page-([0-9]+)/?$' => 'index.php?pagename=$matches[1]&nggpage=$matches[2]',
|
229 |
+
'(.+?)/' . $this->slug . '/image/([^/]+)/?$' => 'index.php?pagename=$matches[1]&pid=$matches[2]',
|
230 |
+
'(.+?)/' . $this->slug . '/image/([^/]+)/page-([0-9]+)/?$' => 'index.php?pagename=$matches[1]&pid=$matches[2]&nggpage=$matches[3]',
|
231 |
+
'(.+?)/' . $this->slug . '/slideshow/?$' => 'index.php?pagename=$matches[1]&show=slide',
|
232 |
+
'(.+?)/' . $this->slug . '/images/?$' => 'index.php?pagename=$matches[1]&show=gallery',
|
233 |
+
'(.+?)/' . $this->slug . '/tags/([^/]+)/?$' => 'index.php?pagename=$matches[1]&gallerytag=$matches[2]',
|
234 |
+
'(.+?)/' . $this->slug . '/tags/([^/]+)/page-([0-9]+)/?$' => 'index.php?pagename=$matches[1]&gallerytag=$matches[2]&nggpage=$matches[3]',
|
235 |
+
|
236 |
+
'(.+?)/' . $this->slug . '/([^/]+)/?$' => 'index.php?pagename=$matches[1]&album=$matches[2]',
|
237 |
+
'(.+?)/' . $this->slug . '/([^/]+)/page-([0-9]+)/?$' => 'index.php?pagename=$matches[1]&album=$matches[2]&nggpage=$matches[3]',
|
238 |
+
'(.+?)/' . $this->slug . '/([^/]+)/([^/]+)/?$' => 'index.php?pagename=$matches[1]&album=$matches[2]&gallery=$matches[3]',
|
239 |
+
'(.+?)/' . $this->slug . '/([^/]+)/([^/]+)/slideshow/?$' => 'index.php?pagename=$matches[1]&album=$matches[2]&gallery=$matches[3]&show=slide',
|
240 |
+
'(.+?)/' . $this->slug . '/([^/]+)/([^/]+)/images/?$' => 'index.php?pagename=$matches[1]&album=$matches[2]&gallery=$matches[3]&show=gallery',
|
241 |
+
'(.+?)/' . $this->slug . '/([^/]+)/([^/]+)/page-([0-9]+)/?$' => 'index.php?pagename=$matches[1]&album=$matches[2]&gallery=$matches[3]&nggpage=$matches[4]',
|
242 |
+
'(.+?)/' . $this->slug . '/([^/]+)/([^/]+)/page-([0-9]+)/slideshow/?$' => 'index.php?pagename=$matches[1]&album=$matches[21]&gallery=$matches[3]&nggpage=$matches[4]&show=slide',
|
243 |
+
'(.+?)/' . $this->slug . '/([^/]+)/([^/]+)/page-([0-9]+)/images/?$' => 'index.php?pagename=$matches[1]&album=$matches[2]&gallery=$matches[3]&nggpage=$matches[4]&show=gallery',
|
244 |
+
'(.+?)/' . $this->slug . '/([^/]+)/([^/]+)/image/([^/]+)/?$' => 'index.php?pagename=$matches[1]&album=$matches[2]&gallery=$matches[3]&pid=$matches[4]',
|
245 |
|
246 |
+
// XML request
|
247 |
+
$this->slug . '/slideshow/([0-9]+)/?$' => 'index.php?imagerotator=true&gid=$matches[1]',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
);
|
249 |
+
|
250 |
+
$rewrite_rules = array_merge($this->generate_rewrite_rules(), $rewrite_rules);
|
251 |
$wp_rewrite->rules = array_merge($rewrite_rules, $wp_rewrite->rules);
|
252 |
}
|
253 |
+
|
254 |
+
/**
|
255 |
+
* Mainly a copy of the same function in wp-includes\rewrite.php
|
256 |
+
* Adding the NGG tags to each post & page. Never found easier and proper way to handle this with other functions.
|
257 |
+
*
|
258 |
+
* @return array the permalink structure
|
259 |
+
*/
|
260 |
+
function generate_rewrite_rules() {
|
261 |
+
global $wp_rewrite;
|
262 |
+
|
263 |
+
$new_rules = array(
|
264 |
+
'/page-([0-9]+)/' => '&nggpage=[matches]',
|
265 |
+
'/image/([^/]+)/' => '&pid=[matches]',
|
266 |
+
'/image/([^/]+)/page-([0-9]+)/' => '&pid=[matches]&nggpage=[matches]',
|
267 |
+
'/slideshow/' => '&show=slide',
|
268 |
+
'/images/' => '&show=gallery',
|
269 |
+
'/tags/([^/]+)/' => '&gallerytag=[matches]',
|
270 |
+
'/tags/([^/]+)/page-([0-9]+)/' => '&gallerytag=[matches]&nggpage=[matches]',
|
271 |
+
'/([^/]+)/' => '&album=[matches]',
|
272 |
+
'/([^/]+)/page-([0-9]+)/' => '&album=[matches]&nggpage=[matches]',
|
273 |
+
'/([^/]+)/([^/]+)/' => '&album=[matches]&gallery=[matches]',
|
274 |
+
'/([^/]+)/([^/]+)/slideshow/' => '&album=[matches]&gallery=[matches]&show=slide',
|
275 |
+
'/([^/]+)/([^/]+)/images/' => '&album=[matches]&gallery=[matches]&show=gallery',
|
276 |
+
'/([^/]+)/([^/]+)/page-([0-9]+)/' => '&album=[matches]&gallery=[matches]&nggpage=[matches]',
|
277 |
+
'/([^/]+)/([^/]+)/page-([0-9]+)/slideshow/' => '&album=[matches]&gallery=[matches]&nggpage=[matches]&show=slide',
|
278 |
+
'/([^/]+)/([^/]+)/page-([0-9]+)/images/' => '&album=[matches]&gallery=[matches]&nggpage=[matches]&show=gallery',
|
279 |
+
'/([^/]+)/([^/]+)/image/([^/]+)/' => '&album=[matches]&gallery=[matches]&pid=[matches]'
|
280 |
+
);
|
281 |
+
|
282 |
+
$permalink_structure = $wp_rewrite->permalink_structure;
|
283 |
+
|
284 |
+
//get everything up to the first rewrite tag
|
285 |
+
$front = substr($permalink_structure, 0, strpos($permalink_structure, '%'));
|
286 |
+
//build an array of the tags (note that said array ends up being in $tokens[0])
|
287 |
+
preg_match_all('/%.+?%/', $permalink_structure, $tokens);
|
288 |
+
|
289 |
+
$num_tokens = count($tokens[0]);
|
290 |
+
|
291 |
+
$index = $wp_rewrite->index; //probably 'index.php'
|
292 |
+
|
293 |
+
//build a list from the rewritecode and queryreplace arrays, that will look something like
|
294 |
+
//tagname=$matches[i] where i is the current $i
|
295 |
+
for ( $i = 0; $i < $num_tokens; ++$i ) {
|
296 |
+
if ( 0 < $i )
|
297 |
+
$queries[$i] = $queries[$i - 1] . '&';
|
298 |
+
else
|
299 |
+
$queries[$i] = '';
|
300 |
+
|
301 |
+
$query_token = str_replace($wp_rewrite->rewritecode, $wp_rewrite->queryreplace, $tokens[0][$i]) . $wp_rewrite->preg_index($i+1);
|
302 |
+
$queries[$i] .= $query_token;
|
303 |
+
}
|
304 |
+
|
305 |
+
//get the structure, minus any cruft (stuff that isn't tags) at the front
|
306 |
+
$structure = $permalink_structure;
|
307 |
+
if ( $front != '/' )
|
308 |
+
$structure = str_replace($front, '', $structure);
|
309 |
+
|
310 |
+
//create a list of dirs to walk over, making rewrite rules for each level
|
311 |
+
//so for example, a $structure of /%year%/%month%/%postname% would create
|
312 |
+
//rewrite rules for /%year%/, /%year%/%month%/ and /%year%/%month%/%postname%
|
313 |
+
$structure = trim($structure, '/');
|
314 |
+
|
315 |
+
//strip slashes from the front of $front
|
316 |
+
$struct = preg_replace('|^/+|', '', $front);
|
317 |
+
|
318 |
+
//get the struct for this dir, and trim slashes off the front
|
319 |
+
$struct .= $structure . '/'; //accumulate. see comment near explode('/', $structure) above
|
320 |
+
$struct = ltrim($struct, '/');
|
321 |
+
|
322 |
+
//replace tags with regexes
|
323 |
+
$match = str_replace($wp_rewrite->rewritecode, $wp_rewrite->rewritereplace, $struct);
|
324 |
+
|
325 |
+
//make a list of tags, and store how many there are in $num_toks
|
326 |
+
$num_toks = preg_match_all('/%.+?%/', $struct, $toks);
|
327 |
+
|
328 |
+
//get the 'tagname=$matches[i]'
|
329 |
+
$query = ( isset($queries) && is_array($queries) ) ? $queries[$num_toks - 1] : '';
|
330 |
+
|
331 |
+
$post_rewrite = array();
|
332 |
+
|
333 |
+
foreach ( $new_rules as $regex => $new_query) {
|
334 |
+
|
335 |
+
// first add your nextgen slug
|
336 |
+
$final_match = $match . $this->slug;
|
337 |
+
|
338 |
+
//add regex parameter
|
339 |
+
$final_match .= $regex;
|
340 |
+
// check how often we found matches fields
|
341 |
+
$count = substr_count($new_query, '[matches]');
|
342 |
+
// we need to know how many tags before
|
343 |
+
$offset = $num_toks;
|
344 |
+
// build the query and count up the matches : tagname=$matches[x]
|
345 |
+
for ( $i = 0; $i < $count; $i++ ) {
|
346 |
+
$new_query = preg_replace('/\[matches\]/', '$matches[' . ++$offset . ']', $new_query, 1);
|
347 |
+
}
|
348 |
+
$final_query = $query . $new_query;
|
349 |
+
|
350 |
+
//close the match and finalise the query
|
351 |
+
$final_match .= '?$';
|
352 |
+
$final_query = $index . '?' . $final_query;
|
353 |
+
|
354 |
+
$post_rewrite = array_merge($post_rewrite, array($final_match => $final_query));
|
355 |
+
}
|
356 |
+
|
357 |
+
return $post_rewrite; //the finished rules. phew!
|
358 |
+
}
|
359 |
|
360 |
} // of nggRewrite CLASS
|
361 |
|
lib/sitemap.php
ADDED
@@ -0,0 +1,127 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Main PHP Class for XML Image Sitemaps
|
4 |
+
*
|
5 |
+
* @author Alex Rabe
|
6 |
+
* @version 1.0
|
7 |
+
* @copyright Copyright 2011
|
8 |
+
*
|
9 |
+
*/
|
10 |
+
class nggSitemaps {
|
11 |
+
|
12 |
+
var $images = false;
|
13 |
+
|
14 |
+
/**
|
15 |
+
* nggSitemaps::__construct()
|
16 |
+
*
|
17 |
+
* @return
|
18 |
+
*/
|
19 |
+
function __construct() {
|
20 |
+
|
21 |
+
add_filter('wpseo_sitemap_urlimages', array( &$this, 'add_wpseo_xml_sitemap_images'), 10, 2);
|
22 |
+
|
23 |
+
}
|
24 |
+
|
25 |
+
/**
|
26 |
+
* Filter support for WordPress SEO by Yoast 0.4.0 or higher ( http://wordpress.org/extend/plugins/wordpress-seo/ )
|
27 |
+
*
|
28 |
+
* @since Version 1.8.0
|
29 |
+
* @param array $images
|
30 |
+
* @param int $post ID
|
31 |
+
* @return array $image list of all founded images
|
32 |
+
*/
|
33 |
+
function add_wpseo_xml_sitemap_images( $images, $post_id ) {
|
34 |
+
|
35 |
+
$this->images = $images;
|
36 |
+
|
37 |
+
// first get the content of the post/page
|
38 |
+
$p = get_post($post_id);
|
39 |
+
|
40 |
+
// Backward check for older images
|
41 |
+
$p->post_content = NextGEN_Shortcodes::convert_shortcode($p->post_content);
|
42 |
+
|
43 |
+
// Don't process the images in the normal way
|
44 |
+
remove_all_shortcodes();
|
45 |
+
|
46 |
+
// We cannot parse at this point a album, just galleries & single images
|
47 |
+
add_shortcode( 'singlepic', array(&$this, 'add_images' ) );
|
48 |
+
add_shortcode( 'thumb', array(&$this, 'add_images' ) );
|
49 |
+
add_shortcode( 'nggallery', array(&$this, 'add_gallery') );
|
50 |
+
add_shortcode( 'imagebrowser', array(&$this, 'add_gallery' ) );
|
51 |
+
add_shortcode( 'slideshow', array(&$this, 'add_gallery' ) );
|
52 |
+
|
53 |
+
// Search now for shortcodes
|
54 |
+
do_shortcode( $p->post_content );
|
55 |
+
|
56 |
+
return $this->images;
|
57 |
+
}
|
58 |
+
|
59 |
+
/**
|
60 |
+
* Parse the gallery/imagebrowser/slideshow shortcode and return all images into an array
|
61 |
+
*
|
62 |
+
* @param string $atts
|
63 |
+
* @return
|
64 |
+
*/
|
65 |
+
function add_gallery( $atts ) {
|
66 |
+
|
67 |
+
global $wpdb;
|
68 |
+
|
69 |
+
extract(shortcode_atts(array(
|
70 |
+
'id' => 0
|
71 |
+
), $atts ));
|
72 |
+
|
73 |
+
// backward compat for user which uses the name instead, still deprecated
|
74 |
+
if( !is_numeric($id) )
|
75 |
+
$id = $wpdb->get_var( $wpdb->prepare ("SELECT gid FROM $wpdb->nggallery WHERE name = '%s' ", $id) );
|
76 |
+
|
77 |
+
$images = nggdb::get_gallery($id, 'pid', 'ASC', true, 1000);
|
78 |
+
|
79 |
+
foreach ($images as $image) {
|
80 |
+
$src = $image->imageURL;
|
81 |
+
$newimage = array();
|
82 |
+
if ( !empty($image->title) )
|
83 |
+
$newimage['title'] = $image->title;
|
84 |
+
if ( !empty($image->alttext) )
|
85 |
+
$newimage['alt'] = $image->alttext;
|
86 |
+
$this->images[$src] = $newimage;
|
87 |
+
}
|
88 |
+
|
89 |
+
return;
|
90 |
+
}
|
91 |
+
|
92 |
+
/**
|
93 |
+
* Parse the single image shortcode and return all images into an array
|
94 |
+
*
|
95 |
+
* @param array $atts
|
96 |
+
* @return
|
97 |
+
*/
|
98 |
+
function add_images( $atts ) {
|
99 |
+
|
100 |
+
extract(shortcode_atts(array(
|
101 |
+
'id' => 0
|
102 |
+
), $atts ));
|
103 |
+
|
104 |
+
// make an array out of the ids (for thumbs shortcode))
|
105 |
+
$pids = explode( ',', $id );
|
106 |
+
|
107 |
+
// Some error checks
|
108 |
+
if ( count($pids) == 0 )
|
109 |
+
return;
|
110 |
+
|
111 |
+
$images = nggdb::find_images_in_list( $pids );
|
112 |
+
|
113 |
+
foreach ($images as $image) {
|
114 |
+
$src = $image->imageURL;
|
115 |
+
$newimage = array();
|
116 |
+
if ( !empty($image->title) )
|
117 |
+
$newimage['title'] = $image->title;
|
118 |
+
if ( !empty($image->alttext) )
|
119 |
+
$newimage['alt'] = $image->alttext;
|
120 |
+
$this->images[$src] = $newimage;
|
121 |
+
}
|
122 |
+
|
123 |
+
return;
|
124 |
+
}
|
125 |
+
|
126 |
+
}
|
127 |
+
$nggSitemaps = new nggSitemaps();
|
nggallery.php
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
/*
|
3 |
Plugin Name: NextGEN Gallery
|
4 |
Plugin URI: http://alexrabe.de/?page_id=80
|
5 |
-
Description: A NextGENeration Photo
|
6 |
Author: Alex Rabe
|
7 |
-
Version: 1.
|
8 |
|
9 |
Author URI: http://alexrabe.de/
|
10 |
|
@@ -34,8 +34,8 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
|
|
34 |
if (!class_exists('nggLoader')) {
|
35 |
class nggLoader {
|
36 |
|
37 |
-
var $version = '1.
|
38 |
-
var $dbversion = '1.
|
39 |
var $minium_WP = '3.0';
|
40 |
var $donators = 'http://nextgen.boelinger.com/donators.php';
|
41 |
var $options = '';
|
@@ -95,7 +95,7 @@ class nggLoader {
|
|
95 |
|
96 |
// All credits to the tranlator
|
97 |
$this->translator = '<p class="hint">'. __('<strong>Translation by : </strong><a target="_blank" href="http://alexrabe.de/wordpress-plugins/nextgen-gallery/languages/">See here</a>', 'nggallery') . '</p>';
|
98 |
-
$this->translator .= '<p class="hint">'. __('<strong>This translation is not yet updated for Version 1.
|
99 |
|
100 |
// Check for upgrade
|
101 |
$this->check_for_upgrade();
|
@@ -184,21 +184,27 @@ class nggLoader {
|
|
184 |
}
|
185 |
|
186 |
function check_memory_limit() {
|
187 |
-
|
188 |
// get the real memory limit before some increase it
|
189 |
-
$this->memory_limit =
|
190 |
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
|
203 |
return true;
|
204 |
|
@@ -208,6 +214,7 @@ class nggLoader {
|
|
208 |
|
209 |
// Inform about a database upgrade
|
210 |
if( get_option( 'ngg_db_version' ) != NGG_DBVERSION ) {
|
|
|
211 |
add_action(
|
212 |
'admin_notices',
|
213 |
create_function(
|
@@ -284,6 +291,7 @@ class nggLoader {
|
|
284 |
require_once (dirname (__FILE__) . '/lib/post-thumbnail.php'); // n.a.
|
285 |
require_once (dirname (__FILE__) . '/widgets/widgets.php'); // 298.792
|
286 |
require_once (dirname (__FILE__) . '/lib/multisite.php');
|
|
|
287 |
|
288 |
// Load frontend libraries
|
289 |
require_once (dirname (__FILE__) . '/lib/navigation.php'); // 242.016
|
@@ -334,7 +342,7 @@ class nggLoader {
|
|
334 |
|
335 |
// activate modified Shutter reloaded if not use the Shutter plugin
|
336 |
if ( ($this->options['thumbEffect'] == "shutter") && !function_exists('srel_makeshutter') ) {
|
337 |
-
wp_register_script('shutter', NGGALLERY_URLPATH .'shutter/shutter-reloaded.js', false ,'1.3.
|
338 |
wp_localize_script('shutter', 'shutterSettings', array(
|
339 |
'msgLoading' => __('L O A D I N G', 'nggallery'),
|
340 |
'msgClose' => __('Click to Close', 'nggallery'),
|
@@ -357,7 +365,7 @@ class nggLoader {
|
|
357 |
if ( ($this->options['thumbEffect'] == "shutter") || function_exists('srel_makeshutter') ) {
|
358 |
wp_enqueue_script ( 'ngg_script', NGGALLERY_URLPATH . 'js/ngg.js', array('jquery'), '2.0');
|
359 |
wp_localize_script( 'ngg_script', 'ngg_ajax', array('path' => NGGALLERY_URLPATH,
|
360 |
-
'callback' =>
|
361 |
'loading' => __('loading', 'nggallery'),
|
362 |
) );
|
363 |
}
|
@@ -384,7 +392,7 @@ class nggLoader {
|
|
384 |
|
385 |
// activate modified Shutter reloaded if not use the Shutter plugin
|
386 |
if ( ($this->options['thumbEffect'] == 'shutter') && !function_exists('srel_makeshutter') )
|
387 |
-
wp_enqueue_style('shutter', NGGALLERY_URLPATH .'shutter/shutter-reloaded.css', false, '1.3.
|
388 |
|
389 |
}
|
390 |
|
@@ -419,11 +427,11 @@ class nggLoader {
|
|
419 |
function activate() {
|
420 |
global $wpdb;
|
421 |
//Starting from version 1.8.0 it's works only with PHP5.2
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
|
428 |
include_once (dirname (__FILE__) . '/admin/install.php');
|
429 |
|
2 |
/*
|
3 |
Plugin Name: NextGEN Gallery
|
4 |
Plugin URI: http://alexrabe.de/?page_id=80
|
5 |
+
Description: A NextGENeration Photo Gallery for WordPress
|
6 |
Author: Alex Rabe
|
7 |
+
Version: 1.8.0
|
8 |
|
9 |
Author URI: http://alexrabe.de/
|
10 |
|
34 |
if (!class_exists('nggLoader')) {
|
35 |
class nggLoader {
|
36 |
|
37 |
+
var $version = '1.8.0';
|
38 |
+
var $dbversion = '1.8.0';
|
39 |
var $minium_WP = '3.0';
|
40 |
var $donators = 'http://nextgen.boelinger.com/donators.php';
|
41 |
var $options = '';
|
95 |
|
96 |
// All credits to the tranlator
|
97 |
$this->translator = '<p class="hint">'. __('<strong>Translation by : </strong><a target="_blank" href="http://alexrabe.de/wordpress-plugins/nextgen-gallery/languages/">See here</a>', 'nggallery') . '</p>';
|
98 |
+
$this->translator .= '<p class="hint">'. __('<strong>This translation is not yet updated for Version 1.8.0</strong>. If you would like to help with translation, download the current po from the plugin folder and read <a href="http://alexrabe.de/wordpress-plugins/wordtube/translation-of-plugins/">here</a> how you can translate the plugin.', 'nggallery') . '</p>';
|
99 |
|
100 |
// Check for upgrade
|
101 |
$this->check_for_upgrade();
|
184 |
}
|
185 |
|
186 |
function check_memory_limit() {
|
187 |
+
|
188 |
// get the real memory limit before some increase it
|
189 |
+
$this->memory_limit = ini_get('memory_limit');
|
190 |
|
191 |
+
// Yes, we reached Gigabyte limits, so check if it's a megabyte limit
|
192 |
+
if (strtolower( substr($memory_limit, -1) ) == 'm') {
|
193 |
+
|
194 |
+
$this->memory_limit = (int) substr( $this->memory_limit, 0, -1);
|
195 |
+
|
196 |
+
//This works only with enough memory, 16MB is silly, wordpress requires already 16MB :-)
|
197 |
+
if ( ($this->memory_limit != 0) && ($this->memory_limit < 16 ) ) {
|
198 |
+
add_action(
|
199 |
+
'admin_notices',
|
200 |
+
create_function(
|
201 |
+
'',
|
202 |
+
'echo \'<div id="message" class="error"><p><strong>' . __('Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB or higher', 'nggallery') . '</strong></p></div>\';'
|
203 |
+
)
|
204 |
+
);
|
205 |
+
return false;
|
206 |
+
}
|
207 |
+
}
|
208 |
|
209 |
return true;
|
210 |
|
214 |
|
215 |
// Inform about a database upgrade
|
216 |
if( get_option( 'ngg_db_version' ) != NGG_DBVERSION ) {
|
217 |
+
if ( isset ($_GET['page']) && $_GET['page'] == NGGFOLDER ) return;
|
218 |
add_action(
|
219 |
'admin_notices',
|
220 |
create_function(
|
291 |
require_once (dirname (__FILE__) . '/lib/post-thumbnail.php'); // n.a.
|
292 |
require_once (dirname (__FILE__) . '/widgets/widgets.php'); // 298.792
|
293 |
require_once (dirname (__FILE__) . '/lib/multisite.php');
|
294 |
+
require_once (dirname (__FILE__) . '/lib/sitemap.php');
|
295 |
|
296 |
// Load frontend libraries
|
297 |
require_once (dirname (__FILE__) . '/lib/navigation.php'); // 242.016
|
342 |
|
343 |
// activate modified Shutter reloaded if not use the Shutter plugin
|
344 |
if ( ($this->options['thumbEffect'] == "shutter") && !function_exists('srel_makeshutter') ) {
|
345 |
+
wp_register_script('shutter', NGGALLERY_URLPATH .'shutter/shutter-reloaded.js', false ,'1.3.2');
|
346 |
wp_localize_script('shutter', 'shutterSettings', array(
|
347 |
'msgLoading' => __('L O A D I N G', 'nggallery'),
|
348 |
'msgClose' => __('Click to Close', 'nggallery'),
|
365 |
if ( ($this->options['thumbEffect'] == "shutter") || function_exists('srel_makeshutter') ) {
|
366 |
wp_enqueue_script ( 'ngg_script', NGGALLERY_URLPATH . 'js/ngg.js', array('jquery'), '2.0');
|
367 |
wp_localize_script( 'ngg_script', 'ngg_ajax', array('path' => NGGALLERY_URLPATH,
|
368 |
+
'callback' => home_url() . '/' . 'index.php?callback=ngg-ajax',
|
369 |
'loading' => __('loading', 'nggallery'),
|
370 |
) );
|
371 |
}
|
392 |
|
393 |
// activate modified Shutter reloaded if not use the Shutter plugin
|
394 |
if ( ($this->options['thumbEffect'] == 'shutter') && !function_exists('srel_makeshutter') )
|
395 |
+
wp_enqueue_style('shutter', NGGALLERY_URLPATH .'shutter/shutter-reloaded.css', false, '1.3.2', 'screen');
|
396 |
|
397 |
}
|
398 |
|
427 |
function activate() {
|
428 |
global $wpdb;
|
429 |
//Starting from version 1.8.0 it's works only with PHP5.2
|
430 |
+
if (version_compare(PHP_VERSION, '5.2.0', '<')) {
|
431 |
+
deactivate_plugins(plugin_basename(__FILE__)); // Deactivate ourself
|
432 |
+
wp_die("Sorry, but you can't run this plugin, it requires PHP 5.2 or higher.");
|
433 |
+
return;
|
434 |
+
}
|
435 |
|
436 |
include_once (dirname (__FILE__) . '/admin/install.php');
|
437 |
|
nggfunctions.php
CHANGED
@@ -141,7 +141,7 @@ function nggShow_JS_Slideshow($galleryID, $width, $height, $class = 'ngg-slidesh
|
|
141 |
* nggShowGallery() - return a gallery
|
142 |
*
|
143 |
* @access public
|
144 |
-
* @param int
|
145 |
* @param string $template (optional) name for a template file, look for gallery-$template
|
146 |
* @param int $images (optional) number of images per page
|
147 |
* @return the content
|
@@ -151,7 +151,6 @@ function nggShowGallery( $galleryID, $template = '', $images = false ) {
|
|
151 |
global $nggRewrite;
|
152 |
|
153 |
$ngg_options = nggGallery::get_option('ngg_options');
|
154 |
-
$galleryID = (int) $galleryID;
|
155 |
|
156 |
//Set sort order value, if not used (upgrade issue)
|
157 |
$ngg_options['galSort'] = ($ngg_options['galSort']) ? $ngg_options['galSort'] : 'pid';
|
@@ -163,6 +162,12 @@ function nggShowGallery( $galleryID, $template = '', $images = false ) {
|
|
163 |
if ( !$picturelist )
|
164 |
return __('[Gallery not found]','nggallery');
|
165 |
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
// $_GET from wp_query
|
167 |
$show = get_query_var('show');
|
168 |
$pid = get_query_var('pid');
|
@@ -239,6 +244,12 @@ function nggCreateGallery($picturelist, $galleryID = false, $template = '', $ima
|
|
239 |
$pageid = get_query_var('pageid');
|
240 |
$pid = get_query_var('pid');
|
241 |
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
// we need to know the current page id
|
243 |
$current_page = (get_the_ID() == false) ? 0 : get_the_ID();
|
244 |
|
@@ -336,7 +347,7 @@ function nggCreateGallery($picturelist, $galleryID = false, $template = '', $ima
|
|
336 |
|
337 |
// create link for imagebrowser and other effects
|
338 |
$args ['nggpage'] = empty($nggpage) ? false : $nggpage;
|
339 |
-
$args ['pid'] = $picture->pid;
|
340 |
$picturelist[$key]->pidlink = $nggRewrite->get_permalink( $args );
|
341 |
|
342 |
// generate the thumbnail size if the meta data available
|
@@ -352,9 +363,9 @@ function nggCreateGallery($picturelist, $galleryID = false, $template = '', $ima
|
|
352 |
$picturelist[$key]->thumbnailURL = $picture->thumbURL;
|
353 |
$picturelist[$key]->size = $thumbsize;
|
354 |
$picturelist[$key]->thumbcode = $thumbcode;
|
355 |
-
$picturelist[$key]->caption = ( empty($picture->description) ) ? ' ' : html_entity_decode ( stripslashes(nggGallery::i18n($picture->description)) );
|
356 |
-
$picturelist[$key]->description = ( empty($picture->description) ) ? ' ' : htmlspecialchars ( stripslashes(nggGallery::i18n($picture->description)) );
|
357 |
-
$picturelist[$key]->alttext = ( empty($picture->alttext) ) ? ' ' : htmlspecialchars ( stripslashes(nggGallery::i18n($picture->alttext)) );
|
358 |
|
359 |
// filter to add custom content for the output
|
360 |
$picturelist[$key] = apply_filters('ngg_image_object', $picturelist[$key], $picture->pid);
|
@@ -414,7 +425,7 @@ function nggShowAlbum($albumID, $template = 'extend') {
|
|
414 |
return;
|
415 |
|
416 |
// if gallery is submit , then show the gallery instead
|
417 |
-
$out = nggShowGallery(
|
418 |
$GLOBALS['nggShowGallery'] = true;
|
419 |
|
420 |
return $out;
|
@@ -510,7 +521,7 @@ function nggCreateAlbum( $galleriesID, $template = 'extend', $album = 0) {
|
|
510 |
$galleries[$key]->previewname = $subalbum->name;
|
511 |
|
512 |
//link to the subalbum
|
513 |
-
$args['album'] = $subalbum->id;
|
514 |
$args['gallery'] = false;
|
515 |
$args['nggpage'] = false;
|
516 |
$pageid = (isset($subalbum->pageid) ? $subalbum->pageid : 0);
|
@@ -548,8 +559,8 @@ function nggCreateAlbum( $galleriesID, $template = 'extend', $album = 0) {
|
|
548 |
|
549 |
// choose between variable and page link
|
550 |
if ($ngg_options['galNoPages']) {
|
551 |
-
$args['album'] = $album->id;
|
552 |
-
$args['gallery'] = $key;
|
553 |
$args['nggpage'] = false;
|
554 |
$galleries[$key]->pagelink = $nggRewrite->get_permalink($args);
|
555 |
|
@@ -622,7 +633,7 @@ function nggShowImageBrowser($galleryID, $template = '') {
|
|
622 |
$ngg_options['galSortDir'] = ($ngg_options['galSortDir'] == 'DESC') ? 'DESC' : 'ASC';
|
623 |
|
624 |
// get the pictures
|
625 |
-
$picturelist = nggdb::
|
626 |
|
627 |
if ( is_array($picturelist) )
|
628 |
$out = nggCreateImageBrowser($picturelist, $template);
|
@@ -639,13 +650,13 @@ function nggShowImageBrowser($galleryID, $template = '') {
|
|
639 |
* nggCreateImageBrowser()
|
640 |
*
|
641 |
* @access internal
|
642 |
-
* @param array $
|
643 |
* @param string $template (optional) name for a template file, look for imagebrowser-$template
|
644 |
* @return the content
|
645 |
*/
|
646 |
-
function nggCreateImageBrowser($
|
647 |
|
648 |
-
global $nggRewrite;
|
649 |
|
650 |
require_once( dirname (__FILE__) . '/lib/meta.php' );
|
651 |
|
@@ -654,22 +665,32 @@ function nggCreateImageBrowser($picarray, $template = '') {
|
|
654 |
|
655 |
// we need to know the current page id
|
656 |
$current_page = (get_the_ID() == false) ? 0 : get_the_ID();
|
657 |
-
|
658 |
-
|
659 |
-
|
|
|
660 |
|
661 |
$total = count($picarray);
|
662 |
|
663 |
-
// look for gallery variable
|
664 |
if ( !empty( $pid )) {
|
665 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
666 |
} else {
|
667 |
reset($picarray);
|
668 |
$act_pid = current($picarray);
|
669 |
}
|
670 |
|
671 |
// get ids for back/next
|
672 |
-
$key = array_search($act_pid
|
673 |
if (!$key) {
|
674 |
$act_pid = reset($picarray);
|
675 |
$key = key($picarray);
|
@@ -686,9 +707,11 @@ function nggCreateImageBrowser($picarray, $template = '') {
|
|
686 |
|
687 |
// add more variables for render output
|
688 |
$picture->href_link = $picture->get_href_link();
|
689 |
-
$
|
|
|
690 |
$picture->previous_pid = $back_pid;
|
691 |
-
$
|
|
|
692 |
$picture->next_pid = $next_pid;
|
693 |
$picture->number = $key + 1;
|
694 |
$picture->total = $total;
|
@@ -783,9 +806,9 @@ function nggSinglePicture($imageID, $width = 250, $height = 250, $mode = '', $fl
|
|
783 |
// add more variables for render output
|
784 |
$picture->imageURL = ( empty($link) ) ? $picture->imageURL : $link;
|
785 |
$picture->href_link = $picture->get_href_link();
|
786 |
-
$picture->alttext = html_entity_decode( stripslashes(nggGallery::i18n($picture->alttext)) );
|
787 |
-
$picture->linktitle = htmlspecialchars( stripslashes(nggGallery::i18n($picture->description)) );
|
788 |
-
$picture->description = html_entity_decode( stripslashes(nggGallery::i18n($picture->description)) );
|
789 |
$picture->classname = 'ngg-singlepic'. $float;
|
790 |
$picture->thumbcode = $picture->get_thumbcode( 'singlepic' . $imageID);
|
791 |
$picture->height = (int) $height;
|
@@ -835,10 +858,7 @@ function nggShowGalleryTags($taglist) {
|
|
835 |
// look for ImageBrowser if we have a $_GET('pid')
|
836 |
if ( $pageid == get_the_ID() || !is_home() )
|
837 |
if (!empty( $pid )) {
|
838 |
-
|
839 |
-
$picarray[] = $picture->pid;
|
840 |
-
}
|
841 |
-
$out = nggCreateImageBrowser($picarray);
|
842 |
return $out;
|
843 |
}
|
844 |
|
@@ -884,8 +904,8 @@ function nggShowRelatedGallery($taglist, $maxImages = 0) {
|
|
884 |
// get the effect code
|
885 |
$thumbcode = $picture->get_thumbcode( __('Related images for', 'nggallery') . ' ' . get_the_title());
|
886 |
|
887 |
-
$out .= '<a href="' . $picture->imageURL . '" title="' . stripslashes(nggGallery::i18n($picture->description)) . '" ' . $thumbcode . ' >';
|
888 |
-
$out .= '<img title="' . stripslashes(nggGallery::i18n($picture->alttext)) . '" alt="' . stripslashes(nggGallery::i18n($picture->alttext)) . '" src="' . $picture->thumbURL . '" />';
|
889 |
$out .= '</a>' . "\n";
|
890 |
}
|
891 |
$out .= '</div>' . "\n";
|
@@ -1050,10 +1070,7 @@ function nggShowRandomRecent($type, $maxImages, $template = '', $galleryId = 0)
|
|
1050 |
// look for ImageBrowser if we have a $_GET('pid')
|
1051 |
if ( $pageid == get_the_ID() || !is_home() )
|
1052 |
if (!empty( $pid )) {
|
1053 |
-
|
1054 |
-
$picarray[] = $picture->pid;
|
1055 |
-
}
|
1056 |
-
$out = nggCreateImageBrowser($picarray);
|
1057 |
return $out;
|
1058 |
}
|
1059 |
|
141 |
* nggShowGallery() - return a gallery
|
142 |
*
|
143 |
* @access public
|
144 |
+
* @param int | string ID or slug from a gallery
|
145 |
* @param string $template (optional) name for a template file, look for gallery-$template
|
146 |
* @param int $images (optional) number of images per page
|
147 |
* @return the content
|
151 |
global $nggRewrite;
|
152 |
|
153 |
$ngg_options = nggGallery::get_option('ngg_options');
|
|
|
154 |
|
155 |
//Set sort order value, if not used (upgrade issue)
|
156 |
$ngg_options['galSort'] = ($ngg_options['galSort']) ? $ngg_options['galSort'] : 'pid';
|
162 |
if ( !$picturelist )
|
163 |
return __('[Gallery not found]','nggallery');
|
164 |
|
165 |
+
// If we have we slug instead the id, we should extract the ID from the first image
|
166 |
+
if ( !is_numeric($galleryID) ) {
|
167 |
+
$first_image = current($picturelist);
|
168 |
+
$galleryID = intval($first_image->gid);
|
169 |
+
}
|
170 |
+
|
171 |
// $_GET from wp_query
|
172 |
$show = get_query_var('show');
|
173 |
$pid = get_query_var('pid');
|
244 |
$pageid = get_query_var('pageid');
|
245 |
$pid = get_query_var('pid');
|
246 |
|
247 |
+
// in case of permalinks the pid is a slug, we need the id
|
248 |
+
if( !is_numeric($pid) ) {
|
249 |
+
$picture = nggdb::find_image($pid);
|
250 |
+
$pid = $picture->pid;
|
251 |
+
}
|
252 |
+
|
253 |
// we need to know the current page id
|
254 |
$current_page = (get_the_ID() == false) ? 0 : get_the_ID();
|
255 |
|
347 |
|
348 |
// create link for imagebrowser and other effects
|
349 |
$args ['nggpage'] = empty($nggpage) ? false : $nggpage;
|
350 |
+
$args ['pid'] = ($ngg_options['usePermalinks']) ? $picture->image_slug : $picture->pid;
|
351 |
$picturelist[$key]->pidlink = $nggRewrite->get_permalink( $args );
|
352 |
|
353 |
// generate the thumbnail size if the meta data available
|
363 |
$picturelist[$key]->thumbnailURL = $picture->thumbURL;
|
364 |
$picturelist[$key]->size = $thumbsize;
|
365 |
$picturelist[$key]->thumbcode = $thumbcode;
|
366 |
+
$picturelist[$key]->caption = ( empty($picture->description) ) ? ' ' : html_entity_decode ( stripslashes(nggGallery::i18n($picture->description, 'pic_' . $picture->pid . '_description')) );
|
367 |
+
$picturelist[$key]->description = ( empty($picture->description) ) ? ' ' : htmlspecialchars ( stripslashes(nggGallery::i18n($picture->description, 'pic_' . $picture->pid . '_description')) );
|
368 |
+
$picturelist[$key]->alttext = ( empty($picture->alttext) ) ? ' ' : htmlspecialchars ( stripslashes(nggGallery::i18n($picture->alttext, 'pic_' . $picture->pid . '_alttext')) );
|
369 |
|
370 |
// filter to add custom content for the output
|
371 |
$picturelist[$key] = apply_filters('ngg_image_object', $picturelist[$key], $picture->pid);
|
425 |
return;
|
426 |
|
427 |
// if gallery is submit , then show the gallery instead
|
428 |
+
$out = nggShowGallery( $gallery );
|
429 |
$GLOBALS['nggShowGallery'] = true;
|
430 |
|
431 |
return $out;
|
521 |
$galleries[$key]->previewname = $subalbum->name;
|
522 |
|
523 |
//link to the subalbum
|
524 |
+
$args['album'] = ( $ngg_options['usePermalinks'] ) ? $subalbum->slug : $subalbum->id;
|
525 |
$args['gallery'] = false;
|
526 |
$args['nggpage'] = false;
|
527 |
$pageid = (isset($subalbum->pageid) ? $subalbum->pageid : 0);
|
559 |
|
560 |
// choose between variable and page link
|
561 |
if ($ngg_options['galNoPages']) {
|
562 |
+
$args['album'] = ( $ngg_options['usePermalinks'] ) ? $album->slug : $album->id;
|
563 |
+
$args['gallery'] = ( $ngg_options['usePermalinks'] ) ? $galleries[$key]->slug : $key;
|
564 |
$args['nggpage'] = false;
|
565 |
$galleries[$key]->pagelink = $nggRewrite->get_permalink($args);
|
566 |
|
633 |
$ngg_options['galSortDir'] = ($ngg_options['galSortDir'] == 'DESC') ? 'DESC' : 'ASC';
|
634 |
|
635 |
// get the pictures
|
636 |
+
$picturelist = nggdb::get_gallery($galleryID, $ngg_options['galSort'], $ngg_options['galSortDir']);
|
637 |
|
638 |
if ( is_array($picturelist) )
|
639 |
$out = nggCreateImageBrowser($picturelist, $template);
|
650 |
* nggCreateImageBrowser()
|
651 |
*
|
652 |
* @access internal
|
653 |
+
* @param array $picturelist
|
654 |
* @param string $template (optional) name for a template file, look for imagebrowser-$template
|
655 |
* @return the content
|
656 |
*/
|
657 |
+
function nggCreateImageBrowser($picturelist, $template = '') {
|
658 |
|
659 |
+
global $nggRewrite, $ngg;
|
660 |
|
661 |
require_once( dirname (__FILE__) . '/lib/meta.php' );
|
662 |
|
665 |
|
666 |
// we need to know the current page id
|
667 |
$current_page = (get_the_ID() == false) ? 0 : get_the_ID();
|
668 |
+
|
669 |
+
// create a array with id's for better walk inside
|
670 |
+
foreach ($picturelist as $picture)
|
671 |
+
$picarray[] = $picture->pid;
|
672 |
|
673 |
$total = count($picarray);
|
674 |
|
|
|
675 |
if ( !empty( $pid )) {
|
676 |
+
if ( is_numeric($pid) )
|
677 |
+
$act_pid = intval($pid);
|
678 |
+
else {
|
679 |
+
// in the case it's a slug we need to search for the pid
|
680 |
+
foreach ($picturelist as $key => $picture) {
|
681 |
+
if ($picture->image_slug == $pid) {
|
682 |
+
$act_pid = $key;
|
683 |
+
break;
|
684 |
+
}
|
685 |
+
}
|
686 |
+
}
|
687 |
} else {
|
688 |
reset($picarray);
|
689 |
$act_pid = current($picarray);
|
690 |
}
|
691 |
|
692 |
// get ids for back/next
|
693 |
+
$key = array_search($act_pid, $picarray);
|
694 |
if (!$key) {
|
695 |
$act_pid = reset($picarray);
|
696 |
$key = key($picarray);
|
707 |
|
708 |
// add more variables for render output
|
709 |
$picture->href_link = $picture->get_href_link();
|
710 |
+
$args ['pid'] = ($ngg->options['usePermalinks']) ? $picturelist[$back_pid]->image_slug : $back_pid;
|
711 |
+
$picture->previous_image_link = $nggRewrite->get_permalink( $args );
|
712 |
$picture->previous_pid = $back_pid;
|
713 |
+
$args ['pid'] = ($ngg->options['usePermalinks']) ? $picturelist[$next_pid]->image_slug : $next_pid;
|
714 |
+
$picture->next_image_link = $nggRewrite->get_permalink( $args );
|
715 |
$picture->next_pid = $next_pid;
|
716 |
$picture->number = $key + 1;
|
717 |
$picture->total = $total;
|
806 |
// add more variables for render output
|
807 |
$picture->imageURL = ( empty($link) ) ? $picture->imageURL : $link;
|
808 |
$picture->href_link = $picture->get_href_link();
|
809 |
+
$picture->alttext = html_entity_decode( stripslashes(nggGallery::i18n($picture->alttext, 'pic_' . $picture->pid . '_alttext')) );
|
810 |
+
$picture->linktitle = htmlspecialchars( stripslashes(nggGallery::i18n($picture->description, 'pic_' . $picture->pid . '_description')) );
|
811 |
+
$picture->description = html_entity_decode( stripslashes(nggGallery::i18n($picture->description, 'pic_' . $picture->pid . '_description')) );
|
812 |
$picture->classname = 'ngg-singlepic'. $float;
|
813 |
$picture->thumbcode = $picture->get_thumbcode( 'singlepic' . $imageID);
|
814 |
$picture->height = (int) $height;
|
858 |
// look for ImageBrowser if we have a $_GET('pid')
|
859 |
if ( $pageid == get_the_ID() || !is_home() )
|
860 |
if (!empty( $pid )) {
|
861 |
+
$out = nggCreateImageBrowser( $picturelist );
|
|
|
|
|
|
|
862 |
return $out;
|
863 |
}
|
864 |
|
904 |
// get the effect code
|
905 |
$thumbcode = $picture->get_thumbcode( __('Related images for', 'nggallery') . ' ' . get_the_title());
|
906 |
|
907 |
+
$out .= '<a href="' . $picture->imageURL . '" title="' . stripslashes(nggGallery::i18n($picture->description, 'pic_' . $picture->pid . '_description')) . '" ' . $thumbcode . ' >';
|
908 |
+
$out .= '<img title="' . stripslashes(nggGallery::i18n($picture->alttext, 'pic_' . $picture->pid . '_alttext')) . '" alt="' . stripslashes(nggGallery::i18n($picture->alttext, 'pic_' . $picture->pid . '_alttext')) . '" src="' . $picture->thumbURL . '" />';
|
909 |
$out .= '</a>' . "\n";
|
910 |
}
|
911 |
$out .= '</div>' . "\n";
|
1070 |
// look for ImageBrowser if we have a $_GET('pid')
|
1071 |
if ( $pageid == get_the_ID() || !is_home() )
|
1072 |
if (!empty( $pid )) {
|
1073 |
+
$out = nggCreateImageBrowser( $picturelist );
|
|
|
|
|
|
|
1074 |
return $out;
|
1075 |
}
|
1076 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: alexrabe
|
|
3 |
Donate link: http://alexrabe.de/donation/
|
4 |
Tags: photos,flash,slideshow,images,gallery,media,admin,post,photo-albums,pictures,widgets,photo,picture,image,nextgen-gallery,nextgen gallery
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 3.
|
7 |
Stable tag: trunk
|
8 |
|
9 |
NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with dozens of options and features.
|
@@ -42,7 +42,7 @@ Important Links:
|
|
42 |
* Tag support for images : Append related images to your post, create a image tag-cloud
|
43 |
* Meta data support : Import EXIF, IPTC or XMP meta data
|
44 |
* Sort images feature
|
45 |
-
*
|
46 |
|
47 |
== Credits ==
|
48 |
|
@@ -55,7 +55,7 @@ the Free Software Foundation; either version 2 of the License, or
|
|
55 |
|
56 |
This program is distributed in the hope that it will be useful,
|
57 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
58 |
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
59 |
GNU General Public License for more details.
|
60 |
|
61 |
You should have received a copy of the GNU General Public License
|
@@ -70,7 +70,6 @@ them for noncommercial purposes.
|
|
70 |
|
71 |
For commercial use please look at the Jeroen's homepage : http://www.longtailvideo.com/
|
72 |
|
73 |
-
|
74 |
== Installation ==
|
75 |
|
76 |
1. Install & Activate the plugin
|
@@ -134,6 +133,19 @@ To show the most recent added mages : **[recent max=x ]**
|
|
134 |
|
135 |
== Changelog ==
|
136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
= V1.7.4 - 15.02.2011 =
|
138 |
* Bugfix : Disallow direct call of ajax file to avoid path disclosure (THX to High-Tech Bridge SA)
|
139 |
* Bugfix : Rework jQuery Cycle slideshow for IE compat reason (THX to Justin Dickenson)
|
3 |
Donate link: http://alexrabe.de/donation/
|
4 |
Tags: photos,flash,slideshow,images,gallery,media,admin,post,photo-albums,pictures,widgets,photo,picture,image,nextgen-gallery,nextgen gallery
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 3.2
|
7 |
Stable tag: trunk
|
8 |
|
9 |
NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with dozens of options and features.
|
42 |
* Tag support for images : Append related images to your post, create a image tag-cloud
|
43 |
* Meta data support : Import EXIF, IPTC or XMP meta data
|
44 |
* Sort images feature
|
45 |
+
* Support for XML Sitemaps : Add Images to your sitemaps with the <a href="http://wordpress.org/extend/plugins/wordpress-seo/" title="WordPress SEO by Yoast plugin">WordPress SEO by Yoast plugin</a>
|
46 |
|
47 |
== Credits ==
|
48 |
|
55 |
|
56 |
This program is distributed in the hope that it will be useful,
|
57 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
58 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
59 |
GNU General Public License for more details.
|
60 |
|
61 |
You should have received a copy of the GNU General Public License
|
70 |
|
71 |
For commercial use please look at the Jeroen's homepage : http://www.longtailvideo.com/
|
72 |
|
|
|
73 |
== Installation ==
|
74 |
|
75 |
1. Install & Activate the plugin
|
133 |
|
134 |
== Changelog ==
|
135 |
|
136 |
+
= V1.8.0 - 12.06.2011 =
|
137 |
+
* NEW : Full rework of permalink url structure
|
138 |
+
* NEW : Adding Google Sitemaps for Images (require WordPress SEO plugin by YOAST )
|
139 |
+
* NEW : Support for WPML ( WordPress Multilingual Plugin )
|
140 |
+
* NEW : Adding support for arrow key in shutter effect (THX to Flyvans)
|
141 |
+
* NEW : Adding sort operation for galleries overview page
|
142 |
+
* Changed : Updated pagination to new WP3.1 style
|
143 |
+
* Bugfix : Create unique slug in a better way
|
144 |
+
* Bugfix : Rework screen options filter for gallery and image table
|
145 |
+
* Bugfix : Empty values in XMLRPC update calls are ignored
|
146 |
+
* Bugfix : Create gallery failed when safe-mode on
|
147 |
+
* Bugfix : Permalink didn't work in combination with album & imagebrowser
|
148 |
+
|
149 |
= V1.7.4 - 15.02.2011 =
|
150 |
* Bugfix : Disallow direct call of ajax file to avoid path disclosure (THX to High-Tech Bridge SA)
|
151 |
* Bugfix : Rework jQuery Cycle slideshow for IE compat reason (THX to Justin Dickenson)
|
shutter/shutter-reloaded.js
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
/*
|
2 |
Shutter Reloaded for NextGEN Gallery
|
3 |
http://www.laptoptips.ca/javascripts/shutter-reloaded/
|
4 |
-
Version: 1.3.
|
5 |
-
Copyright (C) 2007-2008 Andrew Ozz
|
6 |
Released under the GPL, http://www.gnu.org/copyleft/gpl.html
|
7 |
|
8 |
Acknowledgement: some ideas are from: Shutter by Andrew Sutherland - http://code.jalenack.com, WordPress - http://wordpress.org, Lightbox by Lokesh Dhakar - http://www.huddletogether.com, the icons are from Crystal Project Icons, Everaldo Coelho, http://www.everaldo.com
|
@@ -107,7 +107,7 @@ shutterReloaded = {
|
|
107 |
var dv = t.textBtns ? ' | ' : '';
|
108 |
if ( shutterLinks[ln].num > 1 ) {
|
109 |
prev = shutterSets[shutterLinks[ln].set][shutterLinks[ln].num - 2];
|
110 |
-
prevlink = '<a href="#" onclick="shutterReloaded.make('+prev+');return false"><<</a>'+dv;
|
111 |
previmg = new Image();
|
112 |
previmg.src = shutterLinks[prev].link;
|
113 |
} else {
|
@@ -116,7 +116,7 @@ shutterReloaded = {
|
|
116 |
|
117 |
if ( shutterLinks[ln].num != -1 && shutterLinks[ln].num < (shutterSets[shutterLinks[ln].set].length) ) {
|
118 |
next = shutterSets[shutterLinks[ln].set][shutterLinks[ln].num];
|
119 |
-
nextlink = '<a href="#" onclick="shutterReloaded.make('+next+');return false">>></a>'+dv;
|
120 |
nextimg = new Image();
|
121 |
nextimg.src = shutterLinks[next].link;
|
122 |
} else {
|
@@ -127,8 +127,9 @@ shutterReloaded = {
|
|
127 |
|
128 |
NavBar = '<div id="shTitle"><div id="shPrev">' + prevlink + '</div><div id="shNext">' + nextlink + '</div><div id="shName">' + shutterLinks[ln].title + '</div>' + imgNum + '</div>';
|
129 |
|
130 |
-
D.innerHTML = '<div id="shWrap"><img src="" id="shTopImg" title="' + t.msgClose + '" onload="shutterReloaded.showImg();" onclick="shutterReloaded.hideShutter();" />' + NavBar +'</div>';
|
131 |
|
|
|
132 |
//Google Chrome 4.0.249.78 bug for onload attribute
|
133 |
document.getElementById('shTopImg').src = shutterLinks[ln].link;
|
134 |
|
@@ -155,6 +156,7 @@ shutterReloaded = {
|
|
155 |
window.scrollTo(0,t.Top);
|
156 |
window.onresize = t.FS = t.Top = t.VP = null;
|
157 |
document.documentElement.style.overflowX = '';
|
|
|
158 |
},
|
159 |
|
160 |
resize : function(ln) {
|
@@ -239,5 +241,28 @@ shutterReloaded = {
|
|
239 |
for (i = 0; i < obj.length; i++) obj[i].style.visibility = vis;
|
240 |
for (i = 0; i < emb.length; i++) emb[i].style.visibility = vis;
|
241 |
for (i = 0; i < ifr.length; i++) ifr[i].style.visibility = vis;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
}
|
243 |
-
}
|
1 |
/*
|
2 |
Shutter Reloaded for NextGEN Gallery
|
3 |
http://www.laptoptips.ca/javascripts/shutter-reloaded/
|
4 |
+
Version: 1.3.2
|
5 |
+
Copyright (C) 2007-2008 Andrew Ozz (Modification by Alex Rabe)
|
6 |
Released under the GPL, http://www.gnu.org/copyleft/gpl.html
|
7 |
|
8 |
Acknowledgement: some ideas are from: Shutter by Andrew Sutherland - http://code.jalenack.com, WordPress - http://wordpress.org, Lightbox by Lokesh Dhakar - http://www.huddletogether.com, the icons are from Crystal Project Icons, Everaldo Coelho, http://www.everaldo.com
|
107 |
var dv = t.textBtns ? ' | ' : '';
|
108 |
if ( shutterLinks[ln].num > 1 ) {
|
109 |
prev = shutterSets[shutterLinks[ln].set][shutterLinks[ln].num - 2];
|
110 |
+
prevlink = '<a href="#" id="prevpic" onclick="shutterReloaded.make('+prev+');return false"><<</a>'+dv;
|
111 |
previmg = new Image();
|
112 |
previmg.src = shutterLinks[prev].link;
|
113 |
} else {
|
116 |
|
117 |
if ( shutterLinks[ln].num != -1 && shutterLinks[ln].num < (shutterSets[shutterLinks[ln].set].length) ) {
|
118 |
next = shutterSets[shutterLinks[ln].set][shutterLinks[ln].num];
|
119 |
+
nextlink = '<a href="#" id="nextpic" onclick="shutterReloaded.make('+next+');return false">>></a>'+dv;
|
120 |
nextimg = new Image();
|
121 |
nextimg.src = shutterLinks[next].link;
|
122 |
} else {
|
127 |
|
128 |
NavBar = '<div id="shTitle"><div id="shPrev">' + prevlink + '</div><div id="shNext">' + nextlink + '</div><div id="shName">' + shutterLinks[ln].title + '</div>' + imgNum + '</div>';
|
129 |
|
130 |
+
D.innerHTML = '<div id="shWrap"><img src="'+shutterLinks[ln].link+'" id="shTopImg" title="' + t.msgClose + '" onload="shutterReloaded.showImg();" onclick="shutterReloaded.hideShutter();" />' + NavBar +'</div>';
|
131 |
|
132 |
+
document.onkeydown = function(event){shutterReloaded.handleArrowKeys(event);};
|
133 |
//Google Chrome 4.0.249.78 bug for onload attribute
|
134 |
document.getElementById('shTopImg').src = shutterLinks[ln].link;
|
135 |
|
156 |
window.scrollTo(0,t.Top);
|
157 |
window.onresize = t.FS = t.Top = t.VP = null;
|
158 |
document.documentElement.style.overflowX = '';
|
159 |
+
document.onkeydown = null;
|
160 |
},
|
161 |
|
162 |
resize : function(ln) {
|
241 |
for (i = 0; i < obj.length; i++) obj[i].style.visibility = vis;
|
242 |
for (i = 0; i < emb.length; i++) emb[i].style.visibility = vis;
|
243 |
for (i = 0; i < ifr.length; i++) ifr[i].style.visibility = vis;
|
244 |
+
},
|
245 |
+
|
246 |
+
handleArrowKeys : function(e) {
|
247 |
+
var code = 0;
|
248 |
+
if (!e) var e = window.event
|
249 |
+
if (e.keyCode) code = e.keyCode;
|
250 |
+
else if (e.which) code = e.which;
|
251 |
+
|
252 |
+
var nextlink = document.getElementById('prevpic');
|
253 |
+
var prevlink = document.getElementById('nextpic');
|
254 |
+
var closelink = document.getElementById('shTopImg');
|
255 |
+
|
256 |
+
switch (code) {
|
257 |
+
case 39:
|
258 |
+
if (prevlink) prevlink.onclick();
|
259 |
+
break;
|
260 |
+
case 37:
|
261 |
+
if (nextlink) nextlink.onclick();
|
262 |
+
break;
|
263 |
+
case 27:
|
264 |
+
if (closelink) closelink.onclick();
|
265 |
+
break;
|
266 |
+
}
|
267 |
}
|
268 |
+
}
|
widgets/widgets.php
CHANGED
@@ -316,8 +316,8 @@ class nggWidget extends WP_Widget {
|
|
316 |
$thumbcode = $image->get_thumbcode( $widget_id );
|
317 |
|
318 |
// enable i18n support for alttext and description
|
319 |
-
$alttext = htmlspecialchars( stripslashes( nggGallery::i18n($image->alttext) ));
|
320 |
-
$description = htmlspecialchars( stripslashes( nggGallery::i18n($image->description) ));
|
321 |
|
322 |
//TODO:For mixed portrait/landscape it's better to use only the height setting, if widht is 0 or vice versa
|
323 |
$out = '<a href="' . $image->imageURL . '" title="' . $description . '" ' . $thumbcode .'>';
|
316 |
$thumbcode = $image->get_thumbcode( $widget_id );
|
317 |
|
318 |
// enable i18n support for alttext and description
|
319 |
+
$alttext = htmlspecialchars( stripslashes( nggGallery::i18n($image->alttext, 'pic_' . $image->pid . '_alttext') ));
|
320 |
+
$description = htmlspecialchars( stripslashes( nggGallery::i18n($image->description, 'pic_' . $image->pid . '_description') ));
|
321 |
|
322 |
//TODO:For mixed portrait/landscape it's better to use only the height setting, if widht is 0 or vice versa
|
323 |
$out = '<a href="' . $image->imageURL . '" title="' . $description . '" ' . $thumbcode .'>';
|
xml/imagerotator.php
CHANGED
@@ -38,9 +38,9 @@ if (is_array ($thepictures)){
|
|
38 |
foreach ($thepictures as $picture) {
|
39 |
echo " <track>\n";
|
40 |
if (!empty($picture->description))
|
41 |
-
echo " <title>".strip_tags(stripslashes(html_entity_decode(nggGallery::i18n($picture->description))))."</title>\n";
|
42 |
else if (!empty($picture->alttext))
|
43 |
-
echo " <title>".stripslashes(nggGallery::i18n($picture->alttext))."</title>\n";
|
44 |
else
|
45 |
echo " <title>".$picture->filename."</title>\n";
|
46 |
echo " <location>".$siteurl."/".$picture->path."/".$picture->filename."</location>\n";
|
38 |
foreach ($thepictures as $picture) {
|
39 |
echo " <track>\n";
|
40 |
if (!empty($picture->description))
|
41 |
+
echo " <title>".strip_tags(stripslashes(html_entity_decode(nggGallery::i18n($picture->description, 'pic_' . $picture->pid . '_description'))))."</title>\n";
|
42 |
else if (!empty($picture->alttext))
|
43 |
+
echo " <title>".stripslashes(nggGallery::i18n($picture->alttext, 'pic_' . $picture->pid . '_alttext'))."</title>\n";
|
44 |
else
|
45 |
echo " <title>".$picture->filename."</title>\n";
|
46 |
echo " <location>".$siteurl."/".$picture->path."/".$picture->filename."</location>\n";
|