]> git.lyx.org Git - lyx.git/blobdiff - src/LColor.C
More fixes to insettabular/text (and some missing features added).
[lyx.git] / src / LColor.C
index 2c52873dea1d2a1a9268772611d67cd3ac6bbb84..0d3b77b6981246ee56a9176e053320ba1373e702 100644 (file)
@@ -58,8 +58,9 @@ LColor::LColor()
        { cyan, N_("cyan"), "cyan", "cyan", "cyan" },
        { magenta, N_("magenta"), "magenta", "magenta", "magenta" },
        { yellow, N_("yellow"), "yellow", "yellow", "yellow" },
+       { cursor, N_("cursor"), "cursor", "black", "cursor" },
        { background, N_("background"), "background", "linen", "background" },
-       { foreground, N_("foreground"), "foreground", "black", "foreground" },
+       { foreground, N_("text"), "foreground", "black", "foreground" },
        { selection, N_("selection"), "selection", "LightBlue", "selection" },
        { latex, N_("latex"), "latex", "DarkRed", "latex" },
        { floats, N_("floats"), "floats", "red", "floats" },
@@ -70,9 +71,9 @@ LColor::LColor()
        { language, N_("language"), "language", "Blue", "language" },
        { command, N_("command-inset"), "command", "black", "command" },
        { commandbg, N_("command-inset background"), "commandbg", "grey80", "commandbg" },
-       { commandframe, N_("inset frame"), "commandframe", "black", "commandframe" },
+       { commandframe, N_("command-inset frame"), "commandframe", "black", "commandframe" },
        { accent, N_("accent"), "accent", "black", "accent" },
-       { accentbg, N_("accent background"), "accentbg", "offwhite", "accentbg" },
+       { accentbg, N_("accent background"), "accentbg", "linen", "accentbg" },
        { accentframe, N_("accent frame"), "accentframe", "linen", "accentframe" },
        { minipageline, N_("minipage line"), "minipageline", "violet", "minipageline" },
        { special, N_("special char"), "special", "RoyalBlue", "special" },
@@ -84,7 +85,7 @@ LColor::LColor()
        { footnote, N_("footnote"), "footnote", "DarkRed", "footnote" },
        { footnotebg, N_("footnote background"), "footnotebg", "grey60", "footnotebg" },
        { footnoteframe, N_("footnote frame"), "footnoteframe", "IndianRed", "footnoteframe" },
-       { ert, N_("ert"), "ert", "DarkRed", "ert" },
+       { ert, N_("latex inset"), "ert", "DarkRed", "ert" },
        { inset, N_("inset"), "inset", "black", "inset" },
        { insetbg, N_("inset background"), "insetbg", "grey60", "insetbg" },
        { insetframe, N_("inset frame"), "insetframe", "IndianRed", "insetframe" },
@@ -193,7 +194,7 @@ LColor::color LColor::getFromGUIName(string const & guiname) const
        InfoTab::const_iterator ici = infotab.begin();
        InfoTab::const_iterator end = infotab.end();
        for (; ici != end; ++ici) {
-               if (!compare_no_case((*ici).second.guiname, guiname))
+               if (!compare_no_case(_((*ici).second.guiname), guiname))
                        return (*ici).first;
        }
        return LColor::inherit;