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

@@ -90,7 +90,7 @@
@define('ERROR_FILE_EXISTS_ALREADY', 'Erreur : le fichier existe déjà sur votre machine.');
@define('GO', 'Go!');
@define('NEWSIZE', 'Nouvelle taille : ');
@define('RESIZE_BLAHBLAH', '<b>Redimensionner %s</b><p>');
@define('RESIZE_BLAHBLAH', '<b>Redimensionner %s</b>');
@define('ORIGINAL_SIZE', 'Taille d\'origine : <i>%sx%s</i> pixel');
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Ici vous pouvez ajuster la taille de l\'image sélectionnée. Si vous voulez respecter les proportions de l\'image, entrez juste la hauteur ou la largeur, et pressez la touche TAB - la valeur correspondante sera insérée automatiquement :');
@define('QUICKJUMP_CALENDAR', 'Saut rapide vers le Calendrier');
@@ -190,6 +190,10 @@
@define('RESIZING', 'Redimensionnement');
@define('RESIZE_DONE', 'Terminé (%s images redimensionnées).');
@define('SYNCING', 'Synchronisation de la base de données avec votre collection d\'images');
@define('SYNC_OPTION_LEGEND', 'Thumbnail Synchronization Options');
@define('SYNC_OPTION_KEEPTHUMBS', 'Keep all existing thumbnails');
@define('SYNC_OPTION_SIZECHECKTHUMBS', 'Keep existing thumbnails only if they are the correct size');
@define('SYNC_OPTION_DELETETHUMBS', 'Regenerate all thumbnails');
@define('SYNC_DONE', 'Terminé (%s images synchronisées).');
@define('DELETE_IMAGE_FAIL' , 'Impossible de supprimer l\'image intitulée <b>%s</b>');
@define('DELETE_THUMBNAIL', 'Suppression de la miniature de l\'image intitulée <b>%s</b>');
@@ -398,6 +402,14 @@
@define('INSTALL_THUMBSUFFIX_DESC', 'Les miniatures d\'images seront enregistrées de la manière suivante : original.[suffixe].ext');
@define('INSTALL_THUMBWIDTH', 'Dimensions des miniatures');
@define('INSTALL_THUMBWIDTH_DESC', 'Largeur maximum (statique) des miniatures crées automatiquement');
@define('INSTALL_THUMBDIM', 'Thumbnail constrained dimension');
@define('INSTALL_THUMBDIM_LARGEST', 'Largest');
@define('INSTALL_THUMBDIM_WIDTH', 'Width');
@define('INSTALL_THUMBDIM_HEIGHT', 'Height');
@define('INSTALL_THUMBDIM_DESC', 'Dimension to be constrained to the thumbnail max size. The default "' .
INSTALL_THUMBDIM_LARGEST . '" limits both dimensions, so neither can be greater than the max size; "' .
INSTALL_THUMBDIM_WIDTH . '" and "' . INSTALL_THUMBDIM_HEIGHT .
'" only limit the chosen dimension, so the other could be larger than the max size.');
/* Personal details */
@define('USERCONF_CAT_PERSONAL', 'Détails personnels');