]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
L10n/i18n updates.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 1 Apr 2011 20:32:56 +0000 (22:32 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Fri, 1 Apr 2011 20:32:56 +0000 (22:32 +0200)
plugins/FacebookBridge/actions/facebookadminpanel.php
plugins/FacebookBridge/actions/facebookfinishlogin.php
plugins/FacebookBridge/actions/facebooksettings.php

index 61b544184813a8ef34bd698c0d8b13b4c65e5620..034b58b2fa218b104abd68fbed2bf1078ee75b6c 100644 (file)
@@ -120,13 +120,13 @@ class FacebookadminpanelAction extends AdminPanelAction
 
         if (mb_strlen($values['facebook']['appid']) > 255) {
             $this->clientError(
-                _m("Invalid Facebook ID. Max length is 255 characters.")
+                _m("Invalid Facebook ID. Maximum length is 255 characters.")
             );
         }
 
         if (mb_strlen($values['facebook']['secret']) > 255) {
             $this->clientError(
-                _m("Invalid Facebook secret. Max length is 255 characters.")
+                _m("Invalid Facebook secret. Maximum length is 255 characters.")
             );
         }
     }
@@ -182,7 +182,7 @@ class FacebookAdminPanelForm extends AdminForm
         $this->input(
             'appid',
             _m('Application ID'),
-            _m('ID of your Facebook application'),
+            _m('ID of your Facebook application.'),
             'facebook'
         );
         $this->unli();
@@ -191,7 +191,7 @@ class FacebookAdminPanelForm extends AdminForm
         $this->input(
             'secret',
              _m('Secret'),
-            _m('Application secret'),
+            _m('Application secret.'),
             'facebook'
         );
         $this->unli();
@@ -207,6 +207,6 @@ class FacebookAdminPanelForm extends AdminForm
      */
     function formActions()
     {
-        $this->out->submit('submit', _m('Save'), 'submit', null, _m('Save Facebook settings'));
+        $this->out->submit('submit', _m('BUTTON','Save'), 'submit', null, _m('Save Facebook settings.'));
     }
 }
index 7b2f27474173c02153fb28b437de1a5e3b1da80e..f952ad2e2bdaf86b74d5d505e6b36fe0f9864ab9 100644 (file)
@@ -147,7 +147,7 @@ class FacebookfinishloginAction extends Action
 
             if (!$this->boolean('license')) {
                 $this->showForm(
-                    _m('You can\'t register if you don\'t agree to the license.'),
+                    _m('You cannot register if you do not agree to the license.'),
                     $this->trimmed('newname')
                 );
                 return;
@@ -182,7 +182,7 @@ class FacebookfinishloginAction extends Action
                 'div', 'instructions',
                 // TRANS: %s is the site name.
                 sprintf(
-                    _m('This is the first time you\'ve logged into %s so we must connect your Facebook to a local account. You can either create a new local account, or connect with an existing local account.'),
+                    _m('This is the first time you have logged into %s so we must connect your Facebook to a local account. You can either create a new local account, or connect with an existing local account.'),
                     common_config('site', 'name')
                 )
             );
@@ -265,7 +265,7 @@ class FacebookfinishloginAction extends Action
         // TRANS: Field label.
         $this->input('newname', _m('New nickname'),
                      ($this->username) ? $this->username : '',
-                     _m('1-64 lowercase letters or numbers, no punctuation or spaces'));
+                     _m('1-64 lowercase letters or numbers, no punctuation or spaces.'));
         $this->elementEnd('li');
 
         // Hook point for captcha etc
index 54e96ee400b10c3378dd2d9e0b1fc02864a9f689..7d45cc03e6b99eff5be883a806aa1a0dcffdd92d 100644 (file)
@@ -257,7 +257,7 @@ class FacebooksettingsAction extends SettingsAction {
 
         if ($result === false) {
             common_log_db_error($user, 'DELETE', __FILE__);
-            $this->serverError(_m('Couldn\'t delete link to Facebook.'));
+            $this->serverError(_m('Could not delete link to Facebook.'));
             return;
         }