]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Update translator documentation.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Thu, 21 Apr 2011 18:26:58 +0000 (20:26 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Thu, 21 Apr 2011 18:26:58 +0000 (20:26 +0200)
i18n fixes.
Whitespace updates.

lib/microappplugin.php
lib/noticelistitemadapter.php
plugins/Event/EventPlugin.php
plugins/Event/eventlistitem.php
plugins/Event/newrsvp.php
plugins/Event/rsvplistitem.php

index bd8558a35f9d248b21a06a7d0ca38b975aea63d4..1dfb90036e7c451c6f93ea4821ed58ba3daaa57c 100644 (file)
@@ -390,7 +390,7 @@ abstract class MicroAppPlugin extends Plugin
                 $uri = $target->getUri();
                 if (!in_array($uri, $activity->context->attention)) {
                     // @todo FIXME: please document (i18n).
-                    // TRANS: Client exception.
+                    // TRANS: Client exception thrown when ...
                     throw new ClientException(_('Bookmark not posted to this group.'));
                 }
             } else if ($target instanceof User) {
@@ -404,7 +404,7 @@ abstract class MicroAppPlugin extends Plugin
                     (empty($original) ||
                      $original->profile_id != $target->id)) {
                     // @todo FIXME: Please document (i18n).
-                    // TRANS: Client exception.
+                    // TRANS: Client exception when ...
                     throw new ClientException(_('Object not posted to this user.'));
                 }
             } else {
@@ -550,6 +550,7 @@ abstract class MicroAppPlugin extends Plugin
 
     function showNotice($notice, $out)
     {
-        throw new ServerException("You must implement either adaptNoticeListItem() or showNotice()");
+        // TRANS: Server exception thrown when a micro app plugin developer has not done his job too well.
+        throw new ServerException(_('You must implement either adaptNoticeListItem() or showNotice().'));
     }
 }
index 48530a9c1a85b5def2d8a0dafab6e143be1fb2d3..fc230e8e3f612bbd91adddb6d256ef6813c1779d 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (C) 2011, StatusNet, Inc.
  *
  * For use by microapps to customize notice list item output
- * 
+ *
  * PHP version 5
  *
  * This program is free software: you can redistribute it and/or modify
@@ -44,7 +44,6 @@ if (!defined('STATUSNET')) {
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
  * @link      http://status.net/
  */
-
 class NoticeListItemAdapter
 {
     protected $nli;
@@ -54,7 +53,6 @@ class NoticeListItemAdapter
      *
      * @param NoticeListItem $nli item to wrap
      */
-
     function __construct($nli)
     {
         $this->nli = $nli;
index a9644e7a2ccc12b00ab36569625fbf80226387d3..dd7ce7a849a414334a250aadc15e6f8f63bcc427 100644 (file)
@@ -165,7 +165,8 @@ class EventPlugin extends MicroappPlugin
     function saveNoticeFromActivity($activity, $actor, $options=array())
     {
         if (count($activity->objects) != 1) {
-            throw new Exception(_('Too many activity objects.'));
+            // TRANS: Exception thrown when there are too many activity objects.
+            throw new Exception(_m('Too many activity objects.'));
         }
 
         $happeningObj = $activity->objects[0];
index fa44223772dd6e259d95633152ed9102a7807839..9bf34e765b34724591c2934564a8d11e0174406e 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (C) 2011, StatusNet, Inc.
  *
  * Notice-list representation of an event
- * 
+ *
  * PHP version 5
  *
  * This program is free software: you can redistribute it and/or modify
@@ -44,7 +44,6 @@ if (!defined('STATUSNET')) {
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
  * @link      http://status.net/
  */
-
 class EventListItem extends NoticeListItemAdapter
 {
     function showNotice()
@@ -64,7 +63,8 @@ class EventListItem extends NoticeListItemAdapter
         $event   = Happening::fromNotice($notice);
 
         if (empty($event)) {
-            $out->element('p', null, _('Deleted.'));
+            // TRANS: Content for a deleted RSVP list item (RSVP stands for "please respond").
+            $out->element('p', null, _m('Deleted.'));
             return;
         }
 
@@ -135,7 +135,7 @@ class EventListItem extends NoticeListItemAdapter
         $out->element('strong', null, _m('Attending:'));
         $out->element('span', 'event-rsvps',
                       // TRANS: RSVP counts.
-                     // TRANS: %1$d, %2$d and %3$d are numbers of RSVPs.
+                      // TRANS: %1$d, %2$d and %3$d are numbers of RSVPs.
                       sprintf(_m('Yes: %1$d No: %2$d Maybe: %3$d'),
                               count($rsvps[RSVP::POSITIVE]),
                               count($rsvps[RSVP::NEGATIVE]),
index b000767340b57dd793ebb6d507d46f356e7e9014..e9adf405d85841bbb5f50899ddef05eba2a092de 100644 (file)
@@ -109,8 +109,8 @@ class NewrsvpAction extends Action
             $this->verb = RSVP::POSSIBLE;
             break;
         default:
-            // TRANS: Client exception thrown when using an invalud value for RSVP ("please respond").
-            throw new ClientException(_('Unknown submit value.'));
+            // TRANS: Client exception thrown when using an invalid value for RSVP ("please respond").
+            throw new ClientException(_m('Unknown submit value.'));
         }
 
         return true;
index 7423c1c7cb26c22681b1ca4cc1780e7647e70e51..fef1c9debb3c94f2895efb1b34f5b22e9948091d 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (C) 2011, StatusNet, Inc.
  *
  * Title of module
- * 
+ *
  * PHP version 5
  *
  * This program is free software: you can redistribute it and/or modify
@@ -44,7 +44,6 @@ if (!defined('STATUSNET')) {
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
  * @link      http://status.net/
  */
-
 class RSVPListItem extends NoticeListItemAdapter
 {
     function showNotice()
@@ -63,7 +62,8 @@ class RSVPListItem extends NoticeListItemAdapter
         $rsvp = RSVP::fromNotice($notice);
 
         if (empty($rsvp)) {
-            $out->element('p', null, _('Deleted.'));
+            // TRANS: Content for a deleted RSVP list item (RSVP stands for "please respond").
+            $out->element('p', null, _m('Deleted.'));
             return;
         }