[gnome-terminal] window: Fix popup menu labels of email and voip addresses



commit 2d9e9bafa699c31e1cc80160a935430e21d75082
Author: Egmont Koblinger <egmont gmail com>
Date:   Sun Dec 17 23:18:38 2017 +0100

    window: Fix popup menu labels of email and voip addresses
    
    They got swapped in commit 0820b3853a3b7c629a93fa820d5372eac1760686.

 src/terminal-window.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/terminal-window.c b/src/terminal-window.c
index 663f7f3..4460f6e 100644
--- a/src/terminal-window.c
+++ b/src/terminal-window.c
@@ -1772,13 +1772,13 @@ screen_show_popup_menu_cb (TerminalScreen *screen,
     const char *open_label = NULL, *copy_label = NULL;
     switch (info->url_flavor) {
     case FLAVOR_EMAIL:
-      open_label = _("Call _To…");
-      copy_label = _("Copy Call _Address ");
-      break;
-    case FLAVOR_VOIP_CALL:
       open_label = _("Send Mail _To…");
       copy_label = _("Copy Mail _Address");
       break;
+    case FLAVOR_VOIP_CALL:
+      open_label = _("Call _To…");
+      copy_label = _("Copy Call _Address ");
+      break;
     case FLAVOR_AS_IS:
     case FLAVOR_DEFAULT_TO_HTTP:
     default:


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]