mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-02 08:10:39 +00:00
slovak support
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3406 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
605797c1b4
commit
637e368f1c
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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}"
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user