Update L10n

This commit is contained in:
Siebrand Mazeland 2010-09-18 10:30:45 +02:00
parent ca3d803f1d
commit 14fa758983

View File

@ -123,7 +123,7 @@ class NoticeTitlePlugin extends Plugin
'author' => 'Evan Prodromou', 'author' => 'Evan Prodromou',
'homepage' => $url, 'homepage' => $url,
'rawdescription' => 'rawdescription' =>
_m('Adds optional titles to notices')); _m('Adds optional titles to notices.'));
return true; return true;
} }
@ -164,7 +164,7 @@ class NoticeTitlePlugin extends Plugin
$title = $action->trimmed('notice_title'); $title = $action->trimmed('notice_title');
if (!empty($title)) { if (!empty($title)) {
if (mb_strlen($title) > Notice_title::MAXCHARS) { if (mb_strlen($title) > Notice_title::MAXCHARS) {
throw new Exception(sprintf(_m("Notice title too long (max %d)", throw new Exception(sprintf(_m("The notice title is too long (max %d characters).",
Notice_title::MAXCHARS))); Notice_title::MAXCHARS)));
} }
} }
@ -296,7 +296,7 @@ class NoticeTitlePlugin extends Plugin
if (!empty($title)) { if (!empty($title)) {
$action->element('title', null, $action->element('title', null,
// TRANS: Page title. %1$s is the title, %2$s is the site name. // TRANS: Page title. %1$s is the title, %2$s is the site name.
sprintf(_("%1\$s - %2\$s"), sprintf(_m("%1\$s - %2\$s"),
$title, $title,
common_config('site', 'name'))); common_config('site', 'name')));
} }
@ -328,4 +328,3 @@ class NoticeTitlePlugin extends Plugin
return true; return true;
} }
} }