diff options
author | Bastien Nocera <hadess@hadess.net> | 2014-02-05 09:19:10 +0100 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2014-02-05 09:19:10 +0100 |
commit | 4490d87f7b10c22ce76a97b2a4039e5b0068a344 (patch) | |
tree | 4bd4460f1d4930cb86d3ca575abce3bdf0c745a3 /src/totem-open-location.c | |
parent | 24e22aba10ee3fb678a86ee454423fed00fcde76 (diff) | |
download | totem-4490d87f7b10c22ce76a97b2a4039e5b0068a344.tar.gz |
main: "Add Web Video" UI fixes
Rename main action button to "Add", and remove "..." from
the title.
Diffstat (limited to 'src/totem-open-location.c')
-rw-r--r-- | src/totem-open-location.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/totem-open-location.c b/src/totem-open-location.c index b6cbd1f59..ea26982d6 100644 --- a/src/totem-open-location.c +++ b/src/totem-open-location.c @@ -180,10 +180,10 @@ totem_open_location_new (void) return NULL; } - gtk_window_set_title (GTK_WINDOW (open_location), _("Add Web Video...")); + gtk_window_set_title (GTK_WINDOW (open_location), _("Add Web Video")); gtk_dialog_add_buttons (GTK_DIALOG (open_location), _("_Cancel"), GTK_RESPONSE_CANCEL, - _("_Open"), GTK_RESPONSE_OK, + _("_Add"), GTK_RESPONSE_OK, NULL); gtk_dialog_set_response_sensitive (GTK_DIALOG (open_location), GTK_RESPONSE_OK, FALSE); gtk_container_set_border_width (GTK_CONTAINER (open_location), 5); |