diff options
author | plegall <plg@piwigo.org> | 2012-03-23 21:58:12 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2012-03-23 21:58:12 +0000 |
commit | b2d07d4f7234dd4ac966838fc8d5f617b13c157b (patch) | |
tree | 8d42e1815609202902290f7ddf0ce05796b3c9c4 /language | |
parent | 20133b46141ac32454b6a98dd2b46df9290192d9 (diff) |
feature 2598: add sizes XXS and XS
new label for sizes
On picture.php, the current size is "checked" and javascript refreshed when switched (with jQuery)
jQuery loaded by default on header.tpl (already loaded by thumbnails.tpl)
git-svn-id: http://piwigo.org/svn/trunk@13683 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | language/en_UK/common.lang.php | 18 | ||||
-rw-r--r-- | language/fr_FR/common.lang.php | 16 |
2 files changed, 19 insertions, 15 deletions
diff --git a/language/en_UK/common.lang.php b/language/en_UK/common.lang.php index 6695038d9..a432ecda7 100644 --- a/language/en_UK/common.lang.php +++ b/language/en_UK/common.lang.php @@ -369,14 +369,16 @@ $lang['Your favorites'] = "Your favorites"; $lang['Your Gallery Customization'] = "Your gallery customization"; $lang['Your username has been successfully changed to : %s'] = 'Your username has been successfully changed to : %s'; $lang['Your password has been reset'] = 'Your password has been reset'; -$lang['square'] = "Square"; -$lang['thumb'] = "Thumb"; -$lang['small'] = "Small"; -$lang['medium'] = "Medium"; -$lang['large'] = "Large"; -$lang['xlarge'] = "XLarge"; -$lang['xxlarge'] = "XXLarge"; -$lang['Original'] = "Original"; +$lang['square'] = 'Square'; +$lang['thumb'] = 'Thumbnail'; +$lang['2small'] = 'XXS - tiny'; +$lang['xsmall'] = 'XS - extra small'; +$lang['small'] = 'S - small'; +$lang['medium'] = 'M - medium'; +$lang['large'] = 'L - large'; +$lang['xlarge'] = 'XL - extra large'; +$lang['xxlarge'] = 'XXL - huge'; +$lang['Original'] = 'Original'; $lang['Thank you for registering at %s!'] = 'Thank you for registering at %s!'; $lang['Here are your connection settings'] = 'Here are your connection settings'; $lang['Password: %s'] = 'Password: %s'; diff --git a/language/fr_FR/common.lang.php b/language/fr_FR/common.lang.php index 1cc1f1ec8..a4a87f122 100644 --- a/language/fr_FR/common.lang.php +++ b/language/fr_FR/common.lang.php @@ -374,13 +374,15 @@ $lang['Password: %s'] = 'Mot de passe : %s'; $lang['Username: %s'] = 'Nom d\'utilisateur : %s'; $lang['If you think you\'ve received this email in error, please contact us at %s'] = 'Si vous pensez avoir reçu cet email par erreur, veuillez nous contacter %s'; $lang['Photo sizes'] = 'Tailles de photo'; -$lang['square'] = "Carré"; -$lang['thumb'] = "Miniature"; -$lang['small'] = "Petit"; -$lang['medium'] = "Moyen"; -$lang['large'] = "Large"; -$lang['xlarge'] = "XLarge"; -$lang['xxlarge'] = "XXLarge"; +$lang['square'] = 'Carré'; +$lang['thumb'] = 'Miniature'; +$lang['2small'] = 'XXS - minuscule'; +$lang['xsmall'] = 'XS - très petit'; +$lang['small'] = 'S - petit'; +$lang['medium'] = 'M - moyen'; +$lang['large'] = 'L - grand'; +$lang['xlarge'] = 'XL - très grand'; +$lang['xxlarge'] = 'XXL - énorme'; $lang['Show latest comments first'] = 'Montrer les commentaires les plus récents en premier'; $lang['Show oldest comments first'] = 'Montrer les commentaires les plus anciens en premier'; $lang['View in'] = 'Affichage'; |