mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
fix file order in lyx.pot
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8185 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
5ea277209f
commit
ab49553ba3
@ -1,3 +1,7 @@
|
|||||||
|
2003-11-28 Michael Schmitt <michael.schmitt@teststep.org>
|
||||||
|
|
||||||
|
* Makefile.in.in: always create pot files with LC_ALL="C"
|
||||||
|
|
||||||
2003-11-14 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
2003-11-14 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||||
|
|
||||||
* Makefile.in.in (xforms_l10n.pot): skip entries in symbol font
|
* Makefile.in.in (xforms_l10n.pot): skip entries in symbol font
|
||||||
|
@ -197,11 +197,12 @@ Makefile: Makefile.in.in $(top_builddir)/config.status POTFILES.in
|
|||||||
$(SHELL) ./config.status
|
$(SHELL) ./config.status
|
||||||
|
|
||||||
${srcdir}/POTFILES.in: $(POTFILE_IN_DEPS)
|
${srcdir}/POTFILES.in: $(POTFILE_IN_DEPS)
|
||||||
|
LC_ALL=C ; export LC_ALL ; \
|
||||||
rm -f $@-t \
|
rm -f $@-t \
|
||||||
&& ( cd $(top_srcdir); \
|
&& ( cd $(top_srcdir); \
|
||||||
grep -l "_(\".*\")" `find src -name \*.[hHC] -print` |\
|
grep -l "_(\".*\")" `find src -name \*.[hHC] -print` |\
|
||||||
sed -e '/xforms.forms/d' | \
|
sed -e '/xforms.forms/d' | \
|
||||||
LC_COLLATE=C sort | uniq ) > $@-t \
|
sort | uniq ) > $@-t \
|
||||||
&& mv $@-t $@
|
&& mv $@-t $@
|
||||||
|
|
||||||
|
|
||||||
@ -211,6 +212,7 @@ l10n_pots: $(srcdir)/xforms_l10n.pot $(srcdir)/qt_l10n.pot $(srcdir)/layouts_l10
|
|||||||
|
|
||||||
$(srcdir)/xforms_l10n.pot: $(top_srcdir)/src/frontends/xforms/forms/*.fd
|
$(srcdir)/xforms_l10n.pot: $(top_srcdir)/src/frontends/xforms/forms/*.fd
|
||||||
cd ${srcdir} ; \
|
cd ${srcdir} ; \
|
||||||
|
LC_ALL=C ; export LC_ALL ; \
|
||||||
awk ' \
|
awk ' \
|
||||||
BEGIN { \
|
BEGIN { \
|
||||||
print "#, fuzzy"; \
|
print "#, fuzzy"; \
|
||||||
@ -236,6 +238,7 @@ $(srcdir)/xforms_l10n.pot: $(top_srcdir)/src/frontends/xforms/forms/*.fd
|
|||||||
|
|
||||||
$(srcdir)/qt_l10n.pot: $(top_srcdir)/src/frontends/qt2/ui/*.ui
|
$(srcdir)/qt_l10n.pot: $(top_srcdir)/src/frontends/qt2/ui/*.ui
|
||||||
cd ${srcdir} ; \
|
cd ${srcdir} ; \
|
||||||
|
LC_ALL=C ; export LC_ALL ; \
|
||||||
awk ' \
|
awk ' \
|
||||||
/<string>/ { \
|
/<string>/ { \
|
||||||
line=$$0; \
|
line=$$0; \
|
||||||
@ -253,6 +256,7 @@ $(srcdir)/qt_l10n.pot: $(top_srcdir)/src/frontends/qt2/ui/*.ui
|
|||||||
|
|
||||||
$(srcdir)/layouts_l10n.pot: $(top_srcdir)/lib/layouts/*.layout $(top_srcdir)/lib/layouts/*.inc
|
$(srcdir)/layouts_l10n.pot: $(top_srcdir)/lib/layouts/*.layout $(top_srcdir)/lib/layouts/*.inc
|
||||||
cd ${srcdir} ; \
|
cd ${srcdir} ; \
|
||||||
|
LC_ALL=C ; export LC_ALL ; \
|
||||||
awk ' \
|
awk ' \
|
||||||
/^Style / { \
|
/^Style / { \
|
||||||
line=$$0; \
|
line=$$0; \
|
||||||
@ -285,6 +289,7 @@ $(srcdir)/languages_l10n.pot: $(top_srcdir)/lib/languages
|
|||||||
|
|
||||||
$(srcdir)/ui_l10n.pot: $(top_srcdir)/lib/ui/*.ui
|
$(srcdir)/ui_l10n.pot: $(top_srcdir)/lib/ui/*.ui
|
||||||
cd ${srcdir} ; \
|
cd ${srcdir} ; \
|
||||||
|
LC_ALL=C ; export LC_ALL ; \
|
||||||
awk ' \
|
awk ' \
|
||||||
/^[^#]*Submenu/ { \
|
/^[^#]*Submenu/ { \
|
||||||
line=$$0; \
|
line=$$0; \
|
||||||
|
Loading…
Reference in New Issue
Block a user