Disentangle various "in"s

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36613 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2010-11-30 00:55:34 +00:00
parent 51c5b13db1
commit aef9d84e83
3 changed files with 3 additions and 3 deletions

View File

@ -514,7 +514,7 @@ ToolbarSet
Item "sqsupseteq" "math-insert \sqsupseteq"
Item "doteq" "math-insert \doteq"
Item "neq" "math-insert \neq"
Item "in" "math-insert \in"
Item "in[[math relation]]" "math-insert \in"
Item "ni" "math-insert \ni"
Item "propto" "math-insert \propto"
Item "notin" "math-insert \notin"

View File

@ -472,7 +472,7 @@ void GuiGraphics::on_angle_textChanged(const QString & filename)
void GuiGraphics::paramsToDialog(InsetGraphicsParams const & igp)
{
static char const * const bb_units[] = { "bp", "cm", "mm", "in" };
static char const * const bb_units_gui[] = { N_("bp"), N_("cm"), N_("mm"), N_("in") };
static char const * const bb_units_gui[] = { N_("bp"), N_("cm"), N_("mm"), N_("in[[unit of measure]]") };
size_t const bb_size = sizeof(bb_units) / sizeof(bb_units[0]);
lbXunit->clear();

View File

@ -35,7 +35,7 @@ int const num_units = int(sizeof(unit_name) / sizeof(unit_name[0]) - 1);
// the LyX gui units
char const * const unit_name_gui[] = {
N_("bp"), N_("cc[[unit of measure]]"), N_("cm"), N_("dd"), N_("em"),
N_("ex"), N_("in"), N_("mm"), N_("mu[[unit of measure]]"), N_("pc"),
N_("ex"), N_("in[[unit of measure]]"), N_("mm"), N_("mu[[unit of measure]]"), N_("pc"),
N_("pt"), N_("sp"), N_("Text Width %"),
N_("Column Width %"), N_("Page Width %"), N_("Line Width %"),
N_("Text Height %"), N_("Page Height %"), "" };