Translate a few more strings.
darcs-hash:20080708100519-533db-b326ea0bb16ea6c8244cfd00a0dd639d0553dd21.gz
This commit is contained in:
parent
0f502b8d86
commit
4d65b99c68
|
@ -191,11 +191,8 @@ class ImsettingsAction extends SettingsAction {
|
|||
$jabber);
|
||||
}
|
||||
|
||||
# XXX: I18N
|
||||
|
||||
$msg = 'A confirmation code was sent to the IM address you added. ' .
|
||||
' You must approve ' . jabber_daemon_address() .
|
||||
' for sending messages to you.';
|
||||
$msg = sprintf(_('A confirmation code was sent to the IM address you added. ' .
|
||||
'You must approve %s for sending messages to you.'), jabber_daemon_address());
|
||||
|
||||
$this->show_form($msg, TRUE);
|
||||
}
|
||||
|
|
|
@ -77,7 +77,7 @@ class RepliesrssAction extends Rss10Action {
|
|||
'link' => common_local_url('replies',
|
||||
array('nickname' =>
|
||||
$user->nickname)),
|
||||
'description' => sprintf(_('Feed for replies to '), $user->nickname));
|
||||
'description' => sprintf(_('Feed for replies to %s'), $user->nickname));
|
||||
return $c;
|
||||
}
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ class ShownoticeAction extends StreamAction {
|
|||
|
||||
# Looks like we're good; show the header
|
||||
|
||||
common_show_header($profile->nickname."'s status on ".common_exact_date($notice->created),
|
||||
common_show_header(sprintf(_('%1$s\'s status on %2$s'), $profile->nickname, common_exact_date($notice->created)),
|
||||
NULL, $profile,
|
||||
array($this, 'show_top'));
|
||||
|
||||
|
@ -60,4 +60,8 @@ class ShownoticeAction extends StreamAction {
|
|||
common_notice_form();
|
||||
}
|
||||
}
|
||||
|
||||
function no_such_notice() {
|
||||
common_user_error('No such notice.');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -92,7 +92,7 @@ class ShowstreamAction extends StreamAction {
|
|||
}
|
||||
|
||||
function no_such_user() {
|
||||
common_user_error('No such user');
|
||||
common_user_error(_('No such user.'));
|
||||
}
|
||||
|
||||
function show_profile($profile) {
|
||||
|
|
|
@ -892,7 +892,7 @@ function common_save_replies($notice) {
|
|||
if (!$id) {
|
||||
$last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
|
||||
common_log(LOG_ERROR, 'DB error inserting reply: ' . $last_error->message);
|
||||
common_server_error('DB error inserting reply: ' . $last_error->message);
|
||||
common_server_error(_('DB error inserting reply: %s', $last_error->message));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user