From: Pavel Sanda Date: Wed, 28 Apr 2010 21:48:03 +0000 (+0000) Subject: Unify Inter-word and Interword space strings. X-Git-Tag: 2.0.0~3321 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=ea24773537017b59b77a35a67b9467178e4b9e3e;p=features.git Unify Inter-word and Interword space strings. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34335 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/ui/classic.ui b/lib/ui/classic.ui index ec2448e728..b531e26a44 100644 --- a/lib/ui/classic.ui +++ b/lib/ui/classic.ui @@ -245,7 +245,7 @@ Menuset Item "Protected Hyphen|y" "specialchar-insert nobreakdash" Item "Ligature Break|k" "specialchar-insert ligature-break" Item "Protected Space|r" "space-insert protected" - Item "Inter-word Space|w" "space-insert normal" + Item "Interword Space|w" "space-insert normal" Item "Thin Space|T" "space-insert thin" Item "Horizontal Space...|o" "dialog-show-new-inset space" Item "Vertical Space..." "dialog-show-new-inset vspace" diff --git a/lib/ui/stdmenus.inc b/lib/ui/stdmenus.inc index edd9de6a98..9190f51615 100644 --- a/lib/ui/stdmenus.inc +++ b/lib/ui/stdmenus.inc @@ -386,7 +386,7 @@ Menuset Item "Subscript|u" "command-sequence math-mode on; math-subscript; math-insert \text;" Separator Item "Protected Space|P" "space-insert protected" - Item "Inter-word Space|w" "space-insert normal" + Item "Interword Space|w" "space-insert normal" Item "Thin Space|T" "space-insert thin" Item "Horizontal Space...|o" "dialog-show-new-inset space" Item "Horizontal Line|L" "line-insert" diff --git a/src/frontends/qt4/GuiHSpace.cpp b/src/frontends/qt4/GuiHSpace.cpp index 4271ab5318..10486287a1 100644 --- a/src/frontends/qt4/GuiHSpace.cpp +++ b/src/frontends/qt4/GuiHSpace.cpp @@ -54,7 +54,7 @@ GuiHSpace::GuiHSpace(bool math_mode, QWidget * parent) spacingCO->addItem(qt_("Double Quad (2 em)")); spacingCO->addItem(qt_("Custom")); } else { - spacingCO->addItem(qt_("Inter-word space")); + spacingCO->addItem(qt_("Interword space")); spacingCO->addItem(qt_("Thin space")); spacingCO->addItem(qt_("Negative thin space")); spacingCO->addItem(qt_("Half Quad (0.5 em)"));