]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Event/newrsvp.php
Merge commit 'merge-requests/192' into statusnet_1.1.x
[quix0rs-gnu-social.git] / plugins / Event / newrsvp.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.'));
         }