mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
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:
parent
be1bd533f3
commit
0afa5607b7
@ -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.
|
||||
|
@ -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));
|
||||
}
|
||||
|
@ -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
|
||||
|
@ -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!");
|
||||
|
Loading…
x
Reference in New Issue
Block a user