On dit �Fermer� en fran�ais, pas �Close�.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4077 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-04-26 14:19:20 +00:00
parent e4727fe65b
commit 96075e576e
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-04-26 John Levon <moz@compsoc.man.ac.uk>
* FormMathsPanel.C: translate Close
2002-04-22 Angus Leeming <a.leeming@ic.ac.uk>
* FormCitation.C (apply, input): ensure that the choice is always valid.

View File

@ -68,7 +68,7 @@ using SigC::slot;
FormMathsPanel::FormMathsPanel(LyXView * lv, Dialogs * d)
: FormBaseBD(lv, d, _("Maths Panel"), false),
active_(0), bc_("Close")
active_(0), bc_(_("Close"))
{
deco_.reset( new FormMathsDeco( lv, d, *this));
delim_.reset( new FormMathsDelim( lv, d, *this));
@ -404,7 +404,7 @@ void FormMathsPanel::mathDisplay() const
FormMathsSub::FormMathsSub(LyXView * lv, Dialogs * d, FormMathsPanel const & p,
string const & t, bool allowResize)
: FormBaseBD(lv, d, t, allowResize), parent_(p), bc_("Close")
: FormBaseBD(lv, d, t, allowResize), parent_(p), bc_(_("Close"))
{}