]> git.lyx.org Git - features.git/commitdiff
Disambiguate string
authorJuergen Spitzmueller <spitz@lyx.org>
Mon, 26 Dec 2022 10:24:29 +0000 (11:24 +0100)
committerJuergen Spitzmueller <spitz@lyx.org>
Mon, 26 Dec 2022 10:24:29 +0000 (11:24 +0100)
src/insets/InsetHyperlink.cpp

index 4c1b43542c2503e11e04ea5c5484dc637da1b884..a3759e959e6b36bbab53528cffc7247818f7c058 100644 (file)
@@ -281,7 +281,7 @@ docstring InsetHyperlink::toolTip(BufferView const & /*bv*/, int /*x*/, int /*y*
        else if (type == "file:")
                guitype = _("file");
        else if (type == "other")
-               guitype = _("other");
+               guitype = _("other[[Hyperlink Type]]");
        return bformat(_("Hyperlink (%1$s) to %2$s"), guitype, url);
 }