forked from GNUsocial/gnu-social
Add translator documentation.
This commit is contained in:
parent
9f9f940833
commit
a4e807ea46
@ -23,9 +23,9 @@ if (!defined('STATUSNET')) {
|
|||||||
|
|
||||||
class ProfileDetailSettingsAction extends ProfileSettingsAction
|
class ProfileDetailSettingsAction extends ProfileSettingsAction
|
||||||
{
|
{
|
||||||
|
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
|
// TRANS: Title for extended profile settings.
|
||||||
return _m('Extended profile settings');
|
return _m('Extended profile settings');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -59,8 +59,8 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||||||
$token = $this->trimmed('token');
|
$token = $this->trimmed('token');
|
||||||
if (!$token || $token != common_session_token()) {
|
if (!$token || $token != common_session_token()) {
|
||||||
$this->showForm(
|
$this->showForm(
|
||||||
_m(
|
// TRANS: Client error displayed when the session token does not match or is not given.
|
||||||
'There was a problem with your session token. '
|
_m('There was a problem with your session token. '
|
||||||
. 'Try again, please.'
|
. 'Try again, please.'
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
@ -133,6 +133,7 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TRANS: Success message after saving extended profile details.
|
||||||
$this->showForm(_m('Details saved.'), true);
|
$this->showForm(_m('Details saved.'), true);
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -520,6 +521,7 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||||||
$result = $detail->insert();
|
$result = $detail->insert();
|
||||||
if (empty($result)) {
|
if (empty($result)) {
|
||||||
common_log_db_error($detail, 'INSERT', __FILE__);
|
common_log_db_error($detail, 'INSERT', __FILE__);
|
||||||
|
// TRANS: Server error displayed when a field could not be saved in the database.
|
||||||
$this->serverError(_m('Could not save profile details.'));
|
$this->serverError(_m('Could not save profile details.'));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -532,6 +534,7 @@ class ProfileDetailSettingsAction extends ProfileSettingsAction
|
|||||||
$result = $detail->update($orig);
|
$result = $detail->update($orig);
|
||||||
if (empty($result)) {
|
if (empty($result)) {
|
||||||
common_log_db_error($detail, 'UPDATE', __FILE__);
|
common_log_db_error($detail, 'UPDATE', __FILE__);
|
||||||
|
// TRANS: Server error displayed when a field could not be saved in the database.
|
||||||
$this->serverError(_m('Could not save profile details.'));
|
$this->serverError(_m('Could not save profile details.'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user