remove separate dir for po stuff

-Yosh
This commit is contained in:
Manish Singh 1999-09-24 01:05:55 +00:00
parent 3c3c9e5793
commit 8f677a146f
20 changed files with 2 additions and 2283 deletions

View File

@ -674,7 +674,6 @@ plug-ins/gpc/Makefile
plug-ins/dbbrowser/Makefile
plug-ins/script-fu/Makefile
plug-ins/script-fu/scripts/Makefile
plug-ins/script-fu/po/Makefile.in
plug-ins/webbrowser/Makefile
plug-ins/xjt/Makefile
plug-ins/AlienMap/Makefile
@ -735,7 +734,6 @@ tips/Makefile],
chmod +x gimptool
sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
sed -e "/POTFILES =/r po-plug-ins/POTFILES" po-plug-ins/Makefile.in > po-plug-ins/Makefile
sed -e "/POTFILES =/r plug-ins/script-fu/po/POTFILES" plug-ins/script-fu/po/Makefile.in > plug-ins/script-fu/po/Makefile
case "$CONFIG_FILES" in
*plug-ins/perl*)
if test -f plug-ins/perl/config.status; then

View File

@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in
SUBDIRS = scripts po
SUBDIRS = scripts
libexecdir = $(gimpplugindir)/plug-ins

View File

@ -1,9 +0,0 @@
*.gmo
*.mo
Makefile
Makefile.in
Makefile.in.in
POTFILES
cat-id-tbl.c
script-fu.pot
stamp-cat-id

View File

@ -1,248 +0,0 @@
# Makefile for program source directory in GNU NLS utilities package.
# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
#
# This file file be copied and used freely without restrictions. It can
# be used in projects which are not available under the GNU Public License
# but which still want to provide support for the GNU gettext functionality.
# Please note that the actual code is *not* freely available.
PACKAGE = script-fu
VERSION = @VERSION@
SHELL = /bin/sh
@SET_MAKE@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
datadir = $(prefix)/@DATADIRNAME@
localedir = $(datadir)/locale
gnulocaledir = $(prefix)/share/locale
gettextsrcdir = $(prefix)/share/gettext/po
subdir = plug-ins/script-fu/po
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
MKINSTALLDIRS = $(top_srcdir)/@MKINSTALLDIRS@
CC = @CC@
GENCAT = @GENCAT@
GMSGFMT = PATH=../src:$$PATH @GMSGFMT@
MSGFMT = @MSGFMT@
XGETTEXT = PATH=../src:$$PATH @XGETTEXT@
MSGMERGE = PATH=../src:$$PATH msgmerge
DEFS = @DEFS@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
INCLUDES = -I.. -I$(top_srcdir)/intl
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
SOURCES = cat-id-tbl.c
POFILES = @POFILES@
GMOFILES = @GMOFILES@
DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \
stamp-cat-id $(POFILES) $(GMOFILES) $(SOURCES)
POTFILES = \
CATALOGS = @CATALOGS@
CATOBJEXT = @CATOBJEXT@
INSTOBJEXT = @INSTOBJEXT@
.SUFFIXES:
.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
.c.o:
$(COMPILE) $<
.po.pox:
$(MAKE) $(PACKAGE).pot
$(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox
.po.mo:
$(MSGFMT) -o $@ $<
.po.gmo:
file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
&& rm -f $$file && $(GMSGFMT) -o $$file $<
.po.cat:
sed -f ../intl/po2msg.sed < $< > $*.msg \
&& rm -f $@ && $(GENCAT) $@ $*.msg
all: all-@USE_NLS@
all-yes: cat-id-tbl.c $(CATALOGS)
all-no:
$(srcdir)/$(PACKAGE).pot: $(POTFILES.in)
$(XGETTEXT) --default-domain=$(PACKAGE) --directory=.. \
--add-comments --keyword=_ --keyword=N_ \
--files-from=$(srcdir)/POTFILES.in \
&& test ! -f $(PACKAGE).po \
|| ( rm -f $(srcdir)/$(PACKAGE).pot \
&& mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot )
$(srcdir)/cat-id-tbl.c: stamp-cat-id; @:
$(srcdir)/stamp-cat-id: $(PACKAGE).pot
rm -f cat-id-tbl.tmp
sed -f ../intl/po2tbl.sed $(srcdir)/$(PACKAGE).pot \
| sed -e "s/@PACKAGE NAME@/$(PACKAGE)/" > cat-id-tbl.tmp
if cmp -s cat-id-tbl.tmp $(srcdir)/cat-id-tbl.c; then \
rm cat-id-tbl.tmp; \
else \
echo cat-id-tbl.c changed; \
rm -f $(srcdir)/cat-id-tbl.c; \
mv cat-id-tbl.tmp $(srcdir)/cat-id-tbl.c; \
fi
cd $(srcdir) && rm -f stamp-cat-id && echo timestamp > stamp-cat-id
install: install-exec install-data
install-exec:
install-data: install-data-@USE_NLS@
install-data-no: all
install-data-yes: all
if test -r "$(MKINSTALLDIRS)"; then \
$(MKINSTALLDIRS) $(datadir); \
else \
$(SHELL) $(top_srcdir)/mkinstalldirs $(datadir); \
fi
@catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
case "$$cat" in \
*.gmo) destdir=$(gnulocaledir);; \
*) destdir=$(localedir);; \
esac; \
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
dir=$$destdir/$$lang/LC_MESSAGES; \
if test -r "$(MKINSTALLDIRS)"; then \
$(MKINSTALLDIRS) $$dir; \
else \
$(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \
fi; \
if test -r $$cat; then \
$(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
echo "installing $$cat as $$dir/$(PACKAGE)$(INSTOBJEXT)"; \
else \
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \
echo "installing $(srcdir)/$$cat as" \
"$$dir/$(PACKAGE)$(INSTOBJEXT)"; \
fi; \
if test -r $$cat.m; then \
$(INSTALL_DATA) $$cat.m $$dir/$(PACKAGE)$(INSTOBJEXT).m; \
echo "installing $$cat.m as $$dir/$(PACKAGE)$(INSTOBJEXT).m"; \
else \
if test -r $(srcdir)/$$cat.m ; then \
$(INSTALL_DATA) $(srcdir)/$$cat.m \
$$dir/$(PACKAGE)$(INSTOBJEXT).m; \
echo "installing $(srcdir)/$$cat as" \
"$$dir/$(PACKAGE)$(INSTOBJEXT).m"; \
else \
true; \
fi; \
fi; \
done
if test "$(PACKAGE)" = "gettext"; then \
if test -r "$(MKINSTALLDIRS)"; then \
$(MKINSTALLDIRS) $(gettextsrcdir); \
else \
$(SHELL) $(top_srcdir)/mkinstalldirs $(gettextsrcdir); \
fi; \
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
$(gettextsrcdir)/Makefile.in.in; \
else \
: ; \
fi
# Define this as empty until I found a useful application.
installcheck:
uninstall:
catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
done
rm -f $(gettextsrcdir)/po-Makefile.in.in
check: all
cat-id-tbl.o: ../intl/libgettext.h
dvi info tags TAGS ID:
mostlyclean:
rm -f core core.* *.pox $(PACKAGE).po *.old.po cat-id-tbl.tmp
rm -fr *.o
clean: mostlyclean
distclean: clean
rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m
maintainer-clean: distclean
@echo "This command is intended for maintainers to use;"
@echo "it deletes files that may require special tools to rebuild."
rm -f $(GMOFILES)
distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
dist distdir: update-po $(DISTFILES)
dists="$(DISTFILES)"; \
for file in $$dists; do \
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|| cp -p $(srcdir)/$$file $(distdir); \
done
update-po: Makefile
$(MAKE) $(PACKAGE).pot
PATH=`pwd`/../src:$$PATH; \
cd $(srcdir); \
catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
mv $$lang.po $$lang.old.po; \
echo "$$lang:"; \
if $(MSGMERGE) $$lang.old.po $(PACKAGE).pot -o $$lang.po; then \
rm -f $$lang.old.po; \
else \
echo "msgmerge for $$cat failed!"; \
rm -f $$lang.po; \
mv $$lang.old.po $$lang.po; \
fi; \
done
POTFILES: POTFILES.in
( if test 'x$(srcdir)' != 'x.'; then \
posrcprefix='$(top_srcdir)/'; \
else \
posrcprefix="../"; \
fi; \
rm -f $@-t $@ \
&& (sed -e '/^#/d' -e '/^[ ]*$$/d' \
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
| sed -e '$$s/\\$$//') > $@-t \
&& chmod a-w $@-t \
&& mv $@-t $@ )
Makefile: Makefile.in.in ../../../config.status POTFILES
cd ../../.. \
&& CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
$(SHELL) ./config.status
# Tell versions [3.59,3.63) of GNU make not to export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

View File

@ -1,7 +0,0 @@
# Files from the Script-Fu distribution (include as standard GIMP Plugin)
# which have already been marked to allow runtime translation of messages
script-fu-console.c
script-fu-scripts.c
script-fu-server.c
script-fu.c

View File

@ -1,144 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-09-23 12:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: script-fu-console.c:156
msgid "Script-Fu console mode allows only interactive invocation"
msgstr ""
#: script-fu-console.c:192
msgid "Script-Fu Console"
msgstr ""
#. Action area
#: script-fu-console.c:204 script-fu-scripts.c:1902
msgid "Close"
msgstr ""
#. The info vbox
#: script-fu-console.c:212
msgid "SIOD Output"
msgstr ""
#. The current command
#: script-fu-console.c:289
msgid "Current Command"
msgstr ""
#: script-fu-console.c:310
msgid "Browse..."
msgstr ""
#: script-fu-console.c:568
msgid "Unable to open SIOD output pipe"
msgstr ""
#: script-fu-console.c:572
msgid "Unable to open a stream on the SIOD output pipe"
msgstr ""
#: script-fu-console.c:619
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
msgstr ""
#. the script arguments frame
#: script-fu-scripts.c:1155
msgid "Script Arguments"
msgstr ""
#: script-fu-scripts.c:1236
msgid "Script Toggle"
msgstr ""
#: script-fu-scripts.c:1289
msgid "Script-Fu File Selection"
msgstr ""
#: script-fu-scripts.c:1317
msgid "Script-fu Pattern Selection"
msgstr ""
#: script-fu-scripts.c:1323
msgid "Script-Fu Gradient Selection"
msgstr ""
#: script-fu-scripts.c:1331
msgid "Script-Fu Brush Selection"
msgstr ""
#: script-fu-scripts.c:1365
msgid " Reset to Defaults "
msgstr ""
#. Action area
#: script-fu-scripts.c:1382 script-fu-server.c:557
msgid "OK"
msgstr ""
#: script-fu-scripts.c:1391 script-fu-server.c:566
msgid "Cancel"
msgstr ""
#: script-fu-scripts.c:1399
msgid "About"
msgstr ""
#: script-fu-scripts.c:1523
msgid "NOT SET"
msgstr ""
#: script-fu-scripts.c:1597
msgid ""
"At least one font you've choosen is invalid.\n"
"Please check your settings.\n"
msgstr ""
#: script-fu-scripts.c:1855
msgid "Author: "
msgstr ""
#: script-fu-scripts.c:1865
msgid "Copyright: "
msgstr ""
#: script-fu-scripts.c:1875
msgid "Date: "
msgstr ""
#: script-fu-scripts.c:1887
msgid "Image types: "
msgstr ""
#: script-fu-scripts.c:2031
msgid "Script-Fu Color Picker"
msgstr ""
#: script-fu-scripts.c:2126
msgid "Script-Fu Font Selection"
msgstr ""
#: script-fu-server.c:549
msgid "Script-Fu Server Options"
msgstr ""
#. The server port
#: script-fu-server.c:580
msgid "Server Port: "
msgstr ""
#. The server logfile
#: script-fu-server.c:593
msgid "Server Logfile: "
msgstr ""

View File

@ -1,144 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-09-23 12:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: script-fu-console.c:156
msgid "Script-Fu console mode allows only interactive invocation"
msgstr ""
#: script-fu-console.c:192
msgid "Script-Fu Console"
msgstr ""
#. Action area
#: script-fu-console.c:204 script-fu-scripts.c:1902
msgid "Close"
msgstr ""
#. The info vbox
#: script-fu-console.c:212
msgid "SIOD Output"
msgstr ""
#. The current command
#: script-fu-console.c:289
msgid "Current Command"
msgstr ""
#: script-fu-console.c:310
msgid "Browse..."
msgstr ""
#: script-fu-console.c:568
msgid "Unable to open SIOD output pipe"
msgstr ""
#: script-fu-console.c:572
msgid "Unable to open a stream on the SIOD output pipe"
msgstr ""
#: script-fu-console.c:619
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
msgstr ""
#. the script arguments frame
#: script-fu-scripts.c:1155
msgid "Script Arguments"
msgstr ""
#: script-fu-scripts.c:1236
msgid "Script Toggle"
msgstr ""
#: script-fu-scripts.c:1289
msgid "Script-Fu File Selection"
msgstr ""
#: script-fu-scripts.c:1317
msgid "Script-fu Pattern Selection"
msgstr ""
#: script-fu-scripts.c:1323
msgid "Script-Fu Gradient Selection"
msgstr ""
#: script-fu-scripts.c:1331
msgid "Script-Fu Brush Selection"
msgstr ""
#: script-fu-scripts.c:1365
msgid " Reset to Defaults "
msgstr ""
#. Action area
#: script-fu-scripts.c:1382 script-fu-server.c:557
msgid "OK"
msgstr ""
#: script-fu-scripts.c:1391 script-fu-server.c:566
msgid "Cancel"
msgstr ""
#: script-fu-scripts.c:1399
msgid "About"
msgstr ""
#: script-fu-scripts.c:1523
msgid "NOT SET"
msgstr ""
#: script-fu-scripts.c:1597
msgid ""
"At least one font you've choosen is invalid.\n"
"Please check your settings.\n"
msgstr ""
#: script-fu-scripts.c:1855
msgid "Author: "
msgstr ""
#: script-fu-scripts.c:1865
msgid "Copyright: "
msgstr ""
#: script-fu-scripts.c:1875
msgid "Date: "
msgstr ""
#: script-fu-scripts.c:1887
msgid "Image types: "
msgstr ""
#: script-fu-scripts.c:2031
msgid "Script-Fu Color Picker"
msgstr ""
#: script-fu-scripts.c:2126
msgid "Script-Fu Font Selection"
msgstr ""
#: script-fu-server.c:549
msgid "Script-Fu Server Options"
msgstr ""
#. The server port
#: script-fu-server.c:580
msgid "Server Port: "
msgstr ""
#. The server logfile
#: script-fu-server.c:593
msgid "Server Logfile: "
msgstr ""

View File

@ -1,144 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-09-23 12:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: script-fu-console.c:156
msgid "Script-Fu console mode allows only interactive invocation"
msgstr ""
#: script-fu-console.c:192
msgid "Script-Fu Console"
msgstr ""
#. Action area
#: script-fu-console.c:204 script-fu-scripts.c:1902
msgid "Close"
msgstr ""
#. The info vbox
#: script-fu-console.c:212
msgid "SIOD Output"
msgstr ""
#. The current command
#: script-fu-console.c:289
msgid "Current Command"
msgstr ""
#: script-fu-console.c:310
msgid "Browse..."
msgstr ""
#: script-fu-console.c:568
msgid "Unable to open SIOD output pipe"
msgstr ""
#: script-fu-console.c:572
msgid "Unable to open a stream on the SIOD output pipe"
msgstr ""
#: script-fu-console.c:619
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
msgstr ""
#. the script arguments frame
#: script-fu-scripts.c:1155
msgid "Script Arguments"
msgstr ""
#: script-fu-scripts.c:1236
msgid "Script Toggle"
msgstr ""
#: script-fu-scripts.c:1289
msgid "Script-Fu File Selection"
msgstr ""
#: script-fu-scripts.c:1317
msgid "Script-fu Pattern Selection"
msgstr ""
#: script-fu-scripts.c:1323
msgid "Script-Fu Gradient Selection"
msgstr ""
#: script-fu-scripts.c:1331
msgid "Script-Fu Brush Selection"
msgstr ""
#: script-fu-scripts.c:1365
msgid " Reset to Defaults "
msgstr ""
#. Action area
#: script-fu-scripts.c:1382 script-fu-server.c:557
msgid "OK"
msgstr ""
#: script-fu-scripts.c:1391 script-fu-server.c:566
msgid "Cancel"
msgstr ""
#: script-fu-scripts.c:1399
msgid "About"
msgstr ""
#: script-fu-scripts.c:1523
msgid "NOT SET"
msgstr ""
#: script-fu-scripts.c:1597
msgid ""
"At least one font you've choosen is invalid.\n"
"Please check your settings.\n"
msgstr ""
#: script-fu-scripts.c:1855
msgid "Author: "
msgstr ""
#: script-fu-scripts.c:1865
msgid "Copyright: "
msgstr ""
#: script-fu-scripts.c:1875
msgid "Date: "
msgstr ""
#: script-fu-scripts.c:1887
msgid "Image types: "
msgstr ""
#: script-fu-scripts.c:2031
msgid "Script-Fu Color Picker"
msgstr ""
#: script-fu-scripts.c:2126
msgid "Script-Fu Font Selection"
msgstr ""
#: script-fu-server.c:549
msgid "Script-Fu Server Options"
msgstr ""
#. The server port
#: script-fu-server.c:580
msgid "Server Port: "
msgstr ""
#. The server logfile
#: script-fu-server.c:593
msgid "Server Logfile: "
msgstr ""

View File

@ -1,144 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-09-23 12:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: script-fu-console.c:156
msgid "Script-Fu console mode allows only interactive invocation"
msgstr ""
#: script-fu-console.c:192
msgid "Script-Fu Console"
msgstr ""
#. Action area
#: script-fu-console.c:204 script-fu-scripts.c:1902
msgid "Close"
msgstr ""
#. The info vbox
#: script-fu-console.c:212
msgid "SIOD Output"
msgstr ""
#. The current command
#: script-fu-console.c:289
msgid "Current Command"
msgstr ""
#: script-fu-console.c:310
msgid "Browse..."
msgstr ""
#: script-fu-console.c:568
msgid "Unable to open SIOD output pipe"
msgstr ""
#: script-fu-console.c:572
msgid "Unable to open a stream on the SIOD output pipe"
msgstr ""
#: script-fu-console.c:619
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
msgstr ""
#. the script arguments frame
#: script-fu-scripts.c:1155
msgid "Script Arguments"
msgstr ""
#: script-fu-scripts.c:1236
msgid "Script Toggle"
msgstr ""
#: script-fu-scripts.c:1289
msgid "Script-Fu File Selection"
msgstr ""
#: script-fu-scripts.c:1317
msgid "Script-fu Pattern Selection"
msgstr ""
#: script-fu-scripts.c:1323
msgid "Script-Fu Gradient Selection"
msgstr ""
#: script-fu-scripts.c:1331
msgid "Script-Fu Brush Selection"
msgstr ""
#: script-fu-scripts.c:1365
msgid " Reset to Defaults "
msgstr ""
#. Action area
#: script-fu-scripts.c:1382 script-fu-server.c:557
msgid "OK"
msgstr ""
#: script-fu-scripts.c:1391 script-fu-server.c:566
msgid "Cancel"
msgstr ""
#: script-fu-scripts.c:1399
msgid "About"
msgstr ""
#: script-fu-scripts.c:1523
msgid "NOT SET"
msgstr ""
#: script-fu-scripts.c:1597
msgid ""
"At least one font you've choosen is invalid.\n"
"Please check your settings.\n"
msgstr ""
#: script-fu-scripts.c:1855
msgid "Author: "
msgstr ""
#: script-fu-scripts.c:1865
msgid "Copyright: "
msgstr ""
#: script-fu-scripts.c:1875
msgid "Date: "
msgstr ""
#: script-fu-scripts.c:1887
msgid "Image types: "
msgstr ""
#: script-fu-scripts.c:2031
msgid "Script-Fu Color Picker"
msgstr ""
#: script-fu-scripts.c:2126
msgid "Script-Fu Font Selection"
msgstr ""
#: script-fu-server.c:549
msgid "Script-Fu Server Options"
msgstr ""
#. The server port
#: script-fu-server.c:580
msgid "Server Port: "
msgstr ""
#. The server logfile
#: script-fu-server.c:593
msgid "Server Logfile: "
msgstr ""

View File

@ -1,144 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-09-23 12:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: script-fu-console.c:156
msgid "Script-Fu console mode allows only interactive invocation"
msgstr ""
#: script-fu-console.c:192
msgid "Script-Fu Console"
msgstr ""
#. Action area
#: script-fu-console.c:204 script-fu-scripts.c:1902
msgid "Close"
msgstr ""
#. The info vbox
#: script-fu-console.c:212
msgid "SIOD Output"
msgstr ""
#. The current command
#: script-fu-console.c:289
msgid "Current Command"
msgstr ""
#: script-fu-console.c:310
msgid "Browse..."
msgstr ""
#: script-fu-console.c:568
msgid "Unable to open SIOD output pipe"
msgstr ""
#: script-fu-console.c:572
msgid "Unable to open a stream on the SIOD output pipe"
msgstr ""
#: script-fu-console.c:619
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
msgstr ""
#. the script arguments frame
#: script-fu-scripts.c:1155
msgid "Script Arguments"
msgstr ""
#: script-fu-scripts.c:1236
msgid "Script Toggle"
msgstr ""
#: script-fu-scripts.c:1289
msgid "Script-Fu File Selection"
msgstr ""
#: script-fu-scripts.c:1317
msgid "Script-fu Pattern Selection"
msgstr ""
#: script-fu-scripts.c:1323
msgid "Script-Fu Gradient Selection"
msgstr ""
#: script-fu-scripts.c:1331
msgid "Script-Fu Brush Selection"
msgstr ""
#: script-fu-scripts.c:1365
msgid " Reset to Defaults "
msgstr ""
#. Action area
#: script-fu-scripts.c:1382 script-fu-server.c:557
msgid "OK"
msgstr ""
#: script-fu-scripts.c:1391 script-fu-server.c:566
msgid "Cancel"
msgstr ""
#: script-fu-scripts.c:1399
msgid "About"
msgstr ""
#: script-fu-scripts.c:1523
msgid "NOT SET"
msgstr ""
#: script-fu-scripts.c:1597
msgid ""
"At least one font you've choosen is invalid.\n"
"Please check your settings.\n"
msgstr ""
#: script-fu-scripts.c:1855
msgid "Author: "
msgstr ""
#: script-fu-scripts.c:1865
msgid "Copyright: "
msgstr ""
#: script-fu-scripts.c:1875
msgid "Date: "
msgstr ""
#: script-fu-scripts.c:1887
msgid "Image types: "
msgstr ""
#: script-fu-scripts.c:2031
msgid "Script-Fu Color Picker"
msgstr ""
#: script-fu-scripts.c:2126
msgid "Script-Fu Font Selection"
msgstr ""
#: script-fu-server.c:549
msgid "Script-Fu Server Options"
msgstr ""
#. The server port
#: script-fu-server.c:580
msgid "Server Port: "
msgstr ""
#. The server logfile
#: script-fu-server.c:593
msgid "Server Logfile: "
msgstr ""

View File

@ -1,144 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-09-23 12:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: script-fu-console.c:156
msgid "Script-Fu console mode allows only interactive invocation"
msgstr ""
#: script-fu-console.c:192
msgid "Script-Fu Console"
msgstr ""
#. Action area
#: script-fu-console.c:204 script-fu-scripts.c:1902
msgid "Close"
msgstr ""
#. The info vbox
#: script-fu-console.c:212
msgid "SIOD Output"
msgstr ""
#. The current command
#: script-fu-console.c:289
msgid "Current Command"
msgstr ""
#: script-fu-console.c:310
msgid "Browse..."
msgstr ""
#: script-fu-console.c:568
msgid "Unable to open SIOD output pipe"
msgstr ""
#: script-fu-console.c:572
msgid "Unable to open a stream on the SIOD output pipe"
msgstr ""
#: script-fu-console.c:619
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
msgstr ""
#. the script arguments frame
#: script-fu-scripts.c:1155
msgid "Script Arguments"
msgstr ""
#: script-fu-scripts.c:1236
msgid "Script Toggle"
msgstr ""
#: script-fu-scripts.c:1289
msgid "Script-Fu File Selection"
msgstr ""
#: script-fu-scripts.c:1317
msgid "Script-fu Pattern Selection"
msgstr ""
#: script-fu-scripts.c:1323
msgid "Script-Fu Gradient Selection"
msgstr ""
#: script-fu-scripts.c:1331
msgid "Script-Fu Brush Selection"
msgstr ""
#: script-fu-scripts.c:1365
msgid " Reset to Defaults "
msgstr ""
#. Action area
#: script-fu-scripts.c:1382 script-fu-server.c:557
msgid "OK"
msgstr ""
#: script-fu-scripts.c:1391 script-fu-server.c:566
msgid "Cancel"
msgstr ""
#: script-fu-scripts.c:1399
msgid "About"
msgstr ""
#: script-fu-scripts.c:1523
msgid "NOT SET"
msgstr ""
#: script-fu-scripts.c:1597
msgid ""
"At least one font you've choosen is invalid.\n"
"Please check your settings.\n"
msgstr ""
#: script-fu-scripts.c:1855
msgid "Author: "
msgstr ""
#: script-fu-scripts.c:1865
msgid "Copyright: "
msgstr ""
#: script-fu-scripts.c:1875
msgid "Date: "
msgstr ""
#: script-fu-scripts.c:1887
msgid "Image types: "
msgstr ""
#: script-fu-scripts.c:2031
msgid "Script-Fu Color Picker"
msgstr ""
#: script-fu-scripts.c:2126
msgid "Script-Fu Font Selection"
msgstr ""
#: script-fu-server.c:549
msgid "Script-Fu Server Options"
msgstr ""
#. The server port
#: script-fu-server.c:580
msgid "Server Port: "
msgstr ""
#. The server logfile
#: script-fu-server.c:593
msgid "Server Logfile: "
msgstr ""

View File

@ -1,144 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-09-23 12:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: script-fu-console.c:156
msgid "Script-Fu console mode allows only interactive invocation"
msgstr ""
#: script-fu-console.c:192
msgid "Script-Fu Console"
msgstr ""
#. Action area
#: script-fu-console.c:204 script-fu-scripts.c:1902
msgid "Close"
msgstr ""
#. The info vbox
#: script-fu-console.c:212
msgid "SIOD Output"
msgstr ""
#. The current command
#: script-fu-console.c:289
msgid "Current Command"
msgstr ""
#: script-fu-console.c:310
msgid "Browse..."
msgstr ""
#: script-fu-console.c:568
msgid "Unable to open SIOD output pipe"
msgstr ""
#: script-fu-console.c:572
msgid "Unable to open a stream on the SIOD output pipe"
msgstr ""
#: script-fu-console.c:619
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
msgstr ""
#. the script arguments frame
#: script-fu-scripts.c:1155
msgid "Script Arguments"
msgstr ""
#: script-fu-scripts.c:1236
msgid "Script Toggle"
msgstr ""
#: script-fu-scripts.c:1289
msgid "Script-Fu File Selection"
msgstr ""
#: script-fu-scripts.c:1317
msgid "Script-fu Pattern Selection"
msgstr ""
#: script-fu-scripts.c:1323
msgid "Script-Fu Gradient Selection"
msgstr ""
#: script-fu-scripts.c:1331
msgid "Script-Fu Brush Selection"
msgstr ""
#: script-fu-scripts.c:1365
msgid " Reset to Defaults "
msgstr ""
#. Action area
#: script-fu-scripts.c:1382 script-fu-server.c:557
msgid "OK"
msgstr ""
#: script-fu-scripts.c:1391 script-fu-server.c:566
msgid "Cancel"
msgstr ""
#: script-fu-scripts.c:1399
msgid "About"
msgstr ""
#: script-fu-scripts.c:1523
msgid "NOT SET"
msgstr ""
#: script-fu-scripts.c:1597
msgid ""
"At least one font you've choosen is invalid.\n"
"Please check your settings.\n"
msgstr ""
#: script-fu-scripts.c:1855
msgid "Author: "
msgstr ""
#: script-fu-scripts.c:1865
msgid "Copyright: "
msgstr ""
#: script-fu-scripts.c:1875
msgid "Date: "
msgstr ""
#: script-fu-scripts.c:1887
msgid "Image types: "
msgstr ""
#: script-fu-scripts.c:2031
msgid "Script-Fu Color Picker"
msgstr ""
#: script-fu-scripts.c:2126
msgid "Script-Fu Font Selection"
msgstr ""
#: script-fu-server.c:549
msgid "Script-Fu Server Options"
msgstr ""
#. The server port
#: script-fu-server.c:580
msgid "Server Port: "
msgstr ""
#. The server logfile
#: script-fu-server.c:593
msgid "Server Logfile: "
msgstr ""

View File

@ -1,144 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-09-23 12:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: script-fu-console.c:156
msgid "Script-Fu console mode allows only interactive invocation"
msgstr ""
#: script-fu-console.c:192
msgid "Script-Fu Console"
msgstr ""
#. Action area
#: script-fu-console.c:204 script-fu-scripts.c:1902
msgid "Close"
msgstr ""
#. The info vbox
#: script-fu-console.c:212
msgid "SIOD Output"
msgstr ""
#. The current command
#: script-fu-console.c:289
msgid "Current Command"
msgstr ""
#: script-fu-console.c:310
msgid "Browse..."
msgstr ""
#: script-fu-console.c:568
msgid "Unable to open SIOD output pipe"
msgstr ""
#: script-fu-console.c:572
msgid "Unable to open a stream on the SIOD output pipe"
msgstr ""
#: script-fu-console.c:619
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
msgstr ""
#. the script arguments frame
#: script-fu-scripts.c:1155
msgid "Script Arguments"
msgstr ""
#: script-fu-scripts.c:1236
msgid "Script Toggle"
msgstr ""
#: script-fu-scripts.c:1289
msgid "Script-Fu File Selection"
msgstr ""
#: script-fu-scripts.c:1317
msgid "Script-fu Pattern Selection"
msgstr ""
#: script-fu-scripts.c:1323
msgid "Script-Fu Gradient Selection"
msgstr ""
#: script-fu-scripts.c:1331
msgid "Script-Fu Brush Selection"
msgstr ""
#: script-fu-scripts.c:1365
msgid " Reset to Defaults "
msgstr ""
#. Action area
#: script-fu-scripts.c:1382 script-fu-server.c:557
msgid "OK"
msgstr ""
#: script-fu-scripts.c:1391 script-fu-server.c:566
msgid "Cancel"
msgstr ""
#: script-fu-scripts.c:1399
msgid "About"
msgstr ""
#: script-fu-scripts.c:1523
msgid "NOT SET"
msgstr ""
#: script-fu-scripts.c:1597
msgid ""
"At least one font you've choosen is invalid.\n"
"Please check your settings.\n"
msgstr ""
#: script-fu-scripts.c:1855
msgid "Author: "
msgstr ""
#: script-fu-scripts.c:1865
msgid "Copyright: "
msgstr ""
#: script-fu-scripts.c:1875
msgid "Date: "
msgstr ""
#: script-fu-scripts.c:1887
msgid "Image types: "
msgstr ""
#: script-fu-scripts.c:2031
msgid "Script-Fu Color Picker"
msgstr ""
#: script-fu-scripts.c:2126
msgid "Script-Fu Font Selection"
msgstr ""
#: script-fu-server.c:549
msgid "Script-Fu Server Options"
msgstr ""
#. The server port
#: script-fu-server.c:580
msgid "Server Port: "
msgstr ""
#. The server logfile
#: script-fu-server.c:593
msgid "Server Logfile: "
msgstr ""

View File

@ -1,144 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-09-23 12:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: script-fu-console.c:156
msgid "Script-Fu console mode allows only interactive invocation"
msgstr ""
#: script-fu-console.c:192
msgid "Script-Fu Console"
msgstr ""
#. Action area
#: script-fu-console.c:204 script-fu-scripts.c:1902
msgid "Close"
msgstr ""
#. The info vbox
#: script-fu-console.c:212
msgid "SIOD Output"
msgstr ""
#. The current command
#: script-fu-console.c:289
msgid "Current Command"
msgstr ""
#: script-fu-console.c:310
msgid "Browse..."
msgstr ""
#: script-fu-console.c:568
msgid "Unable to open SIOD output pipe"
msgstr ""
#: script-fu-console.c:572
msgid "Unable to open a stream on the SIOD output pipe"
msgstr ""
#: script-fu-console.c:619
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
msgstr ""
#. the script arguments frame
#: script-fu-scripts.c:1155
msgid "Script Arguments"
msgstr ""
#: script-fu-scripts.c:1236
msgid "Script Toggle"
msgstr ""
#: script-fu-scripts.c:1289
msgid "Script-Fu File Selection"
msgstr ""
#: script-fu-scripts.c:1317
msgid "Script-fu Pattern Selection"
msgstr ""
#: script-fu-scripts.c:1323
msgid "Script-Fu Gradient Selection"
msgstr ""
#: script-fu-scripts.c:1331
msgid "Script-Fu Brush Selection"
msgstr ""
#: script-fu-scripts.c:1365
msgid " Reset to Defaults "
msgstr ""
#. Action area
#: script-fu-scripts.c:1382 script-fu-server.c:557
msgid "OK"
msgstr ""
#: script-fu-scripts.c:1391 script-fu-server.c:566
msgid "Cancel"
msgstr ""
#: script-fu-scripts.c:1399
msgid "About"
msgstr ""
#: script-fu-scripts.c:1523
msgid "NOT SET"
msgstr ""
#: script-fu-scripts.c:1597
msgid ""
"At least one font you've choosen is invalid.\n"
"Please check your settings.\n"
msgstr ""
#: script-fu-scripts.c:1855
msgid "Author: "
msgstr ""
#: script-fu-scripts.c:1865
msgid "Copyright: "
msgstr ""
#: script-fu-scripts.c:1875
msgid "Date: "
msgstr ""
#: script-fu-scripts.c:1887
msgid "Image types: "
msgstr ""
#: script-fu-scripts.c:2031
msgid "Script-Fu Color Picker"
msgstr ""
#: script-fu-scripts.c:2126
msgid "Script-Fu Font Selection"
msgstr ""
#: script-fu-server.c:549
msgid "Script-Fu Server Options"
msgstr ""
#. The server port
#: script-fu-server.c:580
msgid "Server Port: "
msgstr ""
#. The server logfile
#: script-fu-server.c:593
msgid "Server Logfile: "
msgstr ""

View File

@ -1,144 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-09-23 12:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: script-fu-console.c:156
msgid "Script-Fu console mode allows only interactive invocation"
msgstr ""
#: script-fu-console.c:192
msgid "Script-Fu Console"
msgstr ""
#. Action area
#: script-fu-console.c:204 script-fu-scripts.c:1902
msgid "Close"
msgstr ""
#. The info vbox
#: script-fu-console.c:212
msgid "SIOD Output"
msgstr ""
#. The current command
#: script-fu-console.c:289
msgid "Current Command"
msgstr ""
#: script-fu-console.c:310
msgid "Browse..."
msgstr ""
#: script-fu-console.c:568
msgid "Unable to open SIOD output pipe"
msgstr ""
#: script-fu-console.c:572
msgid "Unable to open a stream on the SIOD output pipe"
msgstr ""
#: script-fu-console.c:619
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
msgstr ""
#. the script arguments frame
#: script-fu-scripts.c:1155
msgid "Script Arguments"
msgstr ""
#: script-fu-scripts.c:1236
msgid "Script Toggle"
msgstr ""
#: script-fu-scripts.c:1289
msgid "Script-Fu File Selection"
msgstr ""
#: script-fu-scripts.c:1317
msgid "Script-fu Pattern Selection"
msgstr ""
#: script-fu-scripts.c:1323
msgid "Script-Fu Gradient Selection"
msgstr ""
#: script-fu-scripts.c:1331
msgid "Script-Fu Brush Selection"
msgstr ""
#: script-fu-scripts.c:1365
msgid " Reset to Defaults "
msgstr ""
#. Action area
#: script-fu-scripts.c:1382 script-fu-server.c:557
msgid "OK"
msgstr ""
#: script-fu-scripts.c:1391 script-fu-server.c:566
msgid "Cancel"
msgstr ""
#: script-fu-scripts.c:1399
msgid "About"
msgstr ""
#: script-fu-scripts.c:1523
msgid "NOT SET"
msgstr ""
#: script-fu-scripts.c:1597
msgid ""
"At least one font you've choosen is invalid.\n"
"Please check your settings.\n"
msgstr ""
#: script-fu-scripts.c:1855
msgid "Author: "
msgstr ""
#: script-fu-scripts.c:1865
msgid "Copyright: "
msgstr ""
#: script-fu-scripts.c:1875
msgid "Date: "
msgstr ""
#: script-fu-scripts.c:1887
msgid "Image types: "
msgstr ""
#: script-fu-scripts.c:2031
msgid "Script-Fu Color Picker"
msgstr ""
#: script-fu-scripts.c:2126
msgid "Script-Fu Font Selection"
msgstr ""
#: script-fu-server.c:549
msgid "Script-Fu Server Options"
msgstr ""
#. The server port
#: script-fu-server.c:580
msgid "Server Port: "
msgstr ""
#. The server logfile
#: script-fu-server.c:593
msgid "Server Logfile: "
msgstr ""

View File

@ -1,144 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-09-23 12:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: script-fu-console.c:156
msgid "Script-Fu console mode allows only interactive invocation"
msgstr ""
#: script-fu-console.c:192
msgid "Script-Fu Console"
msgstr ""
#. Action area
#: script-fu-console.c:204 script-fu-scripts.c:1902
msgid "Close"
msgstr ""
#. The info vbox
#: script-fu-console.c:212
msgid "SIOD Output"
msgstr ""
#. The current command
#: script-fu-console.c:289
msgid "Current Command"
msgstr ""
#: script-fu-console.c:310
msgid "Browse..."
msgstr ""
#: script-fu-console.c:568
msgid "Unable to open SIOD output pipe"
msgstr ""
#: script-fu-console.c:572
msgid "Unable to open a stream on the SIOD output pipe"
msgstr ""
#: script-fu-console.c:619
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
msgstr ""
#. the script arguments frame
#: script-fu-scripts.c:1155
msgid "Script Arguments"
msgstr ""
#: script-fu-scripts.c:1236
msgid "Script Toggle"
msgstr ""
#: script-fu-scripts.c:1289
msgid "Script-Fu File Selection"
msgstr ""
#: script-fu-scripts.c:1317
msgid "Script-fu Pattern Selection"
msgstr ""
#: script-fu-scripts.c:1323
msgid "Script-Fu Gradient Selection"
msgstr ""
#: script-fu-scripts.c:1331
msgid "Script-Fu Brush Selection"
msgstr ""
#: script-fu-scripts.c:1365
msgid " Reset to Defaults "
msgstr ""
#. Action area
#: script-fu-scripts.c:1382 script-fu-server.c:557
msgid "OK"
msgstr ""
#: script-fu-scripts.c:1391 script-fu-server.c:566
msgid "Cancel"
msgstr ""
#: script-fu-scripts.c:1399
msgid "About"
msgstr ""
#: script-fu-scripts.c:1523
msgid "NOT SET"
msgstr ""
#: script-fu-scripts.c:1597
msgid ""
"At least one font you've choosen is invalid.\n"
"Please check your settings.\n"
msgstr ""
#: script-fu-scripts.c:1855
msgid "Author: "
msgstr ""
#: script-fu-scripts.c:1865
msgid "Copyright: "
msgstr ""
#: script-fu-scripts.c:1875
msgid "Date: "
msgstr ""
#: script-fu-scripts.c:1887
msgid "Image types: "
msgstr ""
#: script-fu-scripts.c:2031
msgid "Script-Fu Color Picker"
msgstr ""
#: script-fu-scripts.c:2126
msgid "Script-Fu Font Selection"
msgstr ""
#: script-fu-server.c:549
msgid "Script-Fu Server Options"
msgstr ""
#. The server port
#: script-fu-server.c:580
msgid "Server Port: "
msgstr ""
#. The server logfile
#: script-fu-server.c:593
msgid "Server Logfile: "
msgstr ""

View File

@ -1,144 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-09-23 12:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: script-fu-console.c:156
msgid "Script-Fu console mode allows only interactive invocation"
msgstr ""
#: script-fu-console.c:192
msgid "Script-Fu Console"
msgstr ""
#. Action area
#: script-fu-console.c:204 script-fu-scripts.c:1902
msgid "Close"
msgstr ""
#. The info vbox
#: script-fu-console.c:212
msgid "SIOD Output"
msgstr ""
#. The current command
#: script-fu-console.c:289
msgid "Current Command"
msgstr ""
#: script-fu-console.c:310
msgid "Browse..."
msgstr ""
#: script-fu-console.c:568
msgid "Unable to open SIOD output pipe"
msgstr ""
#: script-fu-console.c:572
msgid "Unable to open a stream on the SIOD output pipe"
msgstr ""
#: script-fu-console.c:619
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
msgstr ""
#. the script arguments frame
#: script-fu-scripts.c:1155
msgid "Script Arguments"
msgstr ""
#: script-fu-scripts.c:1236
msgid "Script Toggle"
msgstr ""
#: script-fu-scripts.c:1289
msgid "Script-Fu File Selection"
msgstr ""
#: script-fu-scripts.c:1317
msgid "Script-fu Pattern Selection"
msgstr ""
#: script-fu-scripts.c:1323
msgid "Script-Fu Gradient Selection"
msgstr ""
#: script-fu-scripts.c:1331
msgid "Script-Fu Brush Selection"
msgstr ""
#: script-fu-scripts.c:1365
msgid " Reset to Defaults "
msgstr ""
#. Action area
#: script-fu-scripts.c:1382 script-fu-server.c:557
msgid "OK"
msgstr ""
#: script-fu-scripts.c:1391 script-fu-server.c:566
msgid "Cancel"
msgstr ""
#: script-fu-scripts.c:1399
msgid "About"
msgstr ""
#: script-fu-scripts.c:1523
msgid "NOT SET"
msgstr ""
#: script-fu-scripts.c:1597
msgid ""
"At least one font you've choosen is invalid.\n"
"Please check your settings.\n"
msgstr ""
#: script-fu-scripts.c:1855
msgid "Author: "
msgstr ""
#: script-fu-scripts.c:1865
msgid "Copyright: "
msgstr ""
#: script-fu-scripts.c:1875
msgid "Date: "
msgstr ""
#: script-fu-scripts.c:1887
msgid "Image types: "
msgstr ""
#: script-fu-scripts.c:2031
msgid "Script-Fu Color Picker"
msgstr ""
#: script-fu-scripts.c:2126
msgid "Script-Fu Font Selection"
msgstr ""
#: script-fu-server.c:549
msgid "Script-Fu Server Options"
msgstr ""
#. The server port
#: script-fu-server.c:580
msgid "Server Port: "
msgstr ""
#. The server logfile
#: script-fu-server.c:593
msgid "Server Logfile: "
msgstr ""

View File

@ -1,144 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-09-23 12:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: script-fu-console.c:156
msgid "Script-Fu console mode allows only interactive invocation"
msgstr ""
#: script-fu-console.c:192
msgid "Script-Fu Console"
msgstr ""
#. Action area
#: script-fu-console.c:204 script-fu-scripts.c:1902
msgid "Close"
msgstr ""
#. The info vbox
#: script-fu-console.c:212
msgid "SIOD Output"
msgstr ""
#. The current command
#: script-fu-console.c:289
msgid "Current Command"
msgstr ""
#: script-fu-console.c:310
msgid "Browse..."
msgstr ""
#: script-fu-console.c:568
msgid "Unable to open SIOD output pipe"
msgstr ""
#: script-fu-console.c:572
msgid "Unable to open a stream on the SIOD output pipe"
msgstr ""
#: script-fu-console.c:619
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
msgstr ""
#. the script arguments frame
#: script-fu-scripts.c:1155
msgid "Script Arguments"
msgstr ""
#: script-fu-scripts.c:1236
msgid "Script Toggle"
msgstr ""
#: script-fu-scripts.c:1289
msgid "Script-Fu File Selection"
msgstr ""
#: script-fu-scripts.c:1317
msgid "Script-fu Pattern Selection"
msgstr ""
#: script-fu-scripts.c:1323
msgid "Script-Fu Gradient Selection"
msgstr ""
#: script-fu-scripts.c:1331
msgid "Script-Fu Brush Selection"
msgstr ""
#: script-fu-scripts.c:1365
msgid " Reset to Defaults "
msgstr ""
#. Action area
#: script-fu-scripts.c:1382 script-fu-server.c:557
msgid "OK"
msgstr ""
#: script-fu-scripts.c:1391 script-fu-server.c:566
msgid "Cancel"
msgstr ""
#: script-fu-scripts.c:1399
msgid "About"
msgstr ""
#: script-fu-scripts.c:1523
msgid "NOT SET"
msgstr ""
#: script-fu-scripts.c:1597
msgid ""
"At least one font you've choosen is invalid.\n"
"Please check your settings.\n"
msgstr ""
#: script-fu-scripts.c:1855
msgid "Author: "
msgstr ""
#: script-fu-scripts.c:1865
msgid "Copyright: "
msgstr ""
#: script-fu-scripts.c:1875
msgid "Date: "
msgstr ""
#: script-fu-scripts.c:1887
msgid "Image types: "
msgstr ""
#: script-fu-scripts.c:2031
msgid "Script-Fu Color Picker"
msgstr ""
#: script-fu-scripts.c:2126
msgid "Script-Fu Font Selection"
msgstr ""
#: script-fu-server.c:549
msgid "Script-Fu Server Options"
msgstr ""
#. The server port
#: script-fu-server.c:580
msgid "Server Port: "
msgstr ""
#. The server logfile
#: script-fu-server.c:593
msgid "Server Logfile: "
msgstr ""

View File

@ -1,144 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-09-23 12:45+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
#: script-fu-console.c:156
msgid "Script-Fu console mode allows only interactive invocation"
msgstr ""
#: script-fu-console.c:192
msgid "Script-Fu Console"
msgstr ""
#. Action area
#: script-fu-console.c:204 script-fu-scripts.c:1902
msgid "Close"
msgstr ""
#. The info vbox
#: script-fu-console.c:212
msgid "SIOD Output"
msgstr ""
#. The current command
#: script-fu-console.c:289
msgid "Current Command"
msgstr ""
#: script-fu-console.c:310
msgid "Browse..."
msgstr ""
#: script-fu-console.c:568
msgid "Unable to open SIOD output pipe"
msgstr ""
#: script-fu-console.c:572
msgid "Unable to open a stream on the SIOD output pipe"
msgstr ""
#: script-fu-console.c:619
msgid "Script-Fu evaluate mode allows only noninteractive invocation"
msgstr ""
#. the script arguments frame
#: script-fu-scripts.c:1155
msgid "Script Arguments"
msgstr ""
#: script-fu-scripts.c:1236
msgid "Script Toggle"
msgstr ""
#: script-fu-scripts.c:1289
msgid "Script-Fu File Selection"
msgstr ""
#: script-fu-scripts.c:1317
msgid "Script-fu Pattern Selection"
msgstr ""
#: script-fu-scripts.c:1323
msgid "Script-Fu Gradient Selection"
msgstr ""
#: script-fu-scripts.c:1331
msgid "Script-Fu Brush Selection"
msgstr ""
#: script-fu-scripts.c:1365
msgid " Reset to Defaults "
msgstr ""
#. Action area
#: script-fu-scripts.c:1382 script-fu-server.c:557
msgid "OK"
msgstr ""
#: script-fu-scripts.c:1391 script-fu-server.c:566
msgid "Cancel"
msgstr ""
#: script-fu-scripts.c:1399
msgid "About"
msgstr ""
#: script-fu-scripts.c:1523
msgid "NOT SET"
msgstr ""
#: script-fu-scripts.c:1597
msgid ""
"At least one font you've choosen is invalid.\n"
"Please check your settings.\n"
msgstr ""
#: script-fu-scripts.c:1855
msgid "Author: "
msgstr ""
#: script-fu-scripts.c:1865
msgid "Copyright: "
msgstr ""
#: script-fu-scripts.c:1875
msgid "Date: "
msgstr ""
#: script-fu-scripts.c:1887
msgid "Image types: "
msgstr ""
#: script-fu-scripts.c:2031
msgid "Script-Fu Color Picker"
msgstr ""
#: script-fu-scripts.c:2126
msgid "Script-Fu Font Selection"
msgstr ""
#: script-fu-server.c:549
msgid "Script-Fu Server Options"
msgstr ""
#. The server port
#: script-fu-server.c:580
msgid "Server Port: "
msgstr ""
#. The server logfile
#: script-fu-server.c:593
msgid "Server Logfile: "
msgstr ""

View File

@ -198,6 +198,7 @@ init_generated_constants (void)
setvar (cintern ("INTERNAL"), flocons (0), NIL);
setvar (cintern ("PLUGIN"), flocons (1), NIL);
setvar (cintern ("EXTENSION"), flocons (2), NIL);
setvar (cintern ("TEMPORARY"), flocons (3), NIL);
setvar (cintern ("PDB-EXECUTION-ERROR"), flocons (0), NIL);
setvar (cintern ("PDB-CALLING-ERROR"), flocons (1), NIL);