diff options
author | nikrou <nikrou@piwigo.org> | 2010-03-20 22:35:39 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-03-20 22:35:39 +0000 |
commit | af78fa6193f7fec2bad09315aa1fb512d3c9a6fc (patch) | |
tree | ff597f8953de508e8e3ee948f4c66689e83fbf8c /admin/include/c13y_internal.class.php | |
parent | 251eeb05aba7ddb79afafd4143a5435fc368b0e7 (diff) |
Fix some language keys problems
Need translations !
git-svn-id: http://piwigo.org/svn/trunk@5207 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/include/c13y_internal.class.php')
-rw-r--r-- | admin/include/c13y_internal.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/include/c13y_internal.class.php b/admin/include/c13y_internal.class.php index 5b0d89ebc..373829e36 100644 --- a/admin/include/c13y_internal.class.php +++ b/admin/include/c13y_internal.class.php @@ -208,7 +208,7 @@ class c13y_internal create_user_infos($id); - $page['infos'][] = sprintf(l10n('User \"%s\" created with \"%s\" like password'), $name, $password); + $page['infos'][] = sprintf(l10n('User "%s" created with "%s" like password'), $name, $password); $result = true; } @@ -239,7 +239,7 @@ class c13y_internal array('primary' => array('user_id'),'update' => array('status')), $updates); - $page['infos'][] = sprintf(l10n('Status of user \"%s\" updated'), get_username($id)); + $page['infos'][] = sprintf(l10n('Status of user "%s" updated'), get_username($id)); $result = true; } |