]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/noticelistitem.php
better output for registration confirmation
[quix0rs-gnu-social.git] / lib / noticelistitem.php
index ca7767ab246a685b8aa64b49ef4eacb2cde1d190..05b0dab16ee806baf78d93fa1720af61b3fcaa43 100644 (file)
@@ -216,7 +216,7 @@ class NoticeListItem extends Widget
         $this->out->elementStart('a', $attrs);
         $this->showAvatar();
         $this->out->text(' ');
-        $this->out->element('span',array('class' => 'nickname fn'),
+        $this->out->element('span',array('class' => 'fn'),
                             $this->profile->getBestName());
         $this->out->elementEnd('a');
 
@@ -243,9 +243,9 @@ class NoticeListItem extends Widget
 
         foreach ($groups as $group) {
             if (!$first) {
-                $this->out->text(', ');
+                $this->out->text( _m('SEPARATOR',', '));
             } else {
-                $this->out->text(' ▶ ');
+                $this->out->text(_(' ▸ '));
                 $first = false;
             }
             $this->out->element('a', array('href' => $group->homeUrl(),
@@ -268,9 +268,11 @@ class NoticeListItem extends Widget
 
         foreach ($replies as $reply) {
             if (!$first) {
-                $this->out->text(', ');
+                // TRANS: Separator in profile addressees list.
+                $this->out->text(_m('SEPARATOR',', '));
             } else {
-                $this->out->text(' ▶ ');
+                // TRANS: Start of profile addressees list.
+                $this->out->text(_(' ▸ '));
                 $first = false;
             }
             $this->out->element('a', array('href' => $reply->profileurl,
@@ -493,7 +495,7 @@ class NoticeListItem extends Widget
             $source_name = (empty($ns->name)) ? ($ns->code ? _($ns->code) : _m('SOURCE','web')) : _($ns->name);
             $this->out->text(' ');
             $this->out->elementStart('span', 'source');
-            // FIXME: probably i18n issue. If "from" is followed by text, that should be a parameter to "from" (from %s).
+            // @todo FIXME: probably i18n issue. If "from" is followed by text, that should be a parameter to "from" (from %s).
             // TRANS: Followed by notice source.
             $this->out->text(_('from'));
             $this->out->text(' ');