[gnome-boxes] remote-machine: Mnemonics for editable text props
- From: Zeeshan Ali Khattak <zeeshanak src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-boxes] remote-machine: Mnemonics for editable text props
- Date: Fri, 7 Aug 2015 14:23:52 +0000 (UTC)
commit dd432b1e211388fe2c1433e150749add3fc1d5dc
Author: Zeeshan Ali (Khattak) <zeeshanak gnome org>
Date: Fri Aug 7 13:34:27 2015 +0100
remote-machine: Mnemonics for editable text props
Add mnemonics to editable string properties.
https://bugzilla.gnome.org/show_bug.cgi?id=731971
src/remote-machine.vala | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/remote-machine.vala b/src/remote-machine.vala
index c437843..fb7e5e7 100644
--- a/src/remote-machine.vala
+++ b/src/remote-machine.vala
@@ -55,7 +55,7 @@ private class Boxes.RemoteMachine: Boxes.Machine, Boxes.IPropertiesProvider {
switch (page) {
case PropertiesPage.GENERAL:
- var property = add_editable_string_property (ref list, _("Name"), source.name);
+ var property = add_editable_string_property (ref list, _("_Name"), source.name);
property.changed.connect ((property, name) => {
this.name = name;
});
@@ -69,7 +69,7 @@ private class Boxes.RemoteMachine: Boxes.Machine, Boxes.IPropertiesProvider {
if (is_connected) {
add_string_property (ref list, _("URI"), source.uri);
} else {
- property = add_editable_string_property (ref list, _("URI"), source.uri);
+ property = add_editable_string_property (ref list, _("_URI"), source.uri);
property.changed.connect ((property, uri) => {
source.uri = uri;
});
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]