]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Update translator documentation.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 17 Jun 2011 14:19:18 +0000 (16:19 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 17 Jun 2011 20:36:37 +0000 (22:36 +0200)
i18n/L10n updates.
Whitespace updates.

plugins/TightUrl/TightUrlPlugin.php
plugins/TinyMCE/TinyMCEPlugin.php
plugins/UserFlag/User_flag_profile.php
plugins/UserFlag/adminprofileflag.php
plugins/UserFlag/clearflag.php
plugins/UserFlag/clearflagform.php

index 8fd645945b0f5577481697a61821acb03ea5b3bc..6d96f40bc584db3aeee1e89f421c985f6700b21c 100644 (file)
@@ -38,7 +38,8 @@ class TightUrlPlugin extends UrlShortenerPlugin
     function onInitializePlugin(){
         parent::onInitializePlugin();
         if(!isset($this->serviceUrl)){
-            throw new Exception("must specify a serviceUrl");
+            // TRANS: Exception thrown when the TightUrl plugin has been configured incorrectly.
+            throw new Exception(_m('You must specify a serviceUrl.'));
         }
     }
 
@@ -63,6 +64,7 @@ class TightUrlPlugin extends UrlShortenerPlugin
                             'author' => 'Craig Andrews',
                             'homepage' => 'http://status.net/wiki/Plugin:TightUrl',
                             'rawdescription' =>
+                            // TRANS: Plugin description. %s is the shortener name.
                             sprintf(_m('Uses <a href="http://%1$s/">%1$s</a> URL-shortener service.'),
                                     $this->shortenerName));
         return true;
index 4051ff59ee8c28397de665f19f9694bfe4a29a4b..a5e4a481b8b9fe9162690f7eb543973c9c1d16f4 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-
 /**
  * StatusNet - the distributed open-source microblogging tool
  * Copyright (C) 2010, StatusNet, Inc.
@@ -38,7 +37,7 @@ if (!defined('STATUSNET')) {
  * Use TinyMCE library to allow rich text editing in the browser
  *
  * Converts the notice form in browser to a rich-text editor.
- * 
+ *
  * FIXME: this plugin DOES NOT load its static files from the configured
  * plugin server if one exists. There are cross-server permissions errors
  * if you try to do that (something about window.tinymce).
@@ -84,6 +83,7 @@ class TinyMCEPlugin extends Plugin
             'author' => 'Evan Prodromou',
             'homepage' => 'http://status.net/wiki/Plugin:TinyMCE',
             'rawdescription' =>
+            // TRANS: Plugin description.
             _m('Use TinyMCE library to allow rich text editing in the browser.'));
         return true;
     }
index f4e9844dfc9ddf67ba89c3e43e188c629aabe1b3..cdc67cf8e74770a5a7dd54ce6da4788b99486593 100644 (file)
@@ -157,7 +157,8 @@ class User_flag_profile extends Memcached_DataObject
 
         if (!$ufp->insert()) {
             // TRANS: Server exception.
-            $msg = sprintf(_m('Couldn\'t flag profile "%d" for review.'),
+            // TRANS: %d is a profile ID (number).
+            $msg = sprintf(_m('Could not flag profile "%d" for review.'),
                            $profile_id);
             throw new ServerException($msg);
         }
index 1aafa3c1bf4394255d7999210de0232b3ee86c78..d9e57cfc4b1a247d3446b733e0f292e1fdf4ccff 100644 (file)
@@ -86,6 +86,7 @@ class AdminprofileflagAction extends Action
         // User must have the right to review flags
 
         if (!$user->hasRight(UserFlagPlugin::REVIEWFLAGS)) {
+            // TRANS: Error message displayed when trying to review profile flags while not authorised.
             $this->clientError(_m('You cannot review profile flags.'));
             return false;
         }
@@ -385,7 +386,7 @@ class FlaggedProfileListItem extends ProfileListItem
                 $flagging_users = implode(', ', $lnks);
                 // TRANS: Message displayed on a profile if it has been flagged.
                 // TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged.
-                // TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural.
+                // TRANS: %2$d is a positive integer of additional flagging users. Also used for plural.
                 $text .= sprintf(_m('Flagged by %1$s and %2$d other', 'Flagged by %1$s and %2$d others', $others), $flagging_users, $others);
             } else {
                 // TRANS: Message displayed on a profile if it has been flagged.
index feda29f1b7e564dc19c0c6ab76ea717992c07478..e5704d6af5475a72b8f4a7154cc4b7ce72ab86bd 100644 (file)
@@ -49,7 +49,6 @@ class ClearflagAction extends ProfileFormAction
      *
      * @return boolean success flag
      */
-
     function prepare($args)
     {
         if (!parent::prepare($args)) {
@@ -102,7 +101,8 @@ class ClearflagAction extends ProfileFormAction
 
         if ($result == false) {
             // TRANS: Server exception given when flags could not be cleared.
-            $msg = sprintf(_m('Couldn\'t clear flags for profile "%s".'),
+            // TRANS: %s is a profile nickname.
+            $msg = sprintf(_m('Could not clear flags for profile "%s".'),
                            $this->profile->nickname);
             throw new ServerException($msg);
         }
index 26a884875877da55a3e8148c7d6850c5eb338b0d..47dd3924c3c39dd1d1ebf4cec78f3e290bd8e1a1 100644 (file)
@@ -84,7 +84,7 @@ class ClearFlagForm extends ProfileActionForm
 
     function description()
     {
-        // Form description for clearing flags from a profile.
+        // TRANS: Form description for clearing flags from a profile.
         return _m('Clear all flags');
     }
 }