Makefile.am configure.in added basic infrastructure for a gimp20-python

2006-09-13  Sven Neumann  <sven@gimp.org>

	* Makefile.am
	* configure.in
	* po-python: added basic infrastructure for a gimp20-python
	translation domain.

	* plug-ins/pygimp/plug-ins/gimpcons.py
	* plug-ins/pygimp/plug-ins/gtkcons.py: mark some strings for
	translation, based on a patch from David Gowers (bug #351287).
This commit is contained in:
Sven Neumann 2006-09-13 19:16:58 +00:00 committed by Sven Neumann
parent ca9825ecc5
commit ac610f0cf3
60 changed files with 2192 additions and 8 deletions

View file

@ -1,3 +1,14 @@
2006-09-13 Sven Neumann <sven@gimp.org>
* Makefile.am
* configure.in
* po-python: added basic infrastructure for a gimp20-python
translation domain.
* plug-ins/pygimp/plug-ins/gimpcons.py
* plug-ins/pygimp/plug-ins/gtkcons.py: mark some strings for
translation, based on a patch from David Gowers (bug #351287).
2006-09-13 Michael Natterer <mitch@gimp.org>
* app/tools/gimpperspectiveclonetool.h: added macro

View file

@ -9,6 +9,7 @@ SUBDIRS = \
po \
po-libgimp \
po-plug-ins \
po-python \
po-script-fu \
po-tips \
data \

View file

@ -386,9 +386,9 @@ fi
# Internationalisation
######################
dnl Note to translators: you MUST have .po files in all 4 directories: po,
dnl po-libgimp, po-plug-ins, and po-script-fu before adding your language
dnl code to ALL_LINGUAS
dnl Note to translators: you MUST have .po files in all 5 directories: po,
dnl po-libgimp, po-plug-ins, po-python and po-script-fu before adding your
dnl language code to ALL_LINGUAS.
ALL_LINGUAS="bg ca cs da de dz el en_CA en_GB es et eu fi fr ga gl gu he hu hr id it ja ko lt mk ms nb ne nl pa pl pt pt_BR ro ru rw sk sr sr@Latn sv tr tt uk vi xh yi zh_CN zh_TW"
AC_PROG_INTLTOOL
@ -1815,6 +1815,7 @@ m4macros/Makefile
po/Makefile.in
po-libgimp/Makefile.in
po-plug-ins/Makefile.in
po-python/Makefile.in
po-script-fu/Makefile.in
po-tips/Makefile.in
gimp-zip
@ -1838,6 +1839,7 @@ AC_CONFIG_COMMANDS([chmod-scripts],
AC_CONFIG_COMMANDS([sed-po-makefiles],
[sed -e "/POTFILES =/r po-libgimp/POTFILES" po-libgimp/Makefile.in > po-libgimp/Makefile
sed -e "/POTFILES =/r po-python/POTFILES" po-python/Makefile.in > po-python/Makefile
sed -e "/POTFILES =/r po-plug-ins/POTFILES" po-plug-ins/Makefile.in > po-plug-ins/Makefile
sed -e "/POTFILES =/r po-script-fu/POTFILES" po-script-fu/Makefile.in > po-script-fu/Makefile
sed -e "/POTFILES =/r po-tips/POTFILES" po-tips/Makefile.in > po-tips/Makefile])

View file

@ -18,6 +18,7 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
from gimpfu import *
from gettext import gettext as _
def console():
import pygtk
@ -39,7 +40,7 @@ def console():
def bye(*args):
gtk.main_quit()
dialog = gtk.Dialog(title="Python Console",
dialog = gtk.Dialog(title=_("Python Console"),
buttons=(gtk.STOCK_CLOSE, gtk.RESPONSE_CLOSE))
dialog.set_has_separator(False)
dialog.connect("response", bye)
@ -71,7 +72,7 @@ def console():
import gimpprocbrowser
gimpprocbrowser.dialog_new(on_apply)
button = gtk.Button("_Browse...")
button = gtk.Button(_("_Browse..."))
button.connect("clicked", browse, cons)
cons.inputbox.pack_end(button, fill=False, expand=False, padding=2)

View file

@ -33,6 +33,7 @@ import sys, string, traceback
import pygtk
pygtk.require('2.0')
import gtk, pango
from gettext import gettext as _
stdout = sys.stdout
@ -145,7 +146,7 @@ class Console(gtk.VBox):
scale=pango.SCALE_SMALL)
self.emphasis = self.buffer.create_tag('Emphasis',
style=pango.STYLE_OBLIQUE)
self.error = self.buffer.create_tag('Error',
self.error = self.buffer.create_tag('Error'),
foreground='red')
self.command = self.buffer.create_tag('Command')
@ -201,6 +202,7 @@ class Console(gtk.VBox):
'Copyright (C)\n' \
'1998 James Henstridge\n' \
'2004 John Finlay'
greetings = (
('\n', self.subtitle),
('Python %s\n' % sys.version, self.title),
@ -212,8 +214,9 @@ class Console(gtk.VBox):
for greeting in greetings:
self.buffer.insert_with_tags(iter, *greeting)
self.greetings = (('Gimp-Python Console - ', 'Title'),
('Interactive Python Development\n', 'Emphasis'))
self.greetings = ((_('Gimp-Python Console'), 'Title'),
(' -' + _('Interactive Python Development' + '\n'),
'Emphasis'))
for greeting in self.greetings:
self.buffer.insert_with_tags_by_name(iter, *greeting)

10
po-python/.cvsignore Normal file
View file

@ -0,0 +1,10 @@
*.gmo
*.mo
Makefile
Makefile.in
POTFILES
cat-id-tbl.c
*.pot
stamp-cat-id
messages
missing

5
po-python/ChangeLog Normal file
View file

@ -0,0 +1,5 @@
2006-09-13 Sven Neumann <sven@gimp.org>
* Added basic infrastructure for i18n of gimp-python. The initial
po files are based on po-script-fu.

258
po-python/Makefile.in.in Normal file
View file

@ -0,0 +1,258 @@
# 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.
#
# - Modified by Owen Taylor <otaylor@redhat.com> to use GETTEXT_PACKAGE
# instead of PACKAGE and to look for po2tbl in ./ not in intl/
#
# - Modified by jacob berkman <jacob@ximian.com> to install
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@-python
PACKAGE = @PACKAGE@
VERSION = @VERSION@
SHELL = /bin/sh
@SET_MAKE@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
top_builddir = ..
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
datadir = @datadir@
datarootdir = @datarootdir@
libdir = @libdir@
localedir = $(libdir)/locale
gnulocaledir = $(datadir)/locale
gettextsrcdir = $(datadir)/glib-2.0/gettext/po
subdir = po
install_sh = @install_sh@
mkdir_p = @mkdir_p@
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
CC = @CC@
GENCAT = @GENCAT@
GMSGFMT = @GMSGFMT@
MSGFMT = @MSGFMT@
XGETTEXT = @XGETTEXT@
INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
DEFS = @DEFS@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
INCLUDES = -I.. -I$(top_srcdir)/intl
COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
SOURCES =
POFILES = @POFILES@
GMOFILES = @GMOFILES@
DISTFILES = ChangeLog Makefile.in.in POTFILES.in \
$(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) $(GETTEXT_PACKAGE).pot
$(MSGMERGE) $< $(top_builddir)/po/$(GETTEXT_PACKAGE).pot -o $*pox
.po.mo:
$(MSGFMT) -o $@ $<
.po.gmo:
file=`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: $(CATALOGS)
all-no:
$(GETTEXT_PACKAGE).pot: $(POTFILES)
$(GENPOT)
install: install-exec install-data
install-exec:
install-data: install-data-@USE_NLS@
install-data-no: all
install-data-yes: all
if test -n "$(MKINSTALLDIRS)"; then \
$(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
else \
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(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)$$destdir/$$lang/LC_MESSAGES; \
if test -n "$(MKINSTALLDIRS)"; then \
$(MKINSTALLDIRS) $$dir; \
else \
$(SHELL) $(top_srcdir)/mkinstalldirs $$dir; \
fi; \
if test -r $$cat; then \
$(INSTALL_DATA) $$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
echo "installing $$cat as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
else \
$(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
echo "installing $(srcdir)/$$cat as" \
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT)"; \
fi; \
if test -r $$cat.m; then \
$(INSTALL_DATA) $$cat.m $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
echo "installing $$cat.m as $$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
else \
if test -r $(srcdir)/$$cat.m ; then \
$(INSTALL_DATA) $(srcdir)/$$cat.m \
$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
echo "installing $(srcdir)/$$cat as" \
"$$dir/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m"; \
else \
true; \
fi; \
fi; \
done
if test "$(PACKAGE)" = "glib"; then \
if test -n "$(MKINSTALLDIRS)"; then \
$(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
else \
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \
fi; \
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
$(DESTDIR)$(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 $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \
rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \
done
if test "$(PACKAGE)" = "glib"; then \
rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
fi
check: all
dvi info tags TAGS ID:
mostlyclean:
rm -f core core.* *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
rm -fr *.o
rm -f .intltool-merge-cache
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 = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir)
dist distdir: $(DISTFILES) $(GETTEXT_PACKAGE).pot
dists="$(DISTFILES)"; \
for file in $$dists; do \
ln $(srcdir)/$$file $(distdir) 2> /dev/null \
|| cp -p $(srcdir)/$$file $(distdir); \
done
update-po: Makefile
$(MAKE) $(GETTEXT_PACKAGE).pot
tmpdir=`pwd`; \
catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
echo "$$lang:"; \
result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
if $$result; then \
if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \
rm -f $$tmpdir/$$lang.new.po; \
else \
if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \
:; \
else \
echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \
rm -f $$tmpdir/$$lang.new.po; \
exit 1; \
fi; \
fi; \
else \
echo "msgmerge for $$cat failed!"; \
rm -f $$tmpdir/$$lang.new.po; \
fi; \
done
# POTFILES is created from POTFILES.in by stripping comments, empty lines
# and Intltool tags (enclosed in square brackets), and appending a full
# relative path to them
POTFILES: POTFILES.in
( if test 'x$(srcdir)' != 'x.'; then \
posrcprefix='$(top_srcdir)/'; \
else \
posrcprefix="../"; \
fi; \
rm -f $@-t $@ \
&& (sed -e '/^#/d' \
-e "s/^\[.*\] +//" \
-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:

5
po-python/POTFILES.in Normal file
View file

@ -0,0 +1,5 @@
# Files from the Gimp distribution which have already been
# marked to allow runtime translation of messages
plug-ins/pygimp/plug-ins/gimpcons.py
plug-ins/pygimp/plug-ins/gtkcons.py

34
po-python/az.po Normal file
View file

@ -0,0 +1,34 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2001-12-21 17:40GMT+0200\n"
"Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
"Language-Team: Azerbaijani Turkic <linuxaz@azerimail.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.5\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python Konsolu"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "Gəz..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python Konsolu"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

35
po-python/bg.po Normal file
View file

@ -0,0 +1,35 @@
# translation of gimp-python.HEAD.po to Bulgarian
# Bulgarian translation of gimp python
# Copyright (C) 2005, 2006 THE GIMP'S COPYRIGHT HOLDER
# This file is distributed under the same license as the GIMP package.
# Alexander Shopov <ash@contact.bg>, 2005.
# Victor Dachev <vdachev@gmail.com>, 2005, 2006.
msgid ""
msgstr ""
"Project-Id-Version: gimp-python.HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-02-06 11:03+0200\n"
"Last-Translator: Victor Dachev <vdachev@gmail.com>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Конзола на Python"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Отваряне..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Конзола на Python"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

39
po-python/ca.po Normal file
View file

@ -0,0 +1,39 @@
# gimp-python translation to Catalan.
# Copyright © 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
#
# Softcatala <linux@softcatala.org>, 2000-2001.
# Xavier Beà <xbea@pie.xtec.es>, 2003, 2004.
# Xavier Conde Rueda <xaviconde@eresmas.com>, 2004.
# Quim Perez Noguer <noguer@osona.com>, 2005, 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: ca\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-09-05 23:54+0200\n"
"Last-Translator: Quim Perez i Noguer\n"
"Language-Team: Català <gimp@softcatala.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: KBabel 1.10.2\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Consola de les funcions"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Cerca..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Consola de les funcions"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
#, fuzzy
msgid "Interactive Python Development"
msgstr "Consola interactiva per al desenvolupament de funcions"

41
po-python/cs.po Normal file
View file

@ -0,0 +1,41 @@
# translation of cs.po to Czech
# translation of cs.po to
# Czech translation of GIMP python
# Copyright (C) 2001,2003, 2006 Free Software Foundation, Inc.
# Copyright (C) 2004, 2005 Miloslav Trmac <mitr@volny.cz>
# Stanislav Brabec <utx@penguin.cz>, 2000-2001.
# Michal Bukovjan <bukm@centrum.cz>, 2003.
# Miloslav Trmac <mitr@volny.cz>, 2003 - 2005.
# Jakub Friedl <jfriedl@suse.cz>, 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: cs\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-07-27 20:23+0200\n"
"Last-Translator: Jakub Friedl <jfriedl@suse.cz>\n"
"Language-Team: Czech <gnome-cs-list@gnome.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10.2\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Konzole skript-fu"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Procházet..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Konzole skript-fu"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
#, fuzzy
msgid "Interactive Python Development"
msgstr "Interaktivní konzole pro vývoj Python"

47
po-python/da.po Normal file
View file

@ -0,0 +1,47 @@
# Danish translation of GIMP python.
# Copyright (C) 2000, 01, 02, 04 Free Software Foundation, Inc.
# Birger Langkjer <birger.langkjer@image.dk>, 2000.
# Keld Simonsen <keld@dkuug.dk>, 2000.
# Ole Laursen <olau@hardworking.dk>, 2001, 02, 04.
#
# Se ../po/da.po for en konventionsliste til hele Gimp'en.
#
# Konventioner:
#
# script -> program
# utils -> værktøjer
# web page themes -> hjemmesidetemaer
# DB Browser -> proceduredatabase (browser er overflødigt)
#
# Bemærk at en hel del af oversættelserne af programnavnene optræder i to
# sammenhænge og derfor skal synkroniseres.
#
msgid ""
msgstr ""
"Project-Id-Version: GIMP python\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2004-02-10 21:40+0100\n"
"Last-Translator: Ole Laursen <olau@hardworking.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python-konsol"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "Gennemse..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python-konsol"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

41
po-python/de.po Normal file
View file

@ -0,0 +1,41 @@
# translation of de.po to Deutsch
# This is the German catalog for GIMP Python.
# Copyright (C) 1999, 2006 Free Software Foundation, Inc.
# Sven Neumann <sven@gimp.org>
# Felix Natter <fnatter@gmx.net>
# Jens Seidel <jseidel@cvs.gnome.org>
# Roman Joost <romanofski@gimp.org>, 2004-2005.
# Sven Neumann <sven@gimp.org>, 2004.
# Hendrik Brandt <heb@gnome-de.org>, 2004-2006.
#
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-09-08 22:36+0200\n"
"Last-Translator: Hendrik Brandt <heb@gnome-de.org>\n"
"Language-Team: German <gnome-de@gnome.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Skript-Fu Konsole"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Durchsuchen …"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Skript-Fu Konsole"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
#, fuzzy
msgid "Interactive Python Development"
msgstr "Interaktive Konsole für die Skript-Fu-Entwicklung"

37
po-python/dz.po Normal file
View file

@ -0,0 +1,37 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp_script_fu.head.pot\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-05-03 10:35-0500\n"
"Last-Translator: sonam pelden\n"
"Language-Team: Dzongkha <pgeyleg@dit.gov.bt>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: 2;(n!=1);\n"
"X-Poedit-Language: Dzongkha\n"
"X-Poedit-Country: Bhutan\n"
"X-Poedit-SourceCharset: CHARSET\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "ཨིསི་ཀིརིཔིཊི་_ཕུ་མ་སྒྲོམ།"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "བརྡ་འཚོལ...(_B)"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "ཨིསི་ཀིརིཔིཊི་_ཕུ་མ་སྒྲོམ།"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

35
po-python/el.po Normal file
View file

@ -0,0 +1,35 @@
# Greek translation for gimp-python.
# Copyright (C) 2001, 2002 Free Software Foundation.
# Simos Xenitellis <simos@hellug.gr>, 2001, 2002.
#
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python 1.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2001-12-27 17:09+0000\n"
"Last-Translator: Simos Xenitellis <simos@hellug.gr>\n"
"Language-Team: Greek <nls@tux.hellug.gr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Κονσόλα Python"
#
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "Εξερεύνηση..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Κονσόλα Python"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

34
po-python/en_CA.po Normal file
View file

@ -0,0 +1,34 @@
# Canadian English translations of gimp python
# Copyright (C) 2004-2005 Adam Weinberger and the GNOME Foundation
# This file is distributed under the same licence as the gimp python package.
# Adam Weinberger <adamw@gnome.org>, 2004, 2005.
#
#
msgid ""
msgstr ""
"Project-Id-Version: gimp python\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-09-06 00:14-0400\n"
"Last-Translator: Adam Weinberger <adamw@gnome.org>\n"
"Language-Team: Canadian English <adamw@gnome.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python Console"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Browse..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python Console"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

33
po-python/en_GB.po Normal file
View file

@ -0,0 +1,33 @@
# This is the English, British catalog for GIMP Python.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Piers Cornwell <piers.cornwell@usa.net>, 2000.
# Gareth Owen <gowen72@yahoo.com>, David Lodge <dave@cirt.net>, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: GIMP\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-04-19 21:51-0400\n"
"Last-Translator: David Lodge <dave@cirt.net>\n"
"Language-Team: English, British\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python Console"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Browse..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python Console"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

39
po-python/es.po Normal file
View file

@ -0,0 +1,39 @@
# Spanish translation for gimp-python.
# Copyright © 1998-2000,2003 Free Software Foundation, Inc.
# This file is distributed under the same license as the gimp package.
# Oscar Cebellán Ramos <cebaman@bigfoot.com>
# Pablo G. del Campo <pablodc@bigfoot.com>, 2003, 2004.
# Francisco Javier F. Serrador <serrador@cvs.gnome.org>, 2004, 2005.
# Francisco Vila <francisco.vila@hispalinux.es>, 2006.
msgid ""
msgstr ""
"Project-Id-Version: es\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-07-26 19:08+0200\n"
"Last-Translator: Francisco Vila <francisco.vila@hispalinux.es>\n"
"Language-Team: <traductores@es.gnome.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"\n"
"X-Generator: xemacs21\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Consola de Python"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Examinar..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Consola de Python"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
#, fuzzy
msgid "Interactive Python Development"
msgstr "Consola interactiva para el desarrollo de Python"

37
po-python/et.po Normal file
View file

@ -0,0 +1,37 @@
# Gimp'i eesti keele tõlge.
# Estonian translation of Gimp.
#
# Copyright (C) 2001-2005 Free Software Foundation, Inc.
# This file is distributed under the same license as the Gimp package.
#
# Olle Niit <olle@paalalinn.com>, 2005.
msgid ""
msgstr ""
"Project-Id-Version: gimp-python\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-01-07 01:28+0200\n"
"Last-Translator: Olle Niit olle@paalalinn.com\n"
"Language-Team: Estonian <gnome-et@linux.ee>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Emacs\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python konsool"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Sirvi..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python konsool"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

38
po-python/eu.po Normal file
View file

@ -0,0 +1,38 @@
# translation of gimp-python.HEAD.po to basque
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
# Hizkuntza Politikarako Sailburuordetza <hizpol@ej-gv.es>, 2004.
# Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>, 2005, 2006.
#
msgid ""
msgstr ""
"Project-Id-Version: eu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-08-08 19:06+0000\n"
"Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>\n"
"Language-Team: Basque <itzulpena@euskalgnu.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10.2\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python kontsola"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Arakatu..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python kontsola"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
#, fuzzy
msgid "Interactive Python Development"
msgstr "Python garapeneko kontsola interaktiboa"

34
po-python/fi.po Normal file
View file

@ -0,0 +1,34 @@
# Gimp tiny-fu finnish translation
# Copyright (C) 2000 Free Software Foundation, Inc.
# Ilkka Tuohela <hile@iki.fi>, 2006.
# Mikko Paananen, 2004.
# Ville Hautamäki <villeh@cs.joensuu.fi>, 2000.
msgid ""
msgstr ""
"Project-Id-Version: tiny-fu \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-08-16 15:15+0300\n"
"Last-Translator: Mikko Paananen <mikko@ipi.fi>\n"
"Language-Team: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python-konsoli"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Selaa..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python-konsoli"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
#, fuzzy
msgid "Interactive Python Development"
msgstr "Interaktivinen Scheme-kehitys"

39
po-python/fr.po Normal file
View file

@ -0,0 +1,39 @@
# French translation of gimp-tiny-fu.
# Copyright (C) 2000-2004 Free Software Foundation, Inc.
# This file is distributed under the same license as the gimp package.
#
# David Monniaux <monniaux@arbouse.ens.fr>, 2000.
# Christophe Merlet (RedFox) <redfox@redfoxcenter.org>, 2000-2004.
# maintainer: Raymond Ostertag <r.ostertag@caramail.com>, 2002-2004.
# Jean-Louis Berliet <jl.berliet@free.fr>, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-tiny-fu 2.2.0pre1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-11-27 16:28+0100\n"
"Last-Translator: Raymond Ostertag <r.ostertag@caramail.com>\n"
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
#, fuzzy
msgid "Python Console"
msgstr "Console pour Tiny-Fu"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "Parcourir..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
msgid "Gimp-Python Console"
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
#, fuzzy
msgid "Interactive Python Development"
msgstr "Développement·Scheme interactif"

35
po-python/ga.po Normal file
View file

@ -0,0 +1,35 @@
# Irish Translations for gimp po script fu
# Copyright (C) 2000,2004 Free Software Foundation, Inc.
# Seán Ó Ceallaigh <s_oceallaigh@yahoo.com>, 2000.
# Alastair McKinstry <mckinstry@computer.org>, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2004-01-20 0740+0000\n"
"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
"Language-Team: Gaeilge <gaeilge-a@listserv.heanet.ie>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
#, fuzzy
msgid "Python Console"
msgstr "Python: %s"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "Brábhsáil...."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python: %s"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

40
po-python/gl.po Normal file
View file

@ -0,0 +1,40 @@
# translation of gl.po to Galego
# Traducción ó Galego do GIMP
# Copyright (C) 2000 Francisco Xosé Vázquez Grandal.
#
# O teu SO en Galego ¿en que se non?. ¡¡MOITO TRASNO!!
#
# ¿Que queres colaborar co TRASNO? pois visita:
# http://trasno.gpul.org
#
# Francisco Xosé Vázquez Grandal <grandal@mundivia.es>, 2001.
# Ignacio Casal Quinteiro <nacho.resa@gmail.com>, 2006.
msgid ""
msgstr ""
"Project-Id-Version: gl\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-04-16 15:39+0200\n"
"Last-Translator: Ignacio Casal Quinteiro <nacho.resa@gmail.com>\n"
"Language-Team: Galego <trasno@ceu.fi.udc.es>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.2\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Consola Python"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "E_xaminar..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Consola Python"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

36
po-python/gu.po Normal file
View file

@ -0,0 +1,36 @@
# translation of gimp-python.HEAD.gu.po to Gujarati
# translation of gimp-python.HEAD.po to Gujarati
# Ankit Patel <ankit644@yahoo.com>, 2005.
msgid ""
msgstr ""
"Project-Id-Version: gimp-python.HEAD.gu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-09-26 09:53+0530\n"
"Last-Translator: Ankit Patel <ankit644@yahoo.com>\n"
"Language-Team: Gujarati <indianoss-gujarati@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n"
"Plural-Forms: nplurals=2; plural=(n!=1);\n"
"\n"
"\n"
"\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python કન્સોલ"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "શોધો (_B)..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python કન્સોલ"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

35
po-python/he.po Normal file
View file

@ -0,0 +1,35 @@
# translation of gimp-python.HEAD.po to Hebrew
# translation of gimp-script-fy-he.po to Hebrew
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# dovix <dovix2003@yahoo.com>, 2003
# Gil 'Dolfin' Osher <dolfin@rpg.org.il>, 2003
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python.HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2003-08-13 22:11+0300\n"
"Last-Translator: Gil 'Dolfin' Osher <dolfin@rpg.org.il>\n"
"Language-Team: Hebrew <he@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.1\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
msgid "Gimp-Python Console"
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

33
po-python/hr.po Normal file
View file

@ -0,0 +1,33 @@
# Translation of gimp-python to Croatiann
# Copyright (C) Croatiann team
# Translators: Automatski Prijevod <>,Denis Lackovic <delacko@fly.srk.fer.hr>,Ivan Jankovic <rbrrneck@gmx.net>,Nikola Planinac <>,pr pr <delacko@192.168.0.1>,Robert Sedak <robert.sedak@sk.tel.hr>,
msgid ""
msgstr ""
"Project-Id-Version: gimp-python 0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2004-03-20 14:50+CET\n"
"Last-Translator: auto\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: TransDict server\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python Konzola"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "Potraži..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python Konzola"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

36
po-python/hu.po Normal file
View file

@ -0,0 +1,36 @@
# Hungarian translation of gimp-python.
# Copyright (C) 2001, 2003, 2004 Free Software Foundation, Inc.
# This file is distributed under the same license as the gimp-python package.
# Andras Timar <timar@gnome.hu>, 2001, 2003.
# Emese Kovacs <emese@gnome.hu>, 2001.
# Laszlo Dvornik <dvornik@gnome.hu>, 2004.
# Arpad Biro <biro_arpad@yahoo.com>, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2004-12-02 11:06+0100\n"
"Last-Translator: Arpad Biro <biro_arpad@yahoo.com>\n"
"Language-Team: Hungarian <gnome@gnome.hu>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python konzol"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Tallózás..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python konzol"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

28
po-python/id.po Normal file
View file

@ -0,0 +1,28 @@
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2003-06-28 22:05+0700\n"
"Last-Translator: Mohammad DAMT <mdamt@bisnisweb.com>\n"
"Language-Team: Indonesian <sukarelawan@gnome.linux.or.id>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
msgid "Gimp-Python Console"
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

33
po-python/it.po Normal file
View file

@ -0,0 +1,33 @@
# This is the Italian catalog for The GIMP.
# Copyright (C) 1999 Free Software Foundation, Inc.
# Daniele Medri <madrid@linux.it>, 2000, 2001, 2002
# Marco Ciampa <ciampix@libero.it>, 2003, 2004, 2005, 2006
msgid ""
msgstr ""
"Project-Id-Version: gimp 2.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-08-09 11:45+0200\n"
"Last-Translator: Marco Ciampa <ciampix@libero.it>\n"
"Language-Team: gimp.linux.it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Console Python"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Naviga..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Console Python"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
#, fuzzy
msgid "Interactive Python Development"
msgstr "Console interattiva per sviluppo Python"

37
po-python/ja.po Normal file
View file

@ -0,0 +1,37 @@
# GIMP Python Japanese message catalog
# Copyright (C) 2000,2003 Free Software Foundation, Inc.
# Shirasaki Yasuhiro <yasuhiro@gnome.gr.jp>, 2000
# Takashi Kido <yositaka@yd5.so-net.ne.jp>, 2000
# KAMAGASAKO Masatoshi <emerald@gnome.gr.jp>, 2003.
# Ryoichi INAGAKI <ryo1@bc.wakwak.com>, 2003.
# Tadashi Jokagi <elf2000@users.sourceforge.net>, 2005.
# OKANO Takayoshi <kano@na.rim.or.jp>, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-10-26 23:00+0900\n"
"Last-Translator: OKANO Takayoshi <kano@na.rim.or.jp>\n"
"Language-Team: Japanese <translation@gnome.gr.jp>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python コンソール"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "参照(_B)..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python コンソール"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

33
po-python/ko.po Normal file
View file

@ -0,0 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2003-06-05 07:54+0800\n"
"Last-Translator: Dongsu Jang <iolo@hellocity.net>\n"
"Language-Team: Korean <ko@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python 콘솔"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "찾아보기..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python 콘솔"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

33
po-python/lt.po Normal file
View file

@ -0,0 +1,33 @@
# Lithuanian translation of GIMP.i
# Copyright (C) 2004-2006 Free Software Foundation, Inc.
# Žygimantas Beručka <zygis@gnome.org>, 2004-2006.
#
#
msgid ""
msgstr ""
"Project-Id-Version: GIMP HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-03-13 14:40+0200\n"
"Last-Translator: Žygimantas Beručka <zygis@gnome.org>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python konsolė"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Naršyti..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python konsolė"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

42
po-python/mk.po Normal file
View file

@ -0,0 +1,42 @@
# translation of gimp-python.HEAD.mk.po to Macedonian
# Macedonian translation of gimp
# Courtesy of mkde team (http://mkde.sourceforge.net/) -- 2004.
#
# This file is distributed under the same license as the gimp package.
#
#
#
#
# Maintainer: Vladimir Stefanov <vladoboss@mt.net.mk>, 2004, 2005, 2006.
# Vladimir Stefanov <vladoboss@gmail.com>, 2006.
# Jovan Naumovski <jovan@lugola.net>, 2006.
msgid ""
msgstr ""
"Project-Id-Version: gimp-python.HEAD.mk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-08-29 12:25+0200\n"
"Last-Translator: Jovan Naumovski <jovan@lugola.net>\n"
"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.2\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python Конзола"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Прелистај..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python Конзола"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
#, fuzzy
msgid "Interactive Python Development"
msgstr "Интерактивна конзола за развој на Python"

34
po-python/ms.po Normal file
View file

@ -0,0 +1,34 @@
# Malay Translation of Gimp-python HEAD.
# Copyright (C) 2003 MIMOS Open Source Developement Group
# This file is distributed under the same license as the PACKAGE package.
# MIMOS Open Source Development Group <opensource@mimos.my>, 2003.
#
msgid ""
msgstr ""
"Project-Id-Version: Gimp-python HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2003-10-30 09:35+0800\n"
"Last-Translator: MIMOS Open Source Development Group <ismas@mimos.my>\n"
"Language-Team: Projek Gabai <gabai-penyumbang@lists.sf.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Konsol Python"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "Layari..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Konsol Python"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

33
po-python/nb.po Normal file
View file

@ -0,0 +1,33 @@
# Norwegian translation of gimp-po-python.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Kjartan Maraas <kmaraas@gnome.org>, 2000.
#
msgid ""
msgstr ""
"Project-Id-Version: achtung 1.1.25\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2003-01-26 17:18+0100\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python konsoll"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "Bla gjennom..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python konsoll"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

36
po-python/ne.po Normal file
View file

@ -0,0 +1,36 @@
# translation of gimp-python.HEAD.po to Nepali
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
# Pawan Chitrakar <pawan@mpp.org.np>, 2005.
# Jyotshna Shrestha <shresthajyo@hotmail.com>, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python.HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-07-21 14:20+0545\n"
"Last-Translator: Pawan Chitrakar <pawan@mpp.org.np>\n"
"Language-Team: Nepali <info@mpp.org.np>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10\n"
"Plural-Forms: nplurals=2;plural=(n!=1)\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "लिपि-फु सान्त्वना"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "खोज..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "लिपि-फु सान्त्वना"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

35
po-python/nl.po Normal file
View file

@ -0,0 +1,35 @@
# Dutch translation of the GIMP's python strings.
# Copyright (C) 2001 Free Software Foundation, Inc.
# Branko Collin <collin@xs4all.nl>, 2001-2004.
# Tino Meinen <a.t.meinen@chello.nl>, 2004, 2005.
# --------------------------------------------------
# bevel afgeschuind/3d/uitspringend/inspringend
# render renderen/tekenen
msgid ""
msgstr ""
"Project-Id-Version: GIMP 2.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-08-08 23:14+0200\n"
"Last-Translator: Tino Meinen <a.t.meinen@chello.nl>\n"
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python Console"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Verkennen..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python Console"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

81
po-python/pa.po Normal file
View file

@ -0,0 +1,81 @@
# translation of pa.po to Punjabi
# translation of gimp-python.po to Punjabi
# Copyright (C) 2004 THE gimp-python'S COPYRIGHT HOLDER
# This file is distributed under the same license as the gimp-python packageJaswinder Singh Phulewala <jaswinderlinux@netscape.net>, 2004.
# Amanpreet Singh Alam <aalam@redhat.com>, 2004.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
# Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>, 2005.
#
#
msgid ""
msgstr ""
"Project-Id-Version: pa\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-05-14 21:16+0530\n"
"Last-Translator: Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>\n"
"Language-Team: Punjabi <punlinux-i18n@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "ਸਕਰਿਪਟ-Fu ਕਨਸੋਲ"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "ਝਲਕ(_B)..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "ਸਕਰਿਪਟ-Fu ਕਨਸੋਲ"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

44
po-python/pl.po Normal file
View file

@ -0,0 +1,44 @@
# Copyright (C) 2001-2005 Free Software Foundation, Inc.
# -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
# Aktualną wersję tego pliku możesz odnaleźć w repozytorium cvs.gnomepl.org
# (:pserver:anonymous@cvs.gnomepl.org:/home/cvs, puste hasło)
# Jeśli masz jakiekolwiek uwagi odnoszące się do tłumaczenia lub chcesz
# pomóc w jego rozwijaniu i pielęgnowaniu, napisz do nas na adres:
# translators@gnomepl.org
# -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
# GNOME PL Team <translators@gnomepl.org>, 1999-2005.
# Artur Polaczyński <artie@kmfms.com>, 1999,2000.
# Bartosz Kosiorek <gang65@poczta.onet.pl>, 2005.
msgid ""
msgstr ""
"Project-Id-Version: gimp-python\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-12-20 11:48+0100\n"
"Last-Translator: Bartosz Kosiorek <gang65@poczta.onet.pl>\n"
"Language-Team: Polish <translators@gnomepl.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10.2\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n"
"X-Poedit-Language: Polish\n"
"X-Poedit-Country: POLAND\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Konsola Python"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Przeglądaj..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Konsola Python"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

38
po-python/pt.po Normal file
View file

@ -0,0 +1,38 @@
# gimp-python's Portuguese translation.
# Copyright © 2002, 2004 gimp
# This file is distributed under the same license as the GIMP package
# Filipe Maia <fmaia@gmx.net>, 2002
# Duarte Loreto <happyguy_pt@hotmail.com>, 2003, 2004
#
# Baseado na versão brasileria por Marcia Norie Nakaza <norie@conectiva.com.br>, 2000.
#
#
msgid ""
msgstr ""
"Project-Id-Version: 2.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2004-03-08 21:40+0000\n"
"Last-Translator: Duarte Loreto <happyguy_pt@hotmail.com>\n"
"Language-Team: Portuguese <gnome_pt@yahoogroups.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Consola Python"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "Procurar..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Consola Python"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

35
po-python/pt_BR.po Normal file
View file

@ -0,0 +1,35 @@
# translation of pt_BR.po to Brazilian Portuguese
# Mensagens em português do Brazil pt_BR para o GIMP.
# Marcia Norie Nakaza <norie@conectiva.com.br>, 2000.
# Alexandre Folle de Menezes <afmenez@terra.com.br>, 2002-2003.
# Joao S. O. Bueno Calligaris <gwidion@mpc.com.br>, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: pt_BR\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2004-12-14 19:22-0200\n"
"Last-Translator: Joao S. O. Bueno Calligaris <gwidion@mpc.com.br>\n"
"Language-Team: Brazilian Portuguese <<gnome-l10n-br@listas.cipsga.org.br>>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Console Python"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Procurar..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Console Python"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

34
po-python/ro.po Normal file
View file

@ -0,0 +1,34 @@
# gimp ro translation
# Copyright (C) YEAR Free Software Foundation, Inc.
# Robert Claudiu Gheorghe <rgheorghe@writeme.com>, 2001.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2000-11-24 15:46+0100\n"
"Last-Translator: Robert Claudiu Gheorghe <rgheorghe@writeme.com>\n"
"Language-Team: Română <ro@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
#, fuzzy
msgid "Python Console"
msgstr "Selecţie culoare"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "Afişare informaţii de ajutor"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Selecţie culoare"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

40
po-python/ru.po Normal file
View file

@ -0,0 +1,40 @@
# translation of gimp python to Russian
# Copyright (C) 2000-2002,2003, 2004, 2005, 2006 Free Software Foundation, Inc.
#
# Valek Filippov <frob@df.ru>, 2000-2002.
# Anatoly A. Yakushin <jaa@altlinux.ru>, 2003, 2004.
# AnatolyA. Yakushin <jaa@altlinux.ru>, 2004.
# Roxana Kolosova <mavka@justos.org>, 2003-2006.
# Alexandre Prokoudine <alexandre.prokoudine@gmail.com>, 2005, 2006.
msgid ""
msgstr ""
"Project-Id-Version: gimp python HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-08-29 19:57+0400\n"
"Last-Translator: Alexandre Prokoudine <alexandre.prokoudine@gmail.com>\n"
"Language-Team: Russian <gnome-cyr@gnome.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.2\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Консоль Скрипт-Фу"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Просмотреть..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Консоль Скрипт-Фу"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
#, fuzzy
msgid "Interactive Python Development"
msgstr "Интерактивная консоль для разработки на Python"

42
po-python/rw.po Normal file
View file

@ -0,0 +1,42 @@
# translation of gimp-python to Kinyarwanda.
# Copyright (C) 2005 Free Software Foundation, Inc.
# This file is distributed under the same license as the gimp-python package.
# Steve Murphy <murf@e-tools.com>, 2005
# Steve performed initial rough translation from compendium built from translations provided by the following translators:
# Philibert Ndandali <ndandali@yahoo.fr>, 2005.
# Viateur MUGENZI <muvia1@yahoo.fr>, 2005.
# Noëlla Mupole <s24211045@tuks.co.za>, 2005.
# Carole Karema <karemacarole@hotmail.com>, 2005.
# JEAN BAPTISTE NGENDAHAYO <ngenda_denis@yahoo.co.uk>, 2005.
# Augustin KIBERWA <akiberwa@yahoo.co.uk>, 2005.
# Donatien NSENGIYUMVA <ndonatienuk@yahoo.co.uk>, 2005..
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-03-31 20:55-0700\n"
"Last-Translator: Steve Murphy <murf@e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"ULL NAME <EMAIL@ADDRESS>\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "Gushakisha..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
msgid "Gimp-Python Console"
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

37
po-python/sk.po Normal file
View file

@ -0,0 +1,37 @@
# translation of gimp-python.HEAD.po to Slovak
# translation of gimp-python.HEAD.sk.po to Slovak
# gimp-python sk.po
# Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
# Zdenko Podobný <zdpo@mailbox.sk>, 2002,2003, 2004.
# Marcel Telka <marcel@telka.sk>, 2005.
#
# $Id$
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-10-17 22:08+0200\n"
"Last-Translator: Marcel Telka <marcel@telka.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python konzola"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Prechádzať..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python konzola"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

35
po-python/sl.po Normal file
View file

@ -0,0 +1,35 @@
# This is the English, British catalog for GIMP Python.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Piers Cornwell <piers.cornwell@usa.net>, 2000.
# Gareth Owen <gowen72@yahoo.com>, David Lodge <dave@cirt.net>, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: GIMP 2.0 scriptfu\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-03-31 22:23+0200\n"
"Last-Translator: Martin Srebotnjak <miles@filmsi.net>\n"
"Language-Team: Lugos <sl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n"
"%100==4 ? 3 : 0);\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Konzola Python"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Prebrskaj ..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Konzola Python"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

37
po-python/sr.po Normal file
View file

@ -0,0 +1,37 @@
# Serbian translation of gimp
# Courtesy of Prevod.org team (http://www.prevod.org/) -- 2003, 2004.
#
# This file is distributed under the same license as the gimp package.
#
# Maintainer: Бранко Ивановић <popeye@one.ekof.bg.ac.yu>
#
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2004-08-08 14:24+0200\n"
"Last-Translator: Бранко Ивановић <popeye@one.ekof.bg.ac.yu>\n"
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Скрипт-Фу Конзола"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "Тражи..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Скрипт-Фу Конзола"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

37
po-python/sr@Latn.po Normal file
View file

@ -0,0 +1,37 @@
# Serbian translation of gimp
# Courtesy of Prevod.org team (http://www.prevod.org/) -- 2003, 2004.
#
# This file is distributed under the same license as the gimp package.
#
# Maintainer: Branko Ivanović <popeye@one.ekof.bg.ac.yu>
#
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2004-08-08 14:24+0200\n"
"Last-Translator: Branko Ivanović <popeye@one.ekof.bg.ac.yu>\n"
"Language-Team: Serbian (sr) <gnom@prevod.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Skript-Fu Konzola"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "Traži..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Skript-Fu Konzola"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

36
po-python/sv.po Normal file
View file

@ -0,0 +1,36 @@
# Swedish messages for GIMP Python.
# Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
# Christian Rose <menthos@menthos.com>, 2000, 2001, 2002, 2003.
# Jan Morén <jan.moren@lucs.lu.se>, 2003.
# Tomas Ögren <stric@ing.umu.se>, 2001.
#
# $Id$
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-03-18 16:36+0900\n"
"Last-Translator: Jan Morén <jan.moren@lucs.lu.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python-konsoll"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Bläddra..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python-konsoll"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

34
po-python/tr.po Normal file
View file

@ -0,0 +1,34 @@
# Copyright (C) 2001 Free Software Foundation, Inc.
# Ömer Fadıl USTA <omer_fad@hotmail.com>, 2002.
# Fatih Demir <kabalak@gtranslator.org>, 2001.
# Alper Ersoy <aersoy@tfz.net>, 2001.
#
msgid ""
msgstr ""
"Project-Id-Version: GIMP 1.3.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2002-04-28 04:07+0200\n"
"Last-Translator: Ömer Fadıl USTA <omer_fad@hotmail.com>\n"
"Language-Team: Turkish <gnome-turk@gnome.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python Konsolu"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "Gözat..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python Konsolu"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

35
po-python/tt.po Normal file
View file

@ -0,0 +1,35 @@
# Tatarish localization of GIMP
# Copyright (C) 2005 THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the gimp package.
#
# Albert Fazlí <tatarish.l10n@gmail.com>, 2005.
# Beznen Soft <tatarish.l10n@gmail.com>, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-11-08 17:19+0300\n"
"Last-Translator: Albert Fazlí <tatarish.l10n@gmail.com>\n"
"Language-Team: Tatarish <tatarish.l10n@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
msgid "Gimp-Python Console"
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

32
po-python/uk.po Normal file
View file

@ -0,0 +1,32 @@
# Copyright (C) 2000 Free Software Foundation, Inc.
# Yuri Syrota <rasta@renome.rovno.ua>, 2000.
# Maxim Dziumanenko <mvd@mylinux.com.ua>, 2004
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python-2.0.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-02-23 17:54+0200\n"
"Last-Translator: Maxim Dziumanenko <mvd@mylinux.com.ua>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Консоль Скрипт-Фу"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "О_гляд..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Консоль Скрипт-Фу"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

36
po-python/vi.po Normal file
View file

@ -0,0 +1,36 @@
# Vietnamese translation for GIMP Script-FU.
# Copyright © 2006 Gnome i18n Project for Vietnamese.
# T.M.Thanh <tmthanh@yahoo.com>, 2002.
# Clytie Siddall <clytie@riverland.net.au>, 2005-2006.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python Gnome HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-08-23 20:30+0930\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: LocFactoryEditor 1.6fc1\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Bàn giao tiếp Python"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Duyệt..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Bàn giao tiếp Python"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
#, fuzzy
msgid "Interactive Python Development"
msgstr "Bàn giao tiếp tương tác để phát triển Python"

34
po-python/xh.po Normal file
View file

@ -0,0 +1,34 @@
# Xhosa translation of gimp-python
# Copyright (C) 2005 Canonical Ltd.
# This file is distributed under the same license as the gimp package.
# Translation by Canonical Ltd <translations@canonical.com> with thanks to
# Translation World CC in South Africa, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp20-python\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2005-03-31 09:03+0200\n"
"Last-Translator: Canonical Ltd <translations@canonical.com>\n"
"Language-Team: Xhosa <xh-translate@ubuntu.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "i-Python Console"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "_Khangela..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "i-Python Console"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

31
po-python/yi.po Normal file
View file

@ -0,0 +1,31 @@
# Yiddish version
# Copyright (C) 2003 Free Software Foundation, Inc.
# Raphael Finkel <raphael@cs.uky.edu>, 2003.
#
msgid ""
msgstr ""
"Project-Id-Version: 1.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2003-03-19\n"
"Last-Translator: Raphael Finkel <raphael@cs.uky.edu>\n"
"Language-Team: Yiddish <raphael@cs.uky.edu>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
msgid "Gimp-Python Console"
msgstr ""
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

33
po-python/zh_CN.po Normal file
View file

@ -0,0 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# Yuheng Xie <elephant@linux.net.cn>, 2001-2004.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2006-05-03 15:57+0800\n"
"Last-Translator: Yuheng Xie <elephant@linux.net.cn>\n"
"Language-Team: zh_CN <i18n-translation@lists.linux.net.cn>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Translator: Yuheng Xie <elephant@linux.net.cn>\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python 控制台"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
msgid "_Browse..."
msgstr "浏览(_B)..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python 控制台"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""

35
po-python/zh_TW.po Normal file
View file

@ -0,0 +1,35 @@
# traditional Chinese translation for gimp-python.
# Copyright (C) 2001, 2003, 2004 Free Software Foundation, Inc.
# Chun-Chung Chen (陳俊仲) <cjj@u.washington.edu>, 2001.
# 林佳宏 <object@mis.mgt.ncu.edu.tw>, 2001.
# Abel Cheung <maddog@linuxhall.org>, 2001, 2003, 2004.
#
msgid ""
msgstr ""
"Project-Id-Version: gimp-python 2.1.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-09-13 21:07+0200\n"
"PO-Revision-Date: 2004-09-28 11:10+0800\n"
"Last-Translator: Abel Cheung <maddog@linuxhall.org>\n"
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:43
msgid "Python Console"
msgstr "Python 訊息視窗"
#: ../plug-ins/pygimp/plug-ins/gimpcons.py:75
#, fuzzy
msgid "_Browse..."
msgstr "瀏覽..."
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:217
#, fuzzy
msgid "Gimp-Python Console"
msgstr "Python 訊息視窗"
#: ../plug-ins/pygimp/plug-ins/gtkcons.py:218
msgid "Interactive Python Development"
msgstr ""