aboutsummaryrefslogtreecommitdiffstats
path: root/admin/tags.php
diff options
context:
space:
mode:
authornikrou <nikrou@piwigo.org>2010-03-03 11:18:21 +0000
committernikrou <nikrou@piwigo.org>2010-03-03 11:18:21 +0000
commit11751ccd2c0b90f24820e409d905d2f0def9525d (patch)
treefce1af8137b5cd0c7a1150f87de0db462ed1218a /admin/tags.php
parentf0a6aeedfafb2e67464a11bcd34db0975d191cc7 (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 'admin/tags.php')
-rw-r--r--admin/tags.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/admin/tags.php b/admin/tags.php
index 57781b71a..24368bcfb 100644
--- a/admin/tags.php
+++ b/admin/tags.php
@@ -67,7 +67,7 @@ SELECT id, name
array_push(
$page['errors'],
sprintf(
- l10n('Tag \"%s\" already exists'),
+ l10n('Tag "%s" already exists'),
$tag_name
)
);
@@ -125,7 +125,7 @@ DELETE
array_push(
$page['infos'],
l10n_dec(
- 'The %d following tag were deleted',
+ 'The following tag was deleted',
'The %d following tags were deleted',
count($tag_names)).' : '.
implode(', ', $tag_names)
@@ -164,7 +164,7 @@ SELECT id
array_push(
$page['infos'],
sprintf(
- l10n('Tag \"%s\" was added'),
+ l10n('Tag "%s" was added'),
stripslashes($tag_name)
)
);
@@ -174,7 +174,7 @@ SELECT id
array_push(
$page['errors'],
sprintf(
- l10n('Tag \"%s\" already exists'),
+ l10n('Tag "%s" already exists'),
stripslashes($tag_name)
)
);