summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--actions/showmessage.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/showmessage.php b/actions/showmessage.php
index c57c96aef..184060aa9 100644
--- a/actions/showmessage.php
+++ b/actions/showmessage.php
@@ -63,12 +63,12 @@ class ShowmessageAction extends MailboxAction {
if ($user->id == $message->from_profile) {
$to = $message->getTo();
- $title = sprintf(_('Message to %1\$s on %2\$s'),
+ $title = sprintf(_("Message to %1\$s on %2\$s"),
$to->nickname,
common_exact_date($message->created));
} else if ($user->id == $message->to_profile) {
$from = $message->getFrom();
- $title = sprintf(_('Message from %1\$s on %2\$s'),
+ $title = sprintf(_("Message from %1\$s on %2\$s"),
$from->nickname,
common_exact_date($message->created));
}