[gnome-shell] NetworkAgent: use existing strings to avoid breaking the string freeze
- From: Piotr Drąg <piotrdrag src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] NetworkAgent: use existing strings to avoid breaking the string freeze
- Date: Thu, 12 Mar 2015 21:24:46 +0000 (UTC)
commit 921a9071a1c5f1649db7d45148d237c47d9d2429
Author: Piotr Drąg <piotrdrag gmail com>
Date: Thu Mar 12 22:23:57 2015 +0100
NetworkAgent: use existing strings to avoid breaking the string freeze
js/ui/components/networkAgent.js | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/js/ui/components/networkAgent.js b/js/ui/components/networkAgent.js
index 6c40873..b5f141d 100644
--- a/js/ui/components/networkAgent.js
+++ b/js/ui/components/networkAgent.js
@@ -656,15 +656,15 @@ const NetworkAgent = new Lang.Class({
let wirelessSetting = connection.get_setting_wireless();
let ssid = NetworkManager.utils_ssid_to_utf8(wirelessSetting.get_ssid());
title = _("Authentication required by wireless network");
- body = _("Passwords or encryption keys are required to access the wireless network
'%s'.").format(ssid);
+ body = _("Passwords or encryption keys are required to access the wireless network
“%s”.").format(ssid);
break;
case '802-3-ethernet':
title = _("Wired 802.1X authentication");
- body = _("A password is required to connect to “%s”".format(connection.get_id()));
+ body = _("A password is required to connect to “%s”.".format(connection.get_id()));
break;
case 'pppoe':
title = _("DSL authentication");
- body = _("A password is required to connect to “%s”".format(connection.get_id()));
+ body = _("A password is required to connect to “%s”.".format(connection.get_id()));
break;
case 'gsm':
if (hints.indexOf('pin') != -1) {
@@ -677,7 +677,7 @@ const NetworkAgent = new Lang.Class({
case 'cdma':
case 'bluetooth':
title = _("Mobile broadband network password");
- message = _("A password is required to connect to “%s”").format(connectionSetting.get_id());
+ message = _("A password is required to connect to “%s”.").format(connectionSetting.get_id());
break;
default:
log('Invalid connection type: ' + connectionType);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]