aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2007-03-29 19:04:54 +0000
committerrub <rub@piwigo.org>2007-03-29 19:04:54 +0000
commit7acc304f5543f2210a888e9bb562bb25032aa694 (patch)
tree05e9be787ad2d40f304c9c6d871f39a14f85299b
parentac97e7356502f2300c4e6c6f85e35eb854d5f40a (diff)
o add missing $lang
o use of l10n_dec o normalize file header git-svn-id: http://piwigo.org/svn/trunk@1932 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin/comments.php8
-rw-r--r--admin/group_list.php7
-rw-r--r--admin/history.php18
-rw-r--r--admin/include/functions.php4
-rw-r--r--admin/intro.php29
-rw-r--r--admin/tags.php9
-rw-r--r--admin/user_list.php6
-rw-r--r--include/menubar.inc.php8
-rw-r--r--index.php9
-rw-r--r--install/upgrade_1.3.0.php5
-rw-r--r--install/upgrade_1.3.1.php6
-rw-r--r--install/upgrade_1.4.0.php5
-rw-r--r--install/upgrade_1.5.0.php5
-rw-r--r--install/upgrade_1.6.0.php5
-rw-r--r--install/upgrade_1.6.2.php5
-rw-r--r--language/en_UK.iso-8859-1/admin.lang.php25
-rw-r--r--language/en_UK.iso-8859-1/common.lang.php1
-rw-r--r--language/fr_FR.iso-8859-1/admin.lang.php25
-rw-r--r--language/fr_FR.iso-8859-1/common.lang.php1
19 files changed, 104 insertions, 77 deletions
diff --git a/admin/comments.php b/admin/comments.php
index 70642065d..6bba32a96 100644
--- a/admin/comments.php
+++ b/admin/comments.php
@@ -89,8 +89,8 @@ UPDATE '.COMMENTS_TABLE.'
array_push(
$page['infos'],
- sprintf(
- l10n('%d user comments validated'),
+ l10n_dec(
+ '%d user comment validated', '%d user comments validated',
count($to_validate)
)
);
@@ -107,8 +107,8 @@ DELETE
array_push(
$page['infos'],
- sprintf(
- l10n('%d user comments rejected'),
+ l10n_dec(
+ '%d user comment rejected', '%d user comments rejected',
count($to_reject)
)
);
diff --git a/admin/group_list.php b/admin/group_list.php
index ec0a06191..ccb5a5b80 100644
--- a/admin/group_list.php
+++ b/admin/group_list.php
@@ -2,10 +2,9 @@
// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery |
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
-// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
+// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
-// | branch : BSF (Best So Far)
-// | file : $RCSfile$
+// | file : $Id$
// | last update : $Date$
// | last modifier : $Author$
// | revision : $Revision$
@@ -195,7 +194,7 @@ SELECT COUNT(*)
'CLASS' => ($num++ % 2 == 1) ? 'row2' : 'row1',
'NAME' => $row['name'],
'IS_DEFAULT' => (get_boolean($row['is_default']) ? ' ['.l10n('is_default_group').']' : ''),
- 'MEMBERS' => sprintf(l10n('%d members'), $counter),
+ 'MEMBERS' => l10n_dec('%d member', '%d members', $counter),
'U_MEMBERS' => $members_url.$row['id'],
'U_DELETE' => $del_url.$row['id'],
'U_PERM' => $perm_url.$row['id'],
diff --git a/admin/history.php b/admin/history.php
index 59db2e285..0c8f34c33 100644
--- a/admin/history.php
+++ b/admin/history.php
@@ -2,9 +2,8 @@
// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery |
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
-// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
+// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
-// | branch : BSF (Best So Far)
// | file : $Id$
// | last update : $Date$
// | last modifier : $Author$
@@ -613,25 +612,24 @@ SELECT
$template->assign_block_vars(
'summary',
array(
- 'NB_LINES' => sprintf(
- l10n('%d lines filtered'),
+ 'NB_LINES' => l10n_dec(
+ '%d line filtered', '%d lines filtered',
$page['nb_lines']
),
'FILESIZE' => $summary['total_filesize'].' KB',
- 'USERS' => sprintf(
- l10n('%d users'),
+ 'USERS' => l10n_dec(
+ '%d user', '%d users',
$summary['nb_members'] + $summary['nb_guests']
),
'MEMBERS' => sprintf(
- l10n('%d members: %s'),
- $summary['nb_members'],
+ l10n_dec('%d member', '%d members', $summary['nb_members']).': %s',
implode(
', ',
$member_strings
)
),
- 'GUESTS' => sprintf(
- l10n('%d guests'),
+ 'GUESTS' => l10n_dec(
+ '%d guest', '%d guests',
$summary['nb_guests']
),
)
diff --git a/admin/include/functions.php b/admin/include/functions.php
index ac99539d6..6e97e3908 100644
--- a/admin/include/functions.php
+++ b/admin/include/functions.php
@@ -1465,8 +1465,8 @@ DELETE FROM '.$table.'
array_push(
$page['infos'],
- sprintf(
- l10n('%d categories moved'),
+ l10n_dec(
+ '%d category moved', '%d categories moved',
count($categories)
)
);
diff --git a/admin/intro.php b/admin/intro.php
index 326e66609..e23c5e9ab 100644
--- a/admin/intro.php
+++ b/admin/intro.php
@@ -4,8 +4,7 @@
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
-// | branch : BSF (Best So Far)
-// | file : $RCSfile$
+// | file : $Id$
// | last update : $Date$
// | last modifier : $Author$
// | revision : $Revision$
@@ -191,20 +190,20 @@ $template->assign_vars(
'OS' => PHP_OS,
'PHP_VERSION' => phpversion(),
'MYSQL_VERSION' => $mysql_version,
- 'DB_ELEMENTS' => sprintf(l10n('%d elements'), $nb_elements),
+ 'DB_ELEMENTS' => l10n_dec('%d element', '%d elements', $nb_elements),
'DB_CATEGORIES' =>
- sprintf(
- l10n('%d categories including %d physical and %d virtual'),
- $nb_categories,
- $nb_physical,
- $nb_virtual
- ),
- 'DB_IMAGE_CATEGORY' =>sprintf(l10n('%d associations'), $nb_image_category),
- 'DB_TAGS' => sprintf(l10n('%d tags'), $nb_tags),
- 'DB_IMAGE_TAG' => sprintf(l10n('%d associations'), $nb_image_tag),
- 'DB_USERS' => sprintf(l10n('%d users'), $nb_users),
- 'DB_GROUPS' => sprintf(l10n('%d groups'), $nb_groups),
- 'DB_COMMENTS' => sprintf(l10n('%d comments'), $nb_comments),
+ l10n_dec('cat_inclu_part1_S', 'cat_inclu_part1_P',
+ $nb_categories).
+ l10n_dec('cat_inclu_part2_S', 'cat_inclu_part2_P',
+ $nb_physical).
+ l10n_dec('cat_inclu_part3_S', 'cat_inclu_part3_P',
+ $nb_virtual),
+ 'DB_IMAGE_CATEGORY' => l10n_dec('%d association', '%d associations', $nb_image_category),
+ 'DB_TAGS' => l10n_dec('%d tag', '%d tags', $nb_tags),
+ 'DB_IMAGE_TAG' => l10n_dec('%d association', '%d associations', $nb_image_tag),
+ 'DB_USERS' => l10n_dec('%d user', '%d users', $nb_users),
+ 'DB_GROUPS' => l10n_dec('%d group', '%d groups', $nb_groups),
+ 'DB_COMMENTS' => l10n_dec('%d comment', '%d comments', $nb_comments),
'U_CHECK_UPGRADE' => PHPWG_ROOT_PATH.'admin.php?action=check_upgrade',
'U_PHPINFO' => PHPWG_ROOT_PATH.'admin.php?action=phpinfo',
'PHP_DATATIME' => $php_current_timestamp,
diff --git a/admin/tags.php b/admin/tags.php
index 4344170c6..777281761 100644
--- a/admin/tags.php
+++ b/admin/tags.php
@@ -4,7 +4,6 @@
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
-// | branch : BSF (Best So Far)
// | file : $Id$
// | last update : $Date$
// | last modifier : $Author$
@@ -135,11 +134,11 @@ DELETE
array_push(
$page['infos'],
- sprintf(
- l10n('The %d following tags were deleted : %s'),
- count($tag_names),
+ l10n_dec(
+ 'The %d following tag were deleted',
+ 'The %d following tags were deleted',
+ count($tag_names)).' : '.
implode(', ', $tag_names)
- )
);
}
diff --git a/admin/user_list.php b/admin/user_list.php
index ae1c0af36..bef1005fb 100644
--- a/admin/user_list.php
+++ b/admin/user_list.php
@@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery |
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
-// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
+// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
// | file : $Id$
// | last update : $Date$
@@ -270,8 +270,8 @@ if (isset($_POST['delete']) and count($collection) > 0)
}
array_push(
$page['infos'],
- sprintf(
- l10n('%d users deleted'),
+ l10n_dec(
+ '%d user deleted', '%d users deleted',
count($collection)
)
);
diff --git a/include/menubar.inc.php b/include/menubar.inc.php
index 1ddc59882..aa3f490ca 100644
--- a/include/menubar.inc.php
+++ b/include/menubar.inc.php
@@ -152,10 +152,10 @@ if ('tags' == $page['section'])
)
)
),
- 'TITLE' => sprintf(
- l10n('%d pictures are also linked to current tags'),
- $tag['counter']
- ),
+ 'TITLE' => l10n_dec(
+ '%d picture are also linked to current tags',
+ '%d pictures are also linked to current tags',
+ $tag['counter']),
)
);
diff --git a/index.php b/index.php
index ef0f00c5a..6116828f3 100644
--- a/index.php
+++ b/index.php
@@ -4,7 +4,6 @@
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
-// | branch : BSF (Best So Far)
// | file : $Id$
// | last update : $Date$
// | last modifier : $Author$
@@ -228,10 +227,10 @@ if ( $page['section']=='search' and $page['start']==0 )
)
),
'NAME' => $tag['name'],
- 'TITLE' => sprintf(
- l10n('%d pictures are also linked to current tags'),
- $tag['counter']
- ),
+ 'TITLE' => l10n_dec(
+ '%d picture are also linked to current tags',
+ '%d pictures are also linked to current tags',
+ $tag['counter']),
'CLASS' => 'tagLevel'.$tag['level']
)
);
diff --git a/install/upgrade_1.3.0.php b/install/upgrade_1.3.0.php
index d48feec9d..8f70ac62b 100644
--- a/install/upgrade_1.3.0.php
+++ b/install/upgrade_1.3.0.php
@@ -2,10 +2,9 @@
// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery |
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
-// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
+// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
-// | branch : BSF (Best So Far)
-// | file : $RCSfile$
+// | file : $Id$
// | last update : $Date$
// | last modifier : $Author$
// | revision : $Revision$
diff --git a/install/upgrade_1.3.1.php b/install/upgrade_1.3.1.php
index 3b9fae7ef..aa2421eba 100644
--- a/install/upgrade_1.3.1.php
+++ b/install/upgrade_1.3.1.php
@@ -1,11 +1,11 @@
<?php
// +-----------------------------------------------------------------------+
+// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery |
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
-// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
+// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
-// | branch : BSF (Best So Far)
-// | file : $RCSfile$
+// | file : $Id$
// | last update : $Date$
// | last modifier : $Author$
// | revision : $Revision$
diff --git a/install/upgrade_1.4.0.php b/install/upgrade_1.4.0.php
index fef961254..c5d7332b0 100644
--- a/install/upgrade_1.4.0.php
+++ b/install/upgrade_1.4.0.php
@@ -2,10 +2,9 @@
// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery |
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
-// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
+// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
-// | branch : BSF (Best So Far)
-// | file : $RCSfile$
+// | file : $Id$
// | last update : $Date$
// | last modifier : $Author$
// | revision : $Revision$
diff --git a/install/upgrade_1.5.0.php b/install/upgrade_1.5.0.php
index 5955a2bab..16e3a73e8 100644
--- a/install/upgrade_1.5.0.php
+++ b/install/upgrade_1.5.0.php
@@ -2,10 +2,9 @@
// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery |
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
-// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
+// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
-// | branch : BSF (Best So Far)
-// | file : $RCSfile$
+// | file : $Id$
// | last update : $Date$
// | last modifier : $Author$
// | revision : $Revision$
diff --git a/install/upgrade_1.6.0.php b/install/upgrade_1.6.0.php
index 19578d0f8..b583752f3 100644
--- a/install/upgrade_1.6.0.php
+++ b/install/upgrade_1.6.0.php
@@ -2,10 +2,9 @@
// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery |
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
-// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
+// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
-// | branch : BSF (Best So Far)
-// | file : $RCSfile$
+// | file : $Id$
// | last update : $Date$
// | last modifier : $Author$
// | revision : $Revision$
diff --git a/install/upgrade_1.6.2.php b/install/upgrade_1.6.2.php
index 489e496c5..e7b617dfd 100644
--- a/install/upgrade_1.6.2.php
+++ b/install/upgrade_1.6.2.php
@@ -2,10 +2,9 @@
// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery |
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
-// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
+// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
-// | branch : BSF (Best So Far)
-// | file : $RCSfile$
+// | file : $Id$
// | last update : $Date$
// | last modifier : $Author$
// | revision : $Revision$
diff --git a/language/en_UK.iso-8859-1/admin.lang.php b/language/en_UK.iso-8859-1/admin.lang.php
index e72c3dbd3..00dad7598 100644
--- a/language/en_UK.iso-8859-1/admin.lang.php
+++ b/language/en_UK.iso-8859-1/admin.lang.php
@@ -24,17 +24,31 @@
// | USA. |
// +-----------------------------------------------------------------------+
+$lang['%d association'] = '%d association';
$lang['%d associations'] = '%d associations';
-$lang['%d categories including %d physical and %d virtual'] = '%d categories including %d physical and %d virtual';
+$lang['cat_inclu_part1_S'] = '%d category including ';
+$lang['cat_inclu_part1_P'] = '%d categories including ';
+$lang['cat_inclu_part2_S'] = '%d physical';
+$lang['cat_inclu_part2_P'] = '%d physical';
+$lang['cat_inclu_part3_S'] = ' and %d virtual';
+$lang['cat_inclu_part3_P'] = ' and %d virtual';
+$lang['%d category moved'] = '%d category moved';
$lang['%d categories moved'] = '%d categories moved';
-$lang['%d comments'] = '%d comments';
+$lang['%d element'] = '%d element';
$lang['%d elements'] = '%d elements';
+$lang['%d group'] = '%d group';
$lang['%d groups'] = '%d groups';
+$lang['%d member'] = '%d member';
$lang['%d members'] = '%d members';
+$lang['%d tag'] = '%d tag';
$lang['%d tags'] = '%d tags';
+$lang['%d user comment rejected'] = '%d user comment rejected';
$lang['%d user comments rejected'] = '%d user comments rejected';
+$lang['%d user comment validated'] = '%d user comment validated';
$lang['%d user comments validated'] = '%d user comments validated';
+$lang['%d user deleted'] = '%d user deleted';
$lang['%d users deleted'] = '%d users deleted';
+$lang['%d user'] = '%d user';
$lang['%d users'] = '%d users';
$lang['%d waiting for validation'] = '%d waiting for validation';
$lang['%d waiting pictures rejected'] = '%d waiting pictures rejected';
@@ -173,7 +187,8 @@ $lang['Tag "%s" already exists'] = 'Tag "%s" already exists';
$lang['Tag "%s" was added'] = 'Tag "%s" was added';
$lang['Tag selection'] = 'Tag selection';
$lang['Take selected elements out of caddie'] = 'Take selected elements out of caddie';
-$lang['The %d following tags were deleted : %s'] = 'The %d following tags were deleted : %s';
+$lang['The %d following tag were deleted'] = 'The following tag were deleted';
+$lang['The %d following tags were deleted'] = 'The %d following tags were deleted';
$lang['Unable to check for upgrade since allow_url_fopen is disabled.'] = 'Unable to check for upgrade since allow_url_fopen is disabled.';
$lang['Uninstall'] = 'Uninstall';
$lang['Use default sort order']='Use the default image sort order (defined in the configuration file)';
@@ -585,10 +600,12 @@ $lang['Element type'] = 'Element type';
$lang['User'] = 'User';
$lang['Image id'] = 'Image id';
$lang['Summary'] = 'Summary';
+$lang['%d line filtered'] = '%d line filtered';
$lang['%d lines filtered'] = '%d lines filtered';
-$lang['%d members: %s'] = '%d members: %s';
+$lang['%d guest'] = '%d guest';
$lang['%d guests'] = '%d guests';
$lang['Hour'] = 'Hour';
$lang['is_the_guest'] = 'guest';
$lang['is_the_default'] = 'default values';
+$lang['High filesize'] = 'High filesize';
?>
diff --git a/language/en_UK.iso-8859-1/common.lang.php b/language/en_UK.iso-8859-1/common.lang.php
index af5f923ab..4f1d2b3e7 100644
--- a/language/en_UK.iso-8859-1/common.lang.php
+++ b/language/en_UK.iso-8859-1/common.lang.php
@@ -306,6 +306,7 @@ $lang['%d new element'] = '%d new element';
$lang['%d new elements'] = '%d new elements';
$lang['%d new user'] = '%d new user';
$lang['%d new users'] = '%d new users';
+$lang['%d picture are also linked to current tags'] = '%d picture are also linked to current tags';
$lang['%d pictures are also linked to current tags'] = '%d pictures are also linked to current tags';
$lang['%d waiting element'] = '%d waiting element';
$lang['%d waiting elements'] = '%d waiting elements';
diff --git a/language/fr_FR.iso-8859-1/admin.lang.php b/language/fr_FR.iso-8859-1/admin.lang.php
index 084d6099d..b4835752d 100644
--- a/language/fr_FR.iso-8859-1/admin.lang.php
+++ b/language/fr_FR.iso-8859-1/admin.lang.php
@@ -24,17 +24,31 @@
// | USA. |
// +-----------------------------------------------------------------------+
+$lang['%d association'] = '%d association';
$lang['%d associations'] = '%d associations';
-$lang['%d categories including %d physical and %d virtual'] = '%d catégories dont %d physiques et %d virtuelles';
+$lang['cat_inclu_part1_S'] = '%d catégorie dont ';
+$lang['cat_inclu_part1_P'] = '%d catégories dont ';
+$lang['cat_inclu_part2_S'] = '%d physique';
+$lang['cat_inclu_part2_P'] = '%d physiques';
+$lang['cat_inclu_part3_S'] = ' et %d virtuelle';
+$lang['cat_inclu_part3_P'] = ' et %d virtuelles';
+$lang['%d category moved'] = '%d catégorie déplacée';
$lang['%d categories moved'] = '%d catégories déplacées';
-$lang['%d comments'] = '%d commentaires d\'utilisateurs';
+$lang['%d element'] = '%d élément';
$lang['%d elements'] = '%d éléments';
+$lang['%d group'] = '%d groupe';
$lang['%d groups'] = '%d groupes';
+$lang['%d member'] = '%d membre';
$lang['%d members'] = '%d membres';
+$lang['%d tag'] = '%d tag';
$lang['%d tags'] = '%d tags';
+$lang['%d user comment rejected'] = '%d commentaire d\'utilisateur rejeté';
$lang['%d user comments rejected'] = '%d commentaires d\'utilisateurs rejetés';
+$lang['%d user comment validated'] = '%d commentaire d\'utilisateur validé';
$lang['%d user comments validated'] = '%d commentaires d\'utilisateurs validés';
+$lang['%d user deleted'] = '%d utilisateur supprimé';
$lang['%d users deleted'] = '%d utilisateurs supprimés';
+$lang['%d user'] = '%d utilisateur';
$lang['%d users'] = '%d utilisateurs';
$lang['%d waiting for validation'] = '%d en attente de validation';
$lang['%d waiting pictures rejected'] = '%d images en attente rejetées';
@@ -173,7 +187,8 @@ $lang['Tag "%s" already exists'] = 'Le tag "%s" existe déjà';
$lang['Tag "%s" was added'] = 'Le tag "%s" a été ajouté';
$lang['Tag selection'] = 'Sélection de tags';
$lang['Take selected elements out of caddie'] = 'Sortir les éléments sélectionnés du panier';
-$lang['The %d following tags were deleted : %s'] = 'Les %d tags suivants ont été supprimés : %s';
+$lang['The %d following tag were deleted'] = 'Le tag suivant a été supprimé';
+$lang['The %d following tags were deleted'] = 'Les %d tags suivants ont été supprimés';
$lang['Unable to check for upgrade since allow_url_fopen is disabled.'] = 'Impossible de connaître la dernière version cat la fonction allow_url_fopen est désactivée.';
$lang['Uninstall'] = 'Désinstaller';
$lang['Use default sort order']='Utiliser l\'ordre de tri des images par défaut (défini dans le fichier de configuration)';
@@ -584,10 +599,14 @@ $lang['Element type'] = "Type d'élément";
$lang['User'] = 'Utilisateur';
$lang['Image id'] = 'Identifiant image';
$lang['Summary'] = 'Résumé';
+$lang['%d line filtered'] = '%d ligne filtrée';
$lang['%d lines filtered'] = '%d lignes filtrées';
+$lang['%d member: %s'] = '%d membre: %s';
$lang['%d members: %s'] = '%d membres: %s';
+$lang['%d guest'] = '%d invité';
$lang['%d guests'] = '%d invités';
$lang['Hour'] = 'Heure';
$lang['is_the_guest'] = 'invité';
$lang['is_the_default'] = 'valeurs par défaut';
+$lang['High filesize'] = 'Taille du fichier HR';
?>
diff --git a/language/fr_FR.iso-8859-1/common.lang.php b/language/fr_FR.iso-8859-1/common.lang.php
index 3ae1f0d8b..0ce3f7800 100644
--- a/language/fr_FR.iso-8859-1/common.lang.php
+++ b/language/fr_FR.iso-8859-1/common.lang.php
@@ -306,6 +306,7 @@ $lang['%d new element'] = '%d nouvel élément';
$lang['%d new elements'] = '%d nouveaux éléments';
$lang['%d new user'] = '%d nouvel utilisateur';
$lang['%d new users'] = '%d nouveaux utilisateurs';
+$lang['%d picture are also linked to current tags'] = '%d image est également liée aux tags courants';
$lang['%d pictures are also linked to current tags'] = '%d images sont également liées aux tags courants';
$lang['%d waiting element'] = '%d élément en attente';
$lang['%d waiting elements'] = '%d éléments en attente';