diff --git a/data/org.gnome.shell.gschema.xml.in b/data/org.gnome.shell.gschema.xml.in
index 7348d0908..63a19032d 100644
--- a/data/org.gnome.shell.gschema.xml.in
+++ b/data/org.gnome.shell.gschema.xml.in
@@ -26,7 +26,7 @@
Disable user extensions
Disable all extensions the user has enabled without affecting
- the 'enabled-extension' setting.
+ the “enabled-extension” setting.
@@ -64,9 +64,9 @@
false
- Always show the 'Log out' menu item in the user menu.
+ Always show the “Log out” menu item in the user menu.
- This key overrides the automatic hiding of the 'Log out'
+ This key overrides the automatic hiding of the “Log out”
menu item in single-user, single-session situations.
@@ -76,7 +76,7 @@
The shell will request a password when an encrypted device or a
remote filesystem is mounted. If the password can be saved for
- future use a 'Remember Password' checkbox will be present.
+ future use a “Remember Password” checkbox will be present.
This key sets the default state of the checkbox.
@@ -105,9 +105,9 @@
["<Super>a"]
- Keybinding to open the "Show Applications" view
+ Keybinding to open the “Show Applications” view
- Keybinding to open the "Show Applications" view of the Activities
+ Keybinding to open the “Show Applications” view of the Activities
Overview.
@@ -176,8 +176,8 @@
The application icon mode.
Configures how the windows are shown in the switcher. Valid possibilities
- are 'thumbnail-only' (shows a thumbnail of the window), 'app-icon-only'
- (shows only the application icon) or 'both'.
+ are “thumbnail-only” (shows a thumbnail of the window), “app-icon-only”
+ (shows only the application icon) or “both”.
diff --git a/js/ui/components/polkitAgent.js b/js/ui/components/polkitAgent.js
index 4abfe0e5c..6e49ced09 100644
--- a/js/ui/components/polkitAgent.js
+++ b/js/ui/components/polkitAgent.js
@@ -298,7 +298,7 @@ const AuthenticationDialog = new Lang.Class({
* requested authentication was not gained; this can happen
* because of an authentication error (like invalid password),
* for instance. */
- this._errorMessageLabel.set_text(_("Sorry, that didn\'t work. Please try again."));
+ this._errorMessageLabel.set_text(_("Sorry, that didn’t work. Please try again."));
this._errorMessageLabel.show();
this._infoMessageLabel.hide();
this._nullMessageLabel.hide();
diff --git a/js/ui/shellMountOperation.js b/js/ui/shellMountOperation.js
index 413f196b2..9322a2d85 100644
--- a/js/ui/shellMountOperation.js
+++ b/js/ui/shellMountOperation.js
@@ -380,7 +380,7 @@ const ShellMountPasswordDialog = new Lang.Class({
this.setInitialKeyFocus(this._passwordEntry);
this._errorMessageLabel = new St.Label({ style_class: 'prompt-dialog-error-label',
- text: _("Sorry, that didn\'t work. Please try again.") });
+ text: _("Sorry, that didn’t work. Please try again.") });
this._errorMessageLabel.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
this._errorMessageLabel.clutter_text.line_wrap = true;
this._errorMessageLabel.hide();
diff --git a/js/ui/status/network.js b/js/ui/status/network.js
index 72f973a6a..560743cf0 100644
--- a/js/ui/status/network.js
+++ b/js/ui/status/network.js
@@ -1431,7 +1431,7 @@ const NMVPNConnectionItem = new Lang.Class({
case NetworkManager.VPNConnectionState.PREPARE:
case NetworkManager.VPNConnectionState.CONNECT:
case NetworkManager.VPNConnectionState.IP_CONFIG_GET:
- return _("connecting...");
+ return _("connecting…");
case NetworkManager.VPNConnectionState.NEED_AUTH:
/* Translators: this is for network connections that require some kind of key or password */
return _("authentication required");
diff --git a/js/ui/windowManager.js b/js/ui/windowManager.js
index 79b2092a0..3d0de972a 100644
--- a/js/ui/windowManager.js
+++ b/js/ui/windowManager.js
@@ -675,7 +675,7 @@ const ResizePopup = new Lang.Class({
set: function(rect, displayW, displayH) {
/* Translators: This represents the size of a window. The first number is
* the width of the window and the second is the height. */
- let text = _("%d x %d").format(displayW, displayH);
+ let text = _("%d × %d").format(displayW, displayH);
this._label.set_text(text);
this._widget.set_position(rect.x, rect.y);
diff --git a/src/main.c b/src/main.c
index dbf0e3bd7..78a300d28 100644
--- a/src/main.c
+++ b/src/main.c
@@ -390,7 +390,7 @@ GOptionEntry gnome_shell_options[] = {
{
"mode", 0, 0, G_OPTION_ARG_STRING,
&session_mode,
- N_("Use a specific mode, e.g. \"gdm\" for login screen"),
+ N_("Use a specific mode, e.g. “gdm” for login screen"),
"MODE"
},
{