Correct thumbnail constraints. S9Y now supports width, height, largest,
and smallest constraints. Backwards compatibility is maintained with the imageselectorplus plugin (the only plugin to use the thumbnail or aspect calculation code). Language files are updated and a new option screen is displayed after choosing "Rebuild Thumbs".
This commit is contained in:
@@ -47,6 +47,33 @@ switch ($serendipity['GET']['adminAction']) {
|
|||||||
|
|
||||||
case 'sync':
|
case 'sync':
|
||||||
if (!serendipity_checkPermission('adminImagesSync')) {
|
if (!serendipity_checkPermission('adminImagesSync')) {
|
||||||
|
echo '<div class="warning"><em>' . PERM_DENIED . '</em></div>';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Make the form to actually do sync with deleting or not
|
||||||
|
$n = "\n";
|
||||||
|
$warning = preg_replace('#\\\n#', '<br />', WARNING_THIS_BLAHBLAH);
|
||||||
|
echo '<div class="serendipityAdminMsgNote">' . $warning . '</div>';
|
||||||
|
echo ' <form method="POST" action="serendipity_admin.php?serendipity[adminModule]=media&serendipity[adminAction]=doSync">' . $n;
|
||||||
|
echo ' <p>' . $n . ' <fieldset>' . $n;
|
||||||
|
echo ' <legend>' . SYNC_OPTION_LEGEND . '</legend>' . $n;
|
||||||
|
echo ' <input type="radio" name="serendipity[deleteThumbs]" value="no" checked="checked" id="keepthumbs" />' .$n;
|
||||||
|
echo ' <label for="keepthumbs">' . SYNC_OPTION_KEEPTHUMBS . '</label><br />' . $n;
|
||||||
|
echo ' <input type="radio" name="serendipity[deleteThumbs]" value="check" id="sizecheckthumbs" />' . $n;
|
||||||
|
echo ' <label for="sizecheckthumbs">' . SYNC_OPTION_SIZECHECKTHUMBS . '</label><br />' . $n;
|
||||||
|
echo ' <input type="radio" name="serendipity[deleteThumbs]" value="yes" />' . $n;
|
||||||
|
echo ' <label for="deletethumbs">' . SYNC_OPTION_DELETETHUMBS . '</label><br />' . $n;
|
||||||
|
echo ' </fieldset>' . $n . ' </p>' . $n;
|
||||||
|
echo ' <input name="doSync" value="' . CREATE_THUMBS . '" class="serendipityPrettyButton input_button" type="submit" />' . $n;
|
||||||
|
echo ' <a href="serendipity_admin.php" class="serendipityPrettyButton">' . ABORT_NOW . '</a>' . $n;
|
||||||
|
echo '</form>';
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'doSync':
|
||||||
|
// I don't know how it could've changed, but let's be safe.
|
||||||
|
if (!serendipity_checkPermission('adminImagesSync')) {
|
||||||
|
echo '<div class="warning"><em>' . PERM_DENIED . '</em></div>';
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -58,7 +85,19 @@ switch ($serendipity['GET']['adminAction']) {
|
|||||||
echo '<p class="image_synch"><b>' . SYNCING . '</b></p><br />';
|
echo '<p class="image_synch"><b>' . SYNCING . '</b></p><br />';
|
||||||
flush();
|
flush();
|
||||||
|
|
||||||
$i = serendipity_syncThumbs();
|
$deleteThumbs = false;
|
||||||
|
if (isset($serendipity['POST']['deleteThumbs'])) {
|
||||||
|
switch ($serendipity['POST']['deleteThumbs'])
|
||||||
|
{
|
||||||
|
case 'yes':
|
||||||
|
$deleteThumbs = true;
|
||||||
|
break;
|
||||||
|
case 'check':
|
||||||
|
$deleteThumbs = 'checksize';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$i = serendipity_syncThumbs($deleteThumbs);
|
||||||
printf(SYNC_DONE, $i);
|
printf(SYNC_DONE, $i);
|
||||||
|
|
||||||
echo '<p class="image_resize"><b>' . RESIZING . '</b></p><br />';
|
echo '<p class="image_resize"><b>' . RESIZING . '</b></p><br />';
|
||||||
|
|||||||
@@ -643,15 +643,19 @@ function serendipity_makeThumbnail($file, $directory = '', $size = false, $thumb
|
|||||||
} else {
|
} else {
|
||||||
if ($serendipity['magick'] !== true) {
|
if ($serendipity['magick'] !== true) {
|
||||||
if (is_array($size)) {
|
if (is_array($size)) {
|
||||||
|
// The caller wants a thumbnail with a specific size
|
||||||
$r = serendipity_resize_image_gd($infile, $outfile, $size['width'], $size['height']);
|
$r = serendipity_resize_image_gd($infile, $outfile, $size['width'], $size['height']);
|
||||||
} else {
|
} else {
|
||||||
$r = serendipity_resize_image_gd($infile, $outfile, $size);
|
// The caller wants a thumbnail constrained in the dimension set by config
|
||||||
|
$calc = serendipity_calculate_aspect_size($fdim[0], $fdim[1], $size, $serendipity['thumbConstraint']);
|
||||||
|
$r = serendipity_resize_image_gd($infile, $outfile, $calc[0], $calc[1]);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (is_array($size)) {
|
if (is_array($size)) {
|
||||||
$r = $size;
|
$r = $size;
|
||||||
} else {
|
} else {
|
||||||
$r = array('width' => $size, 'height' => $size);
|
$calc = serendipity_calculate_aspect_size($fdim[0], $fdim[1], $size, $serendipity['thumbConstraint']);
|
||||||
|
$r = array('width' => $calc[0], 'height' => $calc[1]);
|
||||||
}
|
}
|
||||||
$newSize = $r['width'] . 'x' . $r['height'];
|
$newSize = $r['width'] . 'x' . $r['height'];
|
||||||
if ($fdim['mime'] == 'application/pdf') {
|
if ($fdim['mime'] == 'application/pdf') {
|
||||||
@@ -788,6 +792,7 @@ function serendipity_generateThumbs() {
|
|||||||
|
|
||||||
$i=0;
|
$i=0;
|
||||||
$serendipity['imageList'] = serendipity_fetchImagesFromDatabase(0, 0, $total);
|
$serendipity['imageList'] = serendipity_fetchImagesFromDatabase(0, 0, $total);
|
||||||
|
$msg_printed = false;
|
||||||
|
|
||||||
foreach ($serendipity['imageList'] AS $k => $file) {
|
foreach ($serendipity['imageList'] AS $k => $file) {
|
||||||
$is_image = serendipity_isImage($file);
|
$is_image = serendipity_isImage($file);
|
||||||
@@ -808,25 +813,37 @@ function serendipity_generateThumbs() {
|
|||||||
|
|
||||||
$oldThumb = $serendipity['serendipityPath'] . $serendipity['uploadPath'] . $file['path'] . $file['name'] . '.' . $file['thumbnail_name'] . '.' . $file['extension'];
|
$oldThumb = $serendipity['serendipityPath'] . $serendipity['uploadPath'] . $file['path'] . $file['name'] . '.' . $file['thumbnail_name'] . '.' . $file['extension'];
|
||||||
$newThumb = $serendipity['serendipityPath'] . $serendipity['uploadPath'] . $file['path'] . $file['name'] . '.' . $serendipity['thumbSuffix'] . '.' . $file['extension'];
|
$newThumb = $serendipity['serendipityPath'] . $serendipity['uploadPath'] . $file['path'] . $file['name'] . '.' . $serendipity['thumbSuffix'] . '.' . $file['extension'];
|
||||||
|
$sThumb = $file['path'] . $file['name'] . '.' . $serendipity['thumbSuffix'] . '.' . $file['extension'];
|
||||||
$fdim = @getimagesize($ffull);
|
$fdim = @getimagesize($ffull);
|
||||||
|
|
||||||
if (!file_exists($oldThumb) && !file_exists($newThumb) && ($fdim[0] > $serendipity['thumbSize'] || $fdim[1] > $serendipity['thumbSize'])) {
|
if (!file_exists($oldThumb) && !file_exists($newThumb) && ($fdim[0] > $serendipity['thumbSize'] || $fdim[1] > $serendipity['thumbSize'])) {
|
||||||
$returnsize = serendipity_makeThumbnail($file['name'] . '.' . $file['extension'], $file['path']);
|
$returnsize = serendipity_makeThumbnail($file['name'] . '.' . $file['extension'], $file['path']);
|
||||||
if ($returnsize !== false ) {
|
if ($returnsize !== false ) {
|
||||||
printf(RESIZE_BLAHBLAH, $filename . ': ' . $returnsize[0] . 'x' . $returnsize[1]);
|
// Only print the resize message the first time
|
||||||
|
if (!$msg_printed) {
|
||||||
|
printf(RESIZE_BLAHBLAH, THUMBNAIL_SHORT);
|
||||||
|
echo "\n" . '<ul class="serendipityFileList">' . "\n";
|
||||||
|
$msg_printed = true;
|
||||||
|
}
|
||||||
|
echo '<li>' . $sThumb . ': ' . $returnsize[0] . 'x' . $returnsize[1] . "</li>\n";
|
||||||
if (!file_exists($newThumb)) {
|
if (!file_exists($newThumb)) {
|
||||||
printf('<div class="serendipityAdminMsgError"><img style="width: 22px; height: 22px; border: 0px; padding-right: 4px; vertical-align: middle" src="' . serendipity_getTemplateFile('admin/img/admin_msg_error.png') . '" alt="" />' . THUMBNAIL_FAILED_COPY . '</div><br />', $filename);
|
printf('<li><div class="serendipityAdminMsgError"><img style="width: 22px; height: 22px; border: 0px; padding-right: 4px; vertical-align: middle" src="' . serendipity_getTemplateFile('admin/img/admin_msg_error.png') . '" alt="" />' . THUMBNAIL_FAILED_COPY . '</div></li>' . "\n", $sThumb);
|
||||||
} else {
|
} else {
|
||||||
$update = true;
|
$update = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} elseif (!file_exists($oldThumb) && !file_exists($newThumb) && $fdim[0] <= $serendipity['thumbSize'] && $fdim[1] <= $serendipity['thumbSize']) {
|
} elseif (!file_exists($oldThumb) && !file_exists($newThumb) && $fdim[0] <= $serendipity['thumbSize'] && $fdim[1] <= $serendipity['thumbSize']) {
|
||||||
|
if (!$msg_printed) {
|
||||||
|
printf(RESIZE_BLAHBLAH, THUMB);
|
||||||
|
echo "\n" . '<ul class="serendipityFileList">' . "\n";
|
||||||
|
$msg_printed = true;
|
||||||
|
}
|
||||||
$res = @copy($ffull, $newThumb);
|
$res = @copy($ffull, $newThumb);
|
||||||
if (@$res === true) {
|
if (@$res === true) {
|
||||||
printf(THUMBNAIL_USING_OWN . '<br />', $filename);
|
printf('<li>' . THUMBNAIL_USING_OWN . '</li>' . "\n", $sThumb);
|
||||||
$update = true;
|
$update = true;
|
||||||
} else {
|
} else {
|
||||||
printf('<div class="serendipityAdminMsgError"><img style="width: 22px; height: 22px; border: 0px; padding-right: 4px; vertical-align: middle" src="' . serendipity_getTemplateFile('admin/img/admin_msg_error.png') . '" alt="" />' . THUMBNAIL_FAILED_COPY . '</div><br />', $filename);
|
printf('<li><div class="serendipityAdminMsgError"><img style="width: 22px; height: 22px; border: 0px; padding-right: 4px; vertical-align: middle" src="' . serendipity_getTemplateFile('admin/img/admin_msg_error.png') . '" alt="" />' . THUMBNAIL_FAILED_COPY . '</div></li>' . "\n", $sThumb);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -840,6 +857,12 @@ function serendipity_generateThumbs() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Close the list, if it was created
|
||||||
|
if ($msg_printed) {
|
||||||
|
echo "</ul>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
return $i;
|
return $i;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1059,7 +1082,7 @@ function serendipity_guessMime($extension) {
|
|||||||
* @access public
|
* @access public
|
||||||
* @return int Number of updated thumbnails
|
* @return int Number of updated thumbnails
|
||||||
*/
|
*/
|
||||||
function serendipity_syncThumbs() {
|
function serendipity_syncThumbs($deleteThumbs = false) {
|
||||||
global $serendipity;
|
global $serendipity;
|
||||||
|
|
||||||
$i=0;
|
$i=0;
|
||||||
@@ -1077,6 +1100,7 @@ function serendipity_syncThumbs() {
|
|||||||
|
|
||||||
$ffull = $serendipity['serendipityPath'] . $serendipity['uploadPath'] . $files[$x];
|
$ffull = $serendipity['serendipityPath'] . $serendipity['uploadPath'] . $files[$x];
|
||||||
$fthumb = $serendipity['serendipityPath'] . $serendipity['uploadPath'] . $f[0] . '.' . $serendipity['thumbSuffix'] . '.' . $f[1];
|
$fthumb = $serendipity['serendipityPath'] . $serendipity['uploadPath'] . $f[0] . '.' . $serendipity['thumbSuffix'] . '.' . $f[1];
|
||||||
|
$sThumb = $f[0] . '.' . $serendipity['thumbSuffix'] . '.' . $f[1];
|
||||||
$fbase = basename($f[0]);
|
$fbase = basename($f[0]);
|
||||||
$fdir = dirname($f[0]) . '/';
|
$fdir = dirname($f[0]) . '/';
|
||||||
if ($fdir == './') {
|
if ($fdir == './') {
|
||||||
@@ -1091,6 +1115,40 @@ function serendipity_syncThumbs() {
|
|||||||
$ft_mime = serendipity_guessMime($f[1]);
|
$ft_mime = serendipity_guessMime($f[1]);
|
||||||
$fdim = serendipity_getimagesize($ffull, $ft_mime);
|
$fdim = serendipity_getimagesize($ffull, $ft_mime);
|
||||||
|
|
||||||
|
// If we're supposed to delete thumbs, this is the easiest place.
|
||||||
|
if (is_readable($fthumb)) {
|
||||||
|
if ($deleteThumbs === true) {
|
||||||
|
if (@unlink($fthumb)) {
|
||||||
|
printf(DELETE_THUMBNAIL . "<br />\n", $sThumb);
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
} else if ($deleteThumbs == 'checksize') {
|
||||||
|
// Find existing thumbnail dimensions
|
||||||
|
$tdim = serendipity_getimagesize($fthumb);
|
||||||
|
if ($tdim['noimage']) {
|
||||||
|
// Delete it so it can be regenerated
|
||||||
|
if (@unlink($fthumb)) {
|
||||||
|
printf(DELETE_THUMBNAIL . "<br />\n", $sthumb);
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Calculate correct thumbnail size from original image
|
||||||
|
$expect = serendipity_calculate_aspect_size(
|
||||||
|
$fdim[0], $fdim[1], $serendipity['thumbSize'], $serendipity['thumbConstraint']);
|
||||||
|
// Check actual thumbnail size
|
||||||
|
if ($tdim[0] != $expect[0] || $tdim[1] != $expect[1]) {
|
||||||
|
// This thumbnail is incorrect; delete it so
|
||||||
|
// it can be regenerated
|
||||||
|
if (@unlink($fthumb)) {
|
||||||
|
printf(DELETE_THUMBNAIL . "<br />\n", $sthumb);
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// else the option is to keep all existing thumbs; do nothing.
|
||||||
|
} // end if thumb exists
|
||||||
|
|
||||||
$cond = array(
|
$cond = array(
|
||||||
'and' => "WHERE name = '" . serendipity_db_escape_string($fbase) . "'
|
'and' => "WHERE name = '" . serendipity_db_escape_string($fbase) . "'
|
||||||
" . ($fdir != '' ? "AND path = '" . serendipity_db_escape_string($fdir) . "'" : '') . "
|
" . ($fdir != '' ? "AND path = '" . serendipity_db_escape_string($fdir) . "'" : '') . "
|
||||||
@@ -1104,20 +1162,25 @@ function serendipity_syncThumbs() {
|
|||||||
|
|
||||||
{$cond['and']}", true, 'assoc');
|
{$cond['and']}", true, 'assoc');
|
||||||
if (is_array($rs)) {
|
if (is_array($rs)) {
|
||||||
|
// This image is in the database. Check our calculated data against the database data.
|
||||||
$update = array();
|
$update = array();
|
||||||
$checkfile = $serendipity['serendipityPath'] . $serendipity['uploadPath'] . $rs['path'] . $rs['name'] . '.' . $rs['thumbnail_name'] . '.' . $rs['extension'];
|
// Is the width correct?
|
||||||
if (isset($fdim[0]) && $rs['dimensions_width'] != $fdim[0]) {
|
if (isset($fdim[0]) && $rs['dimensions_width'] != $fdim[0]) {
|
||||||
$update['dimensions_width'] = $fdim[0];
|
$update['dimensions_width'] = $fdim[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Is the height correct?
|
||||||
if (isset($fdim[1]) && $rs['dimensions_height'] != $fdim[1]) {
|
if (isset($fdim[1]) && $rs['dimensions_height'] != $fdim[1]) {
|
||||||
$update['dimensions_height'] = $fdim[1];
|
$update['dimensions_height'] = $fdim[1];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Is the image size correct?
|
||||||
if ($rs['size'] != filesize($ffull)) {
|
if ($rs['size'] != filesize($ffull)) {
|
||||||
$update['size'] = filesize($ffull);
|
$update['size'] = filesize($ffull);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Has the thumbnail suffix changed?
|
||||||
|
$checkfile = $serendipity['serendipityPath'] . $serendipity['uploadPath'] . $rs['path'] . $rs['name'] . '.' . $rs['thumbnail_name'] . '.' . $rs['extension'];
|
||||||
if (!file_exists($checkfile) && file_exists($fthumb)) {
|
if (!file_exists($checkfile) && file_exists($fthumb)) {
|
||||||
$update['thumbnail_name'] = $serendipity['thumbSuffix'];
|
$update['thumbnail_name'] = $serendipity['thumbSuffix'];
|
||||||
}
|
}
|
||||||
@@ -1246,13 +1309,13 @@ function serendipity_resize_image_gd($infilename, $outfilename, $newwidth, $newh
|
|||||||
$height = imagesy($in);
|
$height = imagesy($in);
|
||||||
|
|
||||||
if (is_null($newheight)) {
|
if (is_null($newheight)) {
|
||||||
$newsizes = serendipity_calculate_aspect_size($width, $height, $newwidth);
|
$newsizes = serendipity_calculate_aspect_size($width, $height, $newwidth, 'width');
|
||||||
$newwidth = $newsizes[0];
|
$newwidth = $newsizes[0];
|
||||||
$newheight = $newsizes[1];
|
$newheight = $newsizes[1];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_null($newwidth)) {
|
if (is_null($newwidth)) {
|
||||||
$newsizes = serendipity_calculate_aspect_size($width, $height, null, $newheight);
|
$newsizes = serendipity_calculate_aspect_size($width, $height, $newheight, 'height');
|
||||||
$newwidth = $newsizes[0];
|
$newwidth = $newsizes[0];
|
||||||
$newheight = $newsizes[1];
|
$newheight = $newsizes[1];
|
||||||
}
|
}
|
||||||
@@ -1277,56 +1340,81 @@ function serendipity_resize_image_gd($infilename, $outfilename, $newwidth, $newh
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Calculate aspect ratio of an image
|
* Calculate new size for an image, considering aspect ratio and constraint
|
||||||
*
|
*
|
||||||
* @access public
|
* @access public
|
||||||
* @param int Image width
|
* @param int Image width
|
||||||
* @param int Image height
|
* @param int Image height
|
||||||
* @param int Target width
|
* @param int Target dimension size
|
||||||
* @return int Target height
|
* @param string Dimension to constrain ('width', 'height', 'largest',
|
||||||
|
'smallest'; defaults to original behavior, 'largest')
|
||||||
|
* @return array An array with the scaled width and height
|
||||||
*/
|
*/
|
||||||
function serendipity_calculate_aspect_size($width, $height, $orig_newwidth, $orig_newheight = null) {
|
function serendipity_calculate_aspect_size($width, $height, $size, $constraint = null) {
|
||||||
|
|
||||||
// calculate aspect ratio
|
// Allow for future constraints (idea: 'percent')
|
||||||
if (!is_null($orig_newheight)) {
|
$known_constraints = array('width', 'height', 'largest', 'smallest');
|
||||||
$div_width = $width / $orig_newheight;
|
|
||||||
$div_height = $height / $orig_newheight;
|
// Rearrange params for calls from old imageselectorplus plugin
|
||||||
} else {
|
if ($size == null) {
|
||||||
$div_width = $width / $orig_newwidth;
|
$size = $constraint;
|
||||||
$div_height = $height / $orig_newwidth;
|
$constraint = 'smallest';
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($div_width <= 1 && $div_height <= 1) {
|
// Normalize relative constraint types
|
||||||
// do not scale small images where both sides are smaller than the thumbnail dimensions
|
if ($constraint == 'largest' || !in_array($constraint, $known_constraints)) {
|
||||||
$newheight = $height;
|
// Original default behavior, included for backwards compatibility
|
||||||
$newwidth = $width;
|
// Constrains largest dimension
|
||||||
} elseif (is_null($orig_newheight) && $div_width >= $div_height) {
|
if ($width >= $height) {
|
||||||
// max width - calculate height, keep width as scaling base
|
$constraint = 'width';
|
||||||
$newheight = round($height / $div_width);
|
} else {
|
||||||
// make sure the height is at least 1 pixel for extreme images
|
$constraint = 'height';
|
||||||
$newheight = ($newheight >= 1 ? $newheight : 1);
|
}
|
||||||
$newwidth = $orig_newwidth;
|
} else if ($constraint == 'smallest') {
|
||||||
} elseif (is_null($orig_newwidth) && $div_width >= $div_height) {
|
// Only ever called from imageselectorplus plugin, included for
|
||||||
// max width - calculate height, keep width as scaling base
|
// backwards compatibility with its older versions
|
||||||
$newwidth = round($width / $div_height);
|
if ($width >= $height) {
|
||||||
// make sure the height is at least 1 pixel for extreme images
|
$constraint = 'height';
|
||||||
$newwidth = ($newwidth >= 1 ? $newwidth : 1);
|
} else {
|
||||||
$newheight = $orig_newheight;
|
$constraint = 'width';
|
||||||
} elseif (is_null($orig_newheight)) {
|
}
|
||||||
// max height - calculate width, keep height as scaling base
|
|
||||||
$newheight = $orig_newwidth;
|
|
||||||
$newwidth = round($width / $div_height);
|
|
||||||
// make sure the width is at least 1 pixel for extreme images
|
|
||||||
$newwidth = ($newwidth >= 1 ? $newwidth : 1);
|
|
||||||
} else {
|
|
||||||
// max height - calculate width, keep height as scaling base
|
|
||||||
$newwidth = $orig_newheight;
|
|
||||||
$newheight = round($height / $div_width);
|
|
||||||
// make sure the width is at least 1 pixel for extreme images
|
|
||||||
$newheight = ($newheight >= 1 ? $newheight : 1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return array($newwidth, $newheight);
|
// Constraint is now definitely one of the known absolute types,
|
||||||
|
// either 'width' or 'height'
|
||||||
|
if ($constraint == 'height') {
|
||||||
|
// Is the image big enough to resize?
|
||||||
|
if ($height > $size) {
|
||||||
|
// Calculate new size
|
||||||
|
$ratio = $width / $height;
|
||||||
|
$newwidth = round($size * $ratio);
|
||||||
|
// Limit calculated dimension to at least 1px
|
||||||
|
if ($newwidth <= 0) {
|
||||||
|
$newwidth = 1;
|
||||||
|
}
|
||||||
|
$newsize = array($newwidth, $size);
|
||||||
|
} else {
|
||||||
|
// Image is too small to be resized; use original dimensions
|
||||||
|
$newsize = array($width, $height);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Default constraint is width
|
||||||
|
if ($width > $size) {
|
||||||
|
// Image is big enough to resize
|
||||||
|
$ratio = $height / $width;
|
||||||
|
$newheight = round($size * $ratio);
|
||||||
|
// Limit calculated dimension to at least 1px
|
||||||
|
if ($newheight <= 0) {
|
||||||
|
$newheight = 1;
|
||||||
|
}
|
||||||
|
$newsize = array($size, $newheight);
|
||||||
|
} else {
|
||||||
|
// Do not scale small images
|
||||||
|
$newsize = array($width, $height);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $newsize;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -2665,7 +2753,7 @@ function serendipity_prepareMedia(&$file, $url = '') {
|
|||||||
$file['preview'] = '<a href="'. $file['preview_url'] .'">'. $file['preview'] .'</a>';
|
$file['preview'] = '<a href="'. $file['preview_url'] .'">'. $file['preview'] .'</a>';
|
||||||
}
|
}
|
||||||
} elseif ($file['is_image'] && $file['hotlink']) {
|
} elseif ($file['is_image'] && $file['hotlink']) {
|
||||||
$sizes = serendipity_calculate_aspect_size($file['dimensions_width'], $file['dimensions_height'], $serendipity['thumbSize']);
|
$sizes = serendipity_calculate_aspect_size($file['dimensions_width'], $file['dimensions_height'], $serendipity['thumbSize'], $serendipity['thumbConstraint']);
|
||||||
$file['thumbWidth'] = $sizes[0];
|
$file['thumbWidth'] = $sizes[0];
|
||||||
$file['thumbHeight'] = $sizes[1];
|
$file['thumbHeight'] = $sizes[1];
|
||||||
$file['preview'] .= '<img src="' . $file['path'] . '" width="' . $sizes[0] . '" height="' . $sizes[1] . '" border="0" title="' . $file['path'] . '" alt="'. $file['realname'] . '" />';
|
$file['preview'] .= '<img src="' . $file['path'] . '" width="' . $sizes[0] . '" height="' . $sizes[1] . '" border="0" title="' . $file['path'] . '" alt="'. $file['realname'] . '" />';
|
||||||
|
|||||||
@@ -522,6 +522,16 @@
|
|||||||
'permission' => 'siteConfiguration',
|
'permission' => 'siteConfiguration',
|
||||||
'default' => 110),
|
'default' => 110),
|
||||||
|
|
||||||
|
array('var' => 'thumbConstraint',
|
||||||
|
'title' => INSTALL_THUMBDIM,
|
||||||
|
'description' => INSTALL_THUMBDIM_DESC,
|
||||||
|
'type' => 'list',
|
||||||
|
'permission' => 'siteConfiguration',
|
||||||
|
'default' => array(
|
||||||
|
'largest' => INSTALL_THUMBDIM_LARGEST,
|
||||||
|
'width' => INSTALL_THUMBDIM_WIDTH,
|
||||||
|
'height' => INSTALL_THUMBDIM_HEIGHT)),
|
||||||
|
|
||||||
array('var' => 'maxFileSize',
|
array('var' => 'maxFileSize',
|
||||||
'title' => MEDIA_UPLOAD_SIZE,
|
'title' => MEDIA_UPLOAD_SIZE,
|
||||||
'description' => MEDIA_UPLOAD_SIZE_DESC,
|
'description' => MEDIA_UPLOAD_SIZE_DESC,
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Грешка: Този файл вече съществува!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Грешка: Този файл вече съществува!');
|
||||||
@define('GO', 'Продължаване');
|
@define('GO', 'Продължаване');
|
||||||
@define('NEWSIZE', 'Нов размер: ');
|
@define('NEWSIZE', 'Нов размер: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Промяна на размерите на %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Промяна на размерите на %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Оригинални размери: <i>%s×%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Оригинални размери: <i>%s×%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Тук можете да настроите новите размери на изображенията. Ако искате да запазите пропорциите им, въведете стойност в едно от полетата и натиснете бутона TAB. Другото поле ще бъде изчислено автоматично, така че да се запази пропорцията.');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Тук можете да настроите новите размери на изображенията. Ако искате да запазите пропорциите им, въведете стойност в едно от полетата и натиснете бутона TAB. Другото поле ще бъде изчислено автоматично, така че да се запази пропорцията.');
|
||||||
@define('QUICKSEARCH', 'Бързо търсене');
|
@define('QUICKSEARCH', 'Бързо търсене');
|
||||||
@@ -188,6 +188,10 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('RESIZING', 'Промяна на размер');
|
@define('RESIZING', 'Промяна на размер');
|
||||||
@define('RESIZE_DONE', 'Готово (променени са размерите на %s изображения).');
|
@define('RESIZE_DONE', 'Готово (променени са размерите на %s изображения).');
|
||||||
@define('SYNCING', 'Синхронизиране на базата данни с папката с изображения');
|
@define('SYNCING', 'Синхронизиране на базата данни с папката с изображения');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Готово (синхронизирани са %s изображения).');
|
@define('SYNC_DONE', 'Готово (синхронизирани са %s изображения).');
|
||||||
@define('DELETE_FILE_FAIL' , 'Не може да бъде изтрит файла <b>%s</b>');
|
@define('DELETE_FILE_FAIL' , 'Не може да бъде изтрит файла <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Изтрита е миниатюрата, озаглавена <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Изтрита е миниатюрата, озаглавена <b>%s</b>');
|
||||||
@@ -436,6 +440,14 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Миниатюрите ще бъдат именувани по следния начин: оригинал.[наставка].разширение');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Миниатюрите ще бъдат именувани по следния начин: оригинал.[наставка].разширение');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Размер на миниатюрите');
|
@define('INSTALL_THUMBWIDTH', 'Размер на миниатюрите');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Статична максимална ширина на автоматично генерираните миниатюри');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Статична максимална ширина на автоматично генерираните миниатюри');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Лични данни');
|
@define('USERCONF_CAT_PERSONAL', 'Лични данни');
|
||||||
@define('USERCONF_CAT_PERSONAL_DESC', 'Въвеждане на вашите лични данни');
|
@define('USERCONF_CAT_PERSONAL_DESC', 'Въвеждане на вашите лични данни');
|
||||||
@define('USERCONF_USERNAME', 'Потребителско име');
|
@define('USERCONF_USERNAME', 'Потребителско име');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', '发生错误, 文件没有上传,可能因为你的文件超过限制的大小, 请询问你的主机商或修改你的 php.ini 文件属性。');
|
@define('ERROR_UNKNOWN_NOUPLOAD', '发生错误, 文件没有上传,可能因为你的文件超过限制的大小, 请询问你的主机商或修改你的 php.ini 文件属性。');
|
||||||
@define('GO', '继续');
|
@define('GO', '继续');
|
||||||
@define('NEWSIZE', '大小: ');
|
@define('NEWSIZE', '大小: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>重设大小 %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>重设大小 %s</b>');
|
||||||
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在这里你可以修改图片大小!如果你要修改成相同的图片比例, 你只需要输入一个数值然后按 TAB -- 系统会自动帮你计算比例以免出错。</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在这里你可以修改图片大小!如果你要修改成相同的图片比例, 你只需要输入一个数值然后按 TAB -- 系统会自动帮你计算比例以免出错。</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', '日历快速跳跃');
|
@define('QUICKJUMP_CALENDAR', '日历快速跳跃');
|
||||||
@@ -204,6 +204,10 @@
|
|||||||
@define('RESIZING', '重设大小');
|
@define('RESIZING', '重设大小');
|
||||||
@define('RESIZE_DONE', '完成 (重设 %s 个图片)');
|
@define('RESIZE_DONE', '完成 (重设 %s 个图片)');
|
||||||
@define('SYNCING', '进行数据库和图片文件夹数据同步');
|
@define('SYNCING', '进行数据库和图片文件夹数据同步');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', '完成 (同步了 %s 个图片)');
|
@define('SYNC_DONE', '完成 (同步了 %s 个图片)');
|
||||||
@define('FILE_NOT_FOUND', '找不到文件 <b>%s</b>, 可能已被删除');
|
@define('FILE_NOT_FOUND', '找不到文件 <b>%s</b>, 可能已被删除');
|
||||||
@define('ABORT_NOW', '放弃');
|
@define('ABORT_NOW', '放弃');
|
||||||
@@ -415,6 +419,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', '缩图会以下面的格式重新命名: original.[后置字符].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', '缩图会以下面的格式重新命名: original.[后置字符].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', '缩图大小');
|
@define('INSTALL_THUMBWIDTH', '缩图大小');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', '自动建立缩图的最大宽度');
|
@define('INSTALL_THUMBWIDTH_DESC', '自动建立缩图的最大宽度');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', '个人资料设定');
|
@define('USERCONF_CAT_PERSONAL', '个人资料设定');
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ $i18n_filename_to = array (
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Chyba: Soubor už ve vašem počítači existuje!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Chyba: Soubor už ve vašem počítači existuje!');
|
||||||
@define('GO', 'Provést!');
|
@define('GO', 'Provést!');
|
||||||
@define('NEWSIZE', 'Nový rozměr: ');
|
@define('NEWSIZE', 'Nový rozměr: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Změnit rozměr %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Změnit rozměr %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Původní rozměr: <i>%sx%s</i> pixelů');
|
@define('ORIGINAL_SIZE', 'Původní rozměr: <i>%sx%s</i> pixelů');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Zde můžete zadat nový rozměr obrázku. Pokud chcete zachovat proporce, zadejte jen jednu hodnotu a stiskněte klávesu TAB, nový rozměr bude dopočítán automaticky:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Zde můžete zadat nový rozměr obrázku. Pokud chcete zachovat proporce, zadejte jen jednu hodnotu a stiskněte klávesu TAB, nový rozměr bude dopočítán automaticky:');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Vyhledávací kalendář');
|
@define('QUICKJUMP_CALENDAR', 'Vyhledávací kalendář');
|
||||||
@@ -200,6 +200,10 @@ $i18n_filename_to = array (
|
|||||||
@define('RESIZING', 'Změna rozměrů');
|
@define('RESIZING', 'Změna rozměrů');
|
||||||
@define('RESIZE_DONE', 'Hotovo (upraven rozměr %s obrázků).');
|
@define('RESIZE_DONE', 'Hotovo (upraven rozměr %s obrázků).');
|
||||||
@define('SYNCING', 'Synchronizace databáze s adresářem obrázků');
|
@define('SYNCING', 'Synchronizace databáze s adresářem obrázků');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Hotovo (synchronizováno %s obrázků).');
|
@define('SYNC_DONE', 'Hotovo (synchronizováno %s obrázků).');
|
||||||
@define('DELETE_IMAGE_FAIL' , 'Nelze vymazat obrázek <b>%s</b>');
|
@define('DELETE_IMAGE_FAIL' , 'Nelze vymazat obrázek <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Vymazán náhled obrázku s názvem <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Vymazán náhled obrázku s názvem <b>%s</b>');
|
||||||
@@ -403,6 +407,14 @@ $i18n_filename_to = array (
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Náhledy budou pojmenovány original.sufix.ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Náhledy budou pojmenovány original.sufix.ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Rozměry náhledů');
|
@define('INSTALL_THUMBWIDTH', 'Rozměry náhledů');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Pevná šířka automaticky generovaných náhledů');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Pevná šířka automaticky generovaných náhledů');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Osobní nastavení');
|
@define('USERCONF_CAT_PERSONAL', 'Osobní nastavení');
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ $i18n_filename_to = array (
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Chyba: Soubor už ve vašem počítači existuje!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Chyba: Soubor už ve vašem počítači existuje!');
|
||||||
@define('GO', 'Provést!');
|
@define('GO', 'Provést!');
|
||||||
@define('NEWSIZE', 'Nový rozměr: ');
|
@define('NEWSIZE', 'Nový rozměr: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Změnit rozměr %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Změnit rozměr %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Původní rozměr: <i>%sx%s</i> pixelů');
|
@define('ORIGINAL_SIZE', 'Původní rozměr: <i>%sx%s</i> pixelů');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Zde můžete zadat nový rozměr obrázku. Pokud chcete zachovat proporce, zadejte jen jednu hodnotu a stiskněte klávesu TAB, nový rozměr bude dopočítán automaticky:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Zde můžete zadat nový rozměr obrázku. Pokud chcete zachovat proporce, zadejte jen jednu hodnotu a stiskněte klávesu TAB, nový rozměr bude dopočítán automaticky:');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Vyhledávací kalendář');
|
@define('QUICKJUMP_CALENDAR', 'Vyhledávací kalendář');
|
||||||
@@ -200,6 +200,10 @@ $i18n_filename_to = array (
|
|||||||
@define('RESIZING', 'Změna rozměrů');
|
@define('RESIZING', 'Změna rozměrů');
|
||||||
@define('RESIZE_DONE', 'Hotovo (upraven rozměr %s obrázků).');
|
@define('RESIZE_DONE', 'Hotovo (upraven rozměr %s obrázků).');
|
||||||
@define('SYNCING', 'Synchronizace databáze s adresářem obrázků');
|
@define('SYNCING', 'Synchronizace databáze s adresářem obrázků');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Hotovo (synchronizováno %s obrázků).');
|
@define('SYNC_DONE', 'Hotovo (synchronizováno %s obrázků).');
|
||||||
@define('DELETE_IMAGE_FAIL' , 'Nelze vymazat obrázek <b>%s</b>');
|
@define('DELETE_IMAGE_FAIL' , 'Nelze vymazat obrázek <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Vymazán náhled obrázku s názvem <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Vymazán náhled obrázku s názvem <b>%s</b>');
|
||||||
@@ -403,6 +407,14 @@ $i18n_filename_to = array (
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Náhledy budou pojmenovány original.sufix.ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Náhledy budou pojmenovány original.sufix.ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Rozměry náhledů');
|
@define('INSTALL_THUMBWIDTH', 'Rozměry náhledů');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Pevná šířka automaticky generovaných náhledů');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Pevná šířka automaticky generovaných náhledů');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Osobní nastavení');
|
@define('USERCONF_CAT_PERSONAL', 'Osobní nastavení');
|
||||||
|
|||||||
@@ -85,7 +85,7 @@
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Fejl: Filen findes allerede på din maskine!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Fejl: Filen findes allerede på din maskine!');
|
||||||
@define('GO', 'Begynd!');
|
@define('GO', 'Begynd!');
|
||||||
@define('NEWSIZE', 'Ny størrelse: ');
|
@define('NEWSIZE', 'Ny størrelse: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Ændre størrelse på %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Ændre størrelse på %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Original størrelse: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Original størrelse: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Her kan du justere billedets størrelse. Hvis du vil bevare proportionerne, skal du bare indtaste én af værdirene og trykke på TAB-tasten, den anden værdi beregnes så automatisk:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Her kan du justere billedets størrelse. Hvis du vil bevare proportionerne, skal du bare indtaste én af værdirene og trykke på TAB-tasten, den anden værdi beregnes så automatisk:');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Hurtigkalender');
|
@define('QUICKJUMP_CALENDAR', 'Hurtigkalender');
|
||||||
@@ -186,6 +186,10 @@
|
|||||||
@define('RESIZING', 'Ændre dimensioner');
|
@define('RESIZING', 'Ændre dimensioner');
|
||||||
@define('RESIZE_DONE', 'Færdig (Ændrede %s billeder).');
|
@define('RESIZE_DONE', 'Færdig (Ændrede %s billeder).');
|
||||||
@define('SYNCING', 'Synkroniserer databasen med billedemappen');
|
@define('SYNCING', 'Synkroniserer databasen med billedemappen');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Færdig (Synkroniserede %s billeder).');
|
@define('SYNC_DONE', 'Færdig (Synkroniserede %s billeder).');
|
||||||
@define('DELETE_IMAGE_FAIL' , 'Kunne ikke slette billedet <b>%s</b>');
|
@define('DELETE_IMAGE_FAIL' , 'Kunne ikke slette billedet <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Slettede billedet ved navn <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Slettede billedet ved navn <b>%s</b>');
|
||||||
@@ -374,6 +378,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails vil blive navngivet i følgende format: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails vil blive navngivet i følgende format: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Thumbnail dimensioner');
|
@define('INSTALL_THUMBWIDTH', 'Thumbnail dimensioner');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Statisk maximal brede på et auto-genereret thumbnail');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Statisk maximal brede på et auto-genereret thumbnail');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Dine personlige detaljer');
|
@define('USERCONF_CAT_PERSONAL', 'Dine personlige detaljer');
|
||||||
|
|||||||
@@ -85,7 +85,7 @@
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Fehler: Diese Datei existiert schon auf dem Server!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Fehler: Diese Datei existiert schon auf dem Server!');
|
||||||
@define('GO', 'Los!');
|
@define('GO', 'Los!');
|
||||||
@define('NEWSIZE', 'Neue Größe ');
|
@define('NEWSIZE', 'Neue Größe ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Größe von %s ändern</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Größe von %s ändern</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Originalgröße: <i>%sx%s</i> Pixel');
|
@define('ORIGINAL_SIZE', 'Originalgröße: <i>%sx%s</i> Pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Hier können Sie die Bildgröße ändern. Um die Proportionen beizubehalten, einfach einen der beiden Werte eingeben, und anschließend die TAB-Taste drücken, und Sie erhalten eine Vorschau mit korrekten Proportionen.');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Hier können Sie die Bildgröße ändern. Um die Proportionen beizubehalten, einfach einen der beiden Werte eingeben, und anschließend die TAB-Taste drücken, und Sie erhalten eine Vorschau mit korrekten Proportionen.');
|
||||||
@define('DATE_FORMAT_1', 'd.m.Y');
|
@define('DATE_FORMAT_1', 'd.m.Y');
|
||||||
@@ -253,6 +253,10 @@
|
|||||||
@define('SIDEBAR_PLUGINS', 'Seitenleisten-Plugins');
|
@define('SIDEBAR_PLUGINS', 'Seitenleisten-Plugins');
|
||||||
@define('EVENT_PLUGINS', 'Ereignis-Plugins');
|
@define('EVENT_PLUGINS', 'Ereignis-Plugins');
|
||||||
@define('SYNCING', 'Synchronisiere Datenbank mit Bilder-Ordner');
|
@define('SYNCING', 'Synchronisiere Datenbank mit Bilder-Ordner');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Fertig (%s Bilder synchronisiert).');
|
@define('SYNC_DONE', 'Fertig (%s Bilder synchronisiert).');
|
||||||
@define('SORT_ORDER', 'Sortierung');
|
@define('SORT_ORDER', 'Sortierung');
|
||||||
@define('SORT_ORDER_NAME', 'Dateiname');
|
@define('SORT_ORDER_NAME', 'Dateiname');
|
||||||
@@ -402,6 +406,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails werden nach dem Schema originalname.Suffix.erweiterung benannt.');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails werden nach dem Schema originalname.Suffix.erweiterung benannt.');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Thumbnailgröße');
|
@define('INSTALL_THUMBWIDTH', 'Thumbnailgröße');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Maximale Breite/Höhe der automatisch erzeugten Thumbnails');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Maximale Breite/Höhe der automatisch erzeugten Thumbnails');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Persönliche Einstellungen');
|
@define('USERCONF_CAT_PERSONAL', 'Persönliche Einstellungen');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Unknown error occurred, file not uploaded. Maybe your filesize is larger than the maximum size allowed by your server installation. Check with your ISP or edit your php.ini file to allow larger file size uploads.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Unknown error occurred, file not uploaded. Maybe your filesize is larger than the maximum size allowed by your server installation. Check with your ISP or edit your php.ini file to allow larger file size uploads.');
|
||||||
@define('GO', 'Go!');
|
@define('GO', 'Go!');
|
||||||
@define('NEWSIZE', 'New size: ');
|
@define('NEWSIZE', 'New size: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Resize %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Resize %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Original size: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Original size: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Here, you can adjust the image size. If you want to resize the image proportionally, just enter a value in one of the two boxes and press the TAB key -- I will automatically calculate the new size so the image proportions do not get messed up</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Here, you can adjust the image size. If you want to resize the image proportionally, just enter a value in one of the two boxes and press the TAB key -- I will automatically calculate the new size so the image proportions do not get messed up</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'QuickJump Calendar');
|
@define('QUICKJUMP_CALENDAR', 'QuickJump Calendar');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'Resizing');
|
@define('RESIZING', 'Resizing');
|
||||||
@define('RESIZE_DONE', 'Done (resized %s images).');
|
@define('RESIZE_DONE', 'Done (resized %s images).');
|
||||||
@define('SYNCING', 'Synchronizing the database with the image folder');
|
@define('SYNCING', 'Synchronizing the database with the image folder');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Done (Synchronized %s images).');
|
@define('SYNC_DONE', 'Done (Synchronized %s images).');
|
||||||
@define('FILE_NOT_FOUND', 'Unable to locate the file entitled <b>%s</b>, maybe it has already been deleted?');
|
@define('FILE_NOT_FOUND', 'Unable to locate the file entitled <b>%s</b>, maybe it has already been deleted?');
|
||||||
@define('ABORT_NOW', 'Abort now');
|
@define('ABORT_NOW', 'Abort now');
|
||||||
@@ -413,6 +417,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails will be named with the following format: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails will be named with the following format: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Thumbnail dimensions');
|
@define('INSTALL_THUMBWIDTH', 'Thumbnail dimensions');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Static maximum width of auto-generated thumbnails');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Static maximum width of auto-generated thumbnails');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Your personal details');
|
@define('USERCONF_CAT_PERSONAL', 'Your personal details');
|
||||||
|
|||||||
@@ -93,7 +93,7 @@
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Error: ¡El fichero ya existe en el sistema!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Error: ¡El fichero ya existe en el sistema!');
|
||||||
@define('GO', '¡Ir!');
|
@define('GO', '¡Ir!');
|
||||||
@define('NEWSIZE', 'Nuevo tamaño: ');
|
@define('NEWSIZE', 'Nuevo tamaño: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Cambiar tamaño %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Cambiar tamaño %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Tamaño original: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Tamaño original: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aquí puedes ajustar el nuevo tamaño de la imagen. Si quieres mantener las proporciones sólo introduce uno de los valores y presiona la tecla tabulador (TAB), de esta forma se ajustará automáticamente:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aquí puedes ajustar el nuevo tamaño de la imagen. Si quieres mantener las proporciones sólo introduce uno de los valores y presiona la tecla tabulador (TAB), de esta forma se ajustará automáticamente:');
|
||||||
@define('DATE_FORMAT_1', 'd.m.Y');
|
@define('DATE_FORMAT_1', 'd.m.Y');
|
||||||
@@ -253,6 +253,10 @@
|
|||||||
@define('SIDEBAR_PLUGINS', 'Extensiones de barra lateral');
|
@define('SIDEBAR_PLUGINS', 'Extensiones de barra lateral');
|
||||||
@define('EVENT_PLUGINS', 'Extensiones de eventos');
|
@define('EVENT_PLUGINS', 'Extensiones de eventos');
|
||||||
@define('SYNCING', 'Sincronizando la base de datos con el directorio de imágenes.');
|
@define('SYNCING', 'Sincronizando la base de datos con el directorio de imágenes.');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Hecho (Sincronizadas %s imágenes).');
|
@define('SYNC_DONE', 'Hecho (Sincronizadas %s imágenes).');
|
||||||
@define('SORT_ORDER', 'Ordenar por');
|
@define('SORT_ORDER', 'Ordenar por');
|
||||||
@define('SORT_ORDER_NAME', 'Nombre de fichero');
|
@define('SORT_ORDER_NAME', 'Nombre de fichero');
|
||||||
@@ -399,6 +403,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Las miniaturas se crearán con el siguiente formato: original.[sufijo].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Las miniaturas se crearán con el siguiente formato: original.[sufijo].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Dimensiones de las miniaturas');
|
@define('INSTALL_THUMBWIDTH', 'Dimensiones de las miniaturas');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Anchura máxima estática de las miniaturas auto-generadas');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Anchura máxima estática de las miniaturas auto-generadas');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Datos personales');
|
@define('USERCONF_CAT_PERSONAL', 'Datos personales');
|
||||||
|
|||||||
@@ -89,7 +89,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'خطای ناشناخته، فایلی بالاگذاری نشد. ممکن است که حجم فایل شما بیشتر از ماکزیمم حجم اجازه داده شده باشد. لطفا ISP یا فایل php.ini خود را چک کنید.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'خطای ناشناخته، فایلی بالاگذاری نشد. ممکن است که حجم فایل شما بیشتر از ماکزیمم حجم اجازه داده شده باشد. لطفا ISP یا فایل php.ini خود را چک کنید.');
|
||||||
@define('GO', 'برو!');
|
@define('GO', 'برو!');
|
||||||
@define('NEWSIZE', 'سایز جدید: ');
|
@define('NEWSIZE', 'سایز جدید: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>تغییر اندازه %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>تغییر اندازه %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'ابعاد اصلی: <i>%sx%s</i> پیکسل');
|
@define('ORIGINAL_SIZE', 'ابعاد اصلی: <i>%sx%s</i> پیکسل');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>در این مکان، شما می توانید ابعاد عکس را درست نمایید. اگر تصمیم دارید ابعاد عکس را متناسب تغییر دهید، فقط یکی از اعداد را وارد کرده و سپس کلید TAB را فشار دهید -- ما ضلع دیگر را به صورت متناسب تغییر خواهیم داد</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>در این مکان، شما می توانید ابعاد عکس را درست نمایید. اگر تصمیم دارید ابعاد عکس را متناسب تغییر دهید، فقط یکی از اعداد را وارد کرده و سپس کلید TAB را فشار دهید -- ما ضلع دیگر را به صورت متناسب تغییر خواهیم داد</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'تقویم برای پرش سریع');
|
@define('QUICKJUMP_CALENDAR', 'تقویم برای پرش سریع');
|
||||||
@@ -203,6 +203,10 @@
|
|||||||
@define('RESIZING', 'تغییر اندازه');
|
@define('RESIZING', 'تغییر اندازه');
|
||||||
@define('RESIZE_DONE', 'انجام شد (تعداد %s تصویر تغییر کرد).');
|
@define('RESIZE_DONE', 'انجام شد (تعداد %s تصویر تغییر کرد).');
|
||||||
@define('SYNCING', 'هماهنگی پایگاه داده با شاخه تصاویر');
|
@define('SYNCING', 'هماهنگی پایگاه داده با شاخه تصاویر');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'انجام شد (تعداد %s تصویر هماهنگ شد).');
|
@define('SYNC_DONE', 'انجام شد (تعداد %s تصویر هماهنگ شد).');
|
||||||
@define('FILE_NOT_FOUND', 'توانایی تشخیص محل تصویر <b>%s</b> نیست، احتمالا قبلا حذف شده است؟');
|
@define('FILE_NOT_FOUND', 'توانایی تشخیص محل تصویر <b>%s</b> نیست، احتمالا قبلا حذف شده است؟');
|
||||||
@define('ABORT_NOW', 'بازگشت');
|
@define('ABORT_NOW', 'بازگشت');
|
||||||
@@ -414,6 +418,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'عکس های کوچک با روش روبرو نامگذاری خواهند شد: نام اصلی.[پیشوند].توسعه');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'عکس های کوچک با روش روبرو نامگذاری خواهند شد: نام اصلی.[پیشوند].توسعه');
|
||||||
@define('INSTALL_THUMBWIDTH', 'اندازه تصاویر کوچک');
|
@define('INSTALL_THUMBWIDTH', 'اندازه تصاویر کوچک');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'بیشترین عرض عکس های کوچک');
|
@define('INSTALL_THUMBWIDTH_DESC', 'بیشترین عرض عکس های کوچک');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* PERSONAL DETAILS */
|
/* PERSONAL DETAILS */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'اطلاعات شخصی');
|
@define('USERCONF_CAT_PERSONAL', 'اطلاعات شخصی');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Pieleen meni, tiedostoa ei tuotu. Kenties tiedoston koko oli liian suuri. Kysy palveluntarjoajaltasi apua tai muokkaa php.ini tiedostoasi salliaksesi isompien tiedostojen tuonnin..');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Pieleen meni, tiedostoa ei tuotu. Kenties tiedoston koko oli liian suuri. Kysy palveluntarjoajaltasi apua tai muokkaa php.ini tiedostoasi salliaksesi isompien tiedostojen tuonnin..');
|
||||||
@define('GO', 'Tee!');
|
@define('GO', 'Tee!');
|
||||||
@define('NEWSIZE', 'Uusi koko: ');
|
@define('NEWSIZE', 'Uusi koko: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Muokkaa kokoa %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Muokkaa kokoa %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Alkuperäinen koko: <i>%sx%s</i> pikseliä');
|
@define('ORIGINAL_SIZE', 'Alkuperäinen koko: <i>%sx%s</i> pikseliä');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Kuvan koon muokkaus. Voit muokata kuvan kokoa säilyttäen suhteet, lisää toiseen laatikkoon arvo ja paina tab-näppäintä, niin lasken sinulle suhteen mukaisen toisen arvon automaattisesti.</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Kuvan koon muokkaus. Voit muokata kuvan kokoa säilyttäen suhteet, lisää toiseen laatikkoon arvo ja paina tab-näppäintä, niin lasken sinulle suhteen mukaisen toisen arvon automaattisesti.</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Pikasiirtymä kalenteriin');
|
@define('QUICKJUMP_CALENDAR', 'Pikasiirtymä kalenteriin');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'Muokataan');
|
@define('RESIZING', 'Muokataan');
|
||||||
@define('RESIZE_DONE', 'Valmis (muokattu %s kuvaa).');
|
@define('RESIZE_DONE', 'Valmis (muokattu %s kuvaa).');
|
||||||
@define('SYNCING', 'Päivitetään tietokantaa vastaamaan kuvakansiota');
|
@define('SYNCING', 'Päivitetään tietokantaa vastaamaan kuvakansiota');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Valmis (Päivitetty %s kuvaa).');
|
@define('SYNC_DONE', 'Valmis (Päivitetty %s kuvaa).');
|
||||||
@define('FILE_NOT_FOUND', 'Tiedostoa <b>%s</b> ei löydy, ehkäpä se on jo poistettu?');
|
@define('FILE_NOT_FOUND', 'Tiedostoa <b>%s</b> ei löydy, ehkäpä se on jo poistettu?');
|
||||||
@define('ABORT_NOW', 'Peruuta');
|
@define('ABORT_NOW', 'Peruuta');
|
||||||
@@ -412,6 +416,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Pienoiskuvakkeet nimetään seuraavasti: originaali.[suffiksi].pääte');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Pienoiskuvakkeet nimetään seuraavasti: originaali.[suffiksi].pääte');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Pienoiskuvakkeen mitat');
|
@define('INSTALL_THUMBWIDTH', 'Pienoiskuvakkeen mitat');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Pienoiskuvakkeen maksimileveys');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Pienoiskuvakkeen maksimileveys');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Henkilötietosi');
|
@define('USERCONF_CAT_PERSONAL', 'Henkilötietosi');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Erreur : le fichier existe déjà sur votre machine.');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Erreur : le fichier existe déjà sur votre machine.');
|
||||||
@define('GO', 'Go!');
|
@define('GO', 'Go!');
|
||||||
@define('NEWSIZE', 'Nouvelle taille : ');
|
@define('NEWSIZE', 'Nouvelle taille : ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Redimensionner %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Redimensionner %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Taille d\'origine : <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Taille d\'origine : <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Ici vous pouvez ajuster la taille de l\'image sélectionnée. Si vous voulez respecter les proportions de l\'image, entrez juste la hauteur ou la largeur, et pressez la touche TAB - la valeur correspondante sera insérée automatiquement :');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Ici vous pouvez ajuster la taille de l\'image sélectionnée. Si vous voulez respecter les proportions de l\'image, entrez juste la hauteur ou la largeur, et pressez la touche TAB - la valeur correspondante sera insérée automatiquement :');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Saut rapide vers le Calendrier');
|
@define('QUICKJUMP_CALENDAR', 'Saut rapide vers le Calendrier');
|
||||||
@@ -190,6 +190,10 @@
|
|||||||
@define('RESIZING', 'Redimensionnement');
|
@define('RESIZING', 'Redimensionnement');
|
||||||
@define('RESIZE_DONE', 'Terminé (%s images redimensionnées).');
|
@define('RESIZE_DONE', 'Terminé (%s images redimensionnées).');
|
||||||
@define('SYNCING', 'Synchronisation de la base de données avec votre collection d\'images');
|
@define('SYNCING', 'Synchronisation de la base de données avec votre collection d\'images');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Terminé (%s images synchronisées).');
|
@define('SYNC_DONE', 'Terminé (%s images synchronisées).');
|
||||||
@define('DELETE_IMAGE_FAIL' , 'Impossible de supprimer l\'image intitulée <b>%s</b>');
|
@define('DELETE_IMAGE_FAIL' , 'Impossible de supprimer l\'image intitulée <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Suppression de la miniature de l\'image intitulée <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Suppression de la miniature de l\'image intitulée <b>%s</b>');
|
||||||
@@ -398,6 +402,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Les miniatures d\'images seront enregistrées de la manière suivante : original.[suffixe].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Les miniatures d\'images seront enregistrées de la manière suivante : original.[suffixe].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Dimensions des miniatures');
|
@define('INSTALL_THUMBWIDTH', 'Dimensions des miniatures');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Largeur maximum (statique) des miniatures crées automatiquement');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Largeur maximum (statique) des miniatures crées automatiquement');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Détails personnels');
|
@define('USERCONF_CAT_PERSONAL', 'Détails personnels');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Ismeretlen hiba történt, a fájl nincs feltöltve. Talán a fájl mérete nagyobb mint a szerveren beállított megengedett maximum érték. Ezt a beállítást a szerver üzemeltetője tudja megváltoztatni.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Ismeretlen hiba történt, a fájl nincs feltöltve. Talán a fájl mérete nagyobb mint a szerveren beállított megengedett maximum érték. Ezt a beállítást a szerver üzemeltetője tudja megváltoztatni.');
|
||||||
@define('GO', 'OK');
|
@define('GO', 'OK');
|
||||||
@define('NEWSIZE', 'Új méret: ');
|
@define('NEWSIZE', 'Új méret: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Átméretezés %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Átméretezés %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Eredeti méret: <i>%sx%s</i> képpont');
|
@define('ORIGINAL_SIZE', 'Eredeti méret: <i>%sx%s</i> képpont');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Itt módosíthatja a kép méretét. Ha arányosan szeretné a képet átméretezni, elég az egyik dobozban módosítani a számot,majd megnyomni a TAB billentyűt -- az új méret automatikusan kerül meghatározásra, így a kép nem lesz aránytalan</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Itt módosíthatja a kép méretét. Ha arányosan szeretné a képet átméretezni, elég az egyik dobozban módosítani a számot,majd megnyomni a TAB billentyűt -- az új méret automatikusan kerül meghatározásra, így a kép nem lesz aránytalan</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Gyors naptárra ugrás');
|
@define('QUICKJUMP_CALENDAR', 'Gyors naptárra ugrás');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'Átméretezés');
|
@define('RESIZING', 'Átméretezés');
|
||||||
@define('RESIZE_DONE', 'Kész (%s kép átméretezve).');
|
@define('RESIZE_DONE', 'Kész (%s kép átméretezve).');
|
||||||
@define('SYNCING', 'Szinkronizálom az adatbázist a képek könyvtárával.');
|
@define('SYNCING', 'Szinkronizálom az adatbázist a képek könyvtárával.');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Kész (%s képet szinkronizáltam).');
|
@define('SYNC_DONE', 'Kész (%s képet szinkronizáltam).');
|
||||||
@define('FILE_NOT_FOUND', 'Nem találom a <b>%s</b> fájlt, lehet, hogy már törölve lett?');
|
@define('FILE_NOT_FOUND', 'Nem találom a <b>%s</b> fájlt, lehet, hogy már törölve lett?');
|
||||||
@define('ABORT_NOW', 'Azonnali megszakítás');
|
@define('ABORT_NOW', 'Azonnali megszakítás');
|
||||||
@@ -413,6 +417,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'A képekből generált előnézeti képek ilyen nevűek lesznek: eredetinév.[előtag].kiterj');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'A képekből generált előnézeti képek ilyen nevűek lesznek: eredetinév.[előtag].kiterj');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Előnézeti kép méretek');
|
@define('INSTALL_THUMBWIDTH', 'Előnézeti kép méretek');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Az automatikusan generált előnézeti képek szélességének maximuma');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Az automatikusan generált előnézeti képek szélességének maximuma');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Személyes adatok');
|
@define('USERCONF_CAT_PERSONAL', 'Személyes adatok');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Óþekkt villa hefur komið upp, skrá ekki vistuð. Kannski var stærð skráarinnar meiri heldur en hámarksstærðin sem netjónninn skilgreinir. Hafðu samband við þjónustuaðilann þinn eða breytti php.ini skránni til að leyfa stærri skráarflutninga.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Óþekkt villa hefur komið upp, skrá ekki vistuð. Kannski var stærð skráarinnar meiri heldur en hámarksstærðin sem netjónninn skilgreinir. Hafðu samband við þjónustuaðilann þinn eða breytti php.ini skránni til að leyfa stærri skráarflutninga.');
|
||||||
@define('GO', 'Go!');
|
@define('GO', 'Go!');
|
||||||
@define('NEWSIZE', 'Ný stærð: ');
|
@define('NEWSIZE', 'Ný stærð: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Breyta stærð %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Breyta stærð %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Upprunaleg stærð: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Upprunaleg stærð: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Hér getur þú breytt stærð myndarinnar. Ef þú vilt breyta stærð hennar í réttum hlutföllum, sláðu þá inn eitthvað gildi í annan tveggja reitanna og ýttu á TAB takkann. -- Stærð þeirra verður reiknuð sjálfvirkt svo hlutföllin haldist rétt.</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Hér getur þú breytt stærð myndarinnar. Ef þú vilt breyta stærð hennar í réttum hlutföllum, sláðu þá inn eitthvað gildi í annan tveggja reitanna og ýttu á TAB takkann. -- Stærð þeirra verður reiknuð sjálfvirkt svo hlutföllin haldist rétt.</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'QuickJump dagatal');
|
@define('QUICKJUMP_CALENDAR', 'QuickJump dagatal');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'Breyti stærð');
|
@define('RESIZING', 'Breyti stærð');
|
||||||
@define('RESIZE_DONE', 'Búin (breytti stærð %s mynda).');
|
@define('RESIZE_DONE', 'Búin (breytti stærð %s mynda).');
|
||||||
@define('SYNCING', 'Samhæfi gagnagrunn við myndamöppu');
|
@define('SYNCING', 'Samhæfi gagnagrunn við myndamöppu');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Búin (Samhæfði %s myndir).');
|
@define('SYNC_DONE', 'Búin (Samhæfði %s myndir).');
|
||||||
@define('FILE_NOT_FOUND', 'Fann ekki skrána <b>%s</b>, kannski er þegar búið að eyða henni?');
|
@define('FILE_NOT_FOUND', 'Fann ekki skrána <b>%s</b>, kannski er þegar búið að eyða henni?');
|
||||||
@define('ABORT_NOW', 'Hætta við núna');
|
@define('ABORT_NOW', 'Hætta við núna');
|
||||||
@@ -413,6 +417,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Sýnishorn verða nefnd eftir eftirfarandi forsniði: upprunalegt.[viðskeyti].end');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Sýnishorn verða nefnd eftir eftirfarandi forsniði: upprunalegt.[viðskeyti].end');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Stærð sýnishorna');
|
@define('INSTALL_THUMBWIDTH', 'Stærð sýnishorna');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Staðlað hágildi breiddar framkallaðra sýnishorna');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Staðlað hágildi breiddar framkallaðra sýnishorna');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Persónulegu upplýsingar þínar');
|
@define('USERCONF_CAT_PERSONAL', 'Persónulegu upplýsingar þínar');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Errore sconosciuto, file non inviato. Forse le dimensioni sono superiori al massimo consentito dall\'installazione del server. Chiedi al tuo provider o modifica php.ini per consentire upload più corposi.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Errore sconosciuto, file non inviato. Forse le dimensioni sono superiori al massimo consentito dall\'installazione del server. Chiedi al tuo provider o modifica php.ini per consentire upload più corposi.');
|
||||||
@define('GO', 'Vai!');
|
@define('GO', 'Vai!');
|
||||||
@define('NEWSIZE', 'Nuove dimensioni: ');
|
@define('NEWSIZE', 'Nuove dimensioni: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Ridimensiona %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Ridimensiona %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Dimensione originale: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Dimensione originale: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Qui puoi definire le nuove dimensioni dell\'immagine. Se vuoi mantenere le proporzioni inserisci un solo valore e premi TAB, calcolerò automaticamente le nuove dimensioni in modo da non modificare le proporzioni:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Qui puoi definire le nuove dimensioni dell\'immagine. Se vuoi mantenere le proporzioni inserisci un solo valore e premi TAB, calcolerò automaticamente le nuove dimensioni in modo da non modificare le proporzioni:');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Calendario di accesso veloce');
|
@define('QUICKJUMP_CALENDAR', 'Calendario di accesso veloce');
|
||||||
@@ -191,6 +191,10 @@
|
|||||||
@define('RESIZING', 'Ridimensionamento');
|
@define('RESIZING', 'Ridimensionamento');
|
||||||
@define('RESIZE_DONE', 'Fatto (ridimensionate %s immagini).');
|
@define('RESIZE_DONE', 'Fatto (ridimensionate %s immagini).');
|
||||||
@define('SYNCING', 'Sincronizzazione del database con la cartella delle immagini');
|
@define('SYNCING', 'Sincronizzazione del database con la cartella delle immagini');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Fatto (Sincronizzate %s immagini).');
|
@define('SYNC_DONE', 'Fatto (Sincronizzate %s immagini).');
|
||||||
@define('FILE_NOT_FOUND', 'Impossibile trovare il file <b>%s</b>, forse è già stato cancellato?');
|
@define('FILE_NOT_FOUND', 'Impossibile trovare il file <b>%s</b>, forse è già stato cancellato?');
|
||||||
@define('ABORT_NOW', 'Interrompi subito');
|
@define('ABORT_NOW', 'Interrompi subito');
|
||||||
@@ -402,6 +406,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Le miniature avranno un nome nel formato: originale.[suffisso].est');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Le miniature avranno un nome nel formato: originale.[suffisso].est');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Dimensioni delle miniature');
|
@define('INSTALL_THUMBWIDTH', 'Dimensioni delle miniature');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Larghezza massima stabilita per le miniature auto-generate');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Larghezza massima stabilita per le miniature auto-generate');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'I tuoi dettagli personali');
|
@define('USERCONF_CAT_PERSONAL', 'I tuoi dettagli personali');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', '未知のエラーが生じました。ファイルはアップロードしませんでした。おそらくファイルサイズがサーバーのインストールで許可された最大サイズを超えたと思われます。ISP に確認するか、php.ini ファイルで許可されたアップロード可能な最大ファイルサイズを編集してください。');
|
@define('ERROR_UNKNOWN_NOUPLOAD', '未知のエラーが生じました。ファイルはアップロードしませんでした。おそらくファイルサイズがサーバーのインストールで許可された最大サイズを超えたと思われます。ISP に確認するか、php.ini ファイルで許可されたアップロード可能な最大ファイルサイズを編集してください。');
|
||||||
@define('GO', 'Go!');
|
@define('GO', 'Go!');
|
||||||
@define('NEWSIZE', '新規サイズ: ');
|
@define('NEWSIZE', '新規サイズ: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>リサイズ %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>リサイズ %s</b>');
|
||||||
@define('ORIGINAL_SIZE', '元サイズ: <i>%sx%s</i> ピクセル');
|
@define('ORIGINAL_SIZE', '元サイズ: <i>%sx%s</i> ピクセル');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>ここで、画像サイズを調節することができます。画像の比率を変えずにサイズ変更をしたい場合は、2 つの入力ボックスのうちの 1 つにだけ値入力して、TAB キーを押してください - 自動的に新しいサイズを計算します。したがって、イメージは台無しになりません。</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>ここで、画像サイズを調節することができます。画像の比率を変えずにサイズ変更をしたい場合は、2 つの入力ボックスのうちの 1 つにだけ値入力して、TAB キーを押してください - 自動的に新しいサイズを計算します。したがって、イメージは台無しになりません。</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'カレンダークイックジャンプ');
|
@define('QUICKJUMP_CALENDAR', 'カレンダークイックジャンプ');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'サイズ変更中');
|
@define('RESIZING', 'サイズ変更中');
|
||||||
@define('RESIZE_DONE', '終了しました (%s このイメージをサイズ変更しました)');
|
@define('RESIZE_DONE', '終了しました (%s このイメージをサイズ変更しました)');
|
||||||
@define('SYNCING', 'データベースと画像フォルダーの同期中');
|
@define('SYNCING', 'データベースと画像フォルダーの同期中');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', '終了しました (%s 個の画像を同期しました)');
|
@define('SYNC_DONE', '終了しました (%s 個の画像を同期しました)');
|
||||||
@define('FILE_NOT_FOUND', '<b>%s</b> と言う名前のファイルは既に削除されたため、恐らく見つけることができません。');
|
@define('FILE_NOT_FOUND', '<b>%s</b> と言う名前のファイルは既に削除されたため、恐らく見つけることができません。');
|
||||||
@define('ABORT_NOW', '今中断する');
|
@define('ABORT_NOW', '今中断する');
|
||||||
@@ -413,6 +417,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'サムネイルは次の書式で指定されるでしょう: オリジナル.[接尾辞].拡張子');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'サムネイルは次の書式で指定されるでしょう: オリジナル.[接尾辞].拡張子');
|
||||||
@define('INSTALL_THUMBWIDTH', 'サムネイルの大きさ');
|
@define('INSTALL_THUMBWIDTH', 'サムネイルの大きさ');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', '自動生成するサムネイルの不変の最大幅');
|
@define('INSTALL_THUMBWIDTH_DESC', '自動生成するサムネイルの不変の最大幅');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', '個人情報の詳細');
|
@define('USERCONF_CAT_PERSONAL', '個人情報の詳細');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', '알 수 없는 오류가 발생하여 파일이 업로드되지 않았습니다. 서버가 허용하는 파일 크기를 초과했을 수 있습니다. 호스팅 업체에 확인을 하거나 php.ini 파일을 수정하여 더 큰 파일을 업로드할 수 있도록 하십시오.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', '알 수 없는 오류가 발생하여 파일이 업로드되지 않았습니다. 서버가 허용하는 파일 크기를 초과했을 수 있습니다. 호스팅 업체에 확인을 하거나 php.ini 파일을 수정하여 더 큰 파일을 업로드할 수 있도록 하십시오.');
|
||||||
@define('GO', '시작!');
|
@define('GO', '시작!');
|
||||||
@define('NEWSIZE', '새로운 크기: ');
|
@define('NEWSIZE', '새로운 크기: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>크기 조절: %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>크기 조절: %s</b>');
|
||||||
@define('ORIGINAL_SIZE', '원래 크기: <i>%sx%s</i> 픽셀');
|
@define('ORIGINAL_SIZE', '원래 크기: <i>%sx%s</i> 픽셀');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>여기서 그림 크기를 조절할 수 있습니다. 비율을 유지하면서 크기를 조절하려면 입력상자 한 쪽에 값을 넣고 Tab 키를 누르면 됩니다. 비율이 유지되는 값이 자동으로 계산됩니다.</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>여기서 그림 크기를 조절할 수 있습니다. 비율을 유지하면서 크기를 조절하려면 입력상자 한 쪽에 값을 넣고 Tab 키를 누르면 됩니다. 비율이 유지되는 값이 자동으로 계산됩니다.</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', '빨리 찾아보는 달력');
|
@define('QUICKJUMP_CALENDAR', '빨리 찾아보는 달력');
|
||||||
@@ -204,6 +204,10 @@
|
|||||||
@define('RESIZING', '크기 조절중');
|
@define('RESIZING', '크기 조절중');
|
||||||
@define('RESIZE_DONE', '완료 (%s개의 그림의 크기를 조절함).');
|
@define('RESIZE_DONE', '완료 (%s개의 그림의 크기를 조절함).');
|
||||||
@define('SYNCING', '데이터베이스를 그림 폴더와 동기화합니다');
|
@define('SYNCING', '데이터베이스를 그림 폴더와 동기화합니다');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', '완료 (%s개의 그림을 동기화함).');
|
@define('SYNC_DONE', '완료 (%s개의 그림을 동기화함).');
|
||||||
@define('FILE_NOT_FOUND', '<b>%s</b>라는 이름의 파일을 찾지 못했습니다. 이미 삭제되었을 수 있습니다.');
|
@define('FILE_NOT_FOUND', '<b>%s</b>라는 이름의 파일을 찾지 못했습니다. 이미 삭제되었을 수 있습니다.');
|
||||||
@define('ABORT_NOW', '지금 중지');
|
@define('ABORT_NOW', '지금 중지');
|
||||||
@@ -415,6 +419,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', '작은 그림은 원래이름.[접두사].확장자 식의 이름으로 생성됩니다');
|
@define('INSTALL_THUMBSUFFIX_DESC', '작은 그림은 원래이름.[접두사].확장자 식의 이름으로 생성됩니다');
|
||||||
@define('INSTALL_THUMBWIDTH', '작은 그림 크기');
|
@define('INSTALL_THUMBWIDTH', '작은 그림 크기');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', '자동 생성되는 작은 그림의 최대 크기');
|
@define('INSTALL_THUMBWIDTH_DESC', '자동 생성되는 작은 그림의 최대 크기');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', '사용자의 개인 정보');
|
@define('USERCONF_CAT_PERSONAL', '사용자의 개인 정보');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Er is een onbekende fout opgetreden, het bestand is niet verzonden. Misschien is het bestand groter dan uw server toestaat. Controleer dit bij uw provider of bewerk uw php.ini zodat deze grotere bestanden toelaat.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Er is een onbekende fout opgetreden, het bestand is niet verzonden. Misschien is het bestand groter dan uw server toestaat. Controleer dit bij uw provider of bewerk uw php.ini zodat deze grotere bestanden toelaat.');
|
||||||
@define('GO', 'Uitvoeren!');
|
@define('GO', 'Uitvoeren!');
|
||||||
@define('NEWSIZE', 'Nieuwe grootte: ');
|
@define('NEWSIZE', 'Nieuwe grootte: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Vergroten/Verkleinen %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Vergroten/Verkleinen %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Originele grootte: <i>%sx%s</i> pixels');
|
@define('ORIGINAL_SIZE', 'Originele grootte: <i>%sx%s</i> pixels');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Hier kunt u de grootte van de afbeelding aanpassen. Als u de afbeeldingsverhoudingen wilt behouden, voer dan in één van de velden een waarde in en druk op de TAB-toets -- Het programma zal dan zelf de andere grootte berekenen zodat de verhoudingen hetzelfde blijven</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Hier kunt u de grootte van de afbeelding aanpassen. Als u de afbeeldingsverhoudingen wilt behouden, voer dan in één van de velden een waarde in en druk op de TAB-toets -- Het programma zal dan zelf de andere grootte berekenen zodat de verhoudingen hetzelfde blijven</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Quickjump Kalender');
|
@define('QUICKJUMP_CALENDAR', 'Quickjump Kalender');
|
||||||
@@ -204,6 +204,10 @@
|
|||||||
@define('RESIZING', 'Grootte aanpassen');
|
@define('RESIZING', 'Grootte aanpassen');
|
||||||
@define('RESIZE_DONE', 'Gereed (%s afbeeldingen aangepast).');
|
@define('RESIZE_DONE', 'Gereed (%s afbeeldingen aangepast).');
|
||||||
@define('SYNCING', 'Bezig met het synchroniseren van de databank met de map waar de afbeeldingen in staan');
|
@define('SYNCING', 'Bezig met het synchroniseren van de databank met de map waar de afbeeldingen in staan');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Gereed (%s afbeeldingen gesynchroniseerd).');
|
@define('SYNC_DONE', 'Gereed (%s afbeeldingen gesynchroniseerd).');
|
||||||
@define('FILE_NOT_FOUND', 'Kan bestand <b>%s</b> niet vinden, mogelijk is deze reeds verwijderd.');
|
@define('FILE_NOT_FOUND', 'Kan bestand <b>%s</b> niet vinden, mogelijk is deze reeds verwijderd.');
|
||||||
@define('ABORT_NOW', 'Annuleren');
|
@define('ABORT_NOW', 'Annuleren');
|
||||||
@@ -415,6 +419,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniaturen krijgen een naam volgens het formaat: origineel.[achtervoegsel].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniaturen krijgen een naam volgens het formaat: origineel.[achtervoegsel].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Formaat miniaturen');
|
@define('INSTALL_THUMBWIDTH', 'Formaat miniaturen');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Maximale breedte van automatisch aangemaakte miniaturen');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Maximale breedte van automatisch aangemaakte miniaturen');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Uw persoonlijke gegevens');
|
@define('USERCONF_CAT_PERSONAL', 'Uw persoonlijke gegevens');
|
||||||
|
|||||||
@@ -83,7 +83,7 @@
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Feil: Filen finnes allerede på din maskin!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Feil: Filen finnes allerede på din maskin!');
|
||||||
@define('GO', 'Begynn!');
|
@define('GO', 'Begynn!');
|
||||||
@define('NEWSIZE', 'Ny størrelse: ');
|
@define('NEWSIZE', 'Ny størrelse: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Endre størrelse på %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Endre størrelse på %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Original størrelse: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Original størrelse: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Her kan du justere bildets størrelse. Hvis du vil bevare proporsjonene, behøver du bare taste en av verdiene og trykke på TAB-tasten. Jeg vil automatisk beregne den andre verdien:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Her kan du justere bildets størrelse. Hvis du vil bevare proporsjonene, behøver du bare taste en av verdiene og trykke på TAB-tasten. Jeg vil automatisk beregne den andre verdien:');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Hurtigkalender');
|
@define('QUICKJUMP_CALENDAR', 'Hurtigkalender');
|
||||||
@@ -184,6 +184,10 @@
|
|||||||
@define('RESIZING', 'Endre dimensjoner');
|
@define('RESIZING', 'Endre dimensjoner');
|
||||||
@define('RESIZE_DONE', 'Ferdig (Endret %s bilder).');
|
@define('RESIZE_DONE', 'Ferdig (Endret %s bilder).');
|
||||||
@define('SYNCING', 'Synkronisere databasen med bildemappen');
|
@define('SYNCING', 'Synkronisere databasen med bildemappen');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Ferdig (Synkroniserte %s bilder).');
|
@define('SYNC_DONE', 'Ferdig (Synkroniserte %s bilder).');
|
||||||
@define('DELETE_IMAGE_FAIL' , 'Kunne ikke slette bildet <b>%s</b>');
|
@define('DELETE_IMAGE_FAIL' , 'Kunne ikke slette bildet <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Slettet bildet med navn <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Slettet bildet med navn <b>%s</b>');
|
||||||
@@ -374,6 +378,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails vil bli gitt navn etter følgende mønster: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails vil bli gitt navn etter følgende mønster: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Thumbnail-dimensjoner');
|
@define('INSTALL_THUMBWIDTH', 'Thumbnail-dimensjoner');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Statisk maksimalbredde på en auto-genereret thumbnail');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Statisk maksimalbredde på en auto-genereret thumbnail');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Dine personlige detaljer');
|
@define('USERCONF_CAT_PERSONAL', 'Dine personlige detaljer');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Wystąpił nieznany błąd, plik nie został załadowany. Być może konfiguracja serwera nie zezwala na przesyłanie tak dużych plików. Sprawdź to u swojego ISP lub wyedytuj odpowiednio plik php.ini (jeśli masz dostęp do konfiguracji serwera) by zezwolić na przesyłanie większych plików.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Wystąpił nieznany błąd, plik nie został załadowany. Być może konfiguracja serwera nie zezwala na przesyłanie tak dużych plików. Sprawdź to u swojego ISP lub wyedytuj odpowiednio plik php.ini (jeśli masz dostęp do konfiguracji serwera) by zezwolić na przesyłanie większych plików.');
|
||||||
@define('GO', 'Start!');
|
@define('GO', 'Start!');
|
||||||
@define('NEWSIZE', 'Nowy rozmiar: ');
|
@define('NEWSIZE', 'Nowy rozmiar: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Zmień rozmiar: %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Zmień rozmiar: %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Oryginalny rozmiar: <i>%sx%s</i> pikseli');
|
@define('ORIGINAL_SIZE', 'Oryginalny rozmiar: <i>%sx%s</i> pikseli');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Tu możesz zmienić rozmiar obrazka. Jeśli chcesz zmienić rozmiar proporcjonalnie, zaznacz odpowiednią opcję, wpisz wartość w jedno z pól i wciśnij TAB - nowy rozmiar dla drugiej wartości zostanie automatycznie obliczony, tak by proporcje obrazka zostały zachowane.</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Tu możesz zmienić rozmiar obrazka. Jeśli chcesz zmienić rozmiar proporcjonalnie, zaznacz odpowiednią opcję, wpisz wartość w jedno z pól i wciśnij TAB - nowy rozmiar dla drugiej wartości zostanie automatycznie obliczony, tak by proporcje obrazka zostały zachowane.</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Kalendarz szybkiego dostępu');
|
@define('QUICKJUMP_CALENDAR', 'Kalendarz szybkiego dostępu');
|
||||||
@@ -204,6 +204,10 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
|||||||
@define('RESIZING', 'Zmieniam rozmiar');
|
@define('RESIZING', 'Zmieniam rozmiar');
|
||||||
@define('RESIZE_DONE', 'Zrobione (ilość obrazków, którym zmieniono rozmiar: %s).');
|
@define('RESIZE_DONE', 'Zrobione (ilość obrazków, którym zmieniono rozmiar: %s).');
|
||||||
@define('SYNCING', 'Synchronizacja bazy danych z katalogiem obrazków');
|
@define('SYNCING', 'Synchronizacja bazy danych z katalogiem obrazków');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Zrobione (%s obrazków zsynchronizowanych).');
|
@define('SYNC_DONE', 'Zrobione (%s obrazków zsynchronizowanych).');
|
||||||
@define('FILE_NOT_FOUND', 'Nie można odnalzeźć pliku <b>%s</b>. Być może został już usunięty?');
|
@define('FILE_NOT_FOUND', 'Nie można odnalzeźć pliku <b>%s</b>. Być może został już usunięty?');
|
||||||
@define('ABORT_NOW', 'Przerwij teraz');
|
@define('ABORT_NOW', 'Przerwij teraz');
|
||||||
@@ -415,6 +419,14 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniaturki będą nazywane według następującego formatu: nazwaoryginalna.[sufiks].rozszerzenie');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniaturki będą nazywane według następującego formatu: nazwaoryginalna.[sufiks].rozszerzenie');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Szerokość miniaturki');
|
@define('INSTALL_THUMBWIDTH', 'Szerokość miniaturki');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Ustal szerokość tworzonych automatycznie miniatur');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Ustal szerokość tworzonych automatycznie miniatur');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Twoje ustawienia osobiste');
|
@define('USERCONF_CAT_PERSONAL', 'Twoje ustawienia osobiste');
|
||||||
|
|||||||
@@ -84,7 +84,7 @@
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Erro: Arquivo já existe em sua máquina!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Erro: Arquivo já existe em sua máquina!');
|
||||||
@define('GO', 'Vai!');
|
@define('GO', 'Vai!');
|
||||||
@define('NEWSIZE', 'Novo tamanho: ');
|
@define('NEWSIZE', 'Novo tamanho: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Redimensionar %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Redimensionar %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Tamanho original: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Tamanho original: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aqui você pode ajustar o novo tamanho das imagens. Se pretende manter as proporções, preencha apenas um valor e pressione a tecla TAB que automaticamente será calculado o novo tamanho de modo que as proporções não fiquem bagunçadas:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aqui você pode ajustar o novo tamanho das imagens. Se pretende manter as proporções, preencha apenas um valor e pressione a tecla TAB que automaticamente será calculado o novo tamanho de modo que as proporções não fiquem bagunçadas:');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Calendário de acesso rápido');
|
@define('QUICKJUMP_CALENDAR', 'Calendário de acesso rápido');
|
||||||
@@ -184,6 +184,10 @@
|
|||||||
@define('RESIZING', 'Redimensionando');
|
@define('RESIZING', 'Redimensionando');
|
||||||
@define('RESIZE_DONE', 'Pronto (%s imagens redimensionadas).');
|
@define('RESIZE_DONE', 'Pronto (%s imagens redimensionadas).');
|
||||||
@define('SYNCING', 'Sincronizando o banco de dados com o diretório de imagens');
|
@define('SYNCING', 'Sincronizando o banco de dados com o diretório de imagens');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Pronto (%s imagens sincronizadas).');
|
@define('SYNC_DONE', 'Pronto (%s imagens sincronizadas).');
|
||||||
@define('DELETE_IMAGE_FAIL' , 'Não foi possível excluir a imagem <b>%s</b>');
|
@define('DELETE_IMAGE_FAIL' , 'Não foi possível excluir a imagem <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Excluir a miniatura da imagem intitulada <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Excluir a miniatura da imagem intitulada <b>%s</b>');
|
||||||
@@ -395,6 +399,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'As miniaturas serão nomeadas com o seguinte formato: original.[sufixo].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'As miniaturas serão nomeadas com o seguinte formato: original.[sufixo].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Dimensão das miniaturas ');
|
@define('INSTALL_THUMBWIDTH', 'Dimensão das miniaturas ');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Largura máxima estática das miniaturas geradas automaticamente');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Largura máxima estática das miniaturas geradas automaticamente');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Detalhes pessoais');
|
@define('USERCONF_CAT_PERSONAL', 'Detalhes pessoais');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Erro: O ficheiro já existe no seu servidor!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Erro: O ficheiro já existe no seu servidor!');
|
||||||
@define('GO', 'Vamos!');
|
@define('GO', 'Vamos!');
|
||||||
@define('NEWSIZE', 'Novo tamanho: ');
|
@define('NEWSIZE', 'Novo tamanho: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Redimensionar %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Redimensionar %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Tamanho original: <i>%sx%s</i> pixéis');
|
@define('ORIGINAL_SIZE', 'Tamanho original: <i>%sx%s</i> pixéis');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aqui pode ajustar o novo tamanho das suas imagens. Se pretender manter as proporções, preencha apenas um valor e pressione a tecla TAB de maneira a ser automaticamente calculado o novo tamanho de modo às proporções não ficarem erradas:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aqui pode ajustar o novo tamanho das suas imagens. Se pretender manter as proporções, preencha apenas um valor e pressione a tecla TAB de maneira a ser automaticamente calculado o novo tamanho de modo às proporções não ficarem erradas:');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Calendário de acesso rápido');
|
@define('QUICKJUMP_CALENDAR', 'Calendário de acesso rápido');
|
||||||
@@ -190,6 +190,10 @@
|
|||||||
@define('RESIZING', 'Redimensionando');
|
@define('RESIZING', 'Redimensionando');
|
||||||
@define('RESIZE_DONE', 'Pronto (%s imagens redimensionadas).');
|
@define('RESIZE_DONE', 'Pronto (%s imagens redimensionadas).');
|
||||||
@define('SYNCING', 'Sincronizando a base de dados com a directoria de imagens');
|
@define('SYNCING', 'Sincronizando a base de dados com a directoria de imagens');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Pronto (%s imagens sincronizadas).');
|
@define('SYNC_DONE', 'Pronto (%s imagens sincronizadas).');
|
||||||
@define('DELETE_IMAGE_FAIL' , 'Não foi possível excluir a imagem <b>%s</b>');
|
@define('DELETE_IMAGE_FAIL' , 'Não foi possível excluir a imagem <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Excluir a miniatura da imagem entitulada <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Excluir a miniatura da imagem entitulada <b>%s</b>');
|
||||||
@@ -402,6 +406,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'As miniaturas serão nomeadas com o seguinte formato: original.[sufixo].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'As miniaturas serão nomeadas com o seguinte formato: original.[sufixo].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Dimensão das miniaturas ');
|
@define('INSTALL_THUMBWIDTH', 'Dimensão das miniaturas ');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Largura máxima estática das miniaturas geradas automaticamente');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Largura máxima estática das miniaturas geradas automaticamente');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Detalhes pessoais');
|
@define('USERCONF_CAT_PERSONAL', 'Detalhes pessoais');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Am dat peste o eroare necunoscută, nu am încărcat fişierul. Poate că mărimea fişierului este mai mare decât maximul admis de server. Ia legătură cu ISP-ul tău sau editează fişierul php.ini pentru a permite imagini mai mari.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Am dat peste o eroare necunoscută, nu am încărcat fişierul. Poate că mărimea fişierului este mai mare decât maximul admis de server. Ia legătură cu ISP-ul tău sau editează fişierul php.ini pentru a permite imagini mai mari.');
|
||||||
@define('GO', 'Du-te!');
|
@define('GO', 'Du-te!');
|
||||||
@define('NEWSIZE', 'Noua mărime: ');
|
@define('NEWSIZE', 'Noua mărime: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Redimensionează %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Redimensionează %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Mărime originală: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Mărime originală: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aici poţi ajusta mărimea imaginii. Dacă vrei să redimensionezi imaginea proporţional, introdu o valoare doar în una din cele 2 câmpuri şi apasă tastat TAB -- Voi calcula automat cealaltă mărime astfel încât proporţiile imaginii să nu fie alterate</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aici poţi ajusta mărimea imaginii. Dacă vrei să redimensionezi imaginea proporţional, introdu o valoare doar în una din cele 2 câmpuri şi apasă tastat TAB -- Voi calcula automat cealaltă mărime astfel încât proporţiile imaginii să nu fie alterate</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Calendar Rapid');
|
@define('QUICKJUMP_CALENDAR', 'Calendar Rapid');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'Redimensionez');
|
@define('RESIZING', 'Redimensionez');
|
||||||
@define('RESIZE_DONE', 'Gata (am redimensionat %s imagini).');
|
@define('RESIZE_DONE', 'Gata (am redimensionat %s imagini).');
|
||||||
@define('SYNCING', 'Sincronizez baza de date cu directorul cu imagini');
|
@define('SYNCING', 'Sincronizez baza de date cu directorul cu imagini');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Gata (am sincronizat %s imagini).');
|
@define('SYNC_DONE', 'Gata (am sincronizat %s imagini).');
|
||||||
@define('FILE_NOT_FOUND', 'Nu pot localiza fişierul denumit <b>%s</b>, poate că a fost şters deja ?');
|
@define('FILE_NOT_FOUND', 'Nu pot localiza fişierul denumit <b>%s</b>, poate că a fost şters deja ?');
|
||||||
@define('ABORT_NOW', 'Abandonează acum');
|
@define('ABORT_NOW', 'Abandonează acum');
|
||||||
@@ -413,6 +417,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniaturile vor fi numite după formatul: numeoriginal.[suffix].extensie');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniaturile vor fi numite după formatul: numeoriginal.[suffix].extensie');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Dimensiuni miniaturi');
|
@define('INSTALL_THUMBWIDTH', 'Dimensiuni miniaturi');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Valori statice maxime pentru miniaturile auto-generate');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Valori statice maxime pentru miniaturile auto-generate');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Detalii personale');
|
@define('USERCONF_CAT_PERSONAL', 'Detalii personale');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Произошла неизвестная ошибка, файл не был загружен. Возможно, размер вашего файл превысил допустивый максимальный размер, разрешённый на вашем сервере. Сверьтесь с вашим провайдером, или отредактируйте ваш файл php.ini чтобы позволить загрузку на сервер файлов большего размера.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Произошла неизвестная ошибка, файл не был загружен. Возможно, размер вашего файл превысил допустивый максимальный размер, разрешённый на вашем сервере. Сверьтесь с вашим провайдером, или отредактируйте ваш файл php.ini чтобы позволить загрузку на сервер файлов большего размера.');
|
||||||
@define('GO', 'Давай!');
|
@define('GO', 'Давай!');
|
||||||
@define('NEWSIZE', 'Новый размер: ');
|
@define('NEWSIZE', 'Новый размер: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Изменить размеры %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Изменить размеры %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Оригинальный размер: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Оригинальный размер: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Здесь вы можете изменить размер изображения. Если вы хотите изменить размеры пропорционально, просто введите значение в одном из двух полей, и нажмите клавишу TAB - второе поле будет заполнено автоматически с учётом пропорций изображения.</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Здесь вы можете изменить размер изображения. Если вы хотите изменить размеры пропорционально, просто введите значение в одном из двух полей, и нажмите клавишу TAB - второе поле будет заполнено автоматически с учётом пропорций изображения.</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Календарь');
|
@define('QUICKJUMP_CALENDAR', 'Календарь');
|
||||||
@@ -205,6 +205,10 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('RESIZING', 'Изменение размеров');
|
@define('RESIZING', 'Изменение размеров');
|
||||||
@define('RESIZE_DONE', 'Готово! (Изменено изображений: %s).');
|
@define('RESIZE_DONE', 'Готово! (Изменено изображений: %s).');
|
||||||
@define('SYNCING', 'Синхронизация базы данных с каталогом изображений');
|
@define('SYNCING', 'Синхронизация базы данных с каталогом изображений');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Готово! (Синхронизировано изображений: %s).');
|
@define('SYNC_DONE', 'Готово! (Синхронизировано изображений: %s).');
|
||||||
@define('FILE_NOT_FOUND', 'Невозможно найти файл <b>%s</b>, может быть он уже был удалён?');
|
@define('FILE_NOT_FOUND', 'Невозможно найти файл <b>%s</b>, может быть он уже был удалён?');
|
||||||
@define('ABORT_NOW', 'Отмена');
|
@define('ABORT_NOW', 'Отмена');
|
||||||
@@ -416,6 +420,14 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Тамбнэйлы будут создаваться в соответствии с форматом: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Тамбнэйлы будут создаваться в соответствии с форматом: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Размеры тамбнэйлов');
|
@define('INSTALL_THUMBWIDTH', 'Размеры тамбнэйлов');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Максимальная ширина автоматически создаваемых тамбнэйлов');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Максимальная ширина автоматически создаваемых тамбнэйлов');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Личные настройки');
|
@define('USERCONF_CAT_PERSONAL', 'Личные настройки');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'حصل خطأ غير معروف! ! ! لم يتمل رفع الملف – من الممكن أن يكون الملف أكبر من حجم الملف لمصرح برفعه ! ! ! أفحص ISP أو قم بتحرير ملف php.ini كي تسمح برفع الملفات الكبيرة');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'حصل خطأ غير معروف! ! ! لم يتمل رفع الملف – من الممكن أن يكون الملف أكبر من حجم الملف لمصرح برفعه ! ! ! أفحص ISP أو قم بتحرير ملف php.ini كي تسمح برفع الملفات الكبيرة');
|
||||||
@define('GO', 'أكمل!');
|
@define('GO', 'أكمل!');
|
||||||
@define('NEWSIZE', 'المقاس الجديد: ');
|
@define('NEWSIZE', 'المقاس الجديد: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>تغيير المقاييس %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>تغيير المقاييس %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'الحجم الاصلي <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'الحجم الاصلي <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>يمكن لك تغيير قياسات الصورة - ان كنت تريد تغيير قياسات الصورة بأطوال متناسبة - كل ما عليك هو ادخل القياس الجديد في احد الصندوقين ثم أضغط زر Tab -- سوف تعطيك اتماتيكياً الحجم المناسب للقياس الجديد - لذلك الصورة سوف تستمر بشكلها الأصلي و لا تفقد شكل توازنها</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>يمكن لك تغيير قياسات الصورة - ان كنت تريد تغيير قياسات الصورة بأطوال متناسبة - كل ما عليك هو ادخل القياس الجديد في احد الصندوقين ثم أضغط زر Tab -- سوف تعطيك اتماتيكياً الحجم المناسب للقياس الجديد - لذلك الصورة سوف تستمر بشكلها الأصلي و لا تفقد شكل توازنها</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'QuickJump Calendar');
|
@define('QUICKJUMP_CALENDAR', 'QuickJump Calendar');
|
||||||
@@ -203,6 +203,10 @@
|
|||||||
@define('RESIZING', 'تغير الحجم');
|
@define('RESIZING', 'تغير الحجم');
|
||||||
@define('RESIZE_DONE', 'تم (تغيير قياسات %s صورة).');
|
@define('RESIZE_DONE', 'تم (تغيير قياسات %s صورة).');
|
||||||
@define('SYNCING', 'ضبط قاعدة البيانات مع مجلد الصور');
|
@define('SYNCING', 'ضبط قاعدة البيانات مع مجلد الصور');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Done (ضبط %s الصور).');
|
@define('SYNC_DONE', 'Done (ضبط %s الصور).');
|
||||||
@define('FILE_NOT_FOUND', 'لم يتم إيجاد الملف <b>%s</b>, من الممكن أن يكون قد حذف؟');
|
@define('FILE_NOT_FOUND', 'لم يتم إيجاد الملف <b>%s</b>, من الممكن أن يكون قد حذف؟');
|
||||||
@define('ABORT_NOW', 'توقف الآن');
|
@define('ABORT_NOW', 'توقف الآن');
|
||||||
@@ -414,6 +418,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'سوف يعطى للصور المصغرة االأسم والصيغة التالية: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'سوف يعطى للصور المصغرة االأسم والصيغة التالية: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'قياسات الصورة المصغرة');
|
@define('INSTALL_THUMBWIDTH', 'قياسات الصورة المصغرة');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'العرض الثابت لصور المصغرة المنشئة أتماتيكياً');
|
@define('INSTALL_THUMBWIDTH_DESC', 'العرض الثابت لصور المصغرة المنشئة أتماتيكياً');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'تفصيل اعدادتك الشخصية');
|
@define('USERCONF_CAT_PERSONAL', 'تفصيل اعدادتك الشخصية');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Ett okänt fel inträffade och filen laddades inte upp. Filstorleken är kanske större än vad som tillåts av din serverinstallation. Kolla med din tjänsteleverantör eller ändra i filen php.ini för att tillåta uppladdning av större filer.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Ett okänt fel inträffade och filen laddades inte upp. Filstorleken är kanske större än vad som tillåts av din serverinstallation. Kolla med din tjänsteleverantör eller ändra i filen php.ini för att tillåta uppladdning av större filer.');
|
||||||
@define('GO', 'Kör!');
|
@define('GO', 'Kör!');
|
||||||
@define('NEWSIZE', 'Ny storlek: ');
|
@define('NEWSIZE', 'Ny storlek: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Ändra storlek på %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Ändra storlek på %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Ursprunglig storlek: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Ursprunglig storlek: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Här kan du anpassa bildstorleken. Om du vill ändra storlek proportionellt, ändra bara ett värde i något av de två fälten och tryck på TAB - Då ändras automatiskt storleken automatiskt så att bildens proportioner bibehålls</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Här kan du anpassa bildstorleken. Om du vill ändra storlek proportionellt, ändra bara ett värde i något av de två fälten och tryck på TAB - Då ändras automatiskt storleken automatiskt så att bildens proportioner bibehålls</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Snabbkalender');
|
@define('QUICKJUMP_CALENDAR', 'Snabbkalender');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'Ändrar storlek');
|
@define('RESIZING', 'Ändrar storlek');
|
||||||
@define('RESIZE_DONE', 'Klar (böt storlek på %s bilder).');
|
@define('RESIZE_DONE', 'Klar (böt storlek på %s bilder).');
|
||||||
@define('SYNCING', 'Synkroniserar databasen med bildkatalogen');
|
@define('SYNCING', 'Synkroniserar databasen med bildkatalogen');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Klar (synkroniserade %s bilder).');
|
@define('SYNC_DONE', 'Klar (synkroniserade %s bilder).');
|
||||||
@define('FILE_NOT_FOUND', 'Kunde inte hitta filen <b>%s</b>, kanske är den redan borttagen?');
|
@define('FILE_NOT_FOUND', 'Kunde inte hitta filen <b>%s</b>, kanske är den redan borttagen?');
|
||||||
@define('ABORT_NOW', 'Avbryt nu');
|
@define('ABORT_NOW', 'Avbryt nu');
|
||||||
@@ -413,6 +417,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniatyrer kommer att döpas enligt följande format: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniatyrer kommer att döpas enligt följande format: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Miniatyrbildsdimensioner');
|
@define('INSTALL_THUMBWIDTH', 'Miniatyrbildsdimensioner');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Statisk max-bredd för auto-genererade miniatyrbilder');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Statisk max-bredd för auto-genererade miniatyrbilder');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Din personliga information');
|
@define('USERCONF_CAT_PERSONAL', 'Din personliga information');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Unknown error occurred, file not uploaded. Maybe your filesize is larger than the maximum size allowed by your server installation. Check with your ISP or edit your php.ini file to allow larger file size uploads.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Unknown error occurred, file not uploaded. Maybe your filesize is larger than the maximum size allowed by your server installation. Check with your ISP or edit your php.ini file to allow larger file size uploads.');
|
||||||
@define('GO','செயல்படுத்துக!');
|
@define('GO','செயல்படுத்துக!');
|
||||||
@define('NEWSIZE', 'New size: ');
|
@define('NEWSIZE', 'New size: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Resize %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Resize %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Original size: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Original size: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Here, you can adjust the image size. If you want to resize the image proportionally, just enter a value in one of the two boxes and press the TAB key -- I will automatically calculate the new size so the image proportions do not get messed up</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Here, you can adjust the image size. If you want to resize the image proportionally, just enter a value in one of the two boxes and press the TAB key -- I will automatically calculate the new size so the image proportions do not get messed up</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'QuickJump Calendar');
|
@define('QUICKJUMP_CALENDAR', 'QuickJump Calendar');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'வலைபொருள்கள் சிறிதாக்கப்படுகின்றன');
|
@define('RESIZING', 'வலைபொருள்கள் சிறிதாக்கப்படுகின்றன');
|
||||||
@define('RESIZE_DONE', '%s வலைபொருள்கள் சிறிதாக்கப்பட்டுவிட்டன.');
|
@define('RESIZE_DONE', '%s வலைபொருள்கள் சிறிதாக்கப்பட்டுவிட்டன.');
|
||||||
@define('SYNCING', 'வலைபொருள் இருப்பிடங்கள் உறுதிப்படுத்தப்படுகின்றன...');
|
@define('SYNCING', 'வலைபொருள் இருப்பிடங்கள் உறுதிப்படுத்தப்படுகின்றன...');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', '%s வலைபொருள் இருப்பிடங்கள் உறுதிப்படுத்தப்படுத்தப்பட்டுவிட்டன.');
|
@define('SYNC_DONE', '%s வலைபொருள் இருப்பிடங்கள் உறுதிப்படுத்தப்படுத்தப்பட்டுவிட்டன.');
|
||||||
@define('FILE_NOT_FOUND', 'நீங்கள் தேடிய கணிபொறிக்ககோப்பு <b>%s</b> காணவில்லை. ஒருவேளை அது முன்பே நீக்கப்பட்டுவிட்டதோ?');
|
@define('FILE_NOT_FOUND', 'நீங்கள் தேடிய கணிபொறிக்ககோப்பு <b>%s</b> காணவில்லை. ஒருவேளை அது முன்பே நீக்கப்பட்டுவிட்டதோ?');
|
||||||
@define('ABORT_NOW', 'இக்கணமே நிறுத்து!');
|
@define('ABORT_NOW', 'இக்கணமே நிறுத்து!');
|
||||||
@@ -413,6 +417,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails will be named with the following format: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails will be named with the following format: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Thumbnail dimensions');
|
@define('INSTALL_THUMBWIDTH', 'Thumbnail dimensions');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Static maximum width of auto-generated thumbnails');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Static maximum width of auto-generated thumbnails');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'உங்கள் நிலைகள்');
|
@define('USERCONF_CAT_PERSONAL', 'உங்கள் நிலைகள்');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ $i18n_unknown = 'tw';
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', '未知的錯誤發生, 檔案還沒上傳. 也許你的檔案大於限制的大小. 請詢問您的 ISP 或修改您的 php.ini 檔.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', '未知的錯誤發生, 檔案還沒上傳. 也許你的檔案大於限制的大小. 請詢問您的 ISP 或修改您的 php.ini 檔.');
|
||||||
@define('GO', '繼續!');
|
@define('GO', '繼續!');
|
||||||
@define('NEWSIZE', '新大小: ');
|
@define('NEWSIZE', '新大小: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>重設大小 %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>重設大小 %s</b>');
|
||||||
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在這裡您可以修改圖片大小. 如果您要修改成相同的圖片比例, 您只需要輸入一個數值然後按 TAB -- 系統會自動幫您計算比例以免出錯</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在這裡您可以修改圖片大小. 如果您要修改成相同的圖片比例, 您只需要輸入一個數值然後按 TAB -- 系統會自動幫您計算比例以免出錯</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', '日曆快速跳躍');
|
@define('QUICKJUMP_CALENDAR', '日曆快速跳躍');
|
||||||
@@ -204,6 +204,10 @@ $i18n_unknown = 'tw';
|
|||||||
@define('RESIZING', '重設大小');
|
@define('RESIZING', '重設大小');
|
||||||
@define('RESIZE_DONE', '完成 (重設 %s 個圖片).');
|
@define('RESIZE_DONE', '完成 (重設 %s 個圖片).');
|
||||||
@define('SYNCING', '進行資料庫和圖片檔案夾同步化');
|
@define('SYNCING', '進行資料庫和圖片檔案夾同步化');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', '完成 (同步了 %s 個圖片).');
|
@define('SYNC_DONE', '完成 (同步了 %s 個圖片).');
|
||||||
@define('FILE_NOT_FOUND', '找不到檔案名稱 <b>%s</b>, 也許已經被刪除了?');
|
@define('FILE_NOT_FOUND', '找不到檔案名稱 <b>%s</b>, 也許已經被刪除了?');
|
||||||
@define('ABORT_NOW', '放棄');
|
@define('ABORT_NOW', '放棄');
|
||||||
@@ -415,6 +419,14 @@ $i18n_unknown = 'tw';
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', '縮圖會以下面的格式重新命名: 原檔名.[後置字元].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', '縮圖會以下面的格式重新命名: 原檔名.[後置字元].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', '縮圖尺度');
|
@define('INSTALL_THUMBWIDTH', '縮圖尺度');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', '自動建立縮圖的最大寬度');
|
@define('INSTALL_THUMBWIDTH_DESC', '自動建立縮圖的最大寬度');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', '個人資料設定');
|
@define('USERCONF_CAT_PERSONAL', '個人資料設定');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Bilinmeyen hata oluştu, dosya yüklenemedi.Dosyanız sunucunuzda izin verilen boyuttan daha büyük olabilir.Servis sağlayıcınızdan araştırın ya da php.ini dosyanızı daha büyük boyutta dosya yüklenmesine izin verecek şekilde ayarlayın.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Bilinmeyen hata oluştu, dosya yüklenemedi.Dosyanız sunucunuzda izin verilen boyuttan daha büyük olabilir.Servis sağlayıcınızdan araştırın ya da php.ini dosyanızı daha büyük boyutta dosya yüklenmesine izin verecek şekilde ayarlayın.');
|
||||||
@define('GO', 'Git!');
|
@define('GO', 'Git!');
|
||||||
@define('NEWSIZE', 'Yeni boyut: ');
|
@define('NEWSIZE', 'Yeni boyut: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Yeniden boyutlandır %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Yeniden boyutlandır %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Özgün boyut: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Özgün boyut: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Burada resmi yeniden boyutlandırabilirsiniz. Eğer resim özelliklerini değiştirmek istiyorsanız,İki kutudan birine bir değer girin ve TAB tuşuna basın -- Otomatik olarak resminiz yeniden boyutlandırılacaktır</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Burada resmi yeniden boyutlandırabilirsiniz. Eğer resim özelliklerini değiştirmek istiyorsanız,İki kutudan birine bir değer girin ve TAB tuşuna basın -- Otomatik olarak resminiz yeniden boyutlandırılacaktır</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Ajandaya hızlı bakış');
|
@define('QUICKJUMP_CALENDAR', 'Ajandaya hızlı bakış');
|
||||||
@@ -204,6 +204,10 @@
|
|||||||
@define('RESIZING', 'Yeniden hizalama');
|
@define('RESIZING', 'Yeniden hizalama');
|
||||||
@define('RESIZE_DONE', 'Tamamlandı (resim %s hizalandı).');
|
@define('RESIZE_DONE', 'Tamamlandı (resim %s hizalandı).');
|
||||||
@define('SYNCING', 'Veritabanı ile resimler dizini eşleniyor');
|
@define('SYNCING', 'Veritabanı ile resimler dizini eşleniyor');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Tamamlandı (Eşlendi %s resimler).');
|
@define('SYNC_DONE', 'Tamamlandı (Eşlendi %s resimler).');
|
||||||
@define('FILE_NOT_FOUND', 'Başlıklı dosyaya erişilemedi <b>%s</b>, silinmiş olabilir');
|
@define('FILE_NOT_FOUND', 'Başlıklı dosyaya erişilemedi <b>%s</b>, silinmiş olabilir');
|
||||||
@define('ABORT_NOW', 'İptal et');
|
@define('ABORT_NOW', 'İptal et');
|
||||||
@@ -415,6 +419,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Küçükresimler izleyen şekilde adlandırılacak: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Küçükresimler izleyen şekilde adlandırılacak: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Küçükresim boyutları');
|
@define('INSTALL_THUMBWIDTH', 'Küçükresim boyutları');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Küçükresim oluşturma işlemi için izin verilen enbüyük genişlik boyutu');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Küçükresim oluşturma işlemi için izin verilen enbüyük genişlik boyutu');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Kişisel bilgileriniz');
|
@define('USERCONF_CAT_PERSONAL', 'Kişisel bilgileriniz');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ $i18n_unknown = 'tw';
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', '未知的錯誤發生, 檔案還沒上傳. 也許你的檔案大於限制的大小. 請詢問您的 ISP 或修改您的 php.ini 檔.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', '未知的錯誤發生, 檔案還沒上傳. 也許你的檔案大於限制的大小. 請詢問您的 ISP 或修改您的 php.ini 檔.');
|
||||||
@define('GO', '繼續!');
|
@define('GO', '繼續!');
|
||||||
@define('NEWSIZE', '新大小: ');
|
@define('NEWSIZE', '新大小: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>重設大小 %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>重設大小 %s</b>');
|
||||||
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在這裡您可以修改圖片大小. 如果您要修改成相同的圖片比例, 您只需要輸入一個數值然後按 TAB -- 系統會自動幫您計算比例以免出錯</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在這裡您可以修改圖片大小. 如果您要修改成相同的圖片比例, 您只需要輸入一個數值然後按 TAB -- 系統會自動幫您計算比例以免出錯</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', '日曆快速跳躍');
|
@define('QUICKJUMP_CALENDAR', '日曆快速跳躍');
|
||||||
@@ -204,6 +204,10 @@ $i18n_unknown = 'tw';
|
|||||||
@define('RESIZING', '重設大小');
|
@define('RESIZING', '重設大小');
|
||||||
@define('RESIZE_DONE', '完成 (重設 %s 個圖片).');
|
@define('RESIZE_DONE', '完成 (重設 %s 個圖片).');
|
||||||
@define('SYNCING', '進行資料庫和圖片檔案夾同步化');
|
@define('SYNCING', '進行資料庫和圖片檔案夾同步化');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', '完成 (同步了 %s 個圖片).');
|
@define('SYNC_DONE', '完成 (同步了 %s 個圖片).');
|
||||||
@define('FILE_NOT_FOUND', '找不到檔案名稱 <b>%s</b>, 也許已經被刪除了?');
|
@define('FILE_NOT_FOUND', '找不到檔案名稱 <b>%s</b>, 也許已經被刪除了?');
|
||||||
@define('ABORT_NOW', '放棄');
|
@define('ABORT_NOW', '放棄');
|
||||||
@@ -415,6 +419,14 @@ $i18n_unknown = 'tw';
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', '縮圖會以下面的格式重新命名: 原檔名.[後置字元].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', '縮圖會以下面的格式重新命名: 原檔名.[後置字元].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', '縮圖尺度');
|
@define('INSTALL_THUMBWIDTH', '縮圖尺度');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', '自動建立縮圖的最大寬度');
|
@define('INSTALL_THUMBWIDTH_DESC', '自動建立縮圖的最大寬度');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', '個人資料設定');
|
@define('USERCONF_CAT_PERSONAL', '個人資料設定');
|
||||||
|
|||||||
@@ -89,7 +89,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', '发生错误, 文件没有上传,可能因为你的文件超过限制的大小, 请询问你的主机商或修改你的 php.ini 文件属性。');
|
@define('ERROR_UNKNOWN_NOUPLOAD', '发生错误, 文件没有上传,可能因为你的文件超过限制的大小, 请询问你的主机商或修改你的 php.ini 文件属性。');
|
||||||
@define('GO', '继续');
|
@define('GO', '继续');
|
||||||
@define('NEWSIZE', '大小: ');
|
@define('NEWSIZE', '大小: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>重设大小 %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>重设大小 %s</b>');
|
||||||
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在这里你可以修改图片大小!如果你要修改成相同的图片比例, 你只需要输入一个数值然后按 TAB -- 系统会自动帮你计算比例以免出错。</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在这里你可以修改图片大小!如果你要修改成相同的图片比例, 你只需要输入一个数值然后按 TAB -- 系统会自动帮你计算比例以免出错。</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', '日历快速跳跃');
|
@define('QUICKJUMP_CALENDAR', '日历快速跳跃');
|
||||||
@@ -203,6 +203,10 @@
|
|||||||
@define('RESIZING', '重设大小');
|
@define('RESIZING', '重设大小');
|
||||||
@define('RESIZE_DONE', '完成 (重设 %s 个图片)');
|
@define('RESIZE_DONE', '完成 (重设 %s 个图片)');
|
||||||
@define('SYNCING', '进行数据库和图片文件夹数据同步');
|
@define('SYNCING', '进行数据库和图片文件夹数据同步');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', '完成 (同步了 %s 个图片)');
|
@define('SYNC_DONE', '完成 (同步了 %s 个图片)');
|
||||||
@define('FILE_NOT_FOUND', '找不到文件 <b>%s</b>, 可能已被删除');
|
@define('FILE_NOT_FOUND', '找不到文件 <b>%s</b>, 可能已被删除');
|
||||||
@define('ABORT_NOW', '放弃');
|
@define('ABORT_NOW', '放弃');
|
||||||
@@ -414,6 +418,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', '缩图会以下面的格式重新命名: original.[后置字符].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', '缩图会以下面的格式重新命名: original.[后置字符].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', '缩图大小');
|
@define('INSTALL_THUMBWIDTH', '缩图大小');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', '自动建立缩图的最大宽度');
|
@define('INSTALL_THUMBWIDTH_DESC', '自动建立缩图的最大宽度');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', '个人资料设定');
|
@define('USERCONF_CAT_PERSONAL', '个人资料设定');
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Грешка: Този файл вече съществува!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Грешка: Този файл вече съществува!');
|
||||||
@define('GO', 'Продължаване');
|
@define('GO', 'Продължаване');
|
||||||
@define('NEWSIZE', 'Нов размер: ');
|
@define('NEWSIZE', 'Нов размер: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Промяна на размерите на %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Ïðîìÿíà íà ðàçìåðèòå íà %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Оригинални размери: <i>%s×%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Оригинални размери: <i>%s×%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Тук можете да настроите новите размери на изображенията. Ако искате да запазите пропорциите им, въведете стойност в едно от полетата и натиснете бутона TAB. Другото поле ще бъде изчислено автоматично, така че да се запази пропорцията.');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Тук можете да настроите новите размери на изображенията. Ако искате да запазите пропорциите им, въведете стойност в едно от полетата и натиснете бутона TAB. Другото поле ще бъде изчислено автоматично, така че да се запази пропорцията.');
|
||||||
@define('QUICKSEARCH', 'Бързо търсене');
|
@define('QUICKSEARCH', 'Бързо търсене');
|
||||||
@@ -188,6 +188,10 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('RESIZING', 'Промяна на размер');
|
@define('RESIZING', 'Промяна на размер');
|
||||||
@define('RESIZE_DONE', 'Готово (променени са размерите на %s изображения).');
|
@define('RESIZE_DONE', 'Готово (променени са размерите на %s изображения).');
|
||||||
@define('SYNCING', 'Синхронизиране на базата данни с папката с изображения');
|
@define('SYNCING', 'Синхронизиране на базата данни с папката с изображения');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Готово (синхронизирани са %s изображения).');
|
@define('SYNC_DONE', 'Готово (синхронизирани са %s изображения).');
|
||||||
@define('DELETE_FILE_FAIL' , 'Не може да бъде изтрит файла <b>%s</b>');
|
@define('DELETE_FILE_FAIL' , 'Не може да бъде изтрит файла <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Изтрита е миниатюрата, озаглавена <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Изтрита е миниатюрата, озаглавена <b>%s</b>');
|
||||||
@@ -436,6 +440,15 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Миниатюрите ще бъдат именувани по следния начин: оригинал.[наставка].разширение');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Миниатюрите ще бъдат именувани по следния начин: оригинал.[наставка].разширение');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Размер на миниатюрите');
|
@define('INSTALL_THUMBWIDTH', 'Размер на миниатюрите');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Статична максимална ширина на автоматично генерираните миниатюри');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Статична максимална ширина на автоматично генерираните миниатюри');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Лични данни');
|
@define('USERCONF_CAT_PERSONAL', 'Лични данни');
|
||||||
@define('USERCONF_CAT_PERSONAL_DESC', 'Въвеждане на вашите лични данни');
|
@define('USERCONF_CAT_PERSONAL_DESC', 'Въвеждане на вашите лични данни');
|
||||||
@define('USERCONF_USERNAME', 'Потребителско име');
|
@define('USERCONF_USERNAME', 'Потребителско име');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', '发生错误, 文件没有上传,可能因为你的文件超过限制的大小, 请询问你的主机商或修改你的 php.ini 文件属性。');
|
@define('ERROR_UNKNOWN_NOUPLOAD', '发生错误, 文件没有上传,可能因为你的文件超过限制的大小, 请询问你的主机商或修改你的 php.ini 文件属性。');
|
||||||
@define('GO', '继续');
|
@define('GO', '继续');
|
||||||
@define('NEWSIZE', '大小: ');
|
@define('NEWSIZE', '大小: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>重设大小 %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>重设大小 %s</b>');
|
||||||
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在这里你可以修改图片大小!如果你要修改成相同的图片比例, 你只需要输入一个数值然后按 TAB -- 系统会自动帮你计算比例以免出错。</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在这里你可以修改图片大小!如果你要修改成相同的图片比例, 你只需要输入一个数值然后按 TAB -- 系统会自动帮你计算比例以免出错。</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', '日历快速跳跃');
|
@define('QUICKJUMP_CALENDAR', '日历快速跳跃');
|
||||||
@@ -204,6 +204,10 @@
|
|||||||
@define('RESIZING', '重设大小');
|
@define('RESIZING', '重设大小');
|
||||||
@define('RESIZE_DONE', '完成 (重设 %s 个图片)');
|
@define('RESIZE_DONE', '完成 (重设 %s 个图片)');
|
||||||
@define('SYNCING', '进行数据库和图片文件夹数据同步');
|
@define('SYNCING', '进行数据库和图片文件夹数据同步');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', '完成 (同步了 %s 个图片)');
|
@define('SYNC_DONE', '完成 (同步了 %s 个图片)');
|
||||||
@define('FILE_NOT_FOUND', '找不到文件 <b>%s</b>, 可能已被删除');
|
@define('FILE_NOT_FOUND', '找不到文件 <b>%s</b>, 可能已被删除');
|
||||||
@define('ABORT_NOW', '放弃');
|
@define('ABORT_NOW', '放弃');
|
||||||
@@ -415,6 +419,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', '缩图会以下面的格式重新命名: original.[后置字符].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', '缩图会以下面的格式重新命名: original.[后置字符].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', '缩图大小');
|
@define('INSTALL_THUMBWIDTH', '缩图大小');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', '自动建立缩图的最大宽度');
|
@define('INSTALL_THUMBWIDTH_DESC', '自动建立缩图的最大宽度');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', '个人资料设定');
|
@define('USERCONF_CAT_PERSONAL', '个人资料设定');
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ $i18n_filename_to = array (
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Chyba: Soubor už ve vašem poèítaèi existuje!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Chyba: Soubor už ve vašem poèítaèi existuje!');
|
||||||
@define('GO', 'Provést!');
|
@define('GO', 'Provést!');
|
||||||
@define('NEWSIZE', 'Nový rozmìr: ');
|
@define('NEWSIZE', 'Nový rozmìr: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Zmìnit rozmìr %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Zmìnit rozmìr %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Pùvodní rozmìr: <i>%sx%s</i> pixelù');
|
@define('ORIGINAL_SIZE', 'Pùvodní rozmìr: <i>%sx%s</i> pixelù');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Zde mùžete zadat nový rozmìr obrázku. Pokud chcete zachovat proporce, zadejte jen jednu hodnotu a stisknìte klávesu TAB, nový rozmìr bude dopoèítán automaticky:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Zde mùžete zadat nový rozmìr obrázku. Pokud chcete zachovat proporce, zadejte jen jednu hodnotu a stisknìte klávesu TAB, nový rozmìr bude dopoèítán automaticky:');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Vyhledávací kalendáø');
|
@define('QUICKJUMP_CALENDAR', 'Vyhledávací kalendáø');
|
||||||
@@ -200,6 +200,10 @@ $i18n_filename_to = array (
|
|||||||
@define('RESIZING', 'Zmìna rozmìrù');
|
@define('RESIZING', 'Zmìna rozmìrù');
|
||||||
@define('RESIZE_DONE', 'Hotovo (upraven rozmìr %s obrázkù).');
|
@define('RESIZE_DONE', 'Hotovo (upraven rozmìr %s obrázkù).');
|
||||||
@define('SYNCING', 'Synchronizace databáze s adresáøem obrázkù');
|
@define('SYNCING', 'Synchronizace databáze s adresáøem obrázkù');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Hotovo (synchronizováno %s obrázkù).');
|
@define('SYNC_DONE', 'Hotovo (synchronizováno %s obrázkù).');
|
||||||
@define('DELETE_IMAGE_FAIL' , 'Nelze vymazat obrázek <b>%s</b>');
|
@define('DELETE_IMAGE_FAIL' , 'Nelze vymazat obrázek <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Vymazán náhled obrázku s názvem <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Vymazán náhled obrázku s názvem <b>%s</b>');
|
||||||
@@ -403,6 +407,14 @@ $i18n_filename_to = array (
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Náhledy budou pojmenovány original.sufix.ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Náhledy budou pojmenovány original.sufix.ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Rozmìry náhledù');
|
@define('INSTALL_THUMBWIDTH', 'Rozmìry náhledù');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Pevná šíøka automaticky generovaných náhledù');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Pevná šíøka automaticky generovaných náhledù');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Osobní nastavení');
|
@define('USERCONF_CAT_PERSONAL', 'Osobní nastavení');
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ $i18n_filename_to = array (
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Chyba: Soubor u¾ ve va¹em poèítaèi existuje!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Chyba: Soubor u¾ ve va¹em poèítaèi existuje!');
|
||||||
@define('GO', 'Provést!');
|
@define('GO', 'Provést!');
|
||||||
@define('NEWSIZE', 'Nový rozmìr: ');
|
@define('NEWSIZE', 'Nový rozmìr: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Zmìnit rozmìr %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Zmìnit rozmìr %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Pùvodní rozmìr: <i>%sx%s</i> pixelù');
|
@define('ORIGINAL_SIZE', 'Pùvodní rozmìr: <i>%sx%s</i> pixelù');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Zde mù¾ete zadat nový rozmìr obrázku. Pokud chcete zachovat proporce, zadejte jen jednu hodnotu a stisknìte klávesu TAB, nový rozmìr bude dopoèítán automaticky:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Zde mù¾ete zadat nový rozmìr obrázku. Pokud chcete zachovat proporce, zadejte jen jednu hodnotu a stisknìte klávesu TAB, nový rozmìr bude dopoèítán automaticky:');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Vyhledávací kalendáø');
|
@define('QUICKJUMP_CALENDAR', 'Vyhledávací kalendáø');
|
||||||
@@ -200,6 +200,10 @@ $i18n_filename_to = array (
|
|||||||
@define('RESIZING', 'Zmìna rozmìrù');
|
@define('RESIZING', 'Zmìna rozmìrù');
|
||||||
@define('RESIZE_DONE', 'Hotovo (upraven rozmìr %s obrázkù).');
|
@define('RESIZE_DONE', 'Hotovo (upraven rozmìr %s obrázkù).');
|
||||||
@define('SYNCING', 'Synchronizace databáze s adresáøem obrázkù');
|
@define('SYNCING', 'Synchronizace databáze s adresáøem obrázkù');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Hotovo (synchronizováno %s obrázkù).');
|
@define('SYNC_DONE', 'Hotovo (synchronizováno %s obrázkù).');
|
||||||
@define('DELETE_IMAGE_FAIL' , 'Nelze vymazat obrázek <b>%s</b>');
|
@define('DELETE_IMAGE_FAIL' , 'Nelze vymazat obrázek <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Vymazán náhled obrázku s názvem <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Vymazán náhled obrázku s názvem <b>%s</b>');
|
||||||
@@ -403,6 +407,14 @@ $i18n_filename_to = array (
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Náhledy budou pojmenovány original.sufix.ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Náhledy budou pojmenovány original.sufix.ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Rozmìry náhledù');
|
@define('INSTALL_THUMBWIDTH', 'Rozmìry náhledù');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Pevná ¹íøka automaticky generovaných náhledù');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Pevná ¹íøka automaticky generovaných náhledù');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Osobní nastavení');
|
@define('USERCONF_CAT_PERSONAL', 'Osobní nastavení');
|
||||||
|
|||||||
@@ -85,7 +85,7 @@
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Fejl: Filen findes allerede på din maskine!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Fejl: Filen findes allerede på din maskine!');
|
||||||
@define('GO', 'Begynd!');
|
@define('GO', 'Begynd!');
|
||||||
@define('NEWSIZE', 'Ny størrelse: ');
|
@define('NEWSIZE', 'Ny størrelse: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Ændre størrelse på %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Ændre størrelse på %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Original størrelse: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Original størrelse: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Her kan du justere billedets størrelse. Hvis du vil bevare proportionerne, skal du bare indtaste én af værdirene og trykke på TAB-tasten, den anden værdi beregnes så automatisk:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Her kan du justere billedets størrelse. Hvis du vil bevare proportionerne, skal du bare indtaste én af værdirene og trykke på TAB-tasten, den anden værdi beregnes så automatisk:');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Hurtigkalender');
|
@define('QUICKJUMP_CALENDAR', 'Hurtigkalender');
|
||||||
@@ -186,6 +186,10 @@
|
|||||||
@define('RESIZING', 'Ændre dimensioner');
|
@define('RESIZING', 'Ændre dimensioner');
|
||||||
@define('RESIZE_DONE', 'Færdig (Ændrede %s billeder).');
|
@define('RESIZE_DONE', 'Færdig (Ændrede %s billeder).');
|
||||||
@define('SYNCING', 'Synkroniserer databasen med billedemappen');
|
@define('SYNCING', 'Synkroniserer databasen med billedemappen');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Færdig (Synkroniserede %s billeder).');
|
@define('SYNC_DONE', 'Færdig (Synkroniserede %s billeder).');
|
||||||
@define('DELETE_IMAGE_FAIL' , 'Kunne ikke slette billedet <b>%s</b>');
|
@define('DELETE_IMAGE_FAIL' , 'Kunne ikke slette billedet <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Slettede billedet ved navn <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Slettede billedet ved navn <b>%s</b>');
|
||||||
@@ -374,6 +378,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails vil blive navngivet i følgende format: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails vil blive navngivet i følgende format: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Thumbnail dimensioner');
|
@define('INSTALL_THUMBWIDTH', 'Thumbnail dimensioner');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Statisk maximal brede på et auto-genereret thumbnail');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Statisk maximal brede på et auto-genereret thumbnail');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Dine personlige detaljer');
|
@define('USERCONF_CAT_PERSONAL', 'Dine personlige detaljer');
|
||||||
|
|||||||
@@ -85,7 +85,7 @@
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Fehler: Diese Datei existiert schon auf dem Server!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Fehler: Diese Datei existiert schon auf dem Server!');
|
||||||
@define('GO', 'Los!');
|
@define('GO', 'Los!');
|
||||||
@define('NEWSIZE', 'Neue Größe ');
|
@define('NEWSIZE', 'Neue Größe ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Größe von %s ändern</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Größe von %s ändern</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Originalgröße: <i>%sx%s</i> Pixel');
|
@define('ORIGINAL_SIZE', 'Originalgröße: <i>%sx%s</i> Pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Hier können Sie die Bildgröße ändern. Um die Proportionen beizubehalten, einfach einen der beiden Werte eingeben, und anschließend die TAB-Taste drücken, und Sie erhalten eine Vorschau mit korrekten Proportionen.');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Hier können Sie die Bildgröße ändern. Um die Proportionen beizubehalten, einfach einen der beiden Werte eingeben, und anschließend die TAB-Taste drücken, und Sie erhalten eine Vorschau mit korrekten Proportionen.');
|
||||||
@define('DATE_FORMAT_1', 'd.m.Y');
|
@define('DATE_FORMAT_1', 'd.m.Y');
|
||||||
@@ -253,6 +253,10 @@
|
|||||||
@define('SIDEBAR_PLUGINS', 'Seitenleisten-Plugins');
|
@define('SIDEBAR_PLUGINS', 'Seitenleisten-Plugins');
|
||||||
@define('EVENT_PLUGINS', 'Ereignis-Plugins');
|
@define('EVENT_PLUGINS', 'Ereignis-Plugins');
|
||||||
@define('SYNCING', 'Synchronisiere Datenbank mit Bilder-Ordner');
|
@define('SYNCING', 'Synchronisiere Datenbank mit Bilder-Ordner');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Fertig (%s Bilder synchronisiert).');
|
@define('SYNC_DONE', 'Fertig (%s Bilder synchronisiert).');
|
||||||
@define('SORT_ORDER', 'Sortierung');
|
@define('SORT_ORDER', 'Sortierung');
|
||||||
@define('SORT_ORDER_NAME', 'Dateiname');
|
@define('SORT_ORDER_NAME', 'Dateiname');
|
||||||
@@ -402,6 +406,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails werden nach dem Schema originalname.Suffix.erweiterung benannt.');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails werden nach dem Schema originalname.Suffix.erweiterung benannt.');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Thumbnailgröße');
|
@define('INSTALL_THUMBWIDTH', 'Thumbnailgröße');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Maximale Breite/Höhe der automatisch erzeugten Thumbnails');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Maximale Breite/Höhe der automatisch erzeugten Thumbnails');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Persönliche Einstellungen');
|
@define('USERCONF_CAT_PERSONAL', 'Persönliche Einstellungen');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Unknown error occurred, file not uploaded. Maybe your filesize is larger than the maximum size allowed by your server installation. Check with your ISP or edit your php.ini file to allow larger file size uploads.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Unknown error occurred, file not uploaded. Maybe your filesize is larger than the maximum size allowed by your server installation. Check with your ISP or edit your php.ini file to allow larger file size uploads.');
|
||||||
@define('GO', 'Go!');
|
@define('GO', 'Go!');
|
||||||
@define('NEWSIZE', 'New size: ');
|
@define('NEWSIZE', 'New size: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Resize %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Resize %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Original size: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Original size: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Here, you can adjust the image size. If you want to resize the image proportionally, just enter a value in one of the two boxes and press the TAB key -- I will automatically calculate the new size so the image proportions do not get messed up</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Here, you can adjust the image size. If you want to resize the image proportionally, just enter a value in one of the two boxes and press the TAB key -- I will automatically calculate the new size so the image proportions do not get messed up</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'QuickJump Calendar');
|
@define('QUICKJUMP_CALENDAR', 'QuickJump Calendar');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'Resizing');
|
@define('RESIZING', 'Resizing');
|
||||||
@define('RESIZE_DONE', 'Done (resized %s images).');
|
@define('RESIZE_DONE', 'Done (resized %s images).');
|
||||||
@define('SYNCING', 'Synchronizing the database with the image folder');
|
@define('SYNCING', 'Synchronizing the database with the image folder');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Done (Synchronized %s images).');
|
@define('SYNC_DONE', 'Done (Synchronized %s images).');
|
||||||
@define('FILE_NOT_FOUND', 'Unable to locate the file entitled <b>%s</b>, maybe it has already been deleted?');
|
@define('FILE_NOT_FOUND', 'Unable to locate the file entitled <b>%s</b>, maybe it has already been deleted?');
|
||||||
@define('ABORT_NOW', 'Abort now');
|
@define('ABORT_NOW', 'Abort now');
|
||||||
@@ -411,8 +415,16 @@
|
|||||||
@define('INSTALL_IMAGEMAGICKPATH_DESC', 'Full path & name of your ImageMagick convert binary');
|
@define('INSTALL_IMAGEMAGICKPATH_DESC', 'Full path & name of your ImageMagick convert binary');
|
||||||
@define('INSTALL_THUMBSUFFIX', 'Thumbnail suffix');
|
@define('INSTALL_THUMBSUFFIX', 'Thumbnail suffix');
|
||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails will be named with the following format: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails will be named with the following format: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Thumbnail dimensions');
|
@define('INSTALL_THUMBWIDTH', 'Thumbnail max size');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Static maximum width of auto-generated thumbnails');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Maximum size of thumbnail in constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Your personal details');
|
@define('USERCONF_CAT_PERSONAL', 'Your personal details');
|
||||||
|
|||||||
@@ -93,7 +93,7 @@
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Error: ¡El fichero ya existe en el sistema!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Error: ¡El fichero ya existe en el sistema!');
|
||||||
@define('GO', '¡Ir!');
|
@define('GO', '¡Ir!');
|
||||||
@define('NEWSIZE', 'Nuevo tamaño: ');
|
@define('NEWSIZE', 'Nuevo tamaño: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Cambiar tamaño %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Cambiar tamaño %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Tamaño original: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Tamaño original: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aquí puedes ajustar el nuevo tamaño de la imagen. Si quieres mantener las proporciones sólo introduce uno de los valores y presiona la tecla tabulador (TAB), de esta forma se ajustará automáticamente:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aquí puedes ajustar el nuevo tamaño de la imagen. Si quieres mantener las proporciones sólo introduce uno de los valores y presiona la tecla tabulador (TAB), de esta forma se ajustará automáticamente:');
|
||||||
@define('DATE_FORMAT_1', 'd.m.Y');
|
@define('DATE_FORMAT_1', 'd.m.Y');
|
||||||
@@ -253,6 +253,10 @@
|
|||||||
@define('SIDEBAR_PLUGINS', 'Extensiones de barra lateral');
|
@define('SIDEBAR_PLUGINS', 'Extensiones de barra lateral');
|
||||||
@define('EVENT_PLUGINS', 'Extensiones de eventos');
|
@define('EVENT_PLUGINS', 'Extensiones de eventos');
|
||||||
@define('SYNCING', 'Sincronizando la base de datos con el directorio de imágenes.');
|
@define('SYNCING', 'Sincronizando la base de datos con el directorio de imágenes.');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Hecho (Sincronizadas %s imágenes).');
|
@define('SYNC_DONE', 'Hecho (Sincronizadas %s imágenes).');
|
||||||
@define('SORT_ORDER', 'Ordenar por');
|
@define('SORT_ORDER', 'Ordenar por');
|
||||||
@define('SORT_ORDER_NAME', 'Nombre de fichero');
|
@define('SORT_ORDER_NAME', 'Nombre de fichero');
|
||||||
@@ -399,6 +403,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Las miniaturas se crearán con el siguiente formato: original.[sufijo].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Las miniaturas se crearán con el siguiente formato: original.[sufijo].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Dimensiones de las miniaturas');
|
@define('INSTALL_THUMBWIDTH', 'Dimensiones de las miniaturas');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Anchura máxima estática de las miniaturas auto-generadas');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Anchura máxima estática de las miniaturas auto-generadas');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Datos personales');
|
@define('USERCONF_CAT_PERSONAL', 'Datos personales');
|
||||||
|
|||||||
@@ -89,7 +89,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'خطای ناشناخته، فایلی بالاگذاری نشد. ممکن است که حجم فایل شما بیشتر از ماکزیمم حجم اجازه داده شده باشد. لطفا ISP یا فایل php.ini خود را چک کنید.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'خطای ناشناخته، فایلی بالاگذاری نشد. ممکن است که حجم فایل شما بیشتر از ماکزیمم حجم اجازه داده شده باشد. لطفا ISP یا فایل php.ini خود را چک کنید.');
|
||||||
@define('GO', 'برو!');
|
@define('GO', 'برو!');
|
||||||
@define('NEWSIZE', 'سایز جدید: ');
|
@define('NEWSIZE', 'سایز جدید: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>تغییر اندازه %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>تغییر اندازه %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'ابعاد اصلی: <i>%sx%s</i> پیکسل');
|
@define('ORIGINAL_SIZE', 'ابعاد اصلی: <i>%sx%s</i> پیکسل');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>در این مکان، شما می توانید ابعاد عکس را درست نمایید. اگر تصمیم دارید ابعاد عکس را متناسب تغییر دهید، فقط یکی از اعداد را وارد کرده و سپس کلید TAB را فشار دهید -- ما ضلع دیگر را به صورت متناسب تغییر خواهیم داد</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>در این مکان، شما می توانید ابعاد عکس را درست نمایید. اگر تصمیم دارید ابعاد عکس را متناسب تغییر دهید، فقط یکی از اعداد را وارد کرده و سپس کلید TAB را فشار دهید -- ما ضلع دیگر را به صورت متناسب تغییر خواهیم داد</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'تقویم برای پرش سریع');
|
@define('QUICKJUMP_CALENDAR', 'تقویم برای پرش سریع');
|
||||||
@@ -203,6 +203,10 @@
|
|||||||
@define('RESIZING', 'تغییر اندازه');
|
@define('RESIZING', 'تغییر اندازه');
|
||||||
@define('RESIZE_DONE', 'انجام شد (تعداد %s تصویر تغییر کرد).');
|
@define('RESIZE_DONE', 'انجام شد (تعداد %s تصویر تغییر کرد).');
|
||||||
@define('SYNCING', 'هماهنگی پایگاه داده با شاخه تصاویر');
|
@define('SYNCING', 'هماهنگی پایگاه داده با شاخه تصاویر');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'انجام شد (تعداد %s تصویر هماهنگ شد).');
|
@define('SYNC_DONE', 'انجام شد (تعداد %s تصویر هماهنگ شد).');
|
||||||
@define('FILE_NOT_FOUND', 'توانایی تشخیص محل تصویر <b>%s</b> نیست، احتمالا قبلا حذف شده است؟');
|
@define('FILE_NOT_FOUND', 'توانایی تشخیص محل تصویر <b>%s</b> نیست، احتمالا قبلا حذف شده است؟');
|
||||||
@define('ABORT_NOW', 'بازگشت');
|
@define('ABORT_NOW', 'بازگشت');
|
||||||
@@ -414,6 +418,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'عکس های کوچک با روش روبرو نامگذاری خواهند شد: نام اصلی.[پیشوند].توسعه');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'عکس های کوچک با روش روبرو نامگذاری خواهند شد: نام اصلی.[پیشوند].توسعه');
|
||||||
@define('INSTALL_THUMBWIDTH', 'اندازه تصاویر کوچک');
|
@define('INSTALL_THUMBWIDTH', 'اندازه تصاویر کوچک');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'بیشترین عرض عکس های کوچک');
|
@define('INSTALL_THUMBWIDTH_DESC', 'بیشترین عرض عکس های کوچک');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* PERSONAL DETAILS */
|
/* PERSONAL DETAILS */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'اطلاعات شخصی');
|
@define('USERCONF_CAT_PERSONAL', 'اطلاعات شخصی');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Pieleen meni, tiedostoa ei tuotu. Kenties tiedoston koko oli liian suuri. Kysy palveluntarjoajaltasi apua tai muokkaa php.ini tiedostoasi salliaksesi isompien tiedostojen tuonnin..');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Pieleen meni, tiedostoa ei tuotu. Kenties tiedoston koko oli liian suuri. Kysy palveluntarjoajaltasi apua tai muokkaa php.ini tiedostoasi salliaksesi isompien tiedostojen tuonnin..');
|
||||||
@define('GO', 'Tee!');
|
@define('GO', 'Tee!');
|
||||||
@define('NEWSIZE', 'Uusi koko: ');
|
@define('NEWSIZE', 'Uusi koko: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Muokkaa kokoa %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Muokkaa kokoa %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Alkuperäinen koko: <i>%sx%s</i> pikseliä');
|
@define('ORIGINAL_SIZE', 'Alkuperäinen koko: <i>%sx%s</i> pikseliä');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Kuvan koon muokkaus. Voit muokata kuvan kokoa säilyttäen suhteet, lisää toiseen laatikkoon arvo ja paina tab-näppäintä, niin lasken sinulle suhteen mukaisen toisen arvon automaattisesti.</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Kuvan koon muokkaus. Voit muokata kuvan kokoa säilyttäen suhteet, lisää toiseen laatikkoon arvo ja paina tab-näppäintä, niin lasken sinulle suhteen mukaisen toisen arvon automaattisesti.</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Pikasiirtymä kalenteriin');
|
@define('QUICKJUMP_CALENDAR', 'Pikasiirtymä kalenteriin');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'Muokataan');
|
@define('RESIZING', 'Muokataan');
|
||||||
@define('RESIZE_DONE', 'Valmis (muokattu %s kuvaa).');
|
@define('RESIZE_DONE', 'Valmis (muokattu %s kuvaa).');
|
||||||
@define('SYNCING', 'Päivitetään tietokantaa vastaamaan kuvakansiota');
|
@define('SYNCING', 'Päivitetään tietokantaa vastaamaan kuvakansiota');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Valmis (Päivitetty %s kuvaa).');
|
@define('SYNC_DONE', 'Valmis (Päivitetty %s kuvaa).');
|
||||||
@define('FILE_NOT_FOUND', 'Tiedostoa <b>%s</b> ei löydy, ehkäpä se on jo poistettu?');
|
@define('FILE_NOT_FOUND', 'Tiedostoa <b>%s</b> ei löydy, ehkäpä se on jo poistettu?');
|
||||||
@define('ABORT_NOW', 'Peruuta');
|
@define('ABORT_NOW', 'Peruuta');
|
||||||
@@ -412,6 +416,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Pienoiskuvakkeet nimetään seuraavasti: originaali.[suffiksi].pääte');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Pienoiskuvakkeet nimetään seuraavasti: originaali.[suffiksi].pääte');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Pienoiskuvakkeen mitat');
|
@define('INSTALL_THUMBWIDTH', 'Pienoiskuvakkeen mitat');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Pienoiskuvakkeen maksimileveys');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Pienoiskuvakkeen maksimileveys');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Henkilötietosi');
|
@define('USERCONF_CAT_PERSONAL', 'Henkilötietosi');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Erreur : le fichier existe déjà sur votre machine.');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Erreur : le fichier existe déjà sur votre machine.');
|
||||||
@define('GO', 'Go!');
|
@define('GO', 'Go!');
|
||||||
@define('NEWSIZE', 'Nouvelle taille : ');
|
@define('NEWSIZE', 'Nouvelle taille : ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Redimensionner %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Redimensionner %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Taille d\'origine : <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Taille d\'origine : <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Ici vous pouvez ajuster la taille de l\'image sélectionnée. Si vous voulez respecter les proportions de l\'image, entrez juste la hauteur ou la largeur, et pressez la touche TAB - la valeur correspondante sera insérée automatiquement :');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Ici vous pouvez ajuster la taille de l\'image sélectionnée. Si vous voulez respecter les proportions de l\'image, entrez juste la hauteur ou la largeur, et pressez la touche TAB - la valeur correspondante sera insérée automatiquement :');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Saut rapide vers le Calendrier');
|
@define('QUICKJUMP_CALENDAR', 'Saut rapide vers le Calendrier');
|
||||||
@@ -190,6 +190,10 @@
|
|||||||
@define('RESIZING', 'Redimensionnement');
|
@define('RESIZING', 'Redimensionnement');
|
||||||
@define('RESIZE_DONE', 'Terminé (%s images redimensionnées).');
|
@define('RESIZE_DONE', 'Terminé (%s images redimensionnées).');
|
||||||
@define('SYNCING', 'Synchronisation de la base de données avec votre collection d\'images');
|
@define('SYNCING', 'Synchronisation de la base de données avec votre collection d\'images');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Terminé (%s images synchronisées).');
|
@define('SYNC_DONE', 'Terminé (%s images synchronisées).');
|
||||||
@define('DELETE_IMAGE_FAIL' , 'Impossible de supprimer l\'image intitulée <b>%s</b>');
|
@define('DELETE_IMAGE_FAIL' , 'Impossible de supprimer l\'image intitulée <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Suppression de la miniature de l\'image intitulée <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Suppression de la miniature de l\'image intitulée <b>%s</b>');
|
||||||
@@ -398,6 +402,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Les miniatures d\'images seront enregistrées de la manière suivante : original.[suffixe].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Les miniatures d\'images seront enregistrées de la manière suivante : original.[suffixe].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Dimensions des miniatures');
|
@define('INSTALL_THUMBWIDTH', 'Dimensions des miniatures');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Largeur maximum (statique) des miniatures crées automatiquement');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Largeur maximum (statique) des miniatures crées automatiquement');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Détails personnels');
|
@define('USERCONF_CAT_PERSONAL', 'Détails personnels');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Ismeretlen hiba történt, a fájl nincs feltöltve. Talán a fájl mérete nagyobb mint a szerveren beállított megengedett maximum érték. Ezt a beállítást a szerver üzemeltetője tudja megváltoztatni.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Ismeretlen hiba történt, a fájl nincs feltöltve. Talán a fájl mérete nagyobb mint a szerveren beállított megengedett maximum érték. Ezt a beállítást a szerver üzemeltetője tudja megváltoztatni.');
|
||||||
@define('GO', 'OK');
|
@define('GO', 'OK');
|
||||||
@define('NEWSIZE', 'Új méret: ');
|
@define('NEWSIZE', 'Új méret: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Átméretezés %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Átméretezés %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Eredeti méret: <i>%sx%s</i> képpont');
|
@define('ORIGINAL_SIZE', 'Eredeti méret: <i>%sx%s</i> képpont');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Itt módosíthatja a kép méretét. Ha arányosan szeretné a képet átméretezni, elég az egyik dobozban módosítani a számot,majd megnyomni a TAB billentyűt -- az új méret automatikusan kerül meghatározásra, így a kép nem lesz aránytalan</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Itt módosíthatja a kép méretét. Ha arányosan szeretné a képet átméretezni, elég az egyik dobozban módosítani a számot,majd megnyomni a TAB billentyűt -- az új méret automatikusan kerül meghatározásra, így a kép nem lesz aránytalan</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Gyors naptárra ugrás');
|
@define('QUICKJUMP_CALENDAR', 'Gyors naptárra ugrás');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'Átméretezés');
|
@define('RESIZING', 'Átméretezés');
|
||||||
@define('RESIZE_DONE', 'Kész (%s kép átméretezve).');
|
@define('RESIZE_DONE', 'Kész (%s kép átméretezve).');
|
||||||
@define('SYNCING', 'Szinkronizálom az adatbázist a képek könyvtárával.');
|
@define('SYNCING', 'Szinkronizálom az adatbázist a képek könyvtárával.');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Kész (%s képet szinkronizáltam).');
|
@define('SYNC_DONE', 'Kész (%s képet szinkronizáltam).');
|
||||||
@define('FILE_NOT_FOUND', 'Nem találom a <b>%s</b> fájlt, lehet, hogy már törölve lett?');
|
@define('FILE_NOT_FOUND', 'Nem találom a <b>%s</b> fájlt, lehet, hogy már törölve lett?');
|
||||||
@define('ABORT_NOW', 'Azonnali megszakítás');
|
@define('ABORT_NOW', 'Azonnali megszakítás');
|
||||||
@@ -413,6 +417,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'A képekből generált előnézeti képek ilyen nevűek lesznek: eredetinév.[előtag].kiterj');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'A képekből generált előnézeti képek ilyen nevűek lesznek: eredetinév.[előtag].kiterj');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Előnézeti kép méretek');
|
@define('INSTALL_THUMBWIDTH', 'Előnézeti kép méretek');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Az automatikusan generált előnézeti képek szélességének maximuma');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Az automatikusan generált előnézeti képek szélességének maximuma');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Személyes adatok');
|
@define('USERCONF_CAT_PERSONAL', 'Személyes adatok');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Óþekkt villa hefur komið upp, skrá ekki vistuð. Kannski var stærð skráarinnar meiri heldur en hámarksstærðin sem netjónninn skilgreinir. Hafðu samband við þjónustuaðilann þinn eða breytti php.ini skránni til að leyfa stærri skráarflutninga.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Óþekkt villa hefur komið upp, skrá ekki vistuð. Kannski var stærð skráarinnar meiri heldur en hámarksstærðin sem netjónninn skilgreinir. Hafðu samband við þjónustuaðilann þinn eða breytti php.ini skránni til að leyfa stærri skráarflutninga.');
|
||||||
@define('GO', 'Go!');
|
@define('GO', 'Go!');
|
||||||
@define('NEWSIZE', 'Ný stærð: ');
|
@define('NEWSIZE', 'Ný stærð: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Breyta stærð %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Breyta stærð %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Upprunaleg stærð: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Upprunaleg stærð: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Hér getur þú breytt stærð myndarinnar. Ef þú vilt breyta stærð hennar í réttum hlutföllum, sláðu þá inn eitthvað gildi í annan tveggja reitanna og ýttu á TAB takkann. -- Stærð þeirra verður reiknuð sjálfvirkt svo hlutföllin haldist rétt.</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Hér getur þú breytt stærð myndarinnar. Ef þú vilt breyta stærð hennar í réttum hlutföllum, sláðu þá inn eitthvað gildi í annan tveggja reitanna og ýttu á TAB takkann. -- Stærð þeirra verður reiknuð sjálfvirkt svo hlutföllin haldist rétt.</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'QuickJump dagatal');
|
@define('QUICKJUMP_CALENDAR', 'QuickJump dagatal');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'Breyti stærð');
|
@define('RESIZING', 'Breyti stærð');
|
||||||
@define('RESIZE_DONE', 'Búin (breytti stærð %s mynda).');
|
@define('RESIZE_DONE', 'Búin (breytti stærð %s mynda).');
|
||||||
@define('SYNCING', 'Samhæfi gagnagrunn við myndamöppu');
|
@define('SYNCING', 'Samhæfi gagnagrunn við myndamöppu');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Búin (Samhæfði %s myndir).');
|
@define('SYNC_DONE', 'Búin (Samhæfði %s myndir).');
|
||||||
@define('FILE_NOT_FOUND', 'Fann ekki skrána <b>%s</b>, kannski er þegar búið að eyða henni?');
|
@define('FILE_NOT_FOUND', 'Fann ekki skrána <b>%s</b>, kannski er þegar búið að eyða henni?');
|
||||||
@define('ABORT_NOW', 'Hætta við núna');
|
@define('ABORT_NOW', 'Hætta við núna');
|
||||||
@@ -413,6 +417,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Sýnishorn verða nefnd eftir eftirfarandi forsniði: upprunalegt.[viðskeyti].end');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Sýnishorn verða nefnd eftir eftirfarandi forsniði: upprunalegt.[viðskeyti].end');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Stærð sýnishorna');
|
@define('INSTALL_THUMBWIDTH', 'Stærð sýnishorna');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Staðlað hágildi breiddar framkallaðra sýnishorna');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Staðlað hágildi breiddar framkallaðra sýnishorna');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Persónulegu upplýsingar þínar');
|
@define('USERCONF_CAT_PERSONAL', 'Persónulegu upplýsingar þínar');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Errore sconosciuto, file non inviato. Forse le dimensioni sono superiori al massimo consentito dall\'installazione del server. Chiedi al tuo provider o modifica php.ini per consentire upload più corposi.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Errore sconosciuto, file non inviato. Forse le dimensioni sono superiori al massimo consentito dall\'installazione del server. Chiedi al tuo provider o modifica php.ini per consentire upload più corposi.');
|
||||||
@define('GO', 'Vai!');
|
@define('GO', 'Vai!');
|
||||||
@define('NEWSIZE', 'Nuove dimensioni: ');
|
@define('NEWSIZE', 'Nuove dimensioni: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Ridimensiona %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Ridimensiona %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Dimensione originale: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Dimensione originale: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Qui puoi definire le nuove dimensioni dell\'immagine. Se vuoi mantenere le proporzioni inserisci un solo valore e premi TAB, calcolerò automaticamente le nuove dimensioni in modo da non modificare le proporzioni:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Qui puoi definire le nuove dimensioni dell\'immagine. Se vuoi mantenere le proporzioni inserisci un solo valore e premi TAB, calcolerò automaticamente le nuove dimensioni in modo da non modificare le proporzioni:');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Calendario di accesso veloce');
|
@define('QUICKJUMP_CALENDAR', 'Calendario di accesso veloce');
|
||||||
@@ -191,6 +191,10 @@
|
|||||||
@define('RESIZING', 'Ridimensionamento');
|
@define('RESIZING', 'Ridimensionamento');
|
||||||
@define('RESIZE_DONE', 'Fatto (ridimensionate %s immagini).');
|
@define('RESIZE_DONE', 'Fatto (ridimensionate %s immagini).');
|
||||||
@define('SYNCING', 'Sincronizzazione del database con la cartella delle immagini');
|
@define('SYNCING', 'Sincronizzazione del database con la cartella delle immagini');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Fatto (Sincronizzate %s immagini).');
|
@define('SYNC_DONE', 'Fatto (Sincronizzate %s immagini).');
|
||||||
@define('FILE_NOT_FOUND', 'Impossibile trovare il file <b>%s</b>, forse è già stato cancellato?');
|
@define('FILE_NOT_FOUND', 'Impossibile trovare il file <b>%s</b>, forse è già stato cancellato?');
|
||||||
@define('ABORT_NOW', 'Interrompi subito');
|
@define('ABORT_NOW', 'Interrompi subito');
|
||||||
@@ -402,6 +406,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Le miniature avranno un nome nel formato: originale.[suffisso].est');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Le miniature avranno un nome nel formato: originale.[suffisso].est');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Dimensioni delle miniature');
|
@define('INSTALL_THUMBWIDTH', 'Dimensioni delle miniature');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Larghezza massima stabilita per le miniature auto-generate');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Larghezza massima stabilita per le miniature auto-generate');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'I tuoi dettagli personali');
|
@define('USERCONF_CAT_PERSONAL', 'I tuoi dettagli personali');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', '未知のエラーが生じました。ファイルはアップロードしませんでした。おそらくファイルサイズがサーバーのインストールで許可された最大サイズを超えたと思われます。ISP に確認するか、php.ini ファイルで許可されたアップロード可能な最大ファイルサイズを編集してください。');
|
@define('ERROR_UNKNOWN_NOUPLOAD', '未知のエラーが生じました。ファイルはアップロードしませんでした。おそらくファイルサイズがサーバーのインストールで許可された最大サイズを超えたと思われます。ISP に確認するか、php.ini ファイルで許可されたアップロード可能な最大ファイルサイズを編集してください。');
|
||||||
@define('GO', 'Go!');
|
@define('GO', 'Go!');
|
||||||
@define('NEWSIZE', '新規サイズ: ');
|
@define('NEWSIZE', '新規サイズ: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>リサイズ %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>リサイズ %s</b>');
|
||||||
@define('ORIGINAL_SIZE', '元サイズ: <i>%sx%s</i> ピクセル');
|
@define('ORIGINAL_SIZE', '元サイズ: <i>%sx%s</i> ピクセル');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>ここで、画像サイズを調節することができます。画像の比率を変えずにサイズ変更をしたい場合は、2 つの入力ボックスのうちの 1 つにだけ値入力して、TAB キーを押してください - 自動的に新しいサイズを計算します。したがって、イメージは台無しになりません。</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>ここで、画像サイズを調節することができます。画像の比率を変えずにサイズ変更をしたい場合は、2 つの入力ボックスのうちの 1 つにだけ値入力して、TAB キーを押してください - 自動的に新しいサイズを計算します。したがって、イメージは台無しになりません。</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'カレンダークイックジャンプ');
|
@define('QUICKJUMP_CALENDAR', 'カレンダークイックジャンプ');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'サイズ変更中');
|
@define('RESIZING', 'サイズ変更中');
|
||||||
@define('RESIZE_DONE', '終了しました (%s このイメージをサイズ変更しました)');
|
@define('RESIZE_DONE', '終了しました (%s このイメージをサイズ変更しました)');
|
||||||
@define('SYNCING', 'データベースと画像フォルダーの同期中');
|
@define('SYNCING', 'データベースと画像フォルダーの同期中');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', '終了しました (%s 個の画像を同期しました)');
|
@define('SYNC_DONE', '終了しました (%s 個の画像を同期しました)');
|
||||||
@define('FILE_NOT_FOUND', '<b>%s</b> と言う名前のファイルは既に削除されたため、恐らく見つけることができません。');
|
@define('FILE_NOT_FOUND', '<b>%s</b> と言う名前のファイルは既に削除されたため、恐らく見つけることができません。');
|
||||||
@define('ABORT_NOW', '今中断する');
|
@define('ABORT_NOW', '今中断する');
|
||||||
@@ -413,6 +417,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'サムネイルは次の書式で指定されるでしょう: オリジナル.[接尾辞].拡張子');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'サムネイルは次の書式で指定されるでしょう: オリジナル.[接尾辞].拡張子');
|
||||||
@define('INSTALL_THUMBWIDTH', 'サムネイルの大きさ');
|
@define('INSTALL_THUMBWIDTH', 'サムネイルの大きさ');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', '自動生成するサムネイルの不変の最大幅');
|
@define('INSTALL_THUMBWIDTH_DESC', '自動生成するサムネイルの不変の最大幅');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', '個人情報の詳細');
|
@define('USERCONF_CAT_PERSONAL', '個人情報の詳細');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', '알 수 없는 오류가 발생하여 파일이 업로드되지 않았습니다. 서버가 허용하는 파일 크기를 초과했을 수 있습니다. 호스팅 업체에 확인을 하거나 php.ini 파일을 수정하여 더 큰 파일을 업로드할 수 있도록 하십시오.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', '알 수 없는 오류가 발생하여 파일이 업로드되지 않았습니다. 서버가 허용하는 파일 크기를 초과했을 수 있습니다. 호스팅 업체에 확인을 하거나 php.ini 파일을 수정하여 더 큰 파일을 업로드할 수 있도록 하십시오.');
|
||||||
@define('GO', '시작!');
|
@define('GO', '시작!');
|
||||||
@define('NEWSIZE', '새로운 크기: ');
|
@define('NEWSIZE', '새로운 크기: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>크기 조절: %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>크기 조절: %s</b>');
|
||||||
@define('ORIGINAL_SIZE', '원래 크기: <i>%sx%s</i> 픽셀');
|
@define('ORIGINAL_SIZE', '원래 크기: <i>%sx%s</i> 픽셀');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>여기서 그림 크기를 조절할 수 있습니다. 비율을 유지하면서 크기를 조절하려면 입력상자 한 쪽에 값을 넣고 Tab 키를 누르면 됩니다. 비율이 유지되는 값이 자동으로 계산됩니다.</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>여기서 그림 크기를 조절할 수 있습니다. 비율을 유지하면서 크기를 조절하려면 입력상자 한 쪽에 값을 넣고 Tab 키를 누르면 됩니다. 비율이 유지되는 값이 자동으로 계산됩니다.</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', '빨리 찾아보는 달력');
|
@define('QUICKJUMP_CALENDAR', '빨리 찾아보는 달력');
|
||||||
@@ -204,6 +204,10 @@
|
|||||||
@define('RESIZING', '크기 조절중');
|
@define('RESIZING', '크기 조절중');
|
||||||
@define('RESIZE_DONE', '완료 (%s개의 그림의 크기를 조절함).');
|
@define('RESIZE_DONE', '완료 (%s개의 그림의 크기를 조절함).');
|
||||||
@define('SYNCING', '데이터베이스를 그림 폴더와 동기화합니다');
|
@define('SYNCING', '데이터베이스를 그림 폴더와 동기화합니다');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', '완료 (%s개의 그림을 동기화함).');
|
@define('SYNC_DONE', '완료 (%s개의 그림을 동기화함).');
|
||||||
@define('FILE_NOT_FOUND', '<b>%s</b>라는 이름의 파일을 찾지 못했습니다. 이미 삭제되었을 수 있습니다.');
|
@define('FILE_NOT_FOUND', '<b>%s</b>라는 이름의 파일을 찾지 못했습니다. 이미 삭제되었을 수 있습니다.');
|
||||||
@define('ABORT_NOW', '지금 중지');
|
@define('ABORT_NOW', '지금 중지');
|
||||||
@@ -415,6 +419,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', '작은 그림은 원래이름.[접두사].확장자 식의 이름으로 생성됩니다');
|
@define('INSTALL_THUMBSUFFIX_DESC', '작은 그림은 원래이름.[접두사].확장자 식의 이름으로 생성됩니다');
|
||||||
@define('INSTALL_THUMBWIDTH', '작은 그림 크기');
|
@define('INSTALL_THUMBWIDTH', '작은 그림 크기');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', '자동 생성되는 작은 그림의 최대 크기');
|
@define('INSTALL_THUMBWIDTH_DESC', '자동 생성되는 작은 그림의 최대 크기');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', '사용자의 개인 정보');
|
@define('USERCONF_CAT_PERSONAL', '사용자의 개인 정보');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Er is een onbekende fout opgetreden, het bestand is niet verzonden. Misschien is het bestand groter dan uw server toestaat. Controleer dit bij uw provider of bewerk uw php.ini zodat deze grotere bestanden toelaat.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Er is een onbekende fout opgetreden, het bestand is niet verzonden. Misschien is het bestand groter dan uw server toestaat. Controleer dit bij uw provider of bewerk uw php.ini zodat deze grotere bestanden toelaat.');
|
||||||
@define('GO', 'Uitvoeren!');
|
@define('GO', 'Uitvoeren!');
|
||||||
@define('NEWSIZE', 'Nieuwe grootte: ');
|
@define('NEWSIZE', 'Nieuwe grootte: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Vergroten/Verkleinen %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Vergroten/Verkleinen %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Originele grootte: <i>%sx%s</i> pixels');
|
@define('ORIGINAL_SIZE', 'Originele grootte: <i>%sx%s</i> pixels');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Hier kunt u de grootte van de afbeelding aanpassen. Als u de afbeeldingsverhoudingen wilt behouden, voer dan in één van de velden een waarde in en druk op de TAB-toets -- Het programma zal dan zelf de andere grootte berekenen zodat de verhoudingen hetzelfde blijven</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Hier kunt u de grootte van de afbeelding aanpassen. Als u de afbeeldingsverhoudingen wilt behouden, voer dan in één van de velden een waarde in en druk op de TAB-toets -- Het programma zal dan zelf de andere grootte berekenen zodat de verhoudingen hetzelfde blijven</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Quickjump Kalender');
|
@define('QUICKJUMP_CALENDAR', 'Quickjump Kalender');
|
||||||
@@ -204,6 +204,10 @@
|
|||||||
@define('RESIZING', 'Grootte aanpassen');
|
@define('RESIZING', 'Grootte aanpassen');
|
||||||
@define('RESIZE_DONE', 'Gereed (%s afbeeldingen aangepast).');
|
@define('RESIZE_DONE', 'Gereed (%s afbeeldingen aangepast).');
|
||||||
@define('SYNCING', 'Bezig met het synchroniseren van de databank met de map waar de afbeeldingen in staan');
|
@define('SYNCING', 'Bezig met het synchroniseren van de databank met de map waar de afbeeldingen in staan');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Gereed (%s afbeeldingen gesynchroniseerd).');
|
@define('SYNC_DONE', 'Gereed (%s afbeeldingen gesynchroniseerd).');
|
||||||
@define('FILE_NOT_FOUND', 'Kan bestand <b>%s</b> niet vinden, mogelijk is deze reeds verwijderd.');
|
@define('FILE_NOT_FOUND', 'Kan bestand <b>%s</b> niet vinden, mogelijk is deze reeds verwijderd.');
|
||||||
@define('ABORT_NOW', 'Annuleren');
|
@define('ABORT_NOW', 'Annuleren');
|
||||||
@@ -415,6 +419,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniaturen krijgen een naam volgens het formaat: origineel.[achtervoegsel].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniaturen krijgen een naam volgens het formaat: origineel.[achtervoegsel].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Formaat miniaturen');
|
@define('INSTALL_THUMBWIDTH', 'Formaat miniaturen');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Maximale breedte van automatisch aangemaakte miniaturen');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Maximale breedte van automatisch aangemaakte miniaturen');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Uw persoonlijke gegevens');
|
@define('USERCONF_CAT_PERSONAL', 'Uw persoonlijke gegevens');
|
||||||
|
|||||||
@@ -83,7 +83,7 @@
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Feil: Filen finnes allerede på din maskin!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Feil: Filen finnes allerede på din maskin!');
|
||||||
@define('GO', 'Begynn!');
|
@define('GO', 'Begynn!');
|
||||||
@define('NEWSIZE', 'Ny størrelse: ');
|
@define('NEWSIZE', 'Ny størrelse: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Endre størrelse på %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Endre størrelse på %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Original størrelse: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Original størrelse: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Her kan du justere bildets størrelse. Hvis du vil bevare proporsjonene, behøver du bare taste en av verdiene og trykke på TAB-tasten. Jeg vil automatisk beregne den andre verdien:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Her kan du justere bildets størrelse. Hvis du vil bevare proporsjonene, behøver du bare taste en av verdiene og trykke på TAB-tasten. Jeg vil automatisk beregne den andre verdien:');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Hurtigkalender');
|
@define('QUICKJUMP_CALENDAR', 'Hurtigkalender');
|
||||||
@@ -184,6 +184,10 @@
|
|||||||
@define('RESIZING', 'Endre dimensjoner');
|
@define('RESIZING', 'Endre dimensjoner');
|
||||||
@define('RESIZE_DONE', 'Ferdig (Endret %s bilder).');
|
@define('RESIZE_DONE', 'Ferdig (Endret %s bilder).');
|
||||||
@define('SYNCING', 'Synkronisere databasen med bildemappen');
|
@define('SYNCING', 'Synkronisere databasen med bildemappen');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Ferdig (Synkroniserte %s bilder).');
|
@define('SYNC_DONE', 'Ferdig (Synkroniserte %s bilder).');
|
||||||
@define('DELETE_IMAGE_FAIL' , 'Kunne ikke slette bildet <b>%s</b>');
|
@define('DELETE_IMAGE_FAIL' , 'Kunne ikke slette bildet <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Slettet bildet med navn <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Slettet bildet med navn <b>%s</b>');
|
||||||
@@ -374,6 +378,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails vil bli gitt navn etter følgende mønster: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails vil bli gitt navn etter følgende mønster: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Thumbnail-dimensjoner');
|
@define('INSTALL_THUMBWIDTH', 'Thumbnail-dimensjoner');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Statisk maksimalbredde på en auto-genereret thumbnail');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Statisk maksimalbredde på en auto-genereret thumbnail');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Dine personlige detaljer');
|
@define('USERCONF_CAT_PERSONAL', 'Dine personlige detaljer');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Wystąpił nieznany błąd, plik nie został załadowany. Być może konfiguracja serwera nie zezwala na przesyłanie tak dużych plików. Sprawdź to u swojego ISP lub wyedytuj odpowiednio plik php.ini (jeśli masz dostęp do konfiguracji serwera) by zezwolić na przesyłanie większych plików.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Wystąpił nieznany błąd, plik nie został załadowany. Być może konfiguracja serwera nie zezwala na przesyłanie tak dużych plików. Sprawdź to u swojego ISP lub wyedytuj odpowiednio plik php.ini (jeśli masz dostęp do konfiguracji serwera) by zezwolić na przesyłanie większych plików.');
|
||||||
@define('GO', 'Start!');
|
@define('GO', 'Start!');
|
||||||
@define('NEWSIZE', 'Nowy rozmiar: ');
|
@define('NEWSIZE', 'Nowy rozmiar: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Zmieñ rozmiar: %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Zmieñ rozmiar: %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Oryginalny rozmiar: <i>%sx%s</i> pikseli');
|
@define('ORIGINAL_SIZE', 'Oryginalny rozmiar: <i>%sx%s</i> pikseli');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Tu możesz zmienić rozmiar obrazka. Jeśli chcesz zmienić rozmiar proporcjonalnie, zaznacz odpowiednią opcję, wpisz wartość w jedno z pól i wciśnij TAB - nowy rozmiar dla drugiej wartości zostanie automatycznie obliczony, tak by proporcje obrazka zostały zachowane.</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Tu możesz zmienić rozmiar obrazka. Jeśli chcesz zmienić rozmiar proporcjonalnie, zaznacz odpowiednią opcję, wpisz wartość w jedno z pól i wciśnij TAB - nowy rozmiar dla drugiej wartości zostanie automatycznie obliczony, tak by proporcje obrazka zostały zachowane.</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Kalendarz szybkiego dostępu');
|
@define('QUICKJUMP_CALENDAR', 'Kalendarz szybkiego dostępu');
|
||||||
@@ -204,6 +204,10 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
|||||||
@define('RESIZING', 'Zmieniam rozmiar');
|
@define('RESIZING', 'Zmieniam rozmiar');
|
||||||
@define('RESIZE_DONE', 'Zrobione (ilość obrazków, którym zmieniono rozmiar: %s).');
|
@define('RESIZE_DONE', 'Zrobione (ilość obrazków, którym zmieniono rozmiar: %s).');
|
||||||
@define('SYNCING', 'Synchronizacja bazy danych z katalogiem obrazków');
|
@define('SYNCING', 'Synchronizacja bazy danych z katalogiem obrazków');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Zrobione (%s obrazków zsynchronizowanych).');
|
@define('SYNC_DONE', 'Zrobione (%s obrazków zsynchronizowanych).');
|
||||||
@define('FILE_NOT_FOUND', 'Nie można odnalzeźć pliku <b>%s</b>. Być może został już usunięty?');
|
@define('FILE_NOT_FOUND', 'Nie można odnalzeźć pliku <b>%s</b>. Być może został już usunięty?');
|
||||||
@define('ABORT_NOW', 'Przerwij teraz');
|
@define('ABORT_NOW', 'Przerwij teraz');
|
||||||
@@ -415,6 +419,14 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniaturki będą nazywane według następującego formatu: nazwaoryginalna.[sufiks].rozszerzenie');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniaturki będą nazywane według następującego formatu: nazwaoryginalna.[sufiks].rozszerzenie');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Szerokość miniaturki');
|
@define('INSTALL_THUMBWIDTH', 'Szerokość miniaturki');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Ustal szerokość tworzonych automatycznie miniatur');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Ustal szerokość tworzonych automatycznie miniatur');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Twoje ustawienia osobiste');
|
@define('USERCONF_CAT_PERSONAL', 'Twoje ustawienia osobiste');
|
||||||
|
|||||||
@@ -84,7 +84,7 @@
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Erro: Arquivo já existe em sua máquina!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Erro: Arquivo já existe em sua máquina!');
|
||||||
@define('GO', 'Vai!');
|
@define('GO', 'Vai!');
|
||||||
@define('NEWSIZE', 'Novo tamanho: ');
|
@define('NEWSIZE', 'Novo tamanho: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Redimensionar %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Redimensionar %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Tamanho original: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Tamanho original: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aqui você pode ajustar o novo tamanho das imagens. Se pretende manter as proporções, preencha apenas um valor e pressione a tecla TAB que automaticamente será calculado o novo tamanho de modo que as proporções não fiquem bagunçadas:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aqui você pode ajustar o novo tamanho das imagens. Se pretende manter as proporções, preencha apenas um valor e pressione a tecla TAB que automaticamente será calculado o novo tamanho de modo que as proporções não fiquem bagunçadas:');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Calendário de acesso rápido');
|
@define('QUICKJUMP_CALENDAR', 'Calendário de acesso rápido');
|
||||||
@@ -184,6 +184,10 @@
|
|||||||
@define('RESIZING', 'Redimensionando');
|
@define('RESIZING', 'Redimensionando');
|
||||||
@define('RESIZE_DONE', 'Pronto (%s imagens redimensionadas).');
|
@define('RESIZE_DONE', 'Pronto (%s imagens redimensionadas).');
|
||||||
@define('SYNCING', 'Sincronizando o banco de dados com o diretório de imagens');
|
@define('SYNCING', 'Sincronizando o banco de dados com o diretório de imagens');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Pronto (%s imagens sincronizadas).');
|
@define('SYNC_DONE', 'Pronto (%s imagens sincronizadas).');
|
||||||
@define('DELETE_IMAGE_FAIL' , 'Não foi possível excluir a imagem <b>%s</b>');
|
@define('DELETE_IMAGE_FAIL' , 'Não foi possível excluir a imagem <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Excluir a miniatura da imagem intitulada <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Excluir a miniatura da imagem intitulada <b>%s</b>');
|
||||||
@@ -395,6 +399,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'As miniaturas serão nomeadas com o seguinte formato: original.[sufixo].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'As miniaturas serão nomeadas com o seguinte formato: original.[sufixo].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Dimensão das miniaturas ');
|
@define('INSTALL_THUMBWIDTH', 'Dimensão das miniaturas ');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Largura máxima estática das miniaturas geradas automaticamente');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Largura máxima estática das miniaturas geradas automaticamente');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Detalhes pessoais');
|
@define('USERCONF_CAT_PERSONAL', 'Detalhes pessoais');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
@define('ERROR_FILE_EXISTS_ALREADY', 'Erro: O ficheiro já existe no seu servidor!');
|
@define('ERROR_FILE_EXISTS_ALREADY', 'Erro: O ficheiro já existe no seu servidor!');
|
||||||
@define('GO', 'Vamos!');
|
@define('GO', 'Vamos!');
|
||||||
@define('NEWSIZE', 'Novo tamanho: ');
|
@define('NEWSIZE', 'Novo tamanho: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Redimensionar %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Redimensionar %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Tamanho original: <i>%sx%s</i> pixéis');
|
@define('ORIGINAL_SIZE', 'Tamanho original: <i>%sx%s</i> pixéis');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aqui pode ajustar o novo tamanho das suas imagens. Se pretender manter as proporções, preencha apenas um valor e pressione a tecla TAB de maneira a ser automaticamente calculado o novo tamanho de modo às proporções não ficarem erradas:');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aqui pode ajustar o novo tamanho das suas imagens. Se pretender manter as proporções, preencha apenas um valor e pressione a tecla TAB de maneira a ser automaticamente calculado o novo tamanho de modo às proporções não ficarem erradas:');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Calendário de acesso rápido');
|
@define('QUICKJUMP_CALENDAR', 'Calendário de acesso rápido');
|
||||||
@@ -190,6 +190,10 @@
|
|||||||
@define('RESIZING', 'Redimensionando');
|
@define('RESIZING', 'Redimensionando');
|
||||||
@define('RESIZE_DONE', 'Pronto (%s imagens redimensionadas).');
|
@define('RESIZE_DONE', 'Pronto (%s imagens redimensionadas).');
|
||||||
@define('SYNCING', 'Sincronizando a base de dados com a directoria de imagens');
|
@define('SYNCING', 'Sincronizando a base de dados com a directoria de imagens');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Pronto (%s imagens sincronizadas).');
|
@define('SYNC_DONE', 'Pronto (%s imagens sincronizadas).');
|
||||||
@define('DELETE_IMAGE_FAIL' , 'Não foi possível excluir a imagem <b>%s</b>');
|
@define('DELETE_IMAGE_FAIL' , 'Não foi possível excluir a imagem <b>%s</b>');
|
||||||
@define('DELETE_THUMBNAIL', 'Excluir a miniatura da imagem entitulada <b>%s</b>');
|
@define('DELETE_THUMBNAIL', 'Excluir a miniatura da imagem entitulada <b>%s</b>');
|
||||||
@@ -402,6 +406,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'As miniaturas serão nomeadas com o seguinte formato: original.[sufixo].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'As miniaturas serão nomeadas com o seguinte formato: original.[sufixo].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Dimensão das miniaturas ');
|
@define('INSTALL_THUMBWIDTH', 'Dimensão das miniaturas ');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Largura máxima estática das miniaturas geradas automaticamente');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Largura máxima estática das miniaturas geradas automaticamente');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Detalhes pessoais');
|
@define('USERCONF_CAT_PERSONAL', 'Detalhes pessoais');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Am dat peste o eroare necunoscută, nu am încărcat fişierul. Poate că mărimea fişierului este mai mare decât maximul admis de server. Ia legătură cu ISP-ul tău sau editează fişierul php.ini pentru a permite imagini mai mari.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Am dat peste o eroare necunoscută, nu am încărcat fişierul. Poate că mărimea fişierului este mai mare decât maximul admis de server. Ia legătură cu ISP-ul tău sau editează fişierul php.ini pentru a permite imagini mai mari.');
|
||||||
@define('GO', 'Du-te!');
|
@define('GO', 'Du-te!');
|
||||||
@define('NEWSIZE', 'Noua mărime: ');
|
@define('NEWSIZE', 'Noua mărime: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Redimensionează %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Redimensionează %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Mărime originală: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Mărime originală: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aici poţi ajusta mărimea imaginii. Dacă vrei să redimensionezi imaginea proporţional, introdu o valoare doar în una din cele 2 câmpuri şi apasă tastat TAB -- Voi calcula automat cealaltă mărime astfel încât proporţiile imaginii să nu fie alterate</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aici poţi ajusta mărimea imaginii. Dacă vrei să redimensionezi imaginea proporţional, introdu o valoare doar în una din cele 2 câmpuri şi apasă tastat TAB -- Voi calcula automat cealaltă mărime astfel încât proporţiile imaginii să nu fie alterate</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Calendar Rapid');
|
@define('QUICKJUMP_CALENDAR', 'Calendar Rapid');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'Redimensionez');
|
@define('RESIZING', 'Redimensionez');
|
||||||
@define('RESIZE_DONE', 'Gata (am redimensionat %s imagini).');
|
@define('RESIZE_DONE', 'Gata (am redimensionat %s imagini).');
|
||||||
@define('SYNCING', 'Sincronizez baza de date cu directorul cu imagini');
|
@define('SYNCING', 'Sincronizez baza de date cu directorul cu imagini');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Gata (am sincronizat %s imagini).');
|
@define('SYNC_DONE', 'Gata (am sincronizat %s imagini).');
|
||||||
@define('FILE_NOT_FOUND', 'Nu pot localiza fişierul denumit <b>%s</b>, poate că a fost şters deja ?');
|
@define('FILE_NOT_FOUND', 'Nu pot localiza fişierul denumit <b>%s</b>, poate că a fost şters deja ?');
|
||||||
@define('ABORT_NOW', 'Abandonează acum');
|
@define('ABORT_NOW', 'Abandonează acum');
|
||||||
@@ -413,6 +417,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniaturile vor fi numite după formatul: numeoriginal.[suffix].extensie');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniaturile vor fi numite după formatul: numeoriginal.[suffix].extensie');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Dimensiuni miniaturi');
|
@define('INSTALL_THUMBWIDTH', 'Dimensiuni miniaturi');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Valori statice maxime pentru miniaturile auto-generate');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Valori statice maxime pentru miniaturile auto-generate');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Detalii personale');
|
@define('USERCONF_CAT_PERSONAL', 'Detalii personale');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Произошла неизвестная ошибка, файл не был загружен. Возможно, размер вашего файл превысил допустивый максимальный размер, разрешённый на вашем сервере. Сверьтесь с вашим провайдером, или отредактируйте ваш файл php.ini чтобы позволить загрузку на сервер файлов большего размера.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Произошла неизвестная ошибка, файл не был загружен. Возможно, размер вашего файл превысил допустивый максимальный размер, разрешённый на вашем сервере. Сверьтесь с вашим провайдером, или отредактируйте ваш файл php.ini чтобы позволить загрузку на сервер файлов большего размера.');
|
||||||
@define('GO', 'Давай!');
|
@define('GO', 'Давай!');
|
||||||
@define('NEWSIZE', 'Новый размер: ');
|
@define('NEWSIZE', 'Новый размер: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Изменить размеры %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Изменить размеры %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Оригинальный размер: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Оригинальный размер: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Здесь вы можете изменить размер изображения. Если вы хотите изменить размеры пропорционально, просто введите значение в одном из двух полей, и нажмите клавишу TAB - второе поле будет заполнено автоматически с учётом пропорций изображения.</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Здесь вы можете изменить размер изображения. Если вы хотите изменить размеры пропорционально, просто введите значение в одном из двух полей, и нажмите клавишу TAB - второе поле будет заполнено автоматически с учётом пропорций изображения.</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Календарь');
|
@define('QUICKJUMP_CALENDAR', 'Календарь');
|
||||||
@@ -205,6 +205,10 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('RESIZING', 'Изменение размеров');
|
@define('RESIZING', 'Изменение размеров');
|
||||||
@define('RESIZE_DONE', 'Готово! (Изменено изображений: %s).');
|
@define('RESIZE_DONE', 'Готово! (Изменено изображений: %s).');
|
||||||
@define('SYNCING', 'Синхронизация базы данных с каталогом изображений');
|
@define('SYNCING', 'Синхронизация базы данных с каталогом изображений');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Готово! (Синхронизировано изображений: %s).');
|
@define('SYNC_DONE', 'Готово! (Синхронизировано изображений: %s).');
|
||||||
@define('FILE_NOT_FOUND', 'Невозможно найти файл <b>%s</b>, может быть он уже был удалён?');
|
@define('FILE_NOT_FOUND', 'Невозможно найти файл <b>%s</b>, может быть он уже был удалён?');
|
||||||
@define('ABORT_NOW', 'Отмена');
|
@define('ABORT_NOW', 'Отмена');
|
||||||
@@ -416,6 +420,14 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Тамбнэйлы будут создаваться в соответствии с форматом: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Тамбнэйлы будут создаваться в соответствии с форматом: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Размеры тамбнэйлов');
|
@define('INSTALL_THUMBWIDTH', 'Размеры тамбнэйлов');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Максимальная ширина автоматически создаваемых тамбнэйлов');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Максимальная ширина автоматически создаваемых тамбнэйлов');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Личные настройки');
|
@define('USERCONF_CAT_PERSONAL', 'Личные настройки');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'حصل خطأ غير معروف! ! ! لم يتمل رفع الملف – من الممكن أن يكون الملف أكبر من حجم الملف لمصرح برفعه ! ! ! أفحص ISP أو قم بتحرير ملف php.ini كي تسمح برفع الملفات الكبيرة');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'حصل خطأ غير معروف! ! ! لم يتمل رفع الملف – من الممكن أن يكون الملف أكبر من حجم الملف لمصرح برفعه ! ! ! أفحص ISP أو قم بتحرير ملف php.ini كي تسمح برفع الملفات الكبيرة');
|
||||||
@define('GO', 'أكمل!');
|
@define('GO', 'أكمل!');
|
||||||
@define('NEWSIZE', 'المقاس الجديد: ');
|
@define('NEWSIZE', 'المقاس الجديد: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>تغيير المقاييس %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>ÊÛííÑ ÇáãÞÇííÓ %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'الحجم الاصلي <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'الحجم الاصلي <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>يمكن لك تغيير قياسات الصورة - ان كنت تريد تغيير قياسات الصورة بأطوال متناسبة - كل ما عليك هو ادخل القياس الجديد في احد الصندوقين ثم أضغط زر Tab -- سوف تعطيك اتماتيكياً الحجم المناسب للقياس الجديد - لذلك الصورة سوف تستمر بشكلها الأصلي و لا تفقد شكل توازنها</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>يمكن لك تغيير قياسات الصورة - ان كنت تريد تغيير قياسات الصورة بأطوال متناسبة - كل ما عليك هو ادخل القياس الجديد في احد الصندوقين ثم أضغط زر Tab -- سوف تعطيك اتماتيكياً الحجم المناسب للقياس الجديد - لذلك الصورة سوف تستمر بشكلها الأصلي و لا تفقد شكل توازنها</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'QuickJump Calendar');
|
@define('QUICKJUMP_CALENDAR', 'QuickJump Calendar');
|
||||||
@@ -203,6 +203,10 @@
|
|||||||
@define('RESIZING', 'تغير الحجم');
|
@define('RESIZING', 'تغير الحجم');
|
||||||
@define('RESIZE_DONE', 'تم (تغيير قياسات %s صورة).');
|
@define('RESIZE_DONE', 'تم (تغيير قياسات %s صورة).');
|
||||||
@define('SYNCING', 'ضبط قاعدة البيانات مع مجلد الصور');
|
@define('SYNCING', 'ضبط قاعدة البيانات مع مجلد الصور');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Done (ضبط %s الصور).');
|
@define('SYNC_DONE', 'Done (ضبط %s الصور).');
|
||||||
@define('FILE_NOT_FOUND', 'لم يتم إيجاد الملف <b>%s</b>, من الممكن أن يكون قد حذف؟');
|
@define('FILE_NOT_FOUND', 'لم يتم إيجاد الملف <b>%s</b>, من الممكن أن يكون قد حذف؟');
|
||||||
@define('ABORT_NOW', 'توقف الآن');
|
@define('ABORT_NOW', 'توقف الآن');
|
||||||
@@ -414,6 +418,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'سوف يعطى للصور المصغرة االأسم والصيغة التالية: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'سوف يعطى للصور المصغرة االأسم والصيغة التالية: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'قياسات الصورة المصغرة');
|
@define('INSTALL_THUMBWIDTH', 'قياسات الصورة المصغرة');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'العرض الثابت لصور المصغرة المنشئة أتماتيكياً');
|
@define('INSTALL_THUMBWIDTH_DESC', 'العرض الثابت لصور المصغرة المنشئة أتماتيكياً');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'تفصيل اعدادتك الشخصية');
|
@define('USERCONF_CAT_PERSONAL', 'تفصيل اعدادتك الشخصية');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Ett okänt fel inträffade och filen laddades inte upp. Filstorleken är kanske större än vad som tillåts av din serverinstallation. Kolla med din tjänsteleverantör eller ändra i filen php.ini för att tillåta uppladdning av större filer.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Ett okänt fel inträffade och filen laddades inte upp. Filstorleken är kanske större än vad som tillåts av din serverinstallation. Kolla med din tjänsteleverantör eller ändra i filen php.ini för att tillåta uppladdning av större filer.');
|
||||||
@define('GO', 'Kör!');
|
@define('GO', 'Kör!');
|
||||||
@define('NEWSIZE', 'Ny storlek: ');
|
@define('NEWSIZE', 'Ny storlek: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Ändra storlek på %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Ändra storlek på %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Ursprunglig storlek: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Ursprunglig storlek: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Här kan du anpassa bildstorleken. Om du vill ändra storlek proportionellt, ändra bara ett värde i något av de två fälten och tryck på TAB - Då ändras automatiskt storleken automatiskt så att bildens proportioner bibehålls</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Här kan du anpassa bildstorleken. Om du vill ändra storlek proportionellt, ändra bara ett värde i något av de två fälten och tryck på TAB - Då ändras automatiskt storleken automatiskt så att bildens proportioner bibehålls</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Snabbkalender');
|
@define('QUICKJUMP_CALENDAR', 'Snabbkalender');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'Ändrar storlek');
|
@define('RESIZING', 'Ändrar storlek');
|
||||||
@define('RESIZE_DONE', 'Klar (böt storlek på %s bilder).');
|
@define('RESIZE_DONE', 'Klar (böt storlek på %s bilder).');
|
||||||
@define('SYNCING', 'Synkroniserar databasen med bildkatalogen');
|
@define('SYNCING', 'Synkroniserar databasen med bildkatalogen');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Klar (synkroniserade %s bilder).');
|
@define('SYNC_DONE', 'Klar (synkroniserade %s bilder).');
|
||||||
@define('FILE_NOT_FOUND', 'Kunde inte hitta filen <b>%s</b>, kanske är den redan borttagen?');
|
@define('FILE_NOT_FOUND', 'Kunde inte hitta filen <b>%s</b>, kanske är den redan borttagen?');
|
||||||
@define('ABORT_NOW', 'Avbryt nu');
|
@define('ABORT_NOW', 'Avbryt nu');
|
||||||
@@ -413,6 +417,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniatyrer kommer att döpas enligt följande format: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Miniatyrer kommer att döpas enligt följande format: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Miniatyrbildsdimensioner');
|
@define('INSTALL_THUMBWIDTH', 'Miniatyrbildsdimensioner');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Statisk max-bredd för auto-genererade miniatyrbilder');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Statisk max-bredd för auto-genererade miniatyrbilder');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Din personliga information');
|
@define('USERCONF_CAT_PERSONAL', 'Din personliga information');
|
||||||
|
|||||||
@@ -88,7 +88,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Unknown error occurred, file not uploaded. Maybe your filesize is larger than the maximum size allowed by your server installation. Check with your ISP or edit your php.ini file to allow larger file size uploads.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Unknown error occurred, file not uploaded. Maybe your filesize is larger than the maximum size allowed by your server installation. Check with your ISP or edit your php.ini file to allow larger file size uploads.');
|
||||||
@define('GO','செயல்படுத்துக!');
|
@define('GO','செயல்படுத்துக!');
|
||||||
@define('NEWSIZE', 'New size: ');
|
@define('NEWSIZE', 'New size: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Resize %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Resize %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Original size: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Original size: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Here, you can adjust the image size. If you want to resize the image proportionally, just enter a value in one of the two boxes and press the TAB key -- I will automatically calculate the new size so the image proportions do not get messed up</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Here, you can adjust the image size. If you want to resize the image proportionally, just enter a value in one of the two boxes and press the TAB key -- I will automatically calculate the new size so the image proportions do not get messed up</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'QuickJump Calendar');
|
@define('QUICKJUMP_CALENDAR', 'QuickJump Calendar');
|
||||||
@@ -202,6 +202,10 @@
|
|||||||
@define('RESIZING', 'வலைபொருள்கள் சிறிதாக்கப்படுகின்றன');
|
@define('RESIZING', 'வலைபொருள்கள் சிறிதாக்கப்படுகின்றன');
|
||||||
@define('RESIZE_DONE', '%s வலைபொருள்கள் சிறிதாக்கப்பட்டுவிட்டன.');
|
@define('RESIZE_DONE', '%s வலைபொருள்கள் சிறிதாக்கப்பட்டுவிட்டன.');
|
||||||
@define('SYNCING', 'வலைபொருள் இருப்பிடங்கள் உறுதிப்படுத்தப்படுகின்றன...');
|
@define('SYNCING', 'வலைபொருள் இருப்பிடங்கள் உறுதிப்படுத்தப்படுகின்றன...');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', '%s வலைபொருள் இருப்பிடங்கள் உறுதிப்படுத்தப்படுத்தப்பட்டுவிட்டன.');
|
@define('SYNC_DONE', '%s வலைபொருள் இருப்பிடங்கள் உறுதிப்படுத்தப்படுத்தப்பட்டுவிட்டன.');
|
||||||
@define('FILE_NOT_FOUND', 'நீங்கள் தேடிய கணிபொறிக்ககோப்பு <b>%s</b> காணவில்லை. ஒருவேளை அது முன்பே நீக்கப்பட்டுவிட்டதோ?');
|
@define('FILE_NOT_FOUND', 'நீங்கள் தேடிய கணிபொறிக்ககோப்பு <b>%s</b> காணவில்லை. ஒருவேளை அது முன்பே நீக்கப்பட்டுவிட்டதோ?');
|
||||||
@define('ABORT_NOW', 'இக்கணமே நிறுத்து!');
|
@define('ABORT_NOW', 'இக்கணமே நிறுத்து!');
|
||||||
@@ -413,6 +417,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails will be named with the following format: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Thumbnails will be named with the following format: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Thumbnail dimensions');
|
@define('INSTALL_THUMBWIDTH', 'Thumbnail dimensions');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Static maximum width of auto-generated thumbnails');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Static maximum width of auto-generated thumbnails');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'உங்கள் நிலைகள்');
|
@define('USERCONF_CAT_PERSONAL', 'உங்கள் நிலைகள்');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ $i18n_unknown = 'tw';
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', '未知的錯誤發生, 檔案還沒上傳. 也許你的檔案大於限制的大小. 請詢問您的 ISP 或修改您的 php.ini 檔.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', '未知的錯誤發生, 檔案還沒上傳. 也許你的檔案大於限制的大小. 請詢問您的 ISP 或修改您的 php.ini 檔.');
|
||||||
@define('GO', '繼續!');
|
@define('GO', '繼續!');
|
||||||
@define('NEWSIZE', '新大小: ');
|
@define('NEWSIZE', '新大小: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>重設大小 %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>重設大小 %s</b>');
|
||||||
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在這裡您可以修改圖片大小. 如果您要修改成相同的圖片比例, 您只需要輸入一個數值然後按 TAB -- 系統會自動幫您計算比例以免出錯</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在這裡您可以修改圖片大小. 如果您要修改成相同的圖片比例, 您只需要輸入一個數值然後按 TAB -- 系統會自動幫您計算比例以免出錯</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', '日曆快速跳躍');
|
@define('QUICKJUMP_CALENDAR', '日曆快速跳躍');
|
||||||
@@ -204,6 +204,10 @@ $i18n_unknown = 'tw';
|
|||||||
@define('RESIZING', '重設大小');
|
@define('RESIZING', '重設大小');
|
||||||
@define('RESIZE_DONE', '完成 (重設 %s 個圖片).');
|
@define('RESIZE_DONE', '完成 (重設 %s 個圖片).');
|
||||||
@define('SYNCING', '進行資料庫和圖片檔案夾同步化');
|
@define('SYNCING', '進行資料庫和圖片檔案夾同步化');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', '完成 (同步了 %s 個圖片).');
|
@define('SYNC_DONE', '完成 (同步了 %s 個圖片).');
|
||||||
@define('FILE_NOT_FOUND', '找不到檔案名稱 <b>%s</b>, 也許已經被刪除了?');
|
@define('FILE_NOT_FOUND', '找不到檔案名稱 <b>%s</b>, 也許已經被刪除了?');
|
||||||
@define('ABORT_NOW', '放棄');
|
@define('ABORT_NOW', '放棄');
|
||||||
@@ -415,6 +419,14 @@ $i18n_unknown = 'tw';
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', '縮圖會以下面的格式重新命名: 原檔名.[後置字元].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', '縮圖會以下面的格式重新命名: 原檔名.[後置字元].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', '縮圖尺度');
|
@define('INSTALL_THUMBWIDTH', '縮圖尺度');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', '自動建立縮圖的最大寬度');
|
@define('INSTALL_THUMBWIDTH_DESC', '自動建立縮圖的最大寬度');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', '個人資料設定');
|
@define('USERCONF_CAT_PERSONAL', '個人資料設定');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', 'Bilinmeyen hata oluştu, dosya yüklenemedi.Dosyanız sunucunuzda izin verilen boyuttan daha büyük olabilir.Servis sağlayıcınızdan araştırın ya da php.ini dosyanızı daha büyük boyutta dosya yüklenmesine izin verecek şekilde ayarlayın.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', 'Bilinmeyen hata oluştu, dosya yüklenemedi.Dosyanız sunucunuzda izin verilen boyuttan daha büyük olabilir.Servis sağlayıcınızdan araştırın ya da php.ini dosyanızı daha büyük boyutta dosya yüklenmesine izin verecek şekilde ayarlayın.');
|
||||||
@define('GO', 'Git!');
|
@define('GO', 'Git!');
|
||||||
@define('NEWSIZE', 'Yeni boyut: ');
|
@define('NEWSIZE', 'Yeni boyut: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>Yeniden boyutlandır %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>Yeniden boyutlandır %s</b>');
|
||||||
@define('ORIGINAL_SIZE', 'Özgün boyut: <i>%sx%s</i> pixel');
|
@define('ORIGINAL_SIZE', 'Özgün boyut: <i>%sx%s</i> pixel');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Burada resmi yeniden boyutlandırabilirsiniz. Eğer resim özelliklerini değiştirmek istiyorsanız,İki kutudan birine bir değer girin ve TAB tuşuna basın -- Otomatik olarak resminiz yeniden boyutlandırılacaktır</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Burada resmi yeniden boyutlandırabilirsiniz. Eğer resim özelliklerini değiştirmek istiyorsanız,İki kutudan birine bir değer girin ve TAB tuşuna basın -- Otomatik olarak resminiz yeniden boyutlandırılacaktır</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', 'Ajandaya hızlı bakış');
|
@define('QUICKJUMP_CALENDAR', 'Ajandaya hızlı bakış');
|
||||||
@@ -204,6 +204,10 @@
|
|||||||
@define('RESIZING', 'Yeniden hizalama');
|
@define('RESIZING', 'Yeniden hizalama');
|
||||||
@define('RESIZE_DONE', 'Tamamlandı (resim %s hizalandı).');
|
@define('RESIZE_DONE', 'Tamamlandı (resim %s hizalandı).');
|
||||||
@define('SYNCING', 'Veritabanı ile resimler dizini eşleniyor');
|
@define('SYNCING', 'Veritabanı ile resimler dizini eşleniyor');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', 'Tamamlandı (Eşlendi %s resimler).');
|
@define('SYNC_DONE', 'Tamamlandı (Eşlendi %s resimler).');
|
||||||
@define('FILE_NOT_FOUND', 'Başlıklı dosyaya erişilemedi <b>%s</b>, silinmiş olabilir');
|
@define('FILE_NOT_FOUND', 'Başlıklı dosyaya erişilemedi <b>%s</b>, silinmiş olabilir');
|
||||||
@define('ABORT_NOW', 'İptal et');
|
@define('ABORT_NOW', 'İptal et');
|
||||||
@@ -415,6 +419,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', 'Küçükresimler izleyen şekilde adlandırılacak: original.[suffix].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', 'Küçükresimler izleyen şekilde adlandırılacak: original.[suffix].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', 'Küçükresim boyutları');
|
@define('INSTALL_THUMBWIDTH', 'Küçükresim boyutları');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', 'Küçükresim oluşturma işlemi için izin verilen enbüyük genişlik boyutu');
|
@define('INSTALL_THUMBWIDTH_DESC', 'Küçükresim oluşturma işlemi için izin verilen enbüyük genişlik boyutu');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', 'Kişisel bilgileriniz');
|
@define('USERCONF_CAT_PERSONAL', 'Kişisel bilgileriniz');
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ $i18n_unknown = 'tw';
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', '未知的錯誤發生, 檔案還沒上傳. 也許你的檔案大於限制的大小. 請詢問您的 ISP 或修改您的 php.ini 檔.');
|
@define('ERROR_UNKNOWN_NOUPLOAD', '未知的錯誤發生, 檔案還沒上傳. 也許你的檔案大於限制的大小. 請詢問您的 ISP 或修改您的 php.ini 檔.');
|
||||||
@define('GO', '繼續!');
|
@define('GO', '繼續!');
|
||||||
@define('NEWSIZE', '新大小: ');
|
@define('NEWSIZE', '新大小: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>重設大小 %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>«³]¤j¤p %s</b>');
|
||||||
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在這裡您可以修改圖片大小. 如果您要修改成相同的圖片比例, 您只需要輸入一個數值然後按 TAB -- 系統會自動幫您計算比例以免出錯</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在這裡您可以修改圖片大小. 如果您要修改成相同的圖片比例, 您只需要輸入一個數值然後按 TAB -- 系統會自動幫您計算比例以免出錯</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', '日曆快速跳躍');
|
@define('QUICKJUMP_CALENDAR', '日曆快速跳躍');
|
||||||
@@ -204,6 +204,10 @@ $i18n_unknown = 'tw';
|
|||||||
@define('RESIZING', '重設大小');
|
@define('RESIZING', '重設大小');
|
||||||
@define('RESIZE_DONE', '完成 (重設 %s 個圖片).');
|
@define('RESIZE_DONE', '完成 (重設 %s 個圖片).');
|
||||||
@define('SYNCING', '進行資料庫和圖片檔案夾同步化');
|
@define('SYNCING', '進行資料庫和圖片檔案夾同步化');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', '完成 (同步了 %s 個圖片).');
|
@define('SYNC_DONE', '完成 (同步了 %s 個圖片).');
|
||||||
@define('FILE_NOT_FOUND', '找不到檔案名稱 <b>%s</b>, 也許已經被刪除了?');
|
@define('FILE_NOT_FOUND', '找不到檔案名稱 <b>%s</b>, 也許已經被刪除了?');
|
||||||
@define('ABORT_NOW', '放棄');
|
@define('ABORT_NOW', '放棄');
|
||||||
@@ -415,6 +419,14 @@ $i18n_unknown = 'tw';
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', '縮圖會以下面的格式重新命名: 原檔名.[後置字元].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', '縮圖會以下面的格式重新命名: 原檔名.[後置字元].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', '縮圖尺度');
|
@define('INSTALL_THUMBWIDTH', '縮圖尺度');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', '自動建立縮圖的最大寬度');
|
@define('INSTALL_THUMBWIDTH_DESC', '自動建立縮圖的最大寬度');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', '個人資料設定');
|
@define('USERCONF_CAT_PERSONAL', '個人資料設定');
|
||||||
|
|||||||
@@ -89,7 +89,7 @@
|
|||||||
@define('ERROR_UNKNOWN_NOUPLOAD', '发生错误, 文件没有上传,可能因为你的文件超过限制的大小, 请询问你的主机商或修改你的 php.ini 文件属性。');
|
@define('ERROR_UNKNOWN_NOUPLOAD', '发生错误, 文件没有上传,可能因为你的文件超过限制的大小, 请询问你的主机商或修改你的 php.ini 文件属性。');
|
||||||
@define('GO', '继续');
|
@define('GO', '继续');
|
||||||
@define('NEWSIZE', '大小: ');
|
@define('NEWSIZE', '大小: ');
|
||||||
@define('RESIZE_BLAHBLAH', '<b>重设大小 %s</b><p>');
|
@define('RESIZE_BLAHBLAH', '<b>ÖØÉè´óС %s</b>');
|
||||||
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
@define('ORIGINAL_SIZE', '原有的大小: <i>%sx%s</i> 像素');
|
||||||
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在这里你可以修改图片大小!如果你要修改成相同的图片比例, 你只需要输入一个数值然后按 TAB -- 系统会自动帮你计算比例以免出错。</p>');
|
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>在这里你可以修改图片大小!如果你要修改成相同的图片比例, 你只需要输入一个数值然后按 TAB -- 系统会自动帮你计算比例以免出错。</p>');
|
||||||
@define('QUICKJUMP_CALENDAR', '日历快速跳跃');
|
@define('QUICKJUMP_CALENDAR', '日历快速跳跃');
|
||||||
@@ -203,6 +203,10 @@
|
|||||||
@define('RESIZING', '重设大小');
|
@define('RESIZING', '重设大小');
|
||||||
@define('RESIZE_DONE', '完成 (重设 %s 个图片)');
|
@define('RESIZE_DONE', '完成 (重设 %s 个图片)');
|
||||||
@define('SYNCING', '进行数据库和图片文件夹数据同步');
|
@define('SYNCING', '进行数据库和图片文件夹数据同步');
|
||||||
|
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
|
||||||
|
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
|
||||||
|
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
|
||||||
|
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
|
||||||
@define('SYNC_DONE', '完成 (同步了 %s 个图片)');
|
@define('SYNC_DONE', '完成 (同步了 %s 个图片)');
|
||||||
@define('FILE_NOT_FOUND', '找不到文件 <b>%s</b>, 可能已被删除');
|
@define('FILE_NOT_FOUND', '找不到文件 <b>%s</b>, 可能已被删除');
|
||||||
@define('ABORT_NOW', '放弃');
|
@define('ABORT_NOW', '放弃');
|
||||||
@@ -414,6 +418,14 @@
|
|||||||
@define('INSTALL_THUMBSUFFIX_DESC', '缩图会以下面的格式重新命名: original.[后置字符].ext');
|
@define('INSTALL_THUMBSUFFIX_DESC', '缩图会以下面的格式重新命名: original.[后置字符].ext');
|
||||||
@define('INSTALL_THUMBWIDTH', '缩图大小');
|
@define('INSTALL_THUMBWIDTH', '缩图大小');
|
||||||
@define('INSTALL_THUMBWIDTH_DESC', '自动建立缩图的最大宽度');
|
@define('INSTALL_THUMBWIDTH_DESC', '自动建立缩图的最大宽度');
|
||||||
|
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
|
||||||
|
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
|
||||||
|
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
|
||||||
|
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
|
||||||
|
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
|
||||||
|
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
|
||||||
|
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
|
||||||
|
'" only limit the chosen dimension, so the other could be larger than the max size.');
|
||||||
|
|
||||||
/* Personal details */
|
/* Personal details */
|
||||||
@define('USERCONF_CAT_PERSONAL', '个人资料设定');
|
@define('USERCONF_CAT_PERSONAL', '个人资料设定');
|
||||||
|
|||||||
@@ -401,7 +401,7 @@ if ($use_installer) {
|
|||||||
<li class="serendipitySideBarMenuLink serendipitySideBarMenuMediaLinks"><a href="serendipity_admin.php?serendipity[adminModule]=media&serendipity[adminAction]=directorySelect"><?php echo MANAGE_DIRECTORIES; ?></a></li>
|
<li class="serendipitySideBarMenuLink serendipitySideBarMenuMediaLinks"><a href="serendipity_admin.php?serendipity[adminModule]=media&serendipity[adminAction]=directorySelect"><?php echo MANAGE_DIRECTORIES; ?></a></li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php if (serendipity_checkPermission('adminImagesSync')) { ?>
|
<?php if (serendipity_checkPermission('adminImagesSync')) { ?>
|
||||||
<li class="serendipitySideBarMenuLink serendipitySideBarMenuMediaLinks"><a href="serendipity_admin.php?serendipity[adminModule]=media&serendipity[adminAction]=sync" onclick="return confirm('<?php echo WARNING_THIS_BLAHBLAH; ?>');"><?php echo CREATE_THUMBS; ?></a></li>
|
<li class="serendipitySideBarMenuLink serendipitySideBarMenuMediaLinks"><a href="serendipity_admin.php?serendipity[adminModule]=media&serendipity[adminAction]=sync"><?php echo CREATE_THUMBS; ?></a></li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<?php if ($serendipity['no_create'] !== true) serendipity_plugin_api::hook_event('backend_sidebar_entries_images', $serendipity); ?>
|
<?php if ($serendipity['no_create'] !== true) serendipity_plugin_api::hook_event('backend_sidebar_entries_images', $serendipity); ?>
|
||||||
<li class="serendipitySideBarMenuFoot serendipitySideBarMenuMediaLinks" style="display:none"></li>
|
<li class="serendipitySideBarMenuFoot serendipitySideBarMenuMediaLinks" style="display:none"></li>
|
||||||
@@ -476,4 +476,4 @@ if ($use_installer) {
|
|||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user