Version Description
Download this release
Release Info
Developer | WPReady |
Plugin | NextCellent Gallery – NextGEN Legacy |
Version | 1.9.32.fix |
Comparing to | |
See all releases |
Code changes from version 1.9.32 to 1.9.32.fix
- admin/class-ngg-adder.php +2 -1
- admin/class-ngg-admin-launcher.php +0 -23
- admin/class-ngg-options.php +41 -2
- admin/class-ngg-setup.php +0 -107
- admin/js/ngg.ajax.js +25 -4
- admin/manage/class-ngg-abstract-image-manager.php +3 -0
- admin/manage/class-ngg-gallery-list-table.php +2 -1
- admin/manage/class-ngg-image-list-table.php +3 -1
- admin/manage/class-ngg-image-manager.php +5 -5
- admin/manage/class-ngg-manager.php +46 -2
- lang/nggallery-es_ES.mo +0 -0
- lang/nggallery-es_ES.po +3935 -0
- readme.txt +3 -3
- view/album-compact.php +1 -1
- view/album-extend.php +1 -1
admin/class-ngg-adder.php
CHANGED
@@ -375,9 +375,10 @@ class NGG_Adder extends NGG_Post_Admin_Page {
|
|
375 |
if ( wpmu_enable_function('wpmuZipUpload') && nggGallery::current_user_can( 'NextGEN Upload a zip' ) )
|
376 |
$tabs['zipupload'] = __('ZIP file', 'nggallery');
|
377 |
|
|
|
378 |
if ( wpmu_enable_function('wpmuImportFolder') && nggGallery::current_user_can( 'NextGEN Import image folder' ) )
|
379 |
$tabs['importfolder'] = __('Import folder', 'nggallery');
|
380 |
-
|
381 |
$tabs = apply_filters('ngg_addgallery_tabs', $tabs);
|
382 |
|
383 |
return $tabs;
|
375 |
if ( wpmu_enable_function('wpmuZipUpload') && nggGallery::current_user_can( 'NextGEN Upload a zip' ) )
|
376 |
$tabs['zipupload'] = __('ZIP file', 'nggallery');
|
377 |
|
378 |
+
/*
|
379 |
if ( wpmu_enable_function('wpmuImportFolder') && nggGallery::current_user_can( 'NextGEN Import image folder' ) )
|
380 |
$tabs['importfolder'] = __('Import folder', 'nggallery');
|
381 |
+
*/
|
382 |
$tabs = apply_filters('ngg_addgallery_tabs', $tabs);
|
383 |
|
384 |
return $tabs;
|
admin/class-ngg-admin-launcher.php
CHANGED
@@ -92,12 +92,6 @@ class NGG_Admin_Launcher {
|
|
92 |
'nggallery-roles',
|
93 |
array( $this, 'show_menu' ) );
|
94 |
}
|
95 |
-
|
96 |
-
if ( ! is_multisite() || is_super_admin() ) {
|
97 |
-
add_submenu_page( NGGFOLDER, __( 'Reset / Uninstall', 'nggallery' ), __( 'Reset / Uninstall', 'nggallery' ),
|
98 |
-
'activate_plugins', 'nggallery-setup',
|
99 |
-
array( $this, 'show_menu' ) );
|
100 |
-
}
|
101 |
}
|
102 |
|
103 |
/**
|
@@ -186,10 +180,6 @@ class NGG_Admin_Launcher {
|
|
186 |
include_once( dirname( __FILE__ ) . '/class-ngg-style.php' );
|
187 |
$page = new NGG_Style();
|
188 |
break;
|
189 |
-
case "nggallery-setup" :
|
190 |
-
include_once( dirname( __FILE__ ) . '/class-ngg-setup.php' );
|
191 |
-
$page = new NGG_Setup();
|
192 |
-
break;
|
193 |
case "nggallery-roles" :
|
194 |
include_once( dirname( __FILE__ ) . '/class-ngg-roles.php' );
|
195 |
$page = new NGG_Roles();
|
@@ -662,19 +652,6 @@ class NGG_Admin_Launcher {
|
|
662 |
'content' => $help
|
663 |
) );
|
664 |
break;
|
665 |
-
case "{$i18n}_page_nggallery-setup" :
|
666 |
-
$help = '<p>' . __( 'If \'someone\' messed with your settings (yeah, definitely not you), you can reset them here.',
|
667 |
-
'nggallery' ) . '</p>';
|
668 |
-
$help .= '<p><b>' . __( 'Attention!',
|
669 |
-
'nggallery' ) . '</b> ' . __( 'You should not use the Uninstall Plugin button, unless you know what you\'re doing! It should never be necessary to press it.',
|
670 |
-
'nggallery' ) . '</p>';
|
671 |
-
|
672 |
-
$screen->add_help_tab( array(
|
673 |
-
'id' => $screen->id . '-general',
|
674 |
-
'title' => 'Reset',
|
675 |
-
'content' => $help
|
676 |
-
) );
|
677 |
-
break;
|
678 |
}
|
679 |
|
680 |
//Set the sidebar (same on all pages)
|
92 |
'nggallery-roles',
|
93 |
array( $this, 'show_menu' ) );
|
94 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
}
|
96 |
|
97 |
/**
|
180 |
include_once( dirname( __FILE__ ) . '/class-ngg-style.php' );
|
181 |
$page = new NGG_Style();
|
182 |
break;
|
|
|
|
|
|
|
|
|
183 |
case "nggallery-roles" :
|
184 |
include_once( dirname( __FILE__ ) . '/class-ngg-roles.php' );
|
185 |
$page = new NGG_Roles();
|
652 |
'content' => $help
|
653 |
) );
|
654 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
}
|
656 |
|
657 |
//Set the sidebar (same on all pages)
|
admin/class-ngg-options.php
CHANGED
@@ -17,6 +17,23 @@ class NGG_Options extends NGG_Post_Admin_Page {
|
|
17 |
*/
|
18 |
protected function processor() {
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
global $nggRewrite;
|
21 |
|
22 |
$ngg_options = get_option('ngg_options');
|
@@ -96,7 +113,6 @@ class NGG_Options extends NGG_Post_Admin_Page {
|
|
96 |
}
|
97 |
|
98 |
do_action( 'ngg_update_options_page' );
|
99 |
-
|
100 |
}
|
101 |
|
102 |
/**
|
@@ -193,6 +209,17 @@ class NGG_Options extends NGG_Post_Admin_Page {
|
|
193 |
type: 'image',domain: "<?php echo home_url('index.php', is_ssl() ? 'https' : 'http'); ?>"
|
194 |
});
|
195 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
</script>
|
197 |
<?php
|
198 |
}
|
@@ -212,6 +239,7 @@ class NGG_Options extends NGG_Post_Admin_Page {
|
|
212 |
$tabs['effects'] = __('Effects', 'nggallery');
|
213 |
$tabs['watermark'] = __('Watermark', 'nggallery');
|
214 |
$tabs['slideshow'] = __('Slideshow', 'nggallery');
|
|
|
215 |
|
216 |
$tabs = apply_filters('ngg_settings_tabs', $tabs);
|
217 |
|
@@ -398,7 +426,7 @@ class NGG_Options extends NGG_Post_Admin_Page {
|
|
398 |
<th><?php _e('Different sizes','nggallery'); ?></th>
|
399 |
<td>
|
400 |
<input type="checkbox" name="thumbDifferentSize" id="thumbDifferentSize" value="true" <?php checked( $options['thumbDifferentSize']); ?>>
|
401 |
-
<label for="thumbDifferentSize"><?php _e('Allows you to make
|
402 |
</td>
|
403 |
</tr>
|
404 |
</table>
|
@@ -909,6 +937,17 @@ class NGG_Options extends NGG_Post_Admin_Page {
|
|
909 |
<?php
|
910 |
}
|
911 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
912 |
/**
|
913 |
* Convert an array of slideshow styles to a html dropdown group.
|
914 |
*
|
17 |
*/
|
18 |
protected function processor() {
|
19 |
|
20 |
+
//If we reset to default, we only do that.
|
21 |
+
if (isset($_POST['resetdefault'])) {
|
22 |
+
|
23 |
+
global $ngg;
|
24 |
+
|
25 |
+
check_admin_referer('ngg_uninstall');
|
26 |
+
|
27 |
+
include_once ( dirname (__FILE__). '/class-ngg-installer.php');
|
28 |
+
|
29 |
+
NGG_Installer::set_default_options();
|
30 |
+
$ngg->load_options();
|
31 |
+
|
32 |
+
nggGallery::show_message(__('Reset all settings to the default parameters.','nggallery'));
|
33 |
+
|
34 |
+
return;
|
35 |
+
}
|
36 |
+
|
37 |
global $nggRewrite;
|
38 |
|
39 |
$ngg_options = get_option('ngg_options');
|
113 |
}
|
114 |
|
115 |
do_action( 'ngg_update_options_page' );
|
|
|
116 |
}
|
117 |
|
118 |
/**
|
209 |
type: 'image',domain: "<?php echo home_url('index.php', is_ssl() ? 'https' : 'http'); ?>"
|
210 |
});
|
211 |
});
|
212 |
+
|
213 |
+
document.getElementById('reset-to-default').addEventListener('click', function(event) {
|
214 |
+
var check = confirm(
|
215 |
+
'<?php echo esc_js( __( 'Reset all options to default settings?', 'nggallery' ) ) ?>' +
|
216 |
+
'\n\n' +
|
217 |
+
'<?php echo esc_js( __( 'Choose [Cancel] to Stop, [OK] to proceed.', 'ngallery') ) ?>'
|
218 |
+
);
|
219 |
+
if(!check) {
|
220 |
+
event.preventDefault();
|
221 |
+
}
|
222 |
+
}, false);
|
223 |
</script>
|
224 |
<?php
|
225 |
}
|
239 |
$tabs['effects'] = __('Effects', 'nggallery');
|
240 |
$tabs['watermark'] = __('Watermark', 'nggallery');
|
241 |
$tabs['slideshow'] = __('Slideshow', 'nggallery');
|
242 |
+
$tabs['advanced'] = __('Advanced', 'nggallery');
|
243 |
|
244 |
$tabs = apply_filters('ngg_settings_tabs', $tabs);
|
245 |
|
426 |
<th><?php _e('Different sizes','nggallery'); ?></th>
|
427 |
<td>
|
428 |
<input type="checkbox" name="thumbDifferentSize" id="thumbDifferentSize" value="true" <?php checked( $options['thumbDifferentSize']); ?>>
|
429 |
+
<label for="thumbDifferentSize"><?php _e('Allows you to make thumbnails with dimensions that differ from the rest of the gallery.','nggallery') ?></label>
|
430 |
</td>
|
431 |
</tr>
|
432 |
</table>
|
937 |
<?php
|
938 |
}
|
939 |
|
940 |
+
|
941 |
+
private function tab_advanced($options) {
|
942 |
+
?>
|
943 |
+
<form name="resetsettings" method="post" action="<?php echo $this->page.'#advanced'; ?>">
|
944 |
+
<?php wp_nonce_field('ngg_uninstall') ?>
|
945 |
+
<p><?php _e('Use this button to reset all NextCellent options.', 'nggallery') ;?></p>
|
946 |
+
<input type="submit" class="button" id="reset-to-default" name="resetdefault" value="<?php _e('Reset settings', 'nggallery') ;?>">
|
947 |
+
</form>
|
948 |
+
<?php
|
949 |
+
}
|
950 |
+
|
951 |
/**
|
952 |
* Convert an array of slideshow styles to a html dropdown group.
|
953 |
*
|
admin/class-ngg-setup.php
DELETED
@@ -1,107 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
include_once('class-ngg-post-admin-page.php');
|
4 |
-
|
5 |
-
class NGG_Setup extends NGG_Post_Admin_Page {
|
6 |
-
|
7 |
-
public function display() {
|
8 |
-
parent::display();
|
9 |
-
|
10 |
-
global $wpdb;
|
11 |
-
|
12 |
-
?>
|
13 |
-
<div class="wrap">
|
14 |
-
<h2><?php _e('Reset options', 'nggallery') ;?></h2>
|
15 |
-
<form name="resetsettings" method="post">
|
16 |
-
<?php wp_nonce_field('ngg_uninstall') ?>
|
17 |
-
<p><?php _e('Reset all options/settings to the default installation.', 'nggallery') ;?></p>
|
18 |
-
<div align="center">
|
19 |
-
<input type="submit" class="button" id="reset-to-default" name="resetdefault" value="<?php _e('Reset settings', 'nggallery') ;?>">
|
20 |
-
</div>
|
21 |
-
</form>
|
22 |
-
</div>
|
23 |
-
<?php if ( !is_multisite() || is_super_admin() ) : ?>
|
24 |
-
<div class="wrap">
|
25 |
-
<h2><?php _e('Uninstall plugin tables', 'nggallery') ;?></h2>
|
26 |
-
|
27 |
-
<form name="resetsettings" method="post">
|
28 |
-
<div>
|
29 |
-
<?php wp_nonce_field('ngg_uninstall') ?>
|
30 |
-
<p><?php _e('You don\'t like NextCellent Gallery?', 'nggallery') ;?></p>
|
31 |
-
<p><?php _e('With this button you can clear all database tables. This should also happen if you uninstall the normal way, but it can be useful for manually uninstalling NextCellent completely.', 'nggallery') ;?>
|
32 |
-
</div>
|
33 |
-
<p style="color: red">
|
34 |
-
<strong><?php _e('WARNING:', 'nggallery') ;?></strong>
|
35 |
-
<br>
|
36 |
-
<?php _e('Once uninstalled, this cannot be undone. You should use a Database Backup plugin of WordPress to backup all the tables first. NextCellent gallery is stored in the tables', 'nggallery') ;?> <strong><?php echo $wpdb->nggpictures; ?></strong>, <strong><?php echo $wpdb->nggalbum; ?></strong> <?php _e('and', 'nggallery') ;?> <strong><?php echo $wpdb->nggalbum; ?></strong>.
|
37 |
-
</p>
|
38 |
-
<div align="center">
|
39 |
-
<input type="button" name="show_button" id="show-button" class="button" value="<?php _e('Show uninstall button', 'nggallery') ?>">
|
40 |
-
<input style="display: none; color: red" id="delete-button" type="submit" name="uninstall" class="button delete" value="<?php _e('Uninstall plugin', 'nggallery') ?>">
|
41 |
-
</div>
|
42 |
-
</form>
|
43 |
-
</div>
|
44 |
-
<?php endif; ?>
|
45 |
-
|
46 |
-
<script type="text/javascript">
|
47 |
-
document.getElementById('reset-to-default').addEventListener('click', function(event) {
|
48 |
-
var check = confirm(
|
49 |
-
'<?php echo esc_js( __( 'Reset all options to default settings?', 'nggallery' ) ) ?>' +
|
50 |
-
'\n\n' +
|
51 |
-
'<?php echo esc_js( __( 'Choose [Cancel] to Stop, [OK] to proceed.', 'ngallery') ) ?>'
|
52 |
-
);
|
53 |
-
if(!check) {
|
54 |
-
event.preventDefault();
|
55 |
-
}
|
56 |
-
}, false);
|
57 |
-
|
58 |
-
document.getElementById('show-button').addEventListener('click', function() {
|
59 |
-
document.getElementById('delete-button').style.display = "block";
|
60 |
-
}, false);
|
61 |
-
|
62 |
-
document.getElementById('delete-button').addEventListener('click', function() {
|
63 |
-
var check = confirm(
|
64 |
-
'<?php echo esc_js( __( 'You are about to uninstall this plugin from WordPress. This action is not reversible.', 'nggallery' ) ) ?>' +
|
65 |
-
'\n\n' +
|
66 |
-
'<?php echo esc_js( __( 'Choose [Cancel] to Stop, [OK] to proceed.', 'ngallery') ) ?>'
|
67 |
-
);
|
68 |
-
if(!check) {
|
69 |
-
event.preventDefault();
|
70 |
-
}
|
71 |
-
}, false);
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
</script>
|
76 |
-
|
77 |
-
<?php
|
78 |
-
|
79 |
-
|
80 |
-
}
|
81 |
-
|
82 |
-
/**
|
83 |
-
* Handle the POST updates. This functions is called by the display() function, if used properly.
|
84 |
-
*/
|
85 |
-
protected function processor() {
|
86 |
-
global $ngg;
|
87 |
-
|
88 |
-
check_admin_referer('ngg_uninstall');
|
89 |
-
|
90 |
-
include_once ( dirname (__FILE__). '/class-ngg-installer.php');
|
91 |
-
|
92 |
-
if (isset($_POST['resetdefault'])) {
|
93 |
-
|
94 |
-
NGG_Installer::set_default_options();
|
95 |
-
$ngg->load_options();
|
96 |
-
|
97 |
-
nggGallery::show_message(__('Reset all settings to the default parameters.','nggallery'));
|
98 |
-
}
|
99 |
-
|
100 |
-
if (isset($_POST['uninstall'])) {
|
101 |
-
|
102 |
-
NGG_Installer::uninstall();
|
103 |
-
|
104 |
-
nggGallery::show_message(__('Uninstall successful! Now delete the plugin and enjoy your life!','nggallery'));
|
105 |
-
}
|
106 |
-
}
|
107 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
admin/js/ngg.ajax.js
CHANGED
@@ -14,10 +14,20 @@
|
|
14 |
run: function(index) {
|
15 |
s = this.settings;
|
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
var req = $.ajax({
|
18 |
type: "POST",
|
19 |
url: s.url,
|
20 |
-
data: "action=" + s.action + "&operation=" + s.operation + "&_wpnonce=" + s.nonce + "&image=" + s.ids[index],
|
|
|
21 |
cache: false,
|
22 |
timeout: 10000,
|
23 |
success: function(msg) {
|
@@ -55,10 +65,20 @@
|
|
55 |
|
56 |
readIDs: function(index, operation, next) {
|
57 |
s = this.settings;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
var req = $.ajax({
|
59 |
type: "POST",
|
60 |
url: s.url,
|
61 |
-
data:
|
62 |
dataType: "json",
|
63 |
cache: false,
|
64 |
timeout: 10000,
|
@@ -74,7 +94,7 @@
|
|
74 |
nggProgressBar.increase(index);
|
75 |
// parse the whole array
|
76 |
if (index < nggAjax.settings.ids.length)
|
77 |
-
nggAjax.readIDs(index);
|
78 |
else {
|
79 |
// and now run the image operation
|
80 |
index = 0;
|
@@ -106,7 +126,8 @@
|
|
106 |
error: nggAjaxSetup.error,
|
107 |
failure: nggAjaxSetup.failure,
|
108 |
timeout: 10000,
|
109 |
-
mode: "image"
|
|
|
110 |
}, this.settings, s);
|
111 |
|
112 |
/**
|
14 |
run: function(index) {
|
15 |
s = this.settings;
|
16 |
|
17 |
+
var data = {};
|
18 |
+
|
19 |
+
$.extend(data, {
|
20 |
+
action: this.settings.action,
|
21 |
+
operation: this.settings.operation,
|
22 |
+
'_wpnonce': this.settings.nonce,
|
23 |
+
image: this.settings.ids[index]
|
24 |
+
}, s.data);
|
25 |
+
|
26 |
var req = $.ajax({
|
27 |
type: "POST",
|
28 |
url: s.url,
|
29 |
+
//data: "action=" + s.action + "&operation=" + s.operation + "&_wpnonce=" + s.nonce + "&image=" + s.ids[index],
|
30 |
+
data: data,
|
31 |
cache: false,
|
32 |
timeout: 10000,
|
33 |
success: function(msg) {
|
65 |
|
66 |
readIDs: function(index, operation, next) {
|
67 |
s = this.settings;
|
68 |
+
|
69 |
+
var data = {};
|
70 |
+
|
71 |
+
$.extend(data, {
|
72 |
+
action: this.settings.action,
|
73 |
+
operation: operation,
|
74 |
+
'_wpnonce': this.settings.nonce,
|
75 |
+
image: this.settings.ids[index]
|
76 |
+
}, s.data);
|
77 |
+
|
78 |
var req = $.ajax({
|
79 |
type: "POST",
|
80 |
url: s.url,
|
81 |
+
data: data,
|
82 |
dataType: "json",
|
83 |
cache: false,
|
84 |
timeout: 10000,
|
94 |
nggProgressBar.increase(index);
|
95 |
// parse the whole array
|
96 |
if (index < nggAjax.settings.ids.length)
|
97 |
+
nggAjax.readIDs(index, operation, next);
|
98 |
else {
|
99 |
// and now run the image operation
|
100 |
index = 0;
|
126 |
error: nggAjaxSetup.error,
|
127 |
failure: nggAjaxSetup.failure,
|
128 |
timeout: 10000,
|
129 |
+
mode: "image",
|
130 |
+
data: {}
|
131 |
}, this.settings, s);
|
132 |
|
133 |
/**
|
admin/manage/class-ngg-abstract-image-manager.php
CHANGED
@@ -142,6 +142,9 @@ abstract class NGG_Abstract_Image_Manager extends NGG_Manager {
|
|
142 |
}
|
143 |
|
144 |
}
|
|
|
|
|
|
|
145 |
}
|
146 |
|
147 |
//TODO: This produce 300-400 queries !
|
142 |
}
|
143 |
|
144 |
}
|
145 |
+
|
146 |
+
//This is for backwards compatibility.
|
147 |
+
do_action( 'ngg_update_gallery', (int) $_GET['gid'], $_POST);
|
148 |
}
|
149 |
|
150 |
//TODO: This produce 300-400 queries !
|
admin/manage/class-ngg-gallery-list-table.php
CHANGED
@@ -129,7 +129,8 @@ class NGG_Gallery_List_Table extends WP_List_Table {
|
|
129 |
case 'description':
|
130 |
return $item->galdesc;
|
131 |
case 'author':
|
132 |
-
|
|
|
133 |
case 'page_id':
|
134 |
return $item->pageid;
|
135 |
case 'quantity':
|
129 |
case 'description':
|
130 |
return $item->galdesc;
|
131 |
case 'author':
|
132 |
+
$author = get_userdata( (int) $item->author );
|
133 |
+
return $author->display_name;
|
134 |
case 'page_id':
|
135 |
return $item->pageid;
|
136 |
case 'quantity':
|
admin/manage/class-ngg-image-list-table.php
CHANGED
@@ -315,6 +315,8 @@ class NGG_Image_List_Table extends WP_List_Table {
|
|
315 |
'add_tags' => __( 'Add tags', 'nggallery' ),
|
316 |
'delete_tags' => __( 'Delete tags', 'nggallery' ),
|
317 |
'overwrite_tags' => __( 'Overwrite tags', 'nggallery' ),
|
|
|
|
|
318 |
);
|
319 |
}
|
320 |
-
}
|
315 |
'add_tags' => __( 'Add tags', 'nggallery' ),
|
316 |
'delete_tags' => __( 'Delete tags', 'nggallery' ),
|
317 |
'overwrite_tags' => __( 'Overwrite tags', 'nggallery' ),
|
318 |
+
'set_title' => __( 'Set alt & title text', 'nggallery' ),
|
319 |
+
'set_descr' => __( 'Set description', 'nggallery' ),
|
320 |
);
|
321 |
}
|
322 |
+
}
|
admin/manage/class-ngg-image-manager.php
CHANGED
@@ -378,23 +378,23 @@ class NGG_Image_Manager extends NGG_Abstract_Image_Manager {
|
|
378 |
|
379 |
$parent_id = esc_attr($_POST['parent_id']);
|
380 |
$gallery_title = esc_attr($_POST['title']);
|
381 |
-
$gallery_name = $wpdb->get_var("SELECT name FROM $wpdb->nggallery WHERE gid = '$this->
|
382 |
|
383 |
// Create a WP page
|
384 |
global $user_ID;
|
385 |
|
386 |
$page['post_type'] = 'page';
|
387 |
-
$page['post_content'] = '[nggallery id=' . $this->
|
388 |
$page['post_parent'] = $parent_id;
|
389 |
$page['post_author'] = $user_ID;
|
390 |
$page['post_status'] = 'publish';
|
391 |
$page['post_title'] = $gallery_title == '' ? $gallery_name : $gallery_title;
|
392 |
-
$page = apply_filters('ngg_add_new_page', $page, $this->
|
393 |
|
394 |
$gallery_pageid = wp_insert_post ($page);
|
395 |
if ($gallery_pageid != 0) {
|
396 |
-
$result = $wpdb->query("UPDATE $wpdb->nggallery SET title= '$gallery_title', pageid = '$gallery_pageid' WHERE gid = '$this->
|
397 |
-
wp_cache_delete($this->
|
398 |
nggGallery::show_message( sprintf( __( 'New page <strong>%s</strong> (ID: %s) created.','nggallery'), $gallery_title, $gallery_pageid ));
|
399 |
}
|
400 |
|
378 |
|
379 |
$parent_id = esc_attr($_POST['parent_id']);
|
380 |
$gallery_title = esc_attr($_POST['title']);
|
381 |
+
$gallery_name = $wpdb->get_var("SELECT name FROM $wpdb->nggallery WHERE gid = '$this->id' ");
|
382 |
|
383 |
// Create a WP page
|
384 |
global $user_ID;
|
385 |
|
386 |
$page['post_type'] = 'page';
|
387 |
+
$page['post_content'] = '[nggallery id=' . $this->id . ']';
|
388 |
$page['post_parent'] = $parent_id;
|
389 |
$page['post_author'] = $user_ID;
|
390 |
$page['post_status'] = 'publish';
|
391 |
$page['post_title'] = $gallery_title == '' ? $gallery_name : $gallery_title;
|
392 |
+
$page = apply_filters('ngg_add_new_page', $page, $this->id);
|
393 |
|
394 |
$gallery_pageid = wp_insert_post ($page);
|
395 |
if ($gallery_pageid != 0) {
|
396 |
+
$result = $wpdb->query("UPDATE $wpdb->nggallery SET title= '$gallery_title', pageid = '$gallery_pageid' WHERE gid = '$this->id'");
|
397 |
+
wp_cache_delete($this->id, 'ngg_gallery');
|
398 |
nggGallery::show_message( sprintf( __( 'New page <strong>%s</strong> (ID: %s) created.','nggallery'), $gallery_title, $gallery_pageid ));
|
399 |
}
|
400 |
|
admin/manage/class-ngg-manager.php
CHANGED
@@ -119,6 +119,22 @@ abstract class NGG_Manager implements NGG_Displayable {
|
|
119 |
</div>
|
120 |
</form>
|
121 |
<!-- /#entertags -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
<!-- #selectgallery -->
|
123 |
<form id="select_gallery_dialog" method="POST" accept-charset="utf-8">
|
124 |
<?php wp_nonce_field( 'ngg_thickbox_form' ) ?>
|
@@ -225,6 +241,14 @@ abstract class NGG_Manager implements NGG_Displayable {
|
|
225 |
set_TB_command('tags', 'overwrite_tags');
|
226 |
bulkDialog('tags', '<?php echo esc_js(__('Overwrite','nggallery')); ?>', $selected);
|
227 |
break;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
case 'rotate_cw':
|
229 |
ajaxOperation('rotate_cw', '<?php echo esc_js(__('Rotate images','nggallery')); ?>', $selected);
|
230 |
break;
|
@@ -243,7 +267,7 @@ abstract class NGG_Manager implements NGG_Displayable {
|
|
243 |
}
|
244 |
|
245 |
function set_TB_command(id, command) {
|
246 |
-
jQuery('#' + id + "_dialog
|
247 |
}
|
248 |
|
249 |
function ajaxOperation(command, title, $selected, warning) {
|
@@ -407,6 +431,26 @@ abstract class NGG_Manager implements NGG_Displayable {
|
|
407 |
}
|
408 |
nggGallery::show_message( __( 'Tags changed', 'nggallery' ) );
|
409 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
410 |
return;
|
411 |
default:
|
412 |
return;
|
@@ -488,4 +532,4 @@ abstract class NGG_Manager implements NGG_Displayable {
|
|
488 |
}
|
489 |
}
|
490 |
}
|
491 |
-
}
|
119 |
</div>
|
120 |
</form>
|
121 |
<!-- /#entertags -->
|
122 |
+
<!-- #settext -->
|
123 |
+
<form id="settext_dialog" method="POST" accept-charset="utf-8">
|
124 |
+
<?php wp_nonce_field('ngg_thickbox_form') ?>
|
125 |
+
<input type="hidden" class="TB_type" name="TB_type" value="">
|
126 |
+
<input type="hidden" id="settext_imagelist" name="TB_imagelist" value="">
|
127 |
+
<input type="hidden" id="settext_bulkaction" name="TB_bulkaction" value="">
|
128 |
+
<input type="hidden" name="TB_action" value="">
|
129 |
+
|
130 |
+
<div style="text-align: center">
|
131 |
+
<label>
|
132 |
+
<?php _e( "Enter the text", 'nggallery' ); ?><br>
|
133 |
+
<input name="text" type="text" value="" style="width: 90%">
|
134 |
+
</label>
|
135 |
+
</div>
|
136 |
+
</form>
|
137 |
+
<!-- /#settext -->
|
138 |
<!-- #selectgallery -->
|
139 |
<form id="select_gallery_dialog" method="POST" accept-charset="utf-8">
|
140 |
<?php wp_nonce_field( 'ngg_thickbox_form' ) ?>
|
241 |
set_TB_command('tags', 'overwrite_tags');
|
242 |
bulkDialog('tags', '<?php echo esc_js(__('Overwrite','nggallery')); ?>', $selected);
|
243 |
break;
|
244 |
+
case "set_title":
|
245 |
+
set_TB_command('settext', 'set_title');
|
246 |
+
bulkDialog('settext', '<?php echo esc_js(__('Set alt and title text','nggallery')); ?>', $selected);
|
247 |
+
break;
|
248 |
+
case "set_descr":
|
249 |
+
set_TB_command('settext', 'set_descr');
|
250 |
+
bulkDialog('settext', '<?php echo esc_js(__('Set description','nggallery')); ?>', $selected);
|
251 |
+
break;
|
252 |
case 'rotate_cw':
|
253 |
ajaxOperation('rotate_cw', '<?php echo esc_js(__('Rotate images','nggallery')); ?>', $selected);
|
254 |
break;
|
267 |
}
|
268 |
|
269 |
function set_TB_command(id, command) {
|
270 |
+
jQuery('#' + id + "_dialog input[name=TB_action]").val(command);
|
271 |
}
|
272 |
|
273 |
function ajaxOperation(command, title, $selected, warning) {
|
431 |
}
|
432 |
nggGallery::show_message( __( 'Tags changed', 'nggallery' ) );
|
433 |
|
434 |
+
return;
|
435 |
+
case 'set_title':
|
436 |
+
$new_title = $_POST['text'];
|
437 |
+
if ( is_array( $list ) ) {
|
438 |
+
foreach ( $list as $pic_id ) {
|
439 |
+
nggdb::update_image($pic_id, false, false, false, $new_title);
|
440 |
+
}
|
441 |
+
}
|
442 |
+
nggGallery::show_message( __('Image title updated', 'nggallery') );
|
443 |
+
|
444 |
+
return;
|
445 |
+
case 'set_descr':
|
446 |
+
$new_descr = $_POST['text'];
|
447 |
+
if ( is_array( $list ) ) {
|
448 |
+
foreach ( $list as $pic_id ) {
|
449 |
+
nggdb::update_image($pic_id, false, false, $new_descr);
|
450 |
+
}
|
451 |
+
}
|
452 |
+
nggGallery::show_message( __('Image description updated', 'nggallery') );
|
453 |
+
|
454 |
return;
|
455 |
default:
|
456 |
return;
|
532 |
}
|
533 |
}
|
534 |
}
|
535 |
+
}
|
lang/nggallery-es_ES.mo
ADDED
Binary file
|
lang/nggallery-es_ES.po
ADDED
@@ -0,0 +1,3935 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: NextCellent\n"
|
4 |
+
"POT-Creation-Date: 2016-02-15 16:58-0300\n"
|
5 |
+
"PO-Revision-Date: 2016-02-15 17:11-0300\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: \n"
|
8 |
+
"Language: es_ES\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.8.7\n"
|
13 |
+
"X-Poedit-KeywordsList: _n;__;_e;esc_attr_e;esc_html_e\n"
|
14 |
+
"X-Poedit-Basepath: .\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
"X-Poedit-SearchPath-1: ..\n"
|
19 |
+
|
20 |
+
#: ../admin/ajax.php:372
|
21 |
+
msgid "You are not allowed to be here"
|
22 |
+
msgstr ""
|
23 |
+
|
24 |
+
#: ../admin/ajax.php:470
|
25 |
+
#, php-format
|
26 |
+
msgid "Could create image with %s x %s pixel"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: ../admin/class-ngg-adder.php:34 ../admin/class-ngg-adder.php:48
|
30 |
+
#: ../admin/class-ngg-adder.php:62 ../admin/class-ngg-adder.php:75
|
31 |
+
#: ../admin/class-ngg-album-manager.php:82
|
32 |
+
#: ../admin/class-ngg-album-manager.php:119
|
33 |
+
#: ../admin/class-ngg-album-manager.php:143 ../admin/manage/actions.php:12
|
34 |
+
msgid "Cheatin’ uh?"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: ../admin/class-ngg-adder.php:54 ../admin/class-ngg-adder.php:91
|
38 |
+
msgid "Upload failed!"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: ../admin/class-ngg-adder.php:81
|
42 |
+
msgid "Upload failed! "
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: ../admin/class-ngg-adder.php:88 ../admin/class-ngg-adder.php:335
|
46 |
+
#: ../admin/class-ngg-admin-launcher.php:296
|
47 |
+
msgid "You didn't select a gallery!"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
#: ../admin/class-ngg-adder.php:162 ../admin/class-ngg-admin-launcher.php:65
|
51 |
+
#: ../admin/class-ngg-admin-launcher.php:66
|
52 |
+
msgid "Add Gallery / Images"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: ../admin/class-ngg-adder.php:199
|
56 |
+
msgid "Image Files"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: ../admin/class-ngg-adder.php:224
|
60 |
+
msgid "remove"
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: ../admin/class-ngg-adder.php:225 ../admin/class-ngg-adder.php:488
|
64 |
+
msgid "Browse..."
|
65 |
+
msgstr ""
|
66 |
+
|
67 |
+
#: ../admin/class-ngg-adder.php:226 ../admin/class-ngg-adder.php:264
|
68 |
+
#: ../admin/class-ngg-adder.php:506 ../admin/class-ngg-adder.php:557
|
69 |
+
msgid "Upload images"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: ../admin/class-ngg-adder.php:307
|
73 |
+
#: ../admin/manage/class-ngg-image-manager.php:90
|
74 |
+
msgid ""
|
75 |
+
"This will change folder and file names (e.g. remove spaces, special "
|
76 |
+
"characters, ...)"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: ../admin/class-ngg-adder.php:309
|
80 |
+
#: ../admin/manage/class-ngg-image-manager.php:92
|
81 |
+
msgid "You will need to update your URLs if you link directly to the images."
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: ../admin/class-ngg-adder.php:311
|
85 |
+
#: ../admin/manage/class-ngg-image-manager.php:94
|
86 |
+
msgid "Press OK to proceed, and Cancel to stop."
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: ../admin/class-ngg-adder.php:343 ../admin/class-ngg-adder.php:351
|
90 |
+
msgid "You didn't select a file!"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: ../admin/class-ngg-adder.php:370 ../admin/class-ngg-admin-launcher.php:474
|
94 |
+
msgid "New gallery"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: ../admin/class-ngg-adder.php:373 ../admin/class-ngg-admin-launcher.php:482
|
98 |
+
#: ../admin/class-ngg-admin-launcher.php:519
|
99 |
+
#: ../admin/class-ngg-admin-launcher.php:619 ../admin/class-ngg-options.php:210
|
100 |
+
#: ../admin/manage/class-ngg-gallery-list-table.php:157
|
101 |
+
msgid "Images"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: ../admin/class-ngg-adder.php:376 ../admin/class-ngg-admin-launcher.php:486
|
105 |
+
msgid "ZIP file"
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: ../admin/class-ngg-adder.php:379 ../admin/class-ngg-adder.php:497
|
109 |
+
#: ../admin/class-ngg-admin-launcher.php:490
|
110 |
+
msgid "Import folder"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: ../admin/class-ngg-adder.php:390
|
114 |
+
#: ../admin/manage/class-ngg-gallery-manager.php:67
|
115 |
+
msgid "Add a new gallery"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: ../admin/class-ngg-adder.php:395 ../admin/class-ngg-album-manager.php:580
|
119 |
+
#: ../admin/manage/actions.php:128 ../admin/manage/actions.php:156
|
120 |
+
#: ../admin/manage/actions.php:181 ../admin/manage/actions.php:203
|
121 |
+
#: ../admin/manage/class-ngg-gallery-manager.php:83
|
122 |
+
msgid "Name"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: ../admin/class-ngg-adder.php:400
|
126 |
+
#, php-format
|
127 |
+
msgid "Create a new, empty gallery in the folder <strong>%s</strong>"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: ../admin/class-ngg-adder.php:403
|
131 |
+
#, php-format
|
132 |
+
msgid "Allowed characters for file and folder names are \"%s\"."
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: ../admin/class-ngg-adder.php:408 ../admin/class-ngg-admin-launcher.php:538
|
136 |
+
#: ../admin/class-ngg-style.php:294
|
137 |
+
#: ../admin/manage/class-ngg-gallery-list-table.php:154
|
138 |
+
#: ../admin/manage/class-ngg-image-list-table.php:187
|
139 |
+
#: ../admin/manage/class-ngg-image-list-table.php:236
|
140 |
+
#: ../admin/manage/class-ngg-image-manager.php:178
|
141 |
+
#: ../admin/media-upload.php:225
|
142 |
+
msgid "Description"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: ../admin/class-ngg-adder.php:412
|
146 |
+
msgid "Add a description. This is optional and can be changed later."
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: ../admin/class-ngg-adder.php:419
|
150 |
+
msgid "Add gallery"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: ../admin/class-ngg-adder.php:428
|
154 |
+
msgid "Upload a ZIP File"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: ../admin/class-ngg-adder.php:433
|
158 |
+
msgid "Select ZIP file"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: ../admin/class-ngg-adder.php:437
|
162 |
+
msgid "Upload a ZIP file with images"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: ../admin/class-ngg-adder.php:443
|
166 |
+
msgid "or enter URL"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: ../admin/class-ngg-adder.php:447
|
170 |
+
msgid "Import a ZIP file from a URL"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: ../admin/class-ngg-adder.php:453 ../admin/class-ngg-adder.php:512
|
174 |
+
msgid "in to"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: ../admin/class-ngg-adder.php:456
|
178 |
+
msgid "a new gallery"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: ../admin/class-ngg-adder.php:461
|
182 |
+
#, php-format
|
183 |
+
msgid "Note: the upload limit on your server is <strong>%s MB</strong>."
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: ../admin/class-ngg-adder.php:471
|
187 |
+
msgid "Start upload"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: ../admin/class-ngg-adder.php:480
|
191 |
+
msgid "Import an image folder"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: ../admin/class-ngg-adder.php:485
|
195 |
+
msgid "Import from server:"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: ../admin/class-ngg-adder.php:491
|
199 |
+
msgid "Note: you can change the default path in the gallery settings"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: ../admin/class-ngg-adder.php:514
|
203 |
+
msgid "Choose gallery"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: ../admin/class-ngg-adder.php:530
|
207 |
+
msgid "Drop your files in this window"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: ../admin/class-ngg-adder.php:532
|
211 |
+
msgid "Or"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: ../admin/class-ngg-adder.php:534
|
215 |
+
msgid "Select Files"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: ../admin/class-ngg-adder.php:553
|
219 |
+
msgid "Click here to use the browser upload instead"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: ../admin/class-ngg-adder.php:553
|
223 |
+
msgid "Use basic uploader"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: ../admin/class-ngg-adder.php:555
|
227 |
+
msgid "Advanced uploading"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: ../admin/class-ngg-adder.php:555
|
231 |
+
msgid "Use advanced uploader"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: ../admin/class-ngg-adder.php:560
|
235 |
+
#, php-format
|
236 |
+
msgid "Your images will be rescaled to max width %1$dpx or max height %2$dpx."
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: ../admin/class-ngg-admin-launcher.php:58
|
240 |
+
#: ../admin/class-ngg-admin-launcher.php:69
|
241 |
+
#: ../admin/class-ngg-admin-launcher.php:107
|
242 |
+
#: ../admin/class-ngg-admin-launcher.php:414
|
243 |
+
#: ../admin/class-ngg-admin-launcher.php:510
|
244 |
+
#: ../admin/manage/class-ngg-gallery-manager.php:33
|
245 |
+
msgid "Galleries"
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: ../admin/class-ngg-admin-launcher.php:61
|
249 |
+
#: ../admin/class-ngg-admin-launcher.php:528 ../nggallery.php:724
|
250 |
+
#: ../nggfunctions.php:966
|
251 |
+
msgid "Overview"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: ../admin/class-ngg-admin-launcher.php:73
|
255 |
+
#: ../admin/class-ngg-album-manager.php:286 ../nggallery.php:430
|
256 |
+
msgid "Albums"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: ../admin/class-ngg-admin-launcher.php:77 ../admin/class-ngg-options.php:334
|
260 |
+
#: ../admin/class-ngg-tag-manager.php:102
|
261 |
+
#: ../admin/manage/class-ngg-image-list-table.php:237 ../lib/meta.php:459
|
262 |
+
#: ../nggallery.php:438
|
263 |
+
msgid "Tags"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: ../admin/class-ngg-admin-launcher.php:81 ../admin/class-ngg-options.php:116
|
267 |
+
#: ../nggallery.php:446
|
268 |
+
msgid "Settings"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: ../admin/class-ngg-admin-launcher.php:86 ../nggallery.php:454
|
272 |
+
msgid "Style"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: ../admin/class-ngg-admin-launcher.php:91
|
276 |
+
msgid "Roles"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: ../admin/class-ngg-admin-launcher.php:97
|
280 |
+
#: ../admin/class-ngg-admin-launcher.php:114
|
281 |
+
msgid "Reset / Uninstall"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: ../admin/class-ngg-admin-launcher.php:110
|
285 |
+
msgid "Network settings"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: ../admin/class-ngg-admin-launcher.php:270
|
289 |
+
msgid "You do not have the correct permission"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: ../admin/class-ngg-admin-launcher.php:271
|
293 |
+
msgid "Unexpected Error"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: ../admin/class-ngg-admin-launcher.php:272
|
297 |
+
msgid "A failure occurred"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: ../admin/class-ngg-admin-launcher.php:276
|
301 |
+
msgid "You have attempted to queue too many files."
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: ../admin/class-ngg-admin-launcher.php:277
|
305 |
+
msgid "This file exceeds the maximum upload size for this site."
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: ../admin/class-ngg-admin-launcher.php:278
|
309 |
+
msgid "This file is empty. Please try another."
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: ../admin/class-ngg-admin-launcher.php:279
|
313 |
+
msgid "This file type is not allowed. Please try another."
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: ../admin/class-ngg-admin-launcher.php:280
|
317 |
+
msgid "This file is not an image. Please try another."
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: ../admin/class-ngg-admin-launcher.php:281
|
321 |
+
msgid "Memory exceeded. Please try another smaller file."
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: ../admin/class-ngg-admin-launcher.php:282
|
325 |
+
msgid "This is larger than the maximum size. Please try another."
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: ../admin/class-ngg-admin-launcher.php:283
|
329 |
+
msgid "An error occurred in the upload. Please try again later."
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: ../admin/class-ngg-admin-launcher.php:284
|
333 |
+
msgid ""
|
334 |
+
"There was a configuration error. Please contact the server administrator."
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: ../admin/class-ngg-admin-launcher.php:285
|
338 |
+
msgid "You may only upload 1 file."
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: ../admin/class-ngg-admin-launcher.php:286
|
342 |
+
msgid "HTTP error."
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: ../admin/class-ngg-admin-launcher.php:287
|
346 |
+
msgid "Upload failed."
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: ../admin/class-ngg-admin-launcher.php:288
|
350 |
+
msgid "IO error."
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: ../admin/class-ngg-admin-launcher.php:289
|
354 |
+
msgid "Security error."
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: ../admin/class-ngg-admin-launcher.php:290
|
358 |
+
msgid "File canceled."
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: ../admin/class-ngg-admin-launcher.php:291
|
362 |
+
msgid "Upload stopped."
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: ../admin/class-ngg-admin-launcher.php:292
|
366 |
+
msgid "Dismiss"
|
367 |
+
msgstr ""
|
368 |
+
|
369 |
+
#: ../admin/class-ngg-admin-launcher.php:293
|
370 |
+
msgid "Crunching…"
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: ../admin/class-ngg-admin-launcher.php:294
|
374 |
+
msgid "moved to the trash."
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: ../admin/class-ngg-admin-launcher.php:295
|
378 |
+
#, php-format
|
379 |
+
msgid "“%s” has failed to upload due to an error"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: ../admin/class-ngg-admin-launcher.php:318 ../nggallery.php:489
|
383 |
+
msgid "L O A D I N G"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: ../admin/class-ngg-admin-launcher.php:319 ../nggallery.php:490
|
387 |
+
msgid "Click to Close"
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: ../admin/class-ngg-admin-launcher.php:419
|
391 |
+
msgid ""
|
392 |
+
"Welcome to your NextCellent Dashboard! This screen gives you all kinds of "
|
393 |
+
"information about NextCellent at glance. You can get help for any screen by "
|
394 |
+
"clicking the Help tab in the upper corner."
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: ../admin/class-ngg-admin-launcher.php:428
|
398 |
+
msgid "The boxes on your overview screen are:"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: ../admin/class-ngg-admin-launcher.php:429 ../admin/class-ngg-overview.php:13
|
402 |
+
msgid "At a Glance"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#: ../admin/class-ngg-admin-launcher.php:430
|
406 |
+
msgid ""
|
407 |
+
"Shows some general information about your site, such as the number of "
|
408 |
+
"pictures, albums and galleries."
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: ../admin/class-ngg-admin-launcher.php:432 ../admin/class-ngg-overview.php:21
|
412 |
+
msgid "Latest News"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: ../admin/class-ngg-admin-launcher.php:433
|
416 |
+
msgid "The latest NextCellent news."
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: ../admin/class-ngg-admin-launcher.php:435 ../admin/class-ngg-overview.php:34
|
420 |
+
msgid "Related plugins"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: ../admin/class-ngg-admin-launcher.php:436
|
424 |
+
msgid "Shows plugins that extend NextCellent."
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: ../admin/class-ngg-admin-launcher.php:437
|
428 |
+
msgid "Pay attention"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: ../admin/class-ngg-admin-launcher.php:438
|
432 |
+
#, php-format
|
433 |
+
msgid ""
|
434 |
+
"third parties plugins that are compatible with NGG may not be "
|
435 |
+
"100% compatible with NextCellent Gallery!"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: ../admin/class-ngg-admin-launcher.php:441 ../admin/class-ngg-overview.php:17
|
439 |
+
msgid "Help me help YOU!"
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#: ../admin/class-ngg-admin-launcher.php:442
|
443 |
+
msgid "Shows general information about he plugin and some links."
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
#: ../admin/class-ngg-admin-launcher.php:445
|
447 |
+
msgid "Translation"
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
#: ../admin/class-ngg-admin-launcher.php:446
|
451 |
+
msgid "View information about the current translation."
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#: ../admin/class-ngg-admin-launcher.php:449 ../admin/class-ngg-overview.php:30
|
455 |
+
msgid "Server Settings"
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
#: ../admin/class-ngg-admin-launcher.php:450
|
459 |
+
msgid "Show all the server settings!."
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#: ../admin/class-ngg-admin-launcher.php:452 ../admin/class-ngg-overview.php:26
|
463 |
+
msgid "Plugin Check"
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: ../admin/class-ngg-admin-launcher.php:453
|
467 |
+
msgid "Check if there are known errors in your installation."
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: ../admin/class-ngg-admin-launcher.php:471
|
471 |
+
msgid "On this page you can add galleries and pictures to those galleries."
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
#: ../admin/class-ngg-admin-launcher.php:475
|
475 |
+
msgid "Add new galleries to NextCellent."
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: ../admin/class-ngg-admin-launcher.php:479
|
479 |
+
msgid "You must add a gallery before adding images!"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: ../admin/class-ngg-admin-launcher.php:483
|
483 |
+
msgid "Add new images to a gallery."
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: ../admin/class-ngg-admin-launcher.php:487
|
487 |
+
msgid "Add images from a ZIP file."
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: ../admin/class-ngg-admin-launcher.php:491
|
491 |
+
msgid "Import a folder from the server as a new gallery."
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: ../admin/class-ngg-admin-launcher.php:524
|
495 |
+
msgid "This box contains information and the various options a gallery had."
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: ../admin/class-ngg-admin-launcher.php:532
|
499 |
+
msgid "Manage a single gallery and the images it contains:"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: ../admin/class-ngg-admin-launcher.php:535
|
503 |
+
#: ../admin/class-ngg-album-manager.php:582
|
504 |
+
#: ../admin/manage/class-ngg-gallery-list-table.php:153
|
505 |
+
#: ../admin/manage/class-ngg-image-manager.php:164 ../lib/meta.php:457
|
506 |
+
#: ../widgets/class-ngg-media-rss-widget.php:90
|
507 |
+
msgid "Title"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: ../admin/class-ngg-admin-launcher.php:536
|
511 |
+
msgid ""
|
512 |
+
"The title of the gallery. This can be visible to the users of the website. "
|
513 |
+
"This has no effect on the gallery path."
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: ../admin/class-ngg-admin-launcher.php:539
|
517 |
+
msgid ""
|
518 |
+
"The description of the gallery. Albums using the \"extend\" template may "
|
519 |
+
"display this on the website. The description cannot contain HTML."
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: ../admin/class-ngg-admin-launcher.php:541
|
523 |
+
#: ../admin/manage/class-ngg-image-manager.php:211
|
524 |
+
msgid "Path"
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: ../admin/class-ngg-admin-launcher.php:542
|
528 |
+
msgid ""
|
529 |
+
"The path on the server to the folder containing this gallery. If you change "
|
530 |
+
"this, NextCellent will not move the gallery for you."
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: ../admin/class-ngg-admin-launcher.php:544
|
534 |
+
#: ../admin/manage/class-ngg-image-manager.php:221
|
535 |
+
#: ../admin/manage/class-ngg-search-manager.php:63
|
536 |
+
msgid "Gallery ID"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: ../admin/class-ngg-admin-launcher.php:545
|
540 |
+
msgid ""
|
541 |
+
"The internal ID used by NextCellent to represent this gallery. This "
|
542 |
+
"information can be useful for developers. A gallery ID should never change."
|
543 |
+
msgstr ""
|
544 |
+
|
545 |
+
#: ../admin/class-ngg-admin-launcher.php:547
|
546 |
+
#: ../admin/manage/class-ngg-image-manager.php:168
|
547 |
+
msgid "Page Link"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: ../admin/class-ngg-admin-launcher.php:548
|
551 |
+
msgid ""
|
552 |
+
"With this option you can select the behavior when an user clicks on a "
|
553 |
+
"gallery in an album. If the option is set to \"not linked\", the gallery "
|
554 |
+
"will be displayed on the same page. If you do select a page, the user will "
|
555 |
+
"be redirected to that page."
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: ../admin/class-ngg-admin-launcher.php:549
|
559 |
+
#, php-format
|
560 |
+
msgid "More information about this is available on this webpage: %s"
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: ../admin/class-ngg-admin-launcher.php:549
|
564 |
+
msgid "page"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: ../admin/class-ngg-admin-launcher.php:551
|
568 |
+
#: ../admin/manage/class-ngg-image-manager.php:182
|
569 |
+
msgid "Preview image"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: ../admin/class-ngg-admin-launcher.php:552
|
573 |
+
msgid ""
|
574 |
+
"This image will be shown when the gallery is shown on the website and it "
|
575 |
+
"needs a preview, e.g. an album. If you do not select a preview image, "
|
576 |
+
"NextCellent will use the last uploaded image of the gallery."
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
#: ../admin/class-ngg-admin-launcher.php:554 ../admin/class-ngg-style.php:291
|
580 |
+
#: ../admin/manage/class-ngg-gallery-list-table.php:155
|
581 |
+
#: ../admin/manage/class-ngg-image-manager.php:217 ../lib/meta.php:458
|
582 |
+
msgid "Author"
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: ../admin/class-ngg-admin-launcher.php:555
|
586 |
+
msgid "The user who created this gallery."
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: ../admin/class-ngg-admin-launcher.php:557
|
590 |
+
#: ../admin/manage/class-ngg-image-manager.php:224
|
591 |
+
msgid "Create new page"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: ../admin/class-ngg-admin-launcher.php:558
|
595 |
+
msgid ""
|
596 |
+
"This will create a new page with the same name as the gallery, and include a "
|
597 |
+
"shortcode for this gallery in it."
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: ../admin/class-ngg-admin-launcher.php:563 ../admin/class-ngg-options.php:447
|
601 |
+
#: ../admin/manage/class-ngg-image-manager.php:159
|
602 |
+
msgid "Gallery settings"
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
#: ../admin/class-ngg-admin-launcher.php:567
|
606 |
+
msgid "There are three buttons:"
|
607 |
+
msgstr ""
|
608 |
+
|
609 |
+
#: ../admin/class-ngg-admin-launcher.php:570
|
610 |
+
#: ../admin/manage/class-ngg-image-manager.php:243
|
611 |
+
msgid "Sort gallery"
|
612 |
+
msgstr ""
|
613 |
+
|
614 |
+
#: ../admin/class-ngg-admin-launcher.php:571
|
615 |
+
msgid ""
|
616 |
+
"Allows you to manually set the order of the images in the gallery. This will "
|
617 |
+
"only be enabled if you have selected the option \"Custom sort order\" in the "
|
618 |
+
"NextCellent settings."
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
#: ../admin/class-ngg-admin-launcher.php:573
|
622 |
+
#: ../admin/manage/class-ngg-image-manager.php:246
|
623 |
+
msgid "Scan folder for new images"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: ../admin/class-ngg-admin-launcher.php:574
|
627 |
+
msgid ""
|
628 |
+
"Scan the folder (the path of the gallery) for new images and add them to the "
|
629 |
+
"gallery. <strong>Warning!</strong> This will normalize and rename the images "
|
630 |
+
"that are added, e.g. spaces are removed."
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: ../admin/class-ngg-admin-launcher.php:576
|
634 |
+
msgid "Save"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: ../admin/class-ngg-admin-launcher.php:577
|
638 |
+
msgid "Save changes you have made to the gallery options."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: ../admin/class-ngg-admin-launcher.php:583
|
642 |
+
msgid "Buttons"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: ../admin/class-ngg-admin-launcher.php:592
|
646 |
+
msgid "Organize your galleries into albums."
|
647 |
+
msgstr ""
|
648 |
+
|
649 |
+
#: ../admin/class-ngg-admin-launcher.php:593
|
650 |
+
msgid ""
|
651 |
+
"First select an album from the dropdown and then drag the galleries you want "
|
652 |
+
"to add or remove from the selected album."
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: ../admin/class-ngg-admin-launcher.php:603
|
656 |
+
msgid "Organize your pictures with tags."
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: ../admin/class-ngg-admin-launcher.php:604
|
660 |
+
msgid "Rename, delete and edit tags. Use the rename function to merge tags."
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: ../admin/class-ngg-admin-launcher.php:614
|
664 |
+
msgid ""
|
665 |
+
"Edit all of NextCellent's options. The options are sorted in multiple "
|
666 |
+
"categories."
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: ../admin/class-ngg-admin-launcher.php:616 ../admin/class-ngg-options.php:209
|
670 |
+
msgid "General"
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: ../admin/class-ngg-admin-launcher.php:617
|
674 |
+
msgid ""
|
675 |
+
"General NextCellent options. Contains options for permalinks and related "
|
676 |
+
"images."
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: ../admin/class-ngg-admin-launcher.php:620
|
680 |
+
msgid "All image-related options. Also contains options for thumbnails."
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: ../admin/class-ngg-admin-launcher.php:622 ../admin/class-ngg-options.php:211
|
684 |
+
#: ../admin/class-ngg-overview.php:59 ../admin/functions.php:212
|
685 |
+
#: ../admin/functions.php:374 ../admin/manage/class-ngg-image-manager.php:155
|
686 |
+
#: ../admin/tinymce/window.php:120 ../admin/tinymce/window.php:153
|
687 |
+
#: ../admin/tinymce/window.php:277 ../admin/tinymce/window.php:398
|
688 |
+
#: ../admin/tinymce/window.php:449 ../lib/rewrite.php:220
|
689 |
+
#: ../lib/rewrite.php:229 ../nggallery.php:422
|
690 |
+
msgid "Gallery"
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: ../admin/class-ngg-admin-launcher.php:623
|
694 |
+
msgid ""
|
695 |
+
"Everything about galleries. From sorting options to the number of images, "
|
696 |
+
"it's all in here."
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: ../admin/class-ngg-admin-launcher.php:625 ../admin/class-ngg-options.php:212
|
700 |
+
#: ../admin/class-ngg-options.php:592
|
701 |
+
msgid "Effects"
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: ../admin/class-ngg-admin-launcher.php:626
|
705 |
+
msgid "Make your gallery look beautiful."
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: ../admin/class-ngg-admin-launcher.php:628 ../admin/class-ngg-options.php:213
|
709 |
+
#: ../admin/class-ngg-options.php:646 ../admin/tinymce/window.php:329
|
710 |
+
msgid "Watermark"
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: ../admin/class-ngg-admin-launcher.php:629
|
714 |
+
msgid "Who doesn't want theft-proof images?"
|
715 |
+
msgstr ""
|
716 |
+
|
717 |
+
#: ../admin/class-ngg-admin-launcher.php:631 ../admin/class-ngg-options.php:214
|
718 |
+
#: ../admin/class-ngg-options.php:476 ../admin/class-ngg-options.php:502
|
719 |
+
#: ../admin/class-ngg-options.php:798 ../admin/tinymce/window.php:159
|
720 |
+
#: ../lib/rewrite.php:218 ../widgets/class-ngg-slideshow-widget.php:28
|
721 |
+
#: ../widgets/class-ngg-slideshow-widget.php:93
|
722 |
+
msgid "Slideshow"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
#: ../admin/class-ngg-admin-launcher.php:632
|
726 |
+
msgid "Edit options for the slideshow."
|
727 |
+
msgstr ""
|
728 |
+
|
729 |
+
#: ../admin/class-ngg-admin-launcher.php:633
|
730 |
+
msgid "Don't forget to press save!"
|
731 |
+
msgstr ""
|
732 |
+
|
733 |
+
#: ../admin/class-ngg-admin-launcher.php:642
|
734 |
+
msgid "You can edit the css file to adjust how your gallery looks."
|
735 |
+
msgstr ""
|
736 |
+
|
737 |
+
#: ../admin/class-ngg-admin-launcher.php:644
|
738 |
+
msgid ""
|
739 |
+
"When you save an edited file, NextCellent automatically saves it as a copy "
|
740 |
+
"in the folder ngg_styles. This protects your changes from upgrades."
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: ../admin/class-ngg-admin-launcher.php:654
|
744 |
+
msgid ""
|
745 |
+
"You can assign the lowest user role that has access to a certain feature. "
|
746 |
+
"Needless to say, all greater user roles will also have access to that "
|
747 |
+
"feature."
|
748 |
+
msgstr ""
|
749 |
+
|
750 |
+
#: ../admin/class-ngg-admin-launcher.php:656
|
751 |
+
msgid ""
|
752 |
+
"NextCellent also works with various plugins that extend the default roles "
|
753 |
+
"capabilities."
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: ../admin/class-ngg-admin-launcher.php:666
|
757 |
+
msgid ""
|
758 |
+
"If 'someone' messed with your settings (yeah, definitely not you), you can "
|
759 |
+
"reset them here."
|
760 |
+
msgstr ""
|
761 |
+
|
762 |
+
#: ../admin/class-ngg-admin-launcher.php:668
|
763 |
+
msgid "Attention!"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: ../admin/class-ngg-admin-launcher.php:669
|
767 |
+
msgid ""
|
768 |
+
"You should not use the Uninstall Plugin button, unless you know what you're "
|
769 |
+
"doing! It should never be necessary to press it."
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: ../admin/class-ngg-admin-launcher.php:682
|
773 |
+
msgid "For more information:"
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
#: ../admin/class-ngg-admin-launcher.php:683
|
777 |
+
msgid "Support Forums"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: ../admin/class-ngg-admin-launcher.php:685
|
781 |
+
msgid "Source Code"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: ../admin/class-ngg-album-manager.php:92
|
785 |
+
#: ../admin/class-ngg-album-manager.php:112
|
786 |
+
#: ../admin/class-ngg-album-manager.php:161
|
787 |
+
msgid "Updated successfully"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: ../admin/class-ngg-album-manager.php:131
|
791 |
+
msgid "Album deleted"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: ../admin/class-ngg-album-manager.php:277 ../admin/class-ngg-roles.php:47
|
795 |
+
msgid "Edit Album"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: ../admin/class-ngg-album-manager.php:294
|
799 |
+
#: ../admin/class-ngg-album-manager.php:352
|
800 |
+
msgid "Select album"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: ../admin/class-ngg-album-manager.php:296
|
804 |
+
msgid "No album selected"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: ../admin/class-ngg-album-manager.php:307
|
808 |
+
msgid "Update"
|
809 |
+
msgstr ""
|
810 |
+
|
811 |
+
#: ../admin/class-ngg-album-manager.php:310
|
812 |
+
msgid "Edit album"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: ../admin/class-ngg-album-manager.php:314
|
816 |
+
#: ../admin/class-ngg-tag-manager.php:229
|
817 |
+
#: ../admin/manage/class-ngg-gallery-list-table.php:210
|
818 |
+
#: ../admin/manage/class-ngg-image-list-table.php:289
|
819 |
+
msgid "Delete"
|
820 |
+
msgstr ""
|
821 |
+
|
822 |
+
#: ../admin/class-ngg-album-manager.php:320
|
823 |
+
msgid "Add new album"
|
824 |
+
msgstr ""
|
825 |
+
|
826 |
+
#: ../admin/class-ngg-album-manager.php:322
|
827 |
+
msgid "Add"
|
828 |
+
msgstr ""
|
829 |
+
|
830 |
+
#: ../admin/class-ngg-album-manager.php:334
|
831 |
+
msgid "Show / hide used galleries"
|
832 |
+
msgstr ""
|
833 |
+
|
834 |
+
#: ../admin/class-ngg-album-manager.php:335
|
835 |
+
msgid "[Show all]"
|
836 |
+
msgstr ""
|
837 |
+
|
838 |
+
#: ../admin/class-ngg-album-manager.php:336
|
839 |
+
msgid "Maximize the widget content"
|
840 |
+
msgstr ""
|
841 |
+
|
842 |
+
#: ../admin/class-ngg-album-manager.php:337
|
843 |
+
msgid "[Maximize]"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: ../admin/class-ngg-album-manager.php:338
|
847 |
+
msgid "Minimize the widget content"
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: ../admin/class-ngg-album-manager.php:339
|
851 |
+
msgid "[Minimize]"
|
852 |
+
msgstr ""
|
853 |
+
|
854 |
+
#: ../admin/class-ngg-album-manager.php:341
|
855 |
+
msgid ""
|
856 |
+
"After you create and select a album, you can drag and drop a gallery or "
|
857 |
+
"another album into your new album below"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: ../admin/class-ngg-album-manager.php:368
|
861 |
+
msgid "Select gallery"
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: ../admin/class-ngg-album-manager.php:398
|
865 |
+
msgid "Album ID"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: ../admin/class-ngg-album-manager.php:412
|
869 |
+
msgid "No album selected!"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: ../admin/class-ngg-album-manager.php:436
|
873 |
+
msgid "Album name:"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: ../admin/class-ngg-album-manager.php:442
|
877 |
+
msgid "Album description:"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: ../admin/class-ngg-album-manager.php:448
|
881 |
+
msgid "Select a preview image:"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: ../admin/class-ngg-album-manager.php:451
|
885 |
+
#: ../admin/class-ngg-album-manager.php:454
|
886 |
+
msgid "No picture"
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: ../admin/class-ngg-album-manager.php:466
|
890 |
+
msgid "Page Link to"
|
891 |
+
msgstr ""
|
892 |
+
|
893 |
+
#: ../admin/class-ngg-album-manager.php:468
|
894 |
+
#: ../admin/manage/class-ngg-image-manager.php:172
|
895 |
+
msgid "Not linked"
|
896 |
+
msgstr ""
|
897 |
+
|
898 |
+
#: ../admin/class-ngg-album-manager.php:482
|
899 |
+
#: ../admin/manage/class-ngg-manager.php:308
|
900 |
+
msgid "OK"
|
901 |
+
msgstr ""
|
902 |
+
|
903 |
+
#: ../admin/class-ngg-album-manager.php:485
|
904 |
+
#: ../admin/manage/class-ngg-manager.php:300 ../admin/tinymce/window.php:472
|
905 |
+
msgid "Cancel"
|
906 |
+
msgstr ""
|
907 |
+
|
908 |
+
#: ../admin/class-ngg-album-manager.php:584 ../lib/rewrite.php:232
|
909 |
+
msgid "Page"
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: ../admin/class-ngg-installer.php:29
|
913 |
+
msgid "Sorry, NextCellent Gallery works only with a role called administrator"
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: ../admin/class-ngg-installer.php:112
|
917 |
+
msgid ""
|
918 |
+
"NextCellent Gallery : Tables could not created, please check your database "
|
919 |
+
"settings"
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: ../admin/class-ngg-installer.php:172
|
923 |
+
msgid "[Show as slideshow]"
|
924 |
+
msgstr "[Mostrar como slide]"
|
925 |
+
|
926 |
+
#: ../admin/class-ngg-installer.php:173
|
927 |
+
msgid "[Show picture list]"
|
928 |
+
msgstr "[Mostrar lista imágenes]"
|
929 |
+
|
930 |
+
#: ../admin/class-ngg-options.php:72
|
931 |
+
msgid "Settings updated successfully"
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: ../admin/class-ngg-options.php:90
|
935 |
+
msgid "Cache cleared"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: ../admin/class-ngg-options.php:227
|
939 |
+
msgid "General settings"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: ../admin/class-ngg-options.php:233 ../admin/wpmu.php:85
|
943 |
+
msgid "Gallery path"
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#: ../admin/class-ngg-options.php:236
|
947 |
+
msgid "This is the default path for all galleries"
|
948 |
+
msgstr ""
|
949 |
+
|
950 |
+
#: ../admin/class-ngg-options.php:240 ../admin/wpmu.php:95
|
951 |
+
msgid "Silent database upgrade"
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: ../admin/class-ngg-options.php:243 ../admin/wpmu.php:98
|
955 |
+
msgid "Update the database without notice."
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: ../admin/class-ngg-options.php:247
|
959 |
+
msgid "Image files"
|
960 |
+
msgstr ""
|
961 |
+
|
962 |
+
#: ../admin/class-ngg-options.php:251
|
963 |
+
msgid "Delete files when removing a gallery from the database"
|
964 |
+
msgstr ""
|
965 |
+
|
966 |
+
#: ../admin/class-ngg-options.php:256
|
967 |
+
msgid "Select graphic library"
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: ../admin/class-ngg-options.php:261
|
971 |
+
msgid "GD Library"
|
972 |
+
msgstr ""
|
973 |
+
|
974 |
+
#: ../admin/class-ngg-options.php:265
|
975 |
+
msgid "ImageMagick (Experimental)"
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: ../admin/class-ngg-options.php:269
|
979 |
+
msgid "Path to the ImageMagick library:"
|
980 |
+
msgstr ""
|
981 |
+
|
982 |
+
#: ../admin/class-ngg-options.php:275
|
983 |
+
msgid "Media RSS feed"
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: ../admin/class-ngg-options.php:278
|
987 |
+
msgid "Add a RSS feed to you blog header. Useful for CoolIris/PicLens"
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
#: ../admin/class-ngg-options.php:282
|
991 |
+
msgid "PicLens/CoolIris"
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: ../admin/class-ngg-options.php:285
|
995 |
+
msgid "Include support for PicLens and CoolIris"
|
996 |
+
msgstr ""
|
997 |
+
|
998 |
+
#: ../admin/class-ngg-options.php:286
|
999 |
+
msgid ""
|
1000 |
+
"When activated, JavaScript is added to your site footer. Make sure that "
|
1001 |
+
"wp_footer is called in your theme."
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: ../admin/class-ngg-options.php:290
|
1005 |
+
msgid "Permalinks"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: ../admin/class-ngg-options.php:293
|
1009 |
+
msgid "Use permalinks"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: ../admin/class-ngg-options.php:296
|
1013 |
+
msgid "Adds a static link to all images"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: ../admin/class-ngg-options.php:297
|
1017 |
+
msgid ""
|
1018 |
+
"When activating this option, you need to update your permalink structure once"
|
1019 |
+
msgstr ""
|
1020 |
+
|
1021 |
+
#: ../admin/class-ngg-options.php:301
|
1022 |
+
msgid "Gallery slug:"
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: ../admin/class-ngg-options.php:307
|
1026 |
+
msgid "Recreate URLs"
|
1027 |
+
msgstr ""
|
1028 |
+
|
1029 |
+
#: ../admin/class-ngg-options.php:309
|
1030 |
+
msgid "Start now »"
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: ../admin/class-ngg-options.php:310
|
1034 |
+
msgid "If you've changed these settings, you'll have to recreate the URLs."
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
+
#: ../admin/class-ngg-options.php:314
|
1038 |
+
msgid "Related images"
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: ../admin/class-ngg-options.php:317
|
1042 |
+
msgid "Add related images"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: ../admin/class-ngg-options.php:320
|
1046 |
+
msgid "This will add related images to every post"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: ../admin/class-ngg-options.php:324
|
1050 |
+
msgid "Match with"
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: ../admin/class-ngg-options.php:329
|
1054 |
+
msgid "Categories"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: ../admin/class-ngg-options.php:340
|
1058 |
+
msgid "Max. number of images"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: ../admin/class-ngg-options.php:343
|
1062 |
+
msgid "0 will show all images"
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: ../admin/class-ngg-options.php:347 ../admin/class-ngg-options.php:436
|
1066 |
+
#: ../admin/class-ngg-options.php:582 ../admin/class-ngg-options.php:629
|
1067 |
+
#: ../admin/class-ngg-options.php:748 ../admin/class-ngg-options.php:907
|
1068 |
+
#: ../admin/manage/class-ngg-image-list-table.php:95
|
1069 |
+
#: ../admin/manage/class-ngg-image-manager.php:249 ../admin/wpmu.php:149
|
1070 |
+
msgid "Save Changes"
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: ../admin/class-ngg-options.php:357
|
1074 |
+
msgid "Image settings"
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: ../admin/class-ngg-options.php:363
|
1078 |
+
#: ../admin/manage/class-ngg-gallery-list-table.php:213
|
1079 |
+
#: ../admin/manage/class-ngg-image-list-table.php:307
|
1080 |
+
#: ../admin/manage/class-ngg-manager.php:194
|
1081 |
+
#: ../admin/manage/class-ngg-manager.php:349
|
1082 |
+
msgid "Resize images"
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: ../admin/class-ngg-options.php:365 ../admin/class-ngg-options.php:410
|
1086 |
+
#: ../admin/class-ngg-options.php:810 ../admin/manage/actions.php:317
|
1087 |
+
#: ../admin/manage/class-ngg-manager.php:60
|
1088 |
+
#: ../admin/manage/class-ngg-manager.php:83 ../admin/tinymce/window.php:210
|
1089 |
+
#: ../admin/tinymce/window.php:318
|
1090 |
+
msgid "Width"
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: ../admin/class-ngg-options.php:367 ../admin/class-ngg-options.php:412
|
1094 |
+
#: ../admin/class-ngg-options.php:812 ../admin/manage/actions.php:325
|
1095 |
+
#: ../admin/manage/class-ngg-manager.php:62
|
1096 |
+
#: ../admin/manage/class-ngg-manager.php:85 ../admin/tinymce/window.php:211
|
1097 |
+
#: ../admin/tinymce/window.php:320
|
1098 |
+
msgid "Height"
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: ../admin/class-ngg-options.php:369 ../admin/manage/class-ngg-manager.php:65
|
1102 |
+
msgid ""
|
1103 |
+
"Width and height (in pixels). NextCellent Gallery will keep the ratio size."
|
1104 |
+
msgstr ""
|
1105 |
+
|
1106 |
+
#: ../admin/class-ngg-options.php:373
|
1107 |
+
msgid "Image quality"
|
1108 |
+
msgstr ""
|
1109 |
+
|
1110 |
+
#: ../admin/class-ngg-options.php:377
|
1111 |
+
msgid "Backup original"
|
1112 |
+
msgstr ""
|
1113 |
+
|
1114 |
+
#: ../admin/class-ngg-options.php:381
|
1115 |
+
msgid "Create a backup for the resized images"
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: ../admin/class-ngg-options.php:386
|
1119 |
+
msgid "Automatically resize"
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: ../admin/class-ngg-options.php:390
|
1123 |
+
msgid "Automatically resize images on upload."
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: ../admin/class-ngg-options.php:395
|
1127 |
+
msgid "Thumbnail settings"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: ../admin/class-ngg-options.php:398
|
1131 |
+
msgid "Different sizes"
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: ../admin/class-ngg-options.php:401
|
1135 |
+
msgid ""
|
1136 |
+
"Allows you to make thumbnails with dimensions that differ from the rest of "
|
1137 |
+
"the gallery."
|
1138 |
+
msgstr ""
|
1139 |
+
|
1140 |
+
#: ../admin/class-ngg-options.php:405
|
1141 |
+
msgid ""
|
1142 |
+
"Please note: if you change the settings below settings, you need to recreate "
|
1143 |
+
"the thumbnails under -> Manage Gallery ."
|
1144 |
+
msgstr ""
|
1145 |
+
|
1146 |
+
#: ../admin/class-ngg-options.php:408
|
1147 |
+
msgid "Thumbnail size"
|
1148 |
+
msgstr ""
|
1149 |
+
|
1150 |
+
#: ../admin/class-ngg-options.php:414
|
1151 |
+
msgid "These values are maximum values."
|
1152 |
+
msgstr ""
|
1153 |
+
|
1154 |
+
#: ../admin/class-ngg-options.php:418 ../admin/manage/class-ngg-manager.php:94
|
1155 |
+
msgid "Fixed size"
|
1156 |
+
msgstr ""
|
1157 |
+
|
1158 |
+
#: ../admin/class-ngg-options.php:421
|
1159 |
+
msgid "Ignore the aspect ratio, so no portrait thumbnails."
|
1160 |
+
msgstr ""
|
1161 |
+
|
1162 |
+
#: ../admin/class-ngg-options.php:425
|
1163 |
+
msgid "Thumbnail quality"
|
1164 |
+
msgstr ""
|
1165 |
+
|
1166 |
+
#: ../admin/class-ngg-options.php:429
|
1167 |
+
msgid "Single picture"
|
1168 |
+
msgstr ""
|
1169 |
+
|
1170 |
+
#: ../admin/class-ngg-options.php:432
|
1171 |
+
msgid "Clear cache folder"
|
1172 |
+
msgstr ""
|
1173 |
+
|
1174 |
+
#: ../admin/class-ngg-options.php:433
|
1175 |
+
msgid "Proceed now »"
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: ../admin/class-ngg-options.php:453
|
1179 |
+
msgid "Inline gallery"
|
1180 |
+
msgstr ""
|
1181 |
+
|
1182 |
+
#: ../admin/class-ngg-options.php:456
|
1183 |
+
msgid "Galleries will not be shown on a subpage, but on the same page."
|
1184 |
+
msgstr ""
|
1185 |
+
|
1186 |
+
#: ../admin/class-ngg-options.php:460
|
1187 |
+
msgid "Images per page"
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: ../admin/class-ngg-options.php:463 ../admin/class-ngg-options.php:902
|
1191 |
+
msgid "images"
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: ../admin/class-ngg-options.php:464
|
1195 |
+
msgid "0 will disable pagination and show all images on one page."
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: ../admin/class-ngg-options.php:468
|
1199 |
+
msgid "Columns"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: ../admin/class-ngg-options.php:471
|
1203 |
+
msgid "columns per page"
|
1204 |
+
msgstr ""
|
1205 |
+
|
1206 |
+
#: ../admin/class-ngg-options.php:472
|
1207 |
+
msgid ""
|
1208 |
+
"0 will display as much columns as possible. This is normally only required "
|
1209 |
+
"for captions below the images."
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: ../admin/class-ngg-options.php:480
|
1213 |
+
msgid "Enable slideshow"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: ../admin/class-ngg-options.php:484
|
1217 |
+
msgid "Text to show:"
|
1218 |
+
msgstr ""
|
1219 |
+
|
1220 |
+
#: ../admin/class-ngg-options.php:488
|
1221 |
+
msgid ""
|
1222 |
+
"This is the text the visitors will have to click to switch between display "
|
1223 |
+
"modes."
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: ../admin/class-ngg-options.php:492
|
1227 |
+
msgid "Show first"
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: ../admin/class-ngg-options.php:497
|
1231 |
+
#: ../widgets/class-ngg-gallery-widget.php:110
|
1232 |
+
msgid "Thumbnails"
|
1233 |
+
msgstr ""
|
1234 |
+
|
1235 |
+
#: ../admin/class-ngg-options.php:505
|
1236 |
+
msgid "Choose what visitors will see first."
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: ../admin/class-ngg-options.php:509
|
1240 |
+
msgid "ImageBrowser"
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: ../admin/class-ngg-options.php:513
|
1244 |
+
msgid "Use ImageBrowser instead of another effect."
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
+
#: ../admin/class-ngg-options.php:518
|
1248 |
+
msgid "Hidden images"
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: ../admin/class-ngg-options.php:522
|
1252 |
+
msgid ""
|
1253 |
+
"Loads all images for the modal window, when pagination is used (like "
|
1254 |
+
"Thickbox, Lightbox etc.)."
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: ../admin/class-ngg-options.php:524
|
1258 |
+
msgid "Note: this increases the page load (possibly a lot)"
|
1259 |
+
msgstr ""
|
1260 |
+
|
1261 |
+
#: ../admin/class-ngg-options.php:528
|
1262 |
+
msgid "AJAX pagination"
|
1263 |
+
msgstr ""
|
1264 |
+
|
1265 |
+
#: ../admin/class-ngg-options.php:532
|
1266 |
+
msgid "Use AJAX pagination to browse images without reloading the page."
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: ../admin/class-ngg-options.php:534
|
1270 |
+
msgid "Note: works only in combination with the Shutter effect."
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: ../admin/class-ngg-options.php:538
|
1274 |
+
msgid "Sort options"
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: ../admin/class-ngg-options.php:541
|
1278 |
+
msgid "Sort thumbnails"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: ../admin/class-ngg-options.php:546
|
1282 |
+
msgid "Custom order"
|
1283 |
+
msgstr ""
|
1284 |
+
|
1285 |
+
#: ../admin/class-ngg-options.php:550
|
1286 |
+
#: ../admin/manage/class-ngg-sort-manager.php:106
|
1287 |
+
msgid "Image ID"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: ../admin/class-ngg-options.php:554
|
1291 |
+
msgid "File name"
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: ../admin/class-ngg-options.php:558
|
1295 |
+
msgid "Alt / Title text"
|
1296 |
+
msgstr ""
|
1297 |
+
|
1298 |
+
#: ../admin/class-ngg-options.php:562 ../view/imagebrowser-exif.php:58
|
1299 |
+
msgid "Date / Time"
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: ../admin/class-ngg-options.php:569
|
1303 |
+
msgid "Sort direction"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: ../admin/class-ngg-options.php:573
|
1307 |
+
#: ../admin/manage/class-ngg-sort-manager.php:126
|
1308 |
+
msgid "Ascending"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: ../admin/class-ngg-options.php:577
|
1312 |
+
#: ../admin/manage/class-ngg-sort-manager.php:131
|
1313 |
+
msgid "Descending"
|
1314 |
+
msgstr ""
|
1315 |
+
|
1316 |
+
#: ../admin/class-ngg-options.php:594
|
1317 |
+
msgid ""
|
1318 |
+
"Here you can select the thumbnail effect, NextCellent Gallery will integrate "
|
1319 |
+
"the required HTML code in the images. Please note that only the Shutter and "
|
1320 |
+
"Thickbox effect will automatic added to your theme."
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: ../admin/class-ngg-options.php:595
|
1324 |
+
msgid "There are some placeholders available you can use in the code below."
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: ../admin/class-ngg-options.php:598
|
1328 |
+
msgid "The gallery name."
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: ../admin/class-ngg-options.php:599
|
1332 |
+
msgid "The width of the image."
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: ../admin/class-ngg-options.php:600
|
1336 |
+
msgid "The height of the image."
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: ../admin/class-ngg-options.php:607
|
1340 |
+
msgid "JavaScript Thumbnail effect"
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: ../admin/class-ngg-options.php:610 ../admin/media-upload.php:232
|
1344 |
+
msgid "None"
|
1345 |
+
msgstr ""
|
1346 |
+
|
1347 |
+
#: ../admin/class-ngg-options.php:611
|
1348 |
+
msgid "Thickbox"
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: ../admin/class-ngg-options.php:612
|
1352 |
+
msgid "Lightbox"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: ../admin/class-ngg-options.php:613
|
1356 |
+
msgid "Highslide"
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: ../admin/class-ngg-options.php:614
|
1360 |
+
msgid "Shutter"
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: ../admin/class-ngg-options.php:615
|
1364 |
+
msgid "PhotoSwipe"
|
1365 |
+
msgstr ""
|
1366 |
+
|
1367 |
+
#: ../admin/class-ngg-options.php:616 ../admin/tinymce/window.php:184
|
1368 |
+
msgid "Custom"
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: ../admin/class-ngg-options.php:621
|
1372 |
+
msgid "Link Code line"
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: ../admin/class-ngg-options.php:647
|
1376 |
+
msgid ""
|
1377 |
+
"Please note : you can only activate the watermark under -> Manage Galleries. "
|
1378 |
+
"This action cannot be undone."
|
1379 |
+
msgstr ""
|
1380 |
+
|
1381 |
+
#: ../admin/class-ngg-options.php:652
|
1382 |
+
msgid "Preview"
|
1383 |
+
msgstr ""
|
1384 |
+
|
1385 |
+
#: ../admin/class-ngg-options.php:653
|
1386 |
+
msgid "Select an image"
|
1387 |
+
msgstr ""
|
1388 |
+
|
1389 |
+
#: ../admin/class-ngg-options.php:658
|
1390 |
+
msgid "View full image"
|
1391 |
+
msgstr ""
|
1392 |
+
|
1393 |
+
#: ../admin/class-ngg-options.php:662 ../admin/class-ngg-options.php:666
|
1394 |
+
msgid "Position"
|
1395 |
+
msgstr ""
|
1396 |
+
|
1397 |
+
#: ../admin/class-ngg-options.php:686
|
1398 |
+
msgid "Offset"
|
1399 |
+
msgstr ""
|
1400 |
+
|
1401 |
+
#: ../admin/class-ngg-options.php:701
|
1402 |
+
msgid "Use image as watermark"
|
1403 |
+
msgstr ""
|
1404 |
+
|
1405 |
+
#: ../admin/class-ngg-options.php:704
|
1406 |
+
msgid "URL to file"
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: ../admin/class-ngg-options.php:708
|
1410 |
+
msgid "Use text as watermark"
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: ../admin/class-ngg-options.php:711
|
1414 |
+
msgid "Font"
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: ../admin/class-ngg-options.php:723
|
1418 |
+
msgid "This function will not work, cause you need the FreeType library"
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: ../admin/class-ngg-options.php:725
|
1422 |
+
msgid ""
|
1423 |
+
"You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: ../admin/class-ngg-options.php:731 ../admin/manage/class-ngg-manager.php:81
|
1427 |
+
#: ../admin/media-upload.php:242
|
1428 |
+
msgid "Size"
|
1429 |
+
msgstr ""
|
1430 |
+
|
1431 |
+
#: ../admin/class-ngg-options.php:735
|
1432 |
+
msgid "Color"
|
1433 |
+
msgstr ""
|
1434 |
+
|
1435 |
+
#: ../admin/class-ngg-options.php:739
|
1436 |
+
msgid "Text"
|
1437 |
+
msgstr ""
|
1438 |
+
|
1439 |
+
#: ../admin/class-ngg-options.php:743
|
1440 |
+
msgid "Opaque"
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: ../admin/class-ngg-options.php:801
|
1444 |
+
msgid "Fit to space"
|
1445 |
+
msgstr ""
|
1446 |
+
|
1447 |
+
#: ../admin/class-ngg-options.php:804
|
1448 |
+
#: ../widgets/class-ngg-slideshow-widget.php:128
|
1449 |
+
msgid "Let the slideshow fit in the available space."
|
1450 |
+
msgstr ""
|
1451 |
+
|
1452 |
+
#: ../admin/class-ngg-options.php:808
|
1453 |
+
msgid "Default size"
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: ../admin/class-ngg-options.php:817
|
1457 |
+
msgid "Transition / Fade effect"
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
+
#: ../admin/class-ngg-options.php:822
|
1461 |
+
msgid "Attention Seekers"
|
1462 |
+
msgstr ""
|
1463 |
+
|
1464 |
+
#: ../admin/class-ngg-options.php:823
|
1465 |
+
msgid "Bouncing Entrances"
|
1466 |
+
msgstr ""
|
1467 |
+
|
1468 |
+
#: ../admin/class-ngg-options.php:824
|
1469 |
+
msgid "Fading Entrances"
|
1470 |
+
msgstr ""
|
1471 |
+
|
1472 |
+
#: ../admin/class-ngg-options.php:825
|
1473 |
+
msgid "Fading Exits"
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: ../admin/class-ngg-options.php:826
|
1477 |
+
msgid "Flippers"
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: ../admin/class-ngg-options.php:827
|
1481 |
+
msgid "Lightspeed"
|
1482 |
+
msgstr ""
|
1483 |
+
|
1484 |
+
#: ../admin/class-ngg-options.php:828
|
1485 |
+
msgid "Rotating Entrances"
|
1486 |
+
msgstr ""
|
1487 |
+
|
1488 |
+
#: ../admin/class-ngg-options.php:829
|
1489 |
+
msgid "Rotating Exits"
|
1490 |
+
msgstr ""
|
1491 |
+
|
1492 |
+
#: ../admin/class-ngg-options.php:830
|
1493 |
+
msgid "Specials"
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: ../admin/class-ngg-options.php:831
|
1497 |
+
msgid "Zoom Entrances"
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: ../admin/class-ngg-options.php:840
|
1501 |
+
msgid "These effects are powered by"
|
1502 |
+
msgstr ""
|
1503 |
+
|
1504 |
+
#: ../admin/class-ngg-options.php:840
|
1505 |
+
msgid "Click here for examples of all effects and to learn more."
|
1506 |
+
msgstr ""
|
1507 |
+
|
1508 |
+
#: ../admin/class-ngg-options.php:844
|
1509 |
+
msgid "Loop"
|
1510 |
+
msgstr ""
|
1511 |
+
|
1512 |
+
#: ../admin/class-ngg-options.php:847
|
1513 |
+
msgid "Infinity loop. Duplicate last and first items to get loop illusion."
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: ../admin/class-ngg-options.php:851
|
1517 |
+
msgid "Mouse/touch drag"
|
1518 |
+
msgstr ""
|
1519 |
+
|
1520 |
+
#: ../admin/class-ngg-options.php:854
|
1521 |
+
msgid "Enable dragging with the mouse (or touch)."
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: ../admin/class-ngg-options.php:858
|
1525 |
+
msgid "Previous / Next"
|
1526 |
+
msgstr ""
|
1527 |
+
|
1528 |
+
#: ../admin/class-ngg-options.php:861
|
1529 |
+
msgid "Show next/previous buttons."
|
1530 |
+
msgstr ""
|
1531 |
+
|
1532 |
+
#: ../admin/class-ngg-options.php:865
|
1533 |
+
msgid "Show dots"
|
1534 |
+
msgstr ""
|
1535 |
+
|
1536 |
+
#: ../admin/class-ngg-options.php:868
|
1537 |
+
msgid "Show dots for each image."
|
1538 |
+
msgstr ""
|
1539 |
+
|
1540 |
+
#: ../admin/class-ngg-options.php:872
|
1541 |
+
msgid "Autoplay"
|
1542 |
+
msgstr ""
|
1543 |
+
|
1544 |
+
#: ../admin/class-ngg-options.php:875
|
1545 |
+
msgid "Automatically play the images."
|
1546 |
+
msgstr ""
|
1547 |
+
|
1548 |
+
#: ../admin/class-ngg-options.php:879
|
1549 |
+
msgid "Duration"
|
1550 |
+
msgstr ""
|
1551 |
+
|
1552 |
+
#: ../admin/class-ngg-options.php:882
|
1553 |
+
msgid "sec."
|
1554 |
+
msgstr ""
|
1555 |
+
|
1556 |
+
#: ../admin/class-ngg-options.php:886
|
1557 |
+
msgid "Pause on hover"
|
1558 |
+
msgstr ""
|
1559 |
+
|
1560 |
+
#: ../admin/class-ngg-options.php:889
|
1561 |
+
msgid "Pause when hovering over the slideshow."
|
1562 |
+
msgstr ""
|
1563 |
+
|
1564 |
+
#: ../admin/class-ngg-options.php:893
|
1565 |
+
msgid "Click for next"
|
1566 |
+
msgstr ""
|
1567 |
+
|
1568 |
+
#: ../admin/class-ngg-options.php:896
|
1569 |
+
msgid "Click to go to the next image."
|
1570 |
+
msgstr ""
|
1571 |
+
|
1572 |
+
#: ../admin/class-ngg-options.php:899 ../admin/tinymce/window.php:197
|
1573 |
+
#: ../admin/tinymce/window.php:361 ../admin/tinymce/window.php:423
|
1574 |
+
msgid "Number of images"
|
1575 |
+
msgstr ""
|
1576 |
+
|
1577 |
+
#: ../admin/class-ngg-options.php:903
|
1578 |
+
msgid "Number of images to display when using random or latest."
|
1579 |
+
msgstr ""
|
1580 |
+
|
1581 |
+
#: ../admin/class-ngg-options.php:966
|
1582 |
+
#, php-format
|
1583 |
+
msgid "Rebuild image structure : %s / %s images"
|
1584 |
+
msgstr ""
|
1585 |
+
|
1586 |
+
#: ../admin/class-ngg-options.php:967
|
1587 |
+
#, php-format
|
1588 |
+
msgid "Rebuild gallery structure : %s / %s galleries"
|
1589 |
+
msgstr ""
|
1590 |
+
|
1591 |
+
#: ../admin/class-ngg-options.php:968
|
1592 |
+
#, php-format
|
1593 |
+
msgid "Rebuild album structure : %s / %s albums"
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: ../admin/class-ngg-options.php:1022
|
1597 |
+
msgid "Done."
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: ../admin/class-ngg-overview.php:39
|
1601 |
+
msgid "Contributors"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: ../admin/class-ngg-overview.php:53
|
1605 |
+
msgid "Here you can control your images, galleries and albums."
|
1606 |
+
msgstr ""
|
1607 |
+
|
1608 |
+
#: ../admin/class-ngg-overview.php:56
|
1609 |
+
msgid "Image"
|
1610 |
+
msgstr ""
|
1611 |
+
|
1612 |
+
#: ../admin/class-ngg-overview.php:62 ../admin/tinymce/window.php:121
|
1613 |
+
#: ../admin/tinymce/window.php:236 ../lib/rewrite.php:226
|
1614 |
+
msgid "Album"
|
1615 |
+
msgstr ""
|
1616 |
+
|
1617 |
+
#: ../admin/class-ngg-overview.php:67
|
1618 |
+
msgid "Add new pictures"
|
1619 |
+
msgstr ""
|
1620 |
+
|
1621 |
+
#: ../admin/class-ngg-overview.php:104
|
1622 |
+
msgid "Storage Space"
|
1623 |
+
msgstr ""
|
1624 |
+
|
1625 |
+
#: ../admin/class-ngg-overview.php:107
|
1626 |
+
msgid "Allowed"
|
1627 |
+
msgstr ""
|
1628 |
+
|
1629 |
+
#: ../admin/class-ngg-overview.php:108
|
1630 |
+
#, php-format
|
1631 |
+
msgid "<a href=\"%1$s\" title=\"Manage Uploads\">%2$s MB</a>"
|
1632 |
+
msgstr ""
|
1633 |
+
|
1634 |
+
#: ../admin/class-ngg-overview.php:111
|
1635 |
+
msgid "Used"
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: ../admin/class-ngg-overview.php:112
|
1639 |
+
#, php-format
|
1640 |
+
msgid "<a href=\"%1$s\" title=\"Manage Uploads\">%2$s MB (%3$s%%)</a>"
|
1641 |
+
msgstr ""
|
1642 |
+
|
1643 |
+
#: ../admin/class-ngg-overview.php:126
|
1644 |
+
#, php-format
|
1645 |
+
msgid ""
|
1646 |
+
"The newsfeed could not be loaded. Check the <a href=\"%s\">front page</a> "
|
1647 |
+
"to check for updates."
|
1648 |
+
msgstr ""
|
1649 |
+
|
1650 |
+
#: ../admin/class-ngg-overview.php:137
|
1651 |
+
msgid "Untitled"
|
1652 |
+
msgstr ""
|
1653 |
+
|
1654 |
+
#: ../admin/class-ngg-overview.php:305
|
1655 |
+
msgid "Running..."
|
1656 |
+
msgstr ""
|
1657 |
+
|
1658 |
+
#: ../admin/class-ngg-overview.php:349
|
1659 |
+
msgid "Check plugin/theme conflict"
|
1660 |
+
msgstr ""
|
1661 |
+
|
1662 |
+
#: ../admin/class-ngg-overview.php:350 ../admin/class-ngg-overview.php:356
|
1663 |
+
#: ../admin/class-ngg-overview.php:362
|
1664 |
+
msgid "Not tested"
|
1665 |
+
msgstr ""
|
1666 |
+
|
1667 |
+
#: ../admin/class-ngg-overview.php:351
|
1668 |
+
msgid "No conflict could be detected"
|
1669 |
+
msgstr ""
|
1670 |
+
|
1671 |
+
#: ../admin/class-ngg-overview.php:352
|
1672 |
+
msgid "Test failed, disable other plugins & switch to default theme"
|
1673 |
+
msgstr ""
|
1674 |
+
|
1675 |
+
#: ../admin/class-ngg-overview.php:355
|
1676 |
+
msgid "Test image function"
|
1677 |
+
msgstr ""
|
1678 |
+
|
1679 |
+
#: ../admin/class-ngg-overview.php:357
|
1680 |
+
msgid "The plugin could create images."
|
1681 |
+
msgstr ""
|
1682 |
+
|
1683 |
+
#: ../admin/class-ngg-overview.php:358
|
1684 |
+
msgid "Could not create image, check your memory limit."
|
1685 |
+
msgstr ""
|
1686 |
+
|
1687 |
+
#: ../admin/class-ngg-overview.php:361
|
1688 |
+
msgid "Check theme compatibility"
|
1689 |
+
msgstr ""
|
1690 |
+
|
1691 |
+
#: ../admin/class-ngg-overview.php:363
|
1692 |
+
msgid "Your theme should work fine with NextCellent Gallery"
|
1693 |
+
msgstr ""
|
1694 |
+
|
1695 |
+
#: ../admin/class-ngg-overview.php:364
|
1696 |
+
msgid "wp_head()/wp_footer() is missing, contact the theme author"
|
1697 |
+
msgstr ""
|
1698 |
+
|
1699 |
+
#: ../admin/class-ngg-overview.php:368
|
1700 |
+
msgid "Check plugin"
|
1701 |
+
msgstr ""
|
1702 |
+
|
1703 |
+
#: ../admin/class-ngg-overview.php:384
|
1704 |
+
msgid "Graphic Library"
|
1705 |
+
msgstr ""
|
1706 |
+
|
1707 |
+
#: ../admin/class-ngg-overview.php:410
|
1708 |
+
msgid "There is no GD support"
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: ../admin/class-ngg-overview.php:423 ../admin/class-ngg-overview.php:491
|
1712 |
+
#: ../admin/class-ngg-overview.php:497 ../admin/class-ngg-overview.php:503
|
1713 |
+
msgid "Yes"
|
1714 |
+
msgstr ""
|
1715 |
+
|
1716 |
+
#: ../admin/class-ngg-overview.php:425 ../admin/class-ngg-overview.php:493
|
1717 |
+
#: ../admin/class-ngg-overview.php:499 ../admin/class-ngg-overview.php:505
|
1718 |
+
msgid "No"
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: ../admin/class-ngg-overview.php:445
|
1722 |
+
msgid "Not set"
|
1723 |
+
msgstr ""
|
1724 |
+
|
1725 |
+
#: ../admin/class-ngg-overview.php:449
|
1726 |
+
msgid "On"
|
1727 |
+
msgstr ""
|
1728 |
+
|
1729 |
+
#: ../admin/class-ngg-overview.php:451
|
1730 |
+
msgid "Off"
|
1731 |
+
msgstr ""
|
1732 |
+
|
1733 |
+
#: ../admin/class-ngg-overview.php:457 ../admin/class-ngg-overview.php:463
|
1734 |
+
#: ../admin/class-ngg-overview.php:469 ../admin/class-ngg-overview.php:475
|
1735 |
+
#: ../admin/class-ngg-overview.php:481 ../admin/class-ngg-overview.php:487
|
1736 |
+
msgid "N/A"
|
1737 |
+
msgstr ""
|
1738 |
+
|
1739 |
+
#: ../admin/class-ngg-overview.php:485
|
1740 |
+
msgid " MB"
|
1741 |
+
msgstr ""
|
1742 |
+
|
1743 |
+
#: ../admin/class-ngg-overview.php:509
|
1744 |
+
msgid "Operating System"
|
1745 |
+
msgstr ""
|
1746 |
+
|
1747 |
+
#: ../admin/class-ngg-overview.php:511
|
1748 |
+
msgid "Server"
|
1749 |
+
msgstr ""
|
1750 |
+
|
1751 |
+
#: ../admin/class-ngg-overview.php:512
|
1752 |
+
msgid "Memory Usage"
|
1753 |
+
msgstr ""
|
1754 |
+
|
1755 |
+
#: ../admin/class-ngg-overview.php:513
|
1756 |
+
msgid "MYSQL Version"
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: ../admin/class-ngg-overview.php:514
|
1760 |
+
msgid "SQL Mode"
|
1761 |
+
msgstr ""
|
1762 |
+
|
1763 |
+
#: ../admin/class-ngg-overview.php:515
|
1764 |
+
msgid "PHP Version"
|
1765 |
+
msgstr ""
|
1766 |
+
|
1767 |
+
#: ../admin/class-ngg-overview.php:516
|
1768 |
+
msgid "PHP Allow URL fopen"
|
1769 |
+
msgstr ""
|
1770 |
+
|
1771 |
+
#: ../admin/class-ngg-overview.php:517
|
1772 |
+
msgid "PHP Memory Limit"
|
1773 |
+
msgstr ""
|
1774 |
+
|
1775 |
+
#: ../admin/class-ngg-overview.php:518
|
1776 |
+
msgid "PHP Max Upload Size"
|
1777 |
+
msgstr ""
|
1778 |
+
|
1779 |
+
#: ../admin/class-ngg-overview.php:519
|
1780 |
+
msgid "PHP Max Post Size"
|
1781 |
+
msgstr ""
|
1782 |
+
|
1783 |
+
#: ../admin/class-ngg-overview.php:520
|
1784 |
+
msgid "PCRE Backtracking Limit"
|
1785 |
+
msgstr ""
|
1786 |
+
|
1787 |
+
#: ../admin/class-ngg-overview.php:521
|
1788 |
+
msgid "PHP Max Script Execute Time"
|
1789 |
+
msgstr ""
|
1790 |
+
|
1791 |
+
#: ../admin/class-ngg-overview.php:522
|
1792 |
+
msgid "PHP EXIF Support"
|
1793 |
+
msgstr ""
|
1794 |
+
|
1795 |
+
#: ../admin/class-ngg-overview.php:523
|
1796 |
+
msgid "PHP IPTC Support"
|
1797 |
+
msgstr ""
|
1798 |
+
|
1799 |
+
#: ../admin/class-ngg-overview.php:524
|
1800 |
+
msgid "PHP XML Support"
|
1801 |
+
msgstr ""
|
1802 |
+
|
1803 |
+
#: ../admin/class-ngg-overview.php:532
|
1804 |
+
msgid "Loading…"
|
1805 |
+
msgstr ""
|
1806 |
+
|
1807 |
+
#: ../admin/class-ngg-overview.php:532
|
1808 |
+
msgid "This widget requires JavaScript."
|
1809 |
+
msgstr ""
|
1810 |
+
|
1811 |
+
#: ../admin/class-ngg-overview.php:557
|
1812 |
+
msgid ""
|
1813 |
+
"<strong>Note</strong>: third parties plugins that are compatible with NGG "
|
1814 |
+
"may not be 100% compatible with NextCellent Gallery!"
|
1815 |
+
msgstr ""
|
1816 |
+
|
1817 |
+
#: ../admin/class-ngg-overview.php:599
|
1818 |
+
#, php-format
|
1819 |
+
msgid "By %s"
|
1820 |
+
msgstr ""
|
1821 |
+
|
1822 |
+
#: ../admin/class-ngg-overview.php:611
|
1823 |
+
#, php-format
|
1824 |
+
msgid "Install %s now"
|
1825 |
+
msgstr ""
|
1826 |
+
|
1827 |
+
#: ../admin/class-ngg-overview.php:611
|
1828 |
+
msgid "Install Now"
|
1829 |
+
msgstr ""
|
1830 |
+
|
1831 |
+
#: ../admin/class-ngg-overview.php:618
|
1832 |
+
#, php-format
|
1833 |
+
msgid "Update %s now"
|
1834 |
+
msgstr ""
|
1835 |
+
|
1836 |
+
#: ../admin/class-ngg-overview.php:618
|
1837 |
+
msgid "Update Now"
|
1838 |
+
msgstr ""
|
1839 |
+
|
1840 |
+
#: ../admin/class-ngg-overview.php:638 ../admin/class-ngg-overview.php:640
|
1841 |
+
#, php-format
|
1842 |
+
msgid "More information about %s"
|
1843 |
+
msgstr ""
|
1844 |
+
|
1845 |
+
#: ../admin/class-ngg-overview.php:638 ../admin/class-ngg-overview.php:640
|
1846 |
+
msgid "More Details"
|
1847 |
+
msgstr ""
|
1848 |
+
|
1849 |
+
#: ../admin/class-ngg-overview.php:679
|
1850 |
+
msgid "Untested with your version of WordPress"
|
1851 |
+
msgstr ""
|
1852 |
+
|
1853 |
+
#: ../admin/class-ngg-overview.php:681
|
1854 |
+
msgid "<strong>Incompatible</strong> with your version of WordPress"
|
1855 |
+
msgstr ""
|
1856 |
+
|
1857 |
+
#: ../admin/class-ngg-overview.php:683
|
1858 |
+
msgid "<strong>Compatible</strong> with your version of WordPress"
|
1859 |
+
msgstr ""
|
1860 |
+
|
1861 |
+
#: ../admin/class-ngg-overview.php:746
|
1862 |
+
msgid "This plugin is a branch from NextGen Gallery, version 1.9.13."
|
1863 |
+
msgstr ""
|
1864 |
+
|
1865 |
+
#: ../admin/class-ngg-overview.php:747
|
1866 |
+
msgid ""
|
1867 |
+
"Developed & maintained by <a href=\"http://www.wpgetready.com\" target="
|
1868 |
+
"\"_blank\">WPGetReady.com</a>"
|
1869 |
+
msgstr ""
|
1870 |
+
|
1871 |
+
#: ../admin/class-ngg-overview.php:753
|
1872 |
+
msgid "You can contribute by giving this plugin a good rating! Thanks a lot!"
|
1873 |
+
msgstr ""
|
1874 |
+
|
1875 |
+
#: ../admin/class-ngg-overview.php:758
|
1876 |
+
msgid "Visit the plugin homepage"
|
1877 |
+
msgstr ""
|
1878 |
+
|
1879 |
+
#: ../admin/class-ngg-overview.php:770
|
1880 |
+
msgid "Welcome to NextCellent Gallery!"
|
1881 |
+
msgstr ""
|
1882 |
+
|
1883 |
+
#: ../admin/class-ngg-overview.php:835
|
1884 |
+
msgid "This plugin is made possible by the great work of a lot of people:"
|
1885 |
+
msgstr ""
|
1886 |
+
|
1887 |
+
#: ../admin/class-ngg-overview.php:837
|
1888 |
+
msgid "Alex Rabe and Photocrati for the original NextGen Gallery"
|
1889 |
+
msgstr ""
|
1890 |
+
|
1891 |
+
#: ../admin/class-ngg-overview.php:839
|
1892 |
+
msgid "for maintaining this fork of NextGen Gallery"
|
1893 |
+
msgstr ""
|
1894 |
+
|
1895 |
+
#: ../admin/class-ngg-overview.php:842
|
1896 |
+
msgid "for helping maintain the plugin"
|
1897 |
+
msgstr ""
|
1898 |
+
|
1899 |
+
#: ../admin/class-ngg-overview.php:844
|
1900 |
+
msgid "for his implementation of changing file the upload date using jQuery"
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: ../admin/class-ngg-overview.php:847
|
1904 |
+
msgid "for his his code suggestions regarding nggtags shortcodes"
|
1905 |
+
msgstr ""
|
1906 |
+
|
1907 |
+
#: ../admin/class-ngg-overview.php:850
|
1908 |
+
msgid "for his his suggestions on templates"
|
1909 |
+
msgstr ""
|
1910 |
+
|
1911 |
+
#: ../admin/class-ngg-overview.php:851
|
1912 |
+
msgid "Also a big thank you to the new translators: "
|
1913 |
+
msgstr ""
|
1914 |
+
|
1915 |
+
#: ../admin/class-ngg-roles.php:16
|
1916 |
+
msgid "Roles / capabilities"
|
1917 |
+
msgstr ""
|
1918 |
+
|
1919 |
+
#: ../admin/class-ngg-roles.php:17
|
1920 |
+
msgid ""
|
1921 |
+
"Select the lowest role which should be able to access the following "
|
1922 |
+
"capabilities. NextCellent Gallery supports the standard roles from WordPress."
|
1923 |
+
msgstr ""
|
1924 |
+
|
1925 |
+
#: ../admin/class-ngg-roles.php:18
|
1926 |
+
msgid "For a more flexible user management you can use the"
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
+
#: ../admin/class-ngg-roles.php:23
|
1930 |
+
msgid "NextCellent Gallery overview"
|
1931 |
+
msgstr ""
|
1932 |
+
|
1933 |
+
#: ../admin/class-ngg-roles.php:27
|
1934 |
+
msgid "Use TinyMCE Button / Add Media"
|
1935 |
+
msgstr ""
|
1936 |
+
|
1937 |
+
#: ../admin/class-ngg-roles.php:31
|
1938 |
+
msgid "Add gallery / Upload images"
|
1939 |
+
msgstr ""
|
1940 |
+
|
1941 |
+
#: ../admin/class-ngg-roles.php:35
|
1942 |
+
msgid "Manage gallery"
|
1943 |
+
msgstr ""
|
1944 |
+
|
1945 |
+
#: ../admin/class-ngg-roles.php:39
|
1946 |
+
msgid "Manage others gallery"
|
1947 |
+
msgstr ""
|
1948 |
+
|
1949 |
+
#: ../admin/class-ngg-roles.php:43
|
1950 |
+
msgid "Manage tags"
|
1951 |
+
msgstr ""
|
1952 |
+
|
1953 |
+
#: ../admin/class-ngg-roles.php:51
|
1954 |
+
msgid "Change style"
|
1955 |
+
msgstr ""
|
1956 |
+
|
1957 |
+
#: ../admin/class-ngg-roles.php:55
|
1958 |
+
msgid "Change options"
|
1959 |
+
msgstr ""
|
1960 |
+
|
1961 |
+
#: ../admin/class-ngg-roles.php:59
|
1962 |
+
msgid "Update capabilities"
|
1963 |
+
msgstr ""
|
1964 |
+
|
1965 |
+
#: ../admin/class-ngg-roles.php:82
|
1966 |
+
msgid "Updated capabilities"
|
1967 |
+
msgstr ""
|
1968 |
+
|
1969 |
+
#: ../admin/class-ngg-setup.php:14
|
1970 |
+
msgid "Reset options"
|
1971 |
+
msgstr ""
|
1972 |
+
|
1973 |
+
#: ../admin/class-ngg-setup.php:17
|
1974 |
+
msgid "Reset all options/settings to the default installation."
|
1975 |
+
msgstr ""
|
1976 |
+
|
1977 |
+
#: ../admin/class-ngg-setup.php:19
|
1978 |
+
msgid "Reset settings"
|
1979 |
+
msgstr ""
|
1980 |
+
|
1981 |
+
#: ../admin/class-ngg-setup.php:25
|
1982 |
+
msgid "Uninstall plugin tables"
|
1983 |
+
msgstr ""
|
1984 |
+
|
1985 |
+
#: ../admin/class-ngg-setup.php:30
|
1986 |
+
msgid "You don't like NextCellent Gallery?"
|
1987 |
+
msgstr ""
|
1988 |
+
|
1989 |
+
#: ../admin/class-ngg-setup.php:31
|
1990 |
+
msgid ""
|
1991 |
+
"With this button you can clear all database tables. This should also happen "
|
1992 |
+
"if you uninstall the normal way, but it can be useful for manually "
|
1993 |
+
"uninstalling NextCellent completely."
|
1994 |
+
msgstr ""
|
1995 |
+
|
1996 |
+
#: ../admin/class-ngg-setup.php:34
|
1997 |
+
msgid "WARNING:"
|
1998 |
+
msgstr ""
|
1999 |
+
|
2000 |
+
#: ../admin/class-ngg-setup.php:36
|
2001 |
+
msgid ""
|
2002 |
+
"Once uninstalled, this cannot be undone. You should use a Database Backup "
|
2003 |
+
"plugin of WordPress to backup all the tables first. NextCellent gallery is "
|
2004 |
+
"stored in the tables"
|
2005 |
+
msgstr ""
|
2006 |
+
|
2007 |
+
#: ../admin/class-ngg-setup.php:36
|
2008 |
+
msgid "and"
|
2009 |
+
msgstr ""
|
2010 |
+
|
2011 |
+
#: ../admin/class-ngg-setup.php:39
|
2012 |
+
msgid "Show uninstall button"
|
2013 |
+
msgstr ""
|
2014 |
+
|
2015 |
+
#: ../admin/class-ngg-setup.php:40
|
2016 |
+
msgid "Uninstall plugin"
|
2017 |
+
msgstr ""
|
2018 |
+
|
2019 |
+
#: ../admin/class-ngg-setup.php:49
|
2020 |
+
msgid "Reset all options to default settings?"
|
2021 |
+
msgstr ""
|
2022 |
+
|
2023 |
+
#: ../admin/class-ngg-setup.php:51 ../admin/class-ngg-setup.php:66
|
2024 |
+
msgid "Choose [Cancel] to Stop, [OK] to proceed."
|
2025 |
+
msgstr ""
|
2026 |
+
|
2027 |
+
#: ../admin/class-ngg-setup.php:64
|
2028 |
+
msgid ""
|
2029 |
+
"You are about to uninstall this plugin from WordPress. This action is not "
|
2030 |
+
"reversible."
|
2031 |
+
msgstr ""
|
2032 |
+
|
2033 |
+
#: ../admin/class-ngg-setup.php:97
|
2034 |
+
msgid "Reset all settings to the default parameters."
|
2035 |
+
msgstr ""
|
2036 |
+
|
2037 |
+
#: ../admin/class-ngg-setup.php:104
|
2038 |
+
msgid "Uninstall successful! Now delete the plugin and enjoy your life!"
|
2039 |
+
msgstr ""
|
2040 |
+
|
2041 |
+
#: ../admin/class-ngg-style.php:118
|
2042 |
+
msgid "Successfully selected CSS file."
|
2043 |
+
msgstr ""
|
2044 |
+
|
2045 |
+
#: ../admin/class-ngg-style.php:120
|
2046 |
+
msgid "No CSS file will be used."
|
2047 |
+
msgstr ""
|
2048 |
+
|
2049 |
+
#: ../admin/class-ngg-style.php:129 ../admin/class-ngg-style.php:169
|
2050 |
+
msgid "You do not have sufficient permissions to edit templates for this blog."
|
2051 |
+
msgstr ""
|
2052 |
+
|
2053 |
+
#: ../admin/class-ngg-style.php:154
|
2054 |
+
msgid "Could not move file."
|
2055 |
+
msgstr ""
|
2056 |
+
|
2057 |
+
#: ../admin/class-ngg-style.php:160
|
2058 |
+
msgid "CSS file successfully updated."
|
2059 |
+
msgstr ""
|
2060 |
+
|
2061 |
+
#: ../admin/class-ngg-style.php:162
|
2062 |
+
msgid "Could not save file."
|
2063 |
+
msgstr ""
|
2064 |
+
|
2065 |
+
#: ../admin/class-ngg-style.php:182
|
2066 |
+
msgid "CSS file successfully moved."
|
2067 |
+
msgstr ""
|
2068 |
+
|
2069 |
+
#: ../admin/class-ngg-style.php:187
|
2070 |
+
msgid "Could not move the CSS file."
|
2071 |
+
msgstr ""
|
2072 |
+
|
2073 |
+
#: ../admin/class-ngg-style.php:218 ../admin/wpmu.php:63
|
2074 |
+
msgid "Your CSS file is set by a theme or another plugin."
|
2075 |
+
msgstr ""
|
2076 |
+
|
2077 |
+
#: ../admin/class-ngg-style.php:218 ../admin/wpmu.php:63
|
2078 |
+
msgid "This CSS file will be applied:"
|
2079 |
+
msgstr ""
|
2080 |
+
|
2081 |
+
#: ../admin/class-ngg-style.php:248
|
2082 |
+
msgid "Style Editor"
|
2083 |
+
msgstr ""
|
2084 |
+
|
2085 |
+
#: ../admin/class-ngg-style.php:254
|
2086 |
+
msgid "Activate and use style sheet:"
|
2087 |
+
msgstr ""
|
2088 |
+
|
2089 |
+
#: ../admin/class-ngg-style.php:259
|
2090 |
+
msgid "Activate"
|
2091 |
+
msgstr ""
|
2092 |
+
|
2093 |
+
#: ../admin/class-ngg-style.php:268
|
2094 |
+
#, php-format
|
2095 |
+
msgid "Editing %s"
|
2096 |
+
msgstr ""
|
2097 |
+
|
2098 |
+
#: ../admin/class-ngg-style.php:270
|
2099 |
+
#, php-format
|
2100 |
+
msgid "Browsing %s"
|
2101 |
+
msgstr ""
|
2102 |
+
|
2103 |
+
#: ../admin/class-ngg-style.php:273
|
2104 |
+
msgid "(from the theme folder)"
|
2105 |
+
msgstr ""
|
2106 |
+
|
2107 |
+
#: ../admin/class-ngg-style.php:283
|
2108 |
+
msgid ""
|
2109 |
+
"To ensure your css file stays safe during upgrades, please move it to the "
|
2110 |
+
"right folder."
|
2111 |
+
msgstr ""
|
2112 |
+
|
2113 |
+
#: ../admin/class-ngg-style.php:286
|
2114 |
+
msgid "Move file"
|
2115 |
+
msgstr ""
|
2116 |
+
|
2117 |
+
#: ../admin/class-ngg-style.php:292
|
2118 |
+
msgid "Version"
|
2119 |
+
msgstr ""
|
2120 |
+
|
2121 |
+
#: ../admin/class-ngg-style.php:296
|
2122 |
+
msgid "File location"
|
2123 |
+
msgstr ""
|
2124 |
+
|
2125 |
+
#: ../admin/class-ngg-style.php:309
|
2126 |
+
msgid "Update File"
|
2127 |
+
msgstr ""
|
2128 |
+
|
2129 |
+
#: ../admin/class-ngg-style.php:311
|
2130 |
+
msgid "If this file were writable you could edit it."
|
2131 |
+
msgstr ""
|
2132 |
+
|
2133 |
+
#: ../admin/class-ngg-style.php:316
|
2134 |
+
msgid "This file does not exist. Double check the name and try again."
|
2135 |
+
msgstr ""
|
2136 |
+
|
2137 |
+
#: ../admin/class-ngg-tag-manager.php:45
|
2138 |
+
msgid "Most popular"
|
2139 |
+
msgstr ""
|
2140 |
+
|
2141 |
+
#: ../admin/class-ngg-tag-manager.php:46
|
2142 |
+
msgid "Least used"
|
2143 |
+
msgstr ""
|
2144 |
+
|
2145 |
+
#: ../admin/class-ngg-tag-manager.php:47
|
2146 |
+
msgid "Alphabetical"
|
2147 |
+
msgstr ""
|
2148 |
+
|
2149 |
+
#: ../admin/class-ngg-tag-manager.php:114
|
2150 |
+
msgid "Existing Tags"
|
2151 |
+
msgstr ""
|
2152 |
+
|
2153 |
+
#: ../admin/class-ngg-tag-manager.php:118
|
2154 |
+
msgid "Search tags"
|
2155 |
+
msgstr ""
|
2156 |
+
|
2157 |
+
#: ../admin/class-ngg-tag-manager.php:122
|
2158 |
+
msgid "Go"
|
2159 |
+
msgstr ""
|
2160 |
+
|
2161 |
+
#: ../admin/class-ngg-tag-manager.php:127
|
2162 |
+
msgid "Sort Order:"
|
2163 |
+
msgstr ""
|
2164 |
+
|
2165 |
+
#: ../admin/class-ngg-tag-manager.php:162
|
2166 |
+
#: ../admin/class-ngg-tag-manager.php:166
|
2167 |
+
#: ../admin/class-ngg-tag-manager.php:179
|
2168 |
+
msgid "Previous tags"
|
2169 |
+
msgstr ""
|
2170 |
+
|
2171 |
+
#: ../admin/class-ngg-tag-manager.php:175
|
2172 |
+
msgid "Next tags"
|
2173 |
+
msgstr ""
|
2174 |
+
|
2175 |
+
#: ../admin/class-ngg-tag-manager.php:187
|
2176 |
+
msgid "Rename Tag"
|
2177 |
+
msgstr ""
|
2178 |
+
|
2179 |
+
#: ../admin/class-ngg-tag-manager.php:195
|
2180 |
+
msgid ""
|
2181 |
+
"Enter the tag to rename and its new value. You can use this feature to "
|
2182 |
+
"merge tags too. Click \"Rename\" and all posts which use this tag will be "
|
2183 |
+
"updated."
|
2184 |
+
msgstr ""
|
2185 |
+
|
2186 |
+
#: ../admin/class-ngg-tag-manager.php:196
|
2187 |
+
#: ../admin/class-ngg-tag-manager.php:244
|
2188 |
+
msgid "You can specify multiple tags to rename by separating them with commas."
|
2189 |
+
msgstr ""
|
2190 |
+
|
2191 |
+
#: ../admin/class-ngg-tag-manager.php:200
|
2192 |
+
msgid "Tag(s) to rename:"
|
2193 |
+
msgstr ""
|
2194 |
+
|
2195 |
+
#: ../admin/class-ngg-tag-manager.php:204
|
2196 |
+
msgid "New tag name(s):"
|
2197 |
+
msgstr ""
|
2198 |
+
|
2199 |
+
#: ../admin/class-ngg-tag-manager.php:207
|
2200 |
+
msgid "Rename"
|
2201 |
+
msgstr ""
|
2202 |
+
|
2203 |
+
#: ../admin/class-ngg-tag-manager.php:213
|
2204 |
+
msgid "Delete Tag"
|
2205 |
+
msgstr ""
|
2206 |
+
|
2207 |
+
#: ../admin/class-ngg-tag-manager.php:221
|
2208 |
+
msgid ""
|
2209 |
+
"Enter the name of the tag to delete. This tag will be removed from all "
|
2210 |
+
"posts."
|
2211 |
+
msgstr ""
|
2212 |
+
|
2213 |
+
#: ../admin/class-ngg-tag-manager.php:222
|
2214 |
+
msgid "You can specify multiple tags to delete by separating them with commas"
|
2215 |
+
msgstr ""
|
2216 |
+
|
2217 |
+
#: ../admin/class-ngg-tag-manager.php:226
|
2218 |
+
msgid "Tag(s) to delete:"
|
2219 |
+
msgstr ""
|
2220 |
+
|
2221 |
+
#: ../admin/class-ngg-tag-manager.php:235
|
2222 |
+
msgid "Edit Tag Slug"
|
2223 |
+
msgstr ""
|
2224 |
+
|
2225 |
+
#: ../admin/class-ngg-tag-manager.php:243
|
2226 |
+
msgid ""
|
2227 |
+
"Enter the tag name to edit and its new slug. <a href=\"http://codex."
|
2228 |
+
"wordpress.org/Glossary#Slug\">Slug definition</a>"
|
2229 |
+
msgstr ""
|
2230 |
+
|
2231 |
+
#: ../admin/class-ngg-tag-manager.php:248
|
2232 |
+
msgid "Tag(s) to match:"
|
2233 |
+
msgstr ""
|
2234 |
+
|
2235 |
+
#: ../admin/class-ngg-tag-manager.php:252
|
2236 |
+
msgid "Slug(s) to set:"
|
2237 |
+
msgstr ""
|
2238 |
+
|
2239 |
+
#: ../admin/class-ngg-tag-manager.php:255
|
2240 |
+
#: ../admin/manage/class-ngg-gallery-list-table.php:106
|
2241 |
+
msgid "Edit"
|
2242 |
+
msgstr ""
|
2243 |
+
|
2244 |
+
#: ../admin/functions.php:38
|
2245 |
+
msgid "No valid gallery name!"
|
2246 |
+
msgstr ""
|
2247 |
+
|
2248 |
+
#: ../admin/functions.php:48 ../admin/functions.php:57
|
2249 |
+
#: ../admin/functions.php:83 ../admin/functions.php:157
|
2250 |
+
#: ../admin/functions.php:164 ../admin/functions.php:344
|
2251 |
+
#: ../admin/functions.php:352
|
2252 |
+
msgid "Directory"
|
2253 |
+
msgstr ""
|
2254 |
+
|
2255 |
+
#: ../admin/functions.php:48
|
2256 |
+
msgid "didn't exist. Please create first the main gallery folder "
|
2257 |
+
msgstr ""
|
2258 |
+
|
2259 |
+
#: ../admin/functions.php:49 ../admin/functions.php:58
|
2260 |
+
msgid "Check this link, if you didn't know how to set the permission :"
|
2261 |
+
msgstr ""
|
2262 |
+
|
2263 |
+
#: ../admin/functions.php:57 ../admin/functions.php:83
|
2264 |
+
msgid "is not writeable !"
|
2265 |
+
msgstr ""
|
2266 |
+
|
2267 |
+
#: ../admin/functions.php:79 ../admin/functions.php:88
|
2268 |
+
#: ../admin/functions.php:1126 ../lib/core.php:102
|
2269 |
+
msgid "Unable to create directory "
|
2270 |
+
msgstr ""
|
2271 |
+
|
2272 |
+
#: ../admin/functions.php:92
|
2273 |
+
msgid "The server setting Safe-Mode is on !"
|
2274 |
+
msgstr ""
|
2275 |
+
|
2276 |
+
#: ../admin/functions.php:93
|
2277 |
+
msgid "If you have problems, please create directory"
|
2278 |
+
msgstr ""
|
2279 |
+
|
2280 |
+
#: ../admin/functions.php:94
|
2281 |
+
msgid "and the thumbnails directory"
|
2282 |
+
msgstr ""
|
2283 |
+
|
2284 |
+
#: ../admin/functions.php:94
|
2285 |
+
msgid "with permission 777 manually !"
|
2286 |
+
msgstr ""
|
2287 |
+
|
2288 |
+
#: ../admin/functions.php:120
|
2289 |
+
#, php-format
|
2290 |
+
msgid ""
|
2291 |
+
"Gallery ID %1$s successfully created. You can show this gallery in your post "
|
2292 |
+
"or page with the shortcode %2$s.<br/>"
|
2293 |
+
msgstr ""
|
2294 |
+
|
2295 |
+
#: ../admin/functions.php:123 ../admin/functions.php:309
|
2296 |
+
#: ../admin/functions.php:412
|
2297 |
+
msgid "Edit gallery"
|
2298 |
+
msgstr ""
|
2299 |
+
|
2300 |
+
#: ../admin/functions.php:157 ../admin/functions.php:344
|
2301 |
+
msgid "doesn`t exist!"
|
2302 |
+
msgstr ""
|
2303 |
+
|
2304 |
+
#: ../admin/functions.php:164 ../admin/functions.php:352
|
2305 |
+
msgid "contains no pictures"
|
2306 |
+
msgstr ""
|
2307 |
+
|
2308 |
+
#: ../admin/functions.php:191
|
2309 |
+
msgid "Something went wrong when renaming"
|
2310 |
+
msgstr ""
|
2311 |
+
|
2312 |
+
#: ../admin/functions.php:191
|
2313 |
+
msgid "Importing was aborted."
|
2314 |
+
msgstr ""
|
2315 |
+
|
2316 |
+
#: ../admin/functions.php:209 ../admin/functions.php:371
|
2317 |
+
msgid "Database error. Could not add gallery!"
|
2318 |
+
msgstr ""
|
2319 |
+
|
2320 |
+
#: ../admin/functions.php:212 ../admin/functions.php:374
|
2321 |
+
msgid "successfully created!"
|
2322 |
+
msgstr ""
|
2323 |
+
|
2324 |
+
#: ../admin/functions.php:299 ../admin/functions.php:407
|
2325 |
+
#: ../admin/functions.php:1243
|
2326 |
+
#: ../admin/manage/class-ngg-gallery-list-table.php:212
|
2327 |
+
#: ../admin/manage/class-ngg-image-list-table.php:306
|
2328 |
+
#: ../admin/manage/class-ngg-manager.php:197
|
2329 |
+
#: ../admin/manage/class-ngg-manager.php:359
|
2330 |
+
msgid "Create new thumbnails"
|
2331 |
+
msgstr ""
|
2332 |
+
|
2333 |
+
#: ../admin/functions.php:304
|
2334 |
+
msgid " picture(s) successfully renamed"
|
2335 |
+
msgstr ""
|
2336 |
+
|
2337 |
+
#: ../admin/functions.php:306 ../admin/functions.php:410
|
2338 |
+
msgid " picture(s) successfully added"
|
2339 |
+
msgstr ""
|
2340 |
+
|
2341 |
+
#: ../admin/functions.php:313
|
2342 |
+
msgid "No images were added."
|
2343 |
+
msgstr ""
|
2344 |
+
|
2345 |
+
#: ../admin/functions.php:485 ../admin/functions.php:569
|
2346 |
+
#: ../admin/functions.php:624 ../admin/functions.php:721
|
2347 |
+
#: ../admin/functions.php:775
|
2348 |
+
msgid "Object didn't contain correct data"
|
2349 |
+
msgstr ""
|
2350 |
+
|
2351 |
+
#: ../admin/functions.php:494
|
2352 |
+
msgid " is not writeable "
|
2353 |
+
msgstr ""
|
2354 |
+
|
2355 |
+
#: ../admin/functions.php:579 ../admin/functions.php:627
|
2356 |
+
#: ../admin/functions.php:727 ../admin/functions.php:778
|
2357 |
+
msgid " is not writeable"
|
2358 |
+
msgstr ""
|
2359 |
+
|
2360 |
+
#: ../admin/functions.php:781
|
2361 |
+
msgid "File do not exists"
|
2362 |
+
msgstr ""
|
2363 |
+
|
2364 |
+
#: ../admin/functions.php:785
|
2365 |
+
msgid "Couldn't restore original image"
|
2366 |
+
msgstr ""
|
2367 |
+
|
2368 |
+
#: ../admin/functions.php:901
|
2369 |
+
msgid "(Error : Couldn't not update data base)"
|
2370 |
+
msgstr ""
|
2371 |
+
|
2372 |
+
#: ../admin/functions.php:908
|
2373 |
+
msgid "(Error : Couldn't not update meta data)"
|
2374 |
+
msgstr ""
|
2375 |
+
|
2376 |
+
#: ../admin/functions.php:917
|
2377 |
+
msgid "(Error : Couldn't not find image)"
|
2378 |
+
msgstr ""
|
2379 |
+
|
2380 |
+
#: ../admin/functions.php:1060
|
2381 |
+
msgid "No valid URL path "
|
2382 |
+
msgstr ""
|
2383 |
+
|
2384 |
+
#: ../admin/functions.php:1076
|
2385 |
+
msgid "Import via cURL failed."
|
2386 |
+
msgstr ""
|
2387 |
+
|
2388 |
+
#: ../admin/functions.php:1093
|
2389 |
+
msgid "Uploaded file was no or a faulty zip file ! The server recognized : "
|
2390 |
+
msgstr ""
|
2391 |
+
|
2392 |
+
#: ../admin/functions.php:1110
|
2393 |
+
msgid "Could not get a valid foldername"
|
2394 |
+
msgstr ""
|
2395 |
+
|
2396 |
+
#: ../admin/functions.php:1121
|
2397 |
+
#, php-format
|
2398 |
+
msgid ""
|
2399 |
+
"Unable to create directory %s. Is its parent directory writable by the "
|
2400 |
+
"server?"
|
2401 |
+
msgstr ""
|
2402 |
+
|
2403 |
+
#: ../admin/functions.php:1136
|
2404 |
+
msgid "Zip-File successfully unpacked"
|
2405 |
+
msgstr ""
|
2406 |
+
|
2407 |
+
#: ../admin/functions.php:1167 ../admin/functions.php:1267
|
2408 |
+
msgid "No gallery selected !"
|
2409 |
+
msgstr ""
|
2410 |
+
|
2411 |
+
#: ../admin/functions.php:1175 ../admin/functions.php:1292
|
2412 |
+
msgid "Failure in database, no gallery path set !"
|
2413 |
+
msgstr ""
|
2414 |
+
|
2415 |
+
#: ../admin/functions.php:1199 ../admin/functions.php:1286
|
2416 |
+
msgid "is no valid image file!"
|
2417 |
+
msgstr ""
|
2418 |
+
|
2419 |
+
#: ../admin/functions.php:1213 ../admin/functions.php:1411
|
2420 |
+
#: ../admin/functions.php:1488
|
2421 |
+
#, php-format
|
2422 |
+
msgid ""
|
2423 |
+
"Unable to write to directory %s. Is this directory writable by the server?"
|
2424 |
+
msgstr ""
|
2425 |
+
|
2426 |
+
#: ../admin/functions.php:1220 ../admin/functions.php:1309
|
2427 |
+
msgid "Error, the file could not be moved to : "
|
2428 |
+
msgstr ""
|
2429 |
+
|
2430 |
+
#: ../admin/functions.php:1225 ../admin/functions.php:1313
|
2431 |
+
msgid "Error, the file permissions could not be set"
|
2432 |
+
msgstr ""
|
2433 |
+
|
2434 |
+
#: ../admin/functions.php:1248
|
2435 |
+
msgid " Image(s) successfully added"
|
2436 |
+
msgstr ""
|
2437 |
+
|
2438 |
+
#: ../admin/functions.php:1275
|
2439 |
+
msgid "Invalid upload. Error Code : "
|
2440 |
+
msgstr ""
|
2441 |
+
|
2442 |
+
#: ../admin/functions.php:1351
|
2443 |
+
#, php-format
|
2444 |
+
msgid ""
|
2445 |
+
"SAFE MODE Restriction in effect! You need to create the folder <strong>%s</"
|
2446 |
+
"strong> manually"
|
2447 |
+
msgstr ""
|
2448 |
+
|
2449 |
+
#: ../admin/functions.php:1352
|
2450 |
+
#, php-format
|
2451 |
+
msgid ""
|
2452 |
+
"When safe_mode is on, PHP checks to see if the owner (%s) of the current "
|
2453 |
+
"script matches the owner (%s) of the file to be operated on by a file "
|
2454 |
+
"function or its directory"
|
2455 |
+
msgstr ""
|
2456 |
+
|
2457 |
+
#: ../admin/functions.php:1405 ../admin/functions.php:1482
|
2458 |
+
msgid "The destination gallery does not exist"
|
2459 |
+
msgstr ""
|
2460 |
+
|
2461 |
+
#: ../admin/functions.php:1436 ../lib/xmlrpc.php:222
|
2462 |
+
#, php-format
|
2463 |
+
msgid "Failed to move image %1$s to %2$s"
|
2464 |
+
msgstr ""
|
2465 |
+
|
2466 |
+
#: ../admin/functions.php:1456
|
2467 |
+
#, php-format
|
2468 |
+
msgid "Moved %1$s picture(s) to gallery : %2$s ."
|
2469 |
+
msgstr ""
|
2470 |
+
|
2471 |
+
#: ../admin/functions.php:1515
|
2472 |
+
#, php-format
|
2473 |
+
msgid "Failed to copy image %1$s to %2$s"
|
2474 |
+
msgstr ""
|
2475 |
+
|
2476 |
+
#: ../admin/functions.php:1529
|
2477 |
+
#, php-format
|
2478 |
+
msgid "Failed to copy database row for picture %s"
|
2479 |
+
msgstr ""
|
2480 |
+
|
2481 |
+
#: ../admin/functions.php:1541
|
2482 |
+
#, php-format
|
2483 |
+
msgid ""
|
2484 |
+
"Image %1$s (%2$s) copied as image %3$s (%4$s) » The file already "
|
2485 |
+
"existed in the destination gallery."
|
2486 |
+
msgstr ""
|
2487 |
+
|
2488 |
+
#: ../admin/functions.php:1544
|
2489 |
+
#, php-format
|
2490 |
+
msgid "Image %1$s (%2$s) copied as image %3$s (%4$s)"
|
2491 |
+
msgstr ""
|
2492 |
+
|
2493 |
+
#: ../admin/functions.php:1553
|
2494 |
+
#, php-format
|
2495 |
+
msgid "Copied %1$s picture(s) to gallery: %2$s ."
|
2496 |
+
msgstr ""
|
2497 |
+
|
2498 |
+
#: ../admin/functions.php:1668
|
2499 |
+
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
|
2500 |
+
msgstr ""
|
2501 |
+
|
2502 |
+
#: ../admin/functions.php:1671
|
2503 |
+
msgid ""
|
2504 |
+
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
2505 |
+
"the HTML form"
|
2506 |
+
msgstr ""
|
2507 |
+
|
2508 |
+
#: ../admin/functions.php:1674
|
2509 |
+
msgid "The uploaded file was only partially uploaded"
|
2510 |
+
msgstr ""
|
2511 |
+
|
2512 |
+
#: ../admin/functions.php:1677
|
2513 |
+
msgid "No file was uploaded"
|
2514 |
+
msgstr ""
|
2515 |
+
|
2516 |
+
#: ../admin/functions.php:1680
|
2517 |
+
msgid "Missing a temporary folder"
|
2518 |
+
msgstr ""
|
2519 |
+
|
2520 |
+
#: ../admin/functions.php:1683
|
2521 |
+
msgid "Failed to write file to disk"
|
2522 |
+
msgstr ""
|
2523 |
+
|
2524 |
+
#: ../admin/functions.php:1686
|
2525 |
+
msgid "File upload stopped by extension"
|
2526 |
+
msgstr ""
|
2527 |
+
|
2528 |
+
#: ../admin/functions.php:1689
|
2529 |
+
msgid "Unknown upload error"
|
2530 |
+
msgstr ""
|
2531 |
+
|
2532 |
+
#: ../admin/manage/actions.php:58
|
2533 |
+
msgid "Select how you would like to rotate the image on the left."
|
2534 |
+
msgstr ""
|
2535 |
+
|
2536 |
+
#: ../admin/manage/actions.php:65
|
2537 |
+
msgid "90° clockwise"
|
2538 |
+
msgstr ""
|
2539 |
+
|
2540 |
+
#: ../admin/manage/actions.php:67
|
2541 |
+
msgid "90° anticlockwise"
|
2542 |
+
msgstr ""
|
2543 |
+
|
2544 |
+
#: ../admin/manage/actions.php:69
|
2545 |
+
msgid "Flip horizontally"
|
2546 |
+
msgstr ""
|
2547 |
+
|
2548 |
+
#: ../admin/manage/actions.php:71
|
2549 |
+
msgid "Flip vertically"
|
2550 |
+
msgstr ""
|
2551 |
+
|
2552 |
+
#: ../admin/manage/actions.php:94
|
2553 |
+
msgid "Image rotated"
|
2554 |
+
msgstr ""
|
2555 |
+
|
2556 |
+
#: ../admin/manage/actions.php:97
|
2557 |
+
msgid "Error rotating thumbnail"
|
2558 |
+
msgstr ""
|
2559 |
+
|
2560 |
+
#: ../admin/manage/actions.php:129 ../admin/manage/actions.php:157
|
2561 |
+
#: ../admin/manage/actions.php:182 ../admin/manage/actions.php:204
|
2562 |
+
msgid "Value"
|
2563 |
+
msgstr ""
|
2564 |
+
|
2565 |
+
#: ../admin/manage/actions.php:146
|
2566 |
+
msgid "No meta data saved"
|
2567 |
+
msgstr ""
|
2568 |
+
|
2569 |
+
#: ../admin/manage/actions.php:151
|
2570 |
+
msgid "EXIF Data"
|
2571 |
+
msgstr ""
|
2572 |
+
|
2573 |
+
#: ../admin/manage/actions.php:171
|
2574 |
+
msgid "No exif data"
|
2575 |
+
msgstr ""
|
2576 |
+
|
2577 |
+
#: ../admin/manage/actions.php:177
|
2578 |
+
msgid "IPTC Data"
|
2579 |
+
msgstr ""
|
2580 |
+
|
2581 |
+
#: ../admin/manage/actions.php:199
|
2582 |
+
msgid "XMP Data"
|
2583 |
+
msgstr ""
|
2584 |
+
|
2585 |
+
#: ../admin/manage/actions.php:255
|
2586 |
+
msgid "Zoom In"
|
2587 |
+
msgstr ""
|
2588 |
+
|
2589 |
+
#: ../admin/manage/actions.php:259
|
2590 |
+
msgid "Zoom Out"
|
2591 |
+
msgstr ""
|
2592 |
+
|
2593 |
+
#: ../admin/manage/actions.php:263
|
2594 |
+
msgid "Rotate Left"
|
2595 |
+
msgstr ""
|
2596 |
+
|
2597 |
+
#: ../admin/manage/actions.php:267
|
2598 |
+
msgid "Rotate Right"
|
2599 |
+
msgstr ""
|
2600 |
+
|
2601 |
+
#: ../admin/manage/actions.php:271
|
2602 |
+
msgid "Reset"
|
2603 |
+
msgstr ""
|
2604 |
+
|
2605 |
+
#: ../admin/manage/actions.php:275
|
2606 |
+
msgid "Center selection"
|
2607 |
+
msgstr ""
|
2608 |
+
|
2609 |
+
#: ../admin/manage/actions.php:292
|
2610 |
+
msgid "The parameters"
|
2611 |
+
msgstr ""
|
2612 |
+
|
2613 |
+
#: ../admin/manage/actions.php:298
|
2614 |
+
msgid "X"
|
2615 |
+
msgstr ""
|
2616 |
+
|
2617 |
+
#: ../admin/manage/actions.php:302 ../admin/manage/actions.php:311
|
2618 |
+
#: ../admin/manage/actions.php:320 ../admin/manage/actions.php:328
|
2619 |
+
msgid "px"
|
2620 |
+
msgstr ""
|
2621 |
+
|
2622 |
+
#: ../admin/manage/actions.php:308
|
2623 |
+
msgid "Y"
|
2624 |
+
msgstr ""
|
2625 |
+
|
2626 |
+
#: ../admin/manage/actions.php:333
|
2627 |
+
msgid "Rotation"
|
2628 |
+
msgstr ""
|
2629 |
+
|
2630 |
+
#: ../admin/manage/actions.php:337
|
2631 |
+
msgid "deg"
|
2632 |
+
msgstr ""
|
2633 |
+
|
2634 |
+
#: ../admin/manage/actions.php:343
|
2635 |
+
msgid "Apply the parameters"
|
2636 |
+
msgstr ""
|
2637 |
+
|
2638 |
+
#: ../admin/manage/actions.php:344
|
2639 |
+
msgid "Apply"
|
2640 |
+
msgstr ""
|
2641 |
+
|
2642 |
+
#: ../admin/manage/actions.php:380
|
2643 |
+
msgid "Thumbnail updated"
|
2644 |
+
msgstr ""
|
2645 |
+
|
2646 |
+
#: ../admin/manage/actions.php:384
|
2647 |
+
msgid "Error updating thumbnail"
|
2648 |
+
msgstr ""
|
2649 |
+
|
2650 |
+
#: ../admin/manage/class-ngg-abstract-image-manager.php:96
|
2651 |
+
#: ../admin/manage/class-ngg-gallery-manager.php:108
|
2652 |
+
#: ../admin/manage/class-ngg-image-manager.php:127
|
2653 |
+
#: ../admin/manage/class-ngg-image-manager.php:262
|
2654 |
+
#: ../admin/manage/class-ngg-image-manager.php:372
|
2655 |
+
#: ../admin/manage/class-ngg-manager.php:422
|
2656 |
+
#: ../admin/manage/class-ngg-sort-manager.php:178
|
2657 |
+
msgid "You waited too long, or you cheated."
|
2658 |
+
msgstr ""
|
2659 |
+
|
2660 |
+
#: ../admin/manage/class-ngg-abstract-image-manager.php:158
|
2661 |
+
#: ../admin/manage/class-ngg-image-manager.php:305
|
2662 |
+
msgid "Update successful"
|
2663 |
+
msgstr ""
|
2664 |
+
|
2665 |
+
#: ../admin/manage/class-ngg-gallery-list-table.php:152
|
2666 |
+
#: ../admin/manage/class-ngg-image-list-table.php:233
|
2667 |
+
msgid "ID"
|
2668 |
+
msgstr ""
|
2669 |
+
|
2670 |
+
#: ../admin/manage/class-ngg-gallery-list-table.php:156
|
2671 |
+
msgid "Page ID"
|
2672 |
+
msgstr ""
|
2673 |
+
|
2674 |
+
#: ../admin/manage/class-ngg-gallery-list-table.php:211
|
2675 |
+
#: ../admin/manage/class-ngg-image-list-table.php:305
|
2676 |
+
#: ../admin/manage/class-ngg-manager.php:206
|
2677 |
+
msgid "Set watermark"
|
2678 |
+
msgstr ""
|
2679 |
+
|
2680 |
+
#: ../admin/manage/class-ngg-gallery-list-table.php:214
|
2681 |
+
#: ../admin/manage/class-ngg-image-list-table.php:308
|
2682 |
+
#: ../admin/manage/class-ngg-manager.php:200
|
2683 |
+
msgid "Import metadata"
|
2684 |
+
msgstr ""
|
2685 |
+
|
2686 |
+
#: ../admin/manage/class-ngg-gallery-list-table.php:215
|
2687 |
+
#: ../admin/manage/class-ngg-image-list-table.php:309
|
2688 |
+
#: ../admin/manage/class-ngg-manager.php:203
|
2689 |
+
msgid "Recover from backup"
|
2690 |
+
msgstr ""
|
2691 |
+
|
2692 |
+
#: ../admin/manage/class-ngg-gallery-manager.php:35
|
2693 |
+
msgid "Add new gallery"
|
2694 |
+
msgstr ""
|
2695 |
+
|
2696 |
+
#: ../admin/manage/class-ngg-gallery-manager.php:88
|
2697 |
+
msgid "Create a new , empty gallery below the folder"
|
2698 |
+
msgstr ""
|
2699 |
+
|
2700 |
+
#: ../admin/manage/class-ngg-gallery-manager.php:92
|
2701 |
+
#, php-format
|
2702 |
+
msgid "Allowed characters for file and folder names are %s"
|
2703 |
+
msgstr ""
|
2704 |
+
|
2705 |
+
#: ../admin/manage/class-ngg-image-list-table.php:150
|
2706 |
+
msgid "Change Date"
|
2707 |
+
msgstr ""
|
2708 |
+
|
2709 |
+
#: ../admin/manage/class-ngg-image-list-table.php:153
|
2710 |
+
msgid "pixel"
|
2711 |
+
msgstr ""
|
2712 |
+
|
2713 |
+
#: ../admin/manage/class-ngg-image-list-table.php:184
|
2714 |
+
msgid "Alt & title text"
|
2715 |
+
msgstr ""
|
2716 |
+
|
2717 |
+
#: ../admin/manage/class-ngg-image-list-table.php:211
|
2718 |
+
msgid "Separated by commas"
|
2719 |
+
msgstr ""
|
2720 |
+
|
2721 |
+
#: ../admin/manage/class-ngg-image-list-table.php:234
|
2722 |
+
#: ../admin/media-upload.php:246
|
2723 |
+
msgid "Thumbnail"
|
2724 |
+
msgstr ""
|
2725 |
+
|
2726 |
+
#: ../admin/manage/class-ngg-image-list-table.php:235
|
2727 |
+
#: ../admin/manage/class-ngg-sort-manager.php:111
|
2728 |
+
msgid "Filename"
|
2729 |
+
msgstr ""
|
2730 |
+
|
2731 |
+
#: ../admin/manage/class-ngg-image-list-table.php:236
|
2732 |
+
msgid "Alt & Title Text"
|
2733 |
+
msgstr ""
|
2734 |
+
|
2735 |
+
#: ../admin/manage/class-ngg-image-list-table.php:238
|
2736 |
+
msgid "Exclude"
|
2737 |
+
msgstr ""
|
2738 |
+
|
2739 |
+
#: ../admin/manage/class-ngg-image-list-table.php:273
|
2740 |
+
#, php-format
|
2741 |
+
msgid "View \"%s\""
|
2742 |
+
msgstr ""
|
2743 |
+
|
2744 |
+
#: ../admin/manage/class-ngg-image-list-table.php:274
|
2745 |
+
msgid "View"
|
2746 |
+
msgstr ""
|
2747 |
+
|
2748 |
+
#: ../admin/manage/class-ngg-image-list-table.php:275
|
2749 |
+
msgid "Show Meta data"
|
2750 |
+
msgstr ""
|
2751 |
+
|
2752 |
+
#: ../admin/manage/class-ngg-image-list-table.php:276
|
2753 |
+
msgid "Meta"
|
2754 |
+
msgstr ""
|
2755 |
+
|
2756 |
+
#: ../admin/manage/class-ngg-image-list-table.php:277
|
2757 |
+
msgid "Customize thumbnail"
|
2758 |
+
msgstr ""
|
2759 |
+
|
2760 |
+
#: ../admin/manage/class-ngg-image-list-table.php:278
|
2761 |
+
msgid "Edit thumb"
|
2762 |
+
msgstr ""
|
2763 |
+
|
2764 |
+
#: ../admin/manage/class-ngg-image-list-table.php:279
|
2765 |
+
#: ../admin/manage/class-ngg-image-list-table.php:280
|
2766 |
+
msgid "Rotate"
|
2767 |
+
msgstr ""
|
2768 |
+
|
2769 |
+
#: ../admin/manage/class-ngg-image-list-table.php:285
|
2770 |
+
msgid "Recover"
|
2771 |
+
msgstr ""
|
2772 |
+
|
2773 |
+
#: ../admin/manage/class-ngg-image-list-table.php:310
|
2774 |
+
msgid "Delete images"
|
2775 |
+
msgstr ""
|
2776 |
+
|
2777 |
+
#: ../admin/manage/class-ngg-image-list-table.php:311
|
2778 |
+
msgid "Rotate images clockwise"
|
2779 |
+
msgstr ""
|
2780 |
+
|
2781 |
+
#: ../admin/manage/class-ngg-image-list-table.php:312
|
2782 |
+
msgid "Rotate images counter-clockwise"
|
2783 |
+
msgstr ""
|
2784 |
+
|
2785 |
+
#: ../admin/manage/class-ngg-image-list-table.php:313
|
2786 |
+
msgid "Copy to..."
|
2787 |
+
msgstr ""
|
2788 |
+
|
2789 |
+
#: ../admin/manage/class-ngg-image-list-table.php:314
|
2790 |
+
msgid "Move to..."
|
2791 |
+
msgstr ""
|
2792 |
+
|
2793 |
+
#: ../admin/manage/class-ngg-image-list-table.php:315
|
2794 |
+
msgid "Add tags"
|
2795 |
+
msgstr ""
|
2796 |
+
|
2797 |
+
#: ../admin/manage/class-ngg-image-list-table.php:316
|
2798 |
+
#: ../admin/manage/class-ngg-manager.php:222
|
2799 |
+
msgid "Delete tags"
|
2800 |
+
msgstr ""
|
2801 |
+
|
2802 |
+
#: ../admin/manage/class-ngg-image-list-table.php:317
|
2803 |
+
msgid "Overwrite tags"
|
2804 |
+
msgstr ""
|
2805 |
+
|
2806 |
+
#: ../admin/manage/class-ngg-image-manager.php:103
|
2807 |
+
msgid "Recover \"{}\"?"
|
2808 |
+
msgstr ""
|
2809 |
+
|
2810 |
+
#: ../admin/manage/class-ngg-image-manager.php:108
|
2811 |
+
msgid "Delete \"{}\"?"
|
2812 |
+
msgstr ""
|
2813 |
+
|
2814 |
+
#: ../admin/manage/class-ngg-image-manager.php:151
|
2815 |
+
msgid ""
|
2816 |
+
"To enable manual Sort set Custom Order Sort.See Settings->Gallery Settings-"
|
2817 |
+
">Sort Options"
|
2818 |
+
msgstr ""
|
2819 |
+
|
2820 |
+
#: ../admin/manage/class-ngg-image-manager.php:186
|
2821 |
+
msgid "No Picture"
|
2822 |
+
msgstr ""
|
2823 |
+
|
2824 |
+
#: ../admin/manage/class-ngg-image-manager.php:228
|
2825 |
+
msgid "Main page (No parent)"
|
2826 |
+
msgstr ""
|
2827 |
+
|
2828 |
+
#: ../admin/manage/class-ngg-image-manager.php:234
|
2829 |
+
msgid "Add page"
|
2830 |
+
msgstr ""
|
2831 |
+
|
2832 |
+
#: ../admin/manage/class-ngg-image-manager.php:340
|
2833 |
+
#, php-format
|
2834 |
+
msgid "Picture %d deleted successfully."
|
2835 |
+
msgstr ""
|
2836 |
+
|
2837 |
+
#: ../admin/manage/class-ngg-image-manager.php:344
|
2838 |
+
#, php-format
|
2839 |
+
msgid "Picture %d could not be deleted."
|
2840 |
+
msgstr ""
|
2841 |
+
|
2842 |
+
#: ../admin/manage/class-ngg-image-manager.php:359
|
2843 |
+
msgid "Operation successful. Please clear your browser cache."
|
2844 |
+
msgstr ""
|
2845 |
+
|
2846 |
+
#: ../admin/manage/class-ngg-image-manager.php:398
|
2847 |
+
#, php-format
|
2848 |
+
msgid "New page <strong>%s</strong> (ID: %s) created."
|
2849 |
+
msgstr ""
|
2850 |
+
|
2851 |
+
#: ../admin/manage/class-ngg-manager.php:57
|
2852 |
+
msgid "Resize Images to"
|
2853 |
+
msgstr ""
|
2854 |
+
|
2855 |
+
#: ../admin/manage/class-ngg-manager.php:88
|
2856 |
+
msgid "These values are maximum values "
|
2857 |
+
msgstr ""
|
2858 |
+
|
2859 |
+
#: ../admin/manage/class-ngg-manager.php:100
|
2860 |
+
msgid "This will ignore the aspect ratio, so no portrait thumbnails"
|
2861 |
+
msgstr ""
|
2862 |
+
|
2863 |
+
#: ../admin/manage/class-ngg-manager.php:116
|
2864 |
+
msgid "Enter the tags"
|
2865 |
+
msgstr ""
|
2866 |
+
|
2867 |
+
#: ../admin/manage/class-ngg-manager.php:132
|
2868 |
+
msgid "Select the destination gallery:"
|
2869 |
+
msgstr ""
|
2870 |
+
|
2871 |
+
#: ../admin/manage/class-ngg-manager.php:134 ../admin/tinymce/window.php:138
|
2872 |
+
#: ../admin/tinymce/window.php:382 ../admin/tinymce/window.php:433
|
2873 |
+
msgid "Select or search for a gallery"
|
2874 |
+
msgstr ""
|
2875 |
+
|
2876 |
+
#: ../admin/manage/class-ngg-manager.php:177
|
2877 |
+
msgid "No images selected"
|
2878 |
+
msgstr ""
|
2879 |
+
|
2880 |
+
#: ../admin/manage/class-ngg-manager.php:191
|
2881 |
+
msgid "No action selected."
|
2882 |
+
msgstr ""
|
2883 |
+
|
2884 |
+
#: ../admin/manage/class-ngg-manager.php:210
|
2885 |
+
msgid "Copy image to..."
|
2886 |
+
msgstr ""
|
2887 |
+
|
2888 |
+
#: ../admin/manage/class-ngg-manager.php:214
|
2889 |
+
msgid "Move image to..."
|
2890 |
+
msgstr ""
|
2891 |
+
|
2892 |
+
#: ../admin/manage/class-ngg-manager.php:218
|
2893 |
+
msgid "Add new tags"
|
2894 |
+
msgstr ""
|
2895 |
+
|
2896 |
+
#: ../admin/manage/class-ngg-manager.php:226
|
2897 |
+
msgid "Overwrite"
|
2898 |
+
msgstr ""
|
2899 |
+
|
2900 |
+
#: ../admin/manage/class-ngg-manager.php:229
|
2901 |
+
#: ../admin/manage/class-ngg-manager.php:232
|
2902 |
+
msgid "Rotate images"
|
2903 |
+
msgstr ""
|
2904 |
+
|
2905 |
+
#: ../admin/manage/class-ngg-manager.php:239
|
2906 |
+
#: ../admin/manage/class-ngg-manager.php:256
|
2907 |
+
#, php-format
|
2908 |
+
msgid ""
|
2909 |
+
"You are about to start bulk edits for %s galleries\n"
|
2910 |
+
"\n"
|
2911 |
+
" 'Cancel' to stop, 'OK' to proceed."
|
2912 |
+
msgstr ""
|
2913 |
+
|
2914 |
+
#: ../admin/manage/class-ngg-manager.php:380
|
2915 |
+
#: ../admin/manage/class-ngg-manager.php:397
|
2916 |
+
#: ../admin/manage/class-ngg-manager.php:408
|
2917 |
+
msgid "Tags changed"
|
2918 |
+
msgstr ""
|
2919 |
+
|
2920 |
+
#: ../admin/manage/class-ngg-manager.php:464
|
2921 |
+
msgid "Gallery deleted successfully."
|
2922 |
+
msgstr ""
|
2923 |
+
|
2924 |
+
#: ../admin/manage/class-ngg-manager.php:466
|
2925 |
+
msgid "Something went wrong."
|
2926 |
+
msgstr ""
|
2927 |
+
|
2928 |
+
#: ../admin/manage/class-ngg-manager.php:486
|
2929 |
+
msgid "Pictures deleted successfully "
|
2930 |
+
msgstr ""
|
2931 |
+
|
2932 |
+
#: ../admin/manage/class-ngg-search-manager.php:38
|
2933 |
+
#, php-format
|
2934 |
+
msgid "Image results for %s"
|
2935 |
+
msgstr ""
|
2936 |
+
|
2937 |
+
#: ../admin/manage/class-ngg-sort-manager.php:33
|
2938 |
+
msgid ""
|
2939 |
+
"To enable manual Sort set Custom Order Sort. See Settings->Gallery Settings-"
|
2940 |
+
">Sort Options"
|
2941 |
+
msgstr ""
|
2942 |
+
|
2943 |
+
#: ../admin/manage/class-ngg-sort-manager.php:35
|
2944 |
+
msgid "Go back"
|
2945 |
+
msgstr ""
|
2946 |
+
|
2947 |
+
#: ../admin/manage/class-ngg-sort-manager.php:83
|
2948 |
+
msgid "Sort Gallery"
|
2949 |
+
msgstr ""
|
2950 |
+
|
2951 |
+
#: ../admin/manage/class-ngg-sort-manager.php:89
|
2952 |
+
msgid "Back to gallery"
|
2953 |
+
msgstr ""
|
2954 |
+
|
2955 |
+
#: ../admin/manage/class-ngg-sort-manager.php:91
|
2956 |
+
msgid "Update Sort Order"
|
2957 |
+
msgstr ""
|
2958 |
+
|
2959 |
+
#: ../admin/manage/class-ngg-sort-manager.php:97
|
2960 |
+
msgid "Presort"
|
2961 |
+
msgstr ""
|
2962 |
+
|
2963 |
+
#: ../admin/manage/class-ngg-sort-manager.php:101
|
2964 |
+
msgid "Unsorted"
|
2965 |
+
msgstr ""
|
2966 |
+
|
2967 |
+
#: ../admin/manage/class-ngg-sort-manager.php:116 ../admin/media-upload.php:221
|
2968 |
+
msgid "Alt/Title text"
|
2969 |
+
msgstr ""
|
2970 |
+
|
2971 |
+
#: ../admin/manage/class-ngg-sort-manager.php:121 ../lib/meta.php:452
|
2972 |
+
msgid "Date/Time"
|
2973 |
+
msgstr ""
|
2974 |
+
|
2975 |
+
#: ../admin/manage/class-ngg-sort-manager.php:207
|
2976 |
+
msgid "Sort order changed"
|
2977 |
+
msgstr ""
|
2978 |
+
|
2979 |
+
#: ../admin/media-upload.php:11
|
2980 |
+
msgid "NextCellent Gallery"
|
2981 |
+
msgstr ""
|
2982 |
+
|
2983 |
+
#: ../admin/media-upload.php:166
|
2984 |
+
msgid "No gallery"
|
2985 |
+
msgstr ""
|
2986 |
+
|
2987 |
+
#: ../admin/media-upload.php:178
|
2988 |
+
msgid "Select »"
|
2989 |
+
msgstr ""
|
2990 |
+
|
2991 |
+
#: ../admin/media-upload.php:209
|
2992 |
+
msgid "Show"
|
2993 |
+
msgstr ""
|
2994 |
+
|
2995 |
+
#: ../admin/media-upload.php:210
|
2996 |
+
msgid "Hide"
|
2997 |
+
msgstr ""
|
2998 |
+
|
2999 |
+
#: ../admin/media-upload.php:215
|
3000 |
+
msgid "Image ID:"
|
3001 |
+
msgstr ""
|
3002 |
+
|
3003 |
+
#: ../admin/media-upload.php:229 ../admin/tinymce/window.php:335
|
3004 |
+
msgid "Alignment"
|
3005 |
+
msgstr ""
|
3006 |
+
|
3007 |
+
#: ../admin/media-upload.php:234 ../admin/tinymce/window.php:339
|
3008 |
+
msgid "Left"
|
3009 |
+
msgstr ""
|
3010 |
+
|
3011 |
+
#: ../admin/media-upload.php:236 ../admin/tinymce/window.php:340
|
3012 |
+
msgid "Center"
|
3013 |
+
msgstr ""
|
3014 |
+
|
3015 |
+
#: ../admin/media-upload.php:238 ../admin/tinymce/window.php:341
|
3016 |
+
msgid "Right"
|
3017 |
+
msgstr ""
|
3018 |
+
|
3019 |
+
#: ../admin/media-upload.php:248
|
3020 |
+
msgid "Full size"
|
3021 |
+
msgstr ""
|
3022 |
+
|
3023 |
+
#: ../admin/media-upload.php:250
|
3024 |
+
msgid "Singlepic"
|
3025 |
+
msgstr ""
|
3026 |
+
|
3027 |
+
#: ../admin/media-upload.php:263
|
3028 |
+
msgid "Insert into Post"
|
3029 |
+
msgstr ""
|
3030 |
+
|
3031 |
+
#: ../admin/media-upload.php:274
|
3032 |
+
msgid "Save all changes"
|
3033 |
+
msgstr ""
|
3034 |
+
|
3035 |
+
#: ../admin/tinymce/window.php:118
|
3036 |
+
msgid "To add something, select what you would want to display"
|
3037 |
+
msgstr ""
|
3038 |
+
|
3039 |
+
#: ../admin/tinymce/window.php:122
|
3040 |
+
msgid "One picture"
|
3041 |
+
msgstr ""
|
3042 |
+
|
3043 |
+
#: ../admin/tinymce/window.php:123
|
3044 |
+
msgid "Recent pictures"
|
3045 |
+
msgstr ""
|
3046 |
+
|
3047 |
+
#: ../admin/tinymce/window.php:124
|
3048 |
+
msgid "Random pictures"
|
3049 |
+
msgstr ""
|
3050 |
+
|
3051 |
+
#: ../admin/tinymce/window.php:132 ../admin/tinymce/window.php:233
|
3052 |
+
#: ../admin/tinymce/window.php:300 ../admin/tinymce/window.php:358
|
3053 |
+
#: ../admin/tinymce/window.php:420
|
3054 |
+
msgid "Basics"
|
3055 |
+
msgstr ""
|
3056 |
+
|
3057 |
+
#: ../admin/tinymce/window.php:135 ../admin/tinymce/window.php:379
|
3058 |
+
#: ../admin/tinymce/window.php:430
|
3059 |
+
#: ../widgets/class-ngg-slideshow-widget.php:113
|
3060 |
+
msgid "Select a gallery:"
|
3061 |
+
msgstr ""
|
3062 |
+
|
3063 |
+
#: ../admin/tinymce/window.php:143
|
3064 |
+
msgid "Display types"
|
3065 |
+
msgstr ""
|
3066 |
+
|
3067 |
+
#: ../admin/tinymce/window.php:146
|
3068 |
+
msgid "Select how you want to display your gallery"
|
3069 |
+
msgstr ""
|
3070 |
+
|
3071 |
+
#: ../admin/tinymce/window.php:165
|
3072 |
+
msgid "Imagebrowser"
|
3073 |
+
msgstr ""
|
3074 |
+
|
3075 |
+
#: ../admin/tinymce/window.php:171 ../admin/tinymce/window.php:283
|
3076 |
+
#: ../admin/tinymce/window.php:404 ../admin/tinymce/window.php:455
|
3077 |
+
msgid "Carousel"
|
3078 |
+
msgstr ""
|
3079 |
+
|
3080 |
+
#: ../admin/tinymce/window.php:177 ../admin/tinymce/window.php:289
|
3081 |
+
#: ../admin/tinymce/window.php:350 ../admin/tinymce/window.php:410
|
3082 |
+
#: ../admin/tinymce/window.php:461 ../lib/meta.php:451
|
3083 |
+
msgid "Caption"
|
3084 |
+
msgstr ""
|
3085 |
+
|
3086 |
+
#: ../admin/tinymce/window.php:190
|
3087 |
+
msgid "Type options"
|
3088 |
+
msgstr ""
|
3089 |
+
|
3090 |
+
#: ../admin/tinymce/window.php:200
|
3091 |
+
msgid ""
|
3092 |
+
"The number of images before pagination is applied. Leave empty for the "
|
3093 |
+
"default from the settings."
|
3094 |
+
msgstr ""
|
3095 |
+
|
3096 |
+
#: ../admin/tinymce/window.php:208
|
3097 |
+
msgid "Slideshow dimensions"
|
3098 |
+
msgstr ""
|
3099 |
+
|
3100 |
+
#: ../admin/tinymce/window.php:219
|
3101 |
+
msgid "Template name"
|
3102 |
+
msgstr ""
|
3103 |
+
|
3104 |
+
#: ../admin/tinymce/window.php:239
|
3105 |
+
msgid "Select or enter album"
|
3106 |
+
msgstr ""
|
3107 |
+
|
3108 |
+
#: ../admin/tinymce/window.php:241
|
3109 |
+
msgid "Leave this empty to display all galleries."
|
3110 |
+
msgstr ""
|
3111 |
+
|
3112 |
+
#: ../admin/tinymce/window.php:245
|
3113 |
+
msgid "Album display types"
|
3114 |
+
msgstr ""
|
3115 |
+
|
3116 |
+
#: ../admin/tinymce/window.php:248
|
3117 |
+
msgid "Select how you want to display the albums"
|
3118 |
+
msgstr ""
|
3119 |
+
|
3120 |
+
#: ../admin/tinymce/window.php:255
|
3121 |
+
msgid "Compact version"
|
3122 |
+
msgstr ""
|
3123 |
+
|
3124 |
+
#: ../admin/tinymce/window.php:261
|
3125 |
+
msgid "Extended version"
|
3126 |
+
msgstr ""
|
3127 |
+
|
3128 |
+
#: ../admin/tinymce/window.php:267
|
3129 |
+
msgid "Gallery display types"
|
3130 |
+
msgstr ""
|
3131 |
+
|
3132 |
+
#: ../admin/tinymce/window.php:270
|
3133 |
+
msgid ""
|
3134 |
+
"Select a template for the galleries (displayed after you click on an album)"
|
3135 |
+
msgstr ""
|
3136 |
+
|
3137 |
+
#: ../admin/tinymce/window.php:304
|
3138 |
+
msgid "Select a picture"
|
3139 |
+
msgstr ""
|
3140 |
+
|
3141 |
+
#: ../admin/tinymce/window.php:308
|
3142 |
+
msgid "Select or enter picture"
|
3143 |
+
msgstr ""
|
3144 |
+
|
3145 |
+
#: ../admin/tinymce/window.php:313 ../admin/tinymce/window.php:388
|
3146 |
+
#: ../admin/tinymce/window.php:439
|
3147 |
+
msgid "Options"
|
3148 |
+
msgstr ""
|
3149 |
+
|
3150 |
+
#: ../admin/tinymce/window.php:316
|
3151 |
+
msgid "Dimensions"
|
3152 |
+
msgstr ""
|
3153 |
+
|
3154 |
+
#: ../admin/tinymce/window.php:325
|
3155 |
+
msgid "Effect"
|
3156 |
+
msgstr ""
|
3157 |
+
|
3158 |
+
#: ../admin/tinymce/window.php:328
|
3159 |
+
msgid "No effect"
|
3160 |
+
msgstr ""
|
3161 |
+
|
3162 |
+
#: ../admin/tinymce/window.php:330
|
3163 |
+
msgid "Web 2.0"
|
3164 |
+
msgstr ""
|
3165 |
+
|
3166 |
+
#: ../admin/tinymce/window.php:338
|
3167 |
+
msgid "No float"
|
3168 |
+
msgstr ""
|
3169 |
+
|
3170 |
+
#: ../admin/tinymce/window.php:346
|
3171 |
+
msgid "Link"
|
3172 |
+
msgstr ""
|
3173 |
+
|
3174 |
+
#: ../admin/tinymce/window.php:347
|
3175 |
+
msgid "Add an optional link to the image. Leave blank for no link."
|
3176 |
+
msgstr ""
|
3177 |
+
|
3178 |
+
#: ../admin/tinymce/window.php:351
|
3179 |
+
msgid "Add an optional caption to the image. Leave blank for no caption."
|
3180 |
+
msgstr ""
|
3181 |
+
|
3182 |
+
#: ../admin/tinymce/window.php:364 ../admin/tinymce/window.php:426
|
3183 |
+
msgid "The number of images that should be displayed."
|
3184 |
+
msgstr ""
|
3185 |
+
|
3186 |
+
#: ../admin/tinymce/window.php:368
|
3187 |
+
msgid "Sort the images"
|
3188 |
+
msgstr ""
|
3189 |
+
|
3190 |
+
#: ../admin/tinymce/window.php:371
|
3191 |
+
msgid "Upload order"
|
3192 |
+
msgstr ""
|
3193 |
+
|
3194 |
+
#: ../admin/tinymce/window.php:372
|
3195 |
+
msgid "Date taken"
|
3196 |
+
msgstr ""
|
3197 |
+
|
3198 |
+
#: ../admin/tinymce/window.php:373
|
3199 |
+
msgid "User defined"
|
3200 |
+
msgstr ""
|
3201 |
+
|
3202 |
+
#: ../admin/tinymce/window.php:375
|
3203 |
+
msgid ""
|
3204 |
+
"In what order the images are shown. Upload order uses the ID's, date taken "
|
3205 |
+
"uses the EXIF data and user defined is the sort mode from the settings."
|
3206 |
+
msgstr ""
|
3207 |
+
|
3208 |
+
#: ../admin/tinymce/window.php:384 ../admin/tinymce/window.php:435
|
3209 |
+
msgid "If a gallery is selected, only images from that gallery will be shown."
|
3210 |
+
msgstr ""
|
3211 |
+
|
3212 |
+
#: ../admin/tinymce/window.php:391 ../admin/tinymce/window.php:442
|
3213 |
+
msgid "Select a template to display the images"
|
3214 |
+
msgstr ""
|
3215 |
+
|
3216 |
+
#: ../admin/tinymce/window.php:475
|
3217 |
+
msgid "Insert"
|
3218 |
+
msgstr ""
|
3219 |
+
|
3220 |
+
#: ../admin/tinymce/window.php:511
|
3221 |
+
msgid "You need to select a gallery."
|
3222 |
+
msgstr ""
|
3223 |
+
|
3224 |
+
#: ../admin/tinymce/window.php:515
|
3225 |
+
msgid "You need to select a picture."
|
3226 |
+
msgstr ""
|
3227 |
+
|
3228 |
+
#: ../admin/tinymce/window.php:519 ../admin/tinymce/window.php:523
|
3229 |
+
msgid "You need to select a number of images."
|
3230 |
+
msgstr ""
|
3231 |
+
|
3232 |
+
#: ../admin/upgrade.php:94
|
3233 |
+
msgid "Could not find NextCellent Gallery database tables, upgrade failed!"
|
3234 |
+
msgstr ""
|
3235 |
+
|
3236 |
+
#: ../admin/upgrade.php:114 ../admin/upgrade.php:137
|
3237 |
+
msgid "Upgrade NextCellent Gallery"
|
3238 |
+
msgstr ""
|
3239 |
+
|
3240 |
+
#: ../admin/upgrade.php:116
|
3241 |
+
msgid ""
|
3242 |
+
"You're upgrading from an older version. To enable the newest features, we "
|
3243 |
+
"sometimes need to do a database upgrade."
|
3244 |
+
msgstr ""
|
3245 |
+
|
3246 |
+
#: ../admin/upgrade.php:120
|
3247 |
+
msgid ""
|
3248 |
+
"Normally you should be able to downgrade without any problems, but if you "
|
3249 |
+
"really want to play safe, you should make a backup of your database."
|
3250 |
+
msgstr ""
|
3251 |
+
|
3252 |
+
#: ../admin/upgrade.php:124
|
3253 |
+
msgid "Start upgrade now"
|
3254 |
+
msgstr ""
|
3255 |
+
|
3256 |
+
#: ../admin/upgrade.php:141
|
3257 |
+
msgid "Upgrading database…"
|
3258 |
+
msgstr ""
|
3259 |
+
|
3260 |
+
#: ../admin/upgrade.php:145
|
3261 |
+
msgid "Oh no! Something went wrong while updating the database"
|
3262 |
+
msgstr ""
|
3263 |
+
|
3264 |
+
#: ../admin/upgrade.php:149
|
3265 |
+
msgid "Upgrade complete."
|
3266 |
+
msgstr ""
|
3267 |
+
|
3268 |
+
#: ../admin/upgrade.php:151
|
3269 |
+
msgid "Continue to NextCellent"
|
3270 |
+
msgstr ""
|
3271 |
+
|
3272 |
+
#: ../admin/wpmu.php:44
|
3273 |
+
msgid "Update successfully"
|
3274 |
+
msgstr ""
|
3275 |
+
|
3276 |
+
#: ../admin/wpmu.php:79
|
3277 |
+
msgid "Network Options"
|
3278 |
+
msgstr ""
|
3279 |
+
|
3280 |
+
#: ../admin/wpmu.php:89
|
3281 |
+
msgid ""
|
3282 |
+
"This is the default path for all blogs. With the placeholder %BLOG_ID% you "
|
3283 |
+
"can organize the folder structure better."
|
3284 |
+
msgstr ""
|
3285 |
+
|
3286 |
+
#: ../admin/wpmu.php:90
|
3287 |
+
#, php-format
|
3288 |
+
msgid "The default setting should be %s."
|
3289 |
+
msgstr ""
|
3290 |
+
|
3291 |
+
#: ../admin/wpmu.php:102
|
3292 |
+
msgid "Enable upload quota check"
|
3293 |
+
msgstr ""
|
3294 |
+
|
3295 |
+
#: ../admin/wpmu.php:105
|
3296 |
+
msgid "Should work if the gallery is bellow the blog.dir"
|
3297 |
+
msgstr ""
|
3298 |
+
|
3299 |
+
#: ../admin/wpmu.php:109
|
3300 |
+
msgid "Enable zip upload option"
|
3301 |
+
msgstr ""
|
3302 |
+
|
3303 |
+
#: ../admin/wpmu.php:112
|
3304 |
+
msgid "Allow users to upload zip folders."
|
3305 |
+
msgstr ""
|
3306 |
+
|
3307 |
+
#: ../admin/wpmu.php:116
|
3308 |
+
msgid "Enable import function"
|
3309 |
+
msgstr ""
|
3310 |
+
|
3311 |
+
#: ../admin/wpmu.php:119
|
3312 |
+
msgid "Allow users to import images folders from the server."
|
3313 |
+
msgstr ""
|
3314 |
+
|
3315 |
+
#: ../admin/wpmu.php:123
|
3316 |
+
msgid "Enable style selection"
|
3317 |
+
msgstr ""
|
3318 |
+
|
3319 |
+
#: ../admin/wpmu.php:126
|
3320 |
+
msgid "Allow users to choose a style for the gallery."
|
3321 |
+
msgstr ""
|
3322 |
+
|
3323 |
+
#: ../admin/wpmu.php:130
|
3324 |
+
msgid "Enable roles/capabilities"
|
3325 |
+
msgstr ""
|
3326 |
+
|
3327 |
+
#: ../admin/wpmu.php:133
|
3328 |
+
msgid "Allow users to change the roles for other blog authors."
|
3329 |
+
msgstr ""
|
3330 |
+
|
3331 |
+
#: ../admin/wpmu.php:137
|
3332 |
+
msgid "Default style"
|
3333 |
+
msgstr ""
|
3334 |
+
|
3335 |
+
#: ../admin/wpmu.php:143
|
3336 |
+
msgid "Choose the default style for the galleries."
|
3337 |
+
msgstr ""
|
3338 |
+
|
3339 |
+
#: ../admin/wpmu.php:144
|
3340 |
+
msgid "Note: between brackets is the folder in which the file is."
|
3341 |
+
msgstr ""
|
3342 |
+
|
3343 |
+
#: ../lib/core.php:432
|
3344 |
+
#, php-format
|
3345 |
+
msgid ""
|
3346 |
+
"Note : Based on your server memory limit you should not upload larger images "
|
3347 |
+
"then <strong>%d x %d</strong> pixel"
|
3348 |
+
msgstr ""
|
3349 |
+
|
3350 |
+
#: ../lib/locale.php:112
|
3351 |
+
msgid "Invalid URL Provided."
|
3352 |
+
msgstr ""
|
3353 |
+
|
3354 |
+
#: ../lib/locale.php:116 ../lib/locale.php:120
|
3355 |
+
msgid "Could not create Temporary file."
|
3356 |
+
msgstr ""
|
3357 |
+
|
3358 |
+
#: ../lib/meta.php:131
|
3359 |
+
msgid " mm"
|
3360 |
+
msgstr ""
|
3361 |
+
|
3362 |
+
#: ../lib/meta.php:137
|
3363 |
+
msgid " sec"
|
3364 |
+
msgstr ""
|
3365 |
+
|
3366 |
+
#: ../lib/meta.php:141
|
3367 |
+
msgid "Fired"
|
3368 |
+
msgstr ""
|
3369 |
+
|
3370 |
+
#: ../lib/meta.php:141
|
3371 |
+
msgid "Not fired"
|
3372 |
+
msgstr ""
|
3373 |
+
|
3374 |
+
#: ../lib/meta.php:448 ../view/imagebrowser-exif.php:46
|
3375 |
+
msgid "Aperture"
|
3376 |
+
msgstr ""
|
3377 |
+
|
3378 |
+
#: ../lib/meta.php:449 ../lib/meta.php:474
|
3379 |
+
msgid "Credit"
|
3380 |
+
msgstr ""
|
3381 |
+
|
3382 |
+
#: ../lib/meta.php:450
|
3383 |
+
msgid "Camera"
|
3384 |
+
msgstr ""
|
3385 |
+
|
3386 |
+
#: ../lib/meta.php:453
|
3387 |
+
msgid "Copyright"
|
3388 |
+
msgstr ""
|
3389 |
+
|
3390 |
+
#: ../lib/meta.php:454
|
3391 |
+
msgid "Focal length"
|
3392 |
+
msgstr ""
|
3393 |
+
|
3394 |
+
#: ../lib/meta.php:455
|
3395 |
+
msgid "ISO"
|
3396 |
+
msgstr ""
|
3397 |
+
|
3398 |
+
#: ../lib/meta.php:456 ../view/imagebrowser-exif.php:54
|
3399 |
+
msgid "Shutter speed"
|
3400 |
+
msgstr ""
|
3401 |
+
|
3402 |
+
#: ../lib/meta.php:460
|
3403 |
+
msgid "Subject"
|
3404 |
+
msgstr ""
|
3405 |
+
|
3406 |
+
#: ../lib/meta.php:461
|
3407 |
+
msgid "Make"
|
3408 |
+
msgstr ""
|
3409 |
+
|
3410 |
+
#: ../lib/meta.php:462
|
3411 |
+
msgid "Edit Status"
|
3412 |
+
msgstr ""
|
3413 |
+
|
3414 |
+
#: ../lib/meta.php:463
|
3415 |
+
msgid "Category"
|
3416 |
+
msgstr ""
|
3417 |
+
|
3418 |
+
#: ../lib/meta.php:464
|
3419 |
+
msgid "Keywords"
|
3420 |
+
msgstr ""
|
3421 |
+
|
3422 |
+
#: ../lib/meta.php:465
|
3423 |
+
msgid "Date Created"
|
3424 |
+
msgstr ""
|
3425 |
+
|
3426 |
+
#: ../lib/meta.php:466
|
3427 |
+
msgid "Time Created"
|
3428 |
+
msgstr ""
|
3429 |
+
|
3430 |
+
#: ../lib/meta.php:467
|
3431 |
+
msgid "Author Position"
|
3432 |
+
msgstr ""
|
3433 |
+
|
3434 |
+
#: ../lib/meta.php:468
|
3435 |
+
msgid "City"
|
3436 |
+
msgstr ""
|
3437 |
+
|
3438 |
+
#: ../lib/meta.php:469
|
3439 |
+
msgid "Location"
|
3440 |
+
msgstr ""
|
3441 |
+
|
3442 |
+
#: ../lib/meta.php:470
|
3443 |
+
msgid "Province/State"
|
3444 |
+
msgstr ""
|
3445 |
+
|
3446 |
+
#: ../lib/meta.php:471
|
3447 |
+
msgid "Country code"
|
3448 |
+
msgstr ""
|
3449 |
+
|
3450 |
+
#: ../lib/meta.php:472
|
3451 |
+
msgid "Country"
|
3452 |
+
msgstr ""
|
3453 |
+
|
3454 |
+
#: ../lib/meta.php:473
|
3455 |
+
msgid "Headline"
|
3456 |
+
msgstr ""
|
3457 |
+
|
3458 |
+
#: ../lib/meta.php:475
|
3459 |
+
msgid "Source"
|
3460 |
+
msgstr ""
|
3461 |
+
|
3462 |
+
#: ../lib/meta.php:476
|
3463 |
+
msgid "Copyright Notice"
|
3464 |
+
msgstr ""
|
3465 |
+
|
3466 |
+
#: ../lib/meta.php:477
|
3467 |
+
msgid "Contact"
|
3468 |
+
msgstr ""
|
3469 |
+
|
3470 |
+
#: ../lib/meta.php:478
|
3471 |
+
msgid "Last modified"
|
3472 |
+
msgstr ""
|
3473 |
+
|
3474 |
+
#: ../lib/meta.php:479
|
3475 |
+
msgid "Program tool"
|
3476 |
+
msgstr ""
|
3477 |
+
|
3478 |
+
#: ../lib/meta.php:480
|
3479 |
+
msgid "Format"
|
3480 |
+
msgstr ""
|
3481 |
+
|
3482 |
+
#: ../lib/meta.php:481
|
3483 |
+
msgid "Image Width"
|
3484 |
+
msgstr ""
|
3485 |
+
|
3486 |
+
#: ../lib/meta.php:482
|
3487 |
+
msgid "Image Height"
|
3488 |
+
msgstr ""
|
3489 |
+
|
3490 |
+
#: ../lib/meta.php:483
|
3491 |
+
msgid "Flash"
|
3492 |
+
msgstr ""
|
3493 |
+
|
3494 |
+
#: ../lib/multisite.php:23
|
3495 |
+
msgid ""
|
3496 |
+
"Sorry, you have used your space allocation. Please delete some files to "
|
3497 |
+
"upload more files."
|
3498 |
+
msgstr ""
|
3499 |
+
|
3500 |
+
#: ../lib/ngg-db.php:361 ../lib/ngg-db.php:362
|
3501 |
+
msgid "Album overview"
|
3502 |
+
msgstr ""
|
3503 |
+
|
3504 |
+
#: ../lib/rewrite.php:223 ../view/imagebrowser-caption.php:31
|
3505 |
+
#: ../view/imagebrowser-exif.php:35 ../view/imagebrowser.php:31
|
3506 |
+
msgid "Picture"
|
3507 |
+
msgstr ""
|
3508 |
+
|
3509 |
+
#: ../lib/shortcodes.php:358
|
3510 |
+
msgid "[Pictures not found]"
|
3511 |
+
msgstr ""
|
3512 |
+
|
3513 |
+
#: ../lib/tags.php:35
|
3514 |
+
msgid "No new tag specified!"
|
3515 |
+
msgstr ""
|
3516 |
+
|
3517 |
+
#: ../lib/tags.php:50
|
3518 |
+
msgid "No new/old valid tag specified!"
|
3519 |
+
msgstr ""
|
3520 |
+
|
3521 |
+
#: ../lib/tags.php:86
|
3522 |
+
msgid "No tag renamed."
|
3523 |
+
msgstr ""
|
3524 |
+
|
3525 |
+
#: ../lib/tags.php:88
|
3526 |
+
#, php-format
|
3527 |
+
msgid "Renamed tag(s) «%1$s» to «%2$s»"
|
3528 |
+
msgstr ""
|
3529 |
+
|
3530 |
+
#: ../lib/tags.php:95
|
3531 |
+
msgid "No valid new tag."
|
3532 |
+
msgstr ""
|
3533 |
+
|
3534 |
+
#: ../lib/tags.php:112
|
3535 |
+
msgid "No objects (post/page) found for specified old tags."
|
3536 |
+
msgstr ""
|
3537 |
+
|
3538 |
+
#: ../lib/tags.php:141
|
3539 |
+
msgid "No tag merged."
|
3540 |
+
msgstr ""
|
3541 |
+
|
3542 |
+
#: ../lib/tags.php:143
|
3543 |
+
#, php-format
|
3544 |
+
msgid ""
|
3545 |
+
"Merge tag(s) «%1$s» to «%2$s». %3$s objects edited."
|
3546 |
+
msgstr ""
|
3547 |
+
|
3548 |
+
#: ../lib/tags.php:146
|
3549 |
+
msgid "Error. No enough tags for rename. Too for merge. Choose !"
|
3550 |
+
msgstr ""
|
3551 |
+
|
3552 |
+
#: ../lib/tags.php:163
|
3553 |
+
msgid "No tag specified!"
|
3554 |
+
msgstr ""
|
3555 |
+
|
3556 |
+
#: ../lib/tags.php:186
|
3557 |
+
msgid "No tag deleted."
|
3558 |
+
msgstr ""
|
3559 |
+
|
3560 |
+
#: ../lib/tags.php:188
|
3561 |
+
#, php-format
|
3562 |
+
msgid "%1s tag(s) deleted."
|
3563 |
+
msgstr ""
|
3564 |
+
|
3565 |
+
#: ../lib/tags.php:202
|
3566 |
+
msgid "No new slug(s) specified!"
|
3567 |
+
msgstr ""
|
3568 |
+
|
3569 |
+
#: ../lib/tags.php:214
|
3570 |
+
msgid "Tags number and slugs number isn't the same!"
|
3571 |
+
msgstr ""
|
3572 |
+
|
3573 |
+
#: ../lib/tags.php:241
|
3574 |
+
msgid "No slug edited."
|
3575 |
+
msgstr ""
|
3576 |
+
|
3577 |
+
#: ../lib/tags.php:243
|
3578 |
+
#, php-format
|
3579 |
+
msgid "%s slug(s) edited."
|
3580 |
+
msgstr ""
|
3581 |
+
|
3582 |
+
#: ../lib/xmlrpc.php:93
|
3583 |
+
#, php-format
|
3584 |
+
msgid ""
|
3585 |
+
"XML-RPC services are disabled on this blog. An admin user can enable them "
|
3586 |
+
"at %s"
|
3587 |
+
msgstr ""
|
3588 |
+
|
3589 |
+
#: ../lib/xmlrpc.php:101
|
3590 |
+
msgid "Bad login/pass combination."
|
3591 |
+
msgstr ""
|
3592 |
+
|
3593 |
+
#: ../lib/xmlrpc.php:157
|
3594 |
+
msgid "You are not allowed to upload files to this site."
|
3595 |
+
msgstr ""
|
3596 |
+
|
3597 |
+
#: ../lib/xmlrpc.php:163 ../lib/xmlrpc.php:777 ../lib/xmlrpc.php:829
|
3598 |
+
msgid "Could not find gallery "
|
3599 |
+
msgstr ""
|
3600 |
+
|
3601 |
+
#: ../lib/xmlrpc.php:168 ../lib/xmlrpc.php:782 ../lib/xmlrpc.php:834
|
3602 |
+
msgid "You are not allowed to upload files to this gallery."
|
3603 |
+
msgstr ""
|
3604 |
+
|
3605 |
+
#: ../lib/xmlrpc.php:180
|
3606 |
+
msgid "This is no valid image file."
|
3607 |
+
msgstr ""
|
3608 |
+
|
3609 |
+
#: ../lib/xmlrpc.php:192
|
3610 |
+
msgid "Could not find image id "
|
3611 |
+
msgstr ""
|
3612 |
+
|
3613 |
+
#: ../lib/xmlrpc.php:199
|
3614 |
+
#, php-format
|
3615 |
+
msgid "Failed to delete image %1$s "
|
3616 |
+
msgstr ""
|
3617 |
+
|
3618 |
+
#: ../lib/xmlrpc.php:208
|
3619 |
+
#, php-format
|
3620 |
+
msgid "Could not write file %1$s (%2$s)"
|
3621 |
+
msgstr ""
|
3622 |
+
|
3623 |
+
#: ../lib/xmlrpc.php:275 ../lib/xmlrpc.php:327
|
3624 |
+
msgid "Invalid image ID"
|
3625 |
+
msgstr ""
|
3626 |
+
|
3627 |
+
#: ../lib/xmlrpc.php:278 ../lib/xmlrpc.php:330
|
3628 |
+
msgid "Sorry, you must be able to edit this image"
|
3629 |
+
msgstr ""
|
3630 |
+
|
3631 |
+
#: ../lib/xmlrpc.php:336
|
3632 |
+
msgid "Sorry, could not update the image"
|
3633 |
+
msgstr ""
|
3634 |
+
|
3635 |
+
#: ../lib/xmlrpc.php:372 ../lib/xmlrpc.php:604 ../lib/xmlrpc.php:704
|
3636 |
+
#: ../lib/xmlrpc.php:739
|
3637 |
+
msgid "Sorry, you must be able to manage galleries"
|
3638 |
+
msgstr ""
|
3639 |
+
|
3640 |
+
#: ../lib/xmlrpc.php:378
|
3641 |
+
msgid "Sorry, could not create the gallery"
|
3642 |
+
msgstr ""
|
3643 |
+
|
3644 |
+
#: ../lib/xmlrpc.php:421 ../lib/xmlrpc.php:601
|
3645 |
+
msgid "Invalid gallery ID"
|
3646 |
+
msgstr ""
|
3647 |
+
|
3648 |
+
#: ../lib/xmlrpc.php:424
|
3649 |
+
msgid "Sorry, you must be able to manage this gallery"
|
3650 |
+
msgstr ""
|
3651 |
+
|
3652 |
+
#: ../lib/xmlrpc.php:430
|
3653 |
+
msgid "Sorry, could not update the gallery"
|
3654 |
+
msgstr ""
|
3655 |
+
|
3656 |
+
#: ../lib/xmlrpc.php:470 ../lib/xmlrpc.php:522 ../lib/xmlrpc.php:564
|
3657 |
+
#: ../lib/xmlrpc.php:637 ../lib/xmlrpc.php:671
|
3658 |
+
msgid "Sorry, you must be able to manage albums"
|
3659 |
+
msgstr ""
|
3660 |
+
|
3661 |
+
#: ../lib/xmlrpc.php:476
|
3662 |
+
msgid "Sorry, could not create the album"
|
3663 |
+
msgstr ""
|
3664 |
+
|
3665 |
+
#: ../lib/xmlrpc.php:519 ../lib/xmlrpc.php:561
|
3666 |
+
msgid "Invalid album ID"
|
3667 |
+
msgstr ""
|
3668 |
+
|
3669 |
+
#: ../lib/xmlrpc.php:528
|
3670 |
+
msgid "Sorry, could not update the album"
|
3671 |
+
msgstr ""
|
3672 |
+
|
3673 |
+
#: ../nggallery.php:122
|
3674 |
+
msgid "NextCellent Gallery requires a database upgrade."
|
3675 |
+
msgstr ""
|
3676 |
+
|
3677 |
+
#: ../nggallery.php:122
|
3678 |
+
msgid "Upgrade now."
|
3679 |
+
msgstr ""
|
3680 |
+
|
3681 |
+
#: ../nggallery.php:136
|
3682 |
+
msgid ""
|
3683 |
+
"<strong>Translation by : </strong><a target=\"_blank\" href=\"http://"
|
3684 |
+
"alexrabe.de/wordpress-plugins/nextgen-gallery/languages/\">See here</a>"
|
3685 |
+
msgstr ""
|
3686 |
+
|
3687 |
+
#: ../nggallery.php:137
|
3688 |
+
msgid ""
|
3689 |
+
"<strong>This translation is not yet updated for Version 1.9.0</strong>. If "
|
3690 |
+
"you would like to help with translation, download the current po from the "
|
3691 |
+
"plugin folder and read <a href=\"http://alexrabe.de/wordpress-plugins/"
|
3692 |
+
"wordtube/translation-of-plugins/\">here</a> how you can translate the plugin."
|
3693 |
+
msgstr ""
|
3694 |
+
|
3695 |
+
#: ../nggallery.php:177
|
3696 |
+
msgid "Something went wrong while upgrading NextCellent Gallery."
|
3697 |
+
msgstr ""
|
3698 |
+
|
3699 |
+
#: ../nggallery.php:266
|
3700 |
+
msgid ""
|
3701 |
+
"Sorry, NextCellent Gallery works only with a Memory Limit of 16 MB or higher"
|
3702 |
+
msgstr ""
|
3703 |
+
|
3704 |
+
#: ../nggallery.php:295
|
3705 |
+
msgid "Picture tag"
|
3706 |
+
msgstr ""
|
3707 |
+
|
3708 |
+
#: ../nggallery.php:296
|
3709 |
+
msgid "Picture tag: %2$l."
|
3710 |
+
msgstr ""
|
3711 |
+
|
3712 |
+
#: ../nggallery.php:297
|
3713 |
+
msgid "Separate picture tags with commas."
|
3714 |
+
msgstr ""
|
3715 |
+
|
3716 |
+
#: ../nggallery.php:405
|
3717 |
+
msgid "NextCellent Gallery / Images"
|
3718 |
+
msgstr ""
|
3719 |
+
|
3720 |
+
#: ../nggallery.php:415
|
3721 |
+
msgid "NextCellent"
|
3722 |
+
msgstr ""
|
3723 |
+
|
3724 |
+
#: ../nggallery.php:509
|
3725 |
+
msgid "loading"
|
3726 |
+
msgstr ""
|
3727 |
+
|
3728 |
+
#: ../nggallery.php:725
|
3729 |
+
msgid "Get help"
|
3730 |
+
msgstr ""
|
3731 |
+
|
3732 |
+
#: ../nggallery.php:807
|
3733 |
+
msgid "Sorry, NextCellent Gallery is deactivated: NextGEN version "
|
3734 |
+
msgstr ""
|
3735 |
+
|
3736 |
+
#: ../nggfunctions.php:98
|
3737 |
+
msgid "The gallery was not found."
|
3738 |
+
msgstr ""
|
3739 |
+
|
3740 |
+
#: ../nggfunctions.php:125
|
3741 |
+
msgid "previous"
|
3742 |
+
msgstr ""
|
3743 |
+
|
3744 |
+
#: ../nggfunctions.php:125
|
3745 |
+
msgid "next"
|
3746 |
+
msgstr ""
|
3747 |
+
|
3748 |
+
#: ../nggfunctions.php:177 ../nggfunctions.php:664
|
3749 |
+
msgid "[Gallery not found]"
|
3750 |
+
msgstr ""
|
3751 |
+
|
3752 |
+
#: ../nggfunctions.php:465
|
3753 |
+
msgid "[Album not found]"
|
3754 |
+
msgstr ""
|
3755 |
+
|
3756 |
+
#: ../nggfunctions.php:795
|
3757 |
+
msgid "[SinglePic not found]"
|
3758 |
+
msgstr ""
|
3759 |
+
|
3760 |
+
#: ../nggfunctions.php:931
|
3761 |
+
msgid "Related images for"
|
3762 |
+
msgstr ""
|
3763 |
+
|
3764 |
+
#: ../view/album-compact.php:32 ../view/album-extend.php:30
|
3765 |
+
msgid "Photos"
|
3766 |
+
msgstr ""
|
3767 |
+
|
3768 |
+
#: ../view/gallery-caption.php:32 ../view/gallery.php:68
|
3769 |
+
msgid "[View with PicLens]"
|
3770 |
+
msgstr ""
|
3771 |
+
|
3772 |
+
#: ../view/imagebrowser-caption.php:26 ../view/imagebrowser-exif.php:30
|
3773 |
+
#: ../view/imagebrowser.php:26
|
3774 |
+
msgid "Back"
|
3775 |
+
msgstr ""
|
3776 |
+
|
3777 |
+
#: ../view/imagebrowser-caption.php:29 ../view/imagebrowser-exif.php:33
|
3778 |
+
#: ../view/imagebrowser.php:29
|
3779 |
+
msgid "Next"
|
3780 |
+
msgstr ""
|
3781 |
+
|
3782 |
+
#: ../view/imagebrowser-caption.php:31 ../view/imagebrowser-exif.php:35
|
3783 |
+
#: ../view/imagebrowser.php:31
|
3784 |
+
msgid "of"
|
3785 |
+
msgstr ""
|
3786 |
+
|
3787 |
+
#: ../view/imagebrowser-exif.php:38
|
3788 |
+
msgid "Meta data"
|
3789 |
+
msgstr ""
|
3790 |
+
|
3791 |
+
#: ../view/imagebrowser-exif.php:42
|
3792 |
+
msgid "Camera / Type"
|
3793 |
+
msgstr ""
|
3794 |
+
|
3795 |
+
#: ../view/imagebrowser-exif.php:50
|
3796 |
+
msgid "Focal Length"
|
3797 |
+
msgstr ""
|
3798 |
+
|
3799 |
+
#: ../widgets/class-ngg-gallery-widget.php:12
|
3800 |
+
msgid "NextCellent Gallery Widget"
|
3801 |
+
msgstr ""
|
3802 |
+
|
3803 |
+
#: ../widgets/class-ngg-gallery-widget.php:14
|
3804 |
+
msgid "Add recent or random images from the galleries"
|
3805 |
+
msgstr ""
|
3806 |
+
|
3807 |
+
#: ../widgets/class-ngg-gallery-widget.php:97
|
3808 |
+
#: ../widgets/class-ngg-slideshow-widget.php:106
|
3809 |
+
msgid "Title:"
|
3810 |
+
msgstr ""
|
3811 |
+
|
3812 |
+
#: ../widgets/class-ngg-gallery-widget.php:103
|
3813 |
+
msgid "Show:"
|
3814 |
+
msgstr ""
|
3815 |
+
|
3816 |
+
#: ../widgets/class-ngg-gallery-widget.php:112
|
3817 |
+
msgid "Original images"
|
3818 |
+
msgstr ""
|
3819 |
+
|
3820 |
+
#: ../widgets/class-ngg-gallery-widget.php:120
|
3821 |
+
msgid "random"
|
3822 |
+
msgstr ""
|
3823 |
+
|
3824 |
+
#: ../widgets/class-ngg-gallery-widget.php:126
|
3825 |
+
msgid "recent added "
|
3826 |
+
msgstr ""
|
3827 |
+
|
3828 |
+
#: ../widgets/class-ngg-gallery-widget.php:131
|
3829 |
+
#: ../widgets/class-ngg-slideshow-widget.php:135
|
3830 |
+
msgid "Width:"
|
3831 |
+
msgstr ""
|
3832 |
+
|
3833 |
+
#: ../widgets/class-ngg-gallery-widget.php:140
|
3834 |
+
#: ../widgets/class-ngg-slideshow-widget.php:145
|
3835 |
+
msgid "Height:"
|
3836 |
+
msgstr ""
|
3837 |
+
|
3838 |
+
#: ../widgets/class-ngg-gallery-widget.php:149
|
3839 |
+
msgid "Select:"
|
3840 |
+
msgstr ""
|
3841 |
+
|
3842 |
+
#: ../widgets/class-ngg-gallery-widget.php:153
|
3843 |
+
msgid "All galleries"
|
3844 |
+
msgstr ""
|
3845 |
+
|
3846 |
+
#: ../widgets/class-ngg-gallery-widget.php:155
|
3847 |
+
msgid "Only which are not listed"
|
3848 |
+
msgstr ""
|
3849 |
+
|
3850 |
+
#: ../widgets/class-ngg-gallery-widget.php:157
|
3851 |
+
msgid "Only which are listed"
|
3852 |
+
msgstr ""
|
3853 |
+
|
3854 |
+
#: ../widgets/class-ngg-gallery-widget.php:161
|
3855 |
+
msgid "Gallery ID:"
|
3856 |
+
msgstr ""
|
3857 |
+
|
3858 |
+
#: ../widgets/class-ngg-gallery-widget.php:166
|
3859 |
+
msgid "Gallery IDs, separated by commas."
|
3860 |
+
msgstr ""
|
3861 |
+
|
3862 |
+
#: ../widgets/class-ngg-media-rss-widget.php:12
|
3863 |
+
msgid "NextCellent Media RSS"
|
3864 |
+
msgstr ""
|
3865 |
+
|
3866 |
+
#: ../widgets/class-ngg-media-rss-widget.php:14
|
3867 |
+
msgid "Widget that displays a Media RSS links for NextCellent Gallery."
|
3868 |
+
msgstr ""
|
3869 |
+
|
3870 |
+
#: ../widgets/class-ngg-media-rss-widget.php:80
|
3871 |
+
#: ../widgets/class-ngg-media-rss-widget.php:82
|
3872 |
+
msgid "Media RSS"
|
3873 |
+
msgstr ""
|
3874 |
+
|
3875 |
+
#: ../widgets/class-ngg-media-rss-widget.php:83
|
3876 |
+
msgid "Link to the main image feed"
|
3877 |
+
msgstr ""
|
3878 |
+
|
3879 |
+
#: ../widgets/class-ngg-media-rss-widget.php:100
|
3880 |
+
msgid "Show the RSS icon"
|
3881 |
+
msgstr ""
|
3882 |
+
|
3883 |
+
#: ../widgets/class-ngg-media-rss-widget.php:108
|
3884 |
+
msgid "Show the link text"
|
3885 |
+
msgstr ""
|
3886 |
+
|
3887 |
+
#: ../widgets/class-ngg-media-rss-widget.php:113
|
3888 |
+
msgid "Text for Media RSS link"
|
3889 |
+
msgstr ""
|
3890 |
+
|
3891 |
+
#: ../widgets/class-ngg-media-rss-widget.php:121
|
3892 |
+
msgid "Tooltip text for Media RSS link"
|
3893 |
+
msgstr ""
|
3894 |
+
|
3895 |
+
#: ../widgets/class-ngg-slideshow-widget.php:12
|
3896 |
+
msgid "NextCellent Slideshow"
|
3897 |
+
msgstr ""
|
3898 |
+
|
3899 |
+
#: ../widgets/class-ngg-slideshow-widget.php:14
|
3900 |
+
msgid "Show a NextCellent Gallery Slideshow"
|
3901 |
+
msgstr ""
|
3902 |
+
|
3903 |
+
#: ../widgets/class-ngg-slideshow-widget.php:117
|
3904 |
+
msgid "Random images"
|
3905 |
+
msgstr ""
|
3906 |
+
|
3907 |
+
#: ../widgets/class-ngg-slideshow-widget.php:119
|
3908 |
+
msgid "Recent images"
|
3909 |
+
msgstr ""
|
3910 |
+
|
3911 |
+
#: ../widgets/class-ngg-slideshow-widget.php:130
|
3912 |
+
msgid "The given width and height are ignored when this is selected."
|
3913 |
+
msgstr ""
|
3914 |
+
|
3915 |
+
#: ../xml/media-rss.php:50
|
3916 |
+
msgid "No galleries have been yet created."
|
3917 |
+
msgstr ""
|
3918 |
+
|
3919 |
+
#: ../xml/media-rss.php:69
|
3920 |
+
#, php-format
|
3921 |
+
msgid "The gallery ID=%s does not exist."
|
3922 |
+
msgstr ""
|
3923 |
+
|
3924 |
+
#: ../xml/media-rss.php:100
|
3925 |
+
msgid "No album ID has been provided as parameter"
|
3926 |
+
msgstr ""
|
3927 |
+
|
3928 |
+
#: ../xml/media-rss.php:108
|
3929 |
+
#, php-format
|
3930 |
+
msgid "The album ID=%s does not exist."
|
3931 |
+
msgstr ""
|
3932 |
+
|
3933 |
+
#: ../xml/media-rss.php:115
|
3934 |
+
msgid "Invalid MediaRSS command"
|
3935 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -8,7 +8,7 @@ License: GPLv2
|
|
8 |
|
9 |
== Description ==
|
10 |
|
11 |
-
= 1.9.31 - 2016-09
|
12 |
|
13 |
What's in it for you?
|
14 |
|
@@ -332,7 +332,7 @@ Yes, since we use Javascript rather than flash, NextCellent Gallery is compatibl
|
|
332 |
|
333 |
== Changelog ==
|
334 |
|
335 |
-
= 1.9.31 - 2016-02-
|
336 |
|
337 |
* Added more help documentation
|
338 |
* Fix Add new page button
|
@@ -346,7 +346,7 @@ Yes, since we use Javascript rather than flash, NextCellent Gallery is compatibl
|
|
346 |
* Several fixes
|
347 |
** All credits for Niko Strijbol **
|
348 |
|
349 |
-
= 1.9.30 -
|
350 |
* Completely admin rewrite (Credits to Niko Strijbol. See details on https://bitbucket.org/wpgetready/nextcellent/pull-requests/62/rewrite-admin-section)
|
351 |
* Several fixes (Credits to Niko Strijbol)
|
352 |
* Bios4 provided also German translation (Late credits (included in previous version))
|
8 |
|
9 |
== Description ==
|
10 |
|
11 |
+
= 1.9.31 - 2016-02-09 = Fixes for 1.9.30
|
12 |
|
13 |
What's in it for you?
|
14 |
|
332 |
|
333 |
== Changelog ==
|
334 |
|
335 |
+
= 1.9.31 - 2016-02-09 = FIX
|
336 |
|
337 |
* Added more help documentation
|
338 |
* Fix Add new page button
|
346 |
* Several fixes
|
347 |
** All credits for Niko Strijbol **
|
348 |
|
349 |
+
= 1.9.30 - 2016-02-02 =
|
350 |
* Completely admin rewrite (Credits to Niko Strijbol. See details on https://bitbucket.org/wpgetready/nextcellent/pull-requests/62/rewrite-admin-section)
|
351 |
* Several fixes (Credits to Niko Strijbol)
|
352 |
* Bios4 provided also German translation (Late credits (included in previous version))
|
view/album-compact.php
CHANGED
@@ -27,7 +27,7 @@ Follow variables are useable :
|
|
27 |
</a>
|
28 |
</div>
|
29 |
</div>
|
30 |
-
<h4><a class="ngg-album-desc" title="<?php echo $gallery->title ?>" href="<?php echo $gallery->pagelink ?>" ><?php echo $gallery->title ?></a></h4>
|
31 |
<?php if ($gallery->counter > 0) : ?>
|
32 |
<p><strong><?php echo $gallery->counter ?></strong> <?php _e('Photos', 'nggallery') ?></p>
|
33 |
<?php endif; ?>
|
27 |
</a>
|
28 |
</div>
|
29 |
</div>
|
30 |
+
<h4><a class="ngg-album-desc" title="<?php echo $gallery->title ?>" href="<?php echo $gallery->pagelink ?>" ><?php echo stripslashes($gallery->title) ?></a></h4>
|
31 |
<?php if ($gallery->counter > 0) : ?>
|
32 |
<p><strong><?php echo $gallery->counter ?></strong> <?php _e('Photos', 'nggallery') ?></p>
|
33 |
<?php endif; ?>
|
view/album-extend.php
CHANGED
@@ -19,7 +19,7 @@ Follow variables are useable :
|
|
19 |
<?php foreach ($galleries as $gallery) : ?>
|
20 |
|
21 |
<div class="ngg-album">
|
22 |
-
<div class="ngg-albumtitle"><a href="<?php echo $gallery->pagelink ?>"><?php echo $gallery->title ?></a></div>
|
23 |
<div class="ngg-albumcontent">
|
24 |
<div class="ngg-thumbnail">
|
25 |
<a href="<?php echo $gallery->pagelink ?>"><img class="Thumb" alt="<?php echo $gallery->title ?>" src="<?php echo $gallery->previewurl ?>"/></a>
|
19 |
<?php foreach ($galleries as $gallery) : ?>
|
20 |
|
21 |
<div class="ngg-album">
|
22 |
+
<div class="ngg-albumtitle"><a href="<?php echo $gallery->pagelink ?>"><?php echo stripslashes($gallery->title) ?></a></div>
|
23 |
<div class="ngg-albumcontent">
|
24 |
<div class="ngg-thumbnail">
|
25 |
<a href="<?php echo $gallery->pagelink ?>"><img class="Thumb" alt="<?php echo $gallery->title ?>" src="<?php echo $gallery->previewurl ?>"/></a>
|