summaryrefslogtreecommitdiff
path: root/classes/Subscription.php
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2010-09-28 23:42:18 +0200
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2010-09-28 23:42:18 +0200
commit9587f9f55b55d2819f9ba57f7befd165ab842fa6 (patch)
tree1a8986578755dfb51ff6b04bdc7c007917e29fe5 /classes/Subscription.php
parentb03ece26eb1589c5200094f4d87455ca46db780b (diff)
* i18n/L10n and translator documentation updates.
* whitespace and indentation updates
Diffstat (limited to 'classes/Subscription.php')
-rw-r--r--classes/Subscription.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/classes/Subscription.php b/classes/Subscription.php
index 1287499fa..b4dbd84c9 100644
--- a/classes/Subscription.php
+++ b/classes/Subscription.php
@@ -251,8 +251,11 @@ class Subscription extends Memcached_DataObject
common_date_iso8601($this->created));
$act->time = strtotime($this->created);
+ // TRANS: Activity tile when subscribing to another person.
$act->title = _("Follow");
- $act->content = sprintf(_("%s is now following %s."),
+ // TRANS: Notification given when one person starts following another.
+ // TRANS: %1$s is the subscriber, %2$s is the subscribed.
+ $act->content = sprintf(_("%1$s is now following %2$s."),
$subscriber->getBestName(),
$subscribed->getBestName());