places-menu: Use Unicode quotation marks in a new string

See https://developer.gnome.org/hig/stable/typography.html

https://bugzilla.gnome.org/show_bug.cgi?id=772211
This commit is contained in:
Piotr Drąg
2017-11-25 16:21:35 +01:00
parent 21315d74c3
commit a26f9e34c7
+1 -1
View File
@@ -218,7 +218,7 @@ const PlaceDeviceInfo = new Lang.Class({
},
_reportFailure: function(exception) {
let msg = _("Ejecting drive '%s' failed:").format(this._mount.get_name());
let msg = _("Ejecting drive %s failed:").format(this._mount.get_name());
Main.notifyError(msg, exception.message);
}
});