=?utf-8?q?=5Bgnome-shell=5D_js=3A_Use_proper_Unicode_ellipsis_=28?= =?utf-8?q?=E2=80=A6=29_instead_of_three_dots?=
- From: Jeremy Bicha <jbicha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] js: Use proper Unicode ellipsis (â) instead of three dots
- Date: Tue, 12 Feb 2013 22:05:22 +0000 (UTC)
commit 2a5f8e84bb0906eddf4e4e4fe29df8b838357273
Author: Jeremy Bicha <jbicha ubuntu com>
Date: Mon Dec 3 10:59:28 2012 -0500
js: Use proper Unicode ellipsis (â) instead of three dots
https://bugzilla.gnome.org/show_bug.cgi?id=689542
js/gdm/loginDialog.js | 2 +-
js/ui/overview.js | 2 +-
js/ui/searchDisplay.js | 2 +-
js/ui/status/bluetooth.js | 6 +++---
js/ui/status/network.js | 8 ++++----
js/ui/status/power.js | 2 +-
6 files changed, 11 insertions(+), 11 deletions(-)
---
diff --git a/js/gdm/loginDialog.js b/js/gdm/loginDialog.js
index 0874fa0..1c09c29 100644
--- a/js/gdm/loginDialog.js
+++ b/js/gdm/loginDialog.js
@@ -566,7 +566,7 @@ const SessionList = new Lang.Class({
box.add_actor(this._triangle);
let label = new St.Label({ style_class: 'login-dialog-session-list-label',
- text: _("Session...") });
+ text: _("Sessionâ") });
box.add_actor(label);
this._button.connect('clicked',
diff --git a/js/ui/overview.js b/js/ui/overview.js
index 75b8f7e..a49d736 100644
--- a/js/ui/overview.js
+++ b/js/ui/overview.js
@@ -215,7 +215,7 @@ const Overview = new Lang.Class({
in the search entry when no search is
active; it should not exceed ~30
characters. */
- hint_text: _("Type to search..."),
+ hint_text: _("Type to searchâ"),
track_hover: true,
can_focus: true });
this._searchEntryBin = new St.Bin({ child: this._searchEntry,
diff --git a/js/ui/searchDisplay.js b/js/ui/searchDisplay.js
index 5df94be..9ae993e 100644
--- a/js/ui/searchDisplay.js
+++ b/js/ui/searchDisplay.js
@@ -428,7 +428,7 @@ const SearchResults = new Lang.Class({
startingSearch: function() {
this.reset();
- this._statusText.set_text(_("Searching..."));
+ this._statusText.set_text(_("Searchingâ"));
this._statusBin.show();
},
diff --git a/js/ui/status/bluetooth.js b/js/ui/status/bluetooth.js
index f1b47c2..001f8d4 100644
--- a/js/ui/status/bluetooth.js
+++ b/js/ui/status/bluetooth.js
@@ -56,8 +56,8 @@ const Indicator = new Lang.Class({
this.menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem());
this._fullMenuItems = [new PopupMenu.PopupSeparatorMenuItem(),
- new PopupMenu.PopupMenuItem(_("Send Files to Device...")),
- new PopupMenu.PopupMenuItem(_("Set Up a New Device...")),
+ new PopupMenu.PopupMenuItem(_("Send Files to Deviceâ")),
+ new PopupMenu.PopupMenuItem(_("Set Up a New Deviceâ")),
new PopupMenu.PopupSeparatorMenuItem()];
this._hasDevices = false;
@@ -236,7 +236,7 @@ const Indicator = new Lang.Class({
}
if (device.capabilities & GnomeBluetoothApplet.Capabilities.OBEX_PUSH) {
- item.menu.addAction(_("Send Files..."), Lang.bind(this, function() {
+ item.menu.addAction(_("Send Filesâ"), Lang.bind(this, function() {
this._applet.send_to_address(device.bdaddr, device.alias);
}));
}
diff --git a/js/ui/status/network.js b/js/ui/status/network.js
index e738a11..076e59a 100644
--- a/js/ui/status/network.js
+++ b/js/ui/status/network.js
@@ -49,7 +49,7 @@ const NM80211ApFlags = NetworkManager['80211ApFlags'];
const NM80211ApSecurityFlags = NetworkManager['80211ApSecurityFlags'];
// number of wireless networks that should be visible
-// (the remaining are placed into More...)
+// (the remaining are placed into Moreâ)
const NUM_VISIBLE_NETWORKS = 5;
function macToArray(string) {
@@ -549,7 +549,7 @@ const NMDevice = new Lang.Class({
if (j + activeOffset >= NUM_VISIBLE_NETWORKS) {
if (!this._overflowItem) {
- this._overflowItem = new PopupMenu.PopupSubMenuMenuItem(_("More..."));
+ this._overflowItem = new PopupMenu.PopupSubMenuMenuItem(_("Moreâ"));
this.section.addMenuItem(this._overflowItem);
}
this._overflowItem.menu.addMenuItem(obj.item);
@@ -1432,7 +1432,7 @@ const NMDeviceWireless = new Lang.Class({
this.section.addMenuItem(apObj.item, position);
} else {
if (!this._overflowItem) {
- this._overflowItem = new PopupMenu.PopupSubMenuMenuItem(_("More..."));
+ this._overflowItem = new PopupMenu.PopupSubMenuMenuItem(_("Moreâ"));
this.section.addMenuItem(this._overflowItem);
}
this._overflowItem.menu.addMenuItem(apObj.item, position - NUM_VISIBLE_NETWORKS);
@@ -1624,7 +1624,7 @@ const NMVPNSection = new Lang.Class({
if (j >= NUM_VISIBLE_NETWORKS) {
if (!this._overflowItem) {
- this._overflowItem = new PopupMenu.PopupSubMenuMenuItem(_("More..."));
+ this._overflowItem = new PopupMenu.PopupSubMenuMenuItem(_("Moreâ"));
this.section.addMenuItem(this._overflowItem);
}
this._overflowItem.menu.addMenuItem(obj.item);
diff --git a/js/ui/status/power.js b/js/ui/status/power.js
index 53dc52c..c88700a 100644
--- a/js/ui/status/power.js
+++ b/js/ui/status/power.js
@@ -96,7 +96,7 @@ const Indicator = new Lang.Class({
if (time == 0) {
// 0 is reported when UPower does not have enough data
// to estimate battery life
- this._batteryItem.label.text = _("Estimating...");
+ this._batteryItem.label.text = _("Estimatingâ");
} else {
let minutes = time % 60;
let hours = Math.floor(time / 60);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]