Feature 1451 : fix mispelling and missing translations

git-svn-id: http://piwigo.org/svn/trunk@5036 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
nikrou
2010-03-03 11:18:21 +00:00
parent f0a6aeedfa
commit 11751ccd2c
36 changed files with 921 additions and 269 deletions
+4 -4
View File
@@ -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)
);
}