1
0

Correct thumbnail constraints. S9Y now supports width, height, largest,

and smallest constraints.  Backwards compatibility is maintained with the
imageselectorplus plugin (the only plugin to use the thumbnail or aspect
calculation code).  Language files are updated and a new option screen
is displayed after choosing "Rebuild Thumbs".
This commit is contained in:
Judebert
2008-04-09 01:57:10 +00:00
parent 12626f0f63
commit a27b9f91ed
64 changed files with 974 additions and 116 deletions

View File

@ -84,7 +84,7 @@
@define('ERROR_FILE_EXISTS_ALREADY', 'Erro: Arquivo j<> existe em sua m<>quina!');
@define('GO', 'Vai!');
@define('NEWSIZE', 'Novo tamanho: ');
@define('RESIZE_BLAHBLAH', '<b>Redimensionar %s</b><p>');
@define('RESIZE_BLAHBLAH', '<b>Redimensionar %s</b>');
@define('ORIGINAL_SIZE', 'Tamanho original: <i>%sx%s</i> pixel');
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Aqui voc<6F> pode ajustar o novo tamanho das imagens. Se pretende manter as propor<6F><72>es, preencha apenas um valor e pressione a tecla TAB que automaticamente ser<65> calculado o novo tamanho de modo que as propor<6F><72>es n<>o fiquem bagun<75>adas:');
@define('QUICKJUMP_CALENDAR', 'Calend<6E>rio de acesso r<>pido');
@ -184,6 +184,10 @@
@define('RESIZING', 'Redimensionando');
@define('RESIZE_DONE', 'Pronto (%s imagens redimensionadas).');
@define('SYNCING', 'Sincronizando o banco de dados com o diret<65>rio de imagens');
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
@define('SYNC_DONE', 'Pronto (%s imagens sincronizadas).');
@define('DELETE_IMAGE_FAIL' , 'N<>o foi poss<73>vel excluir a imagem <b>%s</b>');
@define('DELETE_THUMBNAIL', 'Excluir a miniatura da imagem intitulada <b>%s</b>');
@ -395,6 +399,14 @@
@define('INSTALL_THUMBSUFFIX_DESC', 'As miniaturas ser<65>o nomeadas com o seguinte formato: original.[sufixo].ext');
@define('INSTALL_THUMBWIDTH', 'Dimens<6E>o das miniaturas ');
@define('INSTALL_THUMBWIDTH_DESC', 'Largura m<>xima est<73>tica das miniaturas geradas automaticamente');
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
'" only limit the chosen dimension, so the other could be larger than the max size.');
/* Personal details */
@define('USERCONF_CAT_PERSONAL', 'Detalhes pessoais');