>>>>> "Kayvan" == Kayvan Aghaiepour Sylvan <[EMAIL PROTECTED]> writes:
Kayvan> I added the Import->Noweb to lyx.
Kayvan> Please check this over, as I'm not fully versed with the LyX
Kayvan> code. I've tested it with what's in CVS vis-a-vis noweb2lyx
Kayvan> and reLyX.
Hello,
The patch looks (almost) good, but I am reluctent to apply it now,
since it will break all the translations of the File-Import
submenu. If we had one or two days it would not be a problem, but I
feel we are running out of time to do it right.
I'm also not sure about the following:
---------------
+ owner->getMiniBuffer()->Set(_(isnoweb ?
+ "Noweb file " : "LateX file "),
MakeDisplayPath(filename),
_("imported."));
---------------
I think that it should read as follows if we want i18n to work.
---------------
+ owner->getMiniBuffer()->Set(isnoweb ?
+ _("Noweb file ") : _("LateX file "),
MakeDisplayPath(filename),
_("imported."));
---------------
What do the other think?
JMarc