slovak support

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3406 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2002-01-17 10:54:30 +00:00
parent 605797c1b4
commit 637e368f1c
8 changed files with 8347 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2002-01-17 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* configure.in (ALL_LINGUAS): add slovak
2002-01-13 Michael A. Koziarski <michael@koziarski.com>
* configure.in: Fix the includes for gnome.

View File

@ -20,7 +20,7 @@ AM_INIT_AUTOMAKE($lyxname, $VERSION)
# The list of languages known to LyX
# This is needed by GNU gettext
ALL_LINGUAS="ca cs da de es eu fi fr he hu it nl no pl pt ro ru sl sv tr wa"
ALL_LINGUAS="ca cs da de es eu fi fr he hu it nl no pl pt ro ru sk sl sv tr wa"
# fix the value of the prefixes.
test "x$prefix" = xNONE && prefix=$ac_default_prefix

View File

@ -1,3 +1,7 @@
2002-01-17 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* languages: fix slovak entry
2002-01-16 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* examples/fr_EtiquetteMath.lyx: removed

View File

@ -43,7 +43,7 @@ scottish scottish "Scottish" false iso8859-1 gd_GB ""
serbian croatian "Serbian" false iso8859-5 sr ""
serbocroatian croatian "Serbo-Croatian" false iso8859-2 sh ""
spanish spanish "Spanish" false iso8859-1 es "\addto\extrasspanish{\bbl@deactivate{~}}"
slovak slovak "Slovak" false iso8859-2 sk_SL ""
slovak slovak "Slovak" false iso8859-2 sk_SK ""
slovene slovene "Slovene" false iso8859-2 sl_SI ""
swedish swedish "Swedish" false iso8859-1 sv_SE ""
thai thai "Thai" false tis620-0 th_TH "\usepackage{thswitch}"

View File

@ -1,3 +1,7 @@
2002-01-17 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* sk.po: new translation from Zdeno Podobný <zdpo@mailbox.sk>
2001-11-04 John Levon <moz@compsoc.man.ac.uk>
* Makefile.in.in: consider Qt2 dialogs for translation

8326
po/sk.po Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,8 @@
2002-01-17 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* CutAndPaste.C (pasteSelection): move the setInsetOwner call at
the beginning of the loop.
2002-01-17 John Levon <moz@compsoc.man.ac.uk>
* lyxrc.C: improve help for use_scalable_fonts

View File

@ -270,6 +270,8 @@ bool CutAndPaste::pasteSelection(Paragraph ** par, Paragraph ** endpar,
// new environment and set also another font if that is required
tmpbuf = buf;
while(tmpbuf) {
// set the inset owner of this paragraph
tmpbuf->setInsetOwner((*par)->inInset());
for(pos_type i = 0; i < tmpbuf->size(); ++i) {
if (tmpbuf->getChar(i) == Paragraph::META_INSET) {
if (!(*par)->insetAllowed(tmpbuf->getInset(i)->lyxCode()))
@ -286,8 +288,6 @@ bool CutAndPaste::pasteSelection(Paragraph ** par, Paragraph ** endpar,
}
}
}
// set the inset owner of this paragraph
tmpbuf->setInsetOwner((*par)->inInset());
tmpbuf = tmpbuf->next();
}