* DB -> Database in message
* some translator documentation added
This commit is contained in:
parent
19b86da426
commit
af06c554a0
|
@ -172,7 +172,8 @@ class Notice extends Memcached_DataObject
|
||||||
$id = $tag->insert();
|
$id = $tag->insert();
|
||||||
|
|
||||||
if (!$id) {
|
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));
|
$last_error->message));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1507,6 +1508,8 @@ class Notice extends Memcached_DataObject
|
||||||
{
|
{
|
||||||
$author = Profile::staticGet('id', $this->profile_id);
|
$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'),
|
$content = sprintf(_('RT @%1$s %2$s'),
|
||||||
$author->nickname,
|
$author->nickname,
|
||||||
$this->content);
|
$this->content);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user