Version Description
Download this release
Release Info
Developer | alexrabe |
Plugin | NextGEN Gallery – WordPress Gallery Plugin |
Version | 0.52 |
Comparing to | |
See all releases |
Code changes from version 0.51 to 0.52
- admin/about.php +2 -0
- admin/addgallery.php +45 -30
- admin/admin.php +1 -1
- admin/album.php +3 -3
- admin/manage.php +13 -13
- admin/settings.php +3 -8
- changelog.txt +8 -1
- css/ngg_dKret2.css +7 -6
- lang/nggallery.po +108 -116
- nggallery.php +2 -2
- ngginstall.php +1 -2
- readme.txt +2 -2
admin/about.php
CHANGED
@@ -85,6 +85,8 @@ function ngg_list_support() {
|
|
85 |
"Lise (French Translation)" => "http://liseweb.fr/",
|
86 |
"Anja (Dutch Translation)" => "http://www.werkgroepen.net/wordpress",
|
87 |
"Adrian (Indonesian Translation)" => "http://adrian.web.id/",
|
|
|
|
|
88 |
"Mika Pennanen (Finnish Translation)" => "http://kapsi.fi/~penni",
|
89 |
"Wojciech Owczarek (Polish Translation)" => "http://www.owczi.net"
|
90 |
);
|
85 |
"Lise (French Translation)" => "http://liseweb.fr/",
|
86 |
"Anja (Dutch Translation)" => "http://www.werkgroepen.net/wordpress",
|
87 |
"Adrian (Indonesian Translation)" => "http://adrian.web.id/",
|
88 |
+
"Kees de Bruin" => "http://www.kdbruin.net/fotoalbum/",
|
89 |
+
"Gaspard Tseng / SillyCCSmile (Chinese Translation)" => "",
|
90 |
"Mika Pennanen (Finnish Translation)" => "http://kapsi.fi/~penni",
|
91 |
"Wojciech Owczarek (Polish Translation)" => "http://www.owczi.net"
|
92 |
);
|
admin/addgallery.php
CHANGED
@@ -11,7 +11,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
|
|
11 |
$defaultpath = $ngg_options[gallerypath];
|
12 |
|
13 |
if ($_POST['addgallery']){
|
14 |
-
$newgallery = $_POST['galleryname'];
|
15 |
if (!empty($newgallery))
|
16 |
$messagetext = ngg_create_gallery($newgallery, $defaultpath);
|
17 |
}
|
@@ -294,7 +294,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
|
|
294 |
// **************************************************************
|
295 |
function ngg_scandir($dirname=".") {
|
296 |
// thx to php.net :-)
|
297 |
-
$ext = array("jpg", "png", "gif");
|
298 |
$files = array();
|
299 |
if($handle = opendir($dirname)) {
|
300 |
while(false !== ($file = readdir($handle)))
|
@@ -385,42 +385,57 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
|
|
385 |
|
386 |
if (is_array($pictures)) {
|
387 |
foreach($pictures as $picture) {
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
|
|
394 |
}
|
395 |
-
|
396 |
-
|
397 |
-
$thumb = new ngg_Thumbnail($gallery_absfolder."/".utf8_decode($picture), TRUE);
|
398 |
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
407 |
// check for portrait format
|
408 |
if ($thumb->currentDimensions['height'] > $thumb->currentDimensions['width']) {
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
$thumb->crop(0, $ypos, $ngg_options[thumbwidth],$ngg_options[thumbheight],$ngg_options[thumbResampleMode]);
|
414 |
-
}
|
415 |
} else {
|
416 |
-
$thumb->resize(
|
|
|
|
|
|
|
417 |
}
|
|
|
|
|
418 |
}
|
|
|
|
|
|
|
419 |
}
|
420 |
-
$thumb->
|
421 |
-
if (!@chmod ($gallery_absfolder.$thumbfolder.$prefix.$picture, NGGFILE_PERMISSION)) return '<font color="red">'.__('Error, the file permissions could not set','nggallery').'</font>';
|
422 |
-
}
|
423 |
-
$thumb->destruct();
|
424 |
}
|
425 |
}
|
426 |
|
11 |
$defaultpath = $ngg_options[gallerypath];
|
12 |
|
13 |
if ($_POST['addgallery']){
|
14 |
+
$newgallery = attribute_escape($_POST['galleryname']);
|
15 |
if (!empty($newgallery))
|
16 |
$messagetext = ngg_create_gallery($newgallery, $defaultpath);
|
17 |
}
|
294 |
// **************************************************************
|
295 |
function ngg_scandir($dirname=".") {
|
296 |
// thx to php.net :-)
|
297 |
+
$ext = array("jpeg", "jpg", "png", "gif");
|
298 |
$files = array();
|
299 |
if($handle = opendir($dirname)) {
|
300 |
while(false !== ($file = readdir($handle)))
|
385 |
|
386 |
if (is_array($pictures)) {
|
387 |
foreach($pictures as $picture) {
|
388 |
+
|
389 |
+
// check for existing thumbnail
|
390 |
+
if (file_exists($gallery_absfolder.$thumbfolder.$prefix.$picture)) {
|
391 |
+
if (!is_writable($gallery_absfolder.$thumbfolder.$prefix.$picture)) {
|
392 |
+
$messagetext .= $gallery_absfolder."/".$picture."<br />";
|
393 |
+
continue;
|
394 |
+
}
|
395 |
}
|
396 |
+
|
397 |
+
$thumb = new ngg_Thumbnail($gallery_absfolder."/".utf8_decode($picture), TRUE);
|
|
|
398 |
|
399 |
+
// skip if file is not there
|
400 |
+
if (!$thumb->error) {
|
401 |
+
if ($ngg_options[thumbcrop]) {
|
402 |
+
|
403 |
+
// THX to Kees de Bruin, better thumbnails if portrait format
|
404 |
+
$width = $ngg_options[thumbwidth];
|
405 |
+
$height = $ngg_options[thumbheight];
|
406 |
+
$curwidth = $thumb->currentDimensions['width'];
|
407 |
+
$curheight = $thumb->currentDimensions['height'];
|
408 |
+
if ($curwidth > $curheight) {
|
409 |
+
$aspect = (100 * $curwidth) / $curheight;
|
410 |
+
} else {
|
411 |
+
$aspect = (100 * $curheight) / $curwidth;
|
412 |
+
}
|
413 |
+
$width = intval(($width * $aspect) / 100);
|
414 |
+
$height = intval(($height * $aspect) / 100);
|
415 |
+
$thumb->resize($width,$height,$ngg_options[thumbResampleMode]);
|
416 |
+
$thumb->cropFromCenter($width,$ngg_options[thumbResampleMode]);
|
417 |
+
}
|
418 |
+
elseif ($ngg_options[thumbfix]) {
|
419 |
// check for portrait format
|
420 |
if ($thumb->currentDimensions['height'] > $thumb->currentDimensions['width']) {
|
421 |
+
$thumb->resize($ngg_options[thumbwidth], 0,$ngg_options[thumbResampleMode]);
|
422 |
+
// get optimal y startpos
|
423 |
+
$ypos = ($thumb->currentDimensions['height'] - $ngg_options[thumbheight]) / 2;
|
424 |
+
$thumb->crop(0, $ypos, $ngg_options[thumbwidth],$ngg_options[thumbheight],$ngg_options[thumbResampleMode]);
|
|
|
|
|
425 |
} else {
|
426 |
+
$thumb->resize(0,$ngg_options[thumbheight],$ngg_options[thumbResampleMode]);
|
427 |
+
// get optimal x startpos
|
428 |
+
$xpos = ($thumb->currentDimensions['width'] - $ngg_options[thumbwidth]) / 2;
|
429 |
+
$thumb->crop($xpos, 0, $ngg_options[thumbwidth],$ngg_options[thumbheight],$ngg_options[thumbResampleMode]);
|
430 |
}
|
431 |
+
} else {
|
432 |
+
$thumb->resize($ngg_options[thumbwidth],$ngg_options[thumbheight],$ngg_options[thumbResampleMode]);
|
433 |
}
|
434 |
+
$thumb->save($gallery_absfolder.$thumbfolder.$prefix.$picture,$ngg_options[thumbquality]);
|
435 |
+
// didn't work under safe mode, but I want to set it if possible
|
436 |
+
@chmod ($gallery_absfolder.$thumbfolder.$prefix.$picture, NGGFILE_PERMISSION);
|
437 |
}
|
438 |
+
$thumb->destruct();
|
|
|
|
|
|
|
439 |
}
|
440 |
}
|
441 |
|
admin/admin.php
CHANGED
@@ -12,7 +12,7 @@ function ngg_nocache() {
|
|
12 |
echo "\n".'<meta http-equiv="pragma" content="no-cache" />'."\n";
|
13 |
}
|
14 |
|
15 |
-
// load script files
|
16 |
add_action('init', 'ngg_add_admin_js',1);
|
17 |
function ngg_add_admin_js() {
|
18 |
if ($wp_version < "2.2") {
|
12 |
echo "\n".'<meta http-equiv="pragma" content="no-cache" />'."\n";
|
13 |
}
|
14 |
|
15 |
+
// load script files depend on page
|
16 |
add_action('init', 'ngg_add_admin_js',1);
|
17 |
function ngg_add_admin_js() {
|
18 |
if ($wp_version < "2.2") {
|
admin/album.php
CHANGED
@@ -9,13 +9,13 @@ function nggallery_admin_manage_album() {
|
|
9 |
|
10 |
if ($_POST['update']){
|
11 |
if ($_POST['newalbum']){
|
12 |
-
$newablum = $_POST['newalbum'];
|
13 |
$result = $wpdb->query(" INSERT INTO $wpdb->nggalbum (name, sortorder) VALUES ('$newablum','0')");
|
14 |
if ($result) $messagetext = '<font color="green">'.__('Update Successfully','nggallery').'</font>';
|
15 |
}
|
16 |
|
17 |
if ($_POST['act_album'] > 0){
|
18 |
-
$albumid = $_POST['act_album'];
|
19 |
|
20 |
// get variable galleryContainer
|
21 |
parse_str($_POST['sortorder']);
|
@@ -35,7 +35,7 @@ function nggallery_admin_manage_album() {
|
|
35 |
}
|
36 |
|
37 |
if ($_POST['delete']){
|
38 |
-
$act_album = $_POST['act_album'];
|
39 |
$result = $wpdb->query("DELETE FROM $wpdb->nggalbum WHERE id = '$act_album' ");
|
40 |
if ($result) $messagetext = '<font color="green">'.__('Album deleted','nggallery').'</font>';
|
41 |
}
|
9 |
|
10 |
if ($_POST['update']){
|
11 |
if ($_POST['newalbum']){
|
12 |
+
$newablum = attribute_escape($_POST['newalbum']);
|
13 |
$result = $wpdb->query(" INSERT INTO $wpdb->nggalbum (name, sortorder) VALUES ('$newablum','0')");
|
14 |
if ($result) $messagetext = '<font color="green">'.__('Update Successfully','nggallery').'</font>';
|
15 |
}
|
16 |
|
17 |
if ($_POST['act_album'] > 0){
|
18 |
+
$albumid = attribute_escape($_POST['act_album']);
|
19 |
|
20 |
// get variable galleryContainer
|
21 |
parse_str($_POST['sortorder']);
|
35 |
}
|
36 |
|
37 |
if ($_POST['delete']){
|
38 |
+
$act_album = attribute_escape($_POST['act_album']);
|
39 |
$result = $wpdb->query("DELETE FROM $wpdb->nggalbum WHERE id = '$act_album' ");
|
40 |
if ($result) $messagetext = '<font color="green">'.__('Album deleted','nggallery').'</font>';
|
41 |
}
|
admin/manage.php
CHANGED
@@ -6,9 +6,9 @@ function nggallery_admin_manage_gallery() {
|
|
6 |
global $wpdb;
|
7 |
|
8 |
// GET variables
|
9 |
-
$act_gid = trim($_GET['gid']);
|
10 |
-
$act_pid = trim($_GET['pid']);
|
11 |
-
$mode = trim($_GET['mode']);
|
12 |
|
13 |
// get the options
|
14 |
$ngg_options=get_option('ngg_options');
|
@@ -120,14 +120,14 @@ function nggallery_admin_manage_gallery() {
|
|
120 |
if ($_POST['updatepictures']) {
|
121 |
// Update pictures
|
122 |
|
123 |
-
$gallery_title
|
124 |
-
$gallery_path
|
125 |
-
$gallery_desc
|
126 |
-
$gallery_pageid
|
127 |
-
$gallery_preview
|
128 |
|
129 |
$result = $wpdb->query("UPDATE $wpdb->nggallery SET title= '$gallery_title', path= '$gallery_path', description = '$gallery_desc', pageid = '$gallery_pageid', previewpic = '$gallery_preview' WHERE gid = '$act_gid'");
|
130 |
-
$result = ngg_update_pictures($_POST[description], $_POST[alttext], $_POST[exclude], $act_gid );
|
131 |
|
132 |
$messagetext = '<font color="green">'.__('Update successfully','nggallery').'</font>';
|
133 |
}
|
@@ -148,7 +148,7 @@ function nggallery_admin_manage_gallery() {
|
|
148 |
$count_pic = 0;
|
149 |
if (is_array($imageslist)) {
|
150 |
foreach($imageslist as $picture) {
|
151 |
-
$result = $wpdb->query("INSERT INTO $wpdb->nggpictures (galleryid, filename, alttext) VALUES ('$act_gid', '$picture', '$picture') ");
|
152 |
if ($result) $count_pic++;
|
153 |
}
|
154 |
$messagetext = '<font color="green">'.$count_pic.__(' picture(s) successfully added','nggallery').'</font>';
|
@@ -162,7 +162,7 @@ function nggallery_admin_manage_gallery() {
|
|
162 |
nggallery_manage_gallery_main();
|
163 |
|
164 |
if ($mode == 'edit')
|
165 |
-
|
166 |
|
167 |
}//nggallery_admin_manage_gallery
|
168 |
|
@@ -218,12 +218,12 @@ if($gallerylist) {
|
|
218 |
<?php
|
219 |
} //nggallery_manage_gallery_main
|
220 |
|
221 |
-
function
|
222 |
// *** show picture list
|
223 |
global $wpdb;
|
224 |
|
225 |
// GET variables
|
226 |
-
$act_gid = trim($_GET['gid']);
|
227 |
|
228 |
// get the options
|
229 |
$ngg_options=get_option('ngg_options');
|
6 |
global $wpdb;
|
7 |
|
8 |
// GET variables
|
9 |
+
$act_gid = trim(attribute_escape($_GET['gid']));
|
10 |
+
$act_pid = trim(attribute_escape($_GET['pid']));
|
11 |
+
$mode = trim(attribute_escape($_GET['mode']));
|
12 |
|
13 |
// get the options
|
14 |
$ngg_options=get_option('ngg_options');
|
120 |
if ($_POST['updatepictures']) {
|
121 |
// Update pictures
|
122 |
|
123 |
+
$gallery_title = attribute_escape($_POST[title]);
|
124 |
+
$gallery_path = attribute_escape($_POST[path]);
|
125 |
+
$gallery_desc = attribute_escape($_POST[gallerydesc]);
|
126 |
+
$gallery_pageid = attribute_escape($_POST[pageid]);
|
127 |
+
$gallery_preview = attribute_escape($_POST[previewpic]);
|
128 |
|
129 |
$result = $wpdb->query("UPDATE $wpdb->nggallery SET title= '$gallery_title', path= '$gallery_path', description = '$gallery_desc', pageid = '$gallery_pageid', previewpic = '$gallery_preview' WHERE gid = '$act_gid'");
|
130 |
+
$result = ngg_update_pictures(attribute_escape($_POST[description]), attribute_escape($_POST[alttext]), attribute_escape($_POST[exclude]), $act_gid );
|
131 |
|
132 |
$messagetext = '<font color="green">'.__('Update successfully','nggallery').'</font>';
|
133 |
}
|
148 |
$count_pic = 0;
|
149 |
if (is_array($imageslist)) {
|
150 |
foreach($imageslist as $picture) {
|
151 |
+
$result = $wpdb->query("INSERT INTO $wpdb->nggpictures (galleryid, filename, alttext, exclude) VALUES ('$act_gid', '$picture', '$picture', 0) ");
|
152 |
if ($result) $count_pic++;
|
153 |
}
|
154 |
$messagetext = '<font color="green">'.$count_pic.__(' picture(s) successfully added','nggallery').'</font>';
|
162 |
nggallery_manage_gallery_main();
|
163 |
|
164 |
if ($mode == 'edit')
|
165 |
+
nggallery_picturelist();
|
166 |
|
167 |
}//nggallery_admin_manage_gallery
|
168 |
|
218 |
<?php
|
219 |
} //nggallery_manage_gallery_main
|
220 |
|
221 |
+
function nggallery_picturelist() {
|
222 |
// *** show picture list
|
223 |
global $wpdb;
|
224 |
|
225 |
// GET variables
|
226 |
+
$act_gid = trim(attribute_escape($_GET['gid']));
|
227 |
|
228 |
// get the options
|
229 |
$ngg_options=get_option('ngg_options');
|
admin/settings.php
CHANGED
@@ -162,7 +162,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
|
|
162 |
<div id="thumbnails" style="display:none">
|
163 |
<h2><?php _e('Thumbnail settings','nggallery'); ?></h2>
|
164 |
<form name="thumbnailsettings" method="POST" action="<?php echo htmlspecialchars($_SERVER['REQUEST_URI']).'#thumbnails-slider'; ?>" >
|
165 |
-
<input type="hidden" name="page_options" value="thumbwidth,thumbheight,thumbfix,thumbcrop,
|
166 |
<fieldset class="options">
|
167 |
<p><?php _e('Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery .', 'nggallery') ?></p>
|
168 |
<table class="optiontable editform">
|
@@ -177,14 +177,9 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
|
|
177 |
<?php _e('Ignore the aspect ratio, no portrait thumbnails','nggallery') ?></td>
|
178 |
</tr>
|
179 |
<tr valign="top">
|
180 |
-
<th align="left"><?php _e('Crop thumbnail from image','nggallery') ?></th>
|
181 |
<td><input type="checkbox" name="thumbcrop" value="1" <?php checked('1', $ngg_options[thumbcrop]); ?> /><br />
|
182 |
-
<?php _e('Create square thumbnails
|
183 |
-
</tr>
|
184 |
-
<tr valign="top">
|
185 |
-
<th align="left"><?php _e('Do resize before cropping','nggallery') ?></th>
|
186 |
-
<td><input type="checkbox" name="thumbresizebefore" value="1" <?php checked('1', $ngg_options[thumbresizebefore]); ?> /><br />
|
187 |
-
<?php _e('Generates square thumbnails without cropping to much','nggallery') ?></td>
|
188 |
</tr>
|
189 |
<tr valign="top">
|
190 |
<th align="left"><?php _e('Thumbnail quality','nggallery') ?></th>
|
162 |
<div id="thumbnails" style="display:none">
|
163 |
<h2><?php _e('Thumbnail settings','nggallery'); ?></h2>
|
164 |
<form name="thumbnailsettings" method="POST" action="<?php echo htmlspecialchars($_SERVER['REQUEST_URI']).'#thumbnails-slider'; ?>" >
|
165 |
+
<input type="hidden" name="page_options" value="thumbwidth,thumbheight,thumbfix,thumbcrop,thumbquality,thumbResampleMode" />
|
166 |
<fieldset class="options">
|
167 |
<p><?php _e('Please note : If you change the settings, you need to recreate the thumbnails under -> Manage Gallery .', 'nggallery') ?></p>
|
168 |
<table class="optiontable editform">
|
177 |
<?php _e('Ignore the aspect ratio, no portrait thumbnails','nggallery') ?></td>
|
178 |
</tr>
|
179 |
<tr valign="top">
|
180 |
+
<th align="left"><?php _e('Crop square thumbnail from image','nggallery') ?></th>
|
181 |
<td><input type="checkbox" name="thumbcrop" value="1" <?php checked('1', $ngg_options[thumbcrop]); ?> /><br />
|
182 |
+
<?php _e('Create square thumbnails, use only the width setting :','nggallery') ?> <?php echo $ngg_options[thumbwidth]; ?> x <?php echo $ngg_options[thumbwidth]; ?></td>
|
|
|
|
|
|
|
|
|
|
|
183 |
</tr>
|
184 |
<tr valign="top">
|
185 |
<th align="left"><?php _e('Thumbnail quality','nggallery') ?></th>
|
changelog.txt
CHANGED
@@ -1,6 +1,13 @@
|
|
1 |
NextGEN Gallery
|
2 |
by Alex Rabe & NextGEN DEV Team
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
V0.51 - 28.05.2007
|
5 |
- Bugfix : Thumbnail permission not set correct
|
6 |
- Bugfix : Folder permission check wrong
|
@@ -14,7 +21,7 @@ V0.50 - 28.05.2007
|
|
14 |
- Added : Option for Thickbox Loading Image
|
15 |
- Added : CSS file for dKret2 (THK to Joern)
|
16 |
- Added : Better file permission check
|
17 |
-
- Changed : Fixed ratio create better
|
18 |
- Changed : All jQuery scripts are now in "No Conflict" mode
|
19 |
- Changed : Script loading now via wp_enqueue_script
|
20 |
- Changed : Add constant values for folder/file permission
|
1 |
NextGEN Gallery
|
2 |
by Alex Rabe & NextGEN DEV Team
|
3 |
|
4 |
+
V0.52 - 31.05.2007
|
5 |
+
- Changed : Create better thubmnails in square mode (THX to Kees de Bruin)
|
6 |
+
- Changed : Again , fixed ratio create better thumbnails (Also for widescreen photos)
|
7 |
+
- Removed : Option "Resize image before cropping" removed and included in Create square thumbnail
|
8 |
+
- Bugfix : Scan folder for new picture didn't set exclude = 0
|
9 |
+
- Bugfix : If no option is checked in thumbnails, resize failed (THK to Joern Kretzschmar)
|
10 |
+
|
11 |
V0.51 - 28.05.2007
|
12 |
- Bugfix : Thumbnail permission not set correct
|
13 |
- Bugfix : Folder permission check wrong
|
21 |
- Added : Option for Thickbox Loading Image
|
22 |
- Added : CSS file for dKret2 (THK to Joern)
|
23 |
- Added : Better file permission check
|
24 |
+
- Changed : Fixed ratio create better thumbnails in portrait mode
|
25 |
- Changed : All jQuery scripts are now in "No Conflict" mode
|
26 |
- Changed : Script loading now via wp_enqueue_script
|
27 |
- Changed : Add constant values for folder/file permission
|
css/ngg_dKret2.css
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
CSS Name: DKret2 Styles
|
3 |
Description: NextGEN dKret2 Gallery Stylesheet
|
4 |
Author: J. Kretzschmar
|
5 |
-
Version: 1.
|
6 |
|
7 |
This is a template stylesheet that can be used with NextGEN Gallery. I tested the
|
8 |
styles with the dKret2 theme.
|
@@ -178,11 +178,12 @@ styles with the dKret2 theme.
|
|
178 |
.ngg-widget,
|
179 |
.ngg-widget-slideshow {
|
180 |
overflow: hidden;
|
181 |
-
padding:5px 0px 0px 0pt;
|
|
|
182 |
}
|
183 |
|
184 |
.ngg-widget img {
|
185 |
-
border:
|
186 |
-
margin:0pt 2px 2px 0px;
|
187 |
-
padding:
|
188 |
-
}
|
2 |
CSS Name: DKret2 Styles
|
3 |
Description: NextGEN dKret2 Gallery Stylesheet
|
4 |
Author: J. Kretzschmar
|
5 |
+
Version: 1.2
|
6 |
|
7 |
This is a template stylesheet that can be used with NextGEN Gallery. I tested the
|
8 |
styles with the dKret2 theme.
|
178 |
.ngg-widget,
|
179 |
.ngg-widget-slideshow {
|
180 |
overflow: hidden;
|
181 |
+
padding: 5px 0px 0px 0pt;
|
182 |
+
text-align: center;
|
183 |
}
|
184 |
|
185 |
.ngg-widget img {
|
186 |
+
border: 1px solid #A9A9A9;
|
187 |
+
margin: 0pt 2px 2px 0px;
|
188 |
+
padding: 2px;
|
189 |
+
}
|
lang/nggallery.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: NextGEN Gallery\n"
|
4 |
"POT-Creation-Date: \n"
|
5 |
-
"PO-Revision-Date: 2007-05-
|
6 |
"Last-Translator: Alex Rabe\n"
|
7 |
"Language-Team: Alex Rabe\n"
|
8 |
"MIME-Version: 1.0\n"
|
@@ -58,8 +58,8 @@ msgstr ""
|
|
58 |
|
59 |
#: ../nggbutton.php:64
|
60 |
#: ../admin/settings.php:124
|
61 |
-
#: ../admin/settings.php:
|
62 |
-
#: ../admin/settings.php:
|
63 |
msgid "Slideshow"
|
64 |
msgstr ""
|
65 |
|
@@ -102,7 +102,7 @@ msgstr ""
|
|
102 |
|
103 |
#: ../nggbutton.php:124
|
104 |
#: ../admin/settings.php:123
|
105 |
-
#: ../admin/settings.php:
|
106 |
msgid "Watermark"
|
107 |
msgstr ""
|
108 |
|
@@ -143,11 +143,11 @@ msgstr ""
|
|
143 |
msgid "Photos"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: ../ngginstall.php:
|
147 |
msgid "[Show as slideshow]"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: ../ngginstall.php:
|
151 |
msgid "[Show picture list]"
|
152 |
msgstr ""
|
153 |
|
@@ -217,7 +217,7 @@ msgstr ""
|
|
217 |
|
218 |
#: ../nggwidget.php:411
|
219 |
#: ../nggwidget.php:611
|
220 |
-
#: ../admin/settings.php:
|
221 |
msgid "none"
|
222 |
msgstr ""
|
223 |
|
@@ -510,14 +510,14 @@ msgstr ""
|
|
510 |
#: ../admin/addgallery.php:229
|
511 |
#: ../admin/addgallery.php:231
|
512 |
#: ../admin/addgallery.php:270
|
513 |
-
#: ../admin/addgallery.php:
|
514 |
-
#: ../admin/addgallery.php:
|
515 |
msgid "Unable to create directory "
|
516 |
msgstr ""
|
517 |
|
518 |
#: ../admin/addgallery.php:230
|
519 |
-
#: ../admin/addgallery.php:
|
520 |
-
#: ../admin/addgallery.php:
|
521 |
msgid "Unable to set directory permissions "
|
522 |
msgstr ""
|
523 |
|
@@ -583,49 +583,49 @@ msgstr ""
|
|
583 |
msgid "Some pictures are not writeable :"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: ../admin/addgallery.php:
|
587 |
-
#: ../admin/addgallery.php:
|
588 |
msgid "Error, the file permissions could not set"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: ../admin/addgallery.php:
|
592 |
msgid "Some thumbnails are not writeable :"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: ../admin/addgallery.php:
|
596 |
msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: ../admin/addgallery.php:
|
600 |
msgid "Directory already exists, please rename zip file"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: ../admin/addgallery.php:
|
604 |
msgid "Unable to unlink zip file "
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: ../admin/addgallery.php:
|
608 |
msgid "Zip-File successfully unpacked"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: ../admin/addgallery.php:
|
612 |
-
#: ../admin/addgallery.php:
|
613 |
msgid "Unable to unlink file "
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: ../admin/addgallery.php:
|
617 |
msgid "No gallery selected !"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: ../admin/addgallery.php:
|
621 |
msgid "Failure in database, no gallery path set !"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: ../admin/addgallery.php:
|
625 |
msgid "Error, the file could not moved to : "
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../admin/addgallery.php:
|
629 |
msgid " Images successfully added"
|
630 |
msgstr ""
|
631 |
|
@@ -694,12 +694,12 @@ msgstr ""
|
|
694 |
|
695 |
#: ../admin/album.php:120
|
696 |
#: ../admin/settings.php:155
|
697 |
-
#: ../admin/settings.php:
|
698 |
-
#: ../admin/settings.php:
|
699 |
-
#: ../admin/settings.php:
|
700 |
-
#: ../admin/settings.php:
|
701 |
-
#: ../admin/settings.php:
|
702 |
-
#: ../admin/settings.php:
|
703 |
msgid "Update"
|
704 |
msgstr ""
|
705 |
|
@@ -872,7 +872,7 @@ msgid ""
|
|
872 |
msgstr ""
|
873 |
|
874 |
#: ../admin/manage.php:376
|
875 |
-
#: ../admin/settings.php:
|
876 |
msgid "File name"
|
877 |
msgstr ""
|
878 |
|
@@ -1036,7 +1036,7 @@ msgid "General Options"
|
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: ../admin/settings.php:119
|
1039 |
-
#: ../admin/settings.php:
|
1040 |
msgid "Thumbnails"
|
1041 |
msgstr ""
|
1042 |
|
@@ -1045,7 +1045,7 @@ msgid "Images"
|
|
1045 |
msgstr ""
|
1046 |
|
1047 |
#: ../admin/settings.php:122
|
1048 |
-
#: ../admin/settings.php:
|
1049 |
msgid "Effects"
|
1050 |
msgstr ""
|
1051 |
|
@@ -1098,305 +1098,297 @@ msgid "Ignore the aspect ratio, no portrait thumbnails"
|
|
1098 |
msgstr ""
|
1099 |
|
1100 |
#: ../admin/settings.php:180
|
1101 |
-
msgid "Crop thumbnail from image"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
#: ../admin/settings.php:182
|
1105 |
-
msgid "Create square thumbnails
|
1106 |
msgstr ""
|
1107 |
|
1108 |
#: ../admin/settings.php:185
|
1109 |
-
msgid "Do resize before cropping"
|
1110 |
-
msgstr ""
|
1111 |
-
|
1112 |
-
#: ../admin/settings.php:187
|
1113 |
-
msgid "Generates square thumbnails without cropping to much"
|
1114 |
-
msgstr ""
|
1115 |
-
|
1116 |
-
#: ../admin/settings.php:190
|
1117 |
msgid "Thumbnail quality"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: ../admin/settings.php:
|
1121 |
-
#: ../admin/settings.php:
|
1122 |
msgid "Resample Mode"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: ../admin/settings.php:
|
1126 |
-
#: ../admin/settings.php:
|
1127 |
msgid "Value between 1-5 (higher value, more CPU load)"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: ../admin/settings.php:
|
1131 |
msgid "Image settings"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: ../admin/settings.php:
|
1135 |
msgid "Resize Images"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: ../admin/settings.php:
|
1139 |
msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: ../admin/settings.php:
|
1143 |
msgid "Image quality"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: ../admin/settings.php:
|
1147 |
msgid "Add link in [singlepic] tag "
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: ../admin/settings.php:
|
1151 |
msgid "Add the fullsize picture as link. Didn't support watermark mode on the fly."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: ../admin/settings.php:
|
1155 |
msgid "Gallery settings"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: ../admin/settings.php:
|
1159 |
msgid "Number of images per page"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: ../admin/settings.php:
|
1163 |
msgid "0 will disable pagination, all images on one page"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: ../admin/settings.php:
|
1167 |
msgid "Integrate slideshow"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: ../admin/settings.php:
|
1171 |
msgid "Show first"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: ../admin/settings.php:
|
1175 |
msgid "Sort thumbnails"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: ../admin/settings.php:
|
1179 |
msgid "Image ID"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: ../admin/settings.php:
|
1183 |
msgid "Alt / Title text"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: ../admin/settings.php:
|
1187 |
msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: ../admin/settings.php:
|
1191 |
msgid "With the placeholder"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: ../admin/settings.php:
|
1195 |
msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: ../admin/settings.php:
|
1199 |
msgid "JavaScript Thumbnail effect"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: ../admin/settings.php:
|
1203 |
msgid "None"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: ../admin/settings.php:
|
1207 |
msgid "Thickbox"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: ../admin/settings.php:
|
1211 |
msgid "Lightbox"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: ../admin/settings.php:
|
1215 |
msgid "Highslide"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: ../admin/settings.php:
|
1219 |
msgid "Custom"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: ../admin/settings.php:
|
1223 |
msgid "Link Code line"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: ../admin/settings.php:
|
1227 |
msgid "Select loading image"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: ../admin/settings.php:
|
1231 |
msgid "Preview"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: ../admin/settings.php:
|
1235 |
-
#: ../admin/settings.php:
|
1236 |
msgid "Position"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: ../admin/settings.php:
|
1240 |
msgid "Offset"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: ../admin/settings.php:
|
1244 |
msgid "Use image as watermark"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: ../admin/settings.php:
|
1248 |
msgid "URL to file"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: ../admin/settings.php:
|
1252 |
msgid "Use text as watermark"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: ../admin/settings.php:
|
1256 |
msgid "Font"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: ../admin/settings.php:
|
1260 |
msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: ../admin/settings.php:
|
1264 |
msgid "Size"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: ../admin/settings.php:
|
1268 |
msgid "Color"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: ../admin/settings.php:
|
1272 |
msgid "(hex w/o #)"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: ../admin/settings.php:
|
1276 |
msgid "Text"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: ../admin/settings.php:
|
1280 |
msgid "Opaque"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: ../admin/settings.php:
|
1284 |
msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: ../admin/settings.php:
|
1288 |
msgid "The settings are used in the Flash Image Rotator Version 3.8 ."
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: ../admin/settings.php:
|
1292 |
msgid "See more information for the Flash Player on the web page"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: ../admin/settings.php:
|
1296 |
msgid "Default size (W x H)"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: ../admin/settings.php:
|
1300 |
msgid "Shuffle mode"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: ../admin/settings.php:
|
1304 |
msgid "Show next image on click"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: ../admin/settings.php:
|
1308 |
msgid "Show navigation bar"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: ../admin/settings.php:
|
1312 |
msgid "Show loading icon"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: ../admin/settings.php:
|
1316 |
msgid "Stretch image"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: ../admin/settings.php:
|
1320 |
msgid "true"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: ../admin/settings.php:
|
1324 |
msgid "false"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: ../admin/settings.php:
|
1328 |
msgid "fit"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: ../admin/settings.php:
|
1332 |
msgid "Duration time"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: ../admin/settings.php:
|
1336 |
msgid "sec."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: ../admin/settings.php:
|
1340 |
msgid "Transition / Fade effect"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: ../admin/settings.php:
|
1344 |
msgid "fade"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: ../admin/settings.php:
|
1348 |
msgid "bgfade"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: ../admin/settings.php:
|
1352 |
msgid "slowfade"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: ../admin/settings.php:
|
1356 |
msgid "circles"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: ../admin/settings.php:
|
1360 |
msgid "bubbles"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: ../admin/settings.php:
|
1364 |
msgid "blocks"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: ../admin/settings.php:
|
1368 |
msgid "fluids"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: ../admin/settings.php:
|
1372 |
msgid "lines"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: ../admin/settings.php:
|
1376 |
msgid "random"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: ../admin/settings.php:
|
1380 |
msgid "Use slow zooming effect"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: ../admin/settings.php:
|
1384 |
msgid "Background Color"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: ../admin/settings.php:
|
1388 |
msgid "Texts / Buttons Color"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: ../admin/settings.php:
|
1392 |
msgid "Rollover / Active Color"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: ../admin/settings.php:
|
1396 |
msgid "Try XHTML validation (with CDATA)"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: ../admin/settings.php:
|
1400 |
msgid "Important : Could causes problem at some browser. Please recheck your page."
|
1401 |
msgstr ""
|
1402 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: NextGEN Gallery\n"
|
4 |
"POT-Creation-Date: \n"
|
5 |
+
"PO-Revision-Date: 2007-05-31 22:01+0100\n"
|
6 |
"Last-Translator: Alex Rabe\n"
|
7 |
"Language-Team: Alex Rabe\n"
|
8 |
"MIME-Version: 1.0\n"
|
58 |
|
59 |
#: ../nggbutton.php:64
|
60 |
#: ../admin/settings.php:124
|
61 |
+
#: ../admin/settings.php:259
|
62 |
+
#: ../admin/settings.php:427
|
63 |
msgid "Slideshow"
|
64 |
msgstr ""
|
65 |
|
102 |
|
103 |
#: ../nggbutton.php:124
|
104 |
#: ../admin/settings.php:123
|
105 |
+
#: ../admin/settings.php:325
|
106 |
msgid "Watermark"
|
107 |
msgstr ""
|
108 |
|
143 |
msgid "Photos"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: ../ngginstall.php:97
|
147 |
msgid "[Show as slideshow]"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: ../ngginstall.php:98
|
151 |
msgid "[Show picture list]"
|
152 |
msgstr ""
|
153 |
|
217 |
|
218 |
#: ../nggwidget.php:411
|
219 |
#: ../nggwidget.php:611
|
220 |
+
#: ../admin/settings.php:461
|
221 |
msgid "none"
|
222 |
msgstr ""
|
223 |
|
510 |
#: ../admin/addgallery.php:229
|
511 |
#: ../admin/addgallery.php:231
|
512 |
#: ../admin/addgallery.php:270
|
513 |
+
#: ../admin/addgallery.php:479
|
514 |
+
#: ../admin/addgallery.php:481
|
515 |
msgid "Unable to create directory "
|
516 |
msgstr ""
|
517 |
|
518 |
#: ../admin/addgallery.php:230
|
519 |
+
#: ../admin/addgallery.php:480
|
520 |
+
#: ../admin/addgallery.php:482
|
521 |
msgid "Unable to set directory permissions "
|
522 |
msgstr ""
|
523 |
|
583 |
msgid "Some pictures are not writeable :"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: ../admin/addgallery.php:434
|
587 |
+
#: ../admin/addgallery.php:534
|
588 |
msgid "Error, the file permissions could not set"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: ../admin/addgallery.php:440
|
592 |
msgid "Some thumbnails are not writeable :"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: ../admin/addgallery.php:470
|
596 |
msgid "Uploaded file was no or a faulty zip file ! The server recognize : "
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: ../admin/addgallery.php:485
|
600 |
msgid "Directory already exists, please rename zip file"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: ../admin/addgallery.php:490
|
604 |
msgid "Unable to unlink zip file "
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: ../admin/addgallery.php:492
|
608 |
msgid "Zip-File successfully unpacked"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: ../admin/addgallery.php:519
|
612 |
+
#: ../admin/addgallery.php:526
|
613 |
msgid "Unable to unlink file "
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: ../admin/addgallery.php:520
|
617 |
msgid "No gallery selected !"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: ../admin/addgallery.php:527
|
621 |
msgid "Failure in database, no gallery path set !"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: ../admin/addgallery.php:533
|
625 |
msgid "Error, the file could not moved to : "
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: ../admin/addgallery.php:554
|
629 |
msgid " Images successfully added"
|
630 |
msgstr ""
|
631 |
|
694 |
|
695 |
#: ../admin/album.php:120
|
696 |
#: ../admin/settings.php:155
|
697 |
+
#: ../admin/settings.php:194
|
698 |
+
#: ../admin/settings.php:231
|
699 |
+
#: ../admin/settings.php:268
|
700 |
+
#: ../admin/settings.php:311
|
701 |
+
#: ../admin/settings.php:417
|
702 |
+
#: ../admin/settings.php:510
|
703 |
msgid "Update"
|
704 |
msgstr ""
|
705 |
|
872 |
msgstr ""
|
873 |
|
874 |
#: ../admin/manage.php:376
|
875 |
+
#: ../admin/settings.php:264
|
876 |
msgid "File name"
|
877 |
msgstr ""
|
878 |
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: ../admin/settings.php:119
|
1039 |
+
#: ../admin/settings.php:258
|
1040 |
msgid "Thumbnails"
|
1041 |
msgstr ""
|
1042 |
|
1045 |
msgstr ""
|
1046 |
|
1047 |
#: ../admin/settings.php:122
|
1048 |
+
#: ../admin/settings.php:276
|
1049 |
msgid "Effects"
|
1050 |
msgstr ""
|
1051 |
|
1098 |
msgstr ""
|
1099 |
|
1100 |
#: ../admin/settings.php:180
|
1101 |
+
msgid "Crop square thumbnail from image"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
#: ../admin/settings.php:182
|
1105 |
+
msgid "Create square thumbnails, use only the width setting :"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
#: ../admin/settings.php:185
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1109 |
msgid "Thumbnail quality"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: ../admin/settings.php:189
|
1113 |
+
#: ../admin/settings.php:219
|
1114 |
msgid "Resample Mode"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: ../admin/settings.php:191
|
1118 |
+
#: ../admin/settings.php:222
|
1119 |
msgid "Value between 1-5 (higher value, more CPU load)"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: ../admin/settings.php:202
|
1123 |
msgid "Image settings"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: ../admin/settings.php:208
|
1127 |
msgid "Resize Images"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: ../admin/settings.php:211
|
1131 |
msgid "Width x height (in pixel). NextGEN Gallery will keep ratio size"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: ../admin/settings.php:214
|
1135 |
msgid "Image quality"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: ../admin/settings.php:225
|
1139 |
msgid "Add link in [singlepic] tag "
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: ../admin/settings.php:228
|
1143 |
msgid "Add the fullsize picture as link. Didn't support watermark mode on the fly."
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: ../admin/settings.php:239
|
1147 |
msgid "Gallery settings"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: ../admin/settings.php:245
|
1151 |
msgid "Number of images per page"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: ../admin/settings.php:247
|
1155 |
msgid "0 will disable pagination, all images on one page"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: ../admin/settings.php:250
|
1159 |
msgid "Integrate slideshow"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: ../admin/settings.php:257
|
1163 |
msgid "Show first"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: ../admin/settings.php:262
|
1167 |
msgid "Sort thumbnails"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: ../admin/settings.php:263
|
1171 |
msgid "Image ID"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: ../admin/settings.php:265
|
1175 |
msgid "Alt / Title text"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: ../admin/settings.php:279
|
1179 |
msgid "Here you can select the thumbnail effect, NextGEN Gallery will integrate the required HTML code in the images. Please note that only the Thickbox effect will automatic added to your theme."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: ../admin/settings.php:280
|
1183 |
msgid "With the placeholder"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: ../admin/settings.php:280
|
1187 |
msgid "you can activate a navigation through the images (depend on the effect). Change the code line only , when you use a different thumbnail effect or you know what you do."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: ../admin/settings.php:284
|
1191 |
msgid "JavaScript Thumbnail effect"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: ../admin/settings.php:287
|
1195 |
msgid "None"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: ../admin/settings.php:288
|
1199 |
msgid "Thickbox"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: ../admin/settings.php:289
|
1203 |
msgid "Lightbox"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: ../admin/settings.php:290
|
1207 |
msgid "Highslide"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: ../admin/settings.php:291
|
1211 |
msgid "Custom"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: ../admin/settings.php:295
|
1215 |
msgid "Link Code line"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: ../admin/settings.php:303
|
1219 |
msgid "Select loading image"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: ../admin/settings.php:329
|
1223 |
msgid "Preview"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: ../admin/settings.php:331
|
1227 |
+
#: ../admin/settings.php:335
|
1228 |
msgid "Position"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: ../admin/settings.php:355
|
1232 |
msgid "Offset"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: ../admin/settings.php:373
|
1236 |
msgid "Use image as watermark"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: ../admin/settings.php:376
|
1240 |
msgid "URL to file"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: ../admin/settings.php:383
|
1244 |
msgid "Use text as watermark"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: ../admin/settings.php:386
|
1248 |
msgid "Font"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: ../admin/settings.php:394
|
1252 |
msgid "You can upload more fonts in the folder <strong>nggallery/fonts</strong>"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: ../admin/settings.php:398
|
1256 |
msgid "Size"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: ../admin/settings.php:402
|
1260 |
msgid "Color"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: ../admin/settings.php:404
|
1264 |
msgid "(hex w/o #)"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: ../admin/settings.php:407
|
1268 |
msgid "Text"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: ../admin/settings.php:411
|
1272 |
msgid "Opaque"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: ../admin/settings.php:429
|
1276 |
msgid "The imagerotator.swf is not in the nggallery folder, the slideshow will not work."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: ../admin/settings.php:430
|
1280 |
msgid "The settings are used in the Flash Image Rotator Version 3.8 ."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: ../admin/settings.php:431
|
1284 |
msgid "See more information for the Flash Player on the web page"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: ../admin/settings.php:434
|
1288 |
msgid "Default size (W x H)"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: ../admin/settings.php:439
|
1292 |
msgid "Shuffle mode"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: ../admin/settings.php:443
|
1296 |
msgid "Show next image on click"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: ../admin/settings.php:447
|
1300 |
msgid "Show navigation bar"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: ../admin/settings.php:451
|
1304 |
msgid "Show loading icon"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: ../admin/settings.php:455
|
1308 |
msgid "Stretch image"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: ../admin/settings.php:458
|
1312 |
msgid "true"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: ../admin/settings.php:459
|
1316 |
msgid "false"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: ../admin/settings.php:460
|
1320 |
msgid "fit"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: ../admin/settings.php:466
|
1324 |
msgid "Duration time"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: ../admin/settings.php:467
|
1328 |
msgid "sec."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: ../admin/settings.php:470
|
1332 |
msgid "Transition / Fade effect"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: ../admin/settings.php:473
|
1336 |
msgid "fade"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: ../admin/settings.php:474
|
1340 |
msgid "bgfade"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: ../admin/settings.php:475
|
1344 |
msgid "slowfade"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: ../admin/settings.php:476
|
1348 |
msgid "circles"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: ../admin/settings.php:477
|
1352 |
msgid "bubbles"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: ../admin/settings.php:478
|
1356 |
msgid "blocks"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: ../admin/settings.php:479
|
1360 |
msgid "fluids"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: ../admin/settings.php:480
|
1364 |
msgid "lines"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: ../admin/settings.php:481
|
1368 |
msgid "random"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: ../admin/settings.php:485
|
1372 |
msgid "Use slow zooming effect"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: ../admin/settings.php:489
|
1376 |
msgid "Background Color"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: ../admin/settings.php:494
|
1380 |
msgid "Texts / Buttons Color"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: ../admin/settings.php:499
|
1384 |
msgid "Rollover / Active Color"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: ../admin/settings.php:504
|
1388 |
msgid "Try XHTML validation (with CDATA)"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: ../admin/settings.php:506
|
1392 |
msgid "Important : Could causes problem at some browser. Please recheck your page."
|
1393 |
msgstr ""
|
1394 |
|
nggallery.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: NextGEN Gallery
|
|
4 |
Plugin URI: http://alexrabe.boelinger.com/?page_id=80
|
5 |
Description: A NextGENeration Photo gallery for the WEB2.0(beta).
|
6 |
Author: NextGEN DEV-Team
|
7 |
-
Version: 0.
|
8 |
|
9 |
Author URI: http://alexrabe.boelinger.com/
|
10 |
|
@@ -45,7 +45,7 @@ global $wpdb, $wp_version;
|
|
45 |
if (version_compare($wp_version, '2.1', '>=')) {
|
46 |
|
47 |
// Version and path to check version
|
48 |
-
define('NGGVERSION', "0.
|
49 |
define('NGGURL', "http://nextgen.boelinger.com/version.php");
|
50 |
|
51 |
// define URL
|
4 |
Plugin URI: http://alexrabe.boelinger.com/?page_id=80
|
5 |
Description: A NextGENeration Photo gallery for the WEB2.0(beta).
|
6 |
Author: NextGEN DEV-Team
|
7 |
+
Version: 0.52a
|
8 |
|
9 |
Author URI: http://alexrabe.boelinger.com/
|
10 |
|
45 |
if (version_compare($wp_version, '2.1', '>=')) {
|
46 |
|
47 |
// Version and path to check version
|
48 |
+
define('NGGVERSION', "0.52");
|
49 |
define('NGGURL', "http://nextgen.boelinger.com/version.php");
|
50 |
|
51 |
// define URL
|
ngginstall.php
CHANGED
@@ -79,8 +79,7 @@ function ngg_default_options() {
|
|
79 |
$ngg_options[thumbwidth] = 100; // Thumb Width
|
80 |
$ngg_options[thumbheight] = 75; // Thumb height
|
81 |
$ngg_options[thumbfix] = true; // Fix the dimension
|
82 |
-
$ngg_options[thumbcrop] = false; // Crop thumbnail
|
83 |
-
$ngg_options[thumbresizebefore] = true; // Resize the Thumb before do cropping
|
84 |
$ngg_options[thumbquality] = 100; // Thumb Quality
|
85 |
$ngg_options[thumbResampleMode] = 3; // Resample speed value 1 - 5
|
86 |
|
79 |
$ngg_options[thumbwidth] = 100; // Thumb Width
|
80 |
$ngg_options[thumbheight] = 75; // Thumb height
|
81 |
$ngg_options[thumbfix] = true; // Fix the dimension
|
82 |
+
$ngg_options[thumbcrop] = false; // Crop square thumbnail
|
|
|
83 |
$ngg_options[thumbquality] = 100; // Thumb Quality
|
84 |
$ngg_options[thumbResampleMode] = 3; // Resample speed value 1 - 5
|
85 |
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== NextGEN Gallery ===
|
2 |
Contributors: Alex Rabe
|
3 |
Donate link: http://alexrabe.boelinger.com/?page_id=80
|
4 |
-
Tags: photos, flash, slideshow, images, gallery, media, admin, post
|
5 |
Requires at least: 2.1.3
|
6 |
Tested up to: 2.2
|
7 |
-
Stable tag: 0.
|
8 |
|
9 |
NextGEN Gallery is a full integrated Image Gallery plugin for WordPress.
|
10 |
|
1 |
=== NextGEN Gallery ===
|
2 |
Contributors: Alex Rabe
|
3 |
Donate link: http://alexrabe.boelinger.com/?page_id=80
|
4 |
+
Tags: photos, flash, slideshow, images, gallery, media, admin, post, photo-albums, pictures
|
5 |
Requires at least: 2.1.3
|
6 |
Tested up to: 2.2
|
7 |
+
Stable tag: 0.52
|
8 |
|
9 |
NextGEN Gallery is a full integrated Image Gallery plugin for WordPress.
|
10 |
|