small fix to fr.po

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_1_6@2070 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2001-05-30 09:27:53 +00:00
parent 6dc46ceeb1
commit 5df0b887fb
3 changed files with 6 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2001-05-23 Angus Leeming <a.leeming@ic.ac.uk>
* src/frontends/xforms/FormInset.C (createInset): fixed bug
in activating ButtonController.
2001-05-29 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* kbsequence.C (parse): de-uglify a bit the parsing code, which

View File

@ -4888,10 +4888,6 @@ msgstr "tr
msgid "footnote"
msgstr "note de bas de page"
#: src/frontends/xforms/form_preferences.C:138
msgid "footnote"
msgstr "très petit"
#: src/frontends/xforms/form_preferences.C:141
msgid "large"
msgstr "grand"

View File

@ -94,7 +94,7 @@ void FormCommand::createInset(string const & arg)
}
params.setFromString(arg);
if ( !arg.empty() )
if (! (params.getContents().empty() && params.getOptions().empty()) )
bc_.valid(); // so that the user can press Ok
show();
}