]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Change 'listening to your notices' to 'following you'
authorEvan Prodromou <evan@status.net>
Tue, 31 May 2011 21:00:23 +0000 (17:00 -0400)
committerEvan Prodromou <evan@status.net>
Tue, 31 May 2011 21:00:23 +0000 (17:00 -0400)
lib/mail.php

index eaef2285b59d6bdb5fd52e2c7b63d9bbbd825eb1..6c6450ab50b49001015cb22bae83754731bac4a4 100644 (file)
@@ -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) .