diff --git a/js/ui/status/power.js b/js/ui/status/power.js index e226de00a..0bec19c44 100644 --- a/js/ui/status/power.js +++ b/js/ui/status/power.js @@ -83,12 +83,12 @@ const Indicator = new Lang.Class({ if (this._proxy.State == UPower.DeviceState.DISCHARGING) { // Translators: this is : Remaining () - return _("%d\u2236%02d Remaining (%d%%)").format(hours, minutes, this._proxy.Percentage); + return _("%d\u2236%02d Remaining (%d\u2009%%)").format(hours, minutes, this._proxy.Percentage); } if (this._proxy.State == UPower.DeviceState.CHARGING) { // Translators: this is : Until Full () - return _("%d\u2236%02d Until Full (%d%%)").format(hours, minutes, this._proxy.Percentage); + return _("%d\u2236%02d Until Full (%d\u2009%%)").format(hours, minutes, this._proxy.Percentage); } return null;