Version Description
- 20.01.2011
- NEW : Introduce plugin health check for conflicts with other plugins/themes
- NEW : Adding new XMLRPC method ngg.deleteImage
- NEW : Adding new XMLRPC method ngg.editImage
- Changed : Rework register script for autocomplete feature
- Bugfix : Bugfix for Multisite setup and flash upload
- Bugfix : WP3.1 compat issue, show site admin page only on Multisite installation
Download this release
Release Info
Developer | alexrabe |
Plugin | NextGEN Gallery – WordPress Gallery Plugin |
Version | 1.7.3 |
Comparing to | |
See all releases |
Code changes from version 1.7.2 to 1.7.3
- admin/admin.php +18 -13
- admin/ajax.php +81 -1
- admin/css/nggadmin.css +9 -0
- admin/js/jquery.ui.autocomplete.min.js +17 -17
- admin/overview.php +206 -1
- admin/upload.php +2 -0
- changelog.txt +9 -1
- lang/nggallery-de_DE.mo +0 -0
- lang/nggallery-de_DE.po +477 -400
- lang/nggallery.pot +474 -388
- lib/multisite.php +30 -1
- lib/ngg-db.php +1 -1
- lib/xmlrpc.php +104 -4
- nggallery.php +20 -5
- nggfunctions.php +3 -2
- readme.txt +11 -3
- xml/json.php +4 -0
admin/admin.php
CHANGED
@@ -41,7 +41,7 @@ class nggAdminPanel{
|
|
41 |
add_submenu_page( NGGFOLDER , __('Roles', 'nggallery'), __('Roles', 'nggallery'), 'activate_plugins', 'nggallery-roles', array (&$this, 'show_menu'));
|
42 |
add_submenu_page( NGGFOLDER , __('About this Gallery', 'nggallery'), __('About', 'nggallery'), 'NextGEN Gallery overview', 'nggallery-about', array (&$this, 'show_menu'));
|
43 |
//TODO: Remove after WP 3.1 release, not longer needed
|
44 |
-
if ( wpmu_site_admin() )
|
45 |
add_submenu_page( 'ms-admin.php' , __('NextGEN Gallery', 'nggallery'), __('NextGEN Gallery', 'nggallery'), 'activate_plugins', 'nggallery-wpmu', array (&$this, 'show_menu'));
|
46 |
|
47 |
if ( !is_multisite() || wpmu_site_admin() )
|
@@ -120,8 +120,7 @@ class nggAdminPanel{
|
|
120 |
// Initate the Manage Gallery page
|
121 |
$ngg->manage_page = new nggManageGallery ();
|
122 |
// Render the output now, because you cannot access a object during the constructor is not finished
|
123 |
-
$ngg->manage_page->controller();
|
124 |
-
|
125 |
break;
|
126 |
case "nggallery-manage-album" :
|
127 |
include_once ( dirname (__FILE__) . '/album.php' ); // nggallery_admin_manage_album
|
@@ -171,7 +170,8 @@ class nggAdminPanel{
|
|
171 |
}
|
172 |
|
173 |
function load_scripts() {
|
174 |
-
|
|
|
175 |
// no need to go on if it's not a plugin page
|
176 |
if( !isset($_GET['page']) )
|
177 |
return;
|
@@ -189,12 +189,9 @@ class nggAdminPanel{
|
|
189 |
) );
|
190 |
wp_register_script('ngg-progressbar', NGGALLERY_URLPATH .'admin/js/ngg.progressbar.js', array('jquery'), '2.0.1');
|
191 |
wp_register_script('swfupload_f10', NGGALLERY_URLPATH .'admin/js/swfupload.js', array('jquery'), '2.2.0');
|
192 |
-
// Package included sortable, dialog, autocomplete, tabs
|
193 |
-
wp_register_script('jquery-ui', NGGALLERY_URLPATH .'admin/js/jquery-ui-1.8.6.min.js', array('jquery'), '1.8.6');
|
194 |
// Until release of 3.1 not used, due to script conflict
|
195 |
-
wp_register_script('jquery-ui-autocomplete', NGGALLERY_URLPATH .'admin/js/jquery.ui.autocomplete.min.js', array('jquery-ui-core'), '1.8.
|
196 |
-
|
197 |
-
|
198 |
switch ($_GET['page']) {
|
199 |
case NGGFOLDER :
|
200 |
wp_enqueue_script( 'postbox' );
|
@@ -208,10 +205,18 @@ class nggAdminPanel{
|
|
208 |
add_thickbox();
|
209 |
break;
|
210 |
case "nggallery-manage-album" :
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
break;
|
216 |
case "nggallery-options" :
|
217 |
wp_enqueue_script( 'jquery-ui-tabs' );
|
41 |
add_submenu_page( NGGFOLDER , __('Roles', 'nggallery'), __('Roles', 'nggallery'), 'activate_plugins', 'nggallery-roles', array (&$this, 'show_menu'));
|
42 |
add_submenu_page( NGGFOLDER , __('About this Gallery', 'nggallery'), __('About', 'nggallery'), 'NextGEN Gallery overview', 'nggallery-about', array (&$this, 'show_menu'));
|
43 |
//TODO: Remove after WP 3.1 release, not longer needed
|
44 |
+
if ( is_multisite() && wpmu_site_admin() )
|
45 |
add_submenu_page( 'ms-admin.php' , __('NextGEN Gallery', 'nggallery'), __('NextGEN Gallery', 'nggallery'), 'activate_plugins', 'nggallery-wpmu', array (&$this, 'show_menu'));
|
46 |
|
47 |
if ( !is_multisite() || wpmu_site_admin() )
|
120 |
// Initate the Manage Gallery page
|
121 |
$ngg->manage_page = new nggManageGallery ();
|
122 |
// Render the output now, because you cannot access a object during the constructor is not finished
|
123 |
+
$ngg->manage_page->controller();
|
|
|
124 |
break;
|
125 |
case "nggallery-manage-album" :
|
126 |
include_once ( dirname (__FILE__) . '/album.php' ); // nggallery_admin_manage_album
|
170 |
}
|
171 |
|
172 |
function load_scripts() {
|
173 |
+
global $wp_version;
|
174 |
+
|
175 |
// no need to go on if it's not a plugin page
|
176 |
if( !isset($_GET['page']) )
|
177 |
return;
|
189 |
) );
|
190 |
wp_register_script('ngg-progressbar', NGGALLERY_URLPATH .'admin/js/ngg.progressbar.js', array('jquery'), '2.0.1');
|
191 |
wp_register_script('swfupload_f10', NGGALLERY_URLPATH .'admin/js/swfupload.js', array('jquery'), '2.2.0');
|
|
|
|
|
192 |
// Until release of 3.1 not used, due to script conflict
|
193 |
+
wp_register_script('jquery-ui-autocomplete', NGGALLERY_URLPATH .'admin/js/jquery.ui.autocomplete.min.js', array('jquery-ui-core', 'jquery-ui-widget'), '1.8.9');
|
194 |
+
|
|
|
195 |
switch ($_GET['page']) {
|
196 |
case NGGFOLDER :
|
197 |
wp_enqueue_script( 'postbox' );
|
205 |
add_thickbox();
|
206 |
break;
|
207 |
case "nggallery-manage-album" :
|
208 |
+
if ( version_compare( $wp_version, '3.0.999', '>' ) ) {
|
209 |
+
wp_enqueue_script( 'jquery-ui-autocomplete' );
|
210 |
+
wp_enqueue_script( 'jquery-ui-dialog' );
|
211 |
+
wp_enqueue_script( 'jquery-ui-sortable' );
|
212 |
+
wp_enqueue_script( 'ngg-autocomplete', NGGALLERY_URLPATH .'admin/js/ngg.autocomplete.js', array('jquery-ui-autocomplete'), '1.0');
|
213 |
+
} else {
|
214 |
+
// Due to script conflict with jQuery UI 1.8.6
|
215 |
+
wp_deregister_script( 'jquery-ui-sortable' );
|
216 |
+
// Package included sortable, dialog, autocomplete, tabs
|
217 |
+
wp_enqueue_script('jquery-ui', NGGALLERY_URLPATH .'admin/js/jquery-ui-1.8.6.min.js', array('jquery'), '1.8.6');
|
218 |
+
wp_enqueue_script('ngg-autocomplete', NGGALLERY_URLPATH .'admin/js/ngg.autocomplete.js', array('jquery-ui'), '1.0');
|
219 |
+
}
|
220 |
break;
|
221 |
case "nggallery-options" :
|
222 |
wp_enqueue_script( 'jquery-ui-tabs' );
|
admin/ajax.php
CHANGED
@@ -316,6 +316,7 @@ function ngg_ajax_tinymce() {
|
|
316 |
die();
|
317 |
}
|
318 |
|
|
|
319 |
/**
|
320 |
* This rebuild the slugs for albums, galleries and images as ajax routine, max 50 elements per request
|
321 |
*
|
@@ -363,4 +364,83 @@ function ngg_ajax_rebuild_unique_slugs() {
|
|
363 |
|
364 |
die(1);
|
365 |
}
|
366 |
-
add_action(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
die();
|
317 |
}
|
318 |
|
319 |
+
add_action( 'wp_ajax_ngg_rebuild_unique_slugs', 'ngg_ajax_rebuild_unique_slugs' );
|
320 |
/**
|
321 |
* This rebuild the slugs for albums, galleries and images as ajax routine, max 50 elements per request
|
322 |
*
|
364 |
|
365 |
die(1);
|
366 |
}
|
367 |
+
add_action('wp_ajax_ngg_image_check', 'ngg_ajax_image_check');
|
368 |
+
/**
|
369 |
+
* Test for various image resolution
|
370 |
+
*
|
371 |
+
* @since 1.7.3
|
372 |
+
* @return result
|
373 |
+
*/
|
374 |
+
function ngg_ajax_image_check() {
|
375 |
+
|
376 |
+
// check for correct NextGEN capability
|
377 |
+
if ( !current_user_can('NextGEN Upload images') )
|
378 |
+
die('No access');
|
379 |
+
|
380 |
+
if ( !defined('ABSPATH') )
|
381 |
+
die('No access');
|
382 |
+
|
383 |
+
$step = (int) $_POST['step'];
|
384 |
+
|
385 |
+
// build the test sizes
|
386 |
+
$sizes = array();
|
387 |
+
$sizes[1] = array ( 'width' => 800, 'height' => 600);
|
388 |
+
$sizes[2] = array ( 'width' => 1024, 'height' => 768);
|
389 |
+
$sizes[3] = array ( 'width' => 1280, 'height' => 960); // 1MP
|
390 |
+
$sizes[4] = array ( 'width' => 1600, 'height' => 1200); // 2MP
|
391 |
+
$sizes[5] = array ( 'width' => 2016, 'height' => 1512); // 3MP
|
392 |
+
$sizes[6] = array ( 'width' => 2272, 'height' => 1704); // 4MP
|
393 |
+
$sizes[7] = array ( 'width' => 2560, 'height' => 1920); // 5MP
|
394 |
+
$sizes[8] = array ( 'width' => 2848, 'height' => 2136); // 6MP
|
395 |
+
$sizes[9] = array ( 'width' => 3072, 'height' => 2304); // 7MP
|
396 |
+
$sizes[10] = array ( 'width' => 3264, 'height' => 2448); // 8MP
|
397 |
+
$sizes[11] = array ( 'width' => 4048, 'height' => 3040); // 12MP
|
398 |
+
|
399 |
+
if ( $step < 1 || $step > 11 )
|
400 |
+
die('No vaild value');
|
401 |
+
|
402 |
+
// let's test each image size
|
403 |
+
$temp = imagecreatetruecolor ($sizes[$step]['width'], $sizes[$step]['height'] );
|
404 |
+
imagedestroy ($temp);
|
405 |
+
|
406 |
+
$result = array ('stat' => 'ok', 'message' => sprintf(__('Could create image with %s x %s pixel', 'nggallery'), $sizes[$step]['width'], $sizes[$step]['height'] ) );
|
407 |
+
|
408 |
+
header('Content-Type: application/json; charset=' . get_option('blog_charset'), true);
|
409 |
+
echo json_encode($result);
|
410 |
+
|
411 |
+
die();
|
412 |
+
}
|
413 |
+
|
414 |
+
add_action('wp_ajax_ngg_test_head_footer', 'ngg_ajax_test_head_footer');
|
415 |
+
/**
|
416 |
+
* Check for the header / footer, parts taken from Matt Martz (http://sivel.net/)
|
417 |
+
*
|
418 |
+
* @see https://gist.github.com/378450
|
419 |
+
* @since 1.7.3
|
420 |
+
* @return result
|
421 |
+
*/
|
422 |
+
function ngg_ajax_test_head_footer() {
|
423 |
+
|
424 |
+
// Build the url to call, NOTE: uses home_url and thus requires WordPress 3.0
|
425 |
+
$url = add_query_arg( array( 'test-head' => '', 'test-footer' => '' ), home_url() );
|
426 |
+
// Perform the HTTP GET ignoring SSL errors
|
427 |
+
$response = wp_remote_get( $url, array( 'sslverify' => false ) );
|
428 |
+
// Grab the response code and make sure the request was sucessful
|
429 |
+
$code = (int) wp_remote_retrieve_response_code( $response );
|
430 |
+
if ( $code == 200 ) {
|
431 |
+
global $head_footer_errors;
|
432 |
+
$head_footer_errors = array();
|
433 |
+
|
434 |
+
// Strip all tabs, line feeds, carriage returns and spaces
|
435 |
+
$html = preg_replace( '/[\t\r\n\s]/', '', wp_remote_retrieve_body( $response ) );
|
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 <?php wp_head(); ?> in your theme');
|
440 |
+
// Check to see if we found the existence of wp_footer
|
441 |
+
if ( ! strstr( $html, '<!--wp_footer-->' ) )
|
442 |
+
die('Missing the call to <?php wp_footer(); ?> in your theme');
|
443 |
+
}
|
444 |
+
die('success');
|
445 |
+
}
|
446 |
+
?>
|
admin/css/nggadmin.css
CHANGED
@@ -58,6 +58,15 @@
|
|
58 |
padding-top:10px;
|
59 |
float:right;
|
60 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
/* SETTING FOR FLASH UPLOAD BUTTON */
|
62 |
.swfupload {
|
63 |
position:absolute;
|
58 |
padding-top:10px;
|
59 |
float:right;
|
60 |
}
|
61 |
+
|
62 |
+
#plugin_check img {
|
63 |
+
float: right;
|
64 |
+
}
|
65 |
+
|
66 |
+
#plugin_check p.message {
|
67 |
+
font-size: 90%;
|
68 |
+
color: #666;
|
69 |
+
}
|
70 |
/* SETTING FOR FLASH UPLOAD BUTTON */
|
71 |
.swfupload {
|
72 |
position:absolute;
|
admin/js/jquery.ui.autocomplete.min.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
/*
|
2 |
-
* jQuery UI Autocomplete 1.8.
|
3 |
*
|
4 |
-
* Copyright
|
5 |
* Dual licensed under the MIT or GPL Version 2 licenses.
|
6 |
* http://jquery.org/license
|
7 |
*
|
@@ -12,20 +12,20 @@
|
|
12 |
* jquery.ui.widget.js
|
13 |
* jquery.ui.position.js
|
14 |
*/
|
15 |
-
(function(
|
16 |
-
c);break;case
|
17 |
-
break}}}).bind("keypress.autocomplete",function(c){if(f){f=false;c.preventDefault()}}).bind("focus.autocomplete",function(){if(!a.options.disabled){a.selectedItem=null;a.previous=a.element.val()}}).bind("blur.autocomplete",function(c){if(!a.options.disabled){clearTimeout(a.searching);a.closing=setTimeout(function(){a.close(c);a._change(c)},150)}});this._initSource();this.response=function(){return a._response.apply(a,arguments)};this.menu=
|
18 |
-
"body",b)[0]).mousedown(function(c){var
|
19 |
-
|
20 |
-
this.menu.element.remove();
|
21 |
-
function(c,
|
22 |
-
this._normalize(a);this._suggest(a);this._trigger("open")}else this.close();this.element.removeClass("ui-autocomplete-loading")},close:function(a){clearTimeout(this.closing);if(this.menu.element.is(":visible")){this.
|
23 |
-
"string")return{label:b,value:b};return
|
24 |
-
this;
|
25 |
-
"\\$&")},filter:function(a,b){var f=new RegExp(
|
26 |
-
(function(
|
27 |
-
-1).mouseenter(function(b){a.activate(b,
|
28 |
deactivate:function(){if(this.active){this.active.children("a").removeClass("ui-state-hover").removeAttr("id");this._trigger("blur");this.active=null}},next:function(a){this.move("next",".ui-menu-item:first",a)},previous:function(a){this.move("prev",".ui-menu-item:last",a)},first:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},last:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},move:function(a,b,f){if(this.active){a=this.active[a+"All"](".ui-menu-item").eq(0);
|
29 |
-
a.length?this.activate(f,a):this.activate(f,this.element.children(b))}else this.activate(f,this.element.children(b))},nextPage:function(a){if(this.hasScroll())if(!this.active||this.last())this.activate(a,this.element.children(".ui-menu-item:first"));else{var b=this.active.offset().top,f=this.element.height(),c=this.element.children(".ui-menu-item").filter(function(){var d
|
30 |
-
c)}else this.activate(a,this.element.children(".ui-menu-item").filter(!this.active||this.last()?":first":":last"))},previousPage:function(a){if(this.hasScroll())if(!this.active||this.first())this.activate(a,this.element.children(".ui-menu-item:last"));else{var b=this.active.offset().top,f=this.element.height();result=this.element.children(".ui-menu-item").filter(function(){var c=
|
31 |
this.activate(a,result)}else this.activate(a,this.element.children(".ui-menu-item").filter(!this.active||this.first()?":last":":first"))},hasScroll:function(){return this.element.height()<this.element.attr("scrollHeight")},select:function(a){this._trigger("selected",a,{item:this.active})}})})(jQuery);
|
1 |
/*
|
2 |
+
* jQuery UI Autocomplete 1.8.9
|
3 |
*
|
4 |
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
5 |
* Dual licensed under the MIT or GPL Version 2 licenses.
|
6 |
* http://jquery.org/license
|
7 |
*
|
12 |
* jquery.ui.widget.js
|
13 |
* jquery.ui.position.js
|
14 |
*/
|
15 |
+
(function(d){d.widget("ui.autocomplete",{options:{appendTo:"body",delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null},pending:0,_create:function(){var a=this,b=this.element[0].ownerDocument,f;this.element.addClass("ui-autocomplete-input").attr("autocomplete","off").attr({role:"textbox","aria-autocomplete":"list","aria-haspopup":"true"}).bind("keydown.autocomplete",function(c){if(!(a.options.disabled||a.element.attr("readonly"))){f=false;var e=d.ui.keyCode;
|
16 |
+
switch(c.keyCode){case e.PAGE_UP:a._move("previousPage",c);break;case e.PAGE_DOWN:a._move("nextPage",c);break;case e.UP:a._move("previous",c);c.preventDefault();break;case e.DOWN:a._move("next",c);c.preventDefault();break;case e.ENTER:case e.NUMPAD_ENTER:if(a.menu.active){f=true;c.preventDefault()}case e.TAB:if(!a.menu.active)return;a.menu.select(c);break;case e.ESCAPE:a.element.val(a.term);a.close(c);break;default:clearTimeout(a.searching);a.searching=setTimeout(function(){if(a.term!=a.element.val()){a.selectedItem=
|
17 |
+
null;a.search(null,c)}},a.options.delay);break}}}).bind("keypress.autocomplete",function(c){if(f){f=false;c.preventDefault()}}).bind("focus.autocomplete",function(){if(!a.options.disabled){a.selectedItem=null;a.previous=a.element.val()}}).bind("blur.autocomplete",function(c){if(!a.options.disabled){clearTimeout(a.searching);a.closing=setTimeout(function(){a.close(c);a._change(c)},150)}});this._initSource();this.response=function(){return a._response.apply(a,arguments)};this.menu=d("<ul></ul>").addClass("ui-autocomplete").appendTo(d(this.options.appendTo||
|
18 |
+
"body",b)[0]).mousedown(function(c){var e=a.menu.element[0];d(c.target).closest(".ui-menu-item").length||setTimeout(function(){d(document).one("mousedown",function(g){g.target!==a.element[0]&&g.target!==e&&!d.ui.contains(e,g.target)&&a.close()})},1);setTimeout(function(){clearTimeout(a.closing)},13)}).menu({focus:function(c,e){e=e.item.data("item.autocomplete");false!==a._trigger("focus",c,{item:e})&&/^key/.test(c.originalEvent.type)&&a.element.val(e.value)},selected:function(c,e){var g=e.item.data("item.autocomplete"),
|
19 |
+
h=a.previous;if(a.element[0]!==b.activeElement){a.element.focus();a.previous=h;setTimeout(function(){a.previous=h;a.selectedItem=g},1)}false!==a._trigger("select",c,{item:g})&&a.element.val(g.value);a.term=a.element.val();a.close(c);a.selectedItem=g},blur:function(){a.menu.element.is(":visible")&&a.element.val()!==a.term&&a.element.val(a.term)}}).zIndex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu");d.fn.bgiframe&&this.menu.element.bgiframe()},destroy:function(){this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup");
|
20 |
+
this.menu.element.remove();d.Widget.prototype.destroy.call(this)},_setOption:function(a,b){d.Widget.prototype._setOption.apply(this,arguments);a==="source"&&this._initSource();if(a==="appendTo")this.menu.element.appendTo(d(b||"body",this.element[0].ownerDocument)[0]);a==="disabled"&&b&&this.xhr&&this.xhr.abort()},_initSource:function(){var a=this,b,f;if(d.isArray(this.options.source)){b=this.options.source;this.source=function(c,e){e(d.ui.autocomplete.filter(b,c.term))}}else if(typeof this.options.source===
|
21 |
+
"string"){f=this.options.source;this.source=function(c,e){a.xhr&&a.xhr.abort();a.xhr=d.ajax({url:f,data:c,dataType:"json",success:function(g,h,i){i===a.xhr&&e(g);a.xhr=null},error:function(g){g===a.xhr&&e([]);a.xhr=null}})}}else this.source=this.options.source},search:function(a,b){a=a!=null?a:this.element.val();this.term=this.element.val();if(a.length<this.options.minLength)return this.close(b);clearTimeout(this.closing);if(this._trigger("search",b)!==false)return this._search(a)},_search:function(a){this.pending++;
|
22 |
+
this.element.addClass("ui-autocomplete-loading");this.source({term:a},this.response)},_response:function(a){if(!this.options.disabled&&a&&a.length){a=this._normalize(a);this._suggest(a);this._trigger("open")}else this.close();this.pending--;this.pending||this.element.removeClass("ui-autocomplete-loading")},close:function(a){clearTimeout(this.closing);if(this.menu.element.is(":visible")){this.menu.element.hide();this.menu.deactivate();this._trigger("close",a)}},_change:function(a){this.previous!==
|
23 |
+
this.element.val()&&this._trigger("change",a,{item:this.selectedItem})},_normalize:function(a){if(a.length&&a[0].label&&a[0].value)return a;return d.map(a,function(b){if(typeof b==="string")return{label:b,value:b};return d.extend({label:b.label||b.value,value:b.value||b.label},b)})},_suggest:function(a){var b=this.menu.element.empty().zIndex(this.element.zIndex()+1);this._renderMenu(b,a);this.menu.deactivate();this.menu.refresh();b.show();this._resizeMenu();b.position(d.extend({of:this.element},this.options.position))},
|
24 |
+
_resizeMenu:function(){var a=this.menu.element;a.outerWidth(Math.max(a.width("").outerWidth(),this.element.outerWidth()))},_renderMenu:function(a,b){var f=this;d.each(b,function(c,e){f._renderItem(a,e)})},_renderItem:function(a,b){return d("<li></li>").data("item.autocomplete",b).append(d("<a></a>").text(b.label)).appendTo(a)},_move:function(a,b){if(this.menu.element.is(":visible"))if(this.menu.first()&&/^previous/.test(a)||this.menu.last()&&/^next/.test(a)){this.element.val(this.term);this.menu.deactivate()}else this.menu[a](b);
|
25 |
+
else this.search(null,b)},widget:function(){return this.menu.element}});d.extend(d.ui.autocomplete,{escapeRegex:function(a){return a.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},filter:function(a,b){var f=new RegExp(d.ui.autocomplete.escapeRegex(b),"i");return d.grep(a,function(c){return f.test(c.label||c.value||c)})}})})(jQuery);
|
26 |
+
(function(d){d.widget("ui.menu",{_create:function(){var a=this;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(b){if(d(b.target).closest(".ui-menu-item a").length){b.preventDefault();a.select(b)}});this.refresh()},refresh:function(){var a=this;this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem").children("a").addClass("ui-corner-all").attr("tabindex",
|
27 |
+
-1).mouseenter(function(b){a.activate(b,d(this).parent())}).mouseleave(function(){a.deactivate()})},activate:function(a,b){this.deactivate();if(this.hasScroll()){var f=b.offset().top-this.element.offset().top,c=this.element.attr("scrollTop"),e=this.element.height();if(f<0)this.element.attr("scrollTop",c+f);else f>=e&&this.element.attr("scrollTop",c+f-e+b.height())}this.active=b.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end();this._trigger("focus",a,{item:b})},
|
28 |
deactivate:function(){if(this.active){this.active.children("a").removeClass("ui-state-hover").removeAttr("id");this._trigger("blur");this.active=null}},next:function(a){this.move("next",".ui-menu-item:first",a)},previous:function(a){this.move("prev",".ui-menu-item:last",a)},first:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},last:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},move:function(a,b,f){if(this.active){a=this.active[a+"All"](".ui-menu-item").eq(0);
|
29 |
+
a.length?this.activate(f,a):this.activate(f,this.element.children(b))}else this.activate(f,this.element.children(b))},nextPage:function(a){if(this.hasScroll())if(!this.active||this.last())this.activate(a,this.element.children(".ui-menu-item:first"));else{var b=this.active.offset().top,f=this.element.height(),c=this.element.children(".ui-menu-item").filter(function(){var e=d(this).offset().top-b-f+d(this).height();return e<10&&e>-10});c.length||(c=this.element.children(".ui-menu-item:last"));this.activate(a,
|
30 |
+
c)}else this.activate(a,this.element.children(".ui-menu-item").filter(!this.active||this.last()?":first":":last"))},previousPage:function(a){if(this.hasScroll())if(!this.active||this.first())this.activate(a,this.element.children(".ui-menu-item:last"));else{var b=this.active.offset().top,f=this.element.height();result=this.element.children(".ui-menu-item").filter(function(){var c=d(this).offset().top-b+f-d(this).height();return c<10&&c>-10});result.length||(result=this.element.children(".ui-menu-item:first"));
|
31 |
this.activate(a,result)}else this.activate(a,this.element.children(".ui-menu-item").filter(!this.active||this.first()?":last":":first"))},hasScroll:function(){return this.element.height()<this.element.attr("scrollHeight")},select:function(a){this._trigger("selected",a,{item:this.active})}})})(jQuery);
|
admin/overview.php
CHANGED
@@ -8,7 +8,6 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
|
|
8 |
* @return mixed content
|
9 |
*/
|
10 |
function nggallery_admin_overview() {
|
11 |
-
|
12 |
?>
|
13 |
<div class="wrap ngg-wrap">
|
14 |
<?php screen_icon( 'nextgen-gallery' ); ?>
|
@@ -91,6 +90,7 @@ if ( !(get_locale() == 'en_US') )
|
|
91 |
add_meta_box('dashboard_primary', __('Latest News', 'nggallery'), 'ngg_widget_overview_news', 'ngg_overview', 'left', 'core');
|
92 |
add_meta_box('ngg_lastdonators', __('Recent donators', 'nggallery'), 'ngg_widget_overview_donators', 'ngg_overview', 'right', 'core');
|
93 |
if ( !is_multisite() || is_super_admin() ) {
|
|
|
94 |
add_meta_box('ngg_server', __('Server Settings', 'nggallery'), 'ngg_overview_server', 'ngg_overview', 'right', 'core');
|
95 |
add_meta_box('dashboard_plugins', __('Related plugins', 'nggallery'), 'ngg_widget_related_plugins', 'ngg_overview', 'left', 'core');
|
96 |
}
|
@@ -124,6 +124,211 @@ function ngg_likeThisMetaBox() {
|
|
124 |
echo '</ul>';
|
125 |
}
|
126 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
/**
|
128 |
* Show the server settings in a dashboard widget
|
129 |
*
|
8 |
* @return mixed content
|
9 |
*/
|
10 |
function nggallery_admin_overview() {
|
|
|
11 |
?>
|
12 |
<div class="wrap ngg-wrap">
|
13 |
<?php screen_icon( 'nextgen-gallery' ); ?>
|
90 |
add_meta_box('dashboard_primary', __('Latest News', 'nggallery'), 'ngg_widget_overview_news', 'ngg_overview', 'left', 'core');
|
91 |
add_meta_box('ngg_lastdonators', __('Recent donators', 'nggallery'), 'ngg_widget_overview_donators', 'ngg_overview', 'right', 'core');
|
92 |
if ( !is_multisite() || is_super_admin() ) {
|
93 |
+
add_meta_box('ngg_plugin_check', __('Plugin Check', 'nggallery'), 'ngg_plugin_check', 'ngg_overview', 'right', 'core');
|
94 |
add_meta_box('ngg_server', __('Server Settings', 'nggallery'), 'ngg_overview_server', 'ngg_overview', 'right', 'core');
|
95 |
add_meta_box('dashboard_plugins', __('Related plugins', 'nggallery'), 'ngg_widget_related_plugins', 'ngg_overview', 'left', 'core');
|
96 |
}
|
124 |
echo '</ul>';
|
125 |
}
|
126 |
|
127 |
+
/**
|
128 |
+
* Ajax Check for conflict with other plugins/themes
|
129 |
+
*
|
130 |
+
* @return void
|
131 |
+
*/
|
132 |
+
function ngg_plugin_check() {
|
133 |
+
|
134 |
+
global $ngg;
|
135 |
+
?>
|
136 |
+
<script type="text/javascript">
|
137 |
+
(function($) {
|
138 |
+
nggPluginCheck = {
|
139 |
+
|
140 |
+
settings: {
|
141 |
+
img_run: '<img src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" class="icon" alt="started"/>',
|
142 |
+
img_ok: '<img src="<?php echo esc_url( admin_url( 'images/yes.png' ) ); ?>" class="icon" alt="ok"/>',
|
143 |
+
img_fail: '<img src="<?php echo esc_url( admin_url( 'images/no.png' ) ); ?>" class="icon" alt="failed" />',
|
144 |
+
adminurl: '<?php echo esc_url( admin_url( 'admin-ajax.php' ) ); ?>',
|
145 |
+
domain: '<?php echo esc_url( trailingslashit ( home_url() ) ); ?>'
|
146 |
+
},
|
147 |
+
|
148 |
+
run: function( index, state ) {
|
149 |
+
ul = $('#plugin_check');
|
150 |
+
s = this.settings;
|
151 |
+
var step = 1;
|
152 |
+
switch ( index ) {
|
153 |
+
case 1:
|
154 |
+
this.check1();
|
155 |
+
break;
|
156 |
+
case 2:
|
157 |
+
this.check2( step );
|
158 |
+
break;
|
159 |
+
case 3:
|
160 |
+
this.check3();
|
161 |
+
break;
|
162 |
+
}
|
163 |
+
},
|
164 |
+
|
165 |
+
// this function check if the json API will work with your theme & plugins
|
166 |
+
check1 : function() {
|
167 |
+
this.start(1);
|
168 |
+
var req = $.ajax({
|
169 |
+
dataType: 'json',
|
170 |
+
url: s.domain,
|
171 |
+
data:'callback=json&format=json&method=version',
|
172 |
+
cache: false,
|
173 |
+
timeout: 10000,
|
174 |
+
success: function(msg){
|
175 |
+
if (msg.version == '<?php echo $ngg->version; ?>')
|
176 |
+
nggPluginCheck.success(1);
|
177 |
+
else
|
178 |
+
nggPluginCheck.failed(1);
|
179 |
+
},
|
180 |
+
error: function (msg) {
|
181 |
+
nggPluginCheck.failed(1);
|
182 |
+
},
|
183 |
+
complete: function () {
|
184 |
+
nggPluginCheck.run(2);
|
185 |
+
}
|
186 |
+
});
|
187 |
+
|
188 |
+
},
|
189 |
+
|
190 |
+
// this function check if GD lib can create images & thumbnails
|
191 |
+
check2 : function( step ) {
|
192 |
+
if (step == 1) this.start(2);
|
193 |
+
var stop = false;
|
194 |
+
var req = $.ajax({
|
195 |
+
type: "POST",
|
196 |
+
url: s.adminurl,
|
197 |
+
data:"action=ngg_image_check&step=" + step,
|
198 |
+
cache: false,
|
199 |
+
timeout: 10000,
|
200 |
+
success: function(msg){
|
201 |
+
if (msg.stat == 'ok') {
|
202 |
+
nggPluginCheck.success(2, msg.message);
|
203 |
+
} else {
|
204 |
+
if (step == 1)
|
205 |
+
nggPluginCheck.failed(2);
|
206 |
+
stop = true;
|
207 |
+
}
|
208 |
+
|
209 |
+
},
|
210 |
+
error: function (msg) {
|
211 |
+
if (step == 1)
|
212 |
+
nggPluginCheck.failed(2);
|
213 |
+
stop = true;
|
214 |
+
},
|
215 |
+
complete: function () {
|
216 |
+
step++;
|
217 |
+
if (step <= 11 && stop == false)
|
218 |
+
nggPluginCheck.check2(step);
|
219 |
+
else
|
220 |
+
nggPluginCheck.run(3);
|
221 |
+
}
|
222 |
+
});
|
223 |
+
},
|
224 |
+
|
225 |
+
// this function check if wp_head / wp_footer is avaiable
|
226 |
+
check3 : function() {
|
227 |
+
this.start(3);
|
228 |
+
var req = $.ajax({
|
229 |
+
type: "POST",
|
230 |
+
url: s.adminurl,
|
231 |
+
data:"action=ngg_test_head_footer",
|
232 |
+
cache: false,
|
233 |
+
timeout: 10000,
|
234 |
+
success: function(msg){
|
235 |
+
if (msg == 'success')
|
236 |
+
nggPluginCheck.success(3);
|
237 |
+
else
|
238 |
+
nggPluginCheck.failed(3, msg);
|
239 |
+
},
|
240 |
+
error: function (msg) {
|
241 |
+
nggPluginCheck.failed(3);
|
242 |
+
}
|
243 |
+
});
|
244 |
+
},
|
245 |
+
|
246 |
+
start: function( id ) {
|
247 |
+
|
248 |
+
s = this.settings;
|
249 |
+
var field = "#check" + id;
|
250 |
+
|
251 |
+
if ( ul.find(field + " img").length == 0)
|
252 |
+
$(field).prepend( s.img_run );
|
253 |
+
else
|
254 |
+
$(field + " img").replaceWith( s.img_run );
|
255 |
+
|
256 |
+
$(field + " .success").hide();
|
257 |
+
$(field + " .failed").hide();
|
258 |
+
$(field + " .default").replaceWith('<p class="default message"><?php echo esc_js( __('Running...', 'nggallery') ); ?></p> ');
|
259 |
+
},
|
260 |
+
|
261 |
+
success: function( id, msg ) {
|
262 |
+
|
263 |
+
s = this.settings;
|
264 |
+
var field = "#check" + id;
|
265 |
+
|
266 |
+
if ( ul.find(field + " img").length == 0)
|
267 |
+
$(field).prepend( s.img_ok );
|
268 |
+
else
|
269 |
+
$(field + " img").replaceWith( s.img_ok );
|
270 |
+
|
271 |
+
$(field + " .default").hide();
|
272 |
+
if (msg)
|
273 |
+
$(field + " .success").replaceWith('<p class="success message">' + msg +' </p> ');
|
274 |
+
else
|
275 |
+
$(field + " .success").show();
|
276 |
+
|
277 |
+
},
|
278 |
+
|
279 |
+
failed: function( id, msg ) {
|
280 |
+
|
281 |
+
s = this.settings;
|
282 |
+
var field = "#check" + id;
|
283 |
+
|
284 |
+
if ( ul.find(field + " img").length == 0)
|
285 |
+
$(field).prepend( s.img_fail );
|
286 |
+
else
|
287 |
+
$(field + " img").replaceWith( s.img_fail );
|
288 |
+
|
289 |
+
$(field + " .default").hide();
|
290 |
+
if (msg)
|
291 |
+
$(field + " .failed").replaceWith('<p class="failed message">' + msg +' </p> ');
|
292 |
+
else
|
293 |
+
$(field + " .failed").show();
|
294 |
+
|
295 |
+
}
|
296 |
+
|
297 |
+
};
|
298 |
+
})(jQuery);
|
299 |
+
</script>
|
300 |
+
<div class="dashboard-widget-holder wp_dashboard_empty">
|
301 |
+
<div class="ngg-dashboard-widget">
|
302 |
+
<div class="dashboard-widget-content">
|
303 |
+
<ul id="plugin_check" class="settings">
|
304 |
+
<li id="check1">
|
305 |
+
<strong><?php _e('Check plugin/theme conflict', 'nggallery'); ?></strong>
|
306 |
+
<p class="default message"><?php _e('Not tested', 'nggallery'); ?></p>
|
307 |
+
<p class="success message" style="display: none;"><?php _e('No conflict could be detected', 'nggallery'); ?></p>
|
308 |
+
<p class="failed message" style="display: none;"><?php _e('Test failed, disable other plugins & switch to default theme', 'nggallery'); ?></p>
|
309 |
+
</li>
|
310 |
+
<li id="check2">
|
311 |
+
<strong><?php _e('Test image function', 'nggallery'); ?></strong>
|
312 |
+
<p class="default message"><?php _e('Not tested', 'nggallery'); ?></p>
|
313 |
+
<p class="success message" style="display: none;"><?php _e('The plugin could create images', 'nggallery'); ?></p>
|
314 |
+
<p class="failed message" style="display: none;"><?php _e('Couldn\'t create image, check your memory limit', 'nggallery'); ?></p>
|
315 |
+
</li>
|
316 |
+
<li id="check3">
|
317 |
+
<strong><?php _e('Check theme compatibility', 'nggallery'); ?></strong>
|
318 |
+
<p class="default message"><?php _e('Not tested', 'nggallery'); ?></p>
|
319 |
+
<p class="success message" style="display: none;"><?php _e('Your theme should work fine with NextGEN Gallery', 'nggallery'); ?></p>
|
320 |
+
<p class="failed message" style="display: none;"><?php _e('wp_head()/wp_footer() is missing, contact the theme author', 'nggallery'); ?></p>
|
321 |
+
</li>
|
322 |
+
</ul>
|
323 |
+
<p class="textright">
|
324 |
+
<input type="button" name="update" value="<?php _e('Check plugin', 'nggallery'); ?>" onclick="nggPluginCheck.run(1);" class="button-secondary" />
|
325 |
+
</p>
|
326 |
+
</div>
|
327 |
+
</div>
|
328 |
+
</div>
|
329 |
+
<?php
|
330 |
+
}
|
331 |
+
|
332 |
/**
|
333 |
* Show the server settings in a dashboard widget
|
334 |
*
|
admin/upload.php
CHANGED
@@ -6,6 +6,8 @@
|
|
6 |
* @subpackage Administration
|
7 |
*/
|
8 |
|
|
|
|
|
9 |
// look up for the path
|
10 |
require_once( dirname( dirname(__FILE__) ) . '/ngg-config.php');
|
11 |
|
6 |
* @subpackage Administration
|
7 |
*/
|
8 |
|
9 |
+
define('WP_ADMIN', true);
|
10 |
+
|
11 |
// look up for the path
|
12 |
require_once( dirname( dirname(__FILE__) ) . '/ngg-config.php');
|
13 |
|
changelog.txt
CHANGED
@@ -2,10 +2,18 @@ NextGEN Gallery
|
|
2 |
by Alex Rabe & NextGEN DEV Team
|
3 |
|
4 |
= V1.8.0 - sometimes =
|
5 |
-
* TODO : Adding Google Sitemaps for Images
|
6 |
* TODO : Facebook connector
|
7 |
* TODO : Switch to Plupload (http://www.plupload.com/)
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
= V1.7.2 - 13.12.2010 =
|
10 |
* Bugfix : Adding images to database require slug
|
11 |
|
2 |
by Alex Rabe & NextGEN DEV Team
|
3 |
|
4 |
= V1.8.0 - sometimes =
|
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.3 - 20.1.2011
|
10 |
+
* NEW : Introduce plugin health check for conflicts with other plugins/themes
|
11 |
+
* NEW : Adding new XMLRPC method ngg.deleteImage
|
12 |
+
* NEW : Adding new XMLRPC method ngg.editImage
|
13 |
+
* Changed : Rework register script for autocomplete feature
|
14 |
+
* Bugfix : Bugfix for Multisite setup and flash upload
|
15 |
+
* Bugfix : WP3.1 compat issue, show site admin page only on Multisite installation
|
16 |
+
|
17 |
= V1.7.2 - 13.12.2010 =
|
18 |
* Bugfix : Adding images to database require slug
|
19 |
|
lang/nggallery-de_DE.mo
CHANGED
Binary file
|
lang/nggallery-de_DE.po
CHANGED
@@ -2,14 +2,14 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: NextGEN Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Alex Rabe\n"
|
8 |
"Language-Team: Alex Rabe\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"X-Poedit-Country: GERMANY\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
@@ -18,65 +18,65 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
"X-Poedit-SearchPath-1: ..\n"
|
20 |
|
21 |
-
#: ../nggallery.php:
|
22 |
msgid "<strong>Translation by : </strong><a target=\"_blank\" href=\"http://alexrabe.de/wordpress-plugins/nextgen-gallery/languages/\">See here</a>"
|
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:
|
26 |
-
msgid "<strong>This translation is not yet updated for Version 1.7.
|
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:32
|
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 |
|
@@ -85,19 +85,19 @@ msgid "The <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player<
|
|
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:164
|
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 |
|
@@ -239,8 +239,8 @@ 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 |
|
@@ -380,8 +380,8 @@ msgstr "Aktiviere Flash Batch Upload"
|
|
380 |
|
381 |
#: ../admin/admin.php:31
|
382 |
#: ../admin/admin.php:57
|
383 |
-
#: ../admin/admin.php:
|
384 |
-
#: ../admin/admin.php:
|
385 |
#: ../admin/functions.php:178
|
386 |
#: ../admin/manage-galleries.php:120
|
387 |
#: ../admin/manage-galleries.php:372
|
@@ -463,102 +463,102 @@ msgstr "Unerwarteter Fehler"
|
|
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,6 +566,11 @@ msgstr "Aktuelle Version downloaden"
|
|
566 |
msgid "You are not allowed to be here"
|
567 |
msgstr "Keine Zugangsberechtigung"
|
568 |
|
|
|
|
|
|
|
|
|
|
|
569 |
#: ../admin/album.php:102
|
570 |
#: ../admin/album.php:117
|
571 |
#: ../admin/album.php:158
|
@@ -608,10 +613,6 @@ msgstr "Album ändern"
|
|
608 |
msgid "Delete"
|
609 |
msgstr "Lösche"
|
610 |
|
611 |
-
#: ../admin/album.php:302
|
612 |
-
msgid "Delete album ?"
|
613 |
-
msgstr "Album löschen ?"
|
614 |
-
|
615 |
#: ../admin/album.php:306
|
616 |
msgid "Add new album"
|
617 |
msgstr "Album hinzufügen"
|
@@ -766,7 +767,7 @@ msgstr "ist schreibgeschützt !"
|
|
766 |
|
767 |
#: ../admin/functions.php:76
|
768 |
#: ../admin/functions.php:85
|
769 |
-
#: ../admin/functions.php:
|
770 |
msgid "Unable to create directory "
|
771 |
msgstr "Kann Verzeichnis nicht erstellen "
|
772 |
|
@@ -812,7 +813,7 @@ msgid "successfully created!"
|
|
812 |
msgstr "erfolgreich erstellt!"
|
813 |
|
814 |
#: ../admin/functions.php:207
|
815 |
-
#: ../admin/functions.php:
|
816 |
#: ../admin/manage-galleries.php:74
|
817 |
#: ../admin/manage-galleries.php:141
|
818 |
#: ../admin/manage-images.php:202
|
@@ -853,157 +854,157 @@ msgstr "Datei existiert nicht"
|
|
853 |
msgid "Couldn't restore original image"
|
854 |
msgstr "Konnte Originalbild nicht wiederherstellen"
|
855 |
|
856 |
-
#: ../admin/functions.php:
|
857 |
msgid "(Error : Couldn't not update data base)"
|
858 |
msgstr "(Fehler : Konnte Datenbank nicht updaten)"
|
859 |
|
860 |
-
#: ../admin/functions.php:
|
861 |
msgid "(Error : Couldn't not update meta data)"
|
862 |
msgstr "(Fehler : Konnte Metadaten nicht speichern)"
|
863 |
|
864 |
-
#: ../admin/functions.php:
|
865 |
msgid "(Error : Couldn't not find image)"
|
866 |
msgstr "(Fehler : Konnte das Bild nicht finden)"
|
867 |
|
868 |
-
#: ../admin/functions.php:
|
869 |
msgid "No valid URL path "
|
870 |
msgstr "Kein gültiger URL-Pfad"
|
871 |
|
872 |
-
#: ../admin/functions.php:
|
873 |
msgid "Import via cURL failed."
|
874 |
msgstr "Import via cURL abgebrochen"
|
875 |
|
876 |
-
#: ../admin/functions.php:
|
877 |
msgid "Uploaded file was no or a faulty zip file ! The server recognized : "
|
878 |
msgstr "Die hochgeladene Datei war keine korrekte Zip-Datei. Servermeldung :"
|
879 |
|
880 |
-
#: ../admin/functions.php:
|
881 |
msgid "Could not get a valid foldername"
|
882 |
msgstr "Konnte keinen gültigen Verzeichnisnamen finden"
|
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 "Kann das Verzeichnis %s nicht erstellen. Ist das Hauptverzeichnis vielleicht schreibgeschützt ?"
|
888 |
|
889 |
-
#: ../admin/functions.php:
|
890 |
msgid "Zip-File successfully unpacked"
|
891 |
msgstr "Zip-Datei erfolgreich entpackt"
|
892 |
|
893 |
-
#: ../admin/functions.php:
|
894 |
-
#: ../admin/functions.php:
|
895 |
msgid "Failure in database, no gallery path set !"
|
896 |
msgstr "Datenbankfehler! Kein Galerie-Pfad gesetzt !"
|
897 |
|
898 |
-
#: ../admin/functions.php:
|
899 |
-
#: ../admin/functions.php:
|
900 |
msgid "is no valid image file!"
|
901 |
msgstr "ist keine zulässige Bilddatei !"
|
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 "Kann das Verzeichnis %s nicht erstellen. Ist das Hauptverzeichnis vielleicht schreibgeschützt ?"
|
909 |
|
910 |
-
#: ../admin/functions.php:
|
911 |
-
#: ../admin/functions.php:
|
912 |
msgid "Error, the file could not be moved to : "
|
913 |
msgstr "Fehler: Diese Datei kann nicht verschoben werden zu :"
|
914 |
|
915 |
-
#: ../admin/functions.php:
|
916 |
-
#: ../admin/functions.php:
|
917 |
msgid "Error, the file permissions could not be set"
|
918 |
msgstr "Fehler: Die Berechtigungen für diese Datei können nicht gesetzt werden"
|
919 |
|
920 |
-
#: ../admin/functions.php:
|
921 |
msgid " Image(s) successfully added"
|
922 |
msgstr " Bild(er) erfolgreich hinzugefügt"
|
923 |
|
924 |
-
#: ../admin/functions.php:
|
925 |
msgid "Invalid upload. Error Code : "
|
926 |
msgstr "Ungültiger Upload. Fehler Code :"
|
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 "SAFE MODE Einschränkungen ist aktiv. Du musst das Verzeichnis <strong>%s</strong> manuell anlegen."
|
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 "Wenn der Safe-Mode eingeschaltet ist, überprüft PHP, ob der Besitzer (%s) des Skript mit dem Besitzer (%s) der Datei/Verzeichnis übereinstimmt."
|
937 |
|
938 |
-
#: ../admin/functions.php:
|
939 |
-
#: ../admin/functions.php:
|
940 |
msgid "The destination gallery does not exist"
|
941 |
msgstr "Die ausgewählte Galerie existiert nicht"
|
942 |
|
943 |
-
#: ../admin/functions.php:
|
944 |
#, php-format
|
945 |
msgid "Failed to move image %1$s to %2$s"
|
946 |
msgstr "Konnte das Bild %1$s nicht nach %2$s verschieben"
|
947 |
|
948 |
-
#: ../admin/functions.php:
|
949 |
#, php-format
|
950 |
msgid "Moved %1$s picture(s) to gallery : %2$s ."
|
951 |
msgstr " %1$s Bild(er) in Galerie : %2$s verschoben."
|
952 |
|
953 |
-
#: ../admin/functions.php:
|
954 |
#, php-format
|
955 |
msgid "Failed to copy image %1$s to %2$s"
|
956 |
msgstr "Konnte das Bild %1$s nicht nach %2$s kopieren"
|
957 |
|
958 |
-
#: ../admin/functions.php:
|
959 |
#, php-format
|
960 |
msgid "Failed to copy database row for picture %s"
|
961 |
msgstr "Fehler bei der Datenbank-Operation für Bild %s"
|
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 "Bild %1$s (%2$s) als Bild %3$s (%4$s) kopiert » Die Datei existierte bereits."
|
967 |
|
968 |
-
#: ../admin/functions.php:
|
969 |
#, php-format
|
970 |
msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
|
971 |
msgstr "Bild %1$s (%2$s) kopiert als Bild %3$s (%4$s)"
|
972 |
|
973 |
-
#: ../admin/functions.php:
|
974 |
#, php-format
|
975 |
msgid "Copied %1$s picture(s) to gallery: %2$s ."
|
976 |
msgstr "Kopiere %1$s Bild(er) in die Galerie : %2$s ."
|
977 |
|
978 |
-
#: ../admin/functions.php:
|
979 |
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
|
980 |
msgstr "Die Datei überschreitet die erlaubte Grösse (upload_max_filesize) in der php.ini"
|
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 "Die Datei ist zu gross"
|
985 |
|
986 |
-
#: ../admin/functions.php:
|
987 |
msgid "The uploaded file was only partially uploaded"
|
988 |
msgstr "Die Datei wurde nur teilweise hochgeladen"
|
989 |
|
990 |
-
#: ../admin/functions.php:
|
991 |
msgid "No file was uploaded"
|
992 |
msgstr "Keinen Datei wurde geladen"
|
993 |
|
994 |
-
#: ../admin/functions.php:
|
995 |
msgid "Missing a temporary folder"
|
996 |
msgstr "Konnte temporäres Verzeichnis nicht finden"
|
997 |
|
998 |
-
#: ../admin/functions.php:
|
999 |
msgid "Failed to write file to disk"
|
1000 |
msgstr "Konnte Datei nicht speichern"
|
1001 |
|
1002 |
-
#: ../admin/functions.php:
|
1003 |
msgid "File upload stopped by extension"
|
1004 |
msgstr "Upload dieser Dateierweiterung nicht erlaubt"
|
1005 |
|
1006 |
-
#: ../admin/functions.php:
|
1007 |
msgid "Unknown upload error"
|
1008 |
msgstr "Unbekannter Uploadfehler"
|
1009 |
|
@@ -1482,34 +1483,84 @@ msgstr "Verstecke"
|
|
1482 |
msgid "Image ID:"
|
1483 |
msgstr "Bild ID:"
|
1484 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1485 |
#: ../admin/media-upload.php:274
|
1486 |
msgid "Save all changes"
|
1487 |
msgstr "Änderungen speichern"
|
1488 |
|
1489 |
-
#: ../admin/overview.php:
|
1490 |
msgid "NextGEN Gallery Overview"
|
1491 |
msgstr "NextGEN Gallery Übersicht"
|
1492 |
|
1493 |
-
#: ../admin/overview.php:
|
1494 |
msgid "Welcome to NextGEN Gallery !"
|
1495 |
msgstr "Willkomen bei NextGEN Gallery"
|
1496 |
|
1497 |
-
#: ../admin/overview.php:
|
1498 |
msgid "Do you like this Plugin?"
|
1499 |
msgstr "Bist Du mit dem Plugin zufrieden ?"
|
1500 |
|
1501 |
-
#: ../admin/overview.php:
|
1502 |
msgid "Translation"
|
1503 |
msgstr "Übersetzung"
|
1504 |
|
1505 |
-
#: ../admin/overview.php:
|
1506 |
msgid "Latest News"
|
1507 |
msgstr "Letzte Informationen"
|
1508 |
|
1509 |
-
#: ../admin/overview.php:
|
1510 |
msgid "Recent donators"
|
1511 |
msgstr "Neueste Spender"
|
1512 |
|
|
|
|
|
|
|
|
|
1513 |
#: ../admin/overview.php:94
|
1514 |
msgid "Server Settings"
|
1515 |
msgstr "Server- Einstellungen"
|
@@ -1539,205 +1590,255 @@ msgstr "Schau doch einfach auf meinen Wunschzettel."
|
|
1539 |
msgid "Help translating it."
|
1540 |
msgstr "Hilf das Plugin zu übersetzen."
|
1541 |
|
1542 |
-
#: ../admin/overview.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1543 |
msgid "Graphic Library"
|
1544 |
msgstr "Grafik-Bibliothek"
|
1545 |
|
1546 |
-
#: ../admin/overview.php:
|
1547 |
-
#: ../admin/overview.php:
|
1548 |
-
#: ../admin/overview.php:
|
1549 |
-
#: ../admin/overview.php:
|
1550 |
msgid "Loading…"
|
1551 |
msgstr "Lade…"
|
1552 |
|
1553 |
-
#: ../admin/overview.php:
|
1554 |
-
#: ../admin/overview.php:
|
1555 |
-
#: ../admin/overview.php:
|
1556 |
-
#: ../admin/overview.php:
|
1557 |
msgid "This widget requires JavaScript."
|
1558 |
msgstr "Dieses Widget braucht JavaScript."
|
1559 |
|
1560 |
-
#: ../admin/overview.php:
|
1561 |
msgid "Thanks to all donators..."
|
1562 |
msgstr "Danke an alle Spender..."
|
1563 |
|
1564 |
-
#: ../admin/overview.php:
|
1565 |
msgid "View all"
|
1566 |
msgstr "Alle ansehen"
|
1567 |
|
1568 |
-
#: ../admin/overview.php:
|
1569 |
#, php-format
|
1570 |
msgid "Newsfeed could not be loaded. Check the <a href=\"%s\">front page</a> to check for updates."
|
1571 |
msgstr "Der Newsfeed kann nicht geladen werden. Schaue auf die <a href=\"%s\">Hauptseite</a>, um Updates mitzubekommen."
|
1572 |
|
1573 |
-
#: ../admin/overview.php:
|
1574 |
msgid "Untitled"
|
1575 |
msgstr "Kein Titel"
|
1576 |
|
1577 |
-
#: ../admin/overview.php:
|
1578 |
msgid "At a Glance"
|
1579 |
msgstr "Übersicht"
|
1580 |
|
1581 |
-
#: ../admin/overview.php:
|
1582 |
msgid "Upload pictures"
|
1583 |
msgstr "Bilder hochladen"
|
1584 |
|
1585 |
-
#: ../admin/overview.php:
|
1586 |
msgid "Here you can control your images, galleries and albums."
|
1587 |
msgstr "Hier kannst Du die Bilder, Galerien und Alben verwalten."
|
1588 |
|
1589 |
-
#: ../admin/overview.php:
|
1590 |
msgid "Storage Space"
|
1591 |
msgstr "Speicherplatz"
|
1592 |
|
1593 |
-
#: ../admin/overview.php:
|
1594 |
#, php-format
|
1595 |
msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB</a>"
|
1596 |
msgstr "<a href=\"%1$s\" title=\"Verwalte Uploads\" class=\"musublink\">%2$sMB</a>"
|
1597 |
|
1598 |
-
#: ../admin/overview.php:
|
1599 |
msgid "Space Allowed"
|
1600 |
msgstr "Speicher verfügbar"
|
1601 |
|
1602 |
-
#: ../admin/overview.php:
|
1603 |
#, php-format
|
1604 |
msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB (%3$s%%)</a>"
|
1605 |
msgstr "<a href=\"%1$s\" title=\"Verwalte Uploads\" class=\"musublink\">%2$sMB (%3$s%%)</a>"
|
1606 |
|
1607 |
-
#: ../admin/overview.php:
|
1608 |
msgid "Space Used"
|
1609 |
msgstr "Verbrauchter Uploadspeicher"
|
1610 |
|
1611 |
-
#: ../admin/overview.php:
|
1612 |
msgid "Translation file successful updated. Please reload page."
|
1613 |
msgstr "Übersetzungsdatei aktualisiert. Bitte Seite neu laden."
|
1614 |
|
1615 |
-
#: ../admin/overview.php:
|
1616 |
msgid "Reload page"
|
1617 |
msgstr "Seite neu laden"
|
1618 |
|
1619 |
-
#: ../admin/overview.php:
|
1620 |
msgid "Translation file couldn't be updated"
|
1621 |
msgstr "Übersetzung konnte nicht aktualisiert werden"
|
1622 |
|
1623 |
-
#: ../admin/overview.php:
|
1624 |
msgid "Download"
|
1625 |
msgstr "Jetzt updaten"
|
1626 |
|
1627 |
-
#: ../admin/overview.php:
|
1628 |
msgid "No GD support"
|
1629 |
msgstr "Keine GD Unterstützung"
|
1630 |
|
1631 |
-
#: ../admin/overview.php:
|
1632 |
-
#: ../admin/overview.php:
|
1633 |
-
#: ../admin/overview.php:
|
1634 |
-
#: ../admin/overview.php:
|
1635 |
msgid "Yes"
|
1636 |
msgstr "Ja"
|
1637 |
|
1638 |
-
#: ../admin/overview.php:
|
1639 |
-
#: ../admin/overview.php:
|
1640 |
-
#: ../admin/overview.php:
|
1641 |
-
#: ../admin/overview.php:
|
1642 |
msgid "No"
|
1643 |
msgstr "Nein"
|
1644 |
|
1645 |
-
#: ../admin/overview.php:
|
1646 |
msgid "Not set"
|
1647 |
msgstr "Nicht gesetzt"
|
1648 |
|
1649 |
-
#: ../admin/overview.php:
|
1650 |
-
#: ../admin/overview.php:
|
1651 |
msgid "On"
|
1652 |
msgstr "An"
|
1653 |
|
1654 |
-
#: ../admin/overview.php:
|
1655 |
-
#: ../admin/overview.php:
|
1656 |
msgid "Off"
|
1657 |
msgstr "Aus"
|
1658 |
|
1659 |
-
#: ../admin/overview.php:
|
1660 |
-
#: ../admin/overview.php:
|
1661 |
-
#: ../admin/overview.php:
|
1662 |
-
#: ../admin/overview.php:
|
1663 |
-
#: ../admin/overview.php:
|
1664 |
-
#: ../admin/overview.php:
|
1665 |
msgid "N/A"
|
1666 |
msgstr "N/A"
|
1667 |
|
1668 |
-
#: ../admin/overview.php:
|
1669 |
msgid " MByte"
|
1670 |
msgstr " MByte"
|
1671 |
|
1672 |
-
#: ../admin/overview.php:
|
1673 |
msgid "Operating System"
|
1674 |
msgstr "Betriebssystem"
|
1675 |
|
1676 |
-
#: ../admin/overview.php:
|
1677 |
msgid "Server"
|
1678 |
msgstr "Server"
|
1679 |
|
1680 |
-
#: ../admin/overview.php:
|
1681 |
msgid "Memory usage"
|
1682 |
msgstr "Speicherverbrauch"
|
1683 |
|
1684 |
-
#: ../admin/overview.php:
|
1685 |
msgid "MYSQL Version"
|
1686 |
msgstr "MySQL Version"
|
1687 |
|
1688 |
-
#: ../admin/overview.php:
|
1689 |
msgid "SQL Mode"
|
1690 |
msgstr "SQL Modus"
|
1691 |
|
1692 |
-
#: ../admin/overview.php:
|
1693 |
msgid "PHP Version"
|
1694 |
msgstr "PHP Version"
|
1695 |
|
1696 |
-
#: ../admin/overview.php:
|
1697 |
msgid "PHP Safe Mode"
|
1698 |
msgstr "PHP Safe Mode"
|
1699 |
|
1700 |
-
#: ../admin/overview.php:
|
1701 |
msgid "PHP Allow URL fopen"
|
1702 |
msgstr "PHP Allow URL fopen"
|
1703 |
|
1704 |
-
#: ../admin/overview.php:
|
1705 |
msgid "PHP Memory Limit"
|
1706 |
msgstr "PHP Memory Limit"
|
1707 |
|
1708 |
-
#: ../admin/overview.php:
|
1709 |
msgid "PHP Max Upload Size"
|
1710 |
msgstr "PHP Max Upload Größe"
|
1711 |
|
1712 |
-
#: ../admin/overview.php:
|
1713 |
msgid "PHP Max Post Size"
|
1714 |
msgstr "PHP Max Post Größe"
|
1715 |
|
1716 |
-
#: ../admin/overview.php:
|
1717 |
msgid "PCRE Backtracking Limit"
|
1718 |
msgstr "PCRE Backtracking Limit"
|
1719 |
|
1720 |
-
#: ../admin/overview.php:
|
1721 |
msgid "PHP Max Script Execute Time"
|
1722 |
msgstr "PHP Max Script Execute Time"
|
1723 |
|
1724 |
-
#: ../admin/overview.php:
|
1725 |
msgid "PHP Exif support"
|
1726 |
msgstr "PHP Exif Modul"
|
1727 |
|
1728 |
-
#: ../admin/overview.php:
|
1729 |
msgid "PHP IPTC support"
|
1730 |
msgstr "PHP IPTC Modul"
|
1731 |
|
1732 |
-
#: ../admin/overview.php:
|
1733 |
msgid "PHP XML support"
|
1734 |
msgstr "PHP XML Modul"
|
1735 |
|
1736 |
-
#: ../admin/overview.php:
|
1737 |
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."
|
1738 |
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."
|
1739 |
|
1740 |
-
#: ../admin/overview.php:
|
1741 |
msgid "Install"
|
1742 |
msgstr "Installieren"
|
1743 |
|
@@ -1753,30 +1854,6 @@ msgstr "Artikelüberschrift "
|
|
1753 |
msgid "Size of the image"
|
1754 |
msgstr "Größe des Bildes"
|
1755 |
|
1756 |
-
#: ../admin/publish.php:55
|
1757 |
-
msgid "Alignment"
|
1758 |
-
msgstr "Ausrichtung"
|
1759 |
-
|
1760 |
-
#: ../admin/publish.php:57
|
1761 |
-
#: ../admin/settings.php:476
|
1762 |
-
msgid "None"
|
1763 |
-
msgstr "Keiner"
|
1764 |
-
|
1765 |
-
#: ../admin/publish.php:59
|
1766 |
-
#: ../admin/tinymce/window.php:120
|
1767 |
-
msgid "Left"
|
1768 |
-
msgstr "Links"
|
1769 |
-
|
1770 |
-
#: ../admin/publish.php:61
|
1771 |
-
#: ../admin/tinymce/window.php:121
|
1772 |
-
msgid "Center"
|
1773 |
-
msgstr "Zentrieren"
|
1774 |
-
|
1775 |
-
#: ../admin/publish.php:63
|
1776 |
-
#: ../admin/tinymce/window.php:122
|
1777 |
-
msgid "Right"
|
1778 |
-
msgstr "Rechts"
|
1779 |
-
|
1780 |
#: ../admin/publish.php:70
|
1781 |
msgid "Draft"
|
1782 |
msgstr "Entwurf"
|
@@ -1861,589 +1938,585 @@ msgstr "Horizontal spiegeln"
|
|
1861 |
msgid "Cache cleared"
|
1862 |
msgstr "Cache löschen"
|
1863 |
|
1864 |
-
#: ../admin/settings.php:
|
1865 |
-
#: ../admin/settings.php:
|
1866 |
msgid "General Options"
|
1867 |
msgstr "Allg. Optionen"
|
1868 |
|
1869 |
-
#: ../admin/settings.php:
|
1870 |
-
#: ../admin/settings.php:
|
1871 |
msgid "Thumbnails"
|
1872 |
msgstr "Thumbnails"
|
1873 |
|
1874 |
-
#: ../admin/settings.php:
|
1875 |
msgid "Images"
|
1876 |
msgstr "Bilder"
|
1877 |
|
1878 |
-
#: ../admin/settings.php:
|
1879 |
-
#: ../admin/settings.php:
|
1880 |
msgid "Effects"
|
1881 |
msgstr "Effekte"
|
1882 |
|
1883 |
-
#: ../admin/settings.php:
|
1884 |
-
#: ../admin/settings.php:
|
1885 |
#: ../admin/tinymce/window.php:110
|
1886 |
msgid "Watermark"
|
1887 |
msgstr "Wasserzeichen"
|
1888 |
|
1889 |
-
#: ../admin/settings.php:
|
1890 |
-
#: ../admin/settings.php:
|
1891 |
-
#: ../admin/settings.php:
|
1892 |
#: ../admin/tinymce/window.php:63
|
1893 |
msgid "Slideshow"
|
1894 |
msgstr "Slideshow"
|
1895 |
|
1896 |
-
#: ../admin/settings.php:
|
1897 |
#: ../admin/wpmu.php:68
|
1898 |
msgid "Gallery path"
|
1899 |
msgstr "Galerie-Pfad"
|
1900 |
|
1901 |
-
#: ../admin/settings.php:
|
1902 |
msgid "This is the default path for all galleries"
|
1903 |
msgstr "Dies ist der Standard-Pfad für alle Galerien"
|
1904 |
|
1905 |
-
#: ../admin/settings.php:
|
1906 |
msgid "Delete image files"
|
1907 |
msgstr "Lösche Bilddateien"
|
1908 |
|
1909 |
-
#: ../admin/settings.php:
|
1910 |
msgid "Delete files, when removing a gallery in the database"
|
1911 |
msgstr "Löscht auch die Dateien, falls die Galerie aus der Datenbank entfernt wird"
|
1912 |
|
1913 |
-
#: ../admin/settings.php:
|
1914 |
msgid "Activate permalinks"
|
1915 |
msgstr "Aktiviere Permalinks"
|
1916 |
|
1917 |
-
#: ../admin/settings.php:
|
1918 |
msgid "When you activate this option, you need to update your permalink structure one time."
|
1919 |
msgstr "Wenn Du diese Option aktivierst, muss Du einmal die Permalink Struktur aktualisieren."
|
1920 |
|
1921 |
-
#: ../admin/settings.php:
|
1922 |
msgid "Create new URL friendly image slugs"
|
1923 |
msgstr "Erstelle neue URL lesbare Schlagwörter "
|
1924 |
|
1925 |
-
#: ../admin/settings.php:
|
1926 |
-
#: ../admin/settings.php:
|
1927 |
msgid "Proceed now"
|
1928 |
msgstr "Jetzt durchführen"
|
1929 |
|
1930 |
-
#: ../admin/settings.php:
|
1931 |
msgid "Currently not used, prepare database for upcoming version"
|
1932 |
msgstr "Derzeit nicht genutzt, Vorbereitung für kommende Versionen"
|
1933 |
|
1934 |
-
#: ../admin/settings.php:
|
1935 |
msgid "Select graphic library"
|
1936 |
msgstr "Wähle Grafik-Bibliothek"
|
1937 |
|
1938 |
-
#: ../admin/settings.php:
|
1939 |
msgid "GD Library"
|
1940 |
msgstr "GD Bibliothek"
|
1941 |
|
1942 |
-
#: ../admin/settings.php:
|
1943 |
msgid "ImageMagick (Experimental). Path to the library :"
|
1944 |
msgstr "ImageMagick (Experimental). Pfad zur Bibliothek :"
|
1945 |
|
1946 |
-
#: ../admin/settings.php:
|
1947 |
msgid "Activate Media RSS feed"
|
1948 |
msgstr "Aktiviere Media-RSS-Feed"
|
1949 |
|
1950 |
-
#: ../admin/settings.php:
|
1951 |
msgid "A RSS feed will be added to you blog header. Useful for CoolIris/PicLens"
|
1952 |
msgstr "Ein Bilder-RSS Feed wird zum Blog hinzugefügt"
|
1953 |
|
1954 |
-
#: ../admin/settings.php:
|
1955 |
msgid "Activate PicLens/CoolIris support"
|
1956 |
msgstr "Aktiviere PicLens/CoolIris"
|
1957 |
|
1958 |
-
#: ../admin/settings.php:
|
1959 |
msgid "When you activate this option, some javascript is added to your site footer. Make sure that wp_footer is called in your theme."
|
1960 |
msgstr "Dieser Effekt fügt ein neues Javascript zu Deinem Theme hinzu. Beachte, dass wp_footer() in Deinen Vorlagen aufgerufen wird."
|
1961 |
|
1962 |
-
#: ../admin/settings.php:
|
1963 |
msgid "Tags / Categories"
|
1964 |
msgstr "Stichwörter / Kategorien"
|
1965 |
|
1966 |
-
#: ../admin/settings.php:
|
1967 |
msgid "Activate related images"
|
1968 |
msgstr "Verwandte Bilder anzeigen"
|
1969 |
|
1970 |
-
#: ../admin/settings.php:
|
1971 |
msgid "This option will append related images to every post"
|
1972 |
msgstr "Diese Option hängt verwandte Bilder an jeden Beitrag"
|
1973 |
|
1974 |
-
#: ../admin/settings.php:
|
1975 |
msgid "Match with"
|
1976 |
msgstr "Vergleiche mit"
|
1977 |
|
1978 |
-
#: ../admin/settings.php:
|
1979 |
msgid "Categories"
|
1980 |
msgstr "Kategorien"
|
1981 |
|
1982 |
-
#: ../admin/settings.php:
|
1983 |
msgid "Max. number of images"
|
1984 |
msgstr "Max. Anzahl der Bilder"
|
1985 |
|
1986 |
-
#: ../admin/settings.php:
|
1987 |
msgid "0 will show all images"
|
1988 |
msgstr "0 zeige alle verwandten Bilder"
|
1989 |
|
1990 |
-
#: ../admin/settings.php:
|
1991 |
-
#: ../admin/settings.php:
|
1992 |
-
#: ../admin/settings.php:
|
1993 |
-
#: ../admin/settings.php:
|
1994 |
-
#: ../admin/settings.php:
|
1995 |
-
#: ../admin/settings.php:
|
1996 |
msgid "More settings"
|
1997 |
msgstr "Mehr Einstellungen"
|
1998 |
|
1999 |
-
#: ../admin/settings.php:
|
2000 |
msgid "Thumbnail settings"
|
2001 |
msgstr "Thumbnail-Einstellungen"
|
2002 |
|
2003 |
-
#: ../admin/settings.php:
|
2004 |
msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
|
2005 |
msgstr "Bitte beachten : Änderungen der Einstellungen werden erst übernommen, wenn Du neue Thumbnails unter -> \"Gallery verwalten\" erstellst"
|
2006 |
|
2007 |
-
#: ../admin/settings.php:
|
2008 |
msgid "Thumbnail quality"
|
2009 |
msgstr "Thumbnail Qualität"
|
2010 |
|
2011 |
-
#: ../admin/settings.php:
|
2012 |
msgid "Image settings"
|
2013 |
msgstr "Bild-Einstellungen"
|
2014 |
|
2015 |
-
#: ../admin/settings.php:
|
2016 |
msgid "Resize Images"
|
2017 |
msgstr "Bilder verkleinern"
|
2018 |
|
2019 |
-
#: ../admin/settings.php:
|
2020 |
msgid "Image quality"
|
2021 |
msgstr "Bild Qualität"
|
2022 |
|
2023 |
-
#: ../admin/settings.php:
|
2024 |
msgid "Backup original images"
|
2025 |
msgstr "Backup von Original-Bildern "
|
2026 |
|
2027 |
-
#: ../admin/settings.php:
|
2028 |
msgid "Creates a backup for inserted images"
|
2029 |
msgstr "Backup der Bilder anlegen"
|
2030 |
|
2031 |
-
#: ../admin/settings.php:
|
2032 |
msgid "Automatically resize"
|
2033 |
msgstr "Grösse automatisch anpassen"
|
2034 |
|
2035 |
-
#: ../admin/settings.php:
|
2036 |
msgid "Automatically resize images on upload."
|
2037 |
msgstr "Passt die Grösse automatisch beim Upload an"
|
2038 |
|
2039 |
-
#: ../admin/settings.php:
|
2040 |
msgid "Single picture"
|
2041 |
msgstr "Einzelbilder"
|
2042 |
|
2043 |
-
#: ../admin/settings.php:
|
2044 |
msgid "Cache single pictures"
|
2045 |
msgstr "Nutze Cache für Einzelbilder"
|
2046 |
|
2047 |
-
#: ../admin/settings.php:
|
2048 |
msgid "Creates a file for each singlepic settings. Reduce the CPU load"
|
2049 |
msgstr "Erstellt ein Cache-Bild für jedes Einzelbild (singlepic). Reduziert die CPU Belastung."
|
2050 |
|
2051 |
-
#: ../admin/settings.php:
|
2052 |
msgid "Clear cache folder"
|
2053 |
msgstr "Lösche Cache-Verzeichnis"
|
2054 |
|
2055 |
-
#: ../admin/settings.php:
|
2056 |
msgid "Deactivate gallery page link"
|
2057 |
msgstr "Keine Seitenverzweigung"
|
2058 |
|
2059 |
-
#: ../admin/settings.php:
|
2060 |
msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
|
2061 |
msgstr "Ein Album benötigt dann keinen Link zur Seite. Die Galerie wird direkt angezeigt."
|
2062 |
|
2063 |
-
#: ../admin/settings.php:
|
2064 |
msgid "Number of images per page"
|
2065 |
msgstr "Anzahl der Bilder pro Seite"
|
2066 |
|
2067 |
-
#: ../admin/settings.php:
|
2068 |
msgid "0 will disable pagination, all images on one page"
|
2069 |
msgstr "0 schaltet Blätterfunktion ab ( = alle Bilder auf einer Seite )"
|
2070 |
|
2071 |
-
#: ../admin/settings.php:
|
2072 |
msgid "Number of columns"
|
2073 |
msgstr "Anzahl der Spalten"
|
2074 |
|
2075 |
-
#: ../admin/settings.php:
|
2076 |
msgid "0 will display as much as possible based on the width of your theme. Setting normally only required for captions below the images"
|
2077 |
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."
|
2078 |
|
2079 |
-
#: ../admin/settings.php:
|
2080 |
msgid "Integrate slideshow"
|
2081 |
msgstr "Slideshow verwenden"
|
2082 |
|
2083 |
-
#: ../admin/settings.php:
|
2084 |
msgid "Show first"
|
2085 |
msgstr "Zeige als Erstes"
|
2086 |
|
2087 |
-
#: ../admin/settings.php:
|
2088 |
msgid "Show ImageBrowser"
|
2089 |
msgstr "Zeige Bilder-Browser"
|
2090 |
|
2091 |
-
#: ../admin/settings.php:
|
2092 |
msgid "The gallery will open the ImageBrowser instead the effect."
|
2093 |
msgstr "Es wird der Bilder-Browser angezeigt (Kein JavaScript Effekt)"
|
2094 |
|
2095 |
-
#: ../admin/settings.php:
|
2096 |
msgid "Add hidden images"
|
2097 |
msgstr "Versteckte Bilder hinzufügen"
|
2098 |
|
2099 |
-
#: ../admin/settings.php:
|
2100 |
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"
|
2101 |
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."
|
2102 |
|
2103 |
-
#: ../admin/settings.php:
|
2104 |
msgid "Enable AJAX pagination"
|
2105 |
msgstr "Aktiviere AJAX-Navigation"
|
2106 |
|
2107 |
-
#: ../admin/settings.php:
|
2108 |
msgid "Browse images without reload the page. Note : Works only in combination with Shutter effect"
|
2109 |
msgstr "Ermöglicht das Blättern zwischen den Bildern ohne die Seite neu zu laden. Hinweis : Funktioniert nur mit dem Shutter-Effekt."
|
2110 |
|
2111 |
-
#: ../admin/settings.php:
|
2112 |
msgid "Sort options"
|
2113 |
msgstr "Sortierung"
|
2114 |
|
2115 |
-
#: ../admin/settings.php:
|
2116 |
msgid "Sort thumbnails"
|
2117 |
msgstr "Thumbnails sortieren"
|
2118 |
|
2119 |
-
#: ../admin/settings.php:
|
2120 |
msgid "Custom order"
|
2121 |
msgstr "Benutzerdefiniert"
|
2122 |
|
2123 |
-
#: ../admin/settings.php:
|
2124 |
msgid "File name"
|
2125 |
msgstr "Dateiname"
|
2126 |
|
2127 |
-
#: ../admin/settings.php:
|
2128 |
msgid "Alt / Title text"
|
2129 |
msgstr "Alt / Titel Text"
|
2130 |
|
2131 |
-
#: ../admin/settings.php:
|
2132 |
msgid "Date / Time"
|
2133 |
msgstr "Datum/Zeit"
|
2134 |
|
2135 |
-
#: ../admin/settings.php:
|
2136 |
msgid "Sort direction"
|
2137 |
msgstr "Sortierreihenfolge"
|
2138 |
|
2139 |
-
#: ../admin/settings.php:
|
2140 |
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."
|
2141 |
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)."
|
2142 |
|
2143 |
-
#: ../admin/settings.php:
|
2144 |
msgid "With the placeholder"
|
2145 |
msgstr "Mit Platzhalter"
|
2146 |
|
2147 |
-
#: ../admin/settings.php:
|
2148 |
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."
|
2149 |
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."
|
2150 |
|
2151 |
-
#: ../admin/settings.php:
|
2152 |
msgid "JavaScript Thumbnail effect"
|
2153 |
msgstr "JavaScript Thumbnail Effekt"
|
2154 |
|
2155 |
-
#: ../admin/settings.php:
|
2156 |
msgid "Thickbox"
|
2157 |
msgstr "Thickbox"
|
2158 |
|
2159 |
-
#: ../admin/settings.php:
|
2160 |
msgid "Lightbox"
|
2161 |
msgstr "Lightbox"
|
2162 |
|
2163 |
-
#: ../admin/settings.php:
|
2164 |
msgid "Highslide"
|
2165 |
msgstr "Highslide"
|
2166 |
|
2167 |
-
#: ../admin/settings.php:
|
2168 |
msgid "Shutter"
|
2169 |
msgstr "Shutter"
|
2170 |
|
2171 |
-
#: ../admin/settings.php:
|
2172 |
msgid "Custom"
|
2173 |
msgstr "Eigener"
|
2174 |
|
2175 |
-
#: ../admin/settings.php:
|
2176 |
msgid "Link Code line"
|
2177 |
msgstr "Link-Code-Zeile"
|
2178 |
|
2179 |
-
#: ../admin/settings.php:
|
2180 |
msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
|
2181 |
msgstr "Bitte beachten : Das Wasserzeichen kann nur unter der Galerieverwaltung gesetzt werden. "
|
2182 |
|
2183 |
-
#: ../admin/settings.php:
|
2184 |
msgid "Preview"
|
2185 |
msgstr "Vorschau"
|
2186 |
|
2187 |
-
#: ../admin/settings.php:
|
2188 |
-
#: ../admin/settings.php:
|
2189 |
msgid "Position"
|
2190 |
msgstr "Position"
|
2191 |
|
2192 |
-
#: ../admin/settings.php:
|
2193 |
msgid "Offset"
|
2194 |
msgstr "Abstand"
|
2195 |
|
2196 |
-
#: ../admin/settings.php:
|
2197 |
msgid "Use image as watermark"
|
2198 |
msgstr "Benutze das Bild als Wasserzeichen"
|
2199 |
|
2200 |
-
#: ../admin/settings.php:
|
2201 |
msgid "URL to file"
|
2202 |
msgstr "URL zur Datei"
|
2203 |
|
2204 |
-
#: ../admin/settings.php:
|
2205 |
msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
|
2206 |
msgstr "Der Dateizugriff von URLs ist auf diesem Server deaktiviert (allow_url_fopen)"
|
2207 |
|
2208 |
-
#: ../admin/settings.php:
|
2209 |
msgid "Use text as watermark"
|
2210 |
msgstr "Benutze Text als Wasserzeichen"
|
2211 |
|
2212 |
-
#: ../admin/settings.php:
|
2213 |
msgid "Font"
|
2214 |
msgstr "Schriftart"
|
2215 |
|
2216 |
-
#: ../admin/settings.php:
|
2217 |
msgid "This function will not work, cause you need the FreeType library"
|
2218 |
msgstr "Diese Funktion benötigt die FreeType-Bibliothek"
|
2219 |
|
2220 |
-
#: ../admin/settings.php:
|
2221 |
msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
|
2222 |
msgstr "Du kannst mehr Schriftarten in das Verzeichniss <strong>nggallery/fonts</strong> hochladen."
|
2223 |
|
2224 |
-
#: ../admin/settings.php:
|
2225 |
-
msgid "Size"
|
2226 |
-
msgstr "Größe"
|
2227 |
-
|
2228 |
-
#: ../admin/settings.php:587
|
2229 |
msgid "Color"
|
2230 |
msgstr "Farbe"
|
2231 |
|
2232 |
-
#: ../admin/settings.php:
|
2233 |
msgid "(hex w/o #)"
|
2234 |
msgstr "(hex w/o #)"
|
2235 |
|
2236 |
-
#: ../admin/settings.php:
|
2237 |
msgid "Text"
|
2238 |
msgstr "Text"
|
2239 |
|
2240 |
-
#: ../admin/settings.php:
|
2241 |
msgid "Opaque"
|
2242 |
msgstr "Transparenz"
|
2243 |
|
2244 |
-
#: ../admin/settings.php:
|
2245 |
msgid "Default size (W x H)"
|
2246 |
msgstr "Standard Größe (B x H)"
|
2247 |
|
2248 |
-
#: ../admin/settings.php:
|
2249 |
msgid "Duration time"
|
2250 |
msgstr "Dauer"
|
2251 |
|
2252 |
-
#: ../admin/settings.php:
|
2253 |
msgid "sec."
|
2254 |
msgstr "Sek."
|
2255 |
|
2256 |
-
#: ../admin/settings.php:
|
2257 |
-
#: ../admin/settings.php:
|
2258 |
msgid "Transition / Fade effect"
|
2259 |
msgstr "Fade Effekt"
|
2260 |
|
2261 |
-
#: ../admin/settings.php:
|
2262 |
-
#: ../admin/settings.php:
|
2263 |
msgid "fade"
|
2264 |
msgstr "Fade"
|
2265 |
|
2266 |
-
#: ../admin/settings.php:
|
2267 |
msgid "blindX"
|
2268 |
msgstr "blindX"
|
2269 |
|
2270 |
-
#: ../admin/settings.php:
|
2271 |
msgid "cover"
|
2272 |
msgstr "Blenden"
|
2273 |
|
2274 |
-
#: ../admin/settings.php:
|
2275 |
msgid "scrollUp"
|
2276 |
msgstr "ScrollUp"
|
2277 |
|
2278 |
-
#: ../admin/settings.php:
|
2279 |
msgid "scrollDown"
|
2280 |
msgstr "ScrollDown"
|
2281 |
|
2282 |
-
#: ../admin/settings.php:
|
2283 |
msgid "shuffle"
|
2284 |
msgstr "Shuffle"
|
2285 |
|
2286 |
-
#: ../admin/settings.php:
|
2287 |
msgid "toss"
|
2288 |
msgstr "Schüttel"
|
2289 |
|
2290 |
-
#: ../admin/settings.php:
|
2291 |
msgid "wipe"
|
2292 |
msgstr "wischen"
|
2293 |
|
2294 |
-
#: ../admin/settings.php:
|
2295 |
msgid "See here for more information about the effects :"
|
2296 |
msgstr "Hier bekommst du mehr Informationen über die Effekte :"
|
2297 |
|
2298 |
-
#: ../admin/settings.php:
|
2299 |
msgid "Settings for the JW Image Rotator"
|
2300 |
msgstr "JW-Image-Rotator Einstellungen"
|
2301 |
|
2302 |
-
#: ../admin/settings.php:
|
2303 |
msgid "The settings are only used in the JW Image Rotator Version"
|
2304 |
msgstr "Die Einstellungen werden im JW-Image-Rotator benutzt, in der Version"
|
2305 |
|
2306 |
-
#: ../admin/settings.php:
|
2307 |
msgid "See more information for the Flash Player on the web page"
|
2308 |
msgstr "Weitere Informationen auf der Flash-Player-Homepage"
|
2309 |
|
2310 |
-
#: ../admin/settings.php:
|
2311 |
msgid "The path to imagerotator.swf is not defined, the slideshow will not work."
|
2312 |
msgstr "Der Pfad zu imagerotator.swf ist nicht gesetzt, die Flash-Diaschau kann dann nicht angezeigt werden"
|
2313 |
|
2314 |
-
#: ../admin/settings.php:
|
2315 |
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)."
|
2316 |
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),"
|
2317 |
|
2318 |
-
#: ../admin/settings.php:
|
2319 |
msgid "Enable flash slideshow"
|
2320 |
msgstr "Aktiviere Flash Slideshow"
|
2321 |
|
2322 |
-
#: ../admin/settings.php:
|
2323 |
msgid "Integrate the flash based slideshow for all flash supported devices"
|
2324 |
msgstr "Verwende die Flash Slideshow für alle Flash-unterstützte Geräte"
|
2325 |
|
2326 |
-
#: ../admin/settings.php:
|
2327 |
msgid "Path to the Imagerotator (URL)"
|
2328 |
msgstr "Pfad zum JW-Image-Rotator (URL)"
|
2329 |
|
2330 |
-
#: ../admin/settings.php:
|
2331 |
msgid "Search now"
|
2332 |
msgstr "Suche jetzt"
|
2333 |
|
2334 |
-
#: ../admin/settings.php:
|
2335 |
msgid "Press the button to search automatically for the imagerotator, if you uploaded it to wp-content/uploads or a subfolder"
|
2336 |
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."
|
2337 |
|
2338 |
-
#: ../admin/settings.php:
|
2339 |
msgid "Shuffle mode"
|
2340 |
msgstr "Shuffle Modus"
|
2341 |
|
2342 |
-
#: ../admin/settings.php:
|
2343 |
msgid "Show next image on click"
|
2344 |
msgstr "Zeige nächstes Bild bei Klick"
|
2345 |
|
2346 |
-
#: ../admin/settings.php:
|
2347 |
msgid "Show navigation bar"
|
2348 |
msgstr "Zeige Navigations-Leiste"
|
2349 |
|
2350 |
-
#: ../admin/settings.php:
|
2351 |
msgid "Show loading icon"
|
2352 |
msgstr "Zeige Lade-Bildchen"
|
2353 |
|
2354 |
-
#: ../admin/settings.php:
|
2355 |
msgid "Use watermark logo"
|
2356 |
msgstr "Wasserzeichen anzeigen"
|
2357 |
|
2358 |
-
#: ../admin/settings.php:
|
2359 |
msgid "You can change the logo at the watermark settings"
|
2360 |
msgstr "Du kannst den Pfad in Einstellungen für das Wasserzeichen angeben"
|
2361 |
|
2362 |
-
#: ../admin/settings.php:
|
2363 |
msgid "Stretch image"
|
2364 |
msgstr "Bild dehnen"
|
2365 |
|
2366 |
-
#: ../admin/settings.php:
|
2367 |
msgid "true"
|
2368 |
msgstr "Ja"
|
2369 |
|
2370 |
-
#: ../admin/settings.php:
|
2371 |
msgid "false"
|
2372 |
msgstr "Nein"
|
2373 |
|
2374 |
-
#: ../admin/settings.php:
|
2375 |
msgid "fit"
|
2376 |
msgstr "Passend"
|
2377 |
|
2378 |
-
#: ../admin/settings.php:
|
2379 |
msgid "none"
|
2380 |
msgstr "keiner"
|
2381 |
|
2382 |
-
#: ../admin/settings.php:
|
2383 |
msgid "bgfade"
|
2384 |
msgstr "BGFade"
|
2385 |
|
2386 |
-
#: ../admin/settings.php:
|
2387 |
msgid "slowfade"
|
2388 |
msgstr "Slowfade"
|
2389 |
|
2390 |
-
#: ../admin/settings.php:
|
2391 |
msgid "circles"
|
2392 |
msgstr "Kreise"
|
2393 |
|
2394 |
-
#: ../admin/settings.php:
|
2395 |
msgid "bubbles"
|
2396 |
msgstr "Blasen"
|
2397 |
|
2398 |
-
#: ../admin/settings.php:
|
2399 |
msgid "blocks"
|
2400 |
msgstr "Blöcke"
|
2401 |
|
2402 |
-
#: ../admin/settings.php:
|
2403 |
msgid "fluids"
|
2404 |
msgstr "Fluids"
|
2405 |
|
2406 |
-
#: ../admin/settings.php:
|
2407 |
msgid "flash"
|
2408 |
msgstr "Flash"
|
2409 |
|
2410 |
-
#: ../admin/settings.php:
|
2411 |
msgid "lines"
|
2412 |
msgstr "Linien"
|
2413 |
|
2414 |
-
#: ../admin/settings.php:
|
2415 |
msgid "random"
|
2416 |
msgstr "Zufall"
|
2417 |
|
2418 |
-
#: ../admin/settings.php:
|
2419 |
msgid "Use slow zooming effect"
|
2420 |
msgstr "nutze Zoom-Effekt"
|
2421 |
|
2422 |
-
#: ../admin/settings.php:
|
2423 |
msgid "Background Color"
|
2424 |
msgstr "Hintergrund (BG) Farbe"
|
2425 |
|
2426 |
-
#: ../admin/settings.php:
|
2427 |
msgid "Texts / Buttons Color"
|
2428 |
msgstr "Text- / Button Farbe"
|
2429 |
|
2430 |
-
#: ../admin/settings.php:
|
2431 |
msgid "Rollover / Active Color"
|
2432 |
msgstr "Rollover / Aktiv (Link) Farbe"
|
2433 |
|
2434 |
-
#: ../admin/settings.php:
|
2435 |
msgid "Screen Color"
|
2436 |
msgstr "Seiten-Farbe"
|
2437 |
|
2438 |
-
#: ../admin/settings.php:
|
2439 |
msgid "Background music (URL)"
|
2440 |
msgstr "Hintergrundmusik (URL)"
|
2441 |
|
2442 |
-
#: ../admin/settings.php:
|
2443 |
msgid "Try XHTML validation (with CDATA)"
|
2444 |
msgstr "Integriere XHTML-Validierung (mittels CDATA)"
|
2445 |
|
2446 |
-
#: ../admin/settings.php:
|
2447 |
msgid "Important : Could causes problem at some browser. Please recheck your page."
|
2448 |
msgstr "Wichtig : Es könnten Probleme bei einigen Browser entstehen. Unbedingt Seite danach prüfen."
|
2449 |
|
@@ -2813,22 +2886,22 @@ msgstr "Upgrade beendet..."
|
|
2813 |
msgid "Continue"
|
2814 |
msgstr "Weiter"
|
2815 |
|
2816 |
-
#: ../admin/upgrade.php:
|
2817 |
#, php-format
|
2818 |
msgid "Rebuild image structure : %s / %s images"
|
2819 |
msgstr "Erzeuge Permalinks für Bilder : %s / %s Bilder"
|
2820 |
|
2821 |
-
#: ../admin/upgrade.php:
|
2822 |
#, php-format
|
2823 |
msgid "Rebuild gallery structure : %s / %s galleries"
|
2824 |
msgstr "Erzeuge Permalinks für Galerien : %s / %s Galerien"
|
2825 |
|
2826 |
-
#: ../admin/upgrade.php:
|
2827 |
#, php-format
|
2828 |
msgid "Rebuild album structure : %s / %s albums"
|
2829 |
msgstr "Erzeuge Permalinks für Alben : %s / %s Alben"
|
2830 |
|
2831 |
-
#: ../admin/upgrade.php:
|
2832 |
msgid "Done."
|
2833 |
msgstr "Fertig."
|
2834 |
|
@@ -3199,92 +3272,105 @@ msgstr "Kein Stichwort geändert"
|
|
3199 |
msgid "%s slug(s) edited."
|
3200 |
msgstr "%s Stichwörter geändert"
|
3201 |
|
3202 |
-
#: ../lib/xmlrpc.php:
|
3203 |
#, php-format
|
3204 |
msgid "XML-RPC services are disabled on this blog. An admin user can enable them at %s"
|
3205 |
msgstr "XML-RPC Service ist ausgeschaltet. Der Administrator kann es hier %s einschalten"
|
3206 |
|
3207 |
-
#: ../lib/xmlrpc.php:
|
3208 |
msgid "Bad login/pass combination."
|
3209 |
msgstr "Username/Password falsch"
|
3210 |
|
3211 |
-
#: ../lib/xmlrpc.php:
|
3212 |
msgid "You are not allowed to upload files to this site."
|
3213 |
msgstr "Du hast keine Berechtigung, Bilder hochzuladen"
|
3214 |
|
3215 |
-
#: ../lib/xmlrpc.php:
|
3216 |
-
#: ../lib/xmlrpc.php:
|
3217 |
msgid "Could not find gallery "
|
3218 |
msgstr "Konnte Galerie nicht finden"
|
3219 |
|
3220 |
-
#: ../lib/xmlrpc.php:
|
3221 |
-
#: ../lib/xmlrpc.php:
|
3222 |
msgid "You are not allowed to upload files to this gallery."
|
3223 |
msgstr "Du hast keine Berechtigung, Bilder in diese Galerie zuladen"
|
3224 |
|
3225 |
-
#: ../lib/xmlrpc.php:
|
3226 |
msgid "This is no valid image file."
|
3227 |
msgstr "Das ist keine zulässige Bilddatei!"
|
3228 |
|
3229 |
-
#: ../lib/xmlrpc.php:
|
3230 |
msgid "Could not find image id "
|
3231 |
msgstr "Konnte die Bild-ID nicht finden"
|
3232 |
|
3233 |
-
#: ../lib/xmlrpc.php:
|
3234 |
#, php-format
|
3235 |
msgid "Failed to delete image %1$s "
|
3236 |
msgstr "Konnte das Bild %1$s nicht löschen"
|
3237 |
|
3238 |
-
#: ../lib/xmlrpc.php:
|
3239 |
#, php-format
|
3240 |
msgid "Could not write file %1$s (%2$s)"
|
3241 |
msgstr "Konnte die Datei %1$s (%2$s) nicht schreiben "
|
3242 |
|
3243 |
-
#: ../lib/xmlrpc.php:
|
3244 |
-
#: ../lib/xmlrpc.php:
|
3245 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3246 |
msgid "Sorry, you must be able to manage galleries"
|
3247 |
msgstr "Sorry, Du hast nicht das Recht, diese Galerie zu bearbeiten"
|
3248 |
|
3249 |
-
#: ../lib/xmlrpc.php:
|
3250 |
msgid "Sorry, could not create the gallery"
|
3251 |
msgstr "Konnte die Galerie nicht anlegen"
|
3252 |
|
3253 |
-
#: ../lib/xmlrpc.php:
|
3254 |
-
#: ../lib/xmlrpc.php:
|
3255 |
msgid "Invalid gallery ID"
|
3256 |
msgstr "Keine gültige Galerie ID"
|
3257 |
|
3258 |
-
#: ../lib/xmlrpc.php:
|
3259 |
msgid "Sorry, you must be able to manage this gallery"
|
3260 |
msgstr "Sorry, Du hast nicht das Recht, diese Galerie zu bearbeiten"
|
3261 |
|
3262 |
-
#: ../lib/xmlrpc.php:
|
3263 |
msgid "Sorry, could not update the gallery"
|
3264 |
msgstr "Konnte die Galerie nicht aktualisieren"
|
3265 |
|
3266 |
-
#: ../lib/xmlrpc.php:
|
3267 |
-
#: ../lib/xmlrpc.php:
|
3268 |
-
#: ../lib/xmlrpc.php:
|
3269 |
-
#: ../lib/xmlrpc.php:
|
3270 |
msgid "Sorry, you must be able to manage albums"
|
3271 |
msgstr "Sorry, Du hast nicht das Recht, dieses Album zu bearbeiten"
|
3272 |
|
3273 |
-
#: ../lib/xmlrpc.php:
|
3274 |
msgid "Sorry, could not create the album"
|
3275 |
msgstr "Konnte das Album nicht anlegen"
|
3276 |
|
3277 |
-
#: ../lib/xmlrpc.php:
|
3278 |
-
#: ../lib/xmlrpc.php:
|
3279 |
msgid "Invalid album ID"
|
3280 |
msgstr "Ungültige Album ID"
|
3281 |
|
3282 |
-
#: ../lib/xmlrpc.php:
|
3283 |
msgid "Sorry, could not update the album"
|
3284 |
msgstr "Konnte das Album nicht aktualisieren"
|
3285 |
|
3286 |
#: ../view/album-compact.php:32
|
3287 |
-
#: ../view/album-extend.php:30
|
3288 |
msgid "Photos"
|
3289 |
msgstr "Fotos"
|
3290 |
|
@@ -3471,6 +3557,9 @@ msgstr "Album-ID %s existiert nicht"
|
|
3471 |
msgid "Invalid MediaRSS command"
|
3472 |
msgstr "Ungültiger Media-RSS-Befehl"
|
3473 |
|
|
|
|
|
|
|
3474 |
#~ msgid "A new version of NextGEN Gallery is available !"
|
3475 |
#~ msgstr "Eine neue Version von NextGEN Gallery ist jetzt verfügbar"
|
3476 |
|
@@ -3542,15 +3631,6 @@ msgstr "Ungültiger Media-RSS-Befehl"
|
|
3542 |
#~ msgid "Setup"
|
3543 |
#~ msgstr "Setup"
|
3544 |
|
3545 |
-
#~ msgid "Full size"
|
3546 |
-
#~ msgstr "Volle Größe"
|
3547 |
-
|
3548 |
-
#~ msgid "Singlepic"
|
3549 |
-
#~ msgstr "Einzelbilder"
|
3550 |
-
|
3551 |
-
#~ msgid "Insert into Post"
|
3552 |
-
#~ msgstr "In den Beitrag einfügen"
|
3553 |
-
|
3554 |
#~ msgid "PHP Output Buffer Size"
|
3555 |
#~ msgstr "PHP Output Buffer Größe"
|
3556 |
|
@@ -3661,9 +3741,6 @@ msgstr "Ungültiger Media-RSS-Befehl"
|
|
3661 |
#~ msgid "from"
|
3662 |
#~ msgstr "von"
|
3663 |
|
3664 |
-
#~ msgid "Running... Please wait"
|
3665 |
-
#~ msgstr "Läuft... Bitte warten"
|
3666 |
-
|
3667 |
#~ msgid " : Image resized..."
|
3668 |
#~ msgstr " : Bild angepasst..."
|
3669 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: NextGEN Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-01-16 22:13+0100\n"
|
6 |
+
"PO-Revision-Date: 2011-01-16 22:14+0100\n"
|
7 |
"Last-Translator: Alex Rabe\n"
|
8 |
"Language-Team: Alex Rabe\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;esc_html_e;esc_attr_e\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"X-Poedit-Country: GERMANY\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
"X-Poedit-SearchPath-1: ..\n"
|
20 |
|
21 |
+
#: ../nggallery.php:97
|
22 |
msgid "<strong>Translation by : </strong><a target=\"_blank\" href=\"http://alexrabe.de/wordpress-plugins/nextgen-gallery/languages/\">See here</a>"
|
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.7.3</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:197
|
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:215
|
34 |
msgid "Please update the database of NextGEN Gallery."
|
35 |
msgstr "Bitte aktualisiere die Datenbank von NextGEN Gallery."
|
36 |
|
37 |
+
#: ../nggallery.php:215
|
38 |
msgid "Click here to proceed."
|
39 |
msgstr "Hier klicken um fortzufahren."
|
40 |
|
41 |
+
#: ../nggallery.php:238
|
42 |
msgid "Picture tag"
|
43 |
msgstr "Bilder-Stichwort"
|
44 |
|
45 |
+
#: ../nggallery.php:239
|
46 |
msgid "Picture tag: %2$l."
|
47 |
msgstr "Bilder-Stichwort: %2$l."
|
48 |
|
49 |
+
#: ../nggallery.php:240
|
50 |
msgid "Separate picture tags with commas."
|
51 |
msgstr "Trenne Stichwörter mittels Komma"
|
52 |
|
53 |
+
#: ../nggallery.php:339
|
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:340
|
58 |
msgid "Click to Close"
|
59 |
msgstr "Klicken zum Schliessen "
|
60 |
|
61 |
+
#: ../nggallery.php:361
|
62 |
msgid "loading"
|
63 |
msgstr "lade..."
|
64 |
|
65 |
+
#: ../nggallery.php:501
|
66 |
+
#: ../nggfunctions.php:920
|
67 |
#: ../admin/admin.php:32
|
68 |
msgid "Overview"
|
69 |
msgstr "Übersicht"
|
70 |
|
71 |
+
#: ../nggallery.php:502
|
72 |
msgid "Get help"
|
73 |
msgstr "Hilfe"
|
74 |
|
75 |
+
#: ../nggallery.php:503
|
76 |
msgid "Contribute"
|
77 |
msgstr "Mithelfen"
|
78 |
|
79 |
+
#: ../nggallery.php:504
|
80 |
msgid "Donate"
|
81 |
msgstr "Spenden"
|
82 |
|
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:164
|
88 |
+
#: ../nggfunctions.php:630
|
89 |
msgid "[Gallery not found]"
|
90 |
msgstr "[Galerie nicht gefunden]"
|
91 |
|
92 |
+
#: ../nggfunctions.php:437
|
93 |
msgid "[Album not found]"
|
94 |
msgstr "[Album nicht gefunden]"
|
95 |
|
96 |
+
#: ../nggfunctions.php:747
|
97 |
msgid "[SinglePic not found]"
|
98 |
msgstr "[Bild nicht gefunden]"
|
99 |
|
100 |
+
#: ../nggfunctions.php:885
|
101 |
msgid "Related images for"
|
102 |
msgstr "Verwandte Bilder von"
|
103 |
|
239 |
msgstr "Upload fehlgeschlagen!"
|
240 |
|
241 |
#: ../admin/addgallery.php:90
|
242 |
+
#: ../admin/functions.php:930
|
243 |
+
#: ../admin/functions.php:1030
|
244 |
msgid "No gallery selected !"
|
245 |
msgstr "Keine Galerie ausgewählt !"
|
246 |
|
380 |
|
381 |
#: ../admin/admin.php:31
|
382 |
#: ../admin/admin.php:57
|
383 |
+
#: ../admin/admin.php:287
|
384 |
+
#: ../admin/admin.php:355
|
385 |
#: ../admin/functions.php:178
|
386 |
#: ../admin/manage-galleries.php:120
|
387 |
#: ../admin/manage-galleries.php:372
|
463 |
msgid "A failure occurred"
|
464 |
msgstr "Ein Fehler ist aufgetreten"
|
465 |
|
466 |
+
#: ../admin/admin.php:291
|
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:294
|
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:297
|
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:300
|
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:303
|
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:304
|
487 |
msgid "Templates"
|
488 |
msgstr "Vorlagen"
|
489 |
|
490 |
+
#: ../admin/admin.php:307
|
491 |
+
#: ../admin/admin.php:313
|
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:308
|
496 |
msgid "Gallery example"
|
497 |
msgstr "Galerie Beispiel"
|
498 |
|
499 |
+
#: ../admin/admin.php:314
|
500 |
+
#: ../admin/admin.php:324
|
501 |
msgid "Gallery tags"
|
502 |
msgstr "Galerie Stichwörter"
|
503 |
|
504 |
+
#: ../admin/admin.php:317
|
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:318
|
509 |
msgid "Album example"
|
510 |
msgstr "Album Beispiel"
|
511 |
|
512 |
+
#: ../admin/admin.php:319
|
513 |
+
#: ../admin/admin.php:325
|
514 |
msgid "Album tags"
|
515 |
msgstr "Album Stichwörter"
|
516 |
|
517 |
+
#: ../admin/admin.php:322
|
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:323
|
522 |
msgid "Related images"
|
523 |
msgstr "Verwandte Bilder"
|
524 |
|
525 |
+
#: ../admin/admin.php:328
|
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:329
|
530 |
msgid "Custom fields"
|
531 |
msgstr "Spezialfelder"
|
532 |
|
533 |
+
#: ../admin/admin.php:334
|
534 |
msgid "Get help with NextGEN Gallery"
|
535 |
msgstr "Weitere Hilfe zu NextGEN Gallery"
|
536 |
|
537 |
+
#: ../admin/admin.php:338
|
538 |
msgid "More Help & Info"
|
539 |
msgstr "Weitere Hilfe & Informationen"
|
540 |
|
541 |
+
#: ../admin/admin.php:340
|
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:341
|
546 |
msgid "FAQ"
|
547 |
msgstr "FAQ (englisch)"
|
548 |
|
549 |
+
#: ../admin/admin.php:342
|
550 |
msgid "Feature request"
|
551 |
msgstr "Wünsch Dir was"
|
552 |
|
553 |
+
#: ../admin/admin.php:343
|
554 |
msgid "Get your language pack"
|
555 |
msgstr "Lade Deine Sprachdatei"
|
556 |
|
557 |
+
#: ../admin/admin.php:344
|
558 |
msgid "Contribute development"
|
559 |
msgstr "Entwicklung helfen"
|
560 |
|
561 |
+
#: ../admin/admin.php:345
|
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:406
|
570 |
+
#, php-format
|
571 |
+
msgid "Could create image with %s x %s pixel"
|
572 |
+
msgstr "Konnte ein Bild mit %s x %s Pixel erstellen"
|
573 |
+
|
574 |
#: ../admin/album.php:102
|
575 |
#: ../admin/album.php:117
|
576 |
#: ../admin/album.php:158
|
613 |
msgid "Delete"
|
614 |
msgstr "Lösche"
|
615 |
|
|
|
|
|
|
|
|
|
616 |
#: ../admin/album.php:306
|
617 |
msgid "Add new album"
|
618 |
msgstr "Album hinzufügen"
|
767 |
|
768 |
#: ../admin/functions.php:76
|
769 |
#: ../admin/functions.php:85
|
770 |
+
#: ../admin/functions.php:889
|
771 |
msgid "Unable to create directory "
|
772 |
msgstr "Kann Verzeichnis nicht erstellen "
|
773 |
|
813 |
msgstr "erfolgreich erstellt!"
|
814 |
|
815 |
#: ../admin/functions.php:207
|
816 |
+
#: ../admin/functions.php:1006
|
817 |
#: ../admin/manage-galleries.php:74
|
818 |
#: ../admin/manage-galleries.php:141
|
819 |
#: ../admin/manage-images.php:202
|
854 |
msgid "Couldn't restore original image"
|
855 |
msgstr "Konnte Originalbild nicht wiederherstellen"
|
856 |
|
857 |
+
#: ../admin/functions.php:669
|
858 |
msgid "(Error : Couldn't not update data base)"
|
859 |
msgstr "(Fehler : Konnte Datenbank nicht updaten)"
|
860 |
|
861 |
+
#: ../admin/functions.php:676
|
862 |
msgid "(Error : Couldn't not update meta data)"
|
863 |
msgstr "(Fehler : Konnte Metadaten nicht speichern)"
|
864 |
|
865 |
+
#: ../admin/functions.php:685
|
866 |
msgid "(Error : Couldn't not find image)"
|
867 |
msgstr "(Fehler : Konnte das Bild nicht finden)"
|
868 |
|
869 |
+
#: ../admin/functions.php:823
|
870 |
msgid "No valid URL path "
|
871 |
msgstr "Kein gültiger URL-Pfad"
|
872 |
|
873 |
+
#: ../admin/functions.php:839
|
874 |
msgid "Import via cURL failed."
|
875 |
msgstr "Import via cURL abgebrochen"
|
876 |
|
877 |
+
#: ../admin/functions.php:856
|
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:873
|
882 |
msgid "Could not get a valid foldername"
|
883 |
msgstr "Konnte keinen gültigen Verzeichnisnamen finden"
|
884 |
|
885 |
+
#: ../admin/functions.php:884
|
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:899
|
891 |
msgid "Zip-File successfully unpacked"
|
892 |
msgstr "Zip-Datei erfolgreich entpackt"
|
893 |
|
894 |
+
#: ../admin/functions.php:938
|
895 |
+
#: ../admin/functions.php:1055
|
896 |
msgid "Failure in database, no gallery path set !"
|
897 |
msgstr "Datenbankfehler! Kein Galerie-Pfad gesetzt !"
|
898 |
|
899 |
+
#: ../admin/functions.php:962
|
900 |
+
#: ../admin/functions.php:1049
|
901 |
msgid "is no valid image file!"
|
902 |
msgstr "ist keine zulässige Bilddatei !"
|
903 |
|
904 |
+
#: ../admin/functions.php:976
|
905 |
+
#: ../admin/functions.php:1175
|
906 |
+
#: ../admin/functions.php:1252
|
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:983
|
912 |
+
#: ../admin/functions.php:1072
|
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:988
|
917 |
+
#: ../admin/functions.php:1076
|
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:1011
|
922 |
msgid " Image(s) successfully added"
|
923 |
msgstr " Bild(er) erfolgreich hinzugefügt"
|
924 |
|
925 |
+
#: ../admin/functions.php:1038
|
926 |
msgid "Invalid upload. Error Code : "
|
927 |
msgstr "Ungültiger Upload. Fehler Code :"
|
928 |
|
929 |
+
#: ../admin/functions.php:1115
|
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:1116
|
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:1169
|
940 |
+
#: ../admin/functions.php:1246
|
941 |
msgid "The destination gallery does not exist"
|
942 |
msgstr "Die ausgewählte Galerie existiert nicht"
|
943 |
|
944 |
+
#: ../admin/functions.php:1200
|
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:1220
|
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:1279
|
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:1293
|
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:1305
|
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:1308
|
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:1317
|
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:1425
|
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:1428
|
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:1431
|
988 |
msgid "The uploaded file was only partially uploaded"
|
989 |
msgstr "Die Datei wurde nur teilweise hochgeladen"
|
990 |
|
991 |
+
#: ../admin/functions.php:1434
|
992 |
msgid "No file was uploaded"
|
993 |
msgstr "Keinen Datei wurde geladen"
|
994 |
|
995 |
+
#: ../admin/functions.php:1437
|
996 |
msgid "Missing a temporary folder"
|
997 |
msgstr "Konnte temporäres Verzeichnis nicht finden"
|
998 |
|
999 |
+
#: ../admin/functions.php:1440
|
1000 |
msgid "Failed to write file to disk"
|
1001 |
msgstr "Konnte Datei nicht speichern"
|
1002 |
|
1003 |
+
#: ../admin/functions.php:1443
|
1004 |
msgid "File upload stopped by extension"
|
1005 |
msgstr "Upload dieser Dateierweiterung nicht erlaubt"
|
1006 |
|
1007 |
+
#: ../admin/functions.php:1446
|
1008 |
msgid "Unknown upload error"
|
1009 |
msgstr "Unbekannter Uploadfehler"
|
1010 |
|
1483 |
msgid "Image ID:"
|
1484 |
msgstr "Bild ID:"
|
1485 |
|
1486 |
+
#: ../admin/media-upload.php:229
|
1487 |
+
#: ../admin/publish.php:55
|
1488 |
+
msgid "Alignment"
|
1489 |
+
msgstr "Ausrichtung"
|
1490 |
+
|
1491 |
+
#: ../admin/media-upload.php:232
|
1492 |
+
#: ../admin/publish.php:57
|
1493 |
+
#: ../admin/settings.php:478
|
1494 |
+
msgid "None"
|
1495 |
+
msgstr "Keiner"
|
1496 |
+
|
1497 |
+
#: ../admin/media-upload.php:234
|
1498 |
+
#: ../admin/publish.php:59
|
1499 |
+
#: ../admin/tinymce/window.php:120
|
1500 |
+
msgid "Left"
|
1501 |
+
msgstr "Links"
|
1502 |
+
|
1503 |
+
#: ../admin/media-upload.php:236
|
1504 |
+
#: ../admin/publish.php:61
|
1505 |
+
#: ../admin/tinymce/window.php:121
|
1506 |
+
msgid "Center"
|
1507 |
+
msgstr "Zentrieren"
|
1508 |
+
|
1509 |
+
#: ../admin/media-upload.php:238
|
1510 |
+
#: ../admin/publish.php:63
|
1511 |
+
#: ../admin/tinymce/window.php:122
|
1512 |
+
msgid "Right"
|
1513 |
+
msgstr "Rechts"
|
1514 |
+
|
1515 |
+
#: ../admin/media-upload.php:242
|
1516 |
+
#: ../admin/settings.php:585
|
1517 |
+
msgid "Size"
|
1518 |
+
msgstr "Größe"
|
1519 |
+
|
1520 |
+
#: ../admin/media-upload.php:248
|
1521 |
+
msgid "Full size"
|
1522 |
+
msgstr "Volle Größe"
|
1523 |
+
|
1524 |
+
#: ../admin/media-upload.php:250
|
1525 |
+
msgid "Singlepic"
|
1526 |
+
msgstr "Einzelbilder"
|
1527 |
+
|
1528 |
+
#: ../admin/media-upload.php:263
|
1529 |
+
msgid "Insert into Post"
|
1530 |
+
msgstr "In den Beitrag einfügen"
|
1531 |
+
|
1532 |
#: ../admin/media-upload.php:274
|
1533 |
msgid "Save all changes"
|
1534 |
msgstr "Änderungen speichern"
|
1535 |
|
1536 |
+
#: ../admin/overview.php:14
|
1537 |
msgid "NextGEN Gallery Overview"
|
1538 |
msgstr "NextGEN Gallery Übersicht"
|
1539 |
|
1540 |
+
#: ../admin/overview.php:86
|
1541 |
msgid "Welcome to NextGEN Gallery !"
|
1542 |
msgstr "Willkomen bei NextGEN Gallery"
|
1543 |
|
1544 |
+
#: ../admin/overview.php:87
|
1545 |
msgid "Do you like this Plugin?"
|
1546 |
msgstr "Bist Du mit dem Plugin zufrieden ?"
|
1547 |
|
1548 |
+
#: ../admin/overview.php:89
|
1549 |
msgid "Translation"
|
1550 |
msgstr "Übersetzung"
|
1551 |
|
1552 |
+
#: ../admin/overview.php:90
|
1553 |
msgid "Latest News"
|
1554 |
msgstr "Letzte Informationen"
|
1555 |
|
1556 |
+
#: ../admin/overview.php:91
|
1557 |
msgid "Recent donators"
|
1558 |
msgstr "Neueste Spender"
|
1559 |
|
1560 |
+
#: ../admin/overview.php:93
|
1561 |
+
msgid "Plugin Check"
|
1562 |
+
msgstr "Plugin prüfen"
|
1563 |
+
|
1564 |
#: ../admin/overview.php:94
|
1565 |
msgid "Server Settings"
|
1566 |
msgstr "Server- Einstellungen"
|
1590 |
msgid "Help translating it."
|
1591 |
msgstr "Hilf das Plugin zu übersetzen."
|
1592 |
|
1593 |
+
#: ../admin/overview.php:258
|
1594 |
+
msgid "Running..."
|
1595 |
+
msgstr "Läuft... Bitte warten"
|
1596 |
+
|
1597 |
+
#: ../admin/overview.php:305
|
1598 |
+
msgid "Check plugin/theme conflict"
|
1599 |
+
msgstr "Plugin/Theme Konflikt prüfen"
|
1600 |
+
|
1601 |
+
#: ../admin/overview.php:306
|
1602 |
+
#: ../admin/overview.php:312
|
1603 |
+
#: ../admin/overview.php:318
|
1604 |
+
msgid "Not tested"
|
1605 |
+
msgstr "Nicht getested"
|
1606 |
+
|
1607 |
+
#: ../admin/overview.php:307
|
1608 |
+
msgid "No conflict could be detected"
|
1609 |
+
msgstr "Es konnte kein Konflikt festgestellt werden"
|
1610 |
+
|
1611 |
+
#: ../admin/overview.php:308
|
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:311
|
1616 |
+
msgid "Test image function"
|
1617 |
+
msgstr "Teste Bildbearbeitung"
|
1618 |
+
|
1619 |
+
#: ../admin/overview.php:313
|
1620 |
+
msgid "The plugin could create images"
|
1621 |
+
msgstr "Es konnte ein Bild erstellt werden"
|
1622 |
+
|
1623 |
+
#: ../admin/overview.php:314
|
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:317
|
1628 |
+
msgid "Check theme compatibility"
|
1629 |
+
msgstr "Theme Kompatibilität prüfen"
|
1630 |
+
|
1631 |
+
#: ../admin/overview.php:319
|
1632 |
+
msgid "Your theme should work fine with NextGEN Gallery"
|
1633 |
+
msgstr "Dein Theme sollte mit NextGEN Gallery funktionieren"
|
1634 |
+
|
1635 |
+
#: ../admin/overview.php:320
|
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:324
|
1640 |
+
msgid "Check plugin"
|
1641 |
+
msgstr "Plugin prüfen"
|
1642 |
+
|
1643 |
+
#: ../admin/overview.php:345
|
1644 |
msgid "Graphic Library"
|
1645 |
msgstr "Grafik-Bibliothek"
|
1646 |
|
1647 |
+
#: ../admin/overview.php:361
|
1648 |
+
#: ../admin/overview.php:410
|
1649 |
+
#: ../admin/overview.php:597
|
1650 |
+
#: ../admin/overview.php:787
|
1651 |
msgid "Loading…"
|
1652 |
msgstr "Lade…"
|
1653 |
|
1654 |
+
#: ../admin/overview.php:361
|
1655 |
+
#: ../admin/overview.php:410
|
1656 |
+
#: ../admin/overview.php:597
|
1657 |
+
#: ../admin/overview.php:787
|
1658 |
msgid "This widget requires JavaScript."
|
1659 |
msgstr "Dieses Widget braucht JavaScript."
|
1660 |
|
1661 |
+
#: ../admin/overview.php:374
|
1662 |
msgid "Thanks to all donators..."
|
1663 |
msgstr "Danke an alle Spender..."
|
1664 |
|
1665 |
+
#: ../admin/overview.php:396
|
1666 |
msgid "View all"
|
1667 |
msgstr "Alle ansehen"
|
1668 |
|
1669 |
+
#: ../admin/overview.php:422
|
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:434
|
1675 |
msgid "Untitled"
|
1676 |
msgstr "Kein Titel"
|
1677 |
|
1678 |
+
#: ../admin/overview.php:484
|
1679 |
msgid "At a Glance"
|
1680 |
msgstr "Übersicht"
|
1681 |
|
1682 |
+
#: ../admin/overview.php:510
|
1683 |
msgid "Upload pictures"
|
1684 |
msgstr "Bilder hochladen"
|
1685 |
|
1686 |
+
#: ../admin/overview.php:511
|
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:541
|
1691 |
msgid "Storage Space"
|
1692 |
msgstr "Speicherplatz"
|
1693 |
|
1694 |
+
#: ../admin/overview.php:545
|
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:546
|
1700 |
msgid "Space Allowed"
|
1701 |
msgstr "Speicher verfügbar"
|
1702 |
|
1703 |
+
#: ../admin/overview.php:553
|
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:554
|
1709 |
msgid "Space Used"
|
1710 |
msgstr "Verbrauchter Uploadspeicher"
|
1711 |
|
1712 |
+
#: ../admin/overview.php:583
|
1713 |
msgid "Translation file successful updated. Please reload page."
|
1714 |
msgstr "Übersetzungsdatei aktualisiert. Bitte Seite neu laden."
|
1715 |
|
1716 |
+
#: ../admin/overview.php:585
|
1717 |
msgid "Reload page"
|
1718 |
msgstr "Seite neu laden"
|
1719 |
|
1720 |
+
#: ../admin/overview.php:590
|
1721 |
msgid "Translation file couldn't be updated"
|
1722 |
msgstr "Übersetzung konnte nicht aktualisiert werden"
|
1723 |
|
1724 |
+
#: ../admin/overview.php:627
|
1725 |
msgid "Download"
|
1726 |
msgstr "Jetzt updaten"
|
1727 |
|
1728 |
+
#: ../admin/overview.php:656
|
1729 |
msgid "No GD support"
|
1730 |
msgstr "Keine GD Unterstützung"
|
1731 |
|
1732 |
+
#: ../admin/overview.php:668
|
1733 |
+
#: ../admin/overview.php:714
|
1734 |
+
#: ../admin/overview.php:717
|
1735 |
+
#: ../admin/overview.php:720
|
1736 |
msgid "Yes"
|
1737 |
msgstr "Ja"
|
1738 |
|
1739 |
+
#: ../admin/overview.php:670
|
1740 |
+
#: ../admin/overview.php:715
|
1741 |
+
#: ../admin/overview.php:718
|
1742 |
+
#: ../admin/overview.php:721
|
1743 |
msgid "No"
|
1744 |
msgstr "Nein"
|
1745 |
|
1746 |
+
#: ../admin/overview.php:688
|
1747 |
msgid "Not set"
|
1748 |
msgstr "Nicht gesetzt"
|
1749 |
|
1750 |
+
#: ../admin/overview.php:690
|
1751 |
+
#: ../admin/overview.php:693
|
1752 |
msgid "On"
|
1753 |
msgstr "An"
|
1754 |
|
1755 |
+
#: ../admin/overview.php:691
|
1756 |
+
#: ../admin/overview.php:694
|
1757 |
msgid "Off"
|
1758 |
msgstr "Aus"
|
1759 |
|
1760 |
+
#: ../admin/overview.php:697
|
1761 |
+
#: ../admin/overview.php:700
|
1762 |
+
#: ../admin/overview.php:703
|
1763 |
+
#: ../admin/overview.php:706
|
1764 |
+
#: ../admin/overview.php:709
|
1765 |
+
#: ../admin/overview.php:712
|
1766 |
msgid "N/A"
|
1767 |
msgstr "N/A"
|
1768 |
|
1769 |
+
#: ../admin/overview.php:711
|
1770 |
msgid " MByte"
|
1771 |
msgstr " MByte"
|
1772 |
|
1773 |
+
#: ../admin/overview.php:724
|
1774 |
msgid "Operating System"
|
1775 |
msgstr "Betriebssystem"
|
1776 |
|
1777 |
+
#: ../admin/overview.php:725
|
1778 |
msgid "Server"
|
1779 |
msgstr "Server"
|
1780 |
|
1781 |
+
#: ../admin/overview.php:726
|
1782 |
msgid "Memory usage"
|
1783 |
msgstr "Speicherverbrauch"
|
1784 |
|
1785 |
+
#: ../admin/overview.php:727
|
1786 |
msgid "MYSQL Version"
|
1787 |
msgstr "MySQL Version"
|
1788 |
|
1789 |
+
#: ../admin/overview.php:728
|
1790 |
msgid "SQL Mode"
|
1791 |
msgstr "SQL Modus"
|
1792 |
|
1793 |
+
#: ../admin/overview.php:729
|
1794 |
msgid "PHP Version"
|
1795 |
msgstr "PHP Version"
|
1796 |
|
1797 |
+
#: ../admin/overview.php:730
|
1798 |
msgid "PHP Safe Mode"
|
1799 |
msgstr "PHP Safe Mode"
|
1800 |
|
1801 |
+
#: ../admin/overview.php:731
|
1802 |
msgid "PHP Allow URL fopen"
|
1803 |
msgstr "PHP Allow URL fopen"
|
1804 |
|
1805 |
+
#: ../admin/overview.php:732
|
1806 |
msgid "PHP Memory Limit"
|
1807 |
msgstr "PHP Memory Limit"
|
1808 |
|
1809 |
+
#: ../admin/overview.php:733
|
1810 |
msgid "PHP Max Upload Size"
|
1811 |
msgstr "PHP Max Upload Größe"
|
1812 |
|
1813 |
+
#: ../admin/overview.php:734
|
1814 |
msgid "PHP Max Post Size"
|
1815 |
msgstr "PHP Max Post Größe"
|
1816 |
|
1817 |
+
#: ../admin/overview.php:735
|
1818 |
msgid "PCRE Backtracking Limit"
|
1819 |
msgstr "PCRE Backtracking Limit"
|
1820 |
|
1821 |
+
#: ../admin/overview.php:736
|
1822 |
msgid "PHP Max Script Execute Time"
|
1823 |
msgstr "PHP Max Script Execute Time"
|
1824 |
|
1825 |
+
#: ../admin/overview.php:737
|
1826 |
msgid "PHP Exif support"
|
1827 |
msgstr "PHP Exif Modul"
|
1828 |
|
1829 |
+
#: ../admin/overview.php:738
|
1830 |
msgid "PHP IPTC support"
|
1831 |
msgstr "PHP IPTC Modul"
|
1832 |
|
1833 |
+
#: ../admin/overview.php:739
|
1834 |
msgid "PHP XML support"
|
1835 |
msgstr "PHP XML Modul"
|
1836 |
|
1837 |
+
#: ../admin/overview.php:751
|
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:843
|
1842 |
msgid "Install"
|
1843 |
msgstr "Installieren"
|
1844 |
|
1854 |
msgid "Size of the image"
|
1855 |
msgstr "Größe des Bildes"
|
1856 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1857 |
#: ../admin/publish.php:70
|
1858 |
msgid "Draft"
|
1859 |
msgstr "Entwurf"
|
1938 |
msgid "Cache cleared"
|
1939 |
msgstr "Cache löschen"
|
1940 |
|
1941 |
+
#: ../admin/settings.php:211
|
1942 |
+
#: ../admin/settings.php:230
|
1943 |
msgid "General Options"
|
1944 |
msgstr "Allg. Optionen"
|
1945 |
|
1946 |
+
#: ../admin/settings.php:212
|
1947 |
+
#: ../admin/settings.php:415
|
1948 |
msgid "Thumbnails"
|
1949 |
msgstr "Thumbnails"
|
1950 |
|
1951 |
+
#: ../admin/settings.php:213
|
1952 |
msgid "Images"
|
1953 |
msgstr "Bilder"
|
1954 |
|
1955 |
+
#: ../admin/settings.php:215
|
1956 |
+
#: ../admin/settings.php:467
|
1957 |
msgid "Effects"
|
1958 |
msgstr "Effekte"
|
1959 |
|
1960 |
+
#: ../admin/settings.php:216
|
1961 |
+
#: ../admin/settings.php:509
|
1962 |
#: ../admin/tinymce/window.php:110
|
1963 |
msgid "Watermark"
|
1964 |
msgstr "Wasserzeichen"
|
1965 |
|
1966 |
+
#: ../admin/settings.php:217
|
1967 |
+
#: ../admin/settings.php:416
|
1968 |
+
#: ../admin/settings.php:616
|
1969 |
#: ../admin/tinymce/window.php:63
|
1970 |
msgid "Slideshow"
|
1971 |
msgstr "Slideshow"
|
1972 |
|
1973 |
+
#: ../admin/settings.php:236
|
1974 |
#: ../admin/wpmu.php:68
|
1975 |
msgid "Gallery path"
|
1976 |
msgstr "Galerie-Pfad"
|
1977 |
|
1978 |
+
#: ../admin/settings.php:238
|
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:241
|
1983 |
msgid "Delete image files"
|
1984 |
msgstr "Lösche Bilddateien"
|
1985 |
|
1986 |
+
#: ../admin/settings.php:243
|
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:246
|
1991 |
msgid "Activate permalinks"
|
1992 |
msgstr "Aktiviere Permalinks"
|
1993 |
|
1994 |
+
#: ../admin/settings.php:248
|
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:251
|
1999 |
msgid "Create new URL friendly image slugs"
|
2000 |
msgstr "Erstelle neue URL lesbare Schlagwörter "
|
2001 |
|
2002 |
+
#: ../admin/settings.php:252
|
2003 |
+
#: ../admin/settings.php:369
|
2004 |
msgid "Proceed now"
|
2005 |
msgstr "Jetzt durchführen"
|
2006 |
|
2007 |
+
#: ../admin/settings.php:253
|
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:257
|
2016 |
msgid "GD Library"
|
2017 |
msgstr "GD Bibliothek"
|
2018 |
|
2019 |
+
#: ../admin/settings.php:258
|
2020 |
msgid "ImageMagick (Experimental). Path to the library :"
|
2021 |
msgstr "ImageMagick (Experimental). Pfad zur Bibliothek :"
|
2022 |
|
2023 |
+
#: ../admin/settings.php:263
|
2024 |
msgid "Activate Media RSS feed"
|
2025 |
msgstr "Aktiviere Media-RSS-Feed"
|
2026 |
|
2027 |
+
#: ../admin/settings.php:265
|
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:268
|
2032 |
msgid "Activate PicLens/CoolIris support"
|
2033 |
msgstr "Aktiviere PicLens/CoolIris"
|
2034 |
|
2035 |
+
#: ../admin/settings.php:270
|
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:273
|
2040 |
msgid "Tags / Categories"
|
2041 |
msgstr "Stichwörter / Kategorien"
|
2042 |
|
2043 |
+
#: ../admin/settings.php:276
|
2044 |
msgid "Activate related images"
|
2045 |
msgstr "Verwandte Bilder anzeigen"
|
2046 |
|
2047 |
+
#: ../admin/settings.php:278
|
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:282
|
2052 |
msgid "Match with"
|
2053 |
msgstr "Vergleiche mit"
|
2054 |
|
2055 |
+
#: ../admin/settings.php:283
|
2056 |
msgid "Categories"
|
2057 |
msgstr "Kategorien"
|
2058 |
|
2059 |
+
#: ../admin/settings.php:288
|
2060 |
msgid "Max. number of images"
|
2061 |
msgstr "Max. Anzahl der Bilder"
|
2062 |
|
2063 |
+
#: ../admin/settings.php:290
|
2064 |
msgid "0 will show all images"
|
2065 |
msgstr "0 zeige alle verwandten Bilder"
|
2066 |
|
2067 |
+
#: ../admin/settings.php:294
|
2068 |
+
#: ../admin/settings.php:325
|
2069 |
+
#: ../admin/settings.php:372
|
2070 |
+
#: ../admin/settings.php:457
|
2071 |
+
#: ../admin/settings.php:492
|
2072 |
+
#: ../admin/settings.php:753
|
2073 |
msgid "More settings"
|
2074 |
msgstr "Mehr Einstellungen"
|
2075 |
|
2076 |
+
#: ../admin/settings.php:304
|
2077 |
msgid "Thumbnail settings"
|
2078 |
msgstr "Thumbnail-Einstellungen"
|
2079 |
|
2080 |
+
#: ../admin/settings.php:308
|
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:321
|
2085 |
msgid "Thumbnail quality"
|
2086 |
msgstr "Thumbnail Qualität"
|
2087 |
|
2088 |
+
#: ../admin/settings.php:335
|
2089 |
msgid "Image settings"
|
2090 |
msgstr "Bild-Einstellungen"
|
2091 |
|
2092 |
+
#: ../admin/settings.php:341
|
2093 |
msgid "Resize Images"
|
2094 |
msgstr "Bilder verkleinern"
|
2095 |
|
2096 |
+
#: ../admin/settings.php:346
|
2097 |
msgid "Image quality"
|
2098 |
msgstr "Bild Qualität"
|
2099 |
|
2100 |
+
#: ../admin/settings.php:350
|
2101 |
msgid "Backup original images"
|
2102 |
msgstr "Backup von Original-Bildern "
|
2103 |
|
2104 |
+
#: ../admin/settings.php:352
|
2105 |
msgid "Creates a backup for inserted images"
|
2106 |
msgstr "Backup der Bilder anlegen"
|
2107 |
|
2108 |
+
#: ../admin/settings.php:355
|
2109 |
msgid "Automatically resize"
|
2110 |
msgstr "Grösse automatisch anpassen"
|
2111 |
|
2112 |
+
#: ../admin/settings.php:357
|
2113 |
msgid "Automatically resize images on upload."
|
2114 |
msgstr "Passt die Grösse automatisch beim Upload an"
|
2115 |
|
2116 |
+
#: ../admin/settings.php:360
|
2117 |
msgid "Single picture"
|
2118 |
msgstr "Einzelbilder"
|
2119 |
|
2120 |
+
#: ../admin/settings.php:363
|
2121 |
msgid "Cache single pictures"
|
2122 |
msgstr "Nutze Cache für Einzelbilder"
|
2123 |
|
2124 |
+
#: ../admin/settings.php:365
|
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:368
|
2129 |
msgid "Clear cache folder"
|
2130 |
msgstr "Lösche Cache-Verzeichnis"
|
2131 |
|
2132 |
+
#: ../admin/settings.php:389
|
2133 |
msgid "Deactivate gallery page link"
|
2134 |
msgstr "Keine Seitenverzweigung"
|
2135 |
|
2136 |
+
#: ../admin/settings.php:391
|
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:395
|
2141 |
msgid "Number of images per page"
|
2142 |
msgstr "Anzahl der Bilder pro Seite"
|
2143 |
|
2144 |
+
#: ../admin/settings.php:397
|
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:401
|
2149 |
msgid "Number of columns"
|
2150 |
msgstr "Anzahl der Spalten"
|
2151 |
|
2152 |
+
#: ../admin/settings.php:403
|
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:407
|
2157 |
msgid "Integrate slideshow"
|
2158 |
msgstr "Slideshow verwenden"
|
2159 |
|
2160 |
+
#: ../admin/settings.php:414
|
2161 |
msgid "Show first"
|
2162 |
msgstr "Zeige als Erstes"
|
2163 |
|
2164 |
+
#: ../admin/settings.php:420
|
2165 |
msgid "Show ImageBrowser"
|
2166 |
msgstr "Zeige Bilder-Browser"
|
2167 |
|
2168 |
+
#: ../admin/settings.php:422
|
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:426
|
2173 |
msgid "Add hidden images"
|
2174 |
msgstr "Versteckte Bilder hinzufügen"
|
2175 |
|
2176 |
+
#: ../admin/settings.php:428
|
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:432
|
2181 |
msgid "Enable AJAX pagination"
|
2182 |
msgstr "Aktiviere AJAX-Navigation"
|
2183 |
|
2184 |
+
#: ../admin/settings.php:434
|
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:438
|
2189 |
msgid "Sort options"
|
2190 |
msgstr "Sortierung"
|
2191 |
|
2192 |
+
#: ../admin/settings.php:441
|
2193 |
msgid "Sort thumbnails"
|
2194 |
msgstr "Thumbnails sortieren"
|
2195 |
|
2196 |
+
#: ../admin/settings.php:443
|
2197 |
msgid "Custom order"
|
2198 |
msgstr "Benutzerdefiniert"
|
2199 |
|
2200 |
+
#: ../admin/settings.php:445
|
2201 |
msgid "File name"
|
2202 |
msgstr "Dateiname"
|
2203 |
|
2204 |
+
#: ../admin/settings.php:446
|
2205 |
msgid "Alt / Title text"
|
2206 |
msgstr "Alt / Titel Text"
|
2207 |
|
2208 |
+
#: ../admin/settings.php:447
|
2209 |
msgid "Date / Time"
|
2210 |
msgstr "Datum/Zeit"
|
2211 |
|
2212 |
+
#: ../admin/settings.php:451
|
2213 |
msgid "Sort direction"
|
2214 |
msgstr "Sortierreihenfolge"
|
2215 |
|
2216 |
+
#: ../admin/settings.php:471
|
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:472
|
2221 |
msgid "With the placeholder"
|
2222 |
msgstr "Mit Platzhalter"
|
2223 |
|
2224 |
+
#: ../admin/settings.php:472
|
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:475
|
2229 |
msgid "JavaScript Thumbnail effect"
|
2230 |
msgstr "JavaScript Thumbnail Effekt"
|
2231 |
|
2232 |
+
#: ../admin/settings.php:479
|
2233 |
msgid "Thickbox"
|
2234 |
msgstr "Thickbox"
|
2235 |
|
2236 |
+
#: ../admin/settings.php:480
|
2237 |
msgid "Lightbox"
|
2238 |
msgstr "Lightbox"
|
2239 |
|
2240 |
+
#: ../admin/settings.php:481
|
2241 |
msgid "Highslide"
|
2242 |
msgstr "Highslide"
|
2243 |
|
2244 |
+
#: ../admin/settings.php:482
|
2245 |
msgid "Shutter"
|
2246 |
msgstr "Shutter"
|
2247 |
|
2248 |
+
#: ../admin/settings.php:483
|
2249 |
msgid "Custom"
|
2250 |
msgstr "Eigener"
|
2251 |
|
2252 |
+
#: ../admin/settings.php:488
|
2253 |
msgid "Link Code line"
|
2254 |
msgstr "Link-Code-Zeile"
|
2255 |
|
2256 |
+
#: ../admin/settings.php:510
|
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:515
|
2261 |
msgid "Preview"
|
2262 |
msgstr "Vorschau"
|
2263 |
|
2264 |
+
#: ../admin/settings.php:517
|
2265 |
+
#: ../admin/settings.php:522
|
2266 |
msgid "Position"
|
2267 |
msgstr "Position"
|
2268 |
|
2269 |
+
#: ../admin/settings.php:542
|
2270 |
msgid "Offset"
|
2271 |
msgstr "Abstand"
|
2272 |
|
2273 |
+
#: ../admin/settings.php:558
|
2274 |
msgid "Use image as watermark"
|
2275 |
msgstr "Benutze das Bild als Wasserzeichen"
|
2276 |
|
2277 |
+
#: ../admin/settings.php:561
|
2278 |
msgid "URL to file"
|
2279 |
msgstr "URL zur Datei"
|
2280 |
|
2281 |
+
#: ../admin/settings.php:563
|
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:566
|
2286 |
msgid "Use text as watermark"
|
2287 |
msgstr "Benutze Text als Wasserzeichen"
|
2288 |
|
2289 |
+
#: ../admin/settings.php:569
|
2290 |
msgid "Font"
|
2291 |
msgstr "Schriftart"
|
2292 |
|
2293 |
+
#: ../admin/settings.php:578
|
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:580
|
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:589
|
|
|
|
|
|
|
|
|
2302 |
msgid "Color"
|
2303 |
msgstr "Farbe"
|
2304 |
|
2305 |
+
#: ../admin/settings.php:591
|
2306 |
msgid "(hex w/o #)"
|
2307 |
msgstr "(hex w/o #)"
|
2308 |
|
2309 |
+
#: ../admin/settings.php:594
|
2310 |
msgid "Text"
|
2311 |
msgstr "Text"
|
2312 |
|
2313 |
+
#: ../admin/settings.php:598
|
2314 |
msgid "Opaque"
|
2315 |
msgstr "Transparenz"
|
2316 |
|
2317 |
+
#: ../admin/settings.php:619
|
2318 |
msgid "Default size (W x H)"
|
2319 |
msgstr "Standard Größe (B x H)"
|
2320 |
|
2321 |
+
#: ../admin/settings.php:624
|
2322 |
msgid "Duration time"
|
2323 |
msgstr "Dauer"
|
2324 |
|
2325 |
+
#: ../admin/settings.php:625
|
2326 |
msgid "sec."
|
2327 |
msgstr "Sek."
|
2328 |
|
2329 |
+
#: ../admin/settings.php:628
|
2330 |
+
#: ../admin/settings.php:703
|
2331 |
msgid "Transition / Fade effect"
|
2332 |
msgstr "Fade Effekt"
|
2333 |
|
2334 |
+
#: ../admin/settings.php:631
|
2335 |
+
#: ../admin/settings.php:706
|
2336 |
msgid "fade"
|
2337 |
msgstr "Fade"
|
2338 |
|
2339 |
+
#: ../admin/settings.php:632
|
2340 |
msgid "blindX"
|
2341 |
msgstr "blindX"
|
2342 |
|
2343 |
+
#: ../admin/settings.php:633
|
2344 |
msgid "cover"
|
2345 |
msgstr "Blenden"
|
2346 |
|
2347 |
+
#: ../admin/settings.php:634
|
2348 |
msgid "scrollUp"
|
2349 |
msgstr "ScrollUp"
|
2350 |
|
2351 |
+
#: ../admin/settings.php:635
|
2352 |
msgid "scrollDown"
|
2353 |
msgstr "ScrollDown"
|
2354 |
|
2355 |
+
#: ../admin/settings.php:636
|
2356 |
msgid "shuffle"
|
2357 |
msgstr "Shuffle"
|
2358 |
|
2359 |
+
#: ../admin/settings.php:637
|
2360 |
msgid "toss"
|
2361 |
msgstr "Schüttel"
|
2362 |
|
2363 |
+
#: ../admin/settings.php:638
|
2364 |
msgid "wipe"
|
2365 |
msgstr "wischen"
|
2366 |
|
2367 |
+
#: ../admin/settings.php:640
|
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:644
|
2372 |
msgid "Settings for the JW Image Rotator"
|
2373 |
msgstr "JW-Image-Rotator Einstellungen"
|
2374 |
|
2375 |
+
#: ../admin/settings.php:645
|
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:646
|
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:651
|
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:652
|
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:658
|
2392 |
msgid "Enable flash slideshow"
|
2393 |
msgstr "Aktiviere Flash Slideshow"
|
2394 |
|
2395 |
+
#: ../admin/settings.php:660
|
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:663
|
2400 |
msgid "Path to the Imagerotator (URL)"
|
2401 |
msgstr "Pfad zum JW-Image-Rotator (URL)"
|
2402 |
|
2403 |
+
#: ../admin/settings.php:666
|
2404 |
msgid "Search now"
|
2405 |
msgstr "Suche jetzt"
|
2406 |
|
2407 |
+
#: ../admin/settings.php:667
|
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:671
|
2412 |
msgid "Shuffle mode"
|
2413 |
msgstr "Shuffle Modus"
|
2414 |
|
2415 |
+
#: ../admin/settings.php:675
|
2416 |
msgid "Show next image on click"
|
2417 |
msgstr "Zeige nächstes Bild bei Klick"
|
2418 |
|
2419 |
+
#: ../admin/settings.php:679
|
2420 |
msgid "Show navigation bar"
|
2421 |
msgstr "Zeige Navigations-Leiste"
|
2422 |
|
2423 |
+
#: ../admin/settings.php:683
|
2424 |
msgid "Show loading icon"
|
2425 |
msgstr "Zeige Lade-Bildchen"
|
2426 |
|
2427 |
+
#: ../admin/settings.php:687
|
2428 |
msgid "Use watermark logo"
|
2429 |
msgstr "Wasserzeichen anzeigen"
|
2430 |
|
2431 |
+
#: ../admin/settings.php:689
|
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:692
|
2436 |
msgid "Stretch image"
|
2437 |
msgstr "Bild dehnen"
|
2438 |
|
2439 |
+
#: ../admin/settings.php:695
|
2440 |
msgid "true"
|
2441 |
msgstr "Ja"
|
2442 |
|
2443 |
+
#: ../admin/settings.php:696
|
2444 |
msgid "false"
|
2445 |
msgstr "Nein"
|
2446 |
|
2447 |
+
#: ../admin/settings.php:697
|
2448 |
msgid "fit"
|
2449 |
msgstr "Passend"
|
2450 |
|
2451 |
+
#: ../admin/settings.php:698
|
2452 |
msgid "none"
|
2453 |
msgstr "keiner"
|
2454 |
|
2455 |
+
#: ../admin/settings.php:707
|
2456 |
msgid "bgfade"
|
2457 |
msgstr "BGFade"
|
2458 |
|
2459 |
+
#: ../admin/settings.php:708
|
2460 |
msgid "slowfade"
|
2461 |
msgstr "Slowfade"
|
2462 |
|
2463 |
+
#: ../admin/settings.php:709
|
2464 |
msgid "circles"
|
2465 |
msgstr "Kreise"
|
2466 |
|
2467 |
+
#: ../admin/settings.php:710
|
2468 |
msgid "bubbles"
|
2469 |
msgstr "Blasen"
|
2470 |
|
2471 |
+
#: ../admin/settings.php:711
|
2472 |
msgid "blocks"
|
2473 |
msgstr "Blöcke"
|
2474 |
|
2475 |
+
#: ../admin/settings.php:712
|
2476 |
msgid "fluids"
|
2477 |
msgstr "Fluids"
|
2478 |
|
2479 |
+
#: ../admin/settings.php:713
|
2480 |
msgid "flash"
|
2481 |
msgstr "Flash"
|
2482 |
|
2483 |
+
#: ../admin/settings.php:714
|
2484 |
msgid "lines"
|
2485 |
msgstr "Linien"
|
2486 |
|
2487 |
+
#: ../admin/settings.php:715
|
2488 |
msgid "random"
|
2489 |
msgstr "Zufall"
|
2490 |
|
2491 |
+
#: ../admin/settings.php:720
|
2492 |
msgid "Use slow zooming effect"
|
2493 |
msgstr "nutze Zoom-Effekt"
|
2494 |
|
2495 |
+
#: ../admin/settings.php:724
|
2496 |
msgid "Background Color"
|
2497 |
msgstr "Hintergrund (BG) Farbe"
|
2498 |
|
2499 |
+
#: ../admin/settings.php:729
|
2500 |
msgid "Texts / Buttons Color"
|
2501 |
msgstr "Text- / Button Farbe"
|
2502 |
|
2503 |
+
#: ../admin/settings.php:734
|
2504 |
msgid "Rollover / Active Color"
|
2505 |
msgstr "Rollover / Aktiv (Link) Farbe"
|
2506 |
|
2507 |
+
#: ../admin/settings.php:739
|
2508 |
msgid "Screen Color"
|
2509 |
msgstr "Seiten-Farbe"
|
2510 |
|
2511 |
+
#: ../admin/settings.php:744
|
2512 |
msgid "Background music (URL)"
|
2513 |
msgstr "Hintergrundmusik (URL)"
|
2514 |
|
2515 |
+
#: ../admin/settings.php:748
|
2516 |
msgid "Try XHTML validation (with CDATA)"
|
2517 |
msgstr "Integriere XHTML-Validierung (mittels CDATA)"
|
2518 |
|
2519 |
+
#: ../admin/settings.php:750
|
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 |
|
2886 |
msgid "Continue"
|
2887 |
msgstr "Weiter"
|
2888 |
|
2889 |
+
#: ../admin/upgrade.php:393
|
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:394
|
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:395
|
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:452
|
2905 |
msgid "Done."
|
2906 |
msgstr "Fertig."
|
2907 |
|
3272 |
msgid "%s slug(s) edited."
|
3273 |
msgstr "%s Stichwörter geändert"
|
3274 |
|
3275 |
+
#: ../lib/xmlrpc.php:66
|
3276 |
#, php-format
|
3277 |
msgid "XML-RPC services are disabled on this blog. An admin user can enable them at %s"
|
3278 |
msgstr "XML-RPC Service ist ausgeschaltet. Der Administrator kann es hier %s einschalten"
|
3279 |
|
3280 |
+
#: ../lib/xmlrpc.php:73
|
3281 |
msgid "Bad login/pass combination."
|
3282 |
msgstr "Username/Password falsch"
|
3283 |
|
3284 |
+
#: ../lib/xmlrpc.php:129
|
3285 |
msgid "You are not allowed to upload files to this site."
|
3286 |
msgstr "Du hast keine Berechtigung, Bilder hochzuladen"
|
3287 |
|
3288 |
+
#: ../lib/xmlrpc.php:135
|
3289 |
+
#: ../lib/xmlrpc.php:680
|
3290 |
msgid "Could not find gallery "
|
3291 |
msgstr "Konnte Galerie nicht finden"
|
3292 |
|
3293 |
+
#: ../lib/xmlrpc.php:140
|
3294 |
+
#: ../lib/xmlrpc.php:685
|
3295 |
msgid "You are not allowed to upload files to this gallery."
|
3296 |
msgstr "Du hast keine Berechtigung, Bilder in diese Galerie zuladen"
|
3297 |
|
3298 |
+
#: ../lib/xmlrpc.php:152
|
3299 |
msgid "This is no valid image file."
|
3300 |
msgstr "Das ist keine zulässige Bilddatei!"
|
3301 |
|
3302 |
+
#: ../lib/xmlrpc.php:164
|
3303 |
msgid "Could not find image id "
|
3304 |
msgstr "Konnte die Bild-ID nicht finden"
|
3305 |
|
3306 |
+
#: ../lib/xmlrpc.php:171
|
3307 |
#, php-format
|
3308 |
msgid "Failed to delete image %1$s "
|
3309 |
msgstr "Konnte das Bild %1$s nicht löschen"
|
3310 |
|
3311 |
+
#: ../lib/xmlrpc.php:180
|
3312 |
#, php-format
|
3313 |
msgid "Could not write file %1$s (%2$s)"
|
3314 |
msgstr "Konnte die Datei %1$s (%2$s) nicht schreiben "
|
3315 |
|
3316 |
+
#: ../lib/xmlrpc.php:247
|
3317 |
+
#: ../lib/xmlrpc.php:299
|
3318 |
+
msgid "Invalid image ID"
|
3319 |
+
msgstr "Keine gültige Bilder ID"
|
3320 |
+
|
3321 |
+
#: ../lib/xmlrpc.php:250
|
3322 |
+
#: ../lib/xmlrpc.php:302
|
3323 |
+
msgid "Sorry, you must be able to edit this image"
|
3324 |
+
msgstr "Sorry, Du hast nicht das Recht, dieses Bild zu bearbeiten"
|
3325 |
+
|
3326 |
+
#: ../lib/xmlrpc.php:308
|
3327 |
+
msgid "Sorry, could not update the image"
|
3328 |
+
msgstr "Konnte das Bild nicht aktualisieren"
|
3329 |
+
|
3330 |
+
#: ../lib/xmlrpc.php:344
|
3331 |
+
#: ../lib/xmlrpc.php:576
|
3332 |
+
#: ../lib/xmlrpc.php:642
|
3333 |
msgid "Sorry, you must be able to manage galleries"
|
3334 |
msgstr "Sorry, Du hast nicht das Recht, diese Galerie zu bearbeiten"
|
3335 |
|
3336 |
+
#: ../lib/xmlrpc.php:350
|
3337 |
msgid "Sorry, could not create the gallery"
|
3338 |
msgstr "Konnte die Galerie nicht anlegen"
|
3339 |
|
3340 |
+
#: ../lib/xmlrpc.php:393
|
3341 |
+
#: ../lib/xmlrpc.php:573
|
3342 |
msgid "Invalid gallery ID"
|
3343 |
msgstr "Keine gültige Galerie ID"
|
3344 |
|
3345 |
+
#: ../lib/xmlrpc.php:396
|
3346 |
msgid "Sorry, you must be able to manage this gallery"
|
3347 |
msgstr "Sorry, Du hast nicht das Recht, diese Galerie zu bearbeiten"
|
3348 |
|
3349 |
+
#: ../lib/xmlrpc.php:402
|
3350 |
msgid "Sorry, could not update the gallery"
|
3351 |
msgstr "Konnte die Galerie nicht aktualisieren"
|
3352 |
|
3353 |
+
#: ../lib/xmlrpc.php:442
|
3354 |
+
#: ../lib/xmlrpc.php:494
|
3355 |
+
#: ../lib/xmlrpc.php:536
|
3356 |
+
#: ../lib/xmlrpc.php:609
|
3357 |
msgid "Sorry, you must be able to manage albums"
|
3358 |
msgstr "Sorry, Du hast nicht das Recht, dieses Album zu bearbeiten"
|
3359 |
|
3360 |
+
#: ../lib/xmlrpc.php:448
|
3361 |
msgid "Sorry, could not create the album"
|
3362 |
msgstr "Konnte das Album nicht anlegen"
|
3363 |
|
3364 |
+
#: ../lib/xmlrpc.php:491
|
3365 |
+
#: ../lib/xmlrpc.php:533
|
3366 |
msgid "Invalid album ID"
|
3367 |
msgstr "Ungültige Album ID"
|
3368 |
|
3369 |
+
#: ../lib/xmlrpc.php:500
|
3370 |
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 |
|
3557 |
msgid "Invalid MediaRSS command"
|
3558 |
msgstr "Ungültiger Media-RSS-Befehl"
|
3559 |
|
3560 |
+
#~ msgid "Delete album ?"
|
3561 |
+
#~ msgstr "Album löschen ?"
|
3562 |
+
|
3563 |
#~ msgid "A new version of NextGEN Gallery is available !"
|
3564 |
#~ msgstr "Eine neue Version von NextGEN Gallery ist jetzt verfügbar"
|
3565 |
|
3631 |
#~ msgid "Setup"
|
3632 |
#~ msgstr "Setup"
|
3633 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3634 |
#~ msgid "PHP Output Buffer Size"
|
3635 |
#~ msgstr "PHP Output Buffer Größe"
|
3636 |
|
3741 |
#~ msgid "from"
|
3742 |
#~ msgstr "von"
|
3743 |
|
|
|
|
|
|
|
3744 |
#~ msgid " : Image resized..."
|
3745 |
#~ msgstr " : Bild angepasst..."
|
3746 |
|
lang/nggallery.pot
CHANGED
@@ -2,14 +2,14 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: NextGEN Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Alex Rabe\n"
|
8 |
"Language-Team: Alex Rabe\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-KeywordsList: _n:1,2;__;_e\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"X-Poedit-Country: GERMANY\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
@@ -17,65 +17,65 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
"X-Poedit-SearchPath-1: ..\n"
|
19 |
|
20 |
-
#: ../nggallery.php:
|
21 |
msgid "<strong>Translation by : </strong><a target=\"_blank\" href=\"http://alexrabe.de/wordpress-plugins/nextgen-gallery/languages/\">See here</a>"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: ../nggallery.php:
|
25 |
-
msgid "<strong>This translation is not yet updated for Version 1.7.
|
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:32
|
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 |
|
@@ -84,19 +84,19 @@ msgid "The <a href=\"http://www.macromedia.com/go/getflashplayer\">Flash Player<
|
|
84 |
msgstr ""
|
85 |
|
86 |
#: ../nggfunctions.php:164
|
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 |
|
@@ -238,8 +238,8 @@ 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 |
|
@@ -379,8 +379,8 @@ msgstr ""
|
|
379 |
|
380 |
#: ../admin/admin.php:31
|
381 |
#: ../admin/admin.php:57
|
382 |
-
#: ../admin/admin.php:
|
383 |
-
#: ../admin/admin.php:
|
384 |
#: ../admin/functions.php:178
|
385 |
#: ../admin/manage-galleries.php:120
|
386 |
#: ../admin/manage-galleries.php:372
|
@@ -462,102 +462,102 @@ msgstr ""
|
|
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,6 +565,11 @@ msgstr ""
|
|
565 |
msgid "You are not allowed to be here"
|
566 |
msgstr ""
|
567 |
|
|
|
|
|
|
|
|
|
|
|
568 |
#: ../admin/album.php:102
|
569 |
#: ../admin/album.php:117
|
570 |
#: ../admin/album.php:158
|
@@ -607,10 +612,6 @@ msgstr ""
|
|
607 |
msgid "Delete"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: ../admin/album.php:302
|
611 |
-
msgid "Delete album ?"
|
612 |
-
msgstr ""
|
613 |
-
|
614 |
#: ../admin/album.php:306
|
615 |
msgid "Add new album"
|
616 |
msgstr ""
|
@@ -765,7 +766,7 @@ msgstr ""
|
|
765 |
|
766 |
#: ../admin/functions.php:76
|
767 |
#: ../admin/functions.php:85
|
768 |
-
#: ../admin/functions.php:
|
769 |
msgid "Unable to create directory "
|
770 |
msgstr ""
|
771 |
|
@@ -811,7 +812,7 @@ msgid "successfully created!"
|
|
811 |
msgstr ""
|
812 |
|
813 |
#: ../admin/functions.php:207
|
814 |
-
#: ../admin/functions.php:
|
815 |
#: ../admin/manage-galleries.php:74
|
816 |
#: ../admin/manage-galleries.php:141
|
817 |
#: ../admin/manage-images.php:202
|
@@ -852,157 +853,157 @@ msgstr ""
|
|
852 |
msgid "Couldn't restore original image"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: ../admin/functions.php:
|
856 |
msgid "(Error : Couldn't not update data base)"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: ../admin/functions.php:
|
860 |
msgid "(Error : Couldn't not update meta data)"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: ../admin/functions.php:
|
864 |
msgid "(Error : Couldn't not find image)"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: ../admin/functions.php:
|
868 |
msgid "No valid URL path "
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: ../admin/functions.php:
|
872 |
msgid "Import via cURL failed."
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: ../admin/functions.php:
|
876 |
msgid "Uploaded file was no or a faulty zip file ! The server recognized : "
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: ../admin/functions.php:
|
880 |
msgid "Could not get a valid foldername"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../admin/functions.php:
|
884 |
#, php-format
|
885 |
msgid "Unable to create directory %s. Is its parent directory writable by the server?"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: ../admin/functions.php:
|
889 |
msgid "Zip-File successfully unpacked"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: ../admin/functions.php:
|
893 |
-
#: ../admin/functions.php:
|
894 |
msgid "Failure in database, no gallery path set !"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: ../admin/functions.php:
|
898 |
-
#: ../admin/functions.php:
|
899 |
msgid "is no valid image file!"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: ../admin/functions.php:
|
903 |
-
#: ../admin/functions.php:
|
904 |
-
#: ../admin/functions.php:
|
905 |
#, php-format
|
906 |
msgid "Unable to write to directory %s. Is this directory writable by the server?"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: ../admin/functions.php:
|
910 |
-
#: ../admin/functions.php:
|
911 |
msgid "Error, the file could not be moved to : "
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: ../admin/functions.php:
|
915 |
-
#: ../admin/functions.php:
|
916 |
msgid "Error, the file permissions could not be set"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: ../admin/functions.php:
|
920 |
msgid " Image(s) successfully added"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: ../admin/functions.php:
|
924 |
msgid "Invalid upload. Error Code : "
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: ../admin/functions.php:
|
928 |
#, php-format
|
929 |
msgid "SAFE MODE Restriction in effect! You need to create the folder <strong>%s</strong> manually"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: ../admin/functions.php:
|
933 |
#, php-format
|
934 |
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"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: ../admin/functions.php:
|
938 |
-
#: ../admin/functions.php:
|
939 |
msgid "The destination gallery does not exist"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: ../admin/functions.php:
|
943 |
#, php-format
|
944 |
msgid "Failed to move image %1$s to %2$s"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: ../admin/functions.php:
|
948 |
#, php-format
|
949 |
msgid "Moved %1$s picture(s) to gallery : %2$s ."
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: ../admin/functions.php:
|
953 |
#, php-format
|
954 |
msgid "Failed to copy image %1$s to %2$s"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: ../admin/functions.php:
|
958 |
#, php-format
|
959 |
msgid "Failed to copy database row for picture %s"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: ../admin/functions.php:
|
963 |
#, php-format
|
964 |
msgid "Image %1$s (%2$s) copied as image %3$s (%4$s) » The file already existed in the destination gallery."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: ../admin/functions.php:
|
968 |
#, php-format
|
969 |
msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: ../admin/functions.php:
|
973 |
#, php-format
|
974 |
msgid "Copied %1$s picture(s) to gallery: %2$s ."
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: ../admin/functions.php:
|
978 |
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: ../admin/functions.php:
|
982 |
msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: ../admin/functions.php:
|
986 |
msgid "The uploaded file was only partially uploaded"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: ../admin/functions.php:
|
990 |
msgid "No file was uploaded"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: ../admin/functions.php:
|
994 |
msgid "Missing a temporary folder"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: ../admin/functions.php:
|
998 |
msgid "Failed to write file to disk"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: ../admin/functions.php:
|
1002 |
msgid "File upload stopped by extension"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: ../admin/functions.php:
|
1006 |
msgid "Unknown upload error"
|
1007 |
msgstr ""
|
1008 |
|
@@ -1475,34 +1476,84 @@ msgstr ""
|
|
1475 |
msgid "Image ID:"
|
1476 |
msgstr ""
|
1477 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1478 |
#: ../admin/media-upload.php:274
|
1479 |
msgid "Save all changes"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: ../admin/overview.php:
|
1483 |
msgid "NextGEN Gallery Overview"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: ../admin/overview.php:
|
1487 |
msgid "Welcome to NextGEN Gallery !"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: ../admin/overview.php:
|
1491 |
msgid "Do you like this Plugin?"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: ../admin/overview.php:
|
1495 |
msgid "Translation"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: ../admin/overview.php:
|
1499 |
msgid "Latest News"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: ../admin/overview.php:
|
1503 |
msgid "Recent donators"
|
1504 |
msgstr ""
|
1505 |
|
|
|
|
|
|
|
|
|
1506 |
#: ../admin/overview.php:94
|
1507 |
msgid "Server Settings"
|
1508 |
msgstr ""
|
@@ -1532,205 +1583,255 @@ msgstr ""
|
|
1532 |
msgid "Help translating it."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: ../admin/overview.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1536 |
msgid "Graphic Library"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: ../admin/overview.php:
|
1540 |
-
#: ../admin/overview.php:
|
1541 |
-
#: ../admin/overview.php:
|
1542 |
-
#: ../admin/overview.php:
|
1543 |
msgid "Loading…"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: ../admin/overview.php:
|
1547 |
-
#: ../admin/overview.php:
|
1548 |
-
#: ../admin/overview.php:
|
1549 |
-
#: ../admin/overview.php:
|
1550 |
msgid "This widget requires JavaScript."
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: ../admin/overview.php:
|
1554 |
msgid "Thanks to all donators..."
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: ../admin/overview.php:
|
1558 |
msgid "View all"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: ../admin/overview.php:
|
1562 |
#, php-format
|
1563 |
msgid "Newsfeed could not be loaded. Check the <a href=\"%s\">front page</a> to check for updates."
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: ../admin/overview.php:
|
1567 |
msgid "Untitled"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: ../admin/overview.php:
|
1571 |
msgid "At a Glance"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: ../admin/overview.php:
|
1575 |
msgid "Upload pictures"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: ../admin/overview.php:
|
1579 |
msgid "Here you can control your images, galleries and albums."
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: ../admin/overview.php:
|
1583 |
msgid "Storage Space"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: ../admin/overview.php:
|
1587 |
#, php-format
|
1588 |
msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB</a>"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: ../admin/overview.php:
|
1592 |
msgid "Space Allowed"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: ../admin/overview.php:
|
1596 |
#, php-format
|
1597 |
msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB (%3$s%%)</a>"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: ../admin/overview.php:
|
1601 |
msgid "Space Used"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: ../admin/overview.php:
|
1605 |
msgid "Translation file successful updated. Please reload page."
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: ../admin/overview.php:
|
1609 |
msgid "Reload page"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: ../admin/overview.php:
|
1613 |
msgid "Translation file couldn't be updated"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: ../admin/overview.php:
|
1617 |
msgid "Download"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#: ../admin/overview.php:
|
1621 |
msgid "No GD support"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#: ../admin/overview.php:
|
1625 |
-
#: ../admin/overview.php:
|
1626 |
-
#: ../admin/overview.php:
|
1627 |
-
#: ../admin/overview.php:
|
1628 |
msgid "Yes"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: ../admin/overview.php:
|
1632 |
-
#: ../admin/overview.php:
|
1633 |
-
#: ../admin/overview.php:
|
1634 |
-
#: ../admin/overview.php:
|
1635 |
msgid "No"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: ../admin/overview.php:
|
1639 |
msgid "Not set"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: ../admin/overview.php:
|
1643 |
-
#: ../admin/overview.php:
|
1644 |
msgid "On"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: ../admin/overview.php:
|
1648 |
-
#: ../admin/overview.php:
|
1649 |
msgid "Off"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
-
#: ../admin/overview.php:
|
1653 |
-
#: ../admin/overview.php:
|
1654 |
-
#: ../admin/overview.php:
|
1655 |
-
#: ../admin/overview.php:
|
1656 |
-
#: ../admin/overview.php:
|
1657 |
-
#: ../admin/overview.php:
|
1658 |
msgid "N/A"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: ../admin/overview.php:
|
1662 |
msgid " MByte"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: ../admin/overview.php:
|
1666 |
msgid "Operating System"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: ../admin/overview.php:
|
1670 |
msgid "Server"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: ../admin/overview.php:
|
1674 |
msgid "Memory usage"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: ../admin/overview.php:
|
1678 |
msgid "MYSQL Version"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: ../admin/overview.php:
|
1682 |
msgid "SQL Mode"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: ../admin/overview.php:
|
1686 |
msgid "PHP Version"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: ../admin/overview.php:
|
1690 |
msgid "PHP Safe Mode"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: ../admin/overview.php:
|
1694 |
msgid "PHP Allow URL fopen"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: ../admin/overview.php:
|
1698 |
msgid "PHP Memory Limit"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: ../admin/overview.php:
|
1702 |
msgid "PHP Max Upload Size"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: ../admin/overview.php:
|
1706 |
msgid "PHP Max Post Size"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: ../admin/overview.php:
|
1710 |
msgid "PCRE Backtracking Limit"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: ../admin/overview.php:
|
1714 |
msgid "PHP Max Script Execute Time"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: ../admin/overview.php:
|
1718 |
msgid "PHP Exif support"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: ../admin/overview.php:
|
1722 |
msgid "PHP IPTC support"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: ../admin/overview.php:
|
1726 |
msgid "PHP XML support"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: ../admin/overview.php:
|
1730 |
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."
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: ../admin/overview.php:
|
1734 |
msgid "Install"
|
1735 |
msgstr ""
|
1736 |
|
@@ -1746,30 +1847,6 @@ msgstr ""
|
|
1746 |
msgid "Size of the image"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: ../admin/publish.php:55
|
1750 |
-
msgid "Alignment"
|
1751 |
-
msgstr ""
|
1752 |
-
|
1753 |
-
#: ../admin/publish.php:57
|
1754 |
-
#: ../admin/settings.php:476
|
1755 |
-
msgid "None"
|
1756 |
-
msgstr ""
|
1757 |
-
|
1758 |
-
#: ../admin/publish.php:59
|
1759 |
-
#: ../admin/tinymce/window.php:120
|
1760 |
-
msgid "Left"
|
1761 |
-
msgstr ""
|
1762 |
-
|
1763 |
-
#: ../admin/publish.php:61
|
1764 |
-
#: ../admin/tinymce/window.php:121
|
1765 |
-
msgid "Center"
|
1766 |
-
msgstr ""
|
1767 |
-
|
1768 |
-
#: ../admin/publish.php:63
|
1769 |
-
#: ../admin/tinymce/window.php:122
|
1770 |
-
msgid "Right"
|
1771 |
-
msgstr ""
|
1772 |
-
|
1773 |
#: ../admin/publish.php:70
|
1774 |
msgid "Draft"
|
1775 |
msgstr ""
|
@@ -1854,589 +1931,585 @@ msgstr ""
|
|
1854 |
msgid "Cache cleared"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: ../admin/settings.php:
|
1858 |
-
#: ../admin/settings.php:
|
1859 |
msgid "General Options"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: ../admin/settings.php:
|
1863 |
-
#: ../admin/settings.php:
|
1864 |
msgid "Thumbnails"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: ../admin/settings.php:
|
1868 |
msgid "Images"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
-
#: ../admin/settings.php:
|
1872 |
-
#: ../admin/settings.php:
|
1873 |
msgid "Effects"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: ../admin/settings.php:
|
1877 |
-
#: ../admin/settings.php:
|
1878 |
#: ../admin/tinymce/window.php:110
|
1879 |
msgid "Watermark"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: ../admin/settings.php:
|
1883 |
-
#: ../admin/settings.php:
|
1884 |
-
#: ../admin/settings.php:
|
1885 |
#: ../admin/tinymce/window.php:63
|
1886 |
msgid "Slideshow"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: ../admin/settings.php:
|
1890 |
#: ../admin/wpmu.php:68
|
1891 |
msgid "Gallery path"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
-
#: ../admin/settings.php:
|
1895 |
msgid "This is the default path for all galleries"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: ../admin/settings.php:
|
1899 |
msgid "Delete image files"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: ../admin/settings.php:
|
1903 |
msgid "Delete files, when removing a gallery in the database"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: ../admin/settings.php:
|
1907 |
msgid "Activate permalinks"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: ../admin/settings.php:
|
1911 |
msgid "When you activate this option, you need to update your permalink structure one time."
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: ../admin/settings.php:
|
1915 |
msgid "Create new URL friendly image slugs"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: ../admin/settings.php:
|
1919 |
-
#: ../admin/settings.php:
|
1920 |
msgid "Proceed now"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: ../admin/settings.php:
|
1924 |
msgid "Currently not used, prepare database for upcoming version"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: ../admin/settings.php:
|
1928 |
msgid "Select graphic library"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: ../admin/settings.php:
|
1932 |
msgid "GD Library"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: ../admin/settings.php:
|
1936 |
msgid "ImageMagick (Experimental). Path to the library :"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: ../admin/settings.php:
|
1940 |
msgid "Activate Media RSS feed"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: ../admin/settings.php:
|
1944 |
msgid "A RSS feed will be added to you blog header. Useful for CoolIris/PicLens"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: ../admin/settings.php:
|
1948 |
msgid "Activate PicLens/CoolIris support"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: ../admin/settings.php:
|
1952 |
msgid "When you activate this option, some javascript is added to your site footer. Make sure that wp_footer is called in your theme."
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: ../admin/settings.php:
|
1956 |
msgid "Tags / Categories"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: ../admin/settings.php:
|
1960 |
msgid "Activate related images"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: ../admin/settings.php:
|
1964 |
msgid "This option will append related images to every post"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: ../admin/settings.php:
|
1968 |
msgid "Match with"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: ../admin/settings.php:
|
1972 |
msgid "Categories"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: ../admin/settings.php:
|
1976 |
msgid "Max. number of images"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#: ../admin/settings.php:
|
1980 |
msgid "0 will show all images"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: ../admin/settings.php:
|
1984 |
-
#: ../admin/settings.php:
|
1985 |
-
#: ../admin/settings.php:
|
1986 |
-
#: ../admin/settings.php:
|
1987 |
-
#: ../admin/settings.php:
|
1988 |
-
#: ../admin/settings.php:
|
1989 |
msgid "More settings"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
-
#: ../admin/settings.php:
|
1993 |
msgid "Thumbnail settings"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
-
#: ../admin/settings.php:
|
1997 |
msgid "Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery ."
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: ../admin/settings.php:
|
2001 |
msgid "Thumbnail quality"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
-
#: ../admin/settings.php:
|
2005 |
msgid "Image settings"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#: ../admin/settings.php:
|
2009 |
msgid "Resize Images"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: ../admin/settings.php:
|
2013 |
msgid "Image quality"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: ../admin/settings.php:
|
2017 |
msgid "Backup original images"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: ../admin/settings.php:
|
2021 |
msgid "Creates a backup for inserted images"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: ../admin/settings.php:
|
2025 |
msgid "Automatically resize"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: ../admin/settings.php:
|
2029 |
msgid "Automatically resize images on upload."
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: ../admin/settings.php:
|
2033 |
msgid "Single picture"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: ../admin/settings.php:
|
2037 |
msgid "Cache single pictures"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: ../admin/settings.php:
|
2041 |
msgid "Creates a file for each singlepic settings. Reduce the CPU load"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: ../admin/settings.php:
|
2045 |
msgid "Clear cache folder"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: ../admin/settings.php:
|
2049 |
msgid "Deactivate gallery page link"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: ../admin/settings.php:
|
2053 |
msgid "The album will not link to a gallery subpage. The gallery is shown on the same page."
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: ../admin/settings.php:
|
2057 |
msgid "Number of images per page"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#: ../admin/settings.php:
|
2061 |
msgid "0 will disable pagination, all images on one page"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: ../admin/settings.php:
|
2065 |
msgid "Number of columns"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#: ../admin/settings.php:
|
2069 |
msgid "0 will display as much as possible based on the width of your theme. Setting normally only required for captions below the images"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: ../admin/settings.php:
|
2073 |
msgid "Integrate slideshow"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: ../admin/settings.php:
|
2077 |
msgid "Show first"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: ../admin/settings.php:
|
2081 |
msgid "Show ImageBrowser"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: ../admin/settings.php:
|
2085 |
msgid "The gallery will open the ImageBrowser instead the effect."
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: ../admin/settings.php:
|
2089 |
msgid "Add hidden images"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: ../admin/settings.php:
|
2093 |
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"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: ../admin/settings.php:
|
2097 |
msgid "Enable AJAX pagination"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: ../admin/settings.php:
|
2101 |
msgid "Browse images without reload the page. Note : Works only in combination with Shutter effect"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: ../admin/settings.php:
|
2105 |
msgid "Sort options"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: ../admin/settings.php:
|
2109 |
msgid "Sort thumbnails"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: ../admin/settings.php:
|
2113 |
msgid "Custom order"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: ../admin/settings.php:
|
2117 |
msgid "File name"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: ../admin/settings.php:
|
2121 |
msgid "Alt / Title text"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: ../admin/settings.php:
|
2125 |
msgid "Date / Time"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: ../admin/settings.php:
|
2129 |
msgid "Sort direction"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: ../admin/settings.php:
|
2133 |
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."
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: ../admin/settings.php:
|
2137 |
msgid "With the placeholder"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
#: ../admin/settings.php:
|
2141 |
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."
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: ../admin/settings.php:
|
2145 |
msgid "JavaScript Thumbnail effect"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: ../admin/settings.php:
|
2149 |
msgid "Thickbox"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: ../admin/settings.php:
|
2153 |
msgid "Lightbox"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: ../admin/settings.php:
|
2157 |
msgid "Highslide"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#: ../admin/settings.php:
|
2161 |
msgid "Shutter"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: ../admin/settings.php:
|
2165 |
msgid "Custom"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: ../admin/settings.php:
|
2169 |
msgid "Link Code line"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: ../admin/settings.php:
|
2173 |
msgid "Please note : You can only activate the watermark under -> Manage Gallery . This action cannot be undone."
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: ../admin/settings.php:
|
2177 |
msgid "Preview"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: ../admin/settings.php:
|
2181 |
-
#: ../admin/settings.php:
|
2182 |
msgid "Position"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
-
#: ../admin/settings.php:
|
2186 |
msgid "Offset"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
-
#: ../admin/settings.php:
|
2190 |
msgid "Use image as watermark"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#: ../admin/settings.php:
|
2194 |
msgid "URL to file"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: ../admin/settings.php:
|
2198 |
msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#: ../admin/settings.php:
|
2202 |
msgid "Use text as watermark"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#: ../admin/settings.php:
|
2206 |
msgid "Font"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#: ../admin/settings.php:
|
2210 |
msgid "This function will not work, cause you need the FreeType library"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#: ../admin/settings.php:
|
2214 |
msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#: ../admin/settings.php:
|
2218 |
-
msgid "Size"
|
2219 |
-
msgstr ""
|
2220 |
-
|
2221 |
-
#: ../admin/settings.php:587
|
2222 |
msgid "Color"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: ../admin/settings.php:
|
2226 |
msgid "(hex w/o #)"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
-
#: ../admin/settings.php:
|
2230 |
msgid "Text"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: ../admin/settings.php:
|
2234 |
msgid "Opaque"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: ../admin/settings.php:
|
2238 |
msgid "Default size (W x H)"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: ../admin/settings.php:
|
2242 |
msgid "Duration time"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: ../admin/settings.php:
|
2246 |
msgid "sec."
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: ../admin/settings.php:
|
2250 |
-
#: ../admin/settings.php:
|
2251 |
msgid "Transition / Fade effect"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: ../admin/settings.php:
|
2255 |
-
#: ../admin/settings.php:
|
2256 |
msgid "fade"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: ../admin/settings.php:
|
2260 |
msgid "blindX"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: ../admin/settings.php:
|
2264 |
msgid "cover"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: ../admin/settings.php:
|
2268 |
msgid "scrollUp"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: ../admin/settings.php:
|
2272 |
msgid "scrollDown"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#: ../admin/settings.php:
|
2276 |
msgid "shuffle"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: ../admin/settings.php:
|
2280 |
msgid "toss"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: ../admin/settings.php:
|
2284 |
msgid "wipe"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: ../admin/settings.php:
|
2288 |
msgid "See here for more information about the effects :"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: ../admin/settings.php:
|
2292 |
msgid "Settings for the JW Image Rotator"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: ../admin/settings.php:
|
2296 |
msgid "The settings are only used in the JW Image Rotator Version"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: ../admin/settings.php:
|
2300 |
msgid "See more information for the Flash Player on the web page"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#: ../admin/settings.php:
|
2304 |
msgid "The path to imagerotator.swf is not defined, the slideshow will not work."
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: ../admin/settings.php:
|
2308 |
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)."
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: ../admin/settings.php:
|
2312 |
msgid "Enable flash slideshow"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: ../admin/settings.php:
|
2316 |
msgid "Integrate the flash based slideshow for all flash supported devices"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: ../admin/settings.php:
|
2320 |
msgid "Path to the Imagerotator (URL)"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: ../admin/settings.php:
|
2324 |
msgid "Search now"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: ../admin/settings.php:
|
2328 |
msgid "Press the button to search automatically for the imagerotator, if you uploaded it to wp-content/uploads or a subfolder"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: ../admin/settings.php:
|
2332 |
msgid "Shuffle mode"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: ../admin/settings.php:
|
2336 |
msgid "Show next image on click"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: ../admin/settings.php:
|
2340 |
msgid "Show navigation bar"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: ../admin/settings.php:
|
2344 |
msgid "Show loading icon"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: ../admin/settings.php:
|
2348 |
msgid "Use watermark logo"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: ../admin/settings.php:
|
2352 |
msgid "You can change the logo at the watermark settings"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: ../admin/settings.php:
|
2356 |
msgid "Stretch image"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: ../admin/settings.php:
|
2360 |
msgid "true"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: ../admin/settings.php:
|
2364 |
msgid "false"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: ../admin/settings.php:
|
2368 |
msgid "fit"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: ../admin/settings.php:
|
2372 |
msgid "none"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: ../admin/settings.php:
|
2376 |
msgid "bgfade"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: ../admin/settings.php:
|
2380 |
msgid "slowfade"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: ../admin/settings.php:
|
2384 |
msgid "circles"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: ../admin/settings.php:
|
2388 |
msgid "bubbles"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: ../admin/settings.php:
|
2392 |
msgid "blocks"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: ../admin/settings.php:
|
2396 |
msgid "fluids"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: ../admin/settings.php:
|
2400 |
msgid "flash"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: ../admin/settings.php:
|
2404 |
msgid "lines"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: ../admin/settings.php:
|
2408 |
msgid "random"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: ../admin/settings.php:
|
2412 |
msgid "Use slow zooming effect"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: ../admin/settings.php:
|
2416 |
msgid "Background Color"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: ../admin/settings.php:
|
2420 |
msgid "Texts / Buttons Color"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: ../admin/settings.php:
|
2424 |
msgid "Rollover / Active Color"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: ../admin/settings.php:
|
2428 |
msgid "Screen Color"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: ../admin/settings.php:
|
2432 |
msgid "Background music (URL)"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: ../admin/settings.php:
|
2436 |
msgid "Try XHTML validation (with CDATA)"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: ../admin/settings.php:
|
2440 |
msgid "Important : Could causes problem at some browser. Please recheck your page."
|
2441 |
msgstr ""
|
2442 |
|
@@ -2799,22 +2872,22 @@ msgstr ""
|
|
2799 |
msgid "Continue"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: ../admin/upgrade.php:
|
2803 |
#, php-format
|
2804 |
msgid "Rebuild image structure : %s / %s images"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
-
#: ../admin/upgrade.php:
|
2808 |
#, php-format
|
2809 |
msgid "Rebuild gallery structure : %s / %s galleries"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: ../admin/upgrade.php:
|
2813 |
#, php-format
|
2814 |
msgid "Rebuild album structure : %s / %s albums"
|
2815 |
msgstr ""
|
2816 |
|
2817 |
-
#: ../admin/upgrade.php:
|
2818 |
msgid "Done."
|
2819 |
msgstr ""
|
2820 |
|
@@ -3185,92 +3258,105 @@ msgstr ""
|
|
3185 |
msgid "%s slug(s) edited."
|
3186 |
msgstr ""
|
3187 |
|
3188 |
-
#: ../lib/xmlrpc.php:
|
3189 |
#, php-format
|
3190 |
msgid "XML-RPC services are disabled on this blog. An admin user can enable them at %s"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
-
#: ../lib/xmlrpc.php:
|
3194 |
msgid "Bad login/pass combination."
|
3195 |
msgstr ""
|
3196 |
|
3197 |
-
#: ../lib/xmlrpc.php:
|
3198 |
msgid "You are not allowed to upload files to this site."
|
3199 |
msgstr ""
|
3200 |
|
3201 |
-
#: ../lib/xmlrpc.php:
|
3202 |
-
#: ../lib/xmlrpc.php:
|
3203 |
msgid "Could not find gallery "
|
3204 |
msgstr ""
|
3205 |
|
3206 |
-
#: ../lib/xmlrpc.php:
|
3207 |
-
#: ../lib/xmlrpc.php:
|
3208 |
msgid "You are not allowed to upload files to this gallery."
|
3209 |
msgstr ""
|
3210 |
|
3211 |
-
#: ../lib/xmlrpc.php:
|
3212 |
msgid "This is no valid image file."
|
3213 |
msgstr ""
|
3214 |
|
3215 |
-
#: ../lib/xmlrpc.php:
|
3216 |
msgid "Could not find image id "
|
3217 |
msgstr ""
|
3218 |
|
3219 |
-
#: ../lib/xmlrpc.php:
|
3220 |
#, php-format
|
3221 |
msgid "Failed to delete image %1$s "
|
3222 |
msgstr ""
|
3223 |
|
3224 |
-
#: ../lib/xmlrpc.php:
|
3225 |
#, php-format
|
3226 |
msgid "Could not write file %1$s (%2$s)"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
-
#: ../lib/xmlrpc.php:
|
3230 |
-
#: ../lib/xmlrpc.php:
|
3231 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3232 |
msgid "Sorry, you must be able to manage galleries"
|
3233 |
msgstr ""
|
3234 |
|
3235 |
-
#: ../lib/xmlrpc.php:
|
3236 |
msgid "Sorry, could not create the gallery"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
-
#: ../lib/xmlrpc.php:
|
3240 |
-
#: ../lib/xmlrpc.php:
|
3241 |
msgid "Invalid gallery ID"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
-
#: ../lib/xmlrpc.php:
|
3245 |
msgid "Sorry, you must be able to manage this gallery"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: ../lib/xmlrpc.php:
|
3249 |
msgid "Sorry, could not update the gallery"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
-
#: ../lib/xmlrpc.php:
|
3253 |
-
#: ../lib/xmlrpc.php:
|
3254 |
-
#: ../lib/xmlrpc.php:
|
3255 |
-
#: ../lib/xmlrpc.php:
|
3256 |
msgid "Sorry, you must be able to manage albums"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
-
#: ../lib/xmlrpc.php:
|
3260 |
msgid "Sorry, could not create the album"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
-
#: ../lib/xmlrpc.php:
|
3264 |
-
#: ../lib/xmlrpc.php:
|
3265 |
msgid "Invalid album ID"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
-
#: ../lib/xmlrpc.php:
|
3269 |
msgid "Sorry, could not update the album"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
#: ../view/album-compact.php:32
|
3273 |
-
#: ../view/album-extend.php:30
|
3274 |
msgid "Photos"
|
3275 |
msgstr ""
|
3276 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: NextGEN Gallery\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-01-16 22:14+0100\n"
|
6 |
+
"PO-Revision-Date: 2011-01-16 22:14+0100\n"
|
7 |
"Last-Translator: Alex Rabe\n"
|
8 |
"Language-Team: Alex Rabe\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-KeywordsList: _n:1,2;__;_e;esc_attr_e;esc_html_e\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"X-Poedit-Country: GERMANY\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
"X-Poedit-SearchPath-1: ..\n"
|
19 |
|
20 |
+
#: ../nggallery.php:97
|
21 |
msgid "<strong>Translation by : </strong><a target=\"_blank\" href=\"http://alexrabe.de/wordpress-plugins/nextgen-gallery/languages/\">See here</a>"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: ../nggallery.php:98
|
25 |
+
msgid "<strong>This translation is not yet updated for Version 1.7.3</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:197
|
29 |
msgid "Sorry, NextGEN Gallery works only with a Memory Limit of 16 MB or higher"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: ../nggallery.php:215
|
33 |
msgid "Please update the database of NextGEN Gallery."
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: ../nggallery.php:215
|
37 |
msgid "Click here to proceed."
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ../nggallery.php:238
|
41 |
msgid "Picture tag"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: ../nggallery.php:239
|
45 |
msgid "Picture tag: %2$l."
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: ../nggallery.php:240
|
49 |
msgid "Separate picture tags with commas."
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: ../nggallery.php:339
|
53 |
msgid "L O A D I N G"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: ../nggallery.php:340
|
57 |
msgid "Click to Close"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: ../nggallery.php:361
|
61 |
msgid "loading"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: ../nggallery.php:501
|
65 |
+
#: ../nggfunctions.php:920
|
66 |
#: ../admin/admin.php:32
|
67 |
msgid "Overview"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: ../nggallery.php:502
|
71 |
msgid "Get help"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: ../nggallery.php:503
|
75 |
msgid "Contribute"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: ../nggallery.php:504
|
79 |
msgid "Donate"
|
80 |
msgstr ""
|
81 |
|
84 |
msgstr ""
|
85 |
|
86 |
#: ../nggfunctions.php:164
|
87 |
+
#: ../nggfunctions.php:630
|
88 |
msgid "[Gallery not found]"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../nggfunctions.php:437
|
92 |
msgid "[Album not found]"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: ../nggfunctions.php:747
|
96 |
msgid "[SinglePic not found]"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: ../nggfunctions.php:885
|
100 |
msgid "Related images for"
|
101 |
msgstr ""
|
102 |
|
238 |
msgstr ""
|
239 |
|
240 |
#: ../admin/addgallery.php:90
|
241 |
+
#: ../admin/functions.php:930
|
242 |
+
#: ../admin/functions.php:1030
|
243 |
msgid "No gallery selected !"
|
244 |
msgstr ""
|
245 |
|
379 |
|
380 |
#: ../admin/admin.php:31
|
381 |
#: ../admin/admin.php:57
|
382 |
+
#: ../admin/admin.php:287
|
383 |
+
#: ../admin/admin.php:355
|
384 |
#: ../admin/functions.php:178
|
385 |
#: ../admin/manage-galleries.php:120
|
386 |
#: ../admin/manage-galleries.php:372
|
462 |
msgid "A failure occurred"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ../admin/admin.php:291
|
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:294
|
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:297
|
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:300
|
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:303
|
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:304
|
486 |
msgid "Templates"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../admin/admin.php:307
|
490 |
+
#: ../admin/admin.php:313
|
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:308
|
495 |
msgid "Gallery example"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: ../admin/admin.php:314
|
499 |
+
#: ../admin/admin.php:324
|
500 |
msgid "Gallery tags"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: ../admin/admin.php:317
|
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:318
|
508 |
msgid "Album example"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: ../admin/admin.php:319
|
512 |
+
#: ../admin/admin.php:325
|
513 |
msgid "Album tags"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: ../admin/admin.php:322
|
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:323
|
521 |
msgid "Related images"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: ../admin/admin.php:328
|
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:329
|
529 |
msgid "Custom fields"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: ../admin/admin.php:334
|
533 |
msgid "Get help with NextGEN Gallery"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: ../admin/admin.php:338
|
537 |
msgid "More Help & Info"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: ../admin/admin.php:340
|
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:341
|
545 |
msgid "FAQ"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ../admin/admin.php:342
|
549 |
msgid "Feature request"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: ../admin/admin.php:343
|
553 |
msgid "Get your language pack"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: ../admin/admin.php:344
|
557 |
msgid "Contribute development"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: ../admin/admin.php:345
|
561 |
msgid "Download latest version"
|
562 |
msgstr ""
|
563 |
|
565 |
msgid "You are not allowed to be here"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../admin/ajax.php:406
|
569 |
+
#, php-format
|
570 |
+
msgid "Could create image with %s x %s pixel"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
#: ../admin/album.php:102
|
574 |
#: ../admin/album.php:117
|
575 |
#: ../admin/album.php:158
|
612 |
msgid "Delete"
|
613 |
msgstr ""
|
614 |
|
|
|
|
|
|
|
|
|
615 |
#: ../admin/album.php:306
|
616 |
msgid "Add new album"
|
617 |
msgstr ""
|
766 |
|
767 |
#: ../admin/functions.php:76
|
768 |
#: ../admin/functions.php:85
|
769 |
+
#: ../admin/functions.php:889
|
770 |
msgid "Unable to create directory "
|
771 |
msgstr ""
|
772 |
|
812 |
msgstr ""
|
813 |
|
814 |
#: ../admin/functions.php:207
|
815 |
+
#: ../admin/functions.php:1006
|
816 |
#: ../admin/manage-galleries.php:74
|
817 |
#: ../admin/manage-galleries.php:141
|
818 |
#: ../admin/manage-images.php:202
|
853 |
msgid "Couldn't restore original image"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: ../admin/functions.php:669
|
857 |
msgid "(Error : Couldn't not update data base)"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: ../admin/functions.php:676
|
861 |
msgid "(Error : Couldn't not update meta data)"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: ../admin/functions.php:685
|
865 |
msgid "(Error : Couldn't not find image)"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: ../admin/functions.php:823
|
869 |
msgid "No valid URL path "
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: ../admin/functions.php:839
|
873 |
msgid "Import via cURL failed."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: ../admin/functions.php:856
|
877 |
msgid "Uploaded file was no or a faulty zip file ! The server recognized : "
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: ../admin/functions.php:873
|
881 |
msgid "Could not get a valid foldername"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: ../admin/functions.php:884
|
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:899
|
890 |
msgid "Zip-File successfully unpacked"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: ../admin/functions.php:938
|
894 |
+
#: ../admin/functions.php:1055
|
895 |
msgid "Failure in database, no gallery path set !"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: ../admin/functions.php:962
|
899 |
+
#: ../admin/functions.php:1049
|
900 |
msgid "is no valid image file!"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: ../admin/functions.php:976
|
904 |
+
#: ../admin/functions.php:1175
|
905 |
+
#: ../admin/functions.php:1252
|
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:983
|
911 |
+
#: ../admin/functions.php:1072
|
912 |
msgid "Error, the file could not be moved to : "
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: ../admin/functions.php:988
|
916 |
+
#: ../admin/functions.php:1076
|
917 |
msgid "Error, the file permissions could not be set"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: ../admin/functions.php:1011
|
921 |
msgid " Image(s) successfully added"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: ../admin/functions.php:1038
|
925 |
msgid "Invalid upload. Error Code : "
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: ../admin/functions.php:1115
|
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:1116
|
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:1169
|
939 |
+
#: ../admin/functions.php:1246
|
940 |
msgid "The destination gallery does not exist"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: ../admin/functions.php:1200
|
944 |
#, php-format
|
945 |
msgid "Failed to move image %1$s to %2$s"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: ../admin/functions.php:1220
|
949 |
#, php-format
|
950 |
msgid "Moved %1$s picture(s) to gallery : %2$s ."
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: ../admin/functions.php:1279
|
954 |
#, php-format
|
955 |
msgid "Failed to copy image %1$s to %2$s"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: ../admin/functions.php:1293
|
959 |
#, php-format
|
960 |
msgid "Failed to copy database row for picture %s"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: ../admin/functions.php:1305
|
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:1308
|
969 |
#, php-format
|
970 |
msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: ../admin/functions.php:1317
|
974 |
#, php-format
|
975 |
msgid "Copied %1$s picture(s) to gallery: %2$s ."
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: ../admin/functions.php:1425
|
979 |
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: ../admin/functions.php:1428
|
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:1431
|
987 |
msgid "The uploaded file was only partially uploaded"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: ../admin/functions.php:1434
|
991 |
msgid "No file was uploaded"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: ../admin/functions.php:1437
|
995 |
msgid "Missing a temporary folder"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: ../admin/functions.php:1440
|
999 |
msgid "Failed to write file to disk"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: ../admin/functions.php:1443
|
1003 |
msgid "File upload stopped by extension"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: ../admin/functions.php:1446
|
1007 |
msgid "Unknown upload error"
|
1008 |
msgstr ""
|
1009 |
|
1476 |
msgid "Image ID:"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: ../admin/media-upload.php:229
|
1480 |
+
#: ../admin/publish.php:55
|
1481 |
+
msgid "Alignment"
|
1482 |
+
msgstr ""
|
1483 |
+
|
1484 |
+
#: ../admin/media-upload.php:232
|
1485 |
+
#: ../admin/publish.php:57
|
1486 |
+
#: ../admin/settings.php:478
|
1487 |
+
msgid "None"
|
1488 |
+
msgstr ""
|
1489 |
+
|
1490 |
+
#: ../admin/media-upload.php:234
|
1491 |
+
#: ../admin/publish.php:59
|
1492 |
+
#: ../admin/tinymce/window.php:120
|
1493 |
+
msgid "Left"
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: ../admin/media-upload.php:236
|
1497 |
+
#: ../admin/publish.php:61
|
1498 |
+
#: ../admin/tinymce/window.php:121
|
1499 |
+
msgid "Center"
|
1500 |
+
msgstr ""
|
1501 |
+
|
1502 |
+
#: ../admin/media-upload.php:238
|
1503 |
+
#: ../admin/publish.php:63
|
1504 |
+
#: ../admin/tinymce/window.php:122
|
1505 |
+
msgid "Right"
|
1506 |
+
msgstr ""
|
1507 |
+
|
1508 |
+
#: ../admin/media-upload.php:242
|
1509 |
+
#: ../admin/settings.php:585
|
1510 |
+
msgid "Size"
|
1511 |
+
msgstr ""
|
1512 |
+
|
1513 |
+
#: ../admin/media-upload.php:248
|
1514 |
+
msgid "Full size"
|
1515 |
+
msgstr ""
|
1516 |
+
|
1517 |
+
#: ../admin/media-upload.php:250
|
1518 |
+
msgid "Singlepic"
|
1519 |
+
msgstr ""
|
1520 |
+
|
1521 |
+
#: ../admin/media-upload.php:263
|
1522 |
+
msgid "Insert into Post"
|
1523 |
+
msgstr ""
|
1524 |
+
|
1525 |
#: ../admin/media-upload.php:274
|
1526 |
msgid "Save all changes"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: ../admin/overview.php:14
|
1530 |
msgid "NextGEN Gallery Overview"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: ../admin/overview.php:86
|
1534 |
msgid "Welcome to NextGEN Gallery !"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: ../admin/overview.php:87
|
1538 |
msgid "Do you like this Plugin?"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: ../admin/overview.php:89
|
1542 |
msgid "Translation"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: ../admin/overview.php:90
|
1546 |
msgid "Latest News"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: ../admin/overview.php:91
|
1550 |
msgid "Recent donators"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: ../admin/overview.php:93
|
1554 |
+
msgid "Plugin Check"
|
1555 |
+
msgstr ""
|
1556 |
+
|
1557 |
#: ../admin/overview.php:94
|
1558 |
msgid "Server Settings"
|
1559 |
msgstr ""
|
1583 |
msgid "Help translating it."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: ../admin/overview.php:258
|
1587 |
+
msgid "Running..."
|
1588 |
+
msgstr ""
|
1589 |
+
|
1590 |
+
#: ../admin/overview.php:305
|
1591 |
+
msgid "Check plugin/theme conflict"
|
1592 |
+
msgstr ""
|
1593 |
+
|
1594 |
+
#: ../admin/overview.php:306
|
1595 |
+
#: ../admin/overview.php:312
|
1596 |
+
#: ../admin/overview.php:318
|
1597 |
+
msgid "Not tested"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: ../admin/overview.php:307
|
1601 |
+
msgid "No conflict could be detected"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: ../admin/overview.php:308
|
1605 |
+
msgid "Test failed, disable other plugins & switch to default theme"
|
1606 |
+
msgstr ""
|
1607 |
+
|
1608 |
+
#: ../admin/overview.php:311
|
1609 |
+
msgid "Test image function"
|
1610 |
+
msgstr ""
|
1611 |
+
|
1612 |
+
#: ../admin/overview.php:313
|
1613 |
+
msgid "The plugin could create images"
|
1614 |
+
msgstr ""
|
1615 |
+
|
1616 |
+
#: ../admin/overview.php:314
|
1617 |
+
msgid "Couldn't create image, check your memory limit"
|
1618 |
+
msgstr ""
|
1619 |
+
|
1620 |
+
#: ../admin/overview.php:317
|
1621 |
+
msgid "Check theme compatibility"
|
1622 |
+
msgstr ""
|
1623 |
+
|
1624 |
+
#: ../admin/overview.php:319
|
1625 |
+
msgid "Your theme should work fine with NextGEN Gallery"
|
1626 |
+
msgstr ""
|
1627 |
+
|
1628 |
+
#: ../admin/overview.php:320
|
1629 |
+
msgid "wp_head()/wp_footer() is missing, contact the theme author"
|
1630 |
+
msgstr ""
|
1631 |
+
|
1632 |
+
#: ../admin/overview.php:324
|
1633 |
+
msgid "Check plugin"
|
1634 |
+
msgstr ""
|
1635 |
+
|
1636 |
+
#: ../admin/overview.php:345
|
1637 |
msgid "Graphic Library"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: ../admin/overview.php:361
|
1641 |
+
#: ../admin/overview.php:410
|
1642 |
+
#: ../admin/overview.php:597
|
1643 |
+
#: ../admin/overview.php:787
|
1644 |
msgid "Loading…"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: ../admin/overview.php:361
|
1648 |
+
#: ../admin/overview.php:410
|
1649 |
+
#: ../admin/overview.php:597
|
1650 |
+
#: ../admin/overview.php:787
|
1651 |
msgid "This widget requires JavaScript."
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: ../admin/overview.php:374
|
1655 |
msgid "Thanks to all donators..."
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: ../admin/overview.php:396
|
1659 |
msgid "View all"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: ../admin/overview.php:422
|
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:434
|
1668 |
msgid "Untitled"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: ../admin/overview.php:484
|
1672 |
msgid "At a Glance"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: ../admin/overview.php:510
|
1676 |
msgid "Upload pictures"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: ../admin/overview.php:511
|
1680 |
msgid "Here you can control your images, galleries and albums."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: ../admin/overview.php:541
|
1684 |
msgid "Storage Space"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: ../admin/overview.php:545
|
1688 |
#, php-format
|
1689 |
msgid "<a href=\"%1$s\" title=\"Manage Uploads\" class=\"musublink\">%2$sMB</a>"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: ../admin/overview.php:546
|
1693 |
msgid "Space Allowed"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: ../admin/overview.php:553
|
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:554
|
1702 |
msgid "Space Used"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
+
#: ../admin/overview.php:583
|
1706 |
msgid "Translation file successful updated. Please reload page."
|
1707 |
msgstr ""
|
1708 |
|
1709 |
+
#: ../admin/overview.php:585
|
1710 |
msgid "Reload page"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: ../admin/overview.php:590
|
1714 |
msgid "Translation file couldn't be updated"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: ../admin/overview.php:627
|
1718 |
msgid "Download"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: ../admin/overview.php:656
|
1722 |
msgid "No GD support"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
+
#: ../admin/overview.php:668
|
1726 |
+
#: ../admin/overview.php:714
|
1727 |
+
#: ../admin/overview.php:717
|
1728 |
+
#: ../admin/overview.php:720
|
1729 |
msgid "Yes"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: ../admin/overview.php:670
|
1733 |
+
#: ../admin/overview.php:715
|
1734 |
+
#: ../admin/overview.php:718
|
1735 |
+
#: ../admin/overview.php:721
|
1736 |
msgid "No"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: ../admin/overview.php:688
|
1740 |
msgid "Not set"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: ../admin/overview.php:690
|
1744 |
+
#: ../admin/overview.php:693
|
1745 |
msgid "On"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: ../admin/overview.php:691
|
1749 |
+
#: ../admin/overview.php:694
|
1750 |
msgid "Off"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: ../admin/overview.php:697
|
1754 |
+
#: ../admin/overview.php:700
|
1755 |
+
#: ../admin/overview.php:703
|
1756 |
+
#: ../admin/overview.php:706
|
1757 |
+
#: ../admin/overview.php:709
|
1758 |
+
#: ../admin/overview.php:712
|
1759 |
msgid "N/A"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: ../admin/overview.php:711
|
1763 |
msgid " MByte"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
+
#: ../admin/overview.php:724
|
1767 |
msgid "Operating System"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
+
#: ../admin/overview.php:725
|
1771 |
msgid "Server"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
+
#: ../admin/overview.php:726
|
1775 |
msgid "Memory usage"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: ../admin/overview.php:727
|
1779 |
msgid "MYSQL Version"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: ../admin/overview.php:728
|
1783 |
msgid "SQL Mode"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
+
#: ../admin/overview.php:729
|
1787 |
msgid "PHP Version"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: ../admin/overview.php:730
|
1791 |
msgid "PHP Safe Mode"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
+
#: ../admin/overview.php:731
|
1795 |
msgid "PHP Allow URL fopen"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: ../admin/overview.php:732
|
1799 |
msgid "PHP Memory Limit"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: ../admin/overview.php:733
|
1803 |
msgid "PHP Max Upload Size"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: ../admin/overview.php:734
|
1807 |
msgid "PHP Max Post Size"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
+
#: ../admin/overview.php:735
|
1811 |
msgid "PCRE Backtracking Limit"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
+
#: ../admin/overview.php:736
|
1815 |
msgid "PHP Max Script Execute Time"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: ../admin/overview.php:737
|
1819 |
msgid "PHP Exif support"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: ../admin/overview.php:738
|
1823 |
msgid "PHP IPTC support"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: ../admin/overview.php:739
|
1827 |
msgid "PHP XML support"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: ../admin/overview.php:751
|
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:843
|
1835 |
msgid "Install"
|
1836 |
msgstr ""
|
1837 |
|
1847 |
msgid "Size of the image"
|
1848 |
msgstr ""
|
1849 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1850 |
#: ../admin/publish.php:70
|
1851 |
msgid "Draft"
|
1852 |
msgstr ""
|
1931 |
msgid "Cache cleared"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: ../admin/settings.php:211
|
1935 |
+
#: ../admin/settings.php:230
|
1936 |
msgid "General Options"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: ../admin/settings.php:212
|
1940 |
+
#: ../admin/settings.php:415
|
1941 |
msgid "Thumbnails"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: ../admin/settings.php:213
|
1945 |
msgid "Images"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: ../admin/settings.php:215
|
1949 |
+
#: ../admin/settings.php:467
|
1950 |
msgid "Effects"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: ../admin/settings.php:216
|
1954 |
+
#: ../admin/settings.php:509
|
1955 |
#: ../admin/tinymce/window.php:110
|
1956 |
msgid "Watermark"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: ../admin/settings.php:217
|
1960 |
+
#: ../admin/settings.php:416
|
1961 |
+
#: ../admin/settings.php:616
|
1962 |
#: ../admin/tinymce/window.php:63
|
1963 |
msgid "Slideshow"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
+
#: ../admin/settings.php:236
|
1967 |
#: ../admin/wpmu.php:68
|
1968 |
msgid "Gallery path"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: ../admin/settings.php:238
|
1972 |
msgid "This is the default path for all galleries"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: ../admin/settings.php:241
|
1976 |
msgid "Delete image files"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: ../admin/settings.php:243
|
1980 |
msgid "Delete files, when removing a gallery in the database"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: ../admin/settings.php:246
|
1984 |
msgid "Activate permalinks"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: ../admin/settings.php:248
|
1988 |
msgid "When you activate this option, you need to update your permalink structure one time."
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: ../admin/settings.php:251
|
1992 |
msgid "Create new URL friendly image slugs"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: ../admin/settings.php:252
|
1996 |
+
#: ../admin/settings.php:369
|
1997 |
msgid "Proceed now"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: ../admin/settings.php:253
|
2001 |
msgid "Currently not used, prepare database for upcoming version"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: ../admin/settings.php:256
|
2005 |
msgid "Select graphic library"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: ../admin/settings.php:257
|
2009 |
msgid "GD Library"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: ../admin/settings.php:258
|
2013 |
msgid "ImageMagick (Experimental). Path to the library :"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: ../admin/settings.php:263
|
2017 |
msgid "Activate Media RSS feed"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: ../admin/settings.php:265
|
2021 |
msgid "A RSS feed will be added to you blog header. Useful for CoolIris/PicLens"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: ../admin/settings.php:268
|
2025 |
msgid "Activate PicLens/CoolIris support"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: ../admin/settings.php:270
|
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:273
|
2033 |
msgid "Tags / Categories"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: ../admin/settings.php:276
|
2037 |
msgid "Activate related images"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: ../admin/settings.php:278
|
2041 |
msgid "This option will append related images to every post"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: ../admin/settings.php:282
|
2045 |
msgid "Match with"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: ../admin/settings.php:283
|
2049 |
msgid "Categories"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: ../admin/settings.php:288
|
2053 |
msgid "Max. number of images"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: ../admin/settings.php:290
|
2057 |
msgid "0 will show all images"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: ../admin/settings.php:294
|
2061 |
+
#: ../admin/settings.php:325
|
2062 |
+
#: ../admin/settings.php:372
|
2063 |
+
#: ../admin/settings.php:457
|
2064 |
+
#: ../admin/settings.php:492
|
2065 |
+
#: ../admin/settings.php:753
|
2066 |
msgid "More settings"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
+
#: ../admin/settings.php:304
|
2070 |
msgid "Thumbnail settings"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
+
#: ../admin/settings.php:308
|
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:321
|
2078 |
msgid "Thumbnail quality"
|
2079 |
msgstr ""
|
2080 |
|
2081 |
+
#: ../admin/settings.php:335
|
2082 |
msgid "Image settings"
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: ../admin/settings.php:341
|
2086 |
msgid "Resize Images"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: ../admin/settings.php:346
|
2090 |
msgid "Image quality"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
+
#: ../admin/settings.php:350
|
2094 |
msgid "Backup original images"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: ../admin/settings.php:352
|
2098 |
msgid "Creates a backup for inserted images"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: ../admin/settings.php:355
|
2102 |
msgid "Automatically resize"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: ../admin/settings.php:357
|
2106 |
msgid "Automatically resize images on upload."
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: ../admin/settings.php:360
|
2110 |
msgid "Single picture"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: ../admin/settings.php:363
|
2114 |
msgid "Cache single pictures"
|
2115 |
msgstr ""
|
2116 |
|
2117 |
+
#: ../admin/settings.php:365
|
2118 |
msgid "Creates a file for each singlepic settings. Reduce the CPU load"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
+
#: ../admin/settings.php:368
|
2122 |
msgid "Clear cache folder"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: ../admin/settings.php:389
|
2126 |
msgid "Deactivate gallery page link"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: ../admin/settings.php:391
|
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:395
|
2134 |
msgid "Number of images per page"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
+
#: ../admin/settings.php:397
|
2138 |
msgid "0 will disable pagination, all images on one page"
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: ../admin/settings.php:401
|
2142 |
msgid "Number of columns"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: ../admin/settings.php:403
|
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:407
|
2150 |
msgid "Integrate slideshow"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
+
#: ../admin/settings.php:414
|
2154 |
msgid "Show first"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
+
#: ../admin/settings.php:420
|
2158 |
msgid "Show ImageBrowser"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
+
#: ../admin/settings.php:422
|
2162 |
msgid "The gallery will open the ImageBrowser instead the effect."
|
2163 |
msgstr ""
|
2164 |
|
2165 |
+
#: ../admin/settings.php:426
|
2166 |
msgid "Add hidden images"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
+
#: ../admin/settings.php:428
|
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:432
|
2174 |
msgid "Enable AJAX pagination"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
#: ../admin/settings.php:434
|
2178 |
msgid "Browse images without reload the page. Note : Works only in combination with Shutter effect"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: ../admin/settings.php:438
|
2182 |
msgid "Sort options"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
+
#: ../admin/settings.php:441
|
2186 |
msgid "Sort thumbnails"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: ../admin/settings.php:443
|
2190 |
msgid "Custom order"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: ../admin/settings.php:445
|
2194 |
msgid "File name"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: ../admin/settings.php:446
|
2198 |
msgid "Alt / Title text"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: ../admin/settings.php:447
|
2202 |
msgid "Date / Time"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: ../admin/settings.php:451
|
2206 |
msgid "Sort direction"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: ../admin/settings.php:471
|
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:472
|
2214 |
msgid "With the placeholder"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: ../admin/settings.php:472
|
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:475
|
2222 |
msgid "JavaScript Thumbnail effect"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: ../admin/settings.php:479
|
2226 |
msgid "Thickbox"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: ../admin/settings.php:480
|
2230 |
msgid "Lightbox"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: ../admin/settings.php:481
|
2234 |
msgid "Highslide"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: ../admin/settings.php:482
|
2238 |
msgid "Shutter"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: ../admin/settings.php:483
|
2242 |
msgid "Custom"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: ../admin/settings.php:488
|
2246 |
msgid "Link Code line"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: ../admin/settings.php:510
|
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:515
|
2254 |
msgid "Preview"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: ../admin/settings.php:517
|
2258 |
+
#: ../admin/settings.php:522
|
2259 |
msgid "Position"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: ../admin/settings.php:542
|
2263 |
msgid "Offset"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: ../admin/settings.php:558
|
2267 |
msgid "Use image as watermark"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: ../admin/settings.php:561
|
2271 |
msgid "URL to file"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: ../admin/settings.php:563
|
2275 |
msgid "The accessing of URL files is disabled at your server (allow_url_fopen)"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: ../admin/settings.php:566
|
2279 |
msgid "Use text as watermark"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: ../admin/settings.php:569
|
2283 |
msgid "Font"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: ../admin/settings.php:578
|
2287 |
msgid "This function will not work, cause you need the FreeType library"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: ../admin/settings.php:580
|
2291 |
msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: ../admin/settings.php:589
|
|
|
|
|
|
|
|
|
2295 |
msgid "Color"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: ../admin/settings.php:591
|
2299 |
msgid "(hex w/o #)"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: ../admin/settings.php:594
|
2303 |
msgid "Text"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: ../admin/settings.php:598
|
2307 |
msgid "Opaque"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: ../admin/settings.php:619
|
2311 |
msgid "Default size (W x H)"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: ../admin/settings.php:624
|
2315 |
msgid "Duration time"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: ../admin/settings.php:625
|
2319 |
msgid "sec."
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: ../admin/settings.php:628
|
2323 |
+
#: ../admin/settings.php:703
|
2324 |
msgid "Transition / Fade effect"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: ../admin/settings.php:631
|
2328 |
+
#: ../admin/settings.php:706
|
2329 |
msgid "fade"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: ../admin/settings.php:632
|
2333 |
msgid "blindX"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: ../admin/settings.php:633
|
2337 |
msgid "cover"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: ../admin/settings.php:634
|
2341 |
msgid "scrollUp"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: ../admin/settings.php:635
|
2345 |
msgid "scrollDown"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: ../admin/settings.php:636
|
2349 |
msgid "shuffle"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: ../admin/settings.php:637
|
2353 |
msgid "toss"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: ../admin/settings.php:638
|
2357 |
msgid "wipe"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: ../admin/settings.php:640
|
2361 |
msgid "See here for more information about the effects :"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: ../admin/settings.php:644
|
2365 |
msgid "Settings for the JW Image Rotator"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: ../admin/settings.php:645
|
2369 |
msgid "The settings are only used in the JW Image Rotator Version"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: ../admin/settings.php:646
|
2373 |
msgid "See more information for the Flash Player on the web page"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: ../admin/settings.php:651
|
2377 |
msgid "The path to imagerotator.swf is not defined, the slideshow will not work."
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: ../admin/settings.php:652
|
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:658
|
2385 |
msgid "Enable flash slideshow"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
+
#: ../admin/settings.php:660
|
2389 |
msgid "Integrate the flash based slideshow for all flash supported devices"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: ../admin/settings.php:663
|
2393 |
msgid "Path to the Imagerotator (URL)"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: ../admin/settings.php:666
|
2397 |
msgid "Search now"
|
2398 |
msgstr ""
|
2399 |
|
2400 |
+
#: ../admin/settings.php:667
|
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:671
|
2405 |
msgid "Shuffle mode"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: ../admin/settings.php:675
|
2409 |
msgid "Show next image on click"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: ../admin/settings.php:679
|
2413 |
msgid "Show navigation bar"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: ../admin/settings.php:683
|
2417 |
msgid "Show loading icon"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: ../admin/settings.php:687
|
2421 |
msgid "Use watermark logo"
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: ../admin/settings.php:689
|
2425 |
msgid "You can change the logo at the watermark settings"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: ../admin/settings.php:692
|
2429 |
msgid "Stretch image"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: ../admin/settings.php:695
|
2433 |
msgid "true"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: ../admin/settings.php:696
|
2437 |
msgid "false"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: ../admin/settings.php:697
|
2441 |
msgid "fit"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: ../admin/settings.php:698
|
2445 |
msgid "none"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: ../admin/settings.php:707
|
2449 |
msgid "bgfade"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: ../admin/settings.php:708
|
2453 |
msgid "slowfade"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: ../admin/settings.php:709
|
2457 |
msgid "circles"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: ../admin/settings.php:710
|
2461 |
msgid "bubbles"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: ../admin/settings.php:711
|
2465 |
msgid "blocks"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: ../admin/settings.php:712
|
2469 |
msgid "fluids"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: ../admin/settings.php:713
|
2473 |
msgid "flash"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: ../admin/settings.php:714
|
2477 |
msgid "lines"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: ../admin/settings.php:715
|
2481 |
msgid "random"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: ../admin/settings.php:720
|
2485 |
msgid "Use slow zooming effect"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: ../admin/settings.php:724
|
2489 |
msgid "Background Color"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
+
#: ../admin/settings.php:729
|
2493 |
msgid "Texts / Buttons Color"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
+
#: ../admin/settings.php:734
|
2497 |
msgid "Rollover / Active Color"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
+
#: ../admin/settings.php:739
|
2501 |
msgid "Screen Color"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
+
#: ../admin/settings.php:744
|
2505 |
msgid "Background music (URL)"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: ../admin/settings.php:748
|
2509 |
msgid "Try XHTML validation (with CDATA)"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: ../admin/settings.php:750
|
2513 |
msgid "Important : Could causes problem at some browser. Please recheck your page."
|
2514 |
msgstr ""
|
2515 |
|
2872 |
msgid "Continue"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
+
#: ../admin/upgrade.php:393
|
2876 |
#, php-format
|
2877 |
msgid "Rebuild image structure : %s / %s images"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
#: ../admin/upgrade.php:394
|
2881 |
#, php-format
|
2882 |
msgid "Rebuild gallery structure : %s / %s galleries"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
+
#: ../admin/upgrade.php:395
|
2886 |
#, php-format
|
2887 |
msgid "Rebuild album structure : %s / %s albums"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: ../admin/upgrade.php:452
|
2891 |
msgid "Done."
|
2892 |
msgstr ""
|
2893 |
|
3258 |
msgid "%s slug(s) edited."
|
3259 |
msgstr ""
|
3260 |
|
3261 |
+
#: ../lib/xmlrpc.php:66
|
3262 |
#, php-format
|
3263 |
msgid "XML-RPC services are disabled on this blog. An admin user can enable them at %s"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: ../lib/xmlrpc.php:73
|
3267 |
msgid "Bad login/pass combination."
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: ../lib/xmlrpc.php:129
|
3271 |
msgid "You are not allowed to upload files to this site."
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: ../lib/xmlrpc.php:135
|
3275 |
+
#: ../lib/xmlrpc.php:680
|
3276 |
msgid "Could not find gallery "
|
3277 |
msgstr ""
|
3278 |
|
3279 |
+
#: ../lib/xmlrpc.php:140
|
3280 |
+
#: ../lib/xmlrpc.php:685
|
3281 |
msgid "You are not allowed to upload files to this gallery."
|
3282 |
msgstr ""
|
3283 |
|
3284 |
+
#: ../lib/xmlrpc.php:152
|
3285 |
msgid "This is no valid image file."
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: ../lib/xmlrpc.php:164
|
3289 |
msgid "Could not find image id "
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: ../lib/xmlrpc.php:171
|
3293 |
#, php-format
|
3294 |
msgid "Failed to delete image %1$s "
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: ../lib/xmlrpc.php:180
|
3298 |
#, php-format
|
3299 |
msgid "Could not write file %1$s (%2$s)"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
+
#: ../lib/xmlrpc.php:247
|
3303 |
+
#: ../lib/xmlrpc.php:299
|
3304 |
+
msgid "Invalid image ID"
|
3305 |
+
msgstr ""
|
3306 |
+
|
3307 |
+
#: ../lib/xmlrpc.php:250
|
3308 |
+
#: ../lib/xmlrpc.php:302
|
3309 |
+
msgid "Sorry, you must be able to edit this image"
|
3310 |
+
msgstr ""
|
3311 |
+
|
3312 |
+
#: ../lib/xmlrpc.php:308
|
3313 |
+
msgid "Sorry, could not update the image"
|
3314 |
+
msgstr ""
|
3315 |
+
|
3316 |
+
#: ../lib/xmlrpc.php:344
|
3317 |
+
#: ../lib/xmlrpc.php:576
|
3318 |
+
#: ../lib/xmlrpc.php:642
|
3319 |
msgid "Sorry, you must be able to manage galleries"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: ../lib/xmlrpc.php:350
|
3323 |
msgid "Sorry, could not create the gallery"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: ../lib/xmlrpc.php:393
|
3327 |
+
#: ../lib/xmlrpc.php:573
|
3328 |
msgid "Invalid gallery ID"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
+
#: ../lib/xmlrpc.php:396
|
3332 |
msgid "Sorry, you must be able to manage this gallery"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
+
#: ../lib/xmlrpc.php:402
|
3336 |
msgid "Sorry, could not update the gallery"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
+
#: ../lib/xmlrpc.php:442
|
3340 |
+
#: ../lib/xmlrpc.php:494
|
3341 |
+
#: ../lib/xmlrpc.php:536
|
3342 |
+
#: ../lib/xmlrpc.php:609
|
3343 |
msgid "Sorry, you must be able to manage albums"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: ../lib/xmlrpc.php:448
|
3347 |
msgid "Sorry, could not create the album"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
+
#: ../lib/xmlrpc.php:491
|
3351 |
+
#: ../lib/xmlrpc.php:533
|
3352 |
msgid "Invalid album ID"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
+
#: ../lib/xmlrpc.php:500
|
3356 |
msgid "Sorry, could not update the album"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
#: ../view/album-compact.php:32
|
|
|
3360 |
msgid "Photos"
|
3361 |
msgstr ""
|
3362 |
|
lib/multisite.php
CHANGED
@@ -18,11 +18,40 @@ class nggWPMU{
|
|
18 |
if ( get_site_option( 'upload_space_check_disabled' ) )
|
19 |
return false;
|
20 |
|
21 |
-
if ( (is_multisite()) && wpmu_enable_function('wpmuQuotaCheck'))
|
22 |
if( $error = upload_is_user_over_quota( false ) ) {
|
23 |
nggGallery::show_error( __( 'Sorry, you have used your space allocation. Please delete some files to upload more files.','nggallery' ) );
|
24 |
return true;
|
25 |
}
|
26 |
return false;
|
27 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
}
|
18 |
if ( get_site_option( 'upload_space_check_disabled' ) )
|
19 |
return false;
|
20 |
|
21 |
+
if ( (is_multisite()) && nggWPMU::wpmu_enable_function('wpmuQuotaCheck'))
|
22 |
if( $error = upload_is_user_over_quota( false ) ) {
|
23 |
nggGallery::show_error( __( 'Sorry, you have used your space allocation. Please delete some files to upload more files.','nggallery' ) );
|
24 |
return true;
|
25 |
}
|
26 |
return false;
|
27 |
}
|
28 |
+
|
29 |
+
/**
|
30 |
+
* Check for site admin
|
31 |
+
*
|
32 |
+
* @return
|
33 |
+
*/
|
34 |
+
function wpmu_site_admin() {
|
35 |
+
|
36 |
+
if ( function_exists('is_super_admin') )
|
37 |
+
if ( is_super_admin() )
|
38 |
+
return true;
|
39 |
+
|
40 |
+
return false;
|
41 |
+
}
|
42 |
+
|
43 |
+
/**
|
44 |
+
* Check for site wide options
|
45 |
+
*
|
46 |
+
* @param string $value
|
47 |
+
* @return value
|
48 |
+
*/
|
49 |
+
function wpmu_enable_function($value) {
|
50 |
+
if (is_multisite()) {
|
51 |
+
$ngg_options = get_site_option('ngg_options');
|
52 |
+
return $ngg_options[$value];
|
53 |
+
}
|
54 |
+
// if this is not WPMU, enable it !
|
55 |
+
return true;
|
56 |
+
}
|
57 |
}
|
lib/ngg-db.php
CHANGED
@@ -4,7 +4,7 @@ if ( !class_exists('nggdb') ) :
|
|
4 |
* NextGEN Gallery Database Class
|
5 |
*
|
6 |
* @author Alex Rabe, Vincent Prat
|
7 |
-
* @copyright 2008-
|
8 |
* @since 1.0.0
|
9 |
*/
|
10 |
class nggdb {
|
4 |
* NextGEN Gallery Database Class
|
5 |
*
|
6 |
* @author Alex Rabe, Vincent Prat
|
7 |
+
* @copyright 2008-2011
|
8 |
* @since 1.0.0
|
9 |
*/
|
10 |
class nggdb {
|
lib/xmlrpc.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
*
|
5 |
* @package NextGEN Gallery
|
6 |
* @author Alex Rabe
|
7 |
-
* @copyright 2009-
|
8 |
*/
|
9 |
class nggXMLRPC{
|
10 |
|
@@ -21,8 +21,10 @@ class nggXMLRPC{
|
|
21 |
|
22 |
$methods['ngg.installed'] = array(&$this, 'nggInstalled');
|
23 |
// Image methods
|
24 |
-
$methods['ngg.uploadImage'] = array(&$this, 'uploadImage');
|
25 |
$methods['ngg.getImages'] = array(&$this, 'getImages');
|
|
|
|
|
|
|
26 |
// Gallery methods
|
27 |
$methods['ngg.getGalleries'] = array(&$this, 'getGalleries');
|
28 |
$methods['ngg.newGallery'] = array(&$this, 'newGallery');
|
@@ -213,6 +215,102 @@ class nggXMLRPC{
|
|
213 |
|
214 |
}
|
215 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
/**
|
217 |
* Method "ngg.newGallery"
|
218 |
* Create a new gallery
|
@@ -311,7 +409,7 @@ class nggXMLRPC{
|
|
311 |
* Method "ngg.newAlbum"
|
312 |
* Create a new album
|
313 |
*
|
314 |
-
* @since 1.7
|
315 |
*
|
316 |
* @param array $args Method parameters.
|
317 |
* - int blog_id
|
@@ -460,6 +558,8 @@ class nggXMLRPC{
|
|
460 |
|
461 |
global $nggdb;
|
462 |
|
|
|
|
|
463 |
$this->escape($args);
|
464 |
$blog_ID = (int) $args[0];
|
465 |
$username = $args[1];
|
@@ -549,7 +649,7 @@ class nggXMLRPC{
|
|
549 |
|
550 |
/**
|
551 |
* Method "ngg.getImages"
|
552 |
-
* Return the list of all
|
553 |
*
|
554 |
* @since 1.4
|
555 |
*
|
4 |
*
|
5 |
* @package NextGEN Gallery
|
6 |
* @author Alex Rabe
|
7 |
+
* @copyright 2009-2011
|
8 |
*/
|
9 |
class nggXMLRPC{
|
10 |
|
21 |
|
22 |
$methods['ngg.installed'] = array(&$this, 'nggInstalled');
|
23 |
// Image methods
|
|
|
24 |
$methods['ngg.getImages'] = array(&$this, 'getImages');
|
25 |
+
$methods['ngg.uploadImage'] = array(&$this, 'uploadImage');
|
26 |
+
$methods['ngg.deleteImage'] = array(&$this, 'deleteImage');
|
27 |
+
$methods['ngg.editImage'] = array(&$this, 'editImage');
|
28 |
// Gallery methods
|
29 |
$methods['ngg.getGalleries'] = array(&$this, 'getGalleries');
|
30 |
$methods['ngg.newGallery'] = array(&$this, 'newGallery');
|
215 |
|
216 |
}
|
217 |
|
218 |
+
/**
|
219 |
+
* Method "ngg.deleteImage"
|
220 |
+
* Delete a Image from the database and gallery
|
221 |
+
*
|
222 |
+
* @since 1.7.3
|
223 |
+
*
|
224 |
+
* @param array $args Method parameters.
|
225 |
+
* - int blog_id
|
226 |
+
* - string username
|
227 |
+
* - string password
|
228 |
+
* - int image_id
|
229 |
+
* @return true
|
230 |
+
*/
|
231 |
+
function deleteImage($args) {
|
232 |
+
|
233 |
+
global $nggdb, $ngg;
|
234 |
+
|
235 |
+
require_once ( dirname ( dirname( __FILE__ ) ). '/admin/functions.php' ); // admin functions
|
236 |
+
|
237 |
+
$this->escape($args);
|
238 |
+
$blog_ID = (int) $args[0];
|
239 |
+
$username = $args[1];
|
240 |
+
$password = $args[2];
|
241 |
+
$id = (int) $args[3];
|
242 |
+
|
243 |
+
if ( !$user = $this->login($username, $password) )
|
244 |
+
return $this->error;
|
245 |
+
|
246 |
+
if ( !$image = nggdb::find_image($id) )
|
247 |
+
return(new IXR_Error(404, __("Invalid image ID")));
|
248 |
+
|
249 |
+
if ( !current_user_can( 'NextGEN Manage gallery' ) && !nggAdmin::can_manage_this_gallery($image->author) )
|
250 |
+
return new IXR_Error( 401, __( 'Sorry, you must be able to edit this image' ) );
|
251 |
+
|
252 |
+
if ($ngg->options['deleteImg']) {
|
253 |
+
@unlink($image->imagePath);
|
254 |
+
@unlink($image->thumbPath);
|
255 |
+
@unlink($image->imagePath . "_backup" );
|
256 |
+
}
|
257 |
+
|
258 |
+
nggdb::delete_image ( $id );
|
259 |
+
|
260 |
+
return true;
|
261 |
+
|
262 |
+
}
|
263 |
+
|
264 |
+
/**
|
265 |
+
* Method "ngg.editImage"
|
266 |
+
* Edit a existing Image
|
267 |
+
*
|
268 |
+
* @since 1.7.3
|
269 |
+
*
|
270 |
+
* @param array $args Method parameters.
|
271 |
+
* - int blog_id
|
272 |
+
* - string username
|
273 |
+
* - string password
|
274 |
+
* - int Image ID
|
275 |
+
* - string alt/title text
|
276 |
+
* - string description
|
277 |
+
* - int exclude from gallery (0 or 1)
|
278 |
+
* @return true if success
|
279 |
+
*/
|
280 |
+
function editImage($args) {
|
281 |
+
|
282 |
+
global $ngg;
|
283 |
+
|
284 |
+
require_once ( dirname ( dirname( __FILE__ ) ). '/admin/functions.php' ); // admin functions
|
285 |
+
|
286 |
+
$this->escape($args);
|
287 |
+
$blog_ID = (int) $args[0];
|
288 |
+
$username = $args[1];
|
289 |
+
$password = $args[2];
|
290 |
+
$id = (int) $args[3];
|
291 |
+
$alttext = $args[4];
|
292 |
+
$description= $args[5];
|
293 |
+
$exclude = (int) $args[6];
|
294 |
+
|
295 |
+
if ( !$user = $this->login($username, $password) )
|
296 |
+
return $this->error;
|
297 |
+
|
298 |
+
if ( !$image = nggdb::find_image($id) )
|
299 |
+
return(new IXR_Error(404, __("Invalid image ID")));
|
300 |
+
|
301 |
+
if ( !current_user_can( 'NextGEN Manage gallery' ) && !nggAdmin::can_manage_this_gallery($image->author) )
|
302 |
+
return new IXR_Error( 401, __( 'Sorry, you must be able to edit this image' ) );
|
303 |
+
|
304 |
+
if ( !empty( $alttext ) )
|
305 |
+
$result = nggdb::update_image($id, false, false, $description, $alttext, $exclude);
|
306 |
+
|
307 |
+
if ( !$result )
|
308 |
+
return new IXR_Error(500, __('Sorry, could not update the image'));
|
309 |
+
|
310 |
+
return true;
|
311 |
+
|
312 |
+
}
|
313 |
+
|
314 |
/**
|
315 |
* Method "ngg.newGallery"
|
316 |
* Create a new gallery
|
409 |
* Method "ngg.newAlbum"
|
410 |
* Create a new album
|
411 |
*
|
412 |
+
* @since 1.7.0
|
413 |
*
|
414 |
* @param array $args Method parameters.
|
415 |
* - int blog_id
|
558 |
|
559 |
global $nggdb;
|
560 |
|
561 |
+
require_once ( dirname ( dirname( __FILE__ ) ). '/admin/functions.php' ); // admin functions
|
562 |
+
|
563 |
$this->escape($args);
|
564 |
$blog_ID = (int) $args[0];
|
565 |
$username = $args[1];
|
649 |
|
650 |
/**
|
651 |
* Method "ngg.getImages"
|
652 |
+
* Return the list of all images inside a gallery
|
653 |
*
|
654 |
* @since 1.4
|
655 |
*
|
nggallery.php
CHANGED
@@ -4,11 +4,11 @@ Plugin Name: NextGEN Gallery
|
|
4 |
Plugin URI: http://alexrabe.de/?page_id=80
|
5 |
Description: A NextGENeration Photo gallery for the Web 2.0.
|
6 |
Author: Alex Rabe
|
7 |
-
Version: 1.7.
|
8 |
|
9 |
Author URI: http://alexrabe.de/
|
10 |
|
11 |
-
Copyright 2007-
|
12 |
|
13 |
This program is free software; you can redistribute it and/or modify
|
14 |
it under the terms of the GNU General Public License as published by
|
@@ -34,7 +34,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
|
|
34 |
if (!class_exists('nggLoader')) {
|
35 |
class nggLoader {
|
36 |
|
37 |
-
var $version = '1.7.
|
38 |
var $dbversion = '1.7.0';
|
39 |
var $minium_WP = '3.0';
|
40 |
var $donators = 'http://nextgen.boelinger.com/donators.php';
|
@@ -79,7 +79,10 @@ class nggLoader {
|
|
79 |
add_filter('transient_update_plugins', array(&$this, 'disable_upgrade'));
|
80 |
|
81 |
//Add some links on the plugin page
|
82 |
-
add_filter('plugin_row_meta', array(&$this, 'add_plugin_links'), 10, 2);
|
|
|
|
|
|
|
83 |
|
84 |
}
|
85 |
|
@@ -92,7 +95,7 @@ class nggLoader {
|
|
92 |
|
93 |
// All credits to the tranlator
|
94 |
$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>';
|
95 |
-
$this->translator .= '<p class="hint">'. __('<strong>This translation is not yet updated for Version 1.7.
|
96 |
|
97 |
// Check for upgrade
|
98 |
$this->check_for_upgrade();
|
@@ -502,6 +505,18 @@ class nggLoader {
|
|
502 |
}
|
503 |
return $links;
|
504 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
505 |
|
506 |
}
|
507 |
// Let's start the holy plugin
|
4 |
Plugin URI: http://alexrabe.de/?page_id=80
|
5 |
Description: A NextGENeration Photo gallery for the Web 2.0.
|
6 |
Author: Alex Rabe
|
7 |
+
Version: 1.7.3
|
8 |
|
9 |
Author URI: http://alexrabe.de/
|
10 |
|
11 |
+
Copyright 2007-2011 by Alex Rabe & NextGEN DEV-Team
|
12 |
|
13 |
This program is free software; you can redistribute it and/or modify
|
14 |
it under the terms of the GNU General Public License as published by
|
34 |
if (!class_exists('nggLoader')) {
|
35 |
class nggLoader {
|
36 |
|
37 |
+
var $version = '1.7.3';
|
38 |
var $dbversion = '1.7.0';
|
39 |
var $minium_WP = '3.0';
|
40 |
var $donators = 'http://nextgen.boelinger.com/donators.php';
|
79 |
add_filter('transient_update_plugins', array(&$this, 'disable_upgrade'));
|
80 |
|
81 |
//Add some links on the plugin page
|
82 |
+
add_filter('plugin_row_meta', array(&$this, 'add_plugin_links'), 10, 2);
|
83 |
+
|
84 |
+
// Check for the header / footer
|
85 |
+
add_action( 'init', array(&$this, 'test_head_footer_init' ) );
|
86 |
|
87 |
}
|
88 |
|
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.7.3</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();
|
505 |
}
|
506 |
return $links;
|
507 |
}
|
508 |
+
|
509 |
+
// Check for the header / footer, parts taken from Matt Martz (http://sivel.net/)
|
510 |
+
function test_head_footer_init() {
|
511 |
+
|
512 |
+
// If test-head query var exists hook into wp_head
|
513 |
+
if ( isset( $_GET['test-head'] ) )
|
514 |
+
add_action( 'wp_head', create_function('', 'echo \'<!--wp_head-->\';'), 99999 );
|
515 |
+
|
516 |
+
// If test-footer query var exists hook into wp_footer
|
517 |
+
if ( isset( $_GET['test-footer'] ) )
|
518 |
+
add_action( 'wp_footer', create_function('', 'echo \'<!--wp_footer-->\';'), 99999 );
|
519 |
+
}
|
520 |
|
521 |
}
|
522 |
// Let's start the holy plugin
|
nggfunctions.php
CHANGED
@@ -409,10 +409,11 @@ function nggShowAlbum($albumID, $template = 'extend') {
|
|
409 |
if (!empty( $gallery )) {
|
410 |
|
411 |
// subalbum support only one instance, you can't use more of them in one post
|
|
|
412 |
if ( isset($GLOBALS['subalbum']) || isset($GLOBALS['nggShowGallery']) )
|
413 |
return;
|
414 |
|
415 |
-
// if gallery is
|
416 |
$out = nggShowGallery( intval($gallery) );
|
417 |
$GLOBALS['nggShowGallery'] = true;
|
418 |
|
@@ -1064,7 +1065,7 @@ function nggShowRandomRecent($type, $maxImages, $template = '', $galleryId = 0)
|
|
1064 |
if ( is_array($picturelist) )
|
1065 |
$out = nggCreateGallery($picturelist, false, $template);
|
1066 |
|
1067 |
-
$out = apply_filters('ngg_show_images_content', $out, $
|
1068 |
|
1069 |
return $out;
|
1070 |
}
|
409 |
if (!empty( $gallery )) {
|
410 |
|
411 |
// subalbum support only one instance, you can't use more of them in one post
|
412 |
+
//TODO: causes problems with SFC plugin, due to a second filter callback
|
413 |
if ( isset($GLOBALS['subalbum']) || isset($GLOBALS['nggShowGallery']) )
|
414 |
return;
|
415 |
|
416 |
+
// if gallery is submit , then show the gallery instead
|
417 |
$out = nggShowGallery( intval($gallery) );
|
418 |
$GLOBALS['nggShowGallery'] = true;
|
419 |
|
1065 |
if ( is_array($picturelist) )
|
1066 |
$out = nggCreateGallery($picturelist, false, $template);
|
1067 |
|
1068 |
+
$out = apply_filters('ngg_show_images_content', $out, $picturelist);
|
1069 |
|
1070 |
return $out;
|
1071 |
}
|
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.
|
@@ -46,7 +46,7 @@ Important Links:
|
|
46 |
|
47 |
== Credits ==
|
48 |
|
49 |
-
Copyright 2007-
|
50 |
|
51 |
This program is free software; you can redistribute it and/or modify
|
52 |
it under the terms of the GNU General Public License as published by
|
@@ -134,8 +134,16 @@ To show the most recent added mages : **[recent max=x ]**
|
|
134 |
|
135 |
== Changelog ==
|
136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
= V1.7.2 - 13.12.2010 =
|
138 |
-
* Bugfix : Adding images to database require slug
|
139 |
|
140 |
= V1.7.1 - 13.12.2010 =
|
141 |
* Changed : Disable upgrade for PHP4 user
|
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.1
|
7 |
Stable tag: trunk
|
8 |
|
9 |
NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with dozens of options and features.
|
46 |
|
47 |
== Credits ==
|
48 |
|
49 |
+
Copyright 2007-2011 by Alex Rabe & NextGEN DEV-Team
|
50 |
|
51 |
This program is free software; you can redistribute it and/or modify
|
52 |
it under the terms of the GNU General Public License as published by
|
134 |
|
135 |
== Changelog ==
|
136 |
|
137 |
+
= V1.7.3 - 20.01.2011
|
138 |
+
* NEW : Introduce plugin health check for conflicts with other plugins/themes
|
139 |
+
* NEW : Adding new XMLRPC method ngg.deleteImage
|
140 |
+
* NEW : Adding new XMLRPC method ngg.editImage
|
141 |
+
* Changed : Rework register script for autocomplete feature
|
142 |
+
* Bugfix : Bugfix for Multisite setup and flash upload
|
143 |
+
* Bugfix : WP3.1 compat issue, show site admin page only on Multisite installation
|
144 |
+
|
145 |
= V1.7.2 - 13.12.2010 =
|
146 |
+
* Bugfix : Adding images to database require slug (NOT NULL)
|
147 |
|
148 |
= V1.7.1 - 13.12.2010 =
|
149 |
* Changed : Disable upgrade for PHP4 user
|
xml/json.php
CHANGED
@@ -104,6 +104,10 @@ class nggAPI {
|
|
104 |
//return images, galleries or albums for autocomplete drop down list
|
105 |
return $this->autocomplete();
|
106 |
break;
|
|
|
|
|
|
|
|
|
107 |
default :
|
108 |
$this->result = array ('stat' => 'fail', 'code' => '98', 'message' => 'Method not known.');
|
109 |
return false;
|
104 |
//return images, galleries or albums for autocomplete drop down list
|
105 |
return $this->autocomplete();
|
106 |
break;
|
107 |
+
case 'version' :
|
108 |
+
$this->result = array ('stat' => 'ok', 'version' => $ngg->version);
|
109 |
+
return;
|
110 |
+
break;
|
111 |
default :
|
112 |
$this->result = array ('stat' => 'fail', 'code' => '98', 'message' => 'Method not known.');
|
113 |
return false;
|