Translate ini files too
parent
0cc33c80e3
commit
c28f983c3f
|
@ -3,14 +3,24 @@ SUBDIRS = pyproject
|
||||||
moopython_pluginsdir = $(MOO_LIB_DIR)/plugins
|
moopython_pluginsdir = $(MOO_LIB_DIR)/plugins
|
||||||
moopython_plugins_libdir = $(MOO_LIB_DIR)/plugins/lib
|
moopython_plugins_libdir = $(MOO_LIB_DIR)/plugins/lib
|
||||||
|
|
||||||
moopython_plugins_DATA = \
|
ini_in_files = console.ini.in
|
||||||
console.ini \
|
%.ini: %.ini.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@
|
||||||
|
ini_files = $(ini_in_files:.ini.in=.ini)
|
||||||
|
|
||||||
|
plugins = \
|
||||||
console.py \
|
console.py \
|
||||||
python.py
|
python.py
|
||||||
|
|
||||||
|
moopython_plugins_DATA = \
|
||||||
|
$(ini_files) \
|
||||||
|
$(plugins)
|
||||||
|
|
||||||
moopython_plugins_lib_DATA = \
|
moopython_plugins_lib_DATA = \
|
||||||
pyconsole.py
|
pyconsole.py
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
$(moopython_plugins_DATA) \
|
$(moopython_plugins_lib_DATA) \
|
||||||
$(moopython_plugins_lib_DATA)
|
$(plugins) \
|
||||||
|
$(ini_in_files)
|
||||||
|
|
||||||
|
CLEANFILES = $(ini_files)
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
[module]
|
|
||||||
type = Python
|
|
||||||
file = console.py
|
|
||||||
version = 0.7
|
|
||||||
|
|
||||||
[plugin]
|
|
||||||
id = Console
|
|
||||||
name = Console
|
|
||||||
description = Console
|
|
||||||
author = Yevgen Muntyan <muntyan@math.tamu.edu>
|
|
||||||
version = 3.1415926
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
[module]
|
||||||
|
type=Python
|
||||||
|
file=console.py
|
||||||
|
version=0.7
|
||||||
|
|
||||||
|
[plugin]
|
||||||
|
id=Console
|
||||||
|
_name=Console
|
||||||
|
_description=Console
|
||||||
|
author=Yevgen Muntyan <muntyan@math.tamu.edu>
|
||||||
|
version=3.1415926
|
|
@ -29,3 +29,4 @@ moo/mooutils/moostock.c
|
||||||
moo/mooapp/mooappabout.c
|
moo/mooapp/mooappabout.c
|
||||||
moo/mooapp/mooapp.c
|
moo/mooapp/mooapp.c
|
||||||
tests/medit-ui.xml
|
tests/medit-ui.xml
|
||||||
|
moo/moopython/plugins/console.ini.desktop.in
|
||||||
|
|
Loading…
Reference in New Issue