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/fr_FR/common.lang.php | |
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/fr_FR/common.lang.php | 16 |
1 files changed, 9 insertions, 7 deletions
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'; |