mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
feature 2548, multiple size:
* adapt the upload script * remove the resize settings screen * add a new screen [Administration > Configuration > Options > Photo Sizes] with the ability to resize original after upload git-svn-id: http://piwigo.org/svn/trunk@12879 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -33,14 +33,6 @@ if (!defined('PHPWG_ROOT_PATH'))
|
||||
}
|
||||
|
||||
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
|
||||
include_once(PHPWG_ROOT_PATH.'admin/include/functions_upload.inc.php');
|
||||
|
||||
$upload_form_config = get_upload_form_config();
|
||||
foreach ($upload_form_config as $param_shortname => $param)
|
||||
{
|
||||
$param_name = 'upload_form_'.$param_shortname;
|
||||
$form_values[$param_shortname] = $conf[$param_name];
|
||||
}
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Check Access and exit when user status is not ok |
|
||||
@@ -463,7 +455,6 @@ $template->assign(
|
||||
'filter' => $_SESSION['bulk_manager_filter'],
|
||||
'selection' => $collection,
|
||||
'all_elements' => $page['cat_elements_id'],
|
||||
'upload_form_settings' => $form_values,
|
||||
'U_DISPLAY'=>$base_url.get_query_string_diff(array('display')),
|
||||
'F_ACTION'=>$base_url.get_query_string_diff(array('cat')),
|
||||
)
|
||||
|
||||
+61
-1
@@ -27,6 +27,7 @@ if( !defined("PHPWG_ROOT_PATH") )
|
||||
}
|
||||
|
||||
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
|
||||
include_once(PHPWG_ROOT_PATH.'admin/include/functions_upload.inc.php');
|
||||
include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
@@ -54,6 +55,10 @@ $main_checkboxes = array(
|
||||
'allow_user_customization',
|
||||
);
|
||||
|
||||
$sizes_checkboxes = array(
|
||||
'original_resize',
|
||||
);
|
||||
|
||||
$history_checkboxes = array(
|
||||
'log',
|
||||
'history_admin',
|
||||
@@ -182,6 +187,36 @@ if (isset($_POST['submit']))
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 'sizes' :
|
||||
{
|
||||
$fields = array(
|
||||
'original_resize',
|
||||
'original_resize_maxwidth',
|
||||
'original_resize_maxheight',
|
||||
'original_resize_quality',
|
||||
);
|
||||
|
||||
$updates = array();
|
||||
|
||||
foreach ($fields as $field)
|
||||
{
|
||||
$value = !empty($_POST[$field]) ? $_POST[$field] : null;
|
||||
$form_values[$field] = $value;
|
||||
$updates[$field] = $value;
|
||||
}
|
||||
|
||||
save_upload_form_config($updates, $page['errors']);
|
||||
|
||||
if (count($page['errors']) == 0)
|
||||
{
|
||||
array_push(
|
||||
$page['infos'],
|
||||
l10n('Your configuration settings are saved')
|
||||
);
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case 'history' :
|
||||
{
|
||||
foreach( $history_checkboxes as $checkbox)
|
||||
@@ -228,7 +263,7 @@ if (isset($_POST['submit']))
|
||||
}
|
||||
|
||||
// updating configuration if no error found
|
||||
if (count($page['errors']) == 0)
|
||||
if ('sizes' != $page['section'] and count($page['errors']) == 0)
|
||||
{
|
||||
//echo '<pre>'; print_r($_POST); echo '</pre>';
|
||||
$result = pwg_query('SELECT param FROM '.CONFIG_TABLE);
|
||||
@@ -268,6 +303,7 @@ $template->set_filename('config', 'configuration.tpl');
|
||||
$tabsheet = new tabsheet();
|
||||
// TabSheet initialization
|
||||
$tabsheet->add('main', l10n('Main'), $conf_link.'main');
|
||||
$tabsheet->add('sizes', l10n('Photo Sizes'), $conf_link.'sizes');
|
||||
$tabsheet->add('display', l10n('Display'), $conf_link.'display');
|
||||
$tabsheet->add('history', l10n('History'), $conf_link.'history');
|
||||
$tabsheet->add('comments', l10n('Comments'), $conf_link.'comments');
|
||||
@@ -439,6 +475,30 @@ switch ($page['section'])
|
||||
);
|
||||
break;
|
||||
}
|
||||
case 'sizes' :
|
||||
{
|
||||
$template->assign(
|
||||
'sizes',
|
||||
array(
|
||||
'original_resize_maxwidth' => $conf['original_resize_maxwidth'],
|
||||
'original_resize_maxheight' => $conf['original_resize_maxheight'],
|
||||
'original_resize_quality' => $conf['original_resize_quality'],
|
||||
)
|
||||
);
|
||||
|
||||
foreach ($sizes_checkboxes as $checkbox)
|
||||
{
|
||||
$template->append(
|
||||
'sizes',
|
||||
array(
|
||||
$checkbox => $conf[$checkbox]
|
||||
),
|
||||
true
|
||||
);
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
//----------------------------------------------------------- sending html code
|
||||
|
||||
@@ -32,110 +32,36 @@ function get_upload_form_config()
|
||||
{
|
||||
// default configuration for upload
|
||||
$upload_form_config = array(
|
||||
'websize_resize' => array(
|
||||
'default' => true,
|
||||
'can_be_null' => false,
|
||||
),
|
||||
|
||||
'websize_maxwidth' => array(
|
||||
'default' => 800,
|
||||
'min' => 100,
|
||||
'max' => 1600,
|
||||
'pattern' => '/^\d+$/',
|
||||
'can_be_null' => true,
|
||||
'error_message' => l10n('The websize maximum width must be a number between %d and %d'),
|
||||
),
|
||||
|
||||
'websize_maxheight' => array(
|
||||
'default' => 600,
|
||||
'min' => 100,
|
||||
'max' => 1200,
|
||||
'pattern' => '/^\d+$/',
|
||||
'can_be_null' => true,
|
||||
'error_message' => l10n('The websize maximum height must be a number between %d and %d'),
|
||||
),
|
||||
|
||||
'websize_quality' => array(
|
||||
'default' => 95,
|
||||
'min' => 50,
|
||||
'max' => 100,
|
||||
'pattern' => '/^\d+$/',
|
||||
'can_be_null' => false,
|
||||
'error_message' => l10n('The websize image quality must be a number between %d and %d'),
|
||||
),
|
||||
|
||||
'thumb_maxwidth' => array(
|
||||
'default' => 128,
|
||||
'min' => 50,
|
||||
'max' => 300,
|
||||
'pattern' => '/^\d+$/',
|
||||
'can_be_null' => false,
|
||||
'error_message' => l10n('The thumbnail maximum width must be a number between %d and %d'),
|
||||
),
|
||||
|
||||
'thumb_maxheight' => array(
|
||||
'default' => 96,
|
||||
'min' => 50,
|
||||
'max' => 300,
|
||||
'pattern' => '/^\d+$/',
|
||||
'can_be_null' => false,
|
||||
'error_message' => l10n('The thumbnail maximum height must be a number between %d and %d'),
|
||||
),
|
||||
|
||||
'thumb_quality' => array(
|
||||
'default' => 95,
|
||||
'min' => 50,
|
||||
'max' => 100,
|
||||
'pattern' => '/^\d+$/',
|
||||
'can_be_null' => false,
|
||||
'error_message' => l10n('The thumbnail image quality must be a number between %d and %d'),
|
||||
),
|
||||
|
||||
'thumb_crop' => array(
|
||||
'default' => false,
|
||||
'can_be_null' => false,
|
||||
),
|
||||
|
||||
'thumb_follow_orientation' => array(
|
||||
'default' => true,
|
||||
'can_be_null' => false,
|
||||
),
|
||||
|
||||
'hd_keep' => array(
|
||||
'default' => true,
|
||||
'can_be_null' => false,
|
||||
),
|
||||
|
||||
'hd_resize' => array(
|
||||
'original_resize' => array(
|
||||
'default' => false,
|
||||
'can_be_null' => false,
|
||||
),
|
||||
|
||||
'hd_maxwidth' => array(
|
||||
'original_resize_maxwidth' => array(
|
||||
'default' => 2000,
|
||||
'min' => 500,
|
||||
'max' => 20000,
|
||||
'pattern' => '/^\d+$/',
|
||||
'can_be_null' => false,
|
||||
'error_message' => l10n('The high definition maximum width must be a number between %d and %d'),
|
||||
'error_message' => l10n('The original maximum width must be a number between %d and %d'),
|
||||
),
|
||||
|
||||
'hd_maxheight' => array(
|
||||
'original_resize_maxheight' => array(
|
||||
'default' => 2000,
|
||||
'min' => 500,
|
||||
'min' => 300,
|
||||
'max' => 20000,
|
||||
'pattern' => '/^\d+$/',
|
||||
'can_be_null' => false,
|
||||
'error_message' => l10n('The high definition maximum height must be a number between %d and %d'),
|
||||
'error_message' => l10n('The original maximum height must be a number between %d and %d'),
|
||||
),
|
||||
|
||||
'hd_quality' => array(
|
||||
'original_resize_quality' => array(
|
||||
'default' => 95,
|
||||
'min' => 50,
|
||||
'max' => 100,
|
||||
'max' => 98,
|
||||
'pattern' => '/^\d+$/',
|
||||
'can_be_null' => false,
|
||||
'error_message' => l10n('The high definition image quality must be a number between %d and %d'),
|
||||
'error_message' => l10n('The original image quality must be a number between %d and %d'),
|
||||
),
|
||||
);
|
||||
|
||||
@@ -170,14 +96,14 @@ function save_upload_form_config($data, &$errors=array())
|
||||
}
|
||||
|
||||
$updates[] = array(
|
||||
'param' => 'upload_form_'.$field,
|
||||
'param' => $field,
|
||||
'value' => boolean_to_string($value)
|
||||
);
|
||||
}
|
||||
elseif ($upload_form_config[$field]['can_be_null'] and empty($value))
|
||||
{
|
||||
$updates[] = array(
|
||||
'param' => 'upload_form_'.$field,
|
||||
'param' => $field,
|
||||
'value' => 'false'
|
||||
);
|
||||
}
|
||||
@@ -190,7 +116,7 @@ function save_upload_form_config($data, &$errors=array())
|
||||
if (preg_match($pattern, $value) and $value >= $min and $value <= $max)
|
||||
{
|
||||
$updates[] = array(
|
||||
'param' => 'upload_form_'.$field,
|
||||
'param' => $field,
|
||||
'value' => $value
|
||||
);
|
||||
}
|
||||
@@ -226,16 +152,11 @@ function save_upload_form_config($data, &$errors=array())
|
||||
|
||||
function add_uploaded_file($source_filepath, $original_filename=null, $categories=null, $level=null, $image_id=null)
|
||||
{
|
||||
// Here is the plan
|
||||
//
|
||||
// 1) move uploaded file to upload/2010/01/22/20100122003814-449ada00.jpg
|
||||
//
|
||||
// 2) if taller than max_height or wider than max_width, move to pwg_high
|
||||
// + web sized creation
|
||||
// 2) keep/resize original
|
||||
//
|
||||
// 3) thumbnail creation from web sized
|
||||
//
|
||||
// 4) register in database
|
||||
// 3) register in database
|
||||
|
||||
// TODO
|
||||
// * check md5sum (already exists?)
|
||||
@@ -247,7 +168,7 @@ function add_uploaded_file($source_filepath, $original_filename=null, $categorie
|
||||
|
||||
if (isset($image_id))
|
||||
{
|
||||
// we are performing an update
|
||||
// this photo already exists, we update it
|
||||
$query = '
|
||||
SELECT
|
||||
path
|
||||
@@ -316,83 +237,35 @@ SELECT
|
||||
copy($source_filepath, $file_path);
|
||||
}
|
||||
|
||||
if ($conf['upload_form_websize_resize']
|
||||
and need_resize($file_path, $conf['upload_form_websize_maxwidth'], $conf['upload_form_websize_maxheight']))
|
||||
if (pwg_image::get_library() != 'gd')
|
||||
{
|
||||
$high_path = file_path_for_type($file_path, 'high');
|
||||
$high_dir = dirname($high_path);
|
||||
prepare_directory($high_dir);
|
||||
|
||||
rename($file_path, $high_path);
|
||||
$high_infos = pwg_image_infos($high_path);
|
||||
|
||||
$img = new pwg_image($high_path);
|
||||
|
||||
$img->pwg_resize(
|
||||
$file_path,
|
||||
$conf['upload_form_websize_maxwidth'],
|
||||
$conf['upload_form_websize_maxheight'],
|
||||
$conf['upload_form_websize_quality'],
|
||||
$conf['upload_form_automatic_rotation'],
|
||||
false
|
||||
);
|
||||
|
||||
if ($img->library != 'gd')
|
||||
if ($conf['original_resize'])
|
||||
{
|
||||
if ($conf['upload_form_hd_keep'])
|
||||
$need_resize = need_resize($file_path, $conf['original_resize_maxwidth'], $conf['original_resize_maxheight']);
|
||||
|
||||
if ($need_resize)
|
||||
{
|
||||
if ($conf['upload_form_hd_resize'])
|
||||
{
|
||||
$need_resize = need_resize($high_path, $conf['upload_form_hd_maxwidth'], $conf['upload_form_hd_maxheight']);
|
||||
$img = new pwg_image($file_path);
|
||||
|
||||
$img->pwg_resize(
|
||||
$file_path,
|
||||
$conf['original_resize_maxwidth'],
|
||||
$conf['original_resize_maxheight'],
|
||||
$conf['original_resize_quality'],
|
||||
$conf['upload_form_automatic_rotation'],
|
||||
false
|
||||
);
|
||||
|
||||
if ($need_resize)
|
||||
{
|
||||
$img->pwg_resize(
|
||||
$high_path,
|
||||
$conf['upload_form_hd_maxwidth'],
|
||||
$conf['upload_form_hd_maxheight'],
|
||||
$conf['upload_form_hd_quality'],
|
||||
$conf['upload_form_automatic_rotation'],
|
||||
false
|
||||
);
|
||||
$high_infos = pwg_image_infos($high_path);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
unlink($high_path);
|
||||
$high_infos = null;
|
||||
$img->destroy();
|
||||
}
|
||||
}
|
||||
$img->destroy();
|
||||
}
|
||||
|
||||
$file_infos = pwg_image_infos($file_path);
|
||||
|
||||
$thumb_path = file_path_for_type($file_path, 'thumb');
|
||||
$thumb_dir = dirname($thumb_path);
|
||||
prepare_directory($thumb_dir);
|
||||
|
||||
$img = new pwg_image($file_path);
|
||||
$img->pwg_resize(
|
||||
$thumb_path,
|
||||
$conf['upload_form_thumb_maxwidth'],
|
||||
$conf['upload_form_thumb_maxheight'],
|
||||
$conf['upload_form_thumb_quality'],
|
||||
false,
|
||||
true,
|
||||
$conf['upload_form_thumb_crop'],
|
||||
$conf['upload_form_thumb_follow_orientation']
|
||||
);
|
||||
$img->destroy();
|
||||
|
||||
$thumb_infos = pwg_image_infos($thumb_path);
|
||||
|
||||
if (isset($image_id))
|
||||
{
|
||||
$update = array(
|
||||
'id' => $image_id,
|
||||
'file' => pwg_db_real_escape_string(isset($original_filename) ? $original_filename : basename($file_path)),
|
||||
'filesize' => $file_infos['filesize'],
|
||||
'width' => $file_infos['width'],
|
||||
@@ -401,33 +274,15 @@ SELECT
|
||||
'added_by' => $user['id'],
|
||||
);
|
||||
|
||||
if (isset($high_infos))
|
||||
{
|
||||
$update['has_high'] = 'true';
|
||||
$update['high_filesize'] = $high_infos['filesize'];
|
||||
$update['high_width'] = $high_infos['width'];
|
||||
$update['high_height'] = $high_infos['height'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$update['has_high'] = 'false';
|
||||
$update['high_filesize'] = null;
|
||||
$update['high_width'] = null;
|
||||
$update['high_height'] = null;
|
||||
}
|
||||
|
||||
if (isset($level))
|
||||
{
|
||||
$update['level'] = $level;
|
||||
}
|
||||
|
||||
mass_updates(
|
||||
single_update(
|
||||
IMAGES_TABLE,
|
||||
array(
|
||||
'primary' => array('id'),
|
||||
'update' => array_keys($update)
|
||||
),
|
||||
array($update)
|
||||
$update,
|
||||
array('id' => $image_id)
|
||||
);
|
||||
}
|
||||
else
|
||||
@@ -457,12 +312,8 @@ SELECT
|
||||
{
|
||||
$insert['level'] = $level;
|
||||
}
|
||||
|
||||
mass_inserts(
|
||||
IMAGES_TABLE,
|
||||
array_keys($insert),
|
||||
array($insert)
|
||||
);
|
||||
|
||||
single_insert(IMAGES_TABLE, $insert);
|
||||
|
||||
$image_id = pwg_db_insert_id(IMAGES_TABLE);
|
||||
}
|
||||
|
||||
@@ -202,12 +202,7 @@ SELECT
|
||||
|
||||
$thumbnail['file'] = $image_infos['file'];
|
||||
|
||||
$thumbnail['src'] = get_thumbnail_location(
|
||||
array(
|
||||
'path' => $image_infos['path'],
|
||||
'tn_ext' => $image_infos['tn_ext'],
|
||||
)
|
||||
);
|
||||
$thumbnail['src'] = DerivativeImage::thumb_url($image_infos);
|
||||
|
||||
// TODO: when implementing this plugin in Piwigo core, we should have
|
||||
// a function get_image_name($name, $file) (if name is null, then
|
||||
|
||||
@@ -72,7 +72,7 @@ SELECT
|
||||
;';
|
||||
$image_infos = pwg_db_fetch_assoc(pwg_query($query));
|
||||
|
||||
$thumbnail_url = preg_replace('#^'.PHPWG_ROOT_PATH.'#', './', get_thumbnail_url($image_infos));
|
||||
$thumbnail_url = preg_replace('#^'.PHPWG_ROOT_PATH.'#', './', DerivativeImage::thumb_url($image_infos));
|
||||
|
||||
$return = array(
|
||||
'image_id' => $image_id,
|
||||
|
||||
@@ -55,10 +55,6 @@ $tabs = array(
|
||||
'code' => 'direct',
|
||||
'label' => l10n('Upload Photos'),
|
||||
),
|
||||
array(
|
||||
'code' => 'settings',
|
||||
'label' => l10n('Settings'),
|
||||
),
|
||||
array(
|
||||
'code' => 'ploader',
|
||||
'label' => l10n('Piwigo Uploader'),
|
||||
|
||||
@@ -1,125 +0,0 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2010 Pierrick LE GALL http://piwigo.org |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
if (!defined('PHOTOS_ADD_BASE_URL'))
|
||||
{
|
||||
die ("Hacking attempt!");
|
||||
}
|
||||
|
||||
// by default, the form values are the current configuration
|
||||
// we may overwrite them with the current form values
|
||||
$form_values = array();
|
||||
|
||||
foreach ($upload_form_config as $param_shortname => $param)
|
||||
{
|
||||
$param_name = 'upload_form_'.$param_shortname;
|
||||
$form_values[$param_shortname] = $conf[$param_name];
|
||||
}
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | process form |
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
if (isset($_POST['submit']))
|
||||
{
|
||||
$updates = array();
|
||||
|
||||
// let's care about the specific checkbox that disable/enable other
|
||||
// settings
|
||||
$field = 'websize_resize';
|
||||
$fields[] = $field;
|
||||
|
||||
if (!empty($_POST[$field]))
|
||||
{
|
||||
$fields[] = 'websize_maxwidth';
|
||||
$fields[] = 'websize_maxheight';
|
||||
$fields[] = 'websize_quality';
|
||||
}
|
||||
|
||||
// hd_keep
|
||||
$field = 'hd_keep';
|
||||
$fields[] = $field;
|
||||
|
||||
if (!empty($_POST[$field]))
|
||||
{
|
||||
$field = 'hd_resize';
|
||||
$fields[] = $field;
|
||||
|
||||
if (!empty($_POST[$field]))
|
||||
{
|
||||
$fields[] = 'hd_maxwidth';
|
||||
$fields[] = 'hd_maxheight';
|
||||
$fields[] = 'hd_quality';
|
||||
}
|
||||
}
|
||||
|
||||
// and now other fields, processed in a generic way
|
||||
$fields[] = 'thumb_maxwidth';
|
||||
$fields[] = 'thumb_maxheight';
|
||||
$fields[] = 'thumb_quality';
|
||||
$fields[] = 'thumb_crop';
|
||||
$fields[] = 'thumb_follow_orientation';
|
||||
|
||||
foreach ($fields as $field)
|
||||
{
|
||||
$value = !empty($_POST[$field]) ? $_POST[$field] : null;
|
||||
$form_values[$field] = $value;
|
||||
$updates[$field] = $value;
|
||||
}
|
||||
|
||||
save_upload_form_config($updates, $page['errors']);
|
||||
|
||||
if (count($page['errors']) == 0)
|
||||
{
|
||||
array_push(
|
||||
$page['infos'],
|
||||
l10n('Your configuration settings are saved')
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | template init |
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
foreach (array_keys($upload_form_config) as $field)
|
||||
{
|
||||
if (is_bool($upload_form_config[$field]['default']))
|
||||
{
|
||||
$form_values[$field] = $form_values[$field] ? 'checked="checked"' : '';
|
||||
}
|
||||
}
|
||||
|
||||
$template->assign(
|
||||
array(
|
||||
'F_ADD_ACTION'=> PHOTOS_ADD_BASE_URL,
|
||||
'MANAGE_HD' => pwg_image::get_library() != 'gd',
|
||||
'values' => $form_values
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | sending html code |
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
$template->assign_var_from_handle('ADMIN_CONTENT', 'photos_add');
|
||||
?>
|
||||
@@ -247,6 +247,52 @@ jQuery(document).ready(function () {
|
||||
|
||||
</div> <!-- configContent -->
|
||||
|
||||
{if isset($sizes)}
|
||||
|
||||
{footer_script}{literal}
|
||||
jQuery(document).ready(function(){
|
||||
function toggleResizeFields(prefix) {
|
||||
var checkbox = jQuery("#"+prefix+"_resize");
|
||||
var needToggle = jQuery("input[name^="+prefix+"_]").not(checkbox).parents('tr');
|
||||
|
||||
if (jQuery(checkbox).is(':checked')) {
|
||||
needToggle.show();
|
||||
}
|
||||
else {
|
||||
needToggle.hide();
|
||||
}
|
||||
}
|
||||
|
||||
toggleResizeFields("original");
|
||||
jQuery("#original_resize").click(function () {toggleResizeFields("original")});
|
||||
});
|
||||
{/literal}{/footer_script}
|
||||
|
||||
<fieldset id="sizesConf">
|
||||
<legend>{'Original Size'|@translate}</legend>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th><label for="original_resize">{'Resize after upload'|@translate}</label></th>
|
||||
<td><input type="checkbox" name="original_resize" id="original_resize" {if ($sizes.original_resize)}checked="checked"{/if}></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{'Maximum Width'|@translate}</th>
|
||||
<td><input type="text" name="original_resize_maxwidth" value="{$sizes.original_resize_maxwidth}" size="4" maxlength="4"> {'pixels'|@translate}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{'Maximum Height'|@translate}</th>
|
||||
<td><input type="text" name="original_resize_maxheight" value="{$sizes.original_resize_maxheight}" size="4" maxlength="4"> {'pixels'|@translate}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{'Image Quality'|@translate}</th>
|
||||
<td><input type="text" name="original_resize_quality" value="{$sizes.original_resize_quality}" size="3" maxlength="3"> %</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</fieldset>
|
||||
{/if}
|
||||
|
||||
{if isset($default)}
|
||||
{$PROFILE_CONTENT}
|
||||
{/if}
|
||||
@@ -445,7 +491,7 @@ jQuery(document).ready(function () {
|
||||
|
||||
{if !isset($default)}
|
||||
<p>
|
||||
<input class="submit" type="submit" name="submit" value="{'Submit'|@translate}">
|
||||
<input class="submit" type="submit" name="submit" value="{'Save Settings'|@translate}">
|
||||
<input class="submit" type="reset" name="reset" value="{'Reset'|@translate}">
|
||||
</p>
|
||||
</form>
|
||||
|
||||
@@ -1,163 +0,0 @@
|
||||
{footer_script}
|
||||
var width = '{'Width'|@translate}';
|
||||
var height = '{'Height'|@translate}';
|
||||
var max_width = '{'Maximum Width'|@translate}';
|
||||
var max_height = '{'Maximum Height'|@translate}';
|
||||
|
||||
{literal}
|
||||
jQuery(document).ready(function(){
|
||||
function toggleResizeFields(prefix) {
|
||||
var checkbox = jQuery("#"+prefix+"_resize");
|
||||
var needToggle = jQuery("input[name^="+prefix+"_]").not(checkbox).not(jQuery("#hd_keep")).parents('tr');
|
||||
|
||||
if (jQuery(checkbox).is(':checked')) {
|
||||
needToggle.show();
|
||||
|
||||
if (prefix == "websize") {
|
||||
jQuery("#hd_keep").parents("fieldset").show();
|
||||
}
|
||||
}
|
||||
else {
|
||||
needToggle.hide();
|
||||
|
||||
if (prefix == "websize") {
|
||||
jQuery("#hd_keep").parents("fieldset").hide();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function toggleCropFields(prefix) {
|
||||
if (jQuery("#"+prefix+"_crop").is(':checked')) {
|
||||
jQuery("#"+prefix+"_width_th").text(width);
|
||||
jQuery("#"+prefix+"_height_th").text(height);
|
||||
jQuery("#"+prefix+"_follow_orientation_tr").show();
|
||||
}
|
||||
else {
|
||||
jQuery("#"+prefix+"_width_th").text(max_width);
|
||||
jQuery("#"+prefix+"_height_th").text(max_height);
|
||||
jQuery("#"+prefix+"_follow_orientation_tr").hide();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
toggleResizeFields("websize");
|
||||
jQuery("#websize_resize").click(function () {toggleResizeFields("websize")});
|
||||
|
||||
toggleResizeFields("hd");
|
||||
jQuery("#hd_resize").click(function () {toggleResizeFields("hd")});
|
||||
|
||||
toggleCropFields("thumb");
|
||||
jQuery("#thumb_crop").click(function () {toggleCropFields("thumb")});
|
||||
|
||||
function toggleHdFields() {
|
||||
var checkbox = jQuery("#hd_keep");
|
||||
var needToggle = jQuery("input[name^=hd_]").not(checkbox).parents('tr');
|
||||
|
||||
if (jQuery(checkbox).is(':checked')) {
|
||||
needToggle.show();
|
||||
toggleResizeFields("hd");
|
||||
}
|
||||
else {
|
||||
needToggle.hide();
|
||||
}
|
||||
}
|
||||
|
||||
toggleHdFields();
|
||||
jQuery("#hd_keep").click(function () {toggleHdFields()});
|
||||
});
|
||||
{/literal}{/footer_script}
|
||||
|
||||
<div class="titrePage">
|
||||
<h2>{'Upload Photos'|@translate}</h2>
|
||||
</div>
|
||||
|
||||
<div id="photosAddContent">
|
||||
|
||||
<form id="uploadFormSettings" enctype="multipart/form-data" method="post" action="{$F_ACTION}" class="properties">
|
||||
|
||||
<fieldset>
|
||||
<legend>{'Web size photo'|@translate}</legend>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th><label for="websize_resize">{'Resize'|@translate}</label></th>
|
||||
<td><input type="checkbox" name="websize_resize" id="websize_resize" {$values.websize_resize}></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{'Maximum Width'|@translate}</th>
|
||||
<td><input type="text" name="websize_maxwidth" value="{$values.websize_maxwidth}" size="4" maxlength="4"> {'pixels'|@translate}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{'Maximum Height'|@translate}</th>
|
||||
<td><input type="text" name="websize_maxheight" value="{$values.websize_maxheight}" size="4" maxlength="4"> {'pixels'|@translate}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{'Image Quality'|@translate}</th>
|
||||
<td><input type="text" name="websize_quality" value="{$values.websize_quality}" size="3" maxlength="3"> %</td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend>{'Thumbnail'|@translate}</legend>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th><label for="thumb_crop">{'Crop'|@translate}</label></th>
|
||||
<td><input type="checkbox" name="thumb_crop" id="thumb_crop" {$values.thumb_crop}></td>
|
||||
</tr>
|
||||
<tr id="thumb_follow_orientation_tr">
|
||||
<th><label for="thumb_follow_orientation">{'Follow Orientation'|@translate}</label></th>
|
||||
<td><input type="checkbox" name="thumb_follow_orientation" id="thumb_follow_orientation" {$values.thumb_follow_orientation}></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th id="thumb_width_th">{'Maximum Width'|@translate}</th>
|
||||
<td><input type="text" name="thumb_maxwidth" value="{$values.thumb_maxwidth}" size="4" maxlength="4"> {'pixels'|@translate}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th id="thumb_height_th">{'Maximum Height'|@translate}</th>
|
||||
<td><input type="text" name="thumb_maxheight" value="{$values.thumb_maxheight}" size="4" maxlength="4"> {'pixels'|@translate}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{'Image Quality'|@translate}</th>
|
||||
<td><input type="text" name="thumb_quality" value="{$values.thumb_quality}" size="3" maxlength="3"> %</td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
|
||||
{if $MANAGE_HD}
|
||||
<fieldset>
|
||||
<legend>{'High definition'|@translate}</legend>
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th><label for="hd_keep">{'Keep high definition'|@translate}</label></th>
|
||||
<td><input type="checkbox" name="hd_keep" id="hd_keep" {$values.hd_keep}></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><label for="hd_resize">{'Resize'|@translate}</label></th>
|
||||
<td><input type="checkbox" name="hd_resize" id="hd_resize" {$values.hd_resize}></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{'Maximum Width'|@translate}</th>
|
||||
<td><input type="text" name="hd_maxwidth" value="{$values.hd_maxwidth}" size="4" maxlength="4"> {'pixels'|@translate}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{'Maximum Height'|@translate}</th>
|
||||
<td><input type="text" name="hd_maxheight" value="{$values.hd_maxheight}" size="4" maxlength="4"> {'pixels'|@translate}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{'Image Quality'|@translate}</th>
|
||||
<td><input type="text" name="hd_quality" value="{$values.hd_quality}" size="3" maxlength="3"> %</td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
{/if}
|
||||
|
||||
<p>
|
||||
<input class="submit" type="submit" name="submit" value="{'Save Settings'|@translate}"/>
|
||||
</p>
|
||||
|
||||
</form>
|
||||
|
||||
</div> <!-- photosAddContent -->
|
||||
@@ -67,3 +67,7 @@ INSERT INTO piwigo_config (param,value) VALUES ('upload_form_hd_resize','false')
|
||||
INSERT INTO piwigo_config (param,value) VALUES ('upload_form_hd_maxwidth','2000');
|
||||
INSERT INTO piwigo_config (param,value) VALUES ('upload_form_hd_maxheight','2000');
|
||||
INSERT INTO piwigo_config (param,value) VALUES ('upload_form_hd_quality','95');
|
||||
INSERT INTO piwigo_config (param,value) VALUES ('original_resize','false');
|
||||
INSERT INTO piwigo_config (param,value) VALUES ('original_resize_maxwidth','2016');
|
||||
INSERT INTO piwigo_config (param,value) VALUES ('original_resize_maxheight','2016');
|
||||
INSERT INTO piwigo_config (param,value) VALUES ('original_resize_quality','95');
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Piwigo - a PHP based photo gallery |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | Copyright(C) 2008-2011 Piwigo Team http://piwigo.org |
|
||||
// | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net |
|
||||
// | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick |
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | This program is free software; you can redistribute it and/or modify |
|
||||
// | it under the terms of the GNU General Public License as published by |
|
||||
// | the Free Software Foundation |
|
||||
// | |
|
||||
// | This program is distributed in the hope that it will be useful, but |
|
||||
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
||||
// | General Public License for more details. |
|
||||
// | |
|
||||
// | You should have received a copy of the GNU General Public License |
|
||||
// | along with this program; if not, write to the Free Software |
|
||||
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
||||
// | USA. |
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
if (!defined('PHPWG_ROOT_PATH'))
|
||||
{
|
||||
die('Hacking attempt!');
|
||||
}
|
||||
|
||||
$upgrade_description = 'New settings for resizing original photo (related to multiple sizes feature)';
|
||||
|
||||
conf_update_param('original_resize', 'false');
|
||||
conf_update_param('original_resize_maxwidth', 2016);
|
||||
conf_update_param('original_resize_maxheight', 2016);
|
||||
conf_update_param('original_resize_quality', 95);
|
||||
|
||||
echo
|
||||
"\n"
|
||||
. $upgrade_description
|
||||
."\n"
|
||||
;
|
||||
?>
|
||||
@@ -159,7 +159,6 @@ $lang['Instructions to use Piwigo'] = 'Instruksies in die gebruik van Piwigo';
|
||||
$lang['IP'] = 'IP';
|
||||
$lang['jump to album'] = 'spring na album';
|
||||
$lang['jump to photo'] = 'spring na foto';
|
||||
$lang['Keep high definition'] = 'Hou hoë definisie';
|
||||
$lang['Languages'] = 'Tale';
|
||||
$lang['last import'] = 'laaste invoer';
|
||||
$lang['Last revisions'] = 'Laaste wysigings';
|
||||
|
||||
@@ -604,14 +604,7 @@ $lang['Select files'] = 'اختيار الملفات';
|
||||
$lang['Everybody'] = 'الجميع';
|
||||
$lang['Who can see these photos?'] = 'من يمكنه رؤية هذه الصور';
|
||||
$lang['Who can see this photo?'] = 'من يمكنه رؤية هذه الصورة؟';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = '%d و %d الحد الأعلى لعرض صورة الويب يجب أن تكون';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = '%d و %d الحد الأعلى لطول صورة الويب يجب أن تكون بين ';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = '%d و %d جودة صورة الوب يجب أن تكون بين ';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = '%d و %d الحد الأعلى لعرض مصغرات الصور يجب أن يكون بين';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = '%d و %dالحد الأعلى لطول مصغرات الصور يجب ان يكون بين ';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = '%d و %dجودة مصغرات الصور يجب ان تكون بين ';
|
||||
$lang['Settings'] = 'الإعدادت';
|
||||
$lang['Web size photo'] = 'مقاس صورة ويب';
|
||||
$lang['Resize'] = 'تغيير المقاس';
|
||||
$lang['Maximum Width'] = 'الحد الأعلى لعرض الصورة';
|
||||
$lang['pixels'] = 'بكسل ';
|
||||
@@ -704,10 +697,6 @@ $lang['Error on file "%s" : %s'] = ' "%s" : %s خطأ في الملف';
|
||||
$lang['automatic order'] = 'ترتيب آلي';
|
||||
$lang['manual order'] = 'ترتيب يدوي';
|
||||
$lang['Albums automatically sorted'] = 'ترتيب الألبومات آليا ً ';
|
||||
$lang['Keep high definition'] = 'احتفظ بها بدقة عالية';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = ' %d و %d يجب أن يكون الحد الاعلى لعرض الصور العالية الدقة بين ';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = '%d و %d يجب أن يكون الحد الاعلى لطول الصور العالية الدقة بين';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = '%d و %d يجب أن يكون الحد الاعلى لجودة الصور العالية الدقة بين';
|
||||
$lang['Batch Manager'] = 'دعم المدير';
|
||||
$lang['include child albums'] = 'تضمين الالبومات الفرعية';
|
||||
$lang['Selection'] = 'الاختيار';
|
||||
|
||||
@@ -667,7 +667,6 @@ $lang['include child albums'] = 'include child albums';
|
||||
$lang['Install on your computer,'] = 'Install on your computer,';
|
||||
$lang['Installed Languages'] = 'Installed Languages';
|
||||
$lang['Invert'] = 'Invert';
|
||||
$lang['Keep high definition'] = 'Keep high definition';
|
||||
$lang['Language has been successfully installed'] = 'Language has been successfully installed';
|
||||
$lang['Languages'] = 'Languages';
|
||||
$lang['last import'] = 'last import';
|
||||
@@ -721,19 +720,10 @@ $lang['Settings'] = 'Settings';
|
||||
$lang['Start pLoader and add your photos.'] = 'Start pLoader and add your photos.';
|
||||
$lang['Switch to clear or dark colors for administration'] = 'Switch to clear or dark colors for administration';
|
||||
$lang['The following tag was deleted'] = 'The following tag was deleted';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'The high definition image quality must be a number between %d and %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'The high definition maximum height must be a number between %d and %d';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'The high definition maximum width must be a number between %d and %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'The thumbnail image quality must be a number between %d and %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'The thumbnail maximum height must be a number between %d and %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'The thumbnail maximum width must be a number between %d and %d';
|
||||
$lang['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form';
|
||||
$lang['The uploaded file exceeds the upload_max_filesize directive in php.ini: %sB'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini: %sB';
|
||||
$lang['The uploaded file was only partially uploaded'] = 'The uploaded file was only partially uploaded';
|
||||
$lang['The uploaded files exceed the post_max_size directive in php.ini: %sB'] = 'The uploaded files exceed the post_max_size directive in php.ini: %sB';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'The websize image quality must be a number between %d and %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'The websize maximum height must be a number between %d and %d';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'The websize maximum width must be a number between %d and %d';
|
||||
$lang['The whole page'] = 'The whole page';
|
||||
$lang['The whole set'] = 'The whole set';
|
||||
$lang['Theme has been successfully installed'] = 'Theme has been successfully installed';
|
||||
@@ -752,7 +742,6 @@ $lang['Virtual Links'] = 'Virtual Links';
|
||||
$lang['Visit Gallery'] = 'Visit the gallery';
|
||||
$lang['Visit Piwigo project website'] = 'Visit Piwigo project website';
|
||||
$lang['Visit plugin site'] = 'Visit plugin site';
|
||||
$lang['Web size photo'] = 'Web size photo';
|
||||
$lang['Webmaster status is required.'] = 'Webmaster status is required.';
|
||||
$lang['Week starts on'] = 'Week starts on';
|
||||
$lang['Who can see these photos?'] = 'Who can see these photos?';
|
||||
|
||||
@@ -605,14 +605,7 @@ $lang['Everybody'] = 'Každý';
|
||||
$lang['Who can see these photos?'] = 'Kdo může vidět tyto fotografie?';
|
||||
$lang['Who can see this photo?'] = 'Kdo může vidět tuto fotografii?';
|
||||
$lang['Pending Comments'] = 'Nevyřízené komentáře';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'Maximální šířka webovské stránky musí být číslo mezi %d a %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'Maximální výška webovské stránky musí být číslo mezi %d a %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'Kvalita formátu fotografie pro web musí být číslo mezi %d and %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'Maximální šířka náhledu obrázku musí být číslo mezi %d a %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'Maximální výška náhledu obrázku musí být číslo mezi %d a %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Kvalita formátu náhledu fotografie musí být číslo mezi %d a %d';
|
||||
$lang['Settings'] = 'Nastavení';
|
||||
$lang['Web size photo'] = 'Velikost fotografie pro web';
|
||||
$lang['Resize'] = 'Změnit velikost';
|
||||
$lang['Maximum Width'] = 'Maximální šířka';
|
||||
$lang['pixels'] = 'bodů';
|
||||
@@ -710,10 +703,6 @@ $lang['Error on file "%s" : %s'] = 'Chyba souboru "%s" : %s';
|
||||
$lang['automatic order'] = 'automatické řazení';
|
||||
$lang['manual order'] = 'ruční řazení';
|
||||
$lang['Albums automatically sorted'] = 'Alba jsou řazena automaticky';
|
||||
$lang['Keep high definition'] = 'Zachovat vysoké rozlišení';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'Maximální vysoké rozlišení - šířka musí být číslo mezi %d a %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'Maximální vysoké rozlišení - výška musí být číslo mezi %d a %d';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'Maximální vysoké rozlišení - kvalita musí být číslo mezi %d a %d';
|
||||
$lang['Batch Manager'] = 'Správce dávek';
|
||||
$lang['include child albums'] = 'zahrnout podřízená alba';
|
||||
$lang['Selection'] = 'Výběr';
|
||||
|
||||
@@ -602,14 +602,7 @@ $lang['Manage this set of %d photos'] = 'Administrer dette sæt af %d bi
|
||||
$lang['Select files'] = 'Vælg filer';
|
||||
$lang['Everybody'] = 'Alle';
|
||||
$lang['Who can see these photos?'] = 'Hvem kan se disse billeder? ';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'Det websize maksimale bredde skal være et tal mellem %d og %d ';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'Det websize maksimale højde skal være et nummer mellem %d og %d ';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'De websize billedkvaliteten skal være et nummer mellem %d og %d ';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'Det thumbnail maksimale bredde skal være et tal mellem %d og %d ';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'Det thumbnail maksimale højde skal være et nummer mellem %d og %d ';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'De miniaturebillede kvalitet skal være et nummer mellem %d og %d ';
|
||||
$lang['Settings'] = 'Indstillinger';
|
||||
$lang['Web size photo'] = 'Web størrelse billede ';
|
||||
$lang['Resize'] = 'Resize';
|
||||
$lang['Maximum Width'] = 'Maksimal bredde';
|
||||
$lang['pixels'] = 'Pixels';
|
||||
@@ -747,7 +740,6 @@ $lang['Failed to write file to disk'] = 'Fejl i skrivning til disk';
|
||||
$lang['File upload stopped by extension'] = 'Fil upload er stoppet';
|
||||
$lang['In your php.ini file, the upload_max_filesize (%sB) is bigger than post_max_size (%sB), you should change this setting'] = 'I din php.ini fil, er upload_max_filestørrelse (%sB) større end post_maks_størrelsen (%sB), du bør ændre denne indstilling';
|
||||
$lang['include child albums'] = 'inkluder børne albums';
|
||||
$lang['Keep high definition'] = 'Bevar høj definition';
|
||||
$lang['Last import'] = 'Sidste import';
|
||||
$lang['manual order'] = 'manual ordre';
|
||||
$lang['Missing a temporary folder'] = 'Mangler midlertidig folder';
|
||||
|
||||
@@ -603,14 +603,7 @@ $lang['Select files'] = 'Wähle Dateien aus';
|
||||
$lang['Everybody'] = 'Jedermann';
|
||||
$lang['Who can see these photos?'] = 'Wer soll die Fotos sehen können?';
|
||||
$lang['Who can see this photo?'] = 'Wer soll dieses Foto sehen können?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'Die maximale Breite muss eine Zahl zwischen %d und %d sein';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'Die maximale Höhe muss eine Zahl zwischen %d und %d sein';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'Die Bildqualität muss eine Zahl zwischen %d und %d sein';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'Die maximale Breite der Vorschaubilder muss eine Zahl zwischen %d und %d sein';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'Die maximale Höhe der Vorschaubilder muss eine Zahl zwischen %d und %d sein';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Die Bildqualität der Vorschaubilder muss eine Zahl zwischen %d und %d sein';
|
||||
$lang['Settings'] = 'Einstellungen';
|
||||
$lang['Web size photo'] = 'Größe des angezeigten Bildes';
|
||||
$lang['Resize'] = 'Größe verändern';
|
||||
$lang['Maximum Width'] = 'Maximale Breite';
|
||||
$lang['pixels'] = 'Pixel';
|
||||
@@ -708,10 +701,6 @@ $lang['Error on file "%s" : %s'] = 'Fehler bei Datei "%s" : %s';
|
||||
$lang['automatic order'] = 'automatische Sortierung';
|
||||
$lang['manual order'] = 'manuelle Sortierung';
|
||||
$lang['Albums automatically sorted'] = 'Alben automatisch sortiert';
|
||||
$lang['Keep high definition'] = 'Belasse High Definition';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'Die maximale Höhe der High Definition Auflösung muss eine Zahl zwischen %d und %d sein';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'Die maximale Breite der High Definition Auflösung muss eine Zahl zwischen %d und %d sein';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'Die High Definition Bildqualität muss eine Zahl zwischen %d und %d sein';
|
||||
$lang['Batch Manager'] = 'Stapelverarbeitungsmanager';
|
||||
$lang['include child albums'] = 'inclusive Unteralben';
|
||||
$lang['Selection'] = 'Auswahl';
|
||||
|
||||
@@ -388,7 +388,6 @@ $lang['Invert'] = 'Invert';
|
||||
$lang['IP'] = "IP";
|
||||
$lang['jump to album'] = "jump to album";
|
||||
$lang['jump to photo'] = "jump to photo";
|
||||
$lang['Keep high definition'] = 'Keep high definition';
|
||||
$lang['Keep in touch with Piwigo project, subscribe to Piwigo Announcement Newsletter. You will receive emails when a new release is available (sometimes including a security bug fix, it\'s important to know and upgrade) and when major events happen to the project. Only a few emails a year.'] = "Keep in touch with Piwigo project, subscribe to Piwigo Announcement Newsletter. You will be sent emails when a new release is available (sometimes including a security bug fix, it is important to know and upgrade) and when major events happen to the project. Only a few emails a year.";
|
||||
$lang['Language has been successfully installed'] = 'Language has been successfully installed';
|
||||
$lang['Languages which need upgrade'] = 'Languages which need upgrade';
|
||||
@@ -701,17 +700,14 @@ $lang['The file or directory cannot be accessed (either it does not exist or the
|
||||
$lang['The following tag was deleted'] = 'The following tag was deleted';
|
||||
$lang['the forum'] = "the forum";
|
||||
$lang['The gallery URL is not valid.'] = "The gallery URL is not valid.";
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'The high definition image quality must be a number between %d and %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'The high definition maximum height must be a number between %d and %d';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'The high definition maximum width must be a number between %d and %d';
|
||||
$lang['The original image quality must be a number between %d and %d'] = 'The original image quality must be a number between %d and %d';
|
||||
$lang['The original maximum height must be a number between %d and %d'] = 'The original maximum height must be a number between %d and %d';
|
||||
$lang['The original maximum width must be a number between %d and %d'] = 'The original maximum width must be a number between %d and %d';
|
||||
$lang['The name of a group must not contain " or \' or be empty.'] = "The name of a group must not contain \" or ' or be empty.";
|
||||
$lang['The name of an album must not be empty'] = "The name of an album must not be empty";
|
||||
$lang['The name of directories and files must be composed of letters, numbers, "-", "_" or "."'] = "The name of directories and files must comprise only letters, numbers, \"-\", \"_\" or \".\"";
|
||||
$lang['The number of comments a page must be between 5 and 50 included.'] = "The number of comments on a page must be between 5 and 50 included.";
|
||||
$lang['The permalink name must be composed of a-z, A-Z, 0-9, "-", "_" or "/". It must not be numeric or start with number followed by "-"'] = "The permalink name must be composed of a-z, A-Z, 0-9, \"-\", \"_\" or \"/\". It must not be numeric or begin with a number followed by \"-\"";
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'The thumbnail image quality must be a number between %d and %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'The thumbnail maximum height must be a number between %d and %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'The thumbnail maximum width must be a number between %d and %d';
|
||||
$lang['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'] = 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form';
|
||||
$lang['The uploaded file exceeds the upload_max_filesize directive in php.ini: %sB'] = 'The uploaded file exceeds the upload_max_filesize directive in php.ini: %sB';
|
||||
$lang['The uploaded file was only partially uploaded'] = 'The uploaded file was only partially uploaded';
|
||||
@@ -719,9 +715,6 @@ $lang['The uploaded files exceed the post_max_size directive in php.ini: %sB'] =
|
||||
$lang['The version of %s [%s] installed is not compatible with the version required [%s]'] = "The version of %s [%s] installed is not compatible with the version required [%s]";
|
||||
$lang['The webmaster has subscribed you to receiving notifications by mail.'] = "The webmaster has subscribed you to be notified by mail.";
|
||||
$lang['The webmaster has unsubscribed you from receiving notifications by mail.'] = "The webmaster has unsubscribed you from receiving notifications by mail.";
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'The websize image quality must be a number between %d and %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'The websize maximum height must be a number between %d and %d';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'The websize maximum width must be a number between %d and %d';
|
||||
$lang['The whole page'] = 'The whole page';
|
||||
$lang['The whole set'] = 'The whole set';
|
||||
$lang['the wiki'] = "the wiki";
|
||||
@@ -814,7 +807,6 @@ $lang['Visit theme site'] = 'Visit theme site';
|
||||
$lang['Waiting'] = "Pending";
|
||||
$lang['WARNING! This plugin does not seem to be compatible with this version of Piwigo.'] = 'WARNING! This plugin does not seem to be compatible with this version of Piwigo.';
|
||||
$lang['Warning: subscribing or unsubscribing will send mails to users'] = "Warning: subscribing or unsubscribing will send mails to users";
|
||||
$lang['Web size photo'] = 'Web size photo';
|
||||
$lang['Webmaster cannot be deleted'] = "Webmaster cannot be deleted";
|
||||
$lang['Webmaster status is required.'] = 'Webmaster status is required.';
|
||||
$lang['Week starts on'] = 'Week starts on';
|
||||
@@ -847,5 +839,7 @@ $lang['Your configuration settings are saved'] = 'Your configuration settings ar
|
||||
$lang['Zoom'] = 'Zoom';
|
||||
$lang['[%s] Visit album %s'] = "[%s] Visit album %s";
|
||||
$lang['[NBM] Problems or questions'] = "[NBM] Problems or questions";
|
||||
|
||||
$lang['Resize after upload'] = 'Resize after upload';
|
||||
$lang['Photo Sizes'] = 'Photo Sizes';
|
||||
$lang['Original Size'] = 'Original Size';
|
||||
?>
|
||||
@@ -597,14 +597,7 @@ $lang['Manage this set of %d photos'] = 'Administrar este lote de %d fotos';
|
||||
$lang['Select files'] = 'Escoger ficheros';
|
||||
$lang['Everybody'] = 'Todo el mundo';
|
||||
$lang['Who can see these photos?'] = '¿ Quién puede ver estas fotos?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'La ancho máxima para la medidas de las fotos debe ser una cifra comprendida entra %d y %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'La altura máxima para la medidas de las fotos debe ser una cifra comprendida entra %d y %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'La calidad de imagen para la medidas de las fotos debe ser una cifra comprendida entra %d y %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'La ancho máxima para la miniatura debe ser una cifra comprendida entra %d y %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'La altura máxima para la miniatura debe ser una cifra comprendida entra %d y %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'La calidad de imagen para la miniatura debe ser una cifra comprendida entra %d y %d';
|
||||
$lang['Settings'] = 'Configuración';
|
||||
$lang['Web size photo'] = 'Medidas de las fotos';
|
||||
$lang['Resize'] = 'Redimensionar';
|
||||
$lang['Maximum Width'] = 'Ancho máxima';
|
||||
$lang['pixels'] = 'Píxeles';
|
||||
@@ -702,10 +695,6 @@ $lang['Error on file "%s" : %s'] = 'Error en el archivo "%s" : %s';
|
||||
$lang['automatic order'] = 'orden automático';
|
||||
$lang['manual order'] = 'orden manual';
|
||||
$lang['Albums automatically sorted'] = 'Las categorías han sido clasificadas automaticamente';
|
||||
$lang['Keep high definition'] = 'Mantener la alta definición';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'La anchura máxima de alta definición debe ser un número entre %d et %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'La altura máxima de alta definición debe ser un número entre %d et %d';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'La calidad de la imagen para la alta definición tiene que ser un número entre %d et %d';
|
||||
$lang['Batch Manager'] = 'Gestor por lote';
|
||||
$lang['include child albums'] = 'Incluir los sub-albumes';
|
||||
$lang['Selection'] = 'Selección';
|
||||
|
||||
@@ -606,14 +606,7 @@ $lang['Select files'] = 'انتخاب فایلها';
|
||||
$lang['Everybody'] = 'همه';
|
||||
$lang['Who can see these photos?'] = 'چه کسی قادر به مشاهده این تصاویر باشد؟';
|
||||
$lang['Who can see this photo?'] = 'چه کسی قادر به مشاهده این تصویر باشد';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'حداکثر عرض برای تصویر پیشفرض باید عددی بین %d و %d باشد';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'حداکثر طول تصویر پیشفرض باید عددی بین %d و %d باشد';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'حداکثر کیفین تصویر پیشفرض باید عددی بین %d و %d باشد';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'حداکثر عرض عکسریزه(thumbnail) باید عددی بین %d و %d باشد';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'حداکثر طول عکسریزه(thumbnail) باید عددی بین %d و %d باشد';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'حداکثر کیفیت عکسریزه(thumbnail) باید عددی بین %d و %d باشد';
|
||||
$lang['Settings'] = 'تنظیمات';
|
||||
$lang['Web size photo'] = 'اندازه تصویر پیشفرض';
|
||||
$lang['Resize'] = 'تغییر اندازه';
|
||||
$lang['Maximum Width'] = 'بیشترین عرض';
|
||||
$lang['pixels'] = 'پیکسل';
|
||||
@@ -709,10 +702,6 @@ $lang['Menu Management'] = 'منوها';
|
||||
$lang['automatic order'] = 'مرتب کردن به صورت اتوماتیک';
|
||||
$lang['manual order'] = 'مرتب کردن به صورت سفارشی';
|
||||
$lang['Albums automatically sorted'] = 'آلبوم ها به صورت اتوماتیک مرتب شد';
|
||||
$lang['Keep high definition'] = 'کیفیت تصاویر را بالا نگه دار';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'عرض تصاویر با کیفیت بالا باید بین %d و %d باشد';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'ارتفاع تصاویر با کیفیت بالا باید بین %d و %d باشد';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'کیفیت تصاویر با کیفیت بالا باید عددی یبن %d و %d باشد';
|
||||
$lang['Batch Manager'] = 'مدیریت دستهای';
|
||||
$lang['include child albums'] = 'آلبوم های زیرمیجموعه این را نیز ضمیمه کن';
|
||||
$lang['Selection'] = 'انتخاب';
|
||||
|
||||
@@ -612,14 +612,7 @@ $lang['Select files'] = 'Choisir des fichiers';
|
||||
$lang['Everybody'] = 'Tout le monde';
|
||||
$lang['Who can see these photos?'] = 'Qui peut voir ces photos ?';
|
||||
$lang['Who can see this photo?'] = 'Qui peut voir cette photo ?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'La largeur maximum pour la photo taille web doit être un chiffre compris entre %d et %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'La hauteur maximum pour la photo taille web doit être un chiffre compris entre %d et %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'La qualité d\'image pour la photo taille web doit être un chiffre compris entre %d et %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'La largeur maximum pour la miniature doit être un chiffre compris entre %d et %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'La hauteur maximum pour la miniature doit être un chiffre compris entre %d et %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'La qualité d\'image pour la miniature doit être un chiffre compris entre %d et %d';
|
||||
$lang['Settings'] = 'Configuration';
|
||||
$lang['Web size photo'] = 'Photo taille web';
|
||||
$lang['Resize'] = 'Redimensionner';
|
||||
$lang['Maximum Width'] = 'Largeur maximum';
|
||||
$lang['pixels'] = 'pixels';
|
||||
@@ -721,7 +714,6 @@ $lang['Failed to write file to disk'] = 'Échec à l\'écriture du fichier sur l
|
||||
$lang['File upload stopped by extension'] = 'Le transfert du fichier a été arrêté par une extension';
|
||||
$lang['In your php.ini file, the upload_max_filesize (%sB) is bigger than post_max_size (%sB), you should change this setting'] = 'Dans votre fichier php.ini, la variable upload_max_filesize (%sB) est plus grande que post_max_size (%sB), vous devriez modifier ce paramètre';
|
||||
$lang['include child albums'] = 'inclure les sous-albums';
|
||||
$lang['Keep high definition'] = 'Conserver la haute définition';
|
||||
$lang['last import'] = 'dernière importation';
|
||||
$lang['manual order'] = 'ordre manuel';
|
||||
$lang['Missing a temporary folder'] = 'Impossible de trouver le répertoire temporaire';
|
||||
@@ -743,9 +735,6 @@ $lang['Selection'] = 'Sélection';
|
||||
$lang['Set author'] = 'Définir l\'auteur';
|
||||
$lang['Set creation date'] = 'Définir la date de création';
|
||||
$lang['Set title'] = 'Définir le titre';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'La qualité d\'image pour la haute définition doit être un chiffre compris entre %d et %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'La hauteur maximale pour la haute définition doit être un chiffre compris entre %d et %d';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'La largeur maximale pour la haute définition doit être un chiffre compris entre %d et %d';
|
||||
$lang['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'] = 'Le poids du fichier transféré dépasse la valeur de MAX_FILE_SIZE définie dans le formulaire HTML';
|
||||
$lang['The uploaded file exceeds the upload_max_filesize directive in php.ini: %sB'] = 'Le poids du fichier transféré dépasse la valeur de upload_max_filesize définie dans votre fichier php.ini: %sB';
|
||||
$lang['The uploaded file was only partially uploaded'] = 'Le fichier n\'a été que partiellement transféré';
|
||||
|
||||
@@ -605,14 +605,7 @@ $lang['Select files'] = 'Choisir des fichiers';
|
||||
$lang['Everybody'] = 'Tout le monde';
|
||||
$lang['Who can see these photos?'] = 'Qui peut voir ces photos ?';
|
||||
$lang['Who can see this photo?'] = 'Qui peut voir cette photo ?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'La largeur maximum pour la photo taille web doit être un chiffre compris entre %d et %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'La hauteur maximum pour la photo taille web doit être un chiffre compris entre %d et %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'La qualité d\'image pour la photo taille web doit être un chiffre compris entre %d et %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'La largeur maximum pour la miniature doit être un chiffre compris entre %d et %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'La hauteur maximum pour la miniature doit être un chiffre compris entre %d et %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'La qualité d\'image pour la miniature doit être un chiffre compris entre %d et %d';
|
||||
$lang['Settings'] = 'Configuration';
|
||||
$lang['Web size photo'] = 'Photo taille web';
|
||||
$lang['Resize'] = 'Redimensionner';
|
||||
$lang['Maximum Width'] = 'Largeur maximum';
|
||||
$lang['pixels'] = 'pixels';
|
||||
@@ -620,7 +613,7 @@ $lang['Maximum Height'] = 'Hauteur maximum';
|
||||
$lang['Image Quality'] = 'Qualité d\'image';
|
||||
$lang['Thumbnail'] = 'Miniature';
|
||||
$lang['Save Settings'] = 'Enregistrer les paramètres';
|
||||
$lang['Your configuration settings are saved'] = 'Vos paramètres de configurations sont enregistrés';
|
||||
$lang['Your configuration settings are saved'] = 'Vos paramètres de configuration sont enregistrés';
|
||||
$lang['Active Themes'] = 'Thèmes activés';
|
||||
$lang['Add write access to the "%s" directory'] = 'Ajoutez l\'accès en écriture pour le répertoire "%s"';
|
||||
$lang['Administration Home'] = 'Accueil administration';
|
||||
@@ -708,10 +701,9 @@ $lang['Menu Management'] = 'Menus';
|
||||
$lang['automatic order'] = 'ordre automatique';
|
||||
$lang['manual order'] = 'ordre manuel';
|
||||
$lang['Albums automatically sorted'] = 'Les albums ont été triés automatiquement';
|
||||
$lang['Keep high definition'] = 'Conserver la haute définition';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'La largeur maximum pour la haute définition doit être un chiffre compris entre %d et %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'La hauteur maximum pour la haute définition doit être un chiffre compris entre %d et %d';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'La qualité d\'image pour la haute définition doit être un chiffre compris entre %d et %d';
|
||||
$lang['The original maximum width must be a number between %d and %d'] = 'La largeur maximum pour le redimensionnement de la photo original doit être un chiffre compris entre %d et %d';
|
||||
$lang['The original maximum height must be a number between %d and %d'] = 'La hauteur maximum pour le redimensionnement de la photo originale doit être un chiffre compris entre %d et %d';
|
||||
$lang['The original image quality must be a number between %d and %d'] = 'La qualité d\'image pour le redimensionnement de la photo originale doit être un chiffre compris entre %d et %d';
|
||||
$lang['Batch Manager'] = 'Gestion par lot';
|
||||
$lang['include child albums'] = 'inclure les sous-albums';
|
||||
$lang['Selection'] = 'Sélection';
|
||||
@@ -848,4 +840,7 @@ $lang['Add tags'] = "Ajouter les tags";
|
||||
$lang['Synchronize metadata'] = "Synchroniser les méta-données";
|
||||
$lang['Add to caddie'] = 'Ajouter au panier';
|
||||
$lang['Zoom'] = 'Zoom';
|
||||
$lang['Resize after upload'] = 'Redimensionner après transfert';
|
||||
$lang['Photo Sizes'] = 'Tailles de photo';
|
||||
$lang['Original Size'] = 'Taille originale';
|
||||
?>
|
||||
@@ -605,14 +605,7 @@ $lang['Select files'] = 'בחר קבצים';
|
||||
$lang['Everybody'] = 'כולם';
|
||||
$lang['Who can see these photos?'] = 'מי יכול לראות את התמונות?';
|
||||
$lang['Who can see this photo?'] = 'מי יכול לראות את התמונה?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'רוחב מרבי websize חייב להיות מספר בין% d% d ';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'הגובה המרבי של האתר חייב להיות מספר בין %d ו %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'איכות התמונה באתר חייב להיות מספר בין %d ו %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'הרוחב המרבי של תמונה ממוזערת חייב להיות מספר בין %d ו %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'הגובה המרבי של תמונה ממוזערת חייב להיות מספר בין %d ו %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'האיכות המירבית של תמונה ממוזערת חייב להיות מספר בין %d ו %d';
|
||||
$lang['Settings'] = 'הגדרות';
|
||||
$lang['Web size photo'] = 'צילום בגודל האתר ';
|
||||
$lang['Resize'] = 'גודל';
|
||||
$lang['Maximum Width'] = 'רוחב מרבי';
|
||||
$lang['pixels'] = 'פיקסלים';
|
||||
@@ -709,10 +702,6 @@ $lang['Menu Management'] = 'נהל תפריטים';
|
||||
$lang['automatic order'] = 'סדר אוטומטי';
|
||||
$lang['manual order'] = 'סדר ידני';
|
||||
$lang['Albums automatically sorted'] = 'מיון אלבומים אוטומטי';
|
||||
$lang['Keep high definition'] = 'שמור על חדות גבוהה';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'הגדרת הרוחב המקסימלי חייב להיות מספר בין %d ו %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'הגדרת הגובהה המקסימלי חייב להיות מספר בין %d ו %d';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'הגדרת האיכות הטובה ביותר חייבת להיות מספר בין %d ו %d';
|
||||
$lang['Batch Manager'] = 'מנהל קבוצה';
|
||||
$lang['include child albums'] = 'כולל אלבום ילד';
|
||||
$lang['Selection'] = 'מבחר';
|
||||
|
||||
@@ -596,14 +596,7 @@ $lang['Manage this set of %d photos'] = 'Upravljanje ovim skupom od %d slika';
|
||||
$lang['Select files'] = 'Odaberi zapise';
|
||||
$lang['Everybody'] = 'Svi';
|
||||
$lang['Who can see these photos?'] = 'Tko može pregledavati ove slike?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'Najveća širina web prozora mora biti broj između %d i %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'Najveća visina web prozora mora biti broj između %d i %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'Kakvoća slike u web prozoru mora biti broj između %d i %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'Najveća širina poveznih sličica mora biti broj između %d i %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'Najveća visina poveznih sličica mora biti broj između %d i %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Kakvoća poveznih sličica mora biti broj između %d i %d';
|
||||
$lang['Settings'] = 'Postavke';
|
||||
$lang['Web size photo'] = 'Veličina slike na web stranici';
|
||||
$lang['Resize'] = 'Pronijeni veličinu';
|
||||
$lang['Maximum Width'] = 'Najveća Širina';
|
||||
$lang['pixels'] = 'piksela';
|
||||
@@ -704,7 +697,6 @@ $lang['Failed to write file to disk'] = 'Nije uspjelo zapisivanje na disk';
|
||||
$lang['File upload stopped by extension'] = 'Upload datoteke je zaustavljen od strane ekstenzije';
|
||||
$lang['In your php.ini file, the upload_max_filesize (%sB) is bigger than post_max_size (%sB), you should change this setting'] = 'Vrijednost upload_max_filesize (%sB) u vašoj php.ini datoteci je veća od post_max_size (%sB), trebali biste podesiti te postavke';
|
||||
$lang['include child albums'] = 'uključi podalbume';
|
||||
$lang['Keep high definition'] = 'Zadrži visoku kvalitetu';
|
||||
$lang['manual order'] = 'ručni poredak';
|
||||
$lang['%d of %d photos selected'] = 'označeno %d od %d fotografija';
|
||||
$lang['Missing a temporary folder'] = 'Nedostaje privremena mapa';
|
||||
@@ -729,9 +721,6 @@ $lang['Selection'] = 'Odabir';
|
||||
$lang['Set author'] = 'Postavi autora';
|
||||
$lang['Set creation date'] = 'Postavi datum nastanka';
|
||||
$lang['Set title'] = 'Postavi naslov';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'Kvaliteta slike visoke razlučivosti mora biti broj između %d i %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'Maksimalna visina slike visoke razlučivosti mora biti broj između %d i %d';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'Maksimalna širina slike visoke razlučivosti mora biti broj između %d i %d';
|
||||
$lang['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'] = 'Veličina poslane datoteke prelazi MAX_FILE_SIZE postavku definiranu unutar HTML obrasca';
|
||||
$lang['The uploaded file exceeds the upload_max_filesize directive in php.ini: %sB'] = 'Veličina poslane datoteke prelazi uload_max_filesize postavku u php.ini: %sB';
|
||||
$lang['The uploaded file was only partially uploaded'] = 'Poslana datoteka je djelomično upload-ana';
|
||||
|
||||
@@ -587,14 +587,7 @@ $lang['Manage this set of %d photos'] = 'Szerkessze a készlet (%d elem) képeit
|
||||
$lang['Select files'] = 'Képek kiválasztása';
|
||||
$lang['Everybody'] = 'Mindenki';
|
||||
$lang['Who can see these photos?'] = 'Ki láthatja a képeket?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'Meg kell adni a kép legnagyobb szélességét pixelben %d és %d között';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'Meg kell adni a kép legnagyobb magasságát pixelben %d és %d között';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'Meg kell adni a kép minőségét %d és %d között';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'Meg kell adni a bélyegkép legnagyobb szélességét pixelben %d és %d között';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'Meg kell adni a bélyegkép legnagyobb magasságát pixelben %d és %d között';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Meg kell adni a bélyegkép minőségét %d és %d között';
|
||||
$lang['Settings'] = 'Képméret beállítás';
|
||||
$lang['Web size photo'] = 'Kép mérete a weben';
|
||||
$lang['Resize'] = 'Átméretezés';
|
||||
$lang['Maximum Width'] = 'Legnagyobb szélesség';
|
||||
$lang['pixels'] = 'pixel';
|
||||
@@ -704,10 +697,6 @@ $lang['Error on file "%s" : %s'] = 'Hibás a fájl "%s" : %s';
|
||||
$lang['automatic order'] = 'automatikus rendezés';
|
||||
$lang['manual order'] = 'kézi rendezés';
|
||||
$lang['Albums automatically sorted'] = 'Automatikusan rendezett albumok';
|
||||
$lang['Keep high definition'] = 'Nagy felbontás megtartása';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'A nagy felbontás maximális szélessége %d és %d között legyen';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'A nagy felbontás maximális magassága %d és %d között legyen';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'A nagy felbontás maximális képminősége %d és %d között legyen';
|
||||
$lang['Batch Manager'] = 'Kötegelt kezelés';
|
||||
$lang['include child albums'] = 'belső albumok is';
|
||||
$lang['Selection'] = 'Kiválasztás';
|
||||
|
||||
@@ -605,14 +605,7 @@ $lang['Select files'] = 'Scegliere i file';
|
||||
$lang['Everybody'] = 'Tutti';
|
||||
$lang['Who can see these photos?'] = 'Chi può vedere queste foto?';
|
||||
$lang['Who can see this photo?'] = 'Chi può vedere questa foto?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'La larghezza massima della foto con dimenzioni per il web deve essere un numero tra %d e %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'L\'altezza massima della foto con dimenzioni per il web deve essere un numero tra %d e %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'La qualità dell\'immagine per la foto con dimenzioni per il web deve essere un numero tra %d e %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'La larghezza massima della miniatura deve essere un numero tra %d e %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'L\'altezza massima della miniatura deve essere un numero tra %d e %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'La qualità dell\'immagine per la miniatura deve essere un numero tra %d e %d';
|
||||
$lang['Settings'] = 'Configurazione';
|
||||
$lang['Web size photo'] = 'Dimensione foto web';
|
||||
$lang['Resize'] = 'Ridimensionare';
|
||||
$lang['Maximum Width'] = 'Larghezza massima';
|
||||
$lang['pixels'] = 'pixels';
|
||||
@@ -710,10 +703,6 @@ $lang['Menu Management'] = 'Menu';
|
||||
$lang['automatic order'] = 'Ordinamento automatico';
|
||||
$lang['manual order'] = 'Ordinamento manuel';
|
||||
$lang['Albums automatically sorted'] = 'Gli album sono stati ordinati automaticamente';
|
||||
$lang['Keep high definition'] = 'Mantenere l\'alta definizione';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'La larghezza massima per l\'alta definizione deve essere un numero compreso tra %d e %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'L\'altezza massima per l\'alta definizione deve essere un numero compreso tra %d e %d';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'La qualità dell\'immagine per l\'alta definizione deve essere un numero compreso tra %d e %d';
|
||||
$lang['Batch Manager'] = 'Gestione dei lotti';
|
||||
$lang['include child albums'] = 'includere gli album dipendenti';
|
||||
$lang['Selection'] = 'Selezione';
|
||||
|
||||
@@ -606,14 +606,7 @@ $lang['Manage this set of %d photos'] = ' %d 枚の写真を管理する';
|
||||
$lang['Select files'] = 'ファイルを選択する';
|
||||
$lang['Everybody'] = '全員';
|
||||
$lang['Who can see these photos?'] = 'どなたがこの写真を見られますか?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'ウェッブサイズの最大幅は %d と %dの中に設定する必要があります。';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'ウェッブサイズの最大の高さは%d と %dの中に設定する必要があります。';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'ウェッブサイズの画質は%d と %d の中に設定する必要があります。';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'サムネールの最大幅は%d と %d の中に設定する必要があります。';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'サムネールの最大の高さは%d と %d の中に設定する必要があります。';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'サムネールの画質は%d と %d の中に設定する必要があります。';
|
||||
$lang['Settings'] = '設定';
|
||||
$lang['Web size photo'] = 'ウェッブ用の写真';
|
||||
$lang['Resize'] = '拡大・縮小';
|
||||
$lang['Maximum Width'] = '最大の幅';
|
||||
$lang['pixels'] = 'ピクセル';
|
||||
|
||||
@@ -613,14 +613,7 @@ $lang['Manage this set of %d photos'] = 'ამ კრებულის რე
|
||||
$lang['Select files'] = 'ავირჩიოთ ფაილები';
|
||||
$lang['Everybody'] = 'ყველა';
|
||||
$lang['Who can see these photos?'] = 'ვის შეუძლია ნახოს ეს ფოტოები?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'ფოტოს მაქსიმალური სიგანე უნდა იყოს რიცხვი %d და %d შორის';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'ფოტოს მაქსიმალური სიმაღლე უნდა იყოს რიცხვი %d და %d შორის';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'ფოტოს ხარისხი უნდა იყოს რიცხვით %d და %d შორის';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'მინიატურის მაქსიმალური სიგანე უნდა იყოს რიცხვი %d და %d შორის';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'მინიატურის მაქსიმალური სიმაღლე უნდა იყოს რიცხვი %d და %d შორის';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'მინიატურის ხარისხი უნდა იყოს რიცხვი %d და %d შორის';
|
||||
$lang['Settings'] = 'პარამეტრები';
|
||||
$lang['Web size photo'] = 'ფოტოს ზომა ინტერნეტისათვის';
|
||||
$lang['Resize'] = 'ზომების შეცვლა';
|
||||
$lang['Maximum Width'] = 'მაქსიმალური სიგანე';
|
||||
$lang['pixels'] = 'პიქსელი';
|
||||
@@ -719,10 +712,6 @@ $lang['Error on file "%s" : %s'] = 'შეცდომაა ფაილში
|
||||
$lang['automatic order'] = 'ავტომატურად განლაგება';
|
||||
$lang['manual order'] = 'ხელით განლაგება';
|
||||
$lang['Albums automatically sorted'] = 'ალბომები ავტომატურად დალაგებულია';
|
||||
$lang['Keep high definition'] = 'შევინახოთ მაღალი გარჩევადობით';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'მაღალი გარჩევადობისას მაქსიმალური სიგანე უნდა იყოს რიცხვი %d და %d შორის';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'მაღალი გარჩევადობისას მაქსიმალური სიმაღლე უნდა იყოს რიცხვი %d და %d შორის';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'მაღალი გარჩევადობისას სურათის ხარისხი უნდა იყოს რიცხვი %d და %d შორის';
|
||||
$lang['Batch Manager'] = 'სურათების მენეჯერი';
|
||||
$lang['include child albums'] = 'მოიცავს ბავშვის ალბომებს';
|
||||
$lang['Selection'] = 'არჩევა';
|
||||
|
||||
@@ -598,14 +598,7 @@ $lang['Select files'] = 'Izvēlēties failus';
|
||||
$lang['Everybody'] = 'Visi';
|
||||
$lang['Who can see these photos?'] = 'Kas var skatīties šos attēlus?';
|
||||
$lang['Who can see this photo?'] = 'Kas var skatīties šo attēlu?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'Maksimālajam attēla platumam jābūt skaitlim starp %d and %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'Maksimālajam attēla augstumam jābūt skaitlim starp %d and %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'Attēla kvalitātei jābūt skaitlim starp %d and %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'Maksimālajam piktogrammas platumam jābūt skaitlim starp %d and %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'Maksimālajam piktogrammas augstumam jābūt skaitlim starp %d and %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Piktogrammas kvalitātei jābūt skaitlim starp %d and %d';
|
||||
$lang['Settings'] = 'Iestatījumi';
|
||||
$lang['Web size photo'] = 'Attēla izmērs internetam';
|
||||
$lang['Resize'] = 'Izmainīt izmērus';
|
||||
$lang['Maximum Width'] = 'Maksimālais platums';
|
||||
$lang['pixels'] = 'pikseļi';
|
||||
@@ -699,10 +692,6 @@ $lang['Menu Management'] = 'Izvēlnes Pārvalde';
|
||||
$lang['automatic order'] = 'automātiskais kārtojums';
|
||||
$lang['manual order'] = 'manuālais kārtojums';
|
||||
$lang['Albums automatically sorted'] = 'Albūmi ir automātiski sakārtoti';
|
||||
$lang['Keep high definition'] = 'Palikt pie augstas izšķirtspējas';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'Augstas izšķirtspējas attēla maksimālajam platumam jābūt starp %d un %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'Augstas izšķirtspējas attēla maksimālajam augstumam jābūt starp %d un %d';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'Augstas izšķirtspējas attēla kvalitātei jābūt starp %d un %d';
|
||||
$lang['Batch Manager'] = 'Sērijveida failu pārvaldnieks';
|
||||
$lang['include child albums'] = 'ietvert radniecīgos albūmus';
|
||||
$lang['Selection'] = 'Izvēle';
|
||||
|
||||
@@ -598,14 +598,7 @@ $lang['Manage this set of %d photos'] = 'Beheer deze reeks van %d foto\'s';
|
||||
$lang['Select files'] = 'Selecteer bestanden';
|
||||
$lang['Everybody'] = 'Iedereen';
|
||||
$lang['Who can see these photos?'] = 'Wie mag deze foto\'s zien?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'De webgrootte maximum breedte moet liggen tussen %d en %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'De webgrootte maximum hoogte moet liggen tussen %d en %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'De webgrootte afbeeldingskwaliteit moet liggen tussen %d en %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'De maximum breedte van de mini-afbeelding moet liggen tussen %d en %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'De maximimum hoogte van de mini-afbeelding moet liggen tussen %d en %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'De afbeeldingskwaliteit van de mini-afbeelding moet liggen tussen %d en %d';
|
||||
$lang['Settings'] = 'Instellingen';
|
||||
$lang['Web size photo'] = 'Webgrootte foto';
|
||||
$lang['Resize'] = 'Grootte aanpassen';
|
||||
$lang['Maximum Width'] = 'Maximum Breedte';
|
||||
$lang['pixels'] = 'pixels';
|
||||
@@ -703,10 +696,6 @@ $lang['Error on file "%s" : %s'] = 'Fout in het bestand "%s" : %s';
|
||||
$lang['automatic order'] = 'automatische volgorde';
|
||||
$lang['manual order'] = 'handmatige volgorde';
|
||||
$lang['Albums automatically sorted'] = 'Albums automatisch gesorteerd';
|
||||
$lang['Keep high definition'] = 'Behoud hoge resolutie';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'De hoge resolutie maximale breedte moet een nummer zijn tussen %d en %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'De hoge resolutie maximale hoogte moet een getal zijn tussen %d en %d';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'De hoge resolutie beeldkwaliteit moet een getal zijn tussen %d en %d';
|
||||
$lang['Batch Manager'] = 'Bulk beheerder';
|
||||
$lang['include child albums'] = 'include child albums';
|
||||
$lang['Selection'] = 'Selectie';
|
||||
|
||||
@@ -601,14 +601,7 @@ $lang['Select files'] = 'Velg filer';
|
||||
$lang['Everybody'] = 'Alle';
|
||||
$lang['Who can see these photos?'] = 'Hvem kan se disse bildene?';
|
||||
$lang['Who can see this photo?'] = 'Hvem kan se dette bildet?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'Websidens maksimums bredde må være et nummer mellom %d og %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'Websidens maksimums høyde må være et nummer mellom %d og %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'Websidens bilde kvalitet må være et nummer mellom %d og %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'Miniatyrbildets maksimumme bredde må være et nummer mellom %d og %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'Miniatyrbildets maksimumme høyde må være et nummer mellom %d og %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Miniatyrbildets kvalitet må være et nummer mellom %d og %d';
|
||||
$lang['Settings'] = 'Instillinger';
|
||||
$lang['Web size photo'] = 'Web størrelse bilde';
|
||||
$lang['Resize'] = 'Endre størrelse';
|
||||
$lang['Maximum Width'] = 'Maksimum bredde';
|
||||
$lang['pixels'] = 'piksler';
|
||||
@@ -702,10 +695,6 @@ $lang['Menu Management'] = 'Menyer';
|
||||
$lang['automatic order'] = 'automatisk sortering';
|
||||
$lang['manual order'] = 'manuell sortering';
|
||||
$lang['Albums automatically sorted'] = 'Album automatisk sortert';
|
||||
$lang['Keep high definition'] = 'Behold høy oppløsning';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'Høy oppløsnings maksimum bredde må være et nummer mellom %d og %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'Høy oppløsnings maksimum høyde må være et nummer mellom %d og %d';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'Høy oppløslig bilde kvalitet må være et nummer mellom %d og %d';
|
||||
$lang['Batch Manager'] = 'Batch Behandler';
|
||||
$lang['include child albums'] = 'inkluder under album';
|
||||
$lang['Selection'] = 'Utvalg';
|
||||
|
||||
@@ -600,14 +600,7 @@ $lang['Manage this set of %d photos'] = 'Zarządzaj tym zbiorem %d zdjęć';
|
||||
$lang['Select files'] = 'Wybierz pliki';
|
||||
$lang['Everybody'] = 'Każdy';
|
||||
$lang['Who can see these photos?'] = 'Kto może oglądać te zdjęcia?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'Maksymalna szerokość dla www musi być liczbą pomiędzy %d i %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'Maksymalna wysokość dla www musi być liczbą pomiędzy %d i %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'Maksymalna jakość obrazu dla www musi być liczbą pomiędzy %d i %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'Maksymalna szerokość miniatury musi być liczbą pomiędzy %d i %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'Maksymalna wysokość miniatury musi być liczbą pomiędzy %d i %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Jakość miniatury musi być liczbą pomiędzy %d i %d';
|
||||
$lang['Settings'] = 'Ustawienia';
|
||||
$lang['Web size photo'] = 'Zdjęcie o rozmiarze www';
|
||||
$lang['Resize'] = 'Zmień wymiary';
|
||||
$lang['Maximum Width'] = 'Maksymalna szerokość';
|
||||
$lang['pixels'] = 'pikseli';
|
||||
@@ -703,10 +696,6 @@ $lang['Menu Management'] = 'Menu';
|
||||
$lang['automatic order'] = 'automatyczna kolejność';
|
||||
$lang['manual order'] = 'ręczne zamówienie';
|
||||
$lang['Albums automatically sorted'] = 'Albumy sortowane automatycznie';
|
||||
$lang['Keep high definition'] = 'Zachowaj wysoką jakość';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'Maksymalna szerokość w wysokiej jakości musi być liczbą pomiędzy %d i %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'Maksymalna wysokość w wysokiej jakości musi być liczbą pomiędzy %d i %d';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'Jakość obrazów w wysokiej jakości musi być liczbą pomiędzy %d i %d';
|
||||
$lang['Batch Manager'] = 'Manadżer wsadowy';
|
||||
$lang['include child albums'] = 'zawieraj podalbumy';
|
||||
$lang['Selection'] = 'Zaznaczenie';
|
||||
|
||||
@@ -644,7 +644,6 @@ $lang['Installed Languages'] = 'Linguagens Instaladas';
|
||||
$lang['Installed Themes'] = 'Temas Instalados';
|
||||
$lang['Instructions to use Piwigo'] = 'Instruções para usar Piwigo';
|
||||
$lang['Invert'] = 'Inverter';
|
||||
$lang['Keep high definition'] = 'Manter Alta Definição';
|
||||
$lang['Language has been successfully installed'] = 'Linguagem instalada com sucesso';
|
||||
$lang['Languages'] = 'Linguagens';
|
||||
$lang['Main Page'] = 'Página Principal';
|
||||
@@ -700,19 +699,10 @@ $lang['Settings'] = 'Definições';
|
||||
$lang['Start pLoader and add your photos.'] = 'Iniciar pLoader e adicionar as suas fotos.';
|
||||
$lang['Switch to clear or dark colors for administration'] = 'Mudar esquema de cores, claro ou escuro, para a administração';
|
||||
$lang['The following tag was deleted'] = 'A Etiqueta seguinte foi removida';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'A qualidade da Foto de Alta Definição deve ser um número entre %d e %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'A Altura máxima para a Foto de Alta Definição deve ser um número entre %d e %d';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'A Largura máxima para a Foto de Alta Definição deve ser um número entre %d e %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'A qualidade de foto da Miniatura deve ser um número entre %d e %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'A Altura máxima para a Miniatura deve ser um número entre %d e %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'A Largura máxima para a Miniatura deve ser um número entre %d e %d';
|
||||
$lang['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'] = 'O ficheiro enviado excede a directiva MAX_FILE_SIZE especificada no formulário HTML';
|
||||
$lang['The uploaded file exceeds the upload_max_filesize directive in php.ini: %sB'] = 'O ficheiro enviado excede a directiva upload_max_filesize definida no ficheiro php.ini: %sB';
|
||||
$lang['The uploaded file was only partially uploaded'] = 'O ficheiro apenas foi enviado parcialmente';
|
||||
$lang['The uploaded files exceed the post_max_size directive in php.ini: %sB'] = 'Os ficheiros enviados excedem a directiva post_max_sizedefinida no ficheiro php.ini: %sB';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'A qualidade de foto para a Web deve ser um número entre %d e %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'A Altura máxima para a Foto Web deve ser um número entre %d e %d';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'A Largura máxima para a Foto Web deve ser um número entre %d e %d';
|
||||
$lang['The whole page'] = 'Página Completa';
|
||||
$lang['The whole set'] = 'Conjunto Completo';
|
||||
$lang['Theme has been successfully installed'] = 'O Tema foi instalado com sucesso';
|
||||
@@ -732,7 +722,6 @@ $lang['Uploaded Photos'] = 'Fotos Enviadas';
|
||||
$lang['Visit Gallery'] = 'Visitar a galeria';
|
||||
$lang['Visit Piwigo project website'] = 'Visitar o sítio do projecto Piwigo';
|
||||
$lang['Visit plugin site'] = 'Visitar o sítio do plugin';
|
||||
$lang['Web size photo'] = 'Foto Web';
|
||||
$lang['Webmaster status is required.'] = 'Estatuto de Webmaster requerido.';
|
||||
$lang['Week starts on'] = 'A semana começa em';
|
||||
$lang['Who can see these photos?'] = 'Quem pode ver estas fotos?';
|
||||
|
||||
@@ -604,14 +604,7 @@ $lang['Manage this set of %d photos'] = 'Редактировать этот н
|
||||
$lang['Select files'] = 'Выбрать файлы';
|
||||
$lang['Everybody'] = 'Все';
|
||||
$lang['Who can see these photos?'] = 'Кто может смотреть эти фотографии?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'Максимальная ширина изображения должна быть числом между %d и %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'Максимальная высота изображения должна быть числом между %d и %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'Качество изображения должно быть числом между %d и%d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'Максимальная ширина миниатюры должна быть числом %d и %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'Максимальная высота миниатюры должна быть числом между %d и %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Качество миниатюры должно быть числом между %d и %d';
|
||||
$lang['Settings'] = 'Установки';
|
||||
$lang['Web size photo'] = 'Размер фотографии для интернета';
|
||||
$lang['Resize'] = 'Изменить размеры';
|
||||
$lang['Maximum Width'] = 'Максимальная ширина';
|
||||
$lang['pixels'] = 'пикселей';
|
||||
@@ -710,10 +703,6 @@ $lang['Error on file "%s" : %s'] = 'Ошибка в файле "%s" : %s';
|
||||
$lang['automatic order'] = 'автоматический режим';
|
||||
$lang['manual order'] = 'самостоятельный режим';
|
||||
$lang['Albums automatically sorted'] = 'Автоматическая сотрировка альбомов';
|
||||
$lang['Keep high definition'] = 'Сохранить большое разрешение';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'Максимальная ширина большого разрешения должна быть значением между %d and %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'Максимальная высота большого разрешения должна быть значением между %d and %d';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'Максимальное качество большого разрешения должно быть значением между %d and %d';
|
||||
$lang['Batch Manager'] = 'Пакетный менеджер';
|
||||
$lang['include child albums'] = 'включает дочерние альбомы';
|
||||
$lang['Selection'] = 'Выбор';
|
||||
|
||||
@@ -608,14 +608,7 @@ $lang['Manage this set of %d photos'] = 'Uredi ovaj set %d fotografija';
|
||||
$lang['Select files'] = 'Izaberi datoteke';
|
||||
$lang['Everybody'] = 'Svi';
|
||||
$lang['Who can see these photos?'] = 'Ko može da vidi fotografije?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'Maksimalna širina fotografije mora biti broj između %d i %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'Maksimalna visina fotografije mora biti broj između %d i %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'Kvalitet fotografije mora biti broj između %d i %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'Maksimalna širina povezne sličice mora biti broj između %d i %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'Maksimalna visina povezne sličice mora biti broj između %d i %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Kvalitet povezne sličice mora biti broj između %d i %d';
|
||||
$lang['Settings'] = 'Podešenja';
|
||||
$lang['Web size photo'] = 'Veličina fotografije';
|
||||
$lang['Resize'] = 'Promeni veličinu';
|
||||
$lang['Maximum Width'] = 'Maksimalna širina';
|
||||
$lang['pixels'] = 'pikseli';
|
||||
|
||||
@@ -601,14 +601,7 @@ $lang['Everybody'] = 'Každý';
|
||||
$lang['Who can see these photos?'] = 'Kto môže vidieť tieto fotografie?';
|
||||
$lang['Who can see this photo?'] = 'Kto môže vidieť túto fotografiu?';
|
||||
$lang['Pending Comments'] = 'Nevybavené komentáre';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'Maximálna šírka webovej stránky musí byť číslo medzi %d a %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'Maximálna výška webovej stránky musí byť číslo medzi %d a %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'Kvalita formátu fotografie pre web musí byť číslo medzi %d and %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'Maximálna šírka náhľadu obrázku musí byť číslo medzi %d a %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'Maximálna výška náhľadu obrázku musí byť číslo medzi %d a %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Kvalita formátu náhľadu fotografie musí byť číslo medzi %d a %d';
|
||||
$lang['Settings'] = 'Nastavenia';
|
||||
$lang['Web size photo'] = 'Veľkosť fotografie pre web';
|
||||
$lang['Resize'] = 'Zmeniť veľkosť';
|
||||
$lang['Maximum Width'] = 'Maximálna šířka';
|
||||
$lang['pixels'] = 'bodov';
|
||||
@@ -705,10 +698,6 @@ $lang['Error on file "%s" : %s'] = 'Chyba súboru "%s" : %s';
|
||||
$lang['automatic order'] = 'automatické zoradenie';
|
||||
$lang['manual order'] = 'manuálne zoradenie';
|
||||
$lang['Albums automatically sorted'] = 'Automaticky triedené albumy';
|
||||
$lang['Keep high definition'] = 'Udržať vysoké rozlíšenie';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'Šírka vysokého rozlíšenia musí byť číslo medzi %d a %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'Výška vysokého rozlíšenia musí byť číslo medzi %d a %d';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'Kvalita fotky vo vysokom rozlíšení musí byť číslo medzi %d a %d';
|
||||
$lang['Batch Manager'] = 'Správca dávky';
|
||||
$lang['include child albums'] = 'vrátane podalbumov';
|
||||
$lang['Selection'] = 'Výber';
|
||||
|
||||
@@ -608,14 +608,7 @@ $lang['Manage this set of %d photos'] = 'Уреди овај сет %d фото
|
||||
$lang['Select files'] = 'Изабери датотеке';
|
||||
$lang['Everybody'] = 'Сви';
|
||||
$lang['Who can see these photos?'] = 'Ко може да види фотографије?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'Максимална ширина фотографије мора бити број између %d и %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'Максимална висина фотографије мора бити број између %d и %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'Квалитет фотографије мора бити број између %d и %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'Максимална ширина повезне сличице мора бити број између %d и %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'Максимална висина повезне сличице мора бити број између %d и %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Квалитет повезне сличице мора бити број између %d и %d';
|
||||
$lang['Settings'] = 'Подешења';
|
||||
$lang['Web size photo'] = 'Величина фотографије';
|
||||
$lang['Resize'] = 'Промени величину';
|
||||
$lang['Maximum Width'] = 'Максимална ширина';
|
||||
$lang['pixels'] = 'тачака';
|
||||
@@ -724,7 +717,6 @@ $lang['Delete orphan tags'] = 'Обриши orphan ознаку';
|
||||
$lang['delete photo'] = 'избриши фотографију';
|
||||
$lang['Duplicates'] = 'дупликати';
|
||||
$lang['include child albums'] = 'укључи подалбуме';
|
||||
$lang['Keep high definition'] = 'Задржи бољу дефиницију';
|
||||
$lang['last import'] = 'последње додавање';
|
||||
$lang['manual order'] = 'ручно уређивање';
|
||||
$lang['No photo in the current set.'] = 'Нема фотографија у одабраном скупу.';
|
||||
@@ -744,9 +736,6 @@ $lang['Selection'] = 'Избор';
|
||||
$lang['Set author'] = 'Постави аутора';
|
||||
$lang['Set creation date'] = 'Постави датум прављења';
|
||||
$lang['Set title'] = 'Постави наслов';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'The high definition image quality мора бити број између %d и %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'The high definition maximum height мора бити број између %d и %d';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'The high definition maximum width мора бити број између %d и %d';
|
||||
$lang['The whole page'] = 'Комплетна страница';
|
||||
$lang['The whole set'] = 'Комплетан скуп';
|
||||
$lang['Type here the author name'] = 'Откуцај овде име аутора';
|
||||
|
||||
@@ -598,14 +598,7 @@ $lang['Select files'] = 'Markerade filer';
|
||||
$lang['Everybody'] = 'Alla';
|
||||
$lang['Who can see these photos?'] = 'Vem kan se dessa foton?';
|
||||
$lang['Who can see this photo?'] = 'Vem kan se detta foto?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'Webstorlekens maximala bredd måste vara ett nummer mellan %d och %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'Webstorlekens maximala höjd måste vara ett nummer mellan %d och %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'Webstorlekens bildkvalitet måste vara ett nummer mellan %d och %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'Miniatyrbildens maximala bredd måste vara ett nummer mellan %d och %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'Miniatydbildens maximala höjd måste vara ett nummer mellan %d och %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Miniatydbildens kvalitet måste vara ett nummer mellan %d och %d';
|
||||
$lang['Settings'] = 'Inställningar';
|
||||
$lang['Web size photo'] = 'Webstorleks foto';
|
||||
$lang['Resize'] = 'Ändra storlek';
|
||||
$lang['Maximum Width'] = 'Maximal Bredd';
|
||||
$lang['pixels'] = 'pixlar';
|
||||
@@ -702,10 +695,6 @@ $lang['Menu Management'] = 'Hantera menyer';
|
||||
$lang['automatic order'] = 'automatisk beställning';
|
||||
$lang['manual order'] = 'manuell beställning';
|
||||
$lang['Albums automatically sorted'] = 'Album sorteras automatiskt';
|
||||
$lang['Keep high definition'] = 'Behåll högupplösing';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'Den högupplösta bildens maximal bredd måste vara ett tal mellan %d och %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'Den högupplösta bildens maximal höjd måste vara ett tal mellan %d and %d';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'Den högupplösta bildkvalitet måste vara ett tal mellan %d and %d';
|
||||
$lang['Batch Manager'] = 'Batch hanteraren';
|
||||
$lang['include child albums'] = 'innefattar under album';
|
||||
$lang['Selection'] = 'Urval';
|
||||
|
||||
@@ -351,7 +351,6 @@ $lang['Invert'] = 'สลับ';
|
||||
$lang['IP'] = "ไอพี";
|
||||
$lang['jump to album'] = "ไปยังอัลบั้ม";
|
||||
$lang['jump to photo'] = "ไปยังรูปภาพ";
|
||||
$lang['Keep high definition'] = 'เก็บค่าความละเอียดสูงสุด';
|
||||
$lang['Keep in touch with Piwigo project, subscribe to Piwigo Announcement Newsletter. You will receive emails when a new release is available (sometimes including a security bug fix, it\'s important to know and upgrade) and when major events happen to the project. Only a few emails a year.'] = "ติดต่อกับ Piwigo โปรเจค, บอกรับข่าวสารจาก Piwigo. คุณจะได้รับอีเมล เมื่อมี Piwigo เวอร์ชั่นใหม่ถูกปล่อยออกมา (บางที มีการปรับปรุงแก้ไขด้านความปลอดภัย และจุดบกพล่องต่างๆ ซึ่งมันสำคัญมากเพื่ออัพเกรดระบบ) รวมทั้งเมื่อ Piwigo โปรเจคได้ทำ เวอร์ชั่นหลัก หรือเมเจอร์เวอร์ชั่น. ซึ่งมีเมลถึงคุณต่อปีไม่กี่ฉบับเท่านั้น.";
|
||||
$lang['Language has been successfully installed'] = 'ภาษาได้ถูกติดตั้งสมบูรณ์';
|
||||
$lang['Languages'] = 'ภาษา';
|
||||
@@ -633,17 +632,11 @@ $lang['The file or directory cannot be accessed (either it does not exist or the
|
||||
$lang['The following tag was deleted'] = 'แท็กที่กำลังหาได้ถูกลบแล้ว';
|
||||
$lang['the forum'] = "ฟอรั่ม";
|
||||
$lang['The gallery URL is not valid.'] = "URL แกลลอรี่ไม่ถูกต้อง.";
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'ขนาดรูปภาพความละเอียดสูงหรือคุณภาพแบบ HD จะต้องเป็นตัวเลขจำนวนระหว่าง %d และ %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'ขนาดรูปภาพความละเอียดสูง สูงสุด ความสูง จะต้องเป็นตัวเลขจำนวนระหว่าง %d และ %d';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'ขนาดรูปภาพความละเอียดสูง สูงสุด ความกว้าง จะต้องเป็นตัวเลขจำนวนระหว่าง %d และ %d';
|
||||
$lang['The name of a group must not contain " or \' or be empty.'] = "ชื่อกลุ่มจะต้องไม่ประกอบด้วยเครื่องหมาย \" หรือ ' หรือช่องเว้นว่าง.";
|
||||
$lang['The name of an album must not be empty'] = "ชื่อของอัลบั้มจะต้องไม่ปล่อยว่าง";
|
||||
$lang['The name of directories and files must be composed of letters, numbers, "-", "_" or "."'] = "ชื่อของไดเรกทอรี่และไฟล์ ต้องประกอบด้วยตัวอักษร, ตัวเลข, \"-\", \"_\" หรือ \".\"เท่านั้น";
|
||||
$lang['The number of comments a page must be between 5 and 50 included.'] = "จำนวนความคิดเห็นต่อหนึ่งหน้า จะต้องเป็นจำนวนระหว่าง 5 แต่ไม่เกิน 50 ความคิดเห็น.";
|
||||
$lang['The permalink name must be composed of a-z, A-Z, 0-9, "-", "_" or "/". It must not be numeric or start with number followed by "-"'] = "ชื่อลิงค์จะต้องประกอบด้วย a-z, A-Z, 0-9, \"-\", \"_\" หรือ \"/\". แต่จะต้องไม่ใช่อักขระพิเศษ หรือเริ่มต้นด้วยตัวเลขแล้วตามด้วยเครื่องหมาย \"-\"";
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'คุณภาพของรูปภาพขนาดย่อ จะต้องเป็นตัวเลขจำนวนระหว่าง %d และ %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'ความสูงสูงสุดของรูปภาพขนาดย่อ จะต้องเป็นตัวเลขจำนวนระหว่าง %d และ %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'ความกว้างสูงสุดของรูปภาพขนาดย่อ จะต้องเป็นตัวเลขจำนวนระหว่าง %d และ %d';
|
||||
$lang['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'] = 'ไฟล์ที่จะอัพโหลด มีขนาดใหญ่เกินไป โปรดใช้การอัพโหลดโดยตรงผ่านรูปแบบ HTML หรือการอัพโหลดแบบปกติ';
|
||||
$lang['The uploaded file exceeds the upload_max_filesize directive in php.ini: %sB'] = 'ไฟล์ที่จะอัพโหลดมีขนาดใหญ่เกินที่กำหนดไว้ในไฟล์การตั้งค่า php.ini: %sB';
|
||||
$lang['The uploaded file was only partially uploaded'] = 'ไฟล์ที่อัพโหลดได้ถูกอัพโหลดไปบางส่วน';
|
||||
@@ -651,9 +644,6 @@ $lang['The uploaded files exceed the post_max_size directive in php.ini: %sB'] =
|
||||
$lang['The version of %s [%s] installed is not compatible with the version required [%s]'] = "เวอร์ชั่นของ %s [%s] ที่ได้ติดตั้งไปไม่สามารถรองรับการทำงาน กับเวอร์ชั่นที่ต้องการ [%s]";
|
||||
$lang['The webmaster has subscribed you to receiving notifications by mail.'] = "เว็บมาสเตอร์ได้บอกรับคุณโดยการแจ้งผ่านเมล.";
|
||||
$lang['The webmaster has unsubscribed you from receiving notifications by mail.'] = "เว็บมาสเตอร์ได้ยกเลิกบอกรับคุณโดยการแจ้งผ่านเมล.";
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'คุณภาพของรูปภาพจะต้องเป็นตัวเลขจำนวนระหว่าง %d และ %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'ความสูงของรูปภาพสูงสุดจะต้องเป็นตัวเลขจำนวนระว่าง %d และ %d';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'ความสูงของรูปภาพสูงสุดจะต้องเป็นตัวเลขจำนวนระว่าง %d และ %d';
|
||||
$lang['The whole page'] = 'หน้าทั้งหมด';
|
||||
$lang['The whole set'] = 'ชุดการตั้งค่าทั้งหมด';
|
||||
$lang['the wiki'] = "วิกิ wiki";
|
||||
@@ -732,7 +722,6 @@ $lang['Visit Piwigo project website'] = 'เยี่ยมชมเว็บไ
|
||||
$lang['Visit plugin site'] = 'เยี่ยมชมเว็บไซต์ปลั๊กอิน';
|
||||
$lang['Waiting'] = "รออนุมัติ";
|
||||
$lang['Warning: subscribing or unsubscribing will send mails to users'] = "คำเตือน: การบอกรับ หรือ ยกเลิกการบอกรับ จะถูกส่งไปยังผู้ใช้งานโดยเมล";
|
||||
$lang['Web size photo'] = 'ขนาดรูปภาพบนเว็บ';
|
||||
$lang['Webmaster cannot be deleted'] = "เว็บมาสเตอร์ไม่สามารถลบได้";
|
||||
$lang['Webmaster status is required.'] = 'จำเป็นต้องมีสถานะเป็น เว็บมาสเตอร์.';
|
||||
$lang['Week starts on'] = 'เริ่มต้นสัปดาห์วัน';
|
||||
|
||||
@@ -387,7 +387,6 @@ $lang['Invert'] = 'Ters çevir';
|
||||
$lang['IP'] = 'İp';
|
||||
$lang['jump to album'] = 'albüme geç';
|
||||
$lang['jump to photo'] = 'Resime geç';
|
||||
$lang['Keep high definition'] = 'Yüksek tanımlı tutun';
|
||||
$lang['Keep in touch with Piwigo project, subscribe to Piwigo Announcement Newsletter. You will receive emails when a new release is available (sometimes including a security bug fix, it\'s important to know and upgrade) and when major events happen to the project. Only a few emails a year.'] = 'Piwigo proje ile temas halinde olun.Piwigo Duyuru Haber Bülteni\'ne abone olun.Ne zaman yeni bir sürüm (bazen bir güvenlik veya hata çözümü dahil) ve önemli olaylar, projeye ne olduğunu anlatan e-postalar alacaksınız, önemli olan bilmek ve yükseltmek.Sadece yılda bir kaç e-posta.';
|
||||
$lang['Language has been successfully installed'] = 'Dil başarıyla yüklendi';
|
||||
$lang['Languages which need upgrade'] = 'Güncellenmesi gereken diller';
|
||||
@@ -699,17 +698,11 @@ $lang['The file or directory cannot be accessed (either it does not exist or the
|
||||
$lang['The following tag was deleted'] = 'Aşağıdaki etiketi silindi';
|
||||
$lang['the forum'] = 'Forum';
|
||||
$lang['The gallery URL is not valid.'] = 'Galeri URL geçerli degil.';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'yüksek tanımlı resim kalitesi %d ve %d arasında bir sayı olmalıdır';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'yüksek tanımlı resim yüksekliği %d ve %d arasında bir sayı olmalıdır';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'yüksek tanımlı resim genişliği %d ve %d arasında bir sayı olmalıdır';
|
||||
$lang['The name of a group must not contain " or \' or be empty.'] = 'Bir grubun ismi " veya \ içermemelidir yada bos olmamalidir.';
|
||||
$lang['The name of an album must not be empty'] = 'Albüm ismi boş olamaz';
|
||||
$lang['The name of directories and files must be composed of letters, numbers, "-", "_" or "."'] = 'Dizin ve dosya ismi sadece harfler, rakamlardan olmalı, "-", "_" veya "."';
|
||||
$lang['The number of comments a page must be between 5 and 50 included.'] = 'Bir sayfadaki yorumlarin sayisini 5 ile 50 arasinda olmalidir.';
|
||||
$lang['The permalink name must be composed of a-z, A-Z, 0-9, "-", "_" or "/". It must not be numeric or start with number followed by "-"'] = 'Kalıcı Bağlantı ismi a-z, A-Z, 0-9, "-", "_" yada "/" karekterlerinden olusmalidir. Sayisal olmamali veya sayi ile baslamamalidir';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Küçük resim kalitesi %d ve %d sayıları arasında olmalı';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'En fazla küçük resim yüksekliği %d ve %d sayıları arasında olmalı';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'En fazla küçük resim genişliği %d ve %d sayıları arasında olmalı';
|
||||
$lang['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'] = 'Yüklenen dosya HTML biçiminde belirtilmiş MAX_FILE_SIZE aşıyor';
|
||||
$lang['The uploaded file exceeds the upload_max_filesize directive in php.ini: %sB'] = 'Yüklenen dosyanın php.ini upload_max_filesize aşıyor: %sB';
|
||||
$lang['The uploaded file was only partially uploaded'] = 'Yüklenen dosya sadece kısmen yüklendi';
|
||||
@@ -717,9 +710,6 @@ $lang['The uploaded files exceed the post_max_size directive in php.ini: %sB'] =
|
||||
$lang['The version of %s [%s] installed is not compatible with the version required [%s]'] = 'Bu %s versiyonu yüklenen [%s] versiyonu ile uyumlu değildir.';
|
||||
$lang['The webmaster has subscribed you to receiving notifications by mail.'] = 'Site yöneticisi posta ile haberdar olmaniz için sizi abone etti.';
|
||||
$lang['The webmaster has unsubscribed you from receiving notifications by mail.'] = 'Site yöneticisi posta ile haberdar edilme aboneliginizi kaldirdi.';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'Resim kalitesi %d ve %d sayıları arasında olmalı';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'En fazla yükseklik %d be %d sayıları arasında olmalı';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'En fazla genişlik %d ve %d sayıları arasında olmalı';
|
||||
$lang['The whole page'] = 'Bütün sayfa';
|
||||
$lang['The whole set'] = 'Bütün set';
|
||||
$lang['the wiki'] = 'Wiki';
|
||||
@@ -812,7 +802,6 @@ $lang['Visit theme site'] = 'Tema sitesine git';
|
||||
$lang['Waiting'] = 'Bekleyen';
|
||||
$lang['WARNING! This plugin does not seem to be compatible with this version of Piwigo.'] = 'UYARI! Bu eklenti Piwigo galerinizin bu versiyonu ile uyumlu değildir.';
|
||||
$lang['Warning: subscribing or unsubscribing will send mails to users'] = 'Uyari abone olurken veya çikarken kullanıcılara mail gönderecegiz.';
|
||||
$lang['Web size photo'] = 'Site resim boyutu';
|
||||
$lang['Webmaster cannot be deleted'] = 'Site yöneticisi silinemez';
|
||||
$lang['Webmaster status is required.'] = 'Site yöneticisi durum gereklidir.';
|
||||
$lang['Week starts on'] = 'Hafta başlangıcı';
|
||||
|
||||
@@ -560,15 +560,11 @@ $lang['Support'] = 'Підтримка';
|
||||
$lang['The following tag was deleted'] = 'Наступний тег був видалений';
|
||||
$lang['the forum'] = 'форум';
|
||||
$lang['The gallery URL is not valid.'] = 'URL на галерею не валідний.';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'Зображення високої якості повинно бути число між %d і %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'Максимальна висота високої якості повинна бути число між %d і %d';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'Максимальна ширина високої якості повинна бути число між %d and %d';
|
||||
$lang['The name of a group must not contain " or \' or be empty.'] = 'Назва групи не повинна вміщувати " чи \' чи бути порожньою.';
|
||||
$lang['The name of an album must not be empty'] = 'Назва альбому не повинна бути порожньою';
|
||||
$lang['The name of directories and files must be composed of letters, numbers, "-", "_" or "."'] = 'Назви директорій і файлів повинні включати тільки букви, цифри, "-", "_" або "."';
|
||||
$lang['The number of comments a page must be between 5 and 50 included.'] = 'Число коментарів на сторінці повинно бути між 5 і 50 включно.';
|
||||
$lang['The permalink name must be composed of a-z, A-Z, 0-9, "-", "_" or "/". It must not be numeric or start with number followed by "-"'] = 'Посилання повинне складатися з a-z, A-Z, 0-9, "-", "_" або "/". Воно не повинно бути числовим або починатися з цифри, що слідують за "-"';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Якість ескізів зображень має бути число від %d і %d';
|
||||
$lang['Switch to clear or dark colors for administration'] = 'Переключити на світлі або темні кольори для адміністрації';
|
||||
$lang['synchronize files metadata with database photos informations'] = 'синхронізувати базу даних фотографій з метаданими файлів';
|
||||
$lang['synchronize files structure with database'] = 'синхронізувати структуру файлів з базою данних';
|
||||
|
||||
@@ -611,14 +611,7 @@ $lang['Select files'] = 'Chọn tệp tin';
|
||||
$lang['Everybody'] = 'Mọi người';
|
||||
$lang['Who can see these photos?'] = 'Ai có thể xem được những bức ảnh này?';
|
||||
$lang['Who can see this photo?'] = 'Ai có thể xem được bức ảnh này?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = 'Chiều rộng lớn nhất của trang web phải là số nằm giữa %d và %d';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = 'Chiều cao lớn nhất của trang web phải là số nằm giữa %d và %d';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = 'Chất lượng hình của trang web phải là số nằm giữa %d và %d';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = 'Chiều rộng hình thu nhỏ lớn nhất phải là số nằm giữa %d và %d';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = 'Chiều cao hình thu nhỏ lớn nhất phải là số nằm giữa %d và %d';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = 'Chất lượng hình thu nhỏ phải là số nằm giữa %d và %d';
|
||||
$lang['Settings'] = 'Cài đặt';
|
||||
$lang['Web size photo'] = 'Ảnh có kích cỡ web';
|
||||
$lang['Resize'] = 'Định dạng lại kích thước';
|
||||
$lang['Maximum Width'] = 'Chiều rộng lớn nhất';
|
||||
$lang['pixels'] = 'pixels';
|
||||
@@ -711,10 +704,6 @@ $lang['Error on file "%s" : %s'] = 'Có lỗi ở tệp tin "%s" : %s';
|
||||
$lang['automatic order'] = 'sắp xếp tự động';
|
||||
$lang['manual order'] = 'sắp xếp thủ công';
|
||||
$lang['Albums automatically sorted'] = 'Albums đã được phân loại tự động';
|
||||
$lang['Keep high definition'] = 'Giữ nguyên định dạng cao';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = 'Chiều rộng lớn nhất của định dạng cao phải là số trong khoảng %d và %d';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = 'Chiều cao lớn nhất của định dạng cao phải là số trong khoảng %d và %d';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = 'Chất lượng ảnh của định dang cao phải là số trong khoảng %d và %d';
|
||||
$lang['Batch Manager'] = 'Quản lý khối';
|
||||
$lang['include child albums'] = 'bao gồm các albums con';
|
||||
$lang['Selection'] = 'Lựa chọn';
|
||||
|
||||
@@ -598,14 +598,7 @@ $lang['Manage this set of %d photos'] = '管理此设置的 %d 张照片 ';
|
||||
$lang['Select files'] = '选择文件';
|
||||
$lang['Everybody'] = '每个人';
|
||||
$lang['Who can see these photos?'] = '哪些人可以看到这些图片?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = '最大宽度的网页尺寸必须在 %d 和 %d 之间';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = '最大高度的网页尺寸必须在 %d 和 %d 之间';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = '图片质量的网页尺寸必须在 %d 和 %d 之间';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = '缩略图的最大宽度必须在 %d 和 %d 之间';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = '缩略图的最大高度必须在 %d 和 %d 之间';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = '缩略图的质量必须在 %d 和 %d 之间';
|
||||
$lang['Settings'] = '设置';
|
||||
$lang['Web size photo'] = '图片的网页尺寸';
|
||||
$lang['Resize'] = '重置大小';
|
||||
$lang['Maximum Width'] = '最大宽度';
|
||||
$lang['pixels'] = '像素';
|
||||
@@ -718,7 +711,6 @@ $lang['Delete orphan tags'] = '删除没被关联的标签';
|
||||
$lang['delete photo'] = '删除图片';
|
||||
$lang['Duplicates'] = '重复';
|
||||
$lang['include child albums'] = '包含子相册';
|
||||
$lang['Keep high definition'] = '保留高清晰度';
|
||||
$lang['last import'] = '最后导入';
|
||||
$lang['manual order'] = '手工排序';
|
||||
$lang['No photo in the current set.'] = '当前集合没有图片.';
|
||||
@@ -737,9 +729,6 @@ $lang['Selection'] = '选择';
|
||||
$lang['Set author'] = '设置作者';
|
||||
$lang['Set creation date'] = '设置创建日期';
|
||||
$lang['Set title'] = '设置标题';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = '高清晰度图片质量必须在 %d 和 %d 之间';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = '高清晰度图片最大高度必须在 %d 和 %d 之间';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = '高清晰度图片最大宽度必须在 %d 和 %d 之间';
|
||||
$lang['The whole page'] = '整张图片';
|
||||
$lang['The whole set'] = '整个集合';
|
||||
$lang['Type here the author name'] = '在此输入作者名称';
|
||||
|
||||
@@ -598,14 +598,7 @@ $lang['Manage this set of %d photos'] = '管理此設置的 %d 張照片 ';
|
||||
$lang['Select files'] = '選擇文件';
|
||||
$lang['Everybody'] = '每個人';
|
||||
$lang['Who can see these photos?'] = '哪些人可以看到這些相片?';
|
||||
$lang['The websize maximum width must be a number between %d and %d'] = '最大寬度的網頁尺寸必須在 %d 和 %d 之間';
|
||||
$lang['The websize maximum height must be a number between %d and %d'] = '最大高度的網頁尺寸必須在 %d 和 %d 之間';
|
||||
$lang['The websize image quality must be a number between %d and %d'] = '圖片質量的網頁尺寸必須在 %d 和 %d 之間';
|
||||
$lang['The thumbnail maximum width must be a number between %d and %d'] = '縮略圖的最大寬度必須在 %d 和 %d 之間';
|
||||
$lang['The thumbnail maximum height must be a number between %d and %d'] = '縮略圖的最大高度必須在 %d 和 %d 之間';
|
||||
$lang['The thumbnail image quality must be a number between %d and %d'] = '縮略圖的質量必須在 %d 和 %d 之間';
|
||||
$lang['Settings'] = '設置';
|
||||
$lang['Web size photo'] = '相片的網頁尺寸';
|
||||
$lang['Resize'] = '重置大小';
|
||||
$lang['Maximum Width'] = '最大寬度';
|
||||
$lang['pixels'] = '像素';
|
||||
@@ -718,7 +711,6 @@ $lang['Delete orphan tags'] = '刪除沒被關聯的標籤';
|
||||
$lang['delete photo'] = '刪除相片';
|
||||
$lang['Duplicates'] = '重複';
|
||||
$lang['include child albums'] = '包含子相冊';
|
||||
$lang['Keep high definition'] = '保留高清晰度';
|
||||
$lang['last import'] = '最後導入';
|
||||
$lang['manual order'] = '手工排序';
|
||||
$lang['No photo in the current set.'] = '當前集合沒有相片.';
|
||||
@@ -737,9 +729,6 @@ $lang['Selection'] = '選擇';
|
||||
$lang['Set author'] = '設置作者';
|
||||
$lang['Set creation date'] = '設置創建日期';
|
||||
$lang['Set title'] = '設置標題';
|
||||
$lang['The high definition image quality must be a number between %d and %d'] = '高清晰度相片質量必須在 %d 和 %d 之間';
|
||||
$lang['The high definition maximum height must be a number between %d and %d'] = '高清晰度相片最大高度必須在 %d 和 %d 之間';
|
||||
$lang['The high definition maximum width must be a number between %d and %d'] = '高清晰度相片最大寬度必須在 %d 和 %d 之間';
|
||||
$lang['The whole page'] = '整張相片';
|
||||
$lang['The whole set'] = '整個集合';
|
||||
$lang['Type here the author name'] = '在此輸入作者名稱';
|
||||
|
||||
Reference in New Issue
Block a user