From: Jean-Marc Lasgouttes Date: Thu, 28 Mar 2002 13:27:25 +0000 (+0000) Subject: fix some non-localizable strings X-Git-Tag: 1.6.10~19540 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=0afa5607b7c47b2c8748fa59f8ccf958b4cab007;p=features.git fix some non-localizable strings git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3861 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index 9dc92e4d2d..f1f26de529 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2002-03-28 Jean-Marc Lasgouttes + + * MenuBackend.C (expand): another translation that I missed + 2002-03-28 Juergen Vigna * tabular.C (OldFormatRead): fix ert compatibility read inside cells. diff --git a/src/MenuBackend.C b/src/MenuBackend.C index 7c7cd00ffb..f094ef3ed8 100644 --- a/src/MenuBackend.C +++ b/src/MenuBackend.C @@ -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)); } diff --git a/src/insets/ChangeLog b/src/insets/ChangeLog index b39b21599b..b4ed3da291 100644 --- a/src/insets/ChangeLog +++ b/src/insets/ChangeLog @@ -1,3 +1,7 @@ +2002-03-28 Jean-Marc Lasgouttes + + * insetfloatlist.C (getScreenLabel): translate the GUI label. + 2002-03-28 Juergen Vigna * insettabular.C (insetAllowed): return true as default value otherwise diff --git a/src/insets/insetfloatlist.C b/src/insets/insetfloatlist.C index b73220a097..e40876460e 100644 --- a/src/insets/insetfloatlist.C +++ b/src/insets/insetfloatlist.C @@ -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!");