From 60a1b0a15acad9688777d751a002d4861ae07ae3 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 31 May 2011 17:00:23 -0400 Subject: [PATCH] Change 'listening to your notices' to 'following you' --- lib/mail.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/mail.php b/lib/mail.php index eaef2285b5..6c6450ab50 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -240,14 +240,13 @@ function mail_subscribe_notify_profile($listenee, $other) $headers['To'] = $name . ' <' . $listenee->email . '>'; // TRANS: Subject of new-subscriber notification e-mail. // TRANS: %1$s is the subscribing user's nickname, %2$s is the StatusNet sitename. - $headers['Subject'] = sprintf(_('%1$s is now listening to '. - 'your notices on %2$s.'), + $headers['Subject'] = sprintf(_('%1$s is now following you on %2$s.'), $other->getBestName(), common_config('site', 'name')); // TRANS: Main body of new-subscriber notification e-mail. // TRANS: %1$s is the subscriber's long name, %2$s is the StatusNet sitename. - $body = sprintf(_('%1$s is now listening to your notices on %2$s.'), + $body = sprintf(_('%1$s is now following you on %2$s.'), $long_name, common_config('site', 'name')) . mail_profile_block($other) . -- 2.39.5