]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/peopletags.php
No more needed (for this fix) but maybe later. So I always only comment them out.
[quix0rs-gnu-social.git] / lib / peopletags.php
index faf408c8951391c2ff597996b7687dcdeecc70dc..40f07c06b72e77ecd89cf4d6625f6e2893fb926e 100644 (file)
@@ -83,8 +83,8 @@ class PeopletagsWidget extends Widget
 
     function label()
     {
-        // TRANS: Label in people tags widget.
-        return _m('LABEL','Tags by you');
+        // TRANS: Label in lists widget.
+        return _m('LABEL','Your lists');
     }
 
     function showTags()
@@ -124,15 +124,15 @@ class PeopletagsWidget extends Widget
 
     function showEditTagForm($tags=null)
     {
-        $this->out->elementStart('span', 'form_tag_user_wrap');
+        $this->out->elementStart('div', 'form_tag_user_wrap');
         $this->out->elementStart('form', array('method' => 'post',
                                            'class' => 'form_tag_user',
                                            'name' => 'tagprofile',
                                            'action' => common_local_url('tagprofile', array('id' => $this->tagged->id))));
 
         $this->out->elementStart('fieldset');
-        // TRANS: Fieldset legend in people tags widget.
-        $this->out->element('legend', null, _m('LEGEND','Edit tags'));
+        // TRANS: Fieldset legend in lists widget.
+        $this->out->element('legend', null, _m('LEGEND','Edit lists'));
         $this->out->hidden('token', common_session_token());
         $this->out->hidden('id', $this->tagged->id);
 
@@ -147,7 +147,7 @@ class PeopletagsWidget extends Widget
 
         $this->out->elementEnd('fieldset');
         $this->out->elementEnd('form');
-        $this->out->elementEnd('span');
+        $this->out->elementEnd('div');
     }
 
     function showEmptyList()