diff options
author | ddtddt <ddtddt@piwigo.org> | 2011-09-12 06:19:51 +0000 |
---|---|---|
committer | ddtddt <ddtddt@piwigo.org> | 2011-09-12 06:19:51 +0000 |
commit | 1c0f3d46c403a51643e2beda6e9a5ba127adfc4c (patch) | |
tree | 0cff42a9b67d86e69844be6036b090cb42fe2ab5 | |
parent | fc21ebbecdfac80a7924c4ecd087ec6754fa7345 (diff) |
[trunk] - language - add key - feature:2428
git-svn-id: http://piwigo.org/svn/trunk@12131 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/picture_metadata.inc.php | 4 | ||||
-rw-r--r-- | language/en_UK/common.lang.php | 3 | ||||
-rw-r--r-- | language/fr_FR/common.lang.php | 4 |
3 files changed, 9 insertions, 2 deletions
diff --git a/include/picture_metadata.inc.php b/include/picture_metadata.inc.php index 3646f5ba8..59683ff01 100644 --- a/include/picture_metadata.inc.php +++ b/include/picture_metadata.inc.php @@ -57,7 +57,7 @@ if (($conf['show_exif']) and (function_exists('read_exif_data'))) if (count($exif) > 0) { $tpl_meta = array( - 'TITLE' => 'EXIF Metadata', + 'TITLE' => l10n('EXIF Metadata'), 'lines' => array(), ); @@ -104,7 +104,7 @@ if ($conf['show_iptc']) if (count($iptc) > 0) { $tpl_meta = array( - 'TITLE' => 'IPTC Metadata', + 'TITLE' => l10n('IPTC Metadata'), 'lines' => array(), ); diff --git a/language/en_UK/common.lang.php b/language/en_UK/common.lang.php index 98dd0f7ac..df40015c3 100644 --- a/language/en_UK/common.lang.php +++ b/language/en_UK/common.lang.php @@ -371,4 +371,7 @@ $lang['Username or email'] = 'Username or email'; $lang['Change my password'] = 'Change my password'; $lang['Enter your new password below.'] = 'Enter your new password below.'; $lang['Reset Password'] = 'Reset Password'; +$lang['EXIF Metadata'] = 'EXIF Metadata'; +$lang['IPTC Metadata'] = 'IPTC Metadata'; + ?>
\ No newline at end of file diff --git a/language/fr_FR/common.lang.php b/language/fr_FR/common.lang.php index c90bfd638..e49fe9405 100644 --- a/language/fr_FR/common.lang.php +++ b/language/fr_FR/common.lang.php @@ -370,4 +370,8 @@ $lang['Enter your new password below.'] = 'Entrez votre nouveau mot de passe ci- $lang['Author'] = 'Auteur'; $lang['%d rates'] = '%d notes'; $lang['Rating score'] = 'Score'; +$lang['Reset Password'] = 'Réinitialiser le mot de passe'; +$lang['EXIF Metadata'] = 'Données EXIF'; +$lang['IPTC Metadata'] = 'Données IPTC'; + ?>
\ No newline at end of file |