diff --git a/ChangeLog b/ChangeLog index ce8da0e331..0206349dd9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2006-09-13 Sven Neumann + + * 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 * app/tools/gimpperspectiveclonetool.h: added macro diff --git a/Makefile.am b/Makefile.am index 07a08437d7..69d6034933 100644 --- a/Makefile.am +++ b/Makefile.am @@ -9,6 +9,7 @@ SUBDIRS = \ po \ po-libgimp \ po-plug-ins \ + po-python \ po-script-fu \ po-tips \ data \ diff --git a/configure.in b/configure.in index 51dc431859..aeab5fb725 100644 --- a/configure.in +++ b/configure.in @@ -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]) diff --git a/plug-ins/pygimp/plug-ins/gimpcons.py b/plug-ins/pygimp/plug-ins/gimpcons.py index 78b05934f1..c76550990a 100755 --- a/plug-ins/pygimp/plug-ins/gimpcons.py +++ b/plug-ins/pygimp/plug-ins/gimpcons.py @@ -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) diff --git a/plug-ins/pygimp/plug-ins/gtkcons.py b/plug-ins/pygimp/plug-ins/gtkcons.py index 7c6343e512..3aad7ad504 100755 --- a/plug-ins/pygimp/plug-ins/gtkcons.py +++ b/plug-ins/pygimp/plug-ins/gtkcons.py @@ -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) diff --git a/po-python/.cvsignore b/po-python/.cvsignore new file mode 100644 index 0000000000..d26efa3377 --- /dev/null +++ b/po-python/.cvsignore @@ -0,0 +1,10 @@ +*.gmo +*.mo +Makefile +Makefile.in +POTFILES +cat-id-tbl.c +*.pot +stamp-cat-id +messages +missing diff --git a/po-python/ChangeLog b/po-python/ChangeLog new file mode 100644 index 0000000000..8cd6f94a48 --- /dev/null +++ b/po-python/ChangeLog @@ -0,0 +1,5 @@ +2006-09-13 Sven Neumann + + * Added basic infrastructure for i18n of gimp-python. The initial + po files are based on po-script-fu. + diff --git a/po-python/Makefile.in.in b/po-python/Makefile.in.in new file mode 100644 index 0000000000..00c3a7d37a --- /dev/null +++ b/po-python/Makefile.in.in @@ -0,0 +1,258 @@ +# Makefile for program source directory in GNU NLS utilities package. +# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper +# +# 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 to use GETTEXT_PACKAGE +# instead of PACKAGE and to look for po2tbl in ./ not in intl/ +# +# - Modified by jacob berkman 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: diff --git a/po-python/POTFILES.in b/po-python/POTFILES.in new file mode 100644 index 0000000000..2754dff7f5 --- /dev/null +++ b/po-python/POTFILES.in @@ -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 diff --git a/po-python/az.po b/po-python/az.po new file mode 100644 index 0000000000..7e26ed93cb --- /dev/null +++ b/po-python/az.po @@ -0,0 +1,34 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR , 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 \n" +"Language-Team: Azerbaijani Turkic \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 "" diff --git a/po-python/bg.po b/po-python/bg.po new file mode 100644 index 0000000000..dd87e39bb2 --- /dev/null +++ b/po-python/bg.po @@ -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 , 2005. +# Victor Dachev , 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 \n" +"Language-Team: Bulgarian \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 "" diff --git a/po-python/ca.po b/po-python/ca.po new file mode 100644 index 0000000000..c7dbd2d07a --- /dev/null +++ b/po-python/ca.po @@ -0,0 +1,39 @@ +# gimp-python translation to Catalan. +# Copyright © 2000, 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# +# Softcatala , 2000-2001. +# Xavier Beà , 2003, 2004. +# Xavier Conde Rueda , 2004. +# Quim Perez Noguer , 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à \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" diff --git a/po-python/cs.po b/po-python/cs.po new file mode 100644 index 0000000000..c4f2c2cdb6 --- /dev/null +++ b/po-python/cs.po @@ -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 +# Stanislav Brabec , 2000-2001. +# Michal Bukovjan , 2003. +# Miloslav Trmac , 2003 - 2005. +# Jakub Friedl , 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 \n" +"Language-Team: Czech \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" diff --git a/po-python/da.po b/po-python/da.po new file mode 100644 index 0000000000..ff7550d192 --- /dev/null +++ b/po-python/da.po @@ -0,0 +1,47 @@ +# Danish translation of GIMP python. +# Copyright (C) 2000, 01, 02, 04 Free Software Foundation, Inc. +# Birger Langkjer , 2000. +# Keld Simonsen , 2000. +# Ole Laursen , 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 \n" +"Language-Team: Danish \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 "" diff --git a/po-python/de.po b/po-python/de.po new file mode 100644 index 0000000000..e0d58eda58 --- /dev/null +++ b/po-python/de.po @@ -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 +# Felix Natter +# Jens Seidel +# Roman Joost , 2004-2005. +# Sven Neumann , 2004. +# Hendrik Brandt , 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 \n" +"Language-Team: German \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" diff --git a/po-python/dz.po b/po-python/dz.po new file mode 100644 index 0000000000..6dc1268e0f --- /dev/null +++ b/po-python/dz.po @@ -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 , 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 \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 "" diff --git a/po-python/el.po b/po-python/el.po new file mode 100644 index 0000000000..4981cec4fb --- /dev/null +++ b/po-python/el.po @@ -0,0 +1,35 @@ +# Greek translation for gimp-python. +# Copyright (C) 2001, 2002 Free Software Foundation. +# Simos Xenitellis , 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 \n" +"Language-Team: Greek \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 "" diff --git a/po-python/en_CA.po b/po-python/en_CA.po new file mode 100644 index 0000000000..4faac8dc7d --- /dev/null +++ b/po-python/en_CA.po @@ -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 , 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 \n" +"Language-Team: Canadian English \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 "" diff --git a/po-python/en_GB.po b/po-python/en_GB.po new file mode 100644 index 0000000000..8fc5a81e27 --- /dev/null +++ b/po-python/en_GB.po @@ -0,0 +1,33 @@ +# This is the English, British catalog for GIMP Python. +# Copyright (C) 2000 Free Software Foundation, Inc. +# Piers Cornwell , 2000. +# Gareth Owen , David Lodge , 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 \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 "" diff --git a/po-python/es.po b/po-python/es.po new file mode 100644 index 0000000000..d4463a5a88 --- /dev/null +++ b/po-python/es.po @@ -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 +# Pablo G. del Campo , 2003, 2004. +# Francisco Javier F. Serrador , 2004, 2005. +# Francisco Vila , 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 \n" +"Language-Team: \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" diff --git a/po-python/et.po b/po-python/et.po new file mode 100644 index 0000000000..88354ff8ca --- /dev/null +++ b/po-python/et.po @@ -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 , 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 \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 "" diff --git a/po-python/eu.po b/po-python/eu.po new file mode 100644 index 0000000000..ad455803a0 --- /dev/null +++ b/po-python/eu.po @@ -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 , 2004. +# Iñaki Larrañaga Murgoitio , 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 \n" +"Language-Team: Basque \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" diff --git a/po-python/fi.po b/po-python/fi.po new file mode 100644 index 0000000000..0f8aaf8383 --- /dev/null +++ b/po-python/fi.po @@ -0,0 +1,34 @@ +# Gimp tiny-fu finnish translation +# Copyright (C) 2000 Free Software Foundation, Inc. +# Ilkka Tuohela , 2006. +# Mikko Paananen, 2004. +# Ville Hautamäki , 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 \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" diff --git a/po-python/fr.po b/po-python/fr.po new file mode 100644 index 0000000000..616e3268ec --- /dev/null +++ b/po-python/fr.po @@ -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 , 2000. +# Christophe Merlet (RedFox) , 2000-2004. +# maintainer: Raymond Ostertag , 2002-2004. +# Jean-Louis Berliet , 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 \n" +"Language-Team: GNOME French Team \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" diff --git a/po-python/ga.po b/po-python/ga.po new file mode 100644 index 0000000000..2986c8f2ec --- /dev/null +++ b/po-python/ga.po @@ -0,0 +1,35 @@ +# Irish Translations for gimp po script fu +# Copyright (C) 2000,2004 Free Software Foundation, Inc. +# Seán Ó Ceallaigh , 2000. +# Alastair McKinstry , 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 \n" +"Language-Team: Gaeilge \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 "" diff --git a/po-python/gl.po b/po-python/gl.po new file mode 100644 index 0000000000..250f07d585 --- /dev/null +++ b/po-python/gl.po @@ -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 , 2001. +# Ignacio Casal Quinteiro , 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 \n" +"Language-Team: Galego \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 "" diff --git a/po-python/gu.po b/po-python/gu.po new file mode 100644 index 0000000000..3e471aee9d --- /dev/null +++ b/po-python/gu.po @@ -0,0 +1,36 @@ +# translation of gimp-python.HEAD.gu.po to Gujarati +# translation of gimp-python.HEAD.po to Gujarati +# Ankit Patel , 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 \n" +"Language-Team: Gujarati \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 "" diff --git a/po-python/he.po b/po-python/he.po new file mode 100644 index 0000000000..860f5611ee --- /dev/null +++ b/po-python/he.po @@ -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 , 2003 +# Gil 'Dolfin' Osher , 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 \n" +"Language-Team: Hebrew \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 "" diff --git a/po-python/hr.po b/po-python/hr.po new file mode 100644 index 0000000000..295557cdee --- /dev/null +++ b/po-python/hr.po @@ -0,0 +1,33 @@ +# Translation of gimp-python to Croatiann +# Copyright (C) Croatiann team +# Translators: Automatski Prijevod <>,Denis Lackovic ,Ivan Jankovic ,Nikola Planinac <>,pr pr ,Robert Sedak , +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 \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 "" diff --git a/po-python/hu.po b/po-python/hu.po new file mode 100644 index 0000000000..08666cfbcb --- /dev/null +++ b/po-python/hu.po @@ -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 , 2001, 2003. +# Emese Kovacs , 2001. +# Laszlo Dvornik , 2004. +# Arpad Biro , 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 \n" +"Language-Team: Hungarian \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 "" diff --git a/po-python/id.po b/po-python/id.po new file mode 100644 index 0000000000..79a8934ac5 --- /dev/null +++ b/po-python/id.po @@ -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 \n" +"Language-Team: Indonesian \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 "" diff --git a/po-python/it.po b/po-python/it.po new file mode 100644 index 0000000000..e605520932 --- /dev/null +++ b/po-python/it.po @@ -0,0 +1,33 @@ +# This is the Italian catalog for The GIMP. +# Copyright (C) 1999 Free Software Foundation, Inc. +# Daniele Medri , 2000, 2001, 2002 +# Marco Ciampa , 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 \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" diff --git a/po-python/ja.po b/po-python/ja.po new file mode 100644 index 0000000000..3fb9f9a327 --- /dev/null +++ b/po-python/ja.po @@ -0,0 +1,37 @@ +# GIMP Python Japanese message catalog +# Copyright (C) 2000,2003 Free Software Foundation, Inc. +# Shirasaki Yasuhiro , 2000 +# Takashi Kido , 2000 +# KAMAGASAKO Masatoshi , 2003. +# Ryoichi INAGAKI , 2003. +# Tadashi Jokagi , 2005. +# OKANO Takayoshi , 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 \n" +"Language-Team: Japanese \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 "" diff --git a/po-python/ko.po b/po-python/ko.po new file mode 100644 index 0000000000..b98d1df965 --- /dev/null +++ b/po-python/ko.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR , 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 \n" +"Language-Team: Korean \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 "" diff --git a/po-python/lt.po b/po-python/lt.po new file mode 100644 index 0000000000..78cb58c5d5 --- /dev/null +++ b/po-python/lt.po @@ -0,0 +1,33 @@ +# Lithuanian translation of GIMP.i +# Copyright (C) 2004-2006 Free Software Foundation, Inc. +# Žygimantas Beručka , 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 \n" +"Language-Team: Lithuanian \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 "" diff --git a/po-python/mk.po b/po-python/mk.po new file mode 100644 index 0000000000..a7de308183 --- /dev/null +++ b/po-python/mk.po @@ -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 , 2004, 2005, 2006. +# Vladimir Stefanov , 2006. +# Jovan Naumovski , 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 \n" +"Language-Team: Macedonian \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" diff --git a/po-python/ms.po b/po-python/ms.po new file mode 100644 index 0000000000..3db9702b02 --- /dev/null +++ b/po-python/ms.po @@ -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 , 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 \n" +"Language-Team: Projek Gabai \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 "" diff --git a/po-python/nb.po b/po-python/nb.po new file mode 100644 index 0000000000..3695169ad0 --- /dev/null +++ b/po-python/nb.po @@ -0,0 +1,33 @@ +# Norwegian translation of gimp-po-python. +# Copyright (C) 2000 Free Software Foundation, Inc. +# Kjartan Maraas , 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 \n" +"Language-Team: Norwegian \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 "" diff --git a/po-python/ne.po b/po-python/ne.po new file mode 100644 index 0000000000..d0bcaf4d33 --- /dev/null +++ b/po-python/ne.po @@ -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 , 2005. +# Jyotshna Shrestha , 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 \n" +"Language-Team: Nepali \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 "" diff --git a/po-python/nl.po b/po-python/nl.po new file mode 100644 index 0000000000..0100326d28 --- /dev/null +++ b/po-python/nl.po @@ -0,0 +1,35 @@ +# Dutch translation of the GIMP's python strings. +# Copyright (C) 2001 Free Software Foundation, Inc. +# Branko Collin , 2001-2004. +# Tino Meinen , 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 \n" +"Language-Team: Dutch \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 "" diff --git a/po-python/pa.po b/po-python/pa.po new file mode 100644 index 0000000000..d5260b7308 --- /dev/null +++ b/po-python/pa.po @@ -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 , 2004. +# Amanpreet Singh Alam , 2004. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 2005. +# Amanpreet Singh Alam[ਆਲਮ] , 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[ਆਲਮ] \n" +"Language-Team: Punjabi \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 "" diff --git a/po-python/pl.po b/po-python/pl.po new file mode 100644 index 0000000000..f09f00d8f8 --- /dev/null +++ b/po-python/pl.po @@ -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 , 1999-2005. +# Artur Polaczyński , 1999,2000. +# Bartosz Kosiorek , 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 \n" +"Language-Team: Polish \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 "" diff --git a/po-python/pt.po b/po-python/pt.po new file mode 100644 index 0000000000..316c88702d --- /dev/null +++ b/po-python/pt.po @@ -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 , 2002 +# Duarte Loreto , 2003, 2004 +# +# Baseado na versão brasileria por Marcia Norie Nakaza , 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 \n" +"Language-Team: Portuguese \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 "" diff --git a/po-python/pt_BR.po b/po-python/pt_BR.po new file mode 100644 index 0000000000..89f5b3c696 --- /dev/null +++ b/po-python/pt_BR.po @@ -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 , 2000. +# Alexandre Folle de Menezes , 2002-2003. +# Joao S. O. Bueno Calligaris , 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 \n" +"Language-Team: Brazilian Portuguese <>\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 "" diff --git a/po-python/ro.po b/po-python/ro.po new file mode 100644 index 0000000000..0566719078 --- /dev/null +++ b/po-python/ro.po @@ -0,0 +1,34 @@ +# gimp ro translation +# Copyright (C) YEAR Free Software Foundation, Inc. +# Robert Claudiu Gheorghe , 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 \n" +"Language-Team: Română \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 "" diff --git a/po-python/ru.po b/po-python/ru.po new file mode 100644 index 0000000000..20b033adef --- /dev/null +++ b/po-python/ru.po @@ -0,0 +1,40 @@ +# translation of gimp python to Russian +# Copyright (C) 2000-2002,2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# +# Valek Filippov , 2000-2002. +# Anatoly A. Yakushin , 2003, 2004. +# AnatolyA. Yakushin , 2004. +# Roxana Kolosova , 2003-2006. +# Alexandre Prokoudine , 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 \n" +"Language-Team: Russian \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" diff --git a/po-python/rw.po b/po-python/rw.po new file mode 100644 index 0000000000..f45f5aafd6 --- /dev/null +++ b/po-python/rw.po @@ -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 , 2005 +# Steve performed initial rough translation from compendium built from translations provided by the following translators: +# Philibert Ndandali , 2005. +# Viateur MUGENZI , 2005. +# Noëlla Mupole , 2005. +# Carole Karema , 2005. +# JEAN BAPTISTE NGENDAHAYO , 2005. +# Augustin KIBERWA , 2005. +# Donatien NSENGIYUMVA , 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 \n" +"Language-Team: Kinyarwanda \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"ULL NAME \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 "" diff --git a/po-python/sk.po b/po-python/sk.po new file mode 100644 index 0000000000..069192c971 --- /dev/null +++ b/po-python/sk.po @@ -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ý , 2002,2003, 2004. +# Marcel Telka , 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 \n" +"Language-Team: Slovak \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 "" diff --git a/po-python/sl.po b/po-python/sl.po new file mode 100644 index 0000000000..7296bc22ad --- /dev/null +++ b/po-python/sl.po @@ -0,0 +1,35 @@ +# This is the English, British catalog for GIMP Python. +# Copyright (C) 2000 Free Software Foundation, Inc. +# Piers Cornwell , 2000. +# Gareth Owen , David Lodge , 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 \n" +"Language-Team: Lugos \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 "" diff --git a/po-python/sr.po b/po-python/sr.po new file mode 100644 index 0000000000..23ce724c66 --- /dev/null +++ b/po-python/sr.po @@ -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: Бранко Ивановић +# +# +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: Бранко Ивановић \n" +"Language-Team: Serbian (sr) \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 "" diff --git a/po-python/sr@Latn.po b/po-python/sr@Latn.po new file mode 100644 index 0000000000..0a961b32d6 --- /dev/null +++ b/po-python/sr@Latn.po @@ -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ć +# +# +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ć \n" +"Language-Team: Serbian (sr) \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 "" diff --git a/po-python/sv.po b/po-python/sv.po new file mode 100644 index 0000000000..f17deafff7 --- /dev/null +++ b/po-python/sv.po @@ -0,0 +1,36 @@ +# Swedish messages for GIMP Python. +# Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc. +# Christian Rose , 2000, 2001, 2002, 2003. +# Jan Morén , 2003. +# Tomas Ögren , 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 \n" +"Language-Team: Swedish \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 "" diff --git a/po-python/tr.po b/po-python/tr.po new file mode 100644 index 0000000000..2fa4901ed5 --- /dev/null +++ b/po-python/tr.po @@ -0,0 +1,34 @@ +# Copyright (C) 2001 Free Software Foundation, Inc. +# Ömer Fadıl USTA , 2002. +# Fatih Demir , 2001. +# Alper Ersoy , 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 \n" +"Language-Team: Turkish \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 "" diff --git a/po-python/tt.po b/po-python/tt.po new file mode 100644 index 0000000000..e9c5792711 --- /dev/null +++ b/po-python/tt.po @@ -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í , 2005. +# Beznen Soft , 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í \n" +"Language-Team: Tatarish \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 "" diff --git a/po-python/uk.po b/po-python/uk.po new file mode 100644 index 0000000000..95623b34f2 --- /dev/null +++ b/po-python/uk.po @@ -0,0 +1,32 @@ +# Copyright (C) 2000 Free Software Foundation, Inc. +# Yuri Syrota , 2000. +# Maxim Dziumanenko , 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 \n" +"Language-Team: Ukrainian \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 "" diff --git a/po-python/vi.po b/po-python/vi.po new file mode 100644 index 0000000000..1748664ca6 --- /dev/null +++ b/po-python/vi.po @@ -0,0 +1,36 @@ +# Vietnamese translation for GIMP Script-FU. +# Copyright © 2006 Gnome i18n Project for Vietnamese. +# T.M.Thanh , 2002. +# Clytie Siddall , 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 \n" +"Language-Team: Vietnamese \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" diff --git a/po-python/xh.po b/po-python/xh.po new file mode 100644 index 0000000000..2096ac1e87 --- /dev/null +++ b/po-python/xh.po @@ -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 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 \n" +"Language-Team: Xhosa \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 "" diff --git a/po-python/yi.po b/po-python/yi.po new file mode 100644 index 0000000000..c0fdb856d1 --- /dev/null +++ b/po-python/yi.po @@ -0,0 +1,31 @@ +# Yiddish version +# Copyright (C) 2003 Free Software Foundation, Inc. +# Raphael Finkel , 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 \n" +"Language-Team: Yiddish \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 "" diff --git a/po-python/zh_CN.po b/po-python/zh_CN.po new file mode 100644 index 0000000000..cc48f1ee3c --- /dev/null +++ b/po-python/zh_CN.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# Yuheng Xie , 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 \n" +"Language-Team: zh_CN \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Translator: Yuheng Xie \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 "" diff --git a/po-python/zh_TW.po b/po-python/zh_TW.po new file mode 100644 index 0000000000..9015e363b8 --- /dev/null +++ b/po-python/zh_TW.po @@ -0,0 +1,35 @@ +# traditional Chinese translation for gimp-python. +# Copyright (C) 2001, 2003, 2004 Free Software Foundation, Inc. +# Chun-Chung Chen (陳俊仲) , 2001. +# 林佳宏 , 2001. +# Abel Cheung , 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 \n" +"Language-Team: Chinese (traditional) \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 ""