]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Translation changes, use FancyName in email subject
authorMikael Nordfeldth <mmn@hethane.se>
Tue, 1 Mar 2016 22:53:36 +0000 (23:53 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Tue, 1 Mar 2016 22:53:36 +0000 (23:53 +0100)
classes/Profile.php
lib/mail.php

index 2bcd1858fec5629959d320226c2f7c3fcc73cc53..0e655faa63ee9c682c25782cca40cbfeec2bd96c 100644 (file)
@@ -238,7 +238,7 @@ class Profile extends Managed_DataObject
         }
 
         if (mb_strlen($this->getFullname()) > 0) {
-            // TRANS: Full name of a profile or group (%1$s) followed by some URI (%2$s) in parentheses.
+            // TRANS: The "fancy name": Full name of a profile or group (%1$s) followed by some URI (%2$s) in parentheses.
             return sprintf(_m('FANCYNAME','%1$s (%2$s)'), $this->getFullname(), $uri);
         } else {
             return $uri;
index 383e2670cf6d857407f84463ba49bfc7193bae1c..42a756ac5dc79b5f11ac0084dee1b05950df0e33 100644 (file)
@@ -712,8 +712,8 @@ function mail_notify_attn(Profile $rcpt, Notice $notice)
     }
 
     // TRANS: E-mail subject for notice notification.
-    // TRANS: %1$s is the sending user's long name, %2$s is the adding user's nickname.
-    $subject = sprintf(_('%1$s (@%2$s) sent a notice to your attention'), $sender->getBestName(), $sender->getNickname());
+    // TRANS: %1$s is the "fancy name" for a profile.
+    $subject = sprintf(_('%1$s sent a notice to your attention'), $sender->getFancyName());
 
         // TRANS: Body of @-reply notification e-mail.
         // TRANS: %1$s is the sending user's name, $2$s is the StatusNet sitename,