mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
4ce743a0a7
* src/LyXAction.cpp: listing-insert action * src/insets/Inset.h,cpp: LISTINGS_CODE * src/insets/InsetInclude.cpp: handle \lstinputlisting * src/insets/InsetListings.h,cpp: new listings inset * src/insets/InsetListingsParams.h,cpp: parameters from listings package * src/insets/InsetCommandParams.h,cpp: handle lstinputlisting option * src/Bidi.cpp: handle LISTINGS_CODE * src/frontends/qt4/ui/TextLayoutUi.ui: update UI * src/frontends/qt4/ui/ListingsUi.ui: new dialog * src/frontends/qt4/ui/IncludeUi.ui: update UI * src/frontends/qt4/QInclude.h,cpp: add lstinputlisting * src/frontends/qt4/QDocument.h,cpp: add textedit for preamble listings_params * src/frontends/qt4/QListings.h,cpp: new listings inset * src/frontends/qt4/Dialogs.cpp: new listings dialog * src/frontends/controllers/ControlInclude.h,cpp: add lstinputlisting * src/frontends/controllers/ControlListings.h,cpp: new listings inset * src/LyXFunc.cpp: handle LISTING_CODE * src/Paragraph.cpp: handle LISTING_CODE * src/factory.cpp: new listings inset * src/CutAndPaste.cpp: handle LISTINGS_CODE * src/LaTeXFeatures.cpp: require listings * src/Text3.cpp: Handle LISTINGS_CODE * src/lfuns.h: add LFUN_LISTING_INSERT * src/Buffer.cpp: change lyx file format to 269 * src/BufferParams.h,cpp: add listings_params to preamble * lib/lyx2lyx/LyX.py: lyx2lyx * lib/lyx2lyx/lyx_1_5.py: lyx2lyx * lib/ui/stdmenus.inc: new menu item (no shortcut!) * src/insets/Makefile.am: update autotools * src/frontends/controllers/Makefile.am * src/frontends/qt4/Makefile.dialogs * src/frontends/qt4/Makefile.am * po/POTFILES.in: a few more translatable files. * development/scons/scons_manifest.py: scons build system * development/FORMAT: document format changes git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18243 a592a061-630c-0410-9148-cb99ea01b6c8 |
||
---|---|---|
.. | ||
bg.po | ||
boldquot.sed | ||
ca.po | ||
ChangeLog | ||
cs.po | ||
da.po | ||
de.po | ||
en@boldquot.header | ||
en@quot.header | ||
es.po | ||
eu.po | ||
fi.po | ||
fr.po | ||
gl.po | ||
he.po | ||
hu.po | ||
insert-header.sin | ||
it.po | ||
ja.po | ||
LINGUAS | ||
lyx_pot.py | ||
Makefile.in.in | ||
Makevars | ||
nb.po | ||
nl.po | ||
nn.po | ||
pl.po | ||
pocheck.pl | ||
postats.sh | ||
POTFILES.in | ||
pt.po | ||
quot.sed | ||
README | ||
remove-potcdate.sin | ||
ro.po | ||
ru.po | ||
Rules-quot | ||
sk.po | ||
sl.po | ||
sv.po | ||
tr.po | ||
wa.po |
This file is intended to provide information about the different translation files. If you want to make one for your language, please read "Help->Customization" for more information, and the information below. How can I update an existing po file? ------------------------------------- It requires a bit of work to get started, but once you are set up, the procedure should be relatively easy: 1) Getting ready Get and install gettext (available from ftp://alpha.gnu.org). Read the documentation for gettext. Then get the latest LyX distribution including patches, and unpack it in your home directory. It is yet better if you checkout the CVS version of LyX. Read the README in the LyX distribution. Check the mailing list archives to learn what is going on at the moment. Consider subscribing to the developer's mailing list, lyx-devel@lists.lyx.org. 2) Preparing a patch Now do (where XX stands for the code of your language): cp -R lyx-*.*.* lyx.new (Which makes a copy of the source distribution for you to change, but you should work in a CVS workarea) cd lyx.new/po/ make XX.pox (It merges the po file into the temporary file XX.pox) emacs XX.pox (Using po-mode. Emacs is convenient for po editing, but not mandatory.) (Make all necessary changes in XX.pox, and save.) mv XX.pox XX.po rm XX.pox~ (To remove Emacs autosave.) make XX.gmo (Update the ChangeLog file.) cd .. (Maybe update lib/CREDITS) cvs diff -u > XX_po_update.patch (Or whatever good method to have a patch in unified diff format) 3) Submitting the patch Check your patch and mail it to lyx-devel@lists.lyx.org Thanks! The LyX Team.