diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-04-11 01:08:51 +0200 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-04-11 01:08:51 +0200 |
commit | af06c554a0d8c4eeab801a9550d951845d40350a (patch) | |
tree | ad22103cc05d0d9041ea63ca6c73cbe406cd6d84 | |
parent | 19b86da4264a49bccee392f3cc108eb118a424dc (diff) |
* DB -> Database in message
* some translator documentation added
-rw-r--r-- | classes/Notice.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 998e9c92b..dccc3685a 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -172,7 +172,8 @@ class Notice extends Memcached_DataObject $id = $tag->insert(); if (!$id) { - throw new ServerException(sprintf(_('DB error inserting hashtag: %s'), + // TRANS: Server exception. %s are the error details. + throw new ServerException(sprintf(_('Database error inserting hashtag: %s'), $last_error->message)); return; } @@ -1507,6 +1508,8 @@ class Notice extends Memcached_DataObject { $author = Profile::staticGet('id', $this->profile_id); + // TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. + // TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. $content = sprintf(_('RT @%1$s %2$s'), $author->nickname, $this->content); |