fix some non-localizable strings

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3861 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2002-03-28 13:27:25 +00:00
parent be1bd533f3
commit 0afa5607b7
4 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-03-28 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* MenuBackend.C (expand): another translation that I missed
2002-03-28 Juergen Vigna <jug@sad.it>
* tabular.C (OldFormatRead): fix ert compatibility read inside cells.

View File

@ -377,7 +377,7 @@ void Menu::expand(Menu & tomenu, Buffer * buf) const
int const action = lyxaction
.getPseudoAction(LFUN_FLOAT_LIST,
cit->second.type());
string const label = cit->second.name() + _(" List");
string const label = _(cit->second.name()) + _(" List");
tomenu.add(MenuItem(MenuItem::Command,
label, action));
}

View File

@ -1,3 +1,7 @@
2002-03-28 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* insetfloatlist.C (getScreenLabel): translate the GUI label.
2002-03-28 Juergen Vigna <jug@sad.it>
* insettabular.C (insetAllowed): return true as default value otherwise

View File

@ -35,7 +35,7 @@ string const InsetFloatList::getScreenLabel(Buffer const *) const
{
string const guiName = floatList[getCmdName()]->second.name();
if (!guiName.empty()) {
string const res = guiName + _(" List");
string const res = _(guiName) + _(" List");
return res;
}
return _("ERROR: Nonexistent float type!");