From: Juergen Spitzmueller Date: Sat, 5 May 2018 08:04:46 +0000 (+0200) Subject: Add translator hints X-Git-Tag: lyx-2.4.0dev-acb2ca7b~3486 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=01ffcd5f6742823537edcf32d3f972b595ef60b6;p=features.git Add translator hints --- diff --git a/src/frontends/qt4/GuiCharacter.cpp b/src/frontends/qt4/GuiCharacter.cpp index 5e6e124dcf..b8051661b6 100644 --- a/src/frontends/qt4/GuiCharacter.cpp +++ b/src/frontends/qt4/GuiCharacter.cpp @@ -83,8 +83,8 @@ static QList barData() QList bars; bars << BarPair(qt_("No change"), IGNORE); bars << BarPair(qt_("(Without)[[underlining]]"), NONE); - bars << BarPair(qt_("Single"), UNDERBAR); - bars << BarPair(qt_("Double"), UULINE); + bars << BarPair(qt_("Single[[underlining]]"), UNDERBAR); + bars << BarPair(qt_("Double[[underlining]]"), UULINE); bars << BarPair(qt_("Wavy"), UWAVE); bars << BarPair(qt_("Reset"), INHERIT); return bars; @@ -96,7 +96,7 @@ static QList strikeData() QList strike; strike << BarPair(qt_("No change"), IGNORE); strike << BarPair(qt_("(Without)[[strikethrough]]"), NONE); - strike << BarPair(qt_("Single"), STRIKEOUT); + strike << BarPair(qt_("Single[[strikethrough]]"), STRIKEOUT); strike << BarPair(qt_("With /"), XOUT); strike << BarPair(qt_("Reset"), INHERIT); return strike; @@ -187,7 +187,7 @@ void fillComboColor(QComboBox * combo, QList const & list) { // at first add the 2 colors "No change" and "No color" combo->addItem(qt_("No change"), "ignore"); - combo->addItem(qt_("No color"), "none"); + combo->addItem(qt_("(Without)[[color]]"), "none"); // now add the real colors QPixmap coloritem(32, 32); QColor color;