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

@ -98,7 +98,7 @@ $i18n_filename_to = array (
@define('ERROR_FILE_EXISTS_ALREADY', 'Chyba: Soubor u<> ve va<76>em po<70><6F>ta<74>i existuje!');
@define('GO', 'Prov<6F>st!');
@define('NEWSIZE', 'Nov<6F> rozm<7A>r: ');
@define('RESIZE_BLAHBLAH', '<b>Zm<5A>nit rozm<7A>r %s</b><p>');
@define('RESIZE_BLAHBLAH', '<b>Zm<5A>nit rozm<7A>r %s</b>');
@define('ORIGINAL_SIZE', 'P<>vodn<64> rozm<7A>r: <i>%sx%s</i> pixel<65>');
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Zde m<><6D>ete zadat nov<6F> rozm<7A>r obr<62>zku. Pokud chcete zachovat proporce, zadejte jen jednu hodnotu a stiskn<6B>te kl<6B>vesu TAB, nov<6F> rozm<7A>r bude dopo<70><6F>t<EFBFBD>n automaticky:');
@define('QUICKJUMP_CALENDAR', 'Vyhled<65>vac<61> kalend<6E><64>');
@ -200,6 +200,10 @@ $i18n_filename_to = array (
@define('RESIZING', 'Zm<5A>na rozm<7A>r<EFBFBD>');
@define('RESIZE_DONE', 'Hotovo (upraven rozm<7A>r %s obr<62>zk<7A>).');
@define('SYNCING', 'Synchronizace datab<61>ze s adres<65><73>em obr<62>zk<7A>');
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
@define('SYNC_DONE', 'Hotovo (synchronizov<6F>no %s obr<62>zk<7A>).');
@define('DELETE_IMAGE_FAIL' , 'Nelze vymazat obr<62>zek <b>%s</b>');
@define('DELETE_THUMBNAIL', 'Vymaz<61>n n<>hled obr<62>zku s n<>zvem <b>%s</b>');
@ -403,6 +407,14 @@ $i18n_filename_to = array (
@define('INSTALL_THUMBSUFFIX_DESC', 'N<>hledy budou pojmenov<6F>ny original.sufix.ext');
@define('INSTALL_THUMBWIDTH', 'Rozm<7A>ry n<>hled<65>');
@define('INSTALL_THUMBWIDTH_DESC', 'Pevn<76> <20><><EFBFBD>ka automaticky generovan<61>ch n<>hled<65>');
@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', 'Osobn<62> nastaven<65>');