]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Update translator documentation.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Sun, 3 Apr 2011 21:47:46 +0000 (23:47 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Sun, 3 Apr 2011 21:47:46 +0000 (23:47 +0200)
31 files changed:
actions/avatarsettings.php
actions/cancelsubscription.php
actions/deleteapplication.php
actions/deletenotice.php
actions/editapplication.php
actions/emailsettings.php
actions/favor.php
actions/geocode.php
actions/groupblock.php
actions/groupunblock.php
actions/imsettings.php
actions/invite.php
actions/makeadmin.php
actions/newapplication.php
actions/newmessage.php
actions/newnotice.php
actions/nudge.php
actions/oauthconnectionssettings.php
actions/passwordsettings.php
actions/pluginenable.php
actions/register.php
actions/remotesubscribe.php
actions/repeat.php
actions/showapplication.php
actions/smssettings.php
actions/subedit.php
actions/tagother.php
actions/unsubscribe.php
actions/urlsettings.php
actions/userauthorization.php
lib/designsettings.php

index d9542a39c8f7813634f9c5c4e531aa4b0ddff538..7cc55e1e3fd4b7c567924a333a7e4cb7d13c0730 100644 (file)
@@ -277,6 +277,7 @@ class AvatarsettingsAction extends SettingsAction
 
         $token = $this->trimmed('token');
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->showForm(_('There was a problem with your session token. '.
                                'Try again, please.'));
             return;
index 0cd922ff70d5461ea0c4ae45d6204a70d63954e4..30726e0d0415ab3da4d6513d740f0184e38bb229 100644 (file)
@@ -71,6 +71,7 @@ class CancelsubscriptionAction extends Action
         $token = $this->trimmed('token');
 
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->clientError(_('There was a problem with your session token. ' .
                                  'Try again, please.'));
             return;
index 9f9ac18971f972ec945c4011779659e4133e9dc3..8c3b8e0ba7e8f9caf22de417beb8cdee77f4f9e4 100644 (file)
@@ -99,6 +99,7 @@ class DeleteapplicationAction extends Action
             // CSRF protection
             $token = $this->trimmed('token');
             if (!$token || $token != common_session_token()) {
+                // TRANS: Client error displayed when the session token does not match or is not given.
                 $this->clientError(_('There was a problem with your session token.'));
                 return;
             }
index c997bb756a9010c058a491af91afbcfaf8b509ac..9032de897416f272dc53bce51d568d7b147810c9 100644 (file)
@@ -174,6 +174,7 @@ class DeletenoticeAction extends Action
         $token = $this->trimmed('token');
 
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->showForm(_('There was a problem with your session token. ' .
                               'Try again, please.'));
             return;
index 4e67d9e57b05255ceb5ab6f908a0b13ddab9cc78..02fae3eb49f4828dfc0612370a38347ba6150277 100644 (file)
@@ -128,6 +128,7 @@ class EditApplicationAction extends OwnerDesignAction
         // CSRF protection
         $token = $this->trimmed('token');
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->clientError(_('There was a problem with your session token.'));
             return;
         }
index b3bd6d104cd4b9dd1ea59391afdc629e5fbd84c1..d515715eda983c8a0d874408fce1a0a8d50e2dd5 100644 (file)
@@ -289,6 +289,7 @@ class EmailsettingsAction extends SettingsAction
         // CSRF protection
         $token = $this->trimmed('token');
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->show_form(_('There was a problem with your session token. '.
                                'Try again, please.'));
             return;
index 61db235738976a00901c9d9eaa842683329e3db7..494648f67169f0b71629f429b4ec9988d28a7f85 100644 (file)
@@ -72,6 +72,7 @@ class FavorAction extends Action
         $notice = Notice::staticGet($id);
         $token  = $this->trimmed('token-'.$notice->id);
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->clientError(_('There was a problem with your session token. Try again, please.'));
             return;
         }
index 123a839f563a3c101d049022b1f3190d5ce88c7c..9e208914c16ca088cf63cd7f08c43e07eb83cefc 100644 (file)
@@ -52,6 +52,7 @@ class GeocodeAction extends Action
         parent::prepare($args);
         $token = $this->trimmed('token');
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->clientError(_('There was a problem with your session token. '.
                                  'Try again, please.'));
         }
index d426563d8cf38999bc30a0729409283c09664a35..3f8cb90e9e7528af4bdfb7eed69b10c1344f5576 100644 (file)
@@ -62,6 +62,7 @@ class GroupblockAction extends RedirectingAction
         }
         $token = $this->trimmed('token');
         if (empty($token) || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->clientError(_('There was a problem with your session token. Try again, please.'));
             return;
         }
index de0af59821f7d24f334e9c9beb7b9384d876afd3..7b92e83f718cc6e8fdbfb7dba3ff314fa1fb48b4 100644 (file)
@@ -62,6 +62,7 @@ class GroupunblockAction extends Action
         }
         $token = $this->trimmed('token');
         if (empty($token) || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->clientError(_('There was a problem with your session token. Try again, please.'));
             return;
         }
index b887fdb2317ff02be6bbc2edc67a63c0ff343ec5..e809981a3f88d5114782bc610d428d831228a273 100644 (file)
@@ -240,6 +240,7 @@ class ImsettingsAction extends SettingsAction
         // CSRF protection
         $token = $this->trimmed('token');
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->showForm(_('There was a problem with your session token. '.
                               'Try again, please.'));
             return;
index bbb6b26c117d273df3d2c8b84e5ec89fcc3303f7..7a1f8b3f5b16d4f9aac0ac8df6d9dc9a64d34bd9 100644 (file)
@@ -57,6 +57,7 @@ class InviteAction extends CurrentUserDesignAction
         // CSRF protection
         $token = $this->trimmed('token');
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->showForm(_('There was a problem with your session token. Try again, please.'));
             return;
         }
index 3613e1eb708f1e80a7dead7e9628f0e46d28b000..0ca537f75579b0c8841a8d0a75ff596200516dfd 100644 (file)
@@ -64,6 +64,7 @@ class MakeadminAction extends RedirectingAction
         }
         $token = $this->trimmed('token');
         if (empty($token) || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->clientError(_('There was a problem with your session token. Try again, please.'));
             return;
         }
index a2c4f58b8d21e7ddda7de6bd925722986f466f4c..ca5d902a268d1f7bd2ab8d09c2546b15aa17ce67 100644 (file)
@@ -109,6 +109,7 @@ class NewApplicationAction extends OwnerDesignAction
         // CSRF protection
         $token = $this->trimmed('token');
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->clientError(_('There was a problem with your session token.'));
             return;
         }
index 8a03aebfac4aa13c2ff1a38babe481b1006dbe74..8f185b55b582ce56d1a2dfe21d8469b55a3ee846 100644 (file)
@@ -137,6 +137,7 @@ class NewmessageAction extends Action
 
         $token = $this->trimmed('token');
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->showForm(_('There was a problem with your session token. ' .
                 'Try again, please.'));
             return;
index f48134c3b21e5743d449858644ea6b6652a23ece..3b7cabacedb0ade0748fa3e9c152f8fa1d27258f 100644 (file)
@@ -101,6 +101,7 @@ class NewnoticeAction extends Action
             // CSRF protection
             $token = $this->trimmed('token');
             if (!$token || $token != common_session_token()) {
+                // TRANS: Client error displayed when the session token does not match or is not given.
                 $this->clientError(_('There was a problem with your session token. '.
                                      'Try again, please.'));
             }
index 61874c75058f90077cf06c7277e80deb27d42c9e..401285b9f30febfe2816c23788f0a083e41d1f13 100644 (file)
@@ -78,6 +78,7 @@ class NudgeAction extends Action
         $token = $this->trimmed('token');
 
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->clientError(_('There was a problem with your session token. Try again, please.'));
             return;
         }
index bcef773ac6fe5a787f3d0d7070d73a026decbe93..5c667309317c17e9c6a7a8e836ae6e5093e69ab7 100644 (file)
@@ -132,6 +132,7 @@ class OauthconnectionssettingsAction extends SettingsAction
 
         $token = $this->trimmed('token');
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->showForm(_('There was a problem with your session token. '.
                               'Try again, please.'));
             return;
index d9a6d32ae0060d63e3fa92c16e069e6aec5cc46e..3ac1a3f94619c3d5f9d819a2000259295153d3a1 100644 (file)
@@ -143,6 +143,7 @@ class PasswordsettingsAction extends SettingsAction
 
         $token = $this->trimmed('token');
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->showForm(_('There was a problem with your session token. '.
                                'Try again, please.'));
             return;
index 0f2b4ba6702201f8c39de493d0ba465529aa7f1c..4caa6baf37e5f161d3eeabdf4b678250aafb6380 100644 (file)
@@ -84,6 +84,7 @@ class PluginEnableAction extends Action
         $token = $this->trimmed('token');
 
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->clientError(_('There was a problem with your session token.'.
                                  ' Try again, please.'));
             return false;
index 084e3e6f1d2ebfcae668df8523cc625ac3c9cb8a..d8f752d2bbbae1a6d7538fadc907060e9b39e8b5 100644 (file)
@@ -160,6 +160,7 @@ class RegisterAction extends Action
         if (Event::handle('StartRegistrationTry', array($this))) {
             $token = $this->trimmed('token');
             if (!$token || $token != common_session_token()) {
+                // TRANS: Client error displayed when the session token does not match or is not given.
                 $this->showForm(_('There was a problem with your session token. '.
                                   'Try again, please.'));
                 return;
index 66cee65cabf52ce6ddf0c61727d1a144dd4507fa..5514b9a98c31637688d13de6be4c76ef889a1133 100644 (file)
@@ -74,6 +74,7 @@ class RemotesubscribeAction extends Action
             /* Use a session token for CSRF protection. */
             $token = $this->trimmed('token');
             if (!$token || $token != common_session_token()) {
+                // TRANS: Client error displayed when the session token does not match or is not given.
                 $this->showForm(_('There was a problem with your session token. '.
                                   'Try again, please.'));
                 return;
index 44c57456fa3cb6f5ead2b24d0016ee778aba9e4a..333e1cd02eacac5de47b128b8f7a97dde4e5f146 100644 (file)
@@ -76,6 +76,7 @@ class RepeatAction extends Action
         $token  = $this->trimmed('token-'.$id);
 
         if (empty($token) || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->clientError(_('There was a problem with your session token. Try again, please.'));
             return false;
         }
index 38e6f1953e60ac496f4c7a228fee205837c2a652..c9cdbf184870074f5fede8f4e80a37ea820c50e9 100644 (file)
@@ -113,6 +113,7 @@ class ShowApplicationAction extends OwnerDesignAction
             // CSRF protection
             $token = $this->trimmed('token');
             if (!$token || $token != common_session_token()) {
+                // TRANS: Client error displayed when the session token does not match or is not given.
                 $this->clientError(_('There was a problem with your session token.'));
                 return;
             }
index 1545679c17dabfed041bd974e5056025ffde11fd..d151ff45d6a7b61ed8e388df9ea442eb9d9d04eb 100644 (file)
@@ -246,6 +246,7 @@ class SmssettingsAction extends SettingsAction
 
         $token = $this->trimmed('token');
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->showForm(_('There was a problem with your session token. '.
                               'Try again, please.'));
             return;
index 3b77aff584fc4b3446dc10a1fa08b531ae878459..f8b22d72b901147b2ac7e9f1e84f8c02be9cd8c5 100644 (file)
@@ -37,6 +37,7 @@ class SubeditAction extends Action
         $token = $this->trimmed('token');
 
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->clientError(_('There was a problem with your session token. '.
                                  'Try again, please.'));
             return false;
index 518c7072012c5720fa746aa088fc4519303a5bd0..6d63ea5b5e0b6f7ac0480b9a3da549bf479aa05e 100644 (file)
@@ -153,6 +153,7 @@ class TagotherAction extends Action
         $token = $this->trimmed('token');
 
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->showForm(_('There was a problem with your session token. '.
                               'Try again, please.'));
             return;
index 8f90619f642c179386f9ee4830d1b16b4a89d819..73661a4f169795cf46e24521c222e8e90e9c4aaf 100644 (file)
@@ -66,6 +66,7 @@ class UnsubscribeAction extends Action
         $token = $this->trimmed('token');
 
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->clientError(_('There was a problem with your session token. ' .
                                  'Try again, please.'));
             return;
index aaaa1b78dd55f9a94e3aa419181d95a9a8d3dcb1..02a895955dc5e7d62914733dc45821e9ba834a06 100644 (file)
@@ -167,6 +167,7 @@ class UrlsettingsAction extends SettingsAction
         // CSRF protection
         $token = $this->trimmed('token');
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->showForm(_('There was a problem with your session token. '.
                               'Try again, please.'));
             return;
index e58a096bac3d633b36f16be45ad81b6d33335a98..fd01cd7c02ee28bf32c16a717820cb672c6d65b0 100644 (file)
@@ -50,6 +50,7 @@ class UserauthorizationAction extends Action
             $token = $this->trimmed('token');
             if (!$token || $token != common_session_token()) {
                 $srv = $this->getStoredParams();
+                // TRANS: Client error displayed when the session token does not match or is not given.
                 $this->showForm($srv->getRemoteUser(), _('There was a problem ' .
                                         'with your session token. Try again, ' .
                                         'please.'));
index eb3a5908e6ff8c05fec602461fff15553c608686..e88bbf88cfcca16ab9d8bc3ec9fa80cae9c5a133 100644 (file)
@@ -119,6 +119,7 @@ class DesignSettingsAction extends SettingsAction
         // CSRF protection
         $token = $this->trimmed('token');
         if (!$token || $token != common_session_token()) {
+            // TRANS: Client error displayed when the session token does not match or is not given.
             $this->showForm(_('There was a problem with your session token. '.
                               'Try again, please.'));
             return;