diff options
author | nikrou <nikrou@piwigo.org> | 2010-03-03 11:18:21 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-03-03 11:18:21 +0000 |
commit | 11751ccd2c0b90f24820e409d905d2f0def9525d (patch) | |
tree | fce1af8137b5cd0c7a1150f87de0db462ed1218a /admin/group_list.php | |
parent | f0a6aeedfafb2e67464a11bcd34db0975d191cc7 (diff) |
Feature 1451 : fix mispelling and missing translations
git-svn-id: http://piwigo.org/svn/trunk@5036 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/group_list.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/admin/group_list.php b/admin/group_list.php index 3ecfa6b0d..416d78bb9 100644 --- a/admin/group_list.php +++ b/admin/group_list.php @@ -72,7 +72,7 @@ DELETE array_push( $page['infos'], - sprintf(l10n('group \"%s\" deleted'), $groupname) + sprintf(l10n('group "%s" deleted'), $groupname) ); } @@ -84,7 +84,7 @@ if (isset($_POST['submit_add']) and !is_adviser()) { if (empty($_POST['groupname'])) { - array_push($page['errors'], l10n('The name of a group must not contain \" or \' or be empty.')); + array_push($page['errors'], l10n('The name of a group must not contain " or \' or be empty.')); } if (count($page['errors']) == 0) { @@ -113,7 +113,7 @@ INSERT INTO '.GROUPS_TABLE.' array_push( $page['infos'], - sprintf(l10n('group \"%s\" added'), $_POST['groupname']) + sprintf(l10n('group "%s" added'), $_POST['groupname']) ); } } @@ -141,7 +141,7 @@ UPDATE '.GROUPS_TABLE.' array_push( $page['infos'], - sprintf(l10n('group \"%s\" updated'), $groupname) + sprintf(l10n('group "%s" updated'), $groupname) ); } |