* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class ShownoticeAction extends OwnerDesignAction
{
/**
* Notice object to show
*/
-
var $notice = null;
/**
* Profile of the notice object
*/
-
var $profile = null;
/**
* Avatar of the profile of the notice object
*/
-
var $avatar = null;
/**
*
* @return success flag
*/
-
function prepare($args)
{
parent::prepare($args);
// Did we used to have it, and it got deleted?
$deleted = Deleted_notice::staticGet($id);
if (!empty($deleted)) {
+ // TRANS: Client error displayed trying to show a deleted notice.
$this->clientError(_('Notice deleted.'), 410);
} else {
+ // TRANS: Client error displayed trying to show a non-existing notice.
$this->clientError(_('No such notice.'), 404);
}
return false;
$this->profile = $this->notice->getProfile();
if (empty($this->profile)) {
+ // TRANS: Server error displayed trying to show a notice without a connected profile.
$this->serverError(_('Notice has no profile.'), 500);
return false;
}
*
* @return boolean true
*/
-
function isReadOnly($args)
{
return true;
*
* @return int last-modified date as unix timestamp
*/
-
function lastModified()
{
return max(strtotime($this->notice->modified),
*
* @return string etag
*/
-
function etag()
{
$avtime = ($this->avatar) ?
*
* @return string title of the page
*/
-
function title()
{
$base = $this->profile->getFancyName();
+ // TRANS: Title of the page that shows a notice.
+ // TRANS: %1$s is a user name, %2$s is the notice creation date/time.
return sprintf(_('%1$s\'s status on %2$s'),
$base,
common_exact_date($this->notice->created));
*
* @return void
*/
-
function handle($args)
{
parent::handle($args);
*
* @return void
*/
-
function showLocalNavBlock()
{
}
*
* @return void
*/
-
function showContent()
{
$this->elementStart('ol', array('class' => 'notices xoxo'));
$this->xw->startDocument('1.0', 'UTF-8');
$this->elementStart('html');
$this->elementStart('head');
- $this->element('title', null, _('Notice'));
+ // TRANS: Title for page that shows a notice.
+ $this->element('title', null, _m('TITLE','Notice'));
$this->elementEnd('head');
$this->elementStart('body');
$nli = new NoticeListItem($this->notice, $this);
*
* @return void
*/
-
function showPageNoticeBlock()
{
}
*
* @return void
*/
-
function showAside() {
}
*
* @return void
*/
-
function extraHead()
{
$user = User::staticGet($this->profile->id);
}
}
+// @todo FIXME: Class documentation missing.
class SingleNoticeItem extends DoFollowListItem
{
/**
- * recipe function for displaying a single notice.
+ * Recipe function for displaying a single notice.
*
* We overload to show attachments.
*
* @return void
*/
-
function show()
{
$this->showStart();
*
* @return void
*/
-
function showAvatar()
{
$avatar_size = AVATAR_PROFILE_SIZE;
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class SiteadminpanelAction extends AdminPanelAction
{
/**
*
* @return string page title
*/
-
function title()
{
- return _('Site');
+ // TRANS: Title for site administration panel.
+ return _m('TITLE','Site');
}
/**
*
* @return string instructions
*/
-
function getInstructions()
{
+ // TRANS: Instructions for site administration panel.
return _('Basic settings for this StatusNet site');
}
*
* @return void
*/
-
function showForm()
{
$form = new SiteAdminPanelForm($this);
*
* @return void
*/
-
function saveSettings()
{
static $settings = array(
// Validate site name
if (empty($values['site']['name'])) {
+ // TRANS: Client error displayed trying to save an empty site name.
$this->clientError(_('Site name must have non-zero length.'));
}
$values['site']['email'] = common_canonical_email($values['site']['email']);
if (empty($values['site']['email'])) {
+ // TRANS: Client error displayed trying to save site settings without a contact address.
$this->clientError(_('You must have a valid contact email address.'));
}
if (!Validate::email($values['site']['email'], common_config('email', 'check_domain'))) {
+ // TRANS: Client error displayed trying to save site settings without a valid contact address.
$this->clientError(_('Not a valid email address.'));
}
if (is_null($values['site']['timezone']) ||
!in_array($values['site']['timezone'], DateTimeZone::listIdentifiers())) {
+ // TRANS: Client error displayed trying to save site settings without a timezone.
$this->clientError(_('Timezone not selected.'));
return;
}
if (!is_null($values['site']['language']) &&
!in_array($values['site']['language'], array_keys(get_nice_language_list()))) {
+ // TRANS: Client error displayed trying to save site settings with an invalid language code.
+ // TRANS: %s is the invalid language code.
$this->clientError(sprintf(_('Unknown language "%s".'), $values['site']['language']));
}
// Validate text limit
if (!Validate::number($values['site']['textlimit'], array('min' => 0))) {
- $this->clientError(_("Minimum text limit is 0 (unlimited)."));
+ // TRANS: Client error displayed trying to save site settings with a text limit below 0.
+ $this->clientError(_('Minimum text limit is 0 (unlimited).'));
}
// Validate dupe limit
if (!Validate::number($values['site']['dupelimit'], array('min' => 1))) {
+ // TRANS: Client error displayed trying to save site settings with a text limit below 1.
$this->clientError(_("Dupe limit must be one or more seconds."));
}
-
}
}
+// @todo FIXME: Class documentation missing.
class SiteAdminPanelForm extends AdminForm
{
/**
*
* @return int ID of the form
*/
-
function id()
{
return 'form_site_admin_panel';
*
* @return string class of the form
*/
-
function formClass()
{
return 'form_settings';
*
* @return string URL of the action
*/
-
function action()
{
return common_local_url('siteadminpanel');
*
* @return void
*/
-
function formData()
{
$this->out->elementStart('fieldset', array('id' => 'settings_admin_general'));
- $this->out->element('legend', null, _('General'));
+ // TRANS: Fieldset legend on site settings panel.
+ $this->out->element('legend', null, _m('LEGEND','General'));
$this->out->elementStart('ul', 'form_data');
$this->li();
- $this->input('name', _('Site name'),
- _('The name of your site, like "Yourcompany Microblog"'));
+ // TRANS: Field label on site settings panel.
+ $this->input('name', _m('LABEL','Site name'),
+ // TRANS: Field title on site settings panel.
+ _('The name of your site, like "Yourcompany Microblog".'));
$this->unli();
$this->li();
+ // TRANS: Field label on site settings panel.
$this->input('broughtby', _('Brought by'),
- _('Text used for credits link in footer of each page'));
+ // TRANS: Field title on site settings panel.
+ _('Text used for credits link in footer of each page.'));
$this->unli();
$this->li();
+ // TRANS: Field label on site settings panel.
$this->input('broughtbyurl', _('Brought by URL'),
- _('URL used for credits link in footer of each page'));
+ // TRANS: Field title on site settings panel.
+ _('URL used for credits link in footer of each page.'));
$this->unli();
$this->li();
+ // TRANS: Field label on site settings panel.
$this->input('email', _('Email'),
- _('Contact email address for your site'));
+ // TRANS: Field title on site settings panel.
+ _('Contact email address for your site.'));
$this->unli();
$this->out->elementEnd('ul');
$this->out->elementEnd('fieldset');
$this->out->elementStart('fieldset', array('id' => 'settings_admin_local'));
- $this->out->element('legend', null, _('Local'));
+ // TRANS: Fieldset legend on site settings panel.
+ $this->out->element('legend', null, _m('LEGEND','Local'));
$this->out->elementStart('ul', 'form_data');
$timezones = array();
asort($timezones);
$this->li();
+ // TRANS: Dropdown label on site settings panel.
$this->out->dropdown('timezone', _('Default timezone'),
+ // TRANS: Dropdown title on site settings panel.
$timezones, _('Default timezone for the site; usually UTC.'),
true, $this->value('timezone'));
$this->unli();
$this->li();
- $this->out->dropdown('language', _('Default language'),
- get_nice_language_list(), _('Site language when autodetection from browser settings is not available'),
+ $this->out->dropdown('language',
+ // TRANS: Dropdown label on site settings panel.
+ _('Default language'),
+ get_nice_language_list(),
+ // TRANS: Dropdown title on site settings panel.
+ _('Site language when autodetection from browser settings is not available'),
false, $this->value('language'));
$this->unli();
$this->out->elementEnd('fieldset');
$this->out->elementStart('fieldset', array('id' => 'settings_admin_limits'));
- $this->out->element('legend', null, _('Limits'));
+ // TRANS: Fieldset legend on site settings panel.
+ $this->out->element('legend', null, _m('LEGEND','Limits'));
$this->out->elementStart('ul', 'form_data');
$this->li();
- $this->input('textlimit', _('Text limit'), _('Maximum number of characters for notices.'));
+ $this->input('textlimit',
+ // TRANS: Field label on site settings panel.
+ _('Text limit'),
+ // TRANS: Field title on site settings panel.
+ _('Maximum number of characters for notices.'));
$this->unli();
$this->li();
- $this->input('dupelimit', _('Dupe limit'), _('How long users must wait (in seconds) to post the same thing again.'));
+ $this->input('dupelimit',
+ // TRANS: Field label on site settings panel.
+ _('Dupe limit'),
+ // TRANS: Field title on site settings panel.
+ _('How long users must wait (in seconds) to post the same thing again.'));
$this->unli();
$this->out->elementEnd('ul');
$this->out->elementEnd('fieldset');
*
* @return void
*/
-
function formActions()
{
- $this->out->submit('submit', _('Save'), 'submit', null, _('Save site settings'));
+ $this->out->submit('submit',
+ // TRANS: Button text for saving site settings.
+ _m('BUTTON','Save'),
+ 'submit',
+ null,
+ // TRANS: Button title for saving site settings.
+ _('Save site settings'));
}
}