]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/tagcloudsection.php
Update translator documentation.
[quix0rs-gnu-social.git] / lib / tagcloudsection.php
index 692f5d96620a86f904f166986f370ff49e3ae4a8..561ffb077f6f8068496dbcbcf3040109397ddad3 100644 (file)
@@ -45,7 +45,6 @@ define('TAGS_PER_SECTION', 20);
  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  * @link     http://status.net/
  */
-
 class TagCloudSection extends Section
 {
     function showContent()
@@ -53,7 +52,8 @@ class TagCloudSection extends Section
         $tags = $this->getTags();
 
         if (!$tags) {
-            $this->out->element('p', null, _('None'));
+            // TRANS: Content displayed in a tag cloud section if there are no tags.
+            $this->out->element('p', null, _m('NOTAGS','None'));
             return false;
         }
 
@@ -68,7 +68,8 @@ class TagCloudSection extends Section
         }
 
         if ($cnt == 0) {
-            $this->out->element('p', null, _('(None)'));
+            // TRANS: Content displayed in a tag cloud section if there are no tags.
+            $this->out->element('p', null, _m('NOTAGS','None'));
             return false;
         }