mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-05 09:22:21 +02:00
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:
@@ -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)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user