diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-04-10 22:50:15 +0200 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-04-10 22:50:15 +0200 |
commit | 9b788471d4d5141bf4991367f1f46f2a4e35da36 (patch) | |
tree | 7e08bbc99f9fda76a96fa94ea48ea3854ffec614 /lib/atomgroupnoticefeed.php | |
parent | 204cf0b96b677e907b259430a1628c35af682ebb (diff) |
Add translator documentation.
Diffstat (limited to 'lib/atomgroupnoticefeed.php')
-rw-r--r-- | lib/atomgroupnoticefeed.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/atomgroupnoticefeed.php b/lib/atomgroupnoticefeed.php index 08c28a48b..b4810d04a 100644 --- a/lib/atomgroupnoticefeed.php +++ b/lib/atomgroupnoticefeed.php @@ -58,12 +58,14 @@ class AtomGroupNoticeFeed extends AtomNoticeFeed parent::__construct($indent); $this->group = $group; + // TRANS: Title in atom group notice feed. %s is a group name. $title = sprintf(_("%s timeline"), $group->nickname); $this->setTitle($title); $sitename = common_config('site', 'name'); $subtitle = sprintf( - // TRANS: Message is used as a subtitle. %1$s is a user nickname, %2$s is a site name. + // TRANS: Message is used as a subtitle in atom group notice feed. + // TRANS: %1$s is a group name, %2$s is a site name. _('Updates from %1$s on %2$s!'), $group->nickname, $sitename |