]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/OStatus/actions/ostatuspeopletag.php
Complete "people tag" to "list" in UI messages.
[quix0rs-gnu-social.git] / plugins / OStatus / actions / ostatuspeopletag.php
index d4f64553cffdddfffda6b4f505f546832383688b..014b6cabbd44b51ebe2501c8338cbfee8b43438c 100644 (file)
@@ -70,9 +70,9 @@ class OStatusPeopletagAction extends OStatusSubAction
         $this->elementStart('ul', 'form_data');
         $this->elementStart('li');
         $this->input('profile',
-                     _m('Subscribe to people tag'),
+                     _m('Subscribe to list'),
                      $this->profile_uri,
-                     _m("Address of the OStatus people tag, like http://example.net/user/all/tag"));
+                     _m("Address of the OStatus list, like http://example.net/user/all/tag"));
         $this->elementEnd('li');
         $this->elementEnd('ul');
 
@@ -95,7 +95,7 @@ class OStatusPeopletagAction extends OStatusSubAction
         $cur = common_current_user();
         if ($ptag->hasSubscriber($cur->id)) {
             $this->element('div', array('class' => 'error'),
-                           _m('You are already subscribed to this people tag.'));
+                           _m('You are already subscribed to this list.'));
             $ok = false;
         } else {
             $ok = true;
@@ -157,8 +157,8 @@ class OStatusPeopletagAction extends OStatusSubAction
 
     function title()
     {
-        // TRANS: Page title for OStatus remote people tag subscription form
-        return _m('Confirm subscription to remote people tag');
+        // TRANS: Page title for OStatus remote list subscription form
+        return _m('Confirm subscription to remote list');
     }
 
     /**