]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Document 404 "Page not found" server error for translators.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Tue, 2 Mar 2010 16:30:22 +0000 (17:30 +0100)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Tue, 2 Mar 2010 16:30:22 +0000 (17:30 +0100)
actions/all.php
actions/public.php
actions/replies.php
actions/showfavorites.php
actions/tag.php

index 3eb1852147f4b8467f27fd2f41b6dbd850101a90..72ba28b4e09e59ec5ce96c33e23f84ee02373a22 100644 (file)
@@ -60,6 +60,7 @@ class AllAction extends ProfileAction
         }
 
         if ($this->page > 1 && $this->notice->N == 0) {
+            // TRANS: Server error when page not found (404)
             $this->serverError(_('No such page'), $code = 404);
         }
 
index 50278bfcedab55a80c9fe2c2ed359ad79399e727..0b3b5fde846fd23b2cbb4aedcce78e25f71363a8 100644 (file)
@@ -94,6 +94,7 @@ class PublicAction extends Action
         }
 
         if($this->page > 1 && $this->notice->N == 0){
+            // TRANS: Server error when page not found (404)
             $this->serverError(_('No such page'),$code=404);
         }
 
index 164c328db3cd6e0f4749f11543254899f79e4acb..4ff1b7a8d20e7e8549d095ba838cfe82760b4760 100644 (file)
@@ -89,6 +89,7 @@ class RepliesAction extends OwnerDesignAction
              NOTICES_PER_PAGE + 1);
 
         if($this->page > 1 && $this->notice->N == 0){
+            // TRANS: Server error when page not found (404)
             $this->serverError(_('No such page'),$code=404);
         }
 
index f2d0822936bc562c9014b4b531ec2eb3d2fdaf17..5b85de6835d704c610a0dfc0e20b24f606569da7 100644 (file)
@@ -134,6 +134,7 @@ class ShowfavoritesAction extends OwnerDesignAction
         }
 
         if($this->page > 1 && $this->notice->N == 0){
+            // TRANS: Server error when page not found (404)
             $this->serverError(_('No such page'),$code=404);
         }
 
index e91df6ea97525752b1ea7e945b5e75d64ce95ddb..ee9617b662cd1d4185a00c2c6f142e511ff94042 100644 (file)
@@ -48,6 +48,7 @@ class TagAction extends Action
         $this->notice = Notice_tag::getStream($this->tag, (($this->page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
 
         if($this->page > 1 && $this->notice->N == 0){
+            // TRANS: Server error when page not found (404)
             $this->serverError(_('No such page'),$code=404);
         }