aboutsummaryrefslogtreecommitdiffstats
path: root/admin/tags.php
diff options
context:
space:
mode:
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)
)
);