]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Update/add translator documentation.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 19 Aug 2011 14:46:28 +0000 (16:46 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 19 Aug 2011 14:46:28 +0000 (16:46 +0200)
Fix i18n domain where needed.
Whitespace updates.

plugins/Event/newrsvp.php
plugins/Event/timelist.php

index e9adf405d85841bbb5f50899ddef05eba2a092de..8052b972a4b365eca3dc22d7c69e52d80edbeddd 100644 (file)
@@ -78,14 +78,14 @@ class NewrsvpAction extends Action
         $eventId = $this->trimmed('event');
 
         if (empty($eventId)) {
-            // TRANS: Client exception thrown when requesting a non-exsting event.
+            // TRANS: Client exception thrown when referring to a non-existing event.
             throw new ClientException(_m('No such event.'));
         }
 
         $this->event = Happening::staticGet('id', $eventId);
 
         if (empty($this->event)) {
-            // TRANS: Client exception thrown when requesting a non-exsting event.
+            // TRANS: Client exception thrown when referring to a non-existing event.
             throw new ClientException(_m('No such event.'));
         }
 
index a6e0174180cb993f90a7a9d144724ea4d7bd46de..cb8efb3c1db1985a813a77a16a3e2580cb917ac2 100644 (file)
@@ -32,7 +32,6 @@ if (!defined('STATUSNET')) {
  * Callback handler to populate end time dropdown
  */
 class TimelistAction extends Action {
-
     private $start;
     private $duration;
 
@@ -63,13 +62,14 @@ class TimelistAction extends Action {
 
         if (!common_logged_in()) {
             // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
-            $this->clientError(_('Not logged in.'));
+            $this->clientError(_m('Not logged in.'));
             return;
         }
 
         if (!empty($this->start)) {
             $times = EventTimeList::getTimes($this->start, $this->duration);
         } else {
+            // TRANS: Client error when submitting a form with unexpected information.
             $this->clientError(_m('Unexpected form submission.'));
             return;
         }
@@ -78,6 +78,7 @@ class TimelistAction extends Action {
             header('Content-Type: application/json; charset=utf-8');
             print json_encode($times);
         } else {
+            // TRANS: Client error displayed when using an action in a non-AJAX way.
             $this->clientError(_m('This action is AJAX only.'));
         }
     }