From 823737891bf311f30a50e610f5a4659478e7d13d Mon Sep 17 00:00:00 2001
From: Evan Prodromou <evan@controlyourself.ca>
Date: Wed, 17 Sep 2008 15:07:45 -0400
Subject: [PATCH] fix titles in showmessage

darcs-hash:20080917190745-5ed1f-c9305b7ee5f4cd79524491e8e0d676cf42f6ebc1.gz
---
 actions/showmessage.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/actions/showmessage.php b/actions/showmessage.php
index c57c96aefd..184060aa91 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));
 		}
-- 
2.39.5