mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 18:43:37 +00:00
some more gettext work
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8783 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
225610e3e0
commit
7cda6341ca
@ -4,3 +4,4 @@ ref-add.sed
|
||||
ref-del.sed
|
||||
po2tbl.sed
|
||||
Makefile
|
||||
libgnuintl.h
|
||||
|
@ -1,4 +1,12 @@
|
||||
2004-05-27 Lars Gullik Bjonnes <larsbj@gullik.net>
|
||||
|
||||
* .cvsignore: add libgnuintl.h
|
||||
|
||||
2004-05-26 Lars Gullik Bjonnes <larsbj@gullik.net>
|
||||
|
||||
* libgnuintl.h: remove from cvs
|
||||
* plurar.c: update
|
||||
|
||||
2004-01-29 GNU <bug-gnu-gettext@gnu.org>
|
||||
|
||||
* Version 0.14.1 released.
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
2004-05-27 Lars Gullik Bjonnes <larsbj@gullik.net>
|
||||
|
||||
* Makevars (XGETTEXT_OPTIONS): set the language explictly.
|
||||
|
||||
2004-05-26 Lars Gullik Bjonnes <larsbj@gullik.net>
|
||||
|
||||
* Makefile.in.in: change how we generate POTFILES.in a bit
|
||||
|
@ -8,7 +8,7 @@ subdir = po
|
||||
top_builddir = ..
|
||||
|
||||
# These options get passed to xgettext.
|
||||
XGETTEXT_OPTIONS = --join-existing --keyword=_ --keyword=N_ --keyword=qt_
|
||||
XGETTEXT_OPTIONS = --language=C++ --join-existing --keyword=_ --keyword=N_ --keyword=qt_
|
||||
|
||||
# This is the copyright holder that gets inserted into the header of the
|
||||
# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
|
||||
|
@ -1,3 +1,10 @@
|
||||
2004-05-27 Lars Gullik Bjonnes <larsbj@gullik.net>
|
||||
|
||||
* Makefile.am (BUILT_SOURCES): move lengthcommon.C from here...
|
||||
(tex2lyx_SOURCES): ... to here
|
||||
|
||||
* lengthcommon.C: new file
|
||||
|
||||
2004-04-30 Georg Baum <Georg.Baum@post.rwth-aachen.de>
|
||||
|
||||
* preamble.C: recognize \lyxdot
|
||||
|
@ -2,7 +2,7 @@ include $(top_srcdir)/config/common.am
|
||||
|
||||
INCLUDES = -I$(srcdir)/../ $(BOOST_INCLUDES)
|
||||
EXTRA_DIST = test-structure.tex test-insets.tex
|
||||
DISTCLEANFILES += $(linked_files)
|
||||
DISTCLEANFILES += $(BUILT_SOURCES)
|
||||
|
||||
#noinst_LTLIBRARIES = libtexparser.la
|
||||
#
|
||||
@ -18,7 +18,6 @@ BUILT_SOURCES = \
|
||||
FloatList.C \
|
||||
Floating.C \
|
||||
counters.C \
|
||||
lengthcommon.C \
|
||||
lyxlayout.h \
|
||||
lyxlayout.C \
|
||||
lyxtextclass.C \
|
||||
@ -34,6 +33,7 @@ tex2lyx_SOURCES = \
|
||||
context.h \
|
||||
gettext.C \
|
||||
gettext.h \
|
||||
lengthcommon.C \
|
||||
lyxfont.C \
|
||||
lyxfont.h \
|
||||
texparser.C \
|
||||
@ -54,4 +54,4 @@ $(BUILT_SOURCES) :
|
||||
$(LN_S) $(top_srcdir)/src/$@ .
|
||||
|
||||
rm_link_files:
|
||||
rm -f $(linked_files)
|
||||
rm -f $(BUILT_SOURCES)
|
||||
|
7
src/tex2lyx/lengthcommon.C
Normal file
7
src/tex2lyx/lengthcommon.C
Normal file
@ -0,0 +1,7 @@
|
||||
// This file is here sine the master lengthcommon.C contains gettext
|
||||
// markers, and also that this file does not always exist (in the linked
|
||||
// case). So it is possible for po/POTFILES.in to get out of sync.
|
||||
// The compile will then fail. So to make sure that this file
|
||||
//(tex2lyx/lengthcommon.C) is not present in POTFILES.in we do a
|
||||
// include trick. (Lgb)
|
||||
#include "../lengthcommon.C"
|
Loading…
Reference in New Issue
Block a user