Changeset 12879


Ignore:
Timestamp:
Jan 12, 2012, 10:37:28 PM (12 years ago)
Author:
plg
Message:

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
Location:
trunk
Files:
1 added
2 deleted
41 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/batch_manager_global.php

    r12831 r12879  
    3434
    3535include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
    36 include_once(PHPWG_ROOT_PATH.'admin/include/functions_upload.inc.php');
    37 
    38 $upload_form_config = get_upload_form_config();
    39 foreach ($upload_form_config as $param_shortname => $param)
    40 {
    41   $param_name = 'upload_form_'.$param_shortname;
    42   $form_values[$param_shortname] = $conf[$param_name];
    43 }
    4436
    4537// +-----------------------------------------------------------------------+
     
    464456    'selection' => $collection,
    465457    'all_elements' => $page['cat_elements_id'],
    466     'upload_form_settings' => $form_values,
    467458    'U_DISPLAY'=>$base_url.get_query_string_diff(array('display')),
    468459    'F_ACTION'=>$base_url.get_query_string_diff(array('cat')),
  • trunk/admin/configuration.php

    r12872 r12879  
    2828
    2929include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
     30include_once(PHPWG_ROOT_PATH.'admin/include/functions_upload.inc.php');
    3031include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
    3132
     
    5455    'allow_user_customization',
    5556   );
     57
     58$sizes_checkboxes = array(
     59    'original_resize',
     60  );
    5661
    5762$history_checkboxes = array(
     
    183188      break;
    184189    }
     190    case 'sizes' :
     191    {
     192      $fields = array(
     193        'original_resize',
     194        'original_resize_maxwidth',
     195        'original_resize_maxheight',
     196        'original_resize_quality',
     197        );
     198
     199      $updates = array();
     200     
     201      foreach ($fields as $field)
     202      {
     203        $value = !empty($_POST[$field]) ? $_POST[$field] : null;
     204        $form_values[$field] = $value;
     205        $updates[$field] = $value;
     206      }
     207
     208      save_upload_form_config($updates, $page['errors']);
     209 
     210      if (count($page['errors']) == 0)
     211      {
     212        array_push(
     213          $page['infos'],
     214          l10n('Your configuration settings are saved')
     215          );
     216      }
     217
     218      break;
     219    }
    185220    case 'history' :
    186221    {
     
    229264
    230265  // updating configuration if no error found
    231   if (count($page['errors']) == 0)
     266  if ('sizes' != $page['section'] and count($page['errors']) == 0)
    232267  {
    233268    //echo '<pre>'; print_r($_POST); echo '</pre>';
     
    269304// TabSheet initialization
    270305$tabsheet->add('main', l10n('Main'), $conf_link.'main');
     306$tabsheet->add('sizes', l10n('Photo Sizes'), $conf_link.'sizes');
    271307$tabsheet->add('display', l10n('Display'), $conf_link.'display');
    272308$tabsheet->add('history', l10n('History'), $conf_link.'history');
     
    440476    break;
    441477  }
     478  case 'sizes' :
     479  {
     480    $template->assign(
     481      'sizes',
     482      array(
     483        'original_resize_maxwidth' => $conf['original_resize_maxwidth'],
     484        'original_resize_maxheight' => $conf['original_resize_maxheight'],
     485        'original_resize_quality' => $conf['original_resize_quality'],
     486        )
     487      );
     488   
     489    foreach ($sizes_checkboxes as $checkbox)
     490    {
     491      $template->append(
     492        'sizes',
     493        array(
     494          $checkbox => $conf[$checkbox]
     495          ),
     496        true
     497        );
     498    }
     499
     500    break;
     501  }
    442502}
    443503
  • trunk/admin/include/functions_upload.inc.php

    r12831 r12879  
    3333  // default configuration for upload
    3434  $upload_form_config = array(
    35     'websize_resize' => array(
    36       'default' => true,
    37       'can_be_null' => false,
    38       ),
    39    
    40     'websize_maxwidth' => array(
    41       'default' => 800,
    42       'min' => 100,
    43       'max' => 1600,
    44       'pattern' => '/^\d+$/',
    45       'can_be_null' => true,
    46       'error_message' => l10n('The websize maximum width must be a number between %d and %d'),
    47       ),
    48  
    49     'websize_maxheight' => array(
    50       'default' => 600,
    51       'min' => 100,
    52       'max' => 1200,
    53       'pattern' => '/^\d+$/',
    54       'can_be_null' => true,
    55       'error_message' => l10n('The websize maximum height must be a number between %d and %d'),
    56       ),
    57  
    58     'websize_quality' => array(
    59       'default' => 95,
    60       'min' => 50,
    61       'max' => 100,
    62       'pattern' => '/^\d+$/',
    63       'can_be_null' => false,
    64       'error_message' => l10n('The websize image quality must be a number between %d and %d'),
    65       ),
    66  
    67     'thumb_maxwidth' => array(
    68       'default' => 128,
    69       'min' => 50,
    70       'max' => 300,
    71       'pattern' => '/^\d+$/',
    72       'can_be_null' => false,
    73       'error_message' => l10n('The thumbnail maximum width must be a number between %d and %d'),
    74       ),
    75  
    76     'thumb_maxheight' => array(
    77       'default' => 96,
    78       'min' => 50,
    79       'max' => 300,
    80       'pattern' => '/^\d+$/',
    81       'can_be_null' => false,
    82       'error_message' => l10n('The thumbnail maximum height must be a number between %d and %d'),
    83       ),
    84  
    85     'thumb_quality' => array(
    86       'default' => 95,
    87       'min' => 50,
    88       'max' => 100,
    89       'pattern' => '/^\d+$/',
    90       'can_be_null' => false,
    91       'error_message' => l10n('The thumbnail image quality must be a number between %d and %d'),
    92       ),
    93 
    94     'thumb_crop' => array(
     35    'original_resize' => array(
    9536      'default' => false,
    9637      'can_be_null' => false,
    9738      ),
    98 
    99     'thumb_follow_orientation' => array(
    100       'default' => true,
    101       'can_be_null' => false,
    102       ),
    103  
    104     'hd_keep' => array(
    105       'default' => true,
    106       'can_be_null' => false,
    107       ),
    108  
    109     'hd_resize' => array(
    110       'default' => false,
    111       'can_be_null' => false,
    112       ),
    113  
    114     'hd_maxwidth' => array(
     39 
     40    'original_resize_maxwidth' => array(
    11541      'default' => 2000,
    11642      'min' => 500,
     
    11844      'pattern' => '/^\d+$/',
    11945      'can_be_null' => false,
    120       'error_message' => l10n('The high definition maximum width must be a number between %d and %d'),
     46      'error_message' => l10n('The original maximum width must be a number between %d and %d'),
    12147      ),
    12248 
    123     'hd_maxheight' => array(
     49    'original_resize_maxheight' => array(
    12450      'default' => 2000,
    125       'min' => 500,
     51      'min' => 300,
    12652      'max' => 20000,
    12753      'pattern' => '/^\d+$/',
    12854      'can_be_null' => false,
    129       'error_message' => l10n('The high definition maximum height must be a number between %d and %d'),
     55      'error_message' => l10n('The original maximum height must be a number between %d and %d'),
    13056      ),
    13157 
    132     'hd_quality' => array(
     58    'original_resize_quality' => array(
    13359      'default' => 95,
    13460      'min' => 50,
    135       'max' => 100,
     61      'max' => 98,
    13662      'pattern' => '/^\d+$/',
    13763      'can_be_null' => false,
    138       'error_message' => l10n('The high definition image quality must be a number between %d and %d'),
     64      'error_message' => l10n('The original image quality must be a number between %d and %d'),
    13965      ),
    14066    );
     
    17197
    17298      $updates[] = array(
    173         'param' => 'upload_form_'.$field,
     99        'param' => $field,
    174100        'value' => boolean_to_string($value)
    175101        );
     
    178104    {
    179105      $updates[] = array(
    180         'param' => 'upload_form_'.$field,
     106        'param' => $field,
    181107        'value' => 'false'
    182108        );
     
    191117      {
    192118         $updates[] = array(
    193           'param' => 'upload_form_'.$field,
     119          'param' => $field,
    194120          'value' => $value
    195121          );
     
    227153function add_uploaded_file($source_filepath, $original_filename=null, $categories=null, $level=null, $image_id=null)
    228154{
    229   // Here is the plan
    230   //
    231155  // 1) move uploaded file to upload/2010/01/22/20100122003814-449ada00.jpg
    232156  //
    233   // 2) if taller than max_height or wider than max_width, move to pwg_high
    234   //    + web sized creation
     157  // 2) keep/resize original
    235158  //
    236   // 3) thumbnail creation from web sized
    237   //
    238   // 4) register in database
     159  // 3) register in database
    239160 
    240161  // TODO
     
    248169  if (isset($image_id))
    249170  {
    250     // we are performing an update
     171    // this photo already exists, we update it
    251172    $query = '
    252173SELECT
     
    317238  }
    318239
    319   if ($conf['upload_form_websize_resize']
    320       and need_resize($file_path, $conf['upload_form_websize_maxwidth'], $conf['upload_form_websize_maxheight']))
    321   {
    322     $high_path = file_path_for_type($file_path, 'high');
    323     $high_dir = dirname($high_path);
    324     prepare_directory($high_dir);
    325    
    326     rename($file_path, $high_path);
    327     $high_infos = pwg_image_infos($high_path);
    328    
    329     $img = new pwg_image($high_path);
    330 
    331     $img->pwg_resize(
    332       $file_path,
    333       $conf['upload_form_websize_maxwidth'],
    334       $conf['upload_form_websize_maxheight'],
    335       $conf['upload_form_websize_quality'],
    336       $conf['upload_form_automatic_rotation'],
    337       false
    338       );
    339 
    340     if ($img->library != 'gd')
    341     {
    342       if ($conf['upload_form_hd_keep'])
     240  if (pwg_image::get_library() != 'gd')
     241  {
     242    if ($conf['original_resize'])
     243    {
     244      $need_resize = need_resize($file_path, $conf['original_resize_maxwidth'], $conf['original_resize_maxheight']);
     245     
     246      if ($need_resize)
    343247      {
    344         if ($conf['upload_form_hd_resize'])
    345         {
    346           $need_resize = need_resize($high_path, $conf['upload_form_hd_maxwidth'], $conf['upload_form_hd_maxheight']);
     248        $img = new pwg_image($file_path);
     249           
     250        $img->pwg_resize(
     251          $file_path,
     252          $conf['original_resize_maxwidth'],
     253          $conf['original_resize_maxheight'],
     254          $conf['original_resize_quality'],
     255          $conf['upload_form_automatic_rotation'],
     256          false
     257          );
    347258       
    348           if ($need_resize)
    349           {
    350             $img->pwg_resize(
    351               $high_path,
    352               $conf['upload_form_hd_maxwidth'],
    353               $conf['upload_form_hd_maxheight'],
    354               $conf['upload_form_hd_quality'],
    355               $conf['upload_form_automatic_rotation'],
    356               false
    357               );
    358             $high_infos = pwg_image_infos($high_path);
    359           }
    360         }
     259        $img->destroy();
    361260      }
    362       else
    363       {
    364         unlink($high_path);
    365         $high_infos = null;
    366       }
    367     }
    368     $img->destroy();
     261    }
    369262  }
    370263
    371264  $file_infos = pwg_image_infos($file_path);
    372265 
    373   $thumb_path = file_path_for_type($file_path, 'thumb');
    374   $thumb_dir = dirname($thumb_path);
    375   prepare_directory($thumb_dir);
    376 
    377   $img = new pwg_image($file_path);
    378   $img->pwg_resize(
    379     $thumb_path,
    380     $conf['upload_form_thumb_maxwidth'],
    381     $conf['upload_form_thumb_maxheight'],
    382     $conf['upload_form_thumb_quality'],
    383     false,
    384     true,
    385     $conf['upload_form_thumb_crop'],
    386     $conf['upload_form_thumb_follow_orientation']
    387     );
    388   $img->destroy();
    389  
    390   $thumb_infos = pwg_image_infos($thumb_path);
    391 
    392266  if (isset($image_id))
    393267  {
    394268    $update = array(
    395       'id' => $image_id,
    396269      'file' => pwg_db_real_escape_string(isset($original_filename) ? $original_filename : basename($file_path)),
    397270      'filesize' => $file_infos['filesize'],
     
    402275      );
    403276   
    404     if (isset($high_infos))
    405     {
    406       $update['has_high'] = 'true';
    407       $update['high_filesize'] = $high_infos['filesize'];
    408       $update['high_width'] = $high_infos['width'];
    409       $update['high_height'] = $high_infos['height'];
    410     }
    411     else
    412     {
    413       $update['has_high'] = 'false';
    414       $update['high_filesize'] = null;
    415       $update['high_width'] = null;
    416       $update['high_height'] = null;
    417     }
    418 
    419277    if (isset($level))
    420278    {
     
    422280    }
    423281
    424     mass_updates(
     282    single_update(
    425283      IMAGES_TABLE,
    426       array(
    427         'primary' => array('id'),
    428         'update' => array_keys($update)
    429         ),
    430       array($update)
     284      $update,
     285      array('id' => $image_id)
    431286      );
    432287  }
     
    458313      $insert['level'] = $level;
    459314    }
    460  
    461     mass_inserts(
    462       IMAGES_TABLE,
    463       array_keys($insert),
    464       array($insert)
    465       );
     315
     316    single_insert(IMAGES_TABLE, $insert);
    466317 
    467318    $image_id = pwg_db_insert_id(IMAGES_TABLE);
  • trunk/admin/include/photos_add_direct_process.inc.php

    r11975 r12879  
    203203    $thumbnail['file'] = $image_infos['file'];
    204204   
    205     $thumbnail['src'] = get_thumbnail_location(
    206       array(
    207         'path' => $image_infos['path'],
    208         'tn_ext' => $image_infos['tn_ext'],
    209         )
    210       );
     205    $thumbnail['src'] = DerivativeImage::thumb_url($image_infos);
    211206
    212207    // TODO: when implementing this plugin in Piwigo core, we should have
  • trunk/admin/include/uploadify/uploadify.php

    r11963 r12879  
    7373$image_infos = pwg_db_fetch_assoc(pwg_query($query));
    7474
    75 $thumbnail_url = preg_replace('#^'.PHPWG_ROOT_PATH.'#', './', get_thumbnail_url($image_infos));
     75$thumbnail_url = preg_replace('#^'.PHPWG_ROOT_PATH.'#', './', DerivativeImage::thumb_url($image_infos));
    7676
    7777$return = array(
  • trunk/admin/photos_add.php

    r10653 r12879  
    5555    'code' => 'direct',
    5656    'label' => l10n('Upload Photos'),
    57     ),
    58   array(
    59     'code' => 'settings',
    60     'label' => l10n('Settings'),
    6157    ),
    6258  array(
  • trunk/admin/themes/default/template/configuration.tpl

    r12878 r12879  
    248248</div> <!-- configContent -->
    249249
     250{if isset($sizes)}
     251
     252{footer_script}{literal}
     253jQuery(document).ready(function(){
     254  function toggleResizeFields(prefix) {
     255    var checkbox = jQuery("#"+prefix+"_resize");
     256    var needToggle = jQuery("input[name^="+prefix+"_]").not(checkbox).parents('tr');
     257
     258    if (jQuery(checkbox).is(':checked')) {
     259      needToggle.show();
     260    }
     261    else {
     262      needToggle.hide();
     263    }
     264  }
     265
     266  toggleResizeFields("original");
     267  jQuery("#original_resize").click(function () {toggleResizeFields("original")});
     268});
     269{/literal}{/footer_script}
     270
     271<fieldset id="sizesConf">
     272  <legend>{'Original Size'|@translate}</legend>
     273
     274  <table>
     275    <tr>
     276      <th><label for="original_resize">{'Resize after upload'|@translate}</label></th>
     277      <td><input type="checkbox" name="original_resize" id="original_resize" {if ($sizes.original_resize)}checked="checked"{/if}></td>
     278    </tr>
     279    <tr>
     280      <th>{'Maximum Width'|@translate}</th>
     281      <td><input type="text" name="original_resize_maxwidth" value="{$sizes.original_resize_maxwidth}" size="4" maxlength="4"> {'pixels'|@translate}</td>
     282    </tr>
     283    <tr>
     284      <th>{'Maximum Height'|@translate}</th>
     285      <td><input type="text" name="original_resize_maxheight" value="{$sizes.original_resize_maxheight}" size="4" maxlength="4"> {'pixels'|@translate}</td>
     286    </tr>
     287    <tr>
     288      <th>{'Image Quality'|@translate}</th>
     289      <td><input type="text" name="original_resize_quality" value="{$sizes.original_resize_quality}" size="3" maxlength="3"> %</td>
     290    </tr>
     291  </table>
     292
     293</fieldset>
     294{/if}
     295
    250296{if isset($default)}
    251297{$PROFILE_CONTENT}
     
    446492{if !isset($default)}
    447493  <p>
    448     <input class="submit" type="submit" name="submit" value="{'Submit'|@translate}">
     494    <input class="submit" type="submit" name="submit" value="{'Save Settings'|@translate}">
    449495    <input class="submit" type="reset" name="reset" value="{'Reset'|@translate}">
    450496  </p>
  • trunk/install/config.sql

    r12828 r12879  
    6868INSERT INTO piwigo_config (param,value) VALUES ('upload_form_hd_maxheight','2000');
    6969INSERT INTO piwigo_config (param,value) VALUES ('upload_form_hd_quality','95');
     70INSERT INTO piwigo_config (param,value) VALUES ('original_resize','false');
     71INSERT INTO piwigo_config (param,value) VALUES ('original_resize_maxwidth','2016');
     72INSERT INTO piwigo_config (param,value) VALUES ('original_resize_maxheight','2016');
     73INSERT INTO piwigo_config (param,value) VALUES ('original_resize_quality','95');
  • trunk/language/af_ZA/admin.lang.php

    r12693 r12879  
    160160$lang['jump to album'] = 'spring na album';
    161161$lang['jump to photo'] = 'spring na foto';
    162 $lang['Keep high definition'] = 'Hou hoë definisie';
    163162$lang['Languages'] = 'Tale';
    164163$lang['last import'] = 'laaste invoer';
  • trunk/language/ar_SA/admin.lang.php

    r12868 r12879  
    605605$lang['Who can see these photos?'] = 'من يمكنه رؤية هذه الصور';
    606606$lang['Who can see this photo?'] = 'من يمكنه رؤية هذه الصورة؟';
    607 $lang['The websize maximum width must be a number between %d and %d'] = '%d و %d الحد الأعلى لعرض صورة الويب يجب أن تكون';
    608 $lang['The websize maximum height must be a number between %d and %d'] = '%d و %d الحد الأعلى لطول صورة الويب يجب أن تكون بين ';
    609 $lang['The websize image quality must be a number between %d and %d'] = '%d و %d جودة صورة الوب يجب أن تكون بين ';
    610 $lang['The thumbnail maximum width must be a number between %d and %d'] = '%d و %d الحد الأعلى لعرض مصغرات الصور يجب أن يكون بين';
    611 $lang['The thumbnail maximum height must be a number between %d and %d'] = '%d و %dالحد الأعلى لطول  مصغرات الصور يجب ان يكون بين ';
    612 $lang['The thumbnail image quality must be a number between %d and %d'] = '%d و %dجودة مصغرات الصور يجب ان تكون بين ';
    613607$lang['Settings'] = 'الإعدادت';
    614 $lang['Web size photo'] = 'مقاس صورة ويب';
    615608$lang['Resize'] = 'تغيير المقاس';
    616609$lang['Maximum Width'] = 'الحد الأعلى لعرض الصورة';
     
    705698$lang['manual order'] = 'ترتيب يدوي';
    706699$lang['Albums automatically sorted'] = 'ترتيب الألبومات آليا ً ';
    707 $lang['Keep high definition'] = 'احتفظ بها بدقة عالية';
    708 $lang['The high definition maximum width must be a number between %d and %d'] = ' %d و %d يجب أن يكون الحد الاعلى لعرض الصور العالية الدقة بين ';
    709 $lang['The high definition maximum height must be a number between %d and %d'] = '%d و %d يجب أن يكون الحد الاعلى لطول الصور العالية الدقة بين';
    710 $lang['The high definition image quality must be a number between %d and %d'] = '%d و %d يجب أن يكون الحد الاعلى لجودة  الصور العالية الدقة بين';
    711700$lang['Batch Manager'] = 'دعم المدير';
    712701$lang['include child albums'] = 'تضمين الالبومات الفرعية';
  • trunk/language/ca_ES/admin.lang.php

    r12693 r12879  
    668668$lang['Installed Languages'] = 'Installed Languages';
    669669$lang['Invert'] = 'Invert';
    670 $lang['Keep high definition'] = 'Keep high definition';
    671670$lang['Language has been successfully installed'] = 'Language has been successfully installed';
    672671$lang['Languages'] = 'Languages';
     
    722721$lang['Switch to clear or dark colors for administration'] = 'Switch to clear or dark colors for administration';
    723722$lang['The following tag was deleted'] = 'The following tag was deleted';
    724 $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';
    725 $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';
    726 $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';
    727 $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';
    728 $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';
    729 $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';
    730723$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';
    731724$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';
    732725$lang['The uploaded file was only partially uploaded'] = 'The uploaded file was only partially uploaded';
    733726$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';
    734 $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';
    735 $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';
    736 $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';
    737727$lang['The whole page'] = 'The whole page';
    738728$lang['The whole set'] = 'The whole set';
     
    753743$lang['Visit Piwigo project website'] = 'Visit Piwigo project website';
    754744$lang['Visit plugin site'] = 'Visit plugin site';
    755 $lang['Web size photo'] = 'Web size photo';
    756745$lang['Webmaster status is required.'] = 'Webmaster status is required.';
    757746$lang['Week starts on'] = 'Week starts on';
  • trunk/language/cs_CZ/admin.lang.php

    r12813 r12879  
    606606$lang['Who can see this photo?'] = 'Kdo může vidět tuto fotografii?';
    607607$lang['Pending Comments'] = 'Nevyřízené komentáře';
    608 $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';
    609 $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';
    610 $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';
    611 $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';
    612 $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';
    613 $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';
    614608$lang['Settings'] = 'Nastavení';
    615 $lang['Web size photo'] = 'Velikost fotografie pro web';
    616609$lang['Resize'] = 'Změnit velikost';
    617610$lang['Maximum Width'] = 'Maximální šířka';
     
    711704$lang['manual order'] = 'ruční řazení';
    712705$lang['Albums automatically sorted'] = 'Alba jsou řazena automaticky';
    713 $lang['Keep high definition'] = 'Zachovat vysoké rozlišení';
    714 $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';
    715 $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';
    716 $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';
    717706$lang['Batch Manager'] = 'Správce dávek';
    718707$lang['include child albums'] = 'zahrnout podřízená alba';
  • trunk/language/da_DK/admin.lang.php

    r12850 r12879  
    603603$lang['Everybody']     =     'Alle';
    604604$lang['Who can see these photos?']     =     'Hvem kan se disse billeder? ';
    605 $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 ';
    606 $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 ';
    607 $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 ';
    608 $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 ';
    609 $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 ';
    610 $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 ';
    611605$lang['Settings']     =     'Indstillinger';
    612 $lang['Web size photo']     =     'Web størrelse billede ';
    613606$lang['Resize']     =     'Resize';
    614607$lang['Maximum Width']     =     'Maksimal bredde';
     
    748741$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';
    749742$lang['include child albums'] = 'inkluder børne albums';
    750 $lang['Keep high definition'] = 'Bevar høj definition';
    751743$lang['Last import'] = 'Sidste import';
    752744$lang['manual order'] = 'manual ordre';
  • trunk/language/de_DE/admin.lang.php

    r12693 r12879  
    604604$lang['Who can see these photos?'] = 'Wer soll die Fotos sehen können?';
    605605$lang['Who can see this photo?'] = 'Wer soll dieses Foto sehen können?';
    606 $lang['The websize maximum width must be a number between %d and %d'] = 'Die maximale Breite muss eine Zahl zwischen %d und %d sein';
    607 $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';
    608 $lang['The websize image quality must be a number between %d and %d'] = 'Die Bildqualität muss eine Zahl zwischen %d und %d sein';
    609 $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';
    610 $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';
    611 $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';
    612606$lang['Settings'] = 'Einstellungen';
    613 $lang['Web size photo'] = 'Größe des angezeigten Bildes';
    614607$lang['Resize'] = 'Größe verändern';
    615608$lang['Maximum Width'] = 'Maximale Breite';
     
    709702$lang['manual order'] = 'manuelle Sortierung';
    710703$lang['Albums automatically sorted'] = 'Alben automatisch sortiert';
    711 $lang['Keep high definition'] = 'Belasse High Definition';
    712 $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';
    713 $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';
    714 $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';
    715704$lang['Batch Manager'] = 'Stapelverarbeitungsmanager';
    716705$lang['include child albums'] = 'inclusive Unteralben';
  • trunk/language/en_UK/admin.lang.php

    r12878 r12879  
    389389$lang['jump to album'] = "jump to album";
    390390$lang['jump to photo'] = "jump to photo";
    391 $lang['Keep high definition'] = 'Keep high definition';
    392391$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.";
    393392$lang['Language has been successfully installed'] = 'Language has been successfully installed';
     
    702701$lang['the forum'] = "the forum";
    703702$lang['The gallery URL is not valid.'] = "The gallery URL is not valid.";
    704 $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';
    705 $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';
    706 $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';
     703$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';
     704$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';
     705$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';
    707706$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.";
    708707$lang['The name of an album must not be empty'] = "The name of an album must not be empty";
     
    710709$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.";
    711710$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 \"-\"";
    712 $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';
    713 $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';
    714 $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';
    715711$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';
    716712$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';
     
    720716$lang['The webmaster has subscribed you to receiving notifications by mail.'] = "The webmaster has subscribed you to be notified by mail.";
    721717$lang['The webmaster has unsubscribed you from receiving notifications by mail.'] = "The webmaster has unsubscribed you from receiving notifications by mail.";
    722 $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';
    723 $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';
    724 $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';
    725718$lang['The whole page'] = 'The whole page';
    726719$lang['The whole set'] = 'The whole set';
     
    815808$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.';
    816809$lang['Warning: subscribing or unsubscribing will send mails to users'] = "Warning: subscribing or unsubscribing will send mails to users";
    817 $lang['Web size photo'] = 'Web size photo';
    818810$lang['Webmaster cannot be deleted'] = "Webmaster cannot be deleted";
    819811$lang['Webmaster status is required.'] = 'Webmaster status is required.';
     
    848840$lang['[%s] Visit album %s'] = "[%s] Visit album %s";
    849841$lang['[NBM] Problems or questions'] = "[NBM] Problems or questions";
    850 
     842$lang['Resize after upload'] = 'Resize after upload';
     843$lang['Photo Sizes'] = 'Photo Sizes';
     844$lang['Original Size'] = 'Original Size';
    851845?>
  • trunk/language/es_ES/admin.lang.php

    r12745 r12879  
    598598$lang['Everybody'] = 'Todo el mundo';
    599599$lang['Who can see these photos?'] = '¿ Quién puede ver estas fotos?';
    600 $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';
    601 $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';
    602 $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';
    603 $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';
    604 $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';
    605 $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';
    606600$lang['Settings'] = 'Configuración';
    607 $lang['Web size photo'] = 'Medidas de las fotos';
    608601$lang['Resize'] = 'Redimensionar';
    609602$lang['Maximum Width'] = 'Ancho máxima';
     
    703696$lang['manual order'] = 'orden manual';
    704697$lang['Albums automatically sorted'] = 'Las categorías han sido clasificadas automaticamente';
    705 $lang['Keep high definition'] = 'Mantener la alta definición';
    706 $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';
    707 $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';
    708 $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';
    709698$lang['Batch Manager'] = 'Gestor por lote';
    710699$lang['include child albums'] = 'Incluir los sub-albumes';
  • trunk/language/fa_IR/admin.lang.php

    r12693 r12879  
    607607$lang['Who can see these photos?'] = 'چه کسی قادر به مشاهده این تصاویر باشد؟';
    608608$lang['Who can see this photo?'] = 'چه کسی قادر به مشاهده این تصویر باشد';
    609 $lang['The websize maximum width must be a number between %d and %d'] = 'حداکثر عرض برای تصویر پیش‌فرض باید عددی بین %d و %d باشد';
    610 $lang['The websize maximum height must be a number between %d and %d'] = 'حداکثر طول تصویر پیش‌فرض باید عددی بین %d و %d باشد';
    611 $lang['The websize image quality must be a number between %d and %d'] = 'حداکثر کیفین تصویر پیش‌فرض باید عددی بین %d و %d باشد';
    612 $lang['The thumbnail maximum width must be a number between %d and %d'] = 'حداکثر عرض عکس‌ریزه(thumbnail) باید عددی بین %d و %d باشد';
    613 $lang['The thumbnail maximum height must be a number between %d and %d'] = 'حداکثر طول عکس‌ریزه(thumbnail) باید عددی بین %d و %d باشد';
    614 $lang['The thumbnail image quality must be a number between %d and %d'] = 'حداکثر کیفیت عکس‌ریزه(thumbnail) باید عددی بین %d و %d باشد';
    615609$lang['Settings'] = 'تنظیمات';
    616 $lang['Web size photo'] = 'اندازه‌ تصویر پیش‌فرض';
    617610$lang['Resize'] = 'تغییر اندازه';
    618611$lang['Maximum Width'] = 'بیشترین عرض';
     
    710703$lang['manual order'] = 'مرتب کردن به صورت سفارشی';
    711704$lang['Albums automatically sorted'] = 'آلبوم ها به صورت اتوماتیک مرتب شد';
    712 $lang['Keep high definition'] = 'کیفیت تصاویر را بالا نگه دار';
    713 $lang['The high definition maximum width must be a number between %d and %d'] = 'عرض تصاویر با کیفیت بالا باید بین %d و %d باشد';
    714 $lang['The high definition maximum height must be a number between %d and %d'] = 'ارتفاع تصاویر با کیفیت بالا باید بین %d و %d باشد';
    715 $lang['The high definition image quality must be a number between %d and %d'] = 'کیفیت تصاویر با کیفیت بالا باید عددی یبن %d و %d باشد';
    716705$lang['Batch Manager'] = 'مدیریت دسته‌ای';
    717706$lang['include child albums'] = 'آلبوم ‌های زیرمیجموعه این را نیز ضمیمه کن';
  • trunk/language/fr_CA/admin.lang.php

    r12693 r12879  
    613613$lang['Who can see these photos?'] = 'Qui peut voir ces photos ?';
    614614$lang['Who can see this photo?'] = 'Qui peut voir cette photo ?';
    615 $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';
    616 $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';
    617 $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';
    618 $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';
    619 $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';
    620 $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';
    621615$lang['Settings'] = 'Configuration';
    622 $lang['Web size photo'] = 'Photo taille web';
    623616$lang['Resize'] = 'Redimensionner';
    624617$lang['Maximum Width'] = 'Largeur maximum';
     
    722715$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';
    723716$lang['include child albums'] = 'inclure les sous-albums';
    724 $lang['Keep high definition'] = 'Conserver la haute définition';
    725717$lang['last import'] = 'dernière importation';
    726718$lang['manual order'] = 'ordre manuel';
     
    744736$lang['Set creation date'] = 'Définir la date de création';
    745737$lang['Set title'] = 'Définir le titre';
    746 $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';
    747 $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';
    748 $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';
    749738$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';
    750739$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';
  • trunk/language/fr_FR/admin.lang.php

    r12693 r12879  
    606606$lang['Who can see these photos?'] = 'Qui peut voir ces photos ?';
    607607$lang['Who can see this photo?'] = 'Qui peut voir cette photo ?';
    608 $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';
    609 $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';
    610 $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';
    611 $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';
    612 $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';
    613 $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';
    614608$lang['Settings'] = 'Configuration';
    615 $lang['Web size photo'] = 'Photo taille web';
    616609$lang['Resize'] = 'Redimensionner';
    617610$lang['Maximum Width'] = 'Largeur maximum';
     
    621614$lang['Thumbnail'] = 'Miniature';
    622615$lang['Save Settings'] = 'Enregistrer les paramètres';
    623 $lang['Your configuration settings are saved'] = 'Vos paramètres de configurations sont enregistrés';
     616$lang['Your configuration settings are saved'] = 'Vos paramètres de configuration sont enregistrés';
    624617$lang['Active Themes'] = 'Thèmes activés';
    625618$lang['Add write access to the "%s" directory'] = 'Ajoutez l\'accès en écriture pour le répertoire "%s"';
     
    709702$lang['manual order'] = 'ordre manuel';
    710703$lang['Albums automatically sorted'] = 'Les albums ont été triés automatiquement';
    711 $lang['Keep high definition'] = 'Conserver la haute définition';
    712 $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';
    713 $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';
    714 $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';
     704$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';
     705$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';
     706$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';
    715707$lang['Batch Manager'] = 'Gestion par lot';
    716708$lang['include child albums'] = 'inclure les sous-albums';
     
    849841$lang['Add to caddie'] = 'Ajouter au panier';
    850842$lang['Zoom'] = 'Zoom';
     843$lang['Resize after upload'] = 'Redimensionner après transfert';
     844$lang['Photo Sizes'] = 'Tailles de photo';
     845$lang['Original Size'] = 'Taille originale';
    851846?>
  • trunk/language/he_IL/admin.lang.php

    r12693 r12879  
    606606$lang['Who can see these photos?'] = 'מי יכול לראות את התמונות?';
    607607$lang['Who can see this photo?'] = 'מי יכול לראות את התמונה?';
    608 $lang['The websize maximum width must be a number between %d and %d'] = 'רוחב מרבי websize חייב להיות מספר בין% d% d ';
    609 $lang['The websize maximum height must be a number between %d and %d'] = 'הגובה המרבי של האתר חייב להיות מספר בין %d ו %d';
    610 $lang['The websize image quality must be a number between %d and %d'] = 'איכות התמונה באתר חייב להיות מספר בין %d ו %d';
    611 $lang['The thumbnail maximum width must be a number between %d and %d'] = 'הרוחב המרבי של תמונה ממוזערת חייב להיות מספר בין %d ו %d';
    612 $lang['The thumbnail maximum height must be a number between %d and %d'] = 'הגובה המרבי של תמונה ממוזערת חייב להיות מספר בין %d ו %d';
    613 $lang['The thumbnail image quality must be a number between %d and %d'] = 'האיכות המירבית של תמונה ממוזערת חייב להיות מספר בין %d ו %d';
    614608$lang['Settings'] = 'הגדרות';
    615 $lang['Web size photo'] = 'צילום בגודל האתר ';
    616609$lang['Resize'] = 'גודל';
    617610$lang['Maximum Width'] = 'רוחב מרבי';
     
    710703$lang['manual order'] = 'סדר ידני';
    711704$lang['Albums automatically sorted'] = 'מיון אלבומים אוטומטי';
    712 $lang['Keep high definition'] = 'שמור על חדות גבוהה';
    713 $lang['The high definition maximum width must be a number between %d and %d'] = 'הגדרת הרוחב המקסימלי חייב להיות מספר בין %d ו %d';
    714 $lang['The high definition maximum height must be a number between %d and %d'] = 'הגדרת הגובהה המקסימלי חייב להיות מספר בין %d ו %d';
    715 $lang['The high definition image quality must be a number between %d and %d'] = 'הגדרת האיכות הטובה ביותר חייבת להיות מספר בין %d ו %d';
    716705$lang['Batch Manager'] = 'מנהל קבוצה';
    717706$lang['include child albums'] = 'כולל אלבום ילד';
  • trunk/language/hr_HR/admin.lang.php

    r12817 r12879  
    597597$lang['Everybody'] = 'Svi';
    598598$lang['Who can see these photos?'] = 'Tko može pregledavati ove slike?';
    599 $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';
    600 $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';
    601 $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';
    602 $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';
    603 $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';
    604 $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';
    605599$lang['Settings'] = 'Postavke';
    606 $lang['Web size photo'] = 'Veličina slike na web stranici';
    607600$lang['Resize'] = 'Pronijeni veličinu';
    608601$lang['Maximum Width'] = 'Najveća Širina';
     
    705698$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';
    706699$lang['include child albums'] = 'uključi podalbume';
    707 $lang['Keep high definition'] = 'Zadrži visoku kvalitetu';
    708700$lang['manual order'] = 'ručni poredak';
    709701$lang['%d of %d photos selected'] = 'označeno %d od %d fotografija';
     
    730722$lang['Set creation date'] = 'Postavi datum nastanka';
    731723$lang['Set title'] = 'Postavi naslov';
    732 $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';
    733 $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';
    734 $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';
    735724$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';
    736725$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';
  • trunk/language/hu_HU/admin.lang.php

    r12822 r12879  
    588588$lang['Everybody'] = 'Mindenki';
    589589$lang['Who can see these photos?'] = 'Ki láthatja a képeket?';
    590 $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';
    591 $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';
    592 $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';
    593 $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';
    594 $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';
    595 $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';
    596590$lang['Settings'] = 'Képméret beállítás';
    597 $lang['Web size photo'] = 'Kép mérete a weben';
    598591$lang['Resize'] = 'Átméretezés';
    599592$lang['Maximum Width'] = 'Legnagyobb szélesség';
     
    705698$lang['manual order'] = 'kézi rendezés';
    706699$lang['Albums automatically sorted'] = 'Automatikusan rendezett albumok';
    707 $lang['Keep high definition'] = 'Nagy felbontás megtartása';
    708 $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';
    709 $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';
    710 $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';
    711700$lang['Batch Manager'] = 'Kötegelt kezelés';
    712701$lang['include child albums'] = 'belső albumok is';
  • trunk/language/it_IT/admin.lang.php

    r12693 r12879  
    606606$lang['Who can see these photos?'] = 'Chi può vedere queste foto?';
    607607$lang['Who can see this photo?'] = 'Chi può vedere questa foto?';
    608 $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';
    609 $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';
    610 $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';
    611 $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';
    612 $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';
    613 $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';
    614608$lang['Settings'] = 'Configurazione';
    615 $lang['Web size photo'] = 'Dimensione foto web';
    616609$lang['Resize'] = 'Ridimensionare';
    617610$lang['Maximum Width'] = 'Larghezza massima';
     
    711704$lang['manual order'] = 'Ordinamento manuel';
    712705$lang['Albums automatically sorted'] = 'Gli album sono stati ordinati automaticamente';
    713 $lang['Keep high definition'] = 'Mantenere l\'alta definizione';
    714 $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';
    715 $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';
    716 $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';
    717706$lang['Batch Manager'] = 'Gestione dei lotti';
    718707$lang['include child albums'] = 'includere gli album dipendenti';
  • trunk/language/ja_JP/admin.lang.php

    r12693 r12879  
    607607$lang['Everybody'] = '全員';
    608608$lang['Who can see these photos?'] = 'どなたがこの写真を見られますか?';
    609 $lang['The websize maximum width must be a number between %d and %d'] = 'ウェッブサイズの最大幅は %d と %dの中に設定する必要があります。';
    610 $lang['The websize maximum height must be a number between %d and %d'] = 'ウェッブサイズの最大の高さは%d と %dの中に設定する必要があります。';
    611 $lang['The websize image quality must be a number between %d and %d'] = 'ウェッブサイズの画質は%d と %d の中に設定する必要があります。';
    612 $lang['The thumbnail maximum width must be a number between %d and %d'] = 'サムネールの最大幅は%d と %d の中に設定する必要があります。';
    613 $lang['The thumbnail maximum height must be a number between %d and %d'] = 'サムネールの最大の高さは%d と %d の中に設定する必要があります。';
    614 $lang['The thumbnail image quality must be a number between %d and %d'] = 'サムネールの画質は%d と %d の中に設定する必要があります。';
    615609$lang['Settings'] = '設定';
    616 $lang['Web size photo'] = 'ウェッブ用の写真';
    617610$lang['Resize'] = '拡大・縮小';
    618611$lang['Maximum Width'] = '最大の幅';
  • trunk/language/ka_GE/admin.lang.php

    r12693 r12879  
    614614$lang['Everybody'] = 'ყველა';
    615615$lang['Who can see these photos?'] = 'ვის შეუძლია ნახოს ეს ფოტოები?';
    616 $lang['The websize maximum width must be a number between %d and %d'] = 'ფოტოს მაქსიმალური სიგანე უნდა იყოს რიცხვი %d და %d შორის';
    617 $lang['The websize maximum height must be a number between %d and %d'] = 'ფოტოს მაქსიმალური სიმაღლე უნდა იყოს რიცხვი %d და %d შორის';
    618 $lang['The websize image quality must be a number between %d and %d'] = 'ფოტოს ხარისხი უნდა იყოს რიცხვით %d და %d შორის';
    619 $lang['The thumbnail maximum width must be a number between %d and %d'] = 'მინიატურის მაქსიმალური სიგანე უნდა იყოს რიცხვი  %d და %d შორის';
    620 $lang['The thumbnail maximum height must be a number between %d and %d'] = 'მინიატურის მაქსიმალური სიმაღლე უნდა იყოს რიცხვი %d და %d შორის';
    621 $lang['The thumbnail image quality must be a number between %d and %d'] = 'მინიატურის ხარისხი უნდა იყოს რიცხვი %d და %d შორის';
    622616$lang['Settings'] = 'პარამეტრები';
    623 $lang['Web size photo'] = 'ფოტოს ზომა ინტერნეტისათვის';
    624617$lang['Resize'] = 'ზომების შეცვლა';
    625618$lang['Maximum Width'] = 'მაქსიმალური სიგანე';
     
    720713$lang['manual order'] = 'ხელით განლაგება';
    721714$lang['Albums automatically sorted'] = 'ალბომები ავტომატურად დალაგებულია';
    722 $lang['Keep high definition'] = 'შევინახოთ მაღალი გარჩევადობით';
    723 $lang['The high definition maximum width must be a number between %d and %d'] = 'მაღალი გარჩევადობისას მაქსიმალური სიგანე უნდა იყოს რიცხვი %d და %d შორის';
    724 $lang['The high definition maximum height must be a number between %d and %d'] = 'მაღალი გარჩევადობისას მაქსიმალური სიმაღლე უნდა იყოს რიცხვი %d და %d შორის';
    725 $lang['The high definition image quality must be a number between %d and %d'] = 'მაღალი გარჩევადობისას სურათის ხარისხი უნდა იყოს რიცხვი %d და %d შორის';
    726715$lang['Batch Manager'] = 'სურათების მენეჯერი';
    727716$lang['include child albums'] = 'მოიცავს ბავშვის ალბომებს';
  • trunk/language/lv_LV/admin.lang.php

    r12721 r12879  
    599599$lang['Who can see these photos?'] = 'Kas var skatīties šos attēlus?';
    600600$lang['Who can see this photo?'] = 'Kas var skatīties šo attēlu?';
    601 $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';
    602 $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';
    603 $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';
    604 $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';
    605 $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';
    606 $lang['The thumbnail image quality must be a number between %d and %d'] = 'Piktogrammas kvalitātei jābūt skaitlim starp %d and %d';
    607601$lang['Settings'] = 'Iestatījumi';
    608 $lang['Web size photo'] = 'Attēla izmērs internetam';
    609602$lang['Resize'] = 'Izmainīt izmērus';
    610603$lang['Maximum Width'] = 'Maksimālais platums';
     
    700693$lang['manual order'] = 'manuālais kārtojums';
    701694$lang['Albums automatically sorted'] = 'Albūmi ir automātiski  sakārtoti';
    702 $lang['Keep high definition'] = 'Palikt pie augstas izšķirtspējas';
    703 $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';
    704 $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';
    705 $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';
    706695$lang['Batch Manager'] = 'Sērijveida failu pārvaldnieks';
    707696$lang['include child albums'] = 'ietvert radniecīgos albūmus';
  • trunk/language/nl_NL/admin.lang.php

    r12824 r12879  
    599599$lang['Everybody'] = 'Iedereen';
    600600$lang['Who can see these photos?'] = 'Wie mag deze foto\'s zien?';
    601 $lang['The websize maximum width must be a number between %d and %d'] = 'De webgrootte maximum breedte moet liggen tussen %d en %d';
    602 $lang['The websize maximum height must be a number between %d and %d'] = 'De webgrootte maximum hoogte moet liggen tussen %d en %d';
    603 $lang['The websize image quality must be a number between %d and %d'] = 'De webgrootte afbeeldingskwaliteit moet liggen tussen %d en %d';
    604 $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';
    605 $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';
    606 $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';
    607601$lang['Settings'] = 'Instellingen';
    608 $lang['Web size photo'] = 'Webgrootte foto';
    609602$lang['Resize'] = 'Grootte aanpassen';
    610603$lang['Maximum Width'] = 'Maximum Breedte';
     
    704697$lang['manual order'] = 'handmatige volgorde';
    705698$lang['Albums automatically sorted'] = 'Albums automatisch gesorteerd';
    706 $lang['Keep high definition'] = 'Behoud hoge resolutie';
    707 $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';
    708 $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';
    709 $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';
    710699$lang['Batch Manager'] = 'Bulk beheerder';
    711700$lang['include child albums'] = 'include child albums';
  • trunk/language/no_NO/admin.lang.php

    r12693 r12879  
    602602$lang['Who can see these photos?'] = 'Hvem kan se disse bildene?';
    603603$lang['Who can see this photo?'] = 'Hvem kan se dette bildet?';
    604 $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';
    605 $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';
    606 $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';
    607 $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';
    608 $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';
    609 $lang['The thumbnail image quality must be a number between %d and %d'] = 'Miniatyrbildets kvalitet må være et nummer mellom %d og %d';
    610604$lang['Settings'] = 'Instillinger';
    611 $lang['Web size photo'] = 'Web størrelse bilde';
    612605$lang['Resize'] = 'Endre størrelse';
    613606$lang['Maximum Width'] = 'Maksimum bredde';
     
    703696$lang['manual order'] = 'manuell sortering';
    704697$lang['Albums automatically sorted'] = 'Album automatisk sortert';
    705 $lang['Keep high definition'] = 'Behold høy oppløsning';
    706 $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';
    707 $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';
    708 $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';
    709698$lang['Batch Manager'] = 'Batch Behandler';
    710699$lang['include child albums'] = 'inkluder under album';
  • trunk/language/pl_PL/admin.lang.php

    r12790 r12879  
    601601$lang['Everybody'] = 'Każdy';
    602602$lang['Who can see these photos?'] = 'Kto może oglądać te zdjęcia?';
    603 $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';
    604 $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';
    605 $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';
    606 $lang['The thumbnail maximum width must be a number between %d and %d'] = 'Maksymalna szerokość miniatury musi być liczbą pomiędzy %d i %d';
    607 $lang['The thumbnail maximum height must be a number between %d and %d'] = 'Maksymalna wysokość miniatury musi być liczbą pomiędzy %d i %d';
    608 $lang['The thumbnail image quality must be a number between %d and %d'] = 'Jakość miniatury musi być liczbą pomiędzy %d i %d';
    609603$lang['Settings'] = 'Ustawienia';
    610 $lang['Web size photo'] = 'Zdjęcie o rozmiarze www';
    611604$lang['Resize'] = 'Zmień wymiary';
    612605$lang['Maximum Width'] = 'Maksymalna szerokość';
     
    704697$lang['manual order'] = 'ręczne zamówienie';
    705698$lang['Albums automatically sorted'] = 'Albumy sortowane automatycznie';
    706 $lang['Keep high definition'] = 'Zachowaj wysoką jakość';
    707 $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';
    708 $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';
    709 $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';
    710699$lang['Batch Manager'] = 'Manadżer wsadowy';
    711700$lang['include child albums'] = 'zawieraj podalbumy';
  • trunk/language/pt_PT/admin.lang.php

    r12863 r12879  
    645645$lang['Instructions to use Piwigo'] = 'Instruções para usar Piwigo';
    646646$lang['Invert'] = 'Inverter';
    647 $lang['Keep high definition'] = 'Manter Alta Definição';
    648647$lang['Language has been successfully installed'] = 'Linguagem instalada com sucesso';
    649648$lang['Languages'] = 'Linguagens';
     
    701700$lang['Switch to clear or dark colors for administration'] = 'Mudar esquema de cores, claro ou escuro, para a administração';
    702701$lang['The following tag was deleted'] = 'A Etiqueta seguinte foi removida';
    703 $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';
    704 $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';
    705 $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';
    706 $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';
    707 $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';
    708 $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';
    709702$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';
    710703$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';
    711704$lang['The uploaded file was only partially uploaded'] = 'O ficheiro apenas foi enviado parcialmente';
    712705$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';
    713 $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';
    714 $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';
    715 $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';
    716706$lang['The whole page'] = 'Página Completa';
    717707$lang['The whole set'] = 'Conjunto Completo';
     
    733723$lang['Visit Piwigo project website'] = 'Visitar o sítio do projecto Piwigo';
    734724$lang['Visit plugin site'] = 'Visitar o sítio do plugin';
    735 $lang['Web size photo'] = 'Foto Web';
    736725$lang['Webmaster status is required.'] = 'Estatuto de Webmaster requerido.';
    737726$lang['Week starts on'] = 'A semana começa em';
  • trunk/language/ru_RU/admin.lang.php

    r12693 r12879  
    605605$lang['Everybody'] = 'Все';
    606606$lang['Who can see these photos?'] = 'Кто может смотреть эти фотографии?';
    607 $lang['The websize maximum width must be a number between %d and %d'] = 'Максимальная ширина изображения должна быть числом между %d и %d';
    608 $lang['The websize maximum height must be a number between %d and %d'] = 'Максимальная высота изображения должна быть числом между %d и %d';
    609 $lang['The websize image quality must be a number between %d and %d'] = 'Качество изображения должно быть числом между %d и%d';
    610 $lang['The thumbnail maximum width must be a number between %d and %d'] = 'Максимальная ширина миниатюры должна быть числом  %d и %d';
    611 $lang['The thumbnail maximum height must be a number between %d and %d'] = 'Максимальная высота миниатюры должна быть числом между %d и %d';
    612 $lang['The thumbnail image quality must be a number between %d and %d'] = 'Качество миниатюры должно быть числом между %d и %d';
    613607$lang['Settings'] = 'Установки';
    614 $lang['Web size photo'] = 'Размер фотографии для интернета';
    615608$lang['Resize'] = 'Изменить размеры';
    616609$lang['Maximum Width'] = 'Максимальная ширина';
     
    711704$lang['manual order'] = 'самостоятельный режим';
    712705$lang['Albums automatically sorted'] = 'Автоматическая сотрировка альбомов';
    713 $lang['Keep high definition'] = 'Сохранить большое разрешение';
    714 $lang['The high definition maximum width must be a number between %d and %d'] = 'Максимальная ширина большого разрешения должна быть значением между %d and %d';
    715 $lang['The high definition maximum height must be a number between %d and %d'] = 'Максимальная высота большого разрешения должна быть значением между %d and %d';
    716 $lang['The high definition image quality must be a number between %d and %d'] = 'Максимальное качество большого разрешения должно быть значением между  %d and %d';
    717706$lang['Batch Manager'] = 'Пакетный менеджер';
    718707$lang['include child albums'] = 'включает дочерние альбомы';
  • trunk/language/sh_RS/admin.lang.php

    r12693 r12879  
    609609$lang['Everybody'] = 'Svi';
    610610$lang['Who can see these photos?'] = 'Ko može da vidi fotografije?';
    611 $lang['The websize maximum width must be a number between %d and %d'] = 'Maksimalna širina fotografije mora biti broj između %d i %d';
    612 $lang['The websize maximum height must be a number between %d and %d'] = 'Maksimalna visina fotografije mora biti broj između %d i %d';
    613 $lang['The websize image quality must be a number between %d and %d'] = 'Kvalitet fotografije mora biti broj između %d i %d';
    614 $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';
    615 $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';
    616 $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';
    617611$lang['Settings'] = 'Podešenja';
    618 $lang['Web size photo'] = 'Veličina fotografije';
    619612$lang['Resize'] = 'Promeni veličinu';
    620613$lang['Maximum Width'] = 'Maksimalna širina';
  • trunk/language/sk_SK/admin.lang.php

    r12786 r12879  
    602602$lang['Who can see this photo?'] = 'Kto môže vidieť túto fotografiu?';
    603603$lang['Pending Comments'] = 'Nevybavené komentáre';
    604 $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';
    605 $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';
    606 $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';
    607 $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';
    608 $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';
    609 $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';
    610604$lang['Settings'] = 'Nastavenia';
    611 $lang['Web size photo'] = 'Veľkosť fotografie pre web';
    612605$lang['Resize'] = 'Zmeniť veľkosť';
    613606$lang['Maximum Width'] = 'Maximálna šířka';
     
    706699$lang['manual order'] = 'manuálne zoradenie';
    707700$lang['Albums automatically sorted'] = 'Automaticky triedené albumy';
    708 $lang['Keep high definition'] = 'Udržať vysoké rozlíšenie';
    709 $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';
    710 $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';
    711 $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';
    712701$lang['Batch Manager'] = 'Správca dávky';
    713702$lang['include child albums'] = 'vrátane podalbumov';
  • trunk/language/sr_RS/admin.lang.php

    r12693 r12879  
    609609$lang['Everybody'] = 'Сви';
    610610$lang['Who can see these photos?'] = 'Ко може да види фотографије?';
    611 $lang['The websize maximum width must be a number between %d and %d'] = 'Максимална ширина фотографије мора бити број између %d и %d';
    612 $lang['The websize maximum height must be a number between %d and %d'] = 'Максимална висина фотографије мора бити број између %d и %d';
    613 $lang['The websize image quality must be a number between %d and %d'] = 'Квалитет фотографије мора бити број између %d и %d';
    614 $lang['The thumbnail maximum width must be a number between %d and %d'] = 'Максимална ширина повезне сличице мора бити број између %d и %d';
    615 $lang['The thumbnail maximum height must be a number between %d and %d'] = 'Максимална висина повезне сличице мора бити број између %d и %d';
    616 $lang['The thumbnail image quality must be a number between %d and %d'] = 'Квалитет повезне сличице мора бити број између %d и %d';
    617611$lang['Settings'] = 'Подешења';
    618 $lang['Web size photo'] = 'Величина фотографије';
    619612$lang['Resize'] = 'Промени величину';
    620613$lang['Maximum Width'] = 'Максимална ширина';
     
    725718$lang['Duplicates'] = 'дупликати';
    726719$lang['include child albums'] = 'укључи подалбуме';
    727 $lang['Keep high definition'] = 'Задржи бољу дефиницију';
    728720$lang['last import'] = 'последње додавање';
    729721$lang['manual order'] = 'ручно уређивање';
     
    745737$lang['Set creation date'] = 'Постави датум прављења';
    746738$lang['Set title'] = 'Постави наслов';
    747 $lang['The high definition image quality must be a number between %d and %d'] = 'The high definition image quality мора бити број између %d и %d';
    748 $lang['The high definition maximum height must be a number between %d and %d'] = 'The high definition maximum height мора бити број између %d и %d';
    749 $lang['The high definition maximum width must be a number between %d and %d'] = 'The high definition maximum width мора бити број између %d и %d';
    750739$lang['The whole page'] = 'Комплетна страница';
    751740$lang['The whole set'] = 'Комплетан скуп';
  • trunk/language/sv_SE/admin.lang.php

    r12787 r12879  
    599599$lang['Who can see these photos?'] = 'Vem kan se dessa foton?';
    600600$lang['Who can see this photo?'] = 'Vem kan se detta foto?';
    601 $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';
    602 $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';
    603 $lang['The websize image quality must be a number between %d and %d'] = 'Webstorlekens bildkvalitet måste vara ett nummer mellan %d och %d';
    604 $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';
    605 $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';
    606 $lang['The thumbnail image quality must be a number between %d and %d'] = 'Miniatydbildens kvalitet måste vara ett nummer mellan %d och %d';
    607601$lang['Settings'] = 'Inställningar';
    608 $lang['Web size photo'] = 'Webstorleks foto';
    609602$lang['Resize'] = 'Ändra storlek';
    610603$lang['Maximum Width'] = 'Maximal Bredd';
     
    703696$lang['manual order'] = 'manuell beställning';
    704697$lang['Albums automatically sorted'] = 'Album sorteras automatiskt';
    705 $lang['Keep high definition'] = 'Behåll högupplösing';
    706 $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';
    707 $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';
    708 $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';
    709698$lang['Batch Manager'] = 'Batch hanteraren';
    710699$lang['include child albums'] = 'innefattar under album';
  • trunk/language/th_TH/admin.lang.php

    r12861 r12879  
    352352$lang['jump to album'] = "ไปยังอัลบั้ม";
    353353$lang['jump to photo'] = "ไปยังรูปภาพ";
    354 $lang['Keep high definition'] = 'เก็บค่าความละเอียดสูงสุด';
    355354$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 โปรเจคได้ทำ เวอร์ชั่นหลัก หรือเมเจอร์เวอร์ชั่น. ซึ่งมีเมลถึงคุณต่อปีไม่กี่ฉบับเท่านั้น.";
    356355$lang['Language has been successfully installed'] = 'ภาษาได้ถูกติดตั้งสมบูรณ์';
     
    634633$lang['the forum'] = "ฟอรั่ม";
    635634$lang['The gallery URL is not valid.'] = "URL แกลลอรี่ไม่ถูกต้อง.";
    636 $lang['The high definition image quality must be a number between %d and %d'] = 'ขนาดรูปภาพความละเอียดสูงหรือคุณภาพแบบ HD จะต้องเป็นตัวเลขจำนวนระหว่าง %d และ %d';
    637 $lang['The high definition maximum height must be a number between %d and %d'] = 'ขนาดรูปภาพความละเอียดสูง สูงสุด ความสูง จะต้องเป็นตัวเลขจำนวนระหว่าง %d และ %d';
    638 $lang['The high definition maximum width must be a number between %d and %d'] = 'ขนาดรูปภาพความละเอียดสูง สูงสุด ความกว้าง จะต้องเป็นตัวเลขจำนวนระหว่าง %d และ %d';
    639635$lang['The name of a group must not contain " or \' or be empty.'] = "ชื่อกลุ่มจะต้องไม่ประกอบด้วยเครื่องหมาย \" หรือ ' หรือช่องเว้นว่าง.";
    640636$lang['The name of an album must not be empty'] = "ชื่อของอัลบั้มจะต้องไม่ปล่อยว่าง";
     
    642638$lang['The number of comments a page must be between 5 and 50 included.'] = "จำนวนความคิดเห็นต่อหนึ่งหน้า จะต้องเป็นจำนวนระหว่าง 5 แต่ไม่เกิน 50 ความคิดเห็น.";
    643639$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, \"-\", \"_\" หรือ \"/\". แต่จะต้องไม่ใช่อักขระพิเศษ หรือเริ่มต้นด้วยตัวเลขแล้วตามด้วยเครื่องหมาย \"-\"";
    644 $lang['The thumbnail image quality must be a number between %d and %d'] = 'คุณภาพของรูปภาพขนาดย่อ จะต้องเป็นตัวเลขจำนวนระหว่าง %d และ %d';
    645 $lang['The thumbnail maximum height must be a number between %d and %d'] = 'ความสูงสูงสุดของรูปภาพขนาดย่อ จะต้องเป็นตัวเลขจำนวนระหว่าง %d และ %d';
    646 $lang['The thumbnail maximum width must be a number between %d and %d'] = 'ความกว้างสูงสุดของรูปภาพขนาดย่อ จะต้องเป็นตัวเลขจำนวนระหว่าง %d และ %d';
    647640$lang['The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'] = 'ไฟล์ที่จะอัพโหลด มีขนาดใหญ่เกินไป โปรดใช้การอัพโหลดโดยตรงผ่านรูปแบบ HTML หรือการอัพโหลดแบบปกติ';
    648641$lang['The uploaded file exceeds the upload_max_filesize directive in php.ini: %sB'] = 'ไฟล์ที่จะอัพโหลดมีขนาดใหญ่เกินที่กำหนดไว้ในไฟล์การตั้งค่า php.ini: %sB';
     
    652645$lang['The webmaster has subscribed you to receiving notifications by mail.'] = "เว็บมาสเตอร์ได้บอกรับคุณโดยการแจ้งผ่านเมล.";
    653646$lang['The webmaster has unsubscribed you from receiving notifications by mail.'] = "เว็บมาสเตอร์ได้ยกเลิกบอกรับคุณโดยการแจ้งผ่านเมล.";
    654 $lang['The websize image quality must be a number between %d and %d'] = 'คุณภาพของรูปภาพจะต้องเป็นตัวเลขจำนวนระหว่าง %d และ %d';
    655 $lang['The websize maximum height must be a number between %d and %d'] = 'ความสูงของรูปภาพสูงสุดจะต้องเป็นตัวเลขจำนวนระว่าง %d และ %d';
    656 $lang['The websize maximum width must be a number between %d and %d'] = 'ความสูงของรูปภาพสูงสุดจะต้องเป็นตัวเลขจำนวนระว่าง %d และ %d';
    657647$lang['The whole page'] = 'หน้าทั้งหมด';
    658648$lang['The whole set'] = 'ชุดการตั้งค่าทั้งหมด';
     
    733723$lang['Waiting'] = "รออนุมัติ";
    734724$lang['Warning: subscribing or unsubscribing will send mails to users'] = "คำเตือน: การบอกรับ หรือ ยกเลิกการบอกรับ จะถูกส่งไปยังผู้ใช้งานโดยเมล";
    735 $lang['Web size photo'] = 'ขนาดรูปภาพบนเว็บ';
    736725$lang['Webmaster cannot be deleted'] = "เว็บมาสเตอร์ไม่สามารถลบได้";
    737726$lang['Webmaster status is required.'] = 'จำเป็นต้องมีสถานะเป็น เว็บมาสเตอร์.';
  • trunk/language/tr_TR/admin.lang.php

    r12839 r12879  
    388388$lang['jump to album'] = 'albüme geç';
    389389$lang['jump to photo'] = 'Resime geç';
    390 $lang['Keep high definition'] = 'Yüksek tanımlı tutun';
    391390$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.';
    392391$lang['Language has been successfully installed'] = 'Dil başarıyla yüklendi';
     
    700699$lang['the forum'] = 'Forum';
    701700$lang['The gallery URL is not valid.'] = 'Galeri URL geçerli degil.';
    702 $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';
    703 $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';
    704 $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';
    705701$lang['The name of a group must not contain " or \' or be empty.'] = 'Bir grubun ismi " veya \ içermemelidir yada bos olmamalidir.';
    706702$lang['The name of an album must not be empty'] = 'Albüm ismi boş olamaz';
     
    708704$lang['The number of comments a page must be between 5 and 50 included.'] = 'Bir sayfadaki yorumlarin sayisini 5 ile 50 arasinda olmalidir.';
    709705$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';
    710 $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ı';
    711 $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ı';
    712 $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ı';
    713706$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';
    714707$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';
     
    718711$lang['The webmaster has subscribed you to receiving notifications by mail.'] = 'Site yöneticisi posta ile haberdar olmaniz için sizi abone etti.';
    719712$lang['The webmaster has unsubscribed you from receiving notifications by mail.'] = 'Site yöneticisi posta ile haberdar edilme aboneliginizi kaldirdi.';
    720 $lang['The websize image quality must be a number between %d and %d'] = 'Resim kalitesi  %d ve %d sayıları arasında olmalı';
    721 $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ı';
    722 $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ı';
    723713$lang['The whole page'] = 'Bütün sayfa';
    724714$lang['The whole set'] = 'Bütün set';
     
    813803$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.';
    814804$lang['Warning: subscribing or unsubscribing will send mails to users'] = 'Uyari abone olurken veya çikarken kullanıcılara mail gönderecegiz.';
    815 $lang['Web size photo'] = 'Site resim boyutu';
    816805$lang['Webmaster cannot be deleted'] = 'Site yöneticisi silinemez';
    817806$lang['Webmaster status is required.'] = 'Site yöneticisi durum gereklidir.';
  • trunk/language/uk_UA/admin.lang.php

    r12788 r12879  
    561561$lang['the forum'] = 'форум';
    562562$lang['The gallery URL is not valid.'] = 'URL на галерею не валідний.';
    563 $lang['The high definition image quality must be a number between %d and %d'] = 'Зображення високої якості повинно бути число між %d і %d';
    564 $lang['The high definition maximum height must be a number between %d and %d'] = 'Максимальна висота високої якості повинна бути число між %d і %d';
    565 $lang['The high definition maximum width must be a number between %d and %d'] = 'Максимальна ширина високої якості повинна бути число між %d and %d';
    566563$lang['The name of a group must not contain " or \' or be empty.'] = 'Назва групи не повинна вміщувати " чи \' чи бути порожньою.';
    567564$lang['The name of an album must not be empty'] = 'Назва альбому не повинна бути порожньою';
     
    569566$lang['The number of comments a page must be between 5 and 50 included.'] = 'Число коментарів на сторінці повинно бути між 5 і 50 включно.';
    570567$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, "-", "_" або "/". Воно не повинно бути числовим або починатися з цифри, що слідують за "-"';
    571 $lang['The thumbnail image quality must be a number between %d and %d'] = 'Якість ескізів зображень має бути число від %d і %d';
    572568$lang['Switch to clear or dark colors for administration'] = 'Переключити на світлі або темні кольори для адміністрації';
    573569$lang['synchronize files metadata with database photos informations'] = 'синхронізувати базу даних фотографій з метаданими файлів';
  • trunk/language/vi_VN/admin.lang.php

    r12693 r12879  
    612612$lang['Who can see these photos?'] = 'Ai có thể xem được những bức ảnh này?';
    613613$lang['Who can see this photo?'] = 'Ai có thể xem được bức ảnh này?';
    614 $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';
    615 $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';
    616 $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';
    617 $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';
    618 $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';
    619 $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';
    620614$lang['Settings'] = 'Cài đặt';
    621 $lang['Web size photo'] = 'Ảnh có kích cỡ web';
    622615$lang['Resize'] = 'Định dạng lại kích thước';
    623616$lang['Maximum Width'] = 'Chiều rộng lớn nhất';
     
    712705$lang['manual order'] = 'sắp xếp thủ công';
    713706$lang['Albums automatically sorted'] = 'Albums đã được phân loại tự động';
    714 $lang['Keep high definition'] = 'Giữ nguyên định dạng cao';
    715 $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';
    716 $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';
    717 $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';
    718707$lang['Batch Manager'] = 'Quản lý khối';
    719708$lang['include child albums'] = 'bao gồm các albums con';
  • trunk/language/zh_CN/admin.lang.php

    r12693 r12879  
    599599$lang['Everybody'] = '每个人';
    600600$lang['Who can see these photos?'] = '哪些人可以看到这些图片?';
    601 $lang['The websize maximum width must be a number between %d and %d'] = '最大宽度的网页尺寸必须在 %d 和 %d 之间';
    602 $lang['The websize maximum height must be a number between %d and %d'] = '最大高度的网页尺寸必须在 %d 和 %d 之间';
    603 $lang['The websize image quality must be a number between %d and %d'] = '图片质量的网页尺寸必须在 %d 和 %d 之间';
    604 $lang['The thumbnail maximum width must be a number between %d and %d'] = '缩略图的最大宽度必须在 %d 和 %d 之间';
    605 $lang['The thumbnail maximum height must be a number between %d and %d'] = '缩略图的最大高度必须在 %d 和 %d 之间';
    606 $lang['The thumbnail image quality must be a number between %d and %d'] = '缩略图的质量必须在 %d 和 %d 之间';
    607601$lang['Settings'] = '设置';
    608 $lang['Web size photo'] = '图片的网页尺寸';
    609602$lang['Resize'] = '重置大小';
    610603$lang['Maximum Width'] = '最大宽度';
     
    719712$lang['Duplicates'] = '重复';
    720713$lang['include child albums'] = '包含子相册';
    721 $lang['Keep high definition'] = '保留高清晰度';
    722714$lang['last import'] = '最后导入';
    723715$lang['manual order'] = '手工排序';
     
    738730$lang['Set creation date'] = '设置创建日期';
    739731$lang['Set title'] = '设置标题';
    740 $lang['The high definition image quality must be a number between %d and %d'] = '高清晰度图片质量必须在 %d 和 %d 之间';
    741 $lang['The high definition maximum height must be a number between %d and %d'] = '高清晰度图片最大高度必须在 %d 和 %d 之间';
    742 $lang['The high definition maximum width must be a number between %d and %d'] = '高清晰度图片最大宽度必须在 %d 和 %d 之间';
    743732$lang['The whole page'] = '整张图片';
    744733$lang['The whole set'] = '整个集合';
  • trunk/language/zh_TW/admin.lang.php

    r12693 r12879  
    599599$lang['Everybody'] = '每個人';
    600600$lang['Who can see these photos?'] = '哪些人可以看到這些相片?';
    601 $lang['The websize maximum width must be a number between %d and %d'] = '最大寬度的網頁尺寸必須在 %d 和 %d 之間';
    602 $lang['The websize maximum height must be a number between %d and %d'] = '最大高度的網頁尺寸必須在 %d 和 %d 之間';
    603 $lang['The websize image quality must be a number between %d and %d'] = '圖片質量的網頁尺寸必須在 %d 和 %d 之間';
    604 $lang['The thumbnail maximum width must be a number between %d and %d'] = '縮略圖的最大寬度必須在 %d 和 %d 之間';
    605 $lang['The thumbnail maximum height must be a number between %d and %d'] = '縮略圖的最大高度必須在 %d 和 %d 之間';
    606 $lang['The thumbnail image quality must be a number between %d and %d'] = '縮略圖的質量必須在 %d 和 %d 之間';
    607601$lang['Settings'] = '設置';
    608 $lang['Web size photo'] = '相片的網頁尺寸';
    609602$lang['Resize'] = '重置大小';
    610603$lang['Maximum Width'] = '最大寬度';
     
    719712$lang['Duplicates'] = '重複';
    720713$lang['include child albums'] = '包含子相冊';
    721 $lang['Keep high definition'] = '保留高清晰度';
    722714$lang['last import'] = '最後導入';
    723715$lang['manual order'] = '手工排序';
     
    738730$lang['Set creation date'] = '設置創建日期';
    739731$lang['Set title'] = '設置標題';
    740 $lang['The high definition image quality must be a number between %d and %d'] = '高清晰度相片質量必須在 %d 和 %d 之間';
    741 $lang['The high definition maximum height must be a number between %d and %d'] = '高清晰度相片最大高度必須在 %d 和 %d 之間';
    742 $lang['The high definition maximum width must be a number between %d and %d'] = '高清晰度相片最大寬度必須在 %d 和 %d 之間';
    743732$lang['The whole page'] = '整張相片';
    744733$lang['The whole set'] = '整個集合';
Note: See TracChangeset for help on using the changeset viewer.