summaryrefslogtreecommitdiff
path: root/actions/sandbox.php
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2010-04-10 00:58:57 +0200
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2010-04-10 00:58:57 +0200
commit3656a2cb13c0b6ba2326d6209739c1cd762ee2d2 (patch)
tree3e7e9860ca8860922a1ae428e1d484793b98b32e /actions/sandbox.php
parent47eed2c99906fefb1f43ad186da91e526d2741cf (diff)
Fix inconsistencies in clientError() messages
* use correct punctuation * single quotes when replace was possible * wording updated when needed
Diffstat (limited to 'actions/sandbox.php')
-rw-r--r--actions/sandbox.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/sandbox.php b/actions/sandbox.php
index 5b034ff07..d1ef4c86b 100644
--- a/actions/sandbox.php
+++ b/actions/sandbox.php
@@ -62,14 +62,14 @@ class SandboxAction extends ProfileFormAction
assert(!empty($cur)); // checked by parent
if (!$cur->hasRight(Right::SANDBOXUSER)) {
- $this->clientError(_("You cannot sandbox users on this site."));
+ $this->clientError(_('You cannot sandbox users on this site.'));
return false;
}
assert(!empty($this->profile)); // checked by parent
if ($this->profile->isSandboxed()) {
- $this->clientError(_("User is already sandboxed."));
+ $this->clientError(_('User is already sandboxed.'));
return false;
}