]> git.lyx.org Git - features.git/log
features.git
13 years agoSwedish updates from Jim
Pavel Sanda [Thu, 28 Apr 2011 20:10:24 +0000 (20:10 +0000)]
Swedish updates from Jim

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38547 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoUpdate eu.po from Inaki Larranaga Murgoitio
Pavel Sanda [Thu, 28 Apr 2011 11:13:11 +0000 (11:13 +0000)]
Update eu.po from Inaki Larranaga Murgoitio

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38543 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoLayouttranslation ja.po fixes from Koji
Pavel Sanda [Thu, 28 Apr 2011 08:10:41 +0000 (08:10 +0000)]
Layouttranslation ja.po fixes from Koji

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38542 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoadjust spell checker section, add cursor width feature
Stephan Witt [Wed, 27 Apr 2011 23:02:31 +0000 (23:02 +0000)]
adjust spell checker section, add cursor width feature

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38541 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agocorrect path of reload.png image - has to be relative
Stephan Witt [Wed, 27 Apr 2011 20:18:02 +0000 (20:18 +0000)]
correct path of reload.png image - has to be relative

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38540 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoLayout translation tweaks from Julio & Ignacio
Pavel Sanda [Wed, 27 Apr 2011 16:35:43 +0000 (16:35 +0000)]
Layout translation tweaks from Julio & Ignacio

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38539 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoUpdate of sv.po from Jim Rotmalm
Pavel Sanda [Wed, 27 Apr 2011 11:49:51 +0000 (11:49 +0000)]
Update of sv.po from Jim Rotmalm

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38537 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoImprove Romanian layout translations from Liviu and Marius
Pavel Sanda [Wed, 27 Apr 2011 09:09:45 +0000 (09:09 +0000)]
Improve Romanian layout translations from Liviu and Marius

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38535 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoRegenerate layouttranslations for ro.po
Pavel Sanda [Wed, 27 Apr 2011 08:35:20 +0000 (08:35 +0000)]
Regenerate layouttranslations for ro.po

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38534 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoUpdate ro.po from Liviu, accepted by Marius
Pavel Sanda [Wed, 27 Apr 2011 08:35:17 +0000 (08:35 +0000)]
Update ro.po from Liviu, accepted by Marius

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38533 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoFix bug #7490.
Richard Heck [Tue, 26 Apr 2011 22:41:48 +0000 (22:41 +0000)]
Fix bug #7490.

As the bug report notes, you do NOT get this crash if you move up or
down in the table a bit before you do the rest. The reason is that
moving up and down sets the cursor's x_target_, and it is because that
is not set that we enter the other code at all and eventually crash.
That is, in InsetTabular's dispatch, we have:

(*) cur.pos() = tm.x2pos(cur.pit(), pm.rows().size()-1, cur.targetX());

You can see the potential for trouble here already. cur.pit() is in the
NEW cell, i.e., the one to which we are moving; it was changed a few
lines previously, and cur.idx() points to the new cell, too. But we are
trying to calculate cur.pos(), which means that cur.pos() is currently
the one from the OLD cell. So the cursor is in an inconsistent state.
Calling cur.targetX() leads us to call Cursor::getPos(), and that is
what causes the crash.

We fix the problem by making sure we call targetX() on the original
cursor. The same problem clearly exists in the DOWN stuff, so we fix
that, too.

By the way, should we be setting x_target_ here once we have calculated
it?

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38530 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoru.po layouttranslation reviewed by Liviu, there is remaining question about Acknowle...
Pavel Sanda [Tue, 26 Apr 2011 22:18:19 +0000 (22:18 +0000)]
ru.po layouttranslation reviewed by Liviu, there is remaining question about Acknowledgement string.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38529 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoDisable the option to run LyX from the finish page for now. This would run LyX using...
Joost Verburg [Tue, 26 Apr 2011 21:33:32 +0000 (21:33 +0000)]
Disable the option to run LyX from the finish page for now. This would run LyX using the Administrator account if installing for all users, resulting in a different user directory to be used with different preferences etc.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38528 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoInstall complete Python instead of subset. Fixes #7485 and #7405.
Joost Verburg [Tue, 26 Apr 2011 21:29:32 +0000 (21:29 +0000)]
Install complete Python instead of subset. Fixes #7485 and #7405.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38527 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoRegenerate layouttranslations for hu.po
Pavel Sanda [Tue, 26 Apr 2011 19:33:44 +0000 (19:33 +0000)]
Regenerate layouttranslations for hu.po

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38525 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* hu.po from Szoke Sandor
Pavel Sanda [Tue, 26 Apr 2011 19:33:42 +0000 (19:33 +0000)]
* hu.po from Szoke Sandor

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38524 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoDocumentation for Swedish from Jim Rotmalm
Pavel Sanda [Tue, 26 Apr 2011 17:04:30 +0000 (17:04 +0000)]
Documentation for Swedish from Jim Rotmalm

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38523 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoRegenerate layouttranslations for sv.po
Pavel Sanda [Tue, 26 Apr 2011 16:55:28 +0000 (16:55 +0000)]
Regenerate layouttranslations for sv.po

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38521 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* sv.po from Jim Rotmalm
Pavel Sanda [Tue, 26 Apr 2011 16:55:25 +0000 (16:55 +0000)]
* sv.po from Jim Rotmalm

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38520 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoRegenerate layouttranslations for ro.po
Pavel Sanda [Tue, 26 Apr 2011 15:34:03 +0000 (15:34 +0000)]
Regenerate layouttranslations for ro.po

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38518 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* ro.po from Marius Ionescu
Pavel Sanda [Tue, 26 Apr 2011 15:34:01 +0000 (15:34 +0000)]
* ro.po from Marius Ionescu

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38517 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoFinish nn.po as adviced by Ingar.
Pavel Sanda [Tue, 26 Apr 2011 14:26:46 +0000 (14:26 +0000)]
Finish nn.po as adviced by Ingar.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38515 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoFinal manuals from Ignacio
Pavel Sanda [Tue, 26 Apr 2011 11:06:52 +0000 (11:06 +0000)]
Final manuals from Ignacio

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38514 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoStrings remerge
Pavel Sanda [Tue, 26 Apr 2011 10:59:27 +0000 (10:59 +0000)]
Strings remerge

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38512 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoFinal es.po from Ignacio
Pavel Sanda [Tue, 26 Apr 2011 10:58:18 +0000 (10:58 +0000)]
Final es.po from Ignacio

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38511 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoNext fixes from Susana for pt.po
Pavel Sanda [Tue, 26 Apr 2011 10:09:43 +0000 (10:09 +0000)]
Next fixes from Susana for pt.po

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38510 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoRegenerate layouttranslations for pt
Pavel Sanda [Tue, 26 Apr 2011 08:20:47 +0000 (08:20 +0000)]
Regenerate layouttranslations for pt

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38508 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* pt.po from Susana Barbosa
Pavel Sanda [Tue, 26 Apr 2011 08:20:44 +0000 (08:20 +0000)]
* pt.po from Susana Barbosa

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38507 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoRegenerate layouttranslations
Pavel Sanda [Tue, 26 Apr 2011 08:11:46 +0000 (08:11 +0000)]
Regenerate layouttranslations

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38506 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agohe.po layout translations from Richman Reuven
Pavel Sanda [Tue, 26 Apr 2011 08:11:44 +0000 (08:11 +0000)]
he.po layout translations from Richman Reuven

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38505 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* generate_contributions.py
Pavel Sanda [Tue, 26 Apr 2011 00:49:33 +0000 (00:49 +0000)]
* generate_contributions.py

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38502 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoAdditional work on he.po from Richman Reuven.
Pavel Sanda [Tue, 26 Apr 2011 00:28:55 +0000 (00:28 +0000)]
Additional work on he.po from Richman Reuven.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38500 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* generate_contributions.py
Pavel Sanda [Mon, 25 Apr 2011 23:47:10 +0000 (23:47 +0000)]
* generate_contributions.py

We know the contact internally.
We accept only code where the source can be tracked back in case some licensing issues happen.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38499 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoForgot this part of r38496. See
Richard Heck [Mon, 25 Apr 2011 22:30:22 +0000 (22:30 +0000)]
Forgot this part of r38496. See
http://www.mail-archive.com/lyx-
for the reason it needs to be here.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38497 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoFix crash when there are text insets in a table cell with decimal alignment. This...
Richard Heck [Mon, 25 Apr 2011 12:56:09 +0000 (12:56 +0000)]
Fix crash when there are text insets in a table cell with decimal alignment. This is discussed in these threads:
http://marc.info/?t=115869271700002&r=1&w=2&n=5
http://marc.info/?t=130349942500005&r=1&w=2&n=17
This is the simpler and more conservative of the two solutions proposed. It is possible,
however, that we need the more complicated one, which is in x2a.patch here:
http://marc.info/?l=lyx-devel&m=130359169107401&q=p4
Both patches contain work by me and Edwin.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38496 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agomove call stack code, add TODOs
Peter Kümmel [Mon, 25 Apr 2011 09:14:50 +0000 (09:14 +0000)]
move call stack code, add TODOs
(only disabled code is touched)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38494 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoUpdate all English docs to current format.
Richard Heck [Mon, 25 Apr 2011 02:07:32 +0000 (02:07 +0000)]
Update all English docs to current format.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38490 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoWe no longer write such detailed information to the header.
Richard Heck [Mon, 25 Apr 2011 01:58:25 +0000 (01:58 +0000)]
We no longer write such detailed information to the header.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38489 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoUser Guide will not export to 1.6.x. This ID can be negative!
Richard Heck [Mon, 25 Apr 2011 01:47:10 +0000 (01:47 +0000)]
User Guide will not export to 1.6.x. This ID can be negative!

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38486 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoJust whitespace and a comment.
Richard Heck [Mon, 25 Apr 2011 01:46:37 +0000 (01:46 +0000)]
Just whitespace and a comment.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38485 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agode.po: "rechtschreib-prüfen" is, to my best knowledge, not a common German verb.
Jürgen Spitzmüller [Sat, 23 Apr 2011 17:15:18 +0000 (17:15 +0000)]
de.po: "rechtschreib-prüfen" is, to my best knowledge, not a common German verb.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38484 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoMake it buildable on linux again. (LYX_DATA_SUBDIR is on non-windows defined as '').
Kornel Benko [Sat, 23 Apr 2011 14:15:32 +0000 (14:15 +0000)]
Make it buildable on linux again. (LYX_DATA_SUBDIR is on non-windows defined as '').

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38483 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* de.po: small enhancement.
Jürgen Spitzmüller [Sat, 23 Apr 2011 10:24:24 +0000 (10:24 +0000)]
* de.po: small enhancement.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38482 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoAdded test for crash in current trunk (i.e., this is failing now).
Tommaso Cucinotta [Fri, 22 Apr 2011 22:23:42 +0000 (22:23 +0000)]
Added test for crash in current trunk (i.e., this is failing now).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38478 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoAdded check for assertions or anomalous exits of LyX on TestEnd.
Tommaso Cucinotta [Fri, 22 Apr 2011 22:23:16 +0000 (22:23 +0000)]
Added check for assertions or anomalous exits of LyX on TestEnd.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38477 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoFix deletion of empty last row for \smallmatrix (part of bug #7484).
Enrico Forestieri [Fri, 22 Apr 2011 15:06:59 +0000 (15:06 +0000)]
Fix deletion of empty last row for \smallmatrix (part of bug #7484).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38475 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agocmake: fix wrong installation path of 'layouttranslations' (the already existing...
Peter Kümmel [Fri, 22 Apr 2011 12:53:48 +0000 (12:53 +0000)]
cmake: fix wrong installation path of 'layouttranslations' (the already existing file in lib/)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38474 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agodemangle names of call stack, thx to JM for the <cxxabi.h> tip
Peter Kümmel [Thu, 21 Apr 2011 20:07:08 +0000 (20:07 +0000)]
demangle names of call stack, thx to JM for the <cxxabi.h> tip

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38473 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* generate_contributions.py
Pavel Sanda [Thu, 21 Apr 2011 13:35:10 +0000 (13:35 +0000)]
* generate_contributions.py

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38470 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoFix #7479
Pavel Sanda [Wed, 20 Apr 2011 20:52:53 +0000 (20:52 +0000)]
Fix #7479

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38469 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoJapanese translation of Feynman Diagrams from Koji
Pavel Sanda [Wed, 20 Apr 2011 18:19:22 +0000 (18:19 +0000)]
Japanese translation of Feynman Diagrams from Koji

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38467 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agolayouttranslations from da.po
Pavel Sanda [Wed, 20 Apr 2011 13:44:51 +0000 (13:44 +0000)]
layouttranslations from da.po

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38465 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoBack from red region
Pavel Sanda [Wed, 20 Apr 2011 13:44:50 +0000 (13:44 +0000)]
Back from red region

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38464 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoRemerge da.po
Pavel Sanda [Wed, 20 Apr 2011 13:44:49 +0000 (13:44 +0000)]
Remerge da.po

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38463 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoFirst part of da.po revision.
Pavel Sanda [Wed, 20 Apr 2011 13:44:46 +0000 (13:44 +0000)]
First part of da.po revision.
Translation from Jesper Stemann Andersen.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38462 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* uk.po from Yuri
Pavel Sanda [Wed, 20 Apr 2011 12:33:59 +0000 (12:33 +0000)]
* uk.po from Yuri

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38460 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoFix assertion in pl.po
Pavel Sanda [Tue, 19 Apr 2011 07:35:48 +0000 (07:35 +0000)]
Fix assertion in pl.po

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38456 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoJapanese layouttranslation fixes
Pavel Sanda [Tue, 19 Apr 2011 07:27:01 +0000 (07:27 +0000)]
Japanese layouttranslation fixes

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38453 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* ja.po from Koji
Pavel Sanda [Tue, 19 Apr 2011 07:25:18 +0000 (07:25 +0000)]
* ja.po from Koji

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38452 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoRevert r38431 for now, at least. Thanks to Enrico for pointing out
Richard Heck [Tue, 19 Apr 2011 00:50:24 +0000 (00:50 +0000)]
Revert r38431 for now, at least. Thanks to Enrico for pointing out
why that is a good idea.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38451 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* id.po from Waluyo
Pavel Sanda [Tue, 19 Apr 2011 00:48:13 +0000 (00:48 +0000)]
* id.po from Waluyo

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38449 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* pl.po remerge by autotools
Pavel Sanda [Mon, 18 Apr 2011 23:50:52 +0000 (23:50 +0000)]
* pl.po remerge by autotools

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38448 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agopl.po: Michał's completely overhauled version for 2.0 (which is now also compilable)
Uwe Stöhr [Mon, 18 Apr 2011 22:10:18 +0000 (22:10 +0000)]
pl.po: Michał's completely overhauled version for 2.0 (which is now also compilable)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38447 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agopl.po: please Michał and remove file content before adding his new version (r38443...
Uwe Stöhr [Mon, 18 Apr 2011 22:03:58 +0000 (22:03 +0000)]
pl.po: please Michał and remove file content before adding his new version (r38443 was a merge which he did not wanted and his current version is different from r38443)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38446 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* layouttranslations for pl.po
Pavel Sanda [Mon, 18 Apr 2011 21:57:30 +0000 (21:57 +0000)]
* layouttranslations for pl.po

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38444 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* pl.po from Michal Fita
Pavel Sanda [Mon, 18 Apr 2011 21:55:05 +0000 (21:55 +0000)]
* pl.po from Michal Fita

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38443 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoia.po: updates from g.sora
Uwe Stöhr [Mon, 18 Apr 2011 15:31:57 +0000 (15:31 +0000)]
ia.po: updates from g.sora

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38440 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agofr.po: fix tipo
Uwe Stöhr [Mon, 18 Apr 2011 15:02:50 +0000 (15:02 +0000)]
fr.po: fix tipo

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38439 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* PDFOptions.cpp:
Jürgen Spitzmüller [Mon, 18 Apr 2011 10:55:11 +0000 (10:55 +0000)]
* PDFOptions.cpp:
If a class has already loaded hyperref (i.e., if \hypersetup is already defined),
immediately issue \hypersetup to prevent a LaTeX error (bug #7459).

This still assures that \hypersetup is called \AtBeginDocument if hyperref is loaded by
a class \AtBeginDocument (such as modernCV, see #7048).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38438 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoRegenerate layouttranslation for fr.po
Pavel Sanda [Mon, 18 Apr 2011 10:49:09 +0000 (10:49 +0000)]
Regenerate layouttranslation for fr.po

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38437 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoKill illegal non-utf8 character (breaks layttranslation generation)
Pavel Sanda [Mon, 18 Apr 2011 10:49:08 +0000 (10:49 +0000)]
Kill illegal non-utf8 character (breaks layttranslation generation)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38436 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* fr.po from Jean-Pierre
Pavel Sanda [Mon, 18 Apr 2011 10:49:05 +0000 (10:49 +0000)]
* fr.po from Jean-Pierre

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38435 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoNow how do you think that happened?
Richard Heck [Mon, 18 Apr 2011 02:23:09 +0000 (02:23 +0000)]
Now how do you think that happened?

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38433 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoRemove pointless variable.
Richard Heck [Mon, 18 Apr 2011 02:11:24 +0000 (02:11 +0000)]
Remove pointless variable.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38432 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoRemove pointless variable.
Richard Heck [Mon, 18 Apr 2011 01:49:23 +0000 (01:49 +0000)]
Remove pointless variable.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38431 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoFairly trivial change here: Just protect against inheriting limits to
Richard Heck [Mon, 18 Apr 2011 01:42:01 +0000 (01:42 +0000)]
Fairly trivial change here: Just protect against inheriting limits to
output.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38430 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoremove extra whitespace
Julien Rioux [Sun, 17 Apr 2011 18:52:49 +0000 (18:52 +0000)]
remove extra whitespace

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38429 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoNo need to spellcheck lilypond code snippets.
Julien Rioux [Sun, 17 Apr 2011 18:30:34 +0000 (18:30 +0000)]
No need to spellcheck lilypond code snippets.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38428 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* sweave.module
Julien Rioux [Sun, 17 Apr 2011 18:12:31 +0000 (18:12 +0000)]
* sweave.module
  Use AddToPreamble here. We don't want to overwrite the preamble from the layout file.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38427 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agostdlyxlist.inc: add missing things from r38424
Uwe Stöhr [Sun, 17 Apr 2011 03:47:58 +0000 (03:47 +0000)]
stdlyxlist.inc: add missing things from r38424
(I'm back home.)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38426 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoWhitespace.
Richard Heck [Sun, 17 Apr 2011 00:53:05 +0000 (00:53 +0000)]
Whitespace.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38425 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoForgot new file.
Richard Heck [Sun, 17 Apr 2011 00:51:03 +0000 (00:51 +0000)]
Forgot new file.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38424 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoFix up the enumitem module by separating out the Labeling code, so that
Richard Heck [Sun, 17 Apr 2011 00:50:31 +0000 (00:50 +0000)]
Fix up the enumitem module by separating out the Labeling code, so that
we do not have to copy and paste it.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38423 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agowhitespace
Richard Heck [Sun, 17 Apr 2011 00:45:07 +0000 (00:45 +0000)]
whitespace

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38422 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoThe copy and paste done here is out of date.
Richard Heck [Sun, 17 Apr 2011 00:34:25 +0000 (00:34 +0000)]
The copy and paste done here is out of date.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38421 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoReformatting, etc, of enumitem.
Richard Heck [Sun, 17 Apr 2011 00:28:15 +0000 (00:28 +0000)]
Reformatting, etc, of enumitem.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38420 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoRepair the NextNoIndent docs.
Richard Heck [Sat, 16 Apr 2011 20:21:30 +0000 (20:21 +0000)]
Repair the NextNoIndent docs.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38419 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoGroup all the changes here together, so the translators can understand it.
Richard Heck [Sat, 16 Apr 2011 20:02:55 +0000 (20:02 +0000)]
Group all the changes here together, so the translators can understand it.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38418 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoSmall clarification about 'LyX Archives'
Enrico Forestieri [Sat, 16 Apr 2011 16:27:40 +0000 (16:27 +0000)]
Small clarification about 'LyX Archives'

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38417 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoFix correct operation of lyxpak.py when using the '-t' or '-z' switches.
Enrico Forestieri [Sat, 16 Apr 2011 16:22:58 +0000 (16:22 +0000)]
Fix correct operation of lyxpak.py when using the '-t' or '-z' switches.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38416 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoLyX Archives
Richard Heck [Sat, 16 Apr 2011 14:25:12 +0000 (14:25 +0000)]
LyX Archives

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38415 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoLocal Layout Docs Again
Richard Heck [Sat, 16 Apr 2011 14:16:35 +0000 (14:16 +0000)]
Local Layout Docs Again

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38414 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoLocal Layout Docs
Richard Heck [Sat, 16 Apr 2011 14:16:22 +0000 (14:16 +0000)]
Local Layout Docs

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38413 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoOutliner docs
Richard Heck [Sat, 16 Apr 2011 13:46:58 +0000 (13:46 +0000)]
Outliner docs

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38412 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoA few clarifications, more TODOs.
Tommaso Cucinotta [Sat, 16 Apr 2011 10:58:20 +0000 (10:58 +0000)]
A few clarifications, more TODOs.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38411 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoNearly cosmetics.
Tommaso Cucinotta [Sat, 16 Apr 2011 10:48:55 +0000 (10:48 +0000)]
Nearly cosmetics.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38410 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoUpdate it.po
Enrico Forestieri [Fri, 15 Apr 2011 23:31:30 +0000 (23:31 +0000)]
Update it.po

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38409 a592a061-630c-0410-9148-cb99ea01b6c8

13 years ago* ia.po from G.Sora
Pavel Sanda [Fri, 15 Apr 2011 21:33:09 +0000 (21:33 +0000)]
* ia.po from G.Sora

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38406 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoExtracting translation information does not help if you don't actually
Richard Heck [Fri, 15 Apr 2011 11:34:06 +0000 (11:34 +0000)]
Extracting translation information does not help if you don't actually
use it to translate the message. (Note that this is presently used only
for XHTML output.)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38405 a592a061-630c-0410-9148-cb99ea01b6c8

13 years agoForgot to change this in XHTML output, so formatted references weren't
Richard Heck [Fri, 15 Apr 2011 11:28:56 +0000 (11:28 +0000)]
Forgot to change this in XHTML output, so formatted references weren't
getting output properly.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38404 a592a061-630c-0410-9148-cb99ea01b6c8