diff options
Diffstat (limited to 'e-util/e-web-view.c')
-rw-r--r-- | e-util/e-web-view.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/e-util/e-web-view.c b/e-util/e-web-view.c index ac238bc2c0..47e31dcfb3 100644 --- a/e-util/e-web-view.c +++ b/e-util/e-web-view.c @@ -994,11 +994,10 @@ web_view_hovering_over_link (EWebView *web_view, if (g_str_has_prefix (uri, "mailto:")) format = _("Click to mail %s"); - else if (g_str_has_prefix (uri, "callto:")) - format = _("Click to call %s"); - else if (g_str_has_prefix (uri, "h323:")) - format = _("Click to call %s"); - else if (g_str_has_prefix (uri, "sip:")) + else if (g_str_has_prefix (uri, "callto:") || + g_str_has_prefix (uri, "h323:") || + g_str_has_prefix (uri, "sip:") || + g_str_has_prefix (uri, "tel:")) format = _("Click to call %s"); else if (g_str_has_prefix (uri, "##")) message = g_strdup (_("Click to hide/unhide addresses")); |