[gnome-shell] network: Unify capitalization in newly changed strings



commit a0df3e7d1e62d7de7395d3fc329fe84ae3585425
Author: Piotr Drąg <piotrdrag gmail com>
Date:   Thu Aug 20 17:07:46 2015 +0200

    network: Unify capitalization in newly changed strings
    
    After fa0e54edbb584624c9e85b6a8356b71e01c1baec some strings were inconsistent.

 js/ui/status/network.js |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/js/ui/status/network.js b/js/ui/status/network.js
index f41be7f..3ce228c 100644
--- a/js/ui/status/network.js
+++ b/js/ui/status/network.js
@@ -469,7 +469,7 @@ const NMConnectionDevice = new Lang.Class({
             return _("%s Connecting").format(this._getDescription());
         case NetworkManager.DeviceState.NEED_AUTH:
             /* Translators: this is for network connections that require some kind of key or password; %s is 
a network identifier */
-            return _("%s requires Authentication").format(this._getDescription());
+            return _("%s Requires Authentication").format(this._getDescription());
         case NetworkManager.DeviceState.UNAVAILABLE:
             // This state is actually a compound of various states (generically unavailable,
             // firmware missing), that are exposed by different properties (whose state may
@@ -477,14 +477,14 @@ const NMConnectionDevice = new Lang.Class({
             if (this._device.firmware_missing) {
                 /* Translators: this is for devices that require some kind of firmware or kernel
                    module, which is missing; %s is a network identifier */
-                return _("Firmware missing for %s").format(this._getDescription());
+                return _("Firmware Missing For %s").format(this._getDescription());
             }
             /* Translators: this is for a network device that cannot be activated (for example it
                is disabled by rfkill, or it has no coverage; %s is a network identifier */
             return _("%s Unavailable").format(this._getDescription());
         case NetworkManager.DeviceState.FAILED:
             /* Translators: %s is a network identifier */
-            return _("%s Connection failed").format(this._getDescription());
+            return _("%s Connection Failed").format(this._getDescription());
         default:
             log('Device state invalid, is %d'.format(this._device.state));
             return 'invalid';


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]