[Xfce4-commits] <parole:master> Update pot and po files for the strings additions
Ali Abdallah
noreply at xfce.org
Tue Oct 6 10:16:06 CEST 2009
Updating branch refs/heads/master
to def89f3fca1c43f4860628fab2f37b504c212bfa (commit)
from 932afb714aa197bca2dac90574dea3f3e814c612 (commit)
commit def89f3fca1c43f4860628fab2f37b504c212bfa
Author: Ali Abdallah <ali at ali-xfce.org>
Date: Tue Oct 6 10:13:47 2009 +0000
Update pot and po files for the strings additions
po/LINGUAS | 2 +-
po/Makefile.in.in | 218 +++++++++++++++++++++++++++++++++++++++++++++++++++++
po/ast.po | 43 +++++++++--
po/da.po | 43 +++++++++--
po/es.po | 43 +++++++++--
po/id.po | 43 +++++++++--
po/ja.po | 43 +++++++++--
po/parole.pot | 40 ++++++++--
po/ru.po | 43 +++++++++--
po/sk.po | 43 +++++++++--
po/tr.po | 43 +++++++++--
po/uk.po | 43 +++++++++--
12 files changed, 566 insertions(+), 81 deletions(-)
diff --git a/po/LINGUAS b/po/LINGUAS
index bd0d6c1..97fa9f4 100644
--- a/po/LINGUAS
+++ b/po/LINGUAS
@@ -1,2 +1,2 @@
# set of available languages (in alphabetic order)
-ast da es id ru sk tr uk
+ast da es id ja ru sk tr uk
diff --git a/po/Makefile.in.in b/po/Makefile.in.in
new file mode 100644
index 0000000..78ffdaa
--- /dev/null
+++ b/po/Makefile.in.in
@@ -0,0 +1,218 @@
+# Makefile for program source directory in GNU NLS utilities package.
+# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper at gnu.ai.mit.edu>
+# Copyright (C) 2004-2008 Rodney Dawes <dobey.pwns at gmail.com>
+#
+# This file may be copied and used freely without restrictions. It may
+# be used in projects which are not available under a GNU Public License,
+# but which still want to provide support for the GNU gettext functionality.
+#
+# - Modified by Owen Taylor <otaylor at redhat.com> to use GETTEXT_PACKAGE
+# instead of PACKAGE and to look for po2tbl in ./ not in intl/
+#
+# - Modified by jacob berkman <jacob at ximian.com> to install
+# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
+#
+# - Modified by Rodney Dawes <dobey.pwns at gmail.com> for use with intltool
+#
+# We have the following line for use by intltoolize:
+# INTLTOOL_MAKEFILE
+
+GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
+PACKAGE = @PACKAGE@
+VERSION = @VERSION@
+
+SHELL = @SHELL@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+top_builddir = @top_builddir@
+VPATH = @srcdir@
+
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+datadir = @datadir@
+datarootdir = @datarootdir@
+libdir = @libdir@
+DATADIRNAME = @DATADIRNAME@
+itlocaledir = $(prefix)/$(DATADIRNAME)/locale
+subdir = po
+install_sh = @install_sh@
+# Automake >= 1.8 provides @mkdir_p at .
+# Until it can be supposed, use the safe fallback:
+mkdir_p = $(install_sh) -d
+
+INSTALL = @INSTALL@
+INSTALL_DATA = @INSTALL_DATA@
+
+GMSGFMT = @GMSGFMT@
+MSGFMT = @MSGFMT@
+XGETTEXT_ARGS = @XGETTEXT_ARGS@
+XGETTEXT = @XGETTEXT@ $(XGETTEXT_ARGS)
+INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
+MSGMERGE = XGETTEXT_ARGS="$(XGETTEXT_ARGS)" INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
+GENPOT = XGETTEXT_ARGS="$(XGETTEXT_ARGS)" INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
+
+ALL_LINGUAS = @ALL_LINGUAS@
+
+PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi)
+
+USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep \^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep \^$$lang$$`"; then printf "$$lang "; fi; done; fi)
+
+USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
+
+POFILES=$(shell LINGUAS="$(PO_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done)
+
+DISTFILES = Makefile.in.in POTFILES.in $(POFILES)
+EXTRA_DISTFILES = ChangeLog POTFILES.skip Makevars LINGUAS
+
+POTFILES = \
+# This comment gets stripped out
+
+CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done)
+
+.SUFFIXES:
+.SUFFIXES: .po .pox .gmo .mo .msg .cat
+
+.po.pox:
+ $(MAKE) $(GETTEXT_PACKAGE).pot
+ $(MSGMERGE) $< $(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- at USE_NLS@
+
+all-yes: $(CATALOGS)
+all-no:
+
+$(GETTEXT_PACKAGE).pot: $(POTFILES)
+ $(GENPOT)
+
+install: install-data
+install-data: install-data- at USE_NLS@
+install-data-no: all
+install-data-yes: all
+ linguas="$(USE_LINGUAS)"; \
+ for lang in $$linguas; do \
+ dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \
+ $(mkdir_p) $$dir; \
+ if test -r $$lang.gmo; then \
+ $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
+ echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \
+ else \
+ $(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \
+ echo "installing $(srcdir)/$$lang.gmo as" \
+ "$$dir/$(GETTEXT_PACKAGE).mo"; \
+ fi; \
+ if test -r $$lang.gmo.m; then \
+ $(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \
+ echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \
+ else \
+ if test -r $(srcdir)/$$lang.gmo.m ; then \
+ $(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \
+ $$dir/$(GETTEXT_PACKAGE).mo.m; \
+ echo "installing $(srcdir)/$$lang.gmo.m as" \
+ "$$dir/$(GETTEXT_PACKAGE).mo.m"; \
+ else \
+ true; \
+ fi; \
+ fi; \
+ done
+
+# Empty stubs to satisfy archaic automake needs
+dvi info ctags tags CTAGS TAGS ID:
+
+# Define this as empty until I found a useful application.
+install-exec installcheck:
+
+uninstall:
+ linguas="$(USE_LINGUAS)"; \
+ for lang in $$linguas; do \
+ rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
+ rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
+ done
+
+check: all $(GETTEXT_PACKAGE).pot
+ rm -f missing notexist
+ srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m
+ if [ -r missing -o -r notexist ]; then \
+ exit 1; \
+ fi
+
+mostlyclean:
+ rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
+ rm -f .intltool-merge-cache
+
+clean: mostlyclean
+
+distclean: clean
+ rm -f Makefile Makefile.in POTFILES stamp-it
+ rm -f *.mo *.msg *.cat *.cat.m *.gmo
+
+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 Makefile.in.in
+
+distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
+dist distdir: $(DISTFILES)
+ dists="$(DISTFILES)"; \
+ extra_dists="$(EXTRA_DISTFILES)"; \
+ for file in $$extra_dists; do \
+ test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \
+ done; \
+ for file in $$dists; do \
+ test -f $$file || file="$(srcdir)/$$file"; \
+ ln $$file $(distdir) 2> /dev/null \
+ || cp -p $$file $(distdir); \
+ done
+
+update-po: Makefile
+ $(MAKE) $(GETTEXT_PACKAGE).pot
+ tmpdir=`pwd`; \
+ linguas="$(USE_LINGUAS)"; \
+ for lang in $$linguas; do \
+ 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 $$lang.gmo failed!"; \
+ rm -f $$tmpdir/$$lang.new.po; \
+ fi; \
+ done
+
+Makefile POTFILES: stamp-it
+ @if test ! -f $@; then \
+ rm -f stamp-it; \
+ $(MAKE) stamp-it; \
+ fi
+
+stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in
+ cd $(top_builddir) \
+ && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \
+ $(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/ast.po b/po/ast.po
index 1eda573..09351ad 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ast\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-04 16:25+0000\n"
+"POT-Creation-Date: 2009-10-06 10:11+0000\n"
"PO-Revision-Date: 2009-09-03 13:51+0100\n"
"Last-Translator: astur <malditoastur at gmail.com>\n"
"Language-Team: Asturian <alministradores at softastur.org>\n"
@@ -135,7 +135,13 @@ msgid "<b>Site:</b>"
msgstr "<b>Sitiu:</b>"
#: ../data/interfaces/plugins.ui.h:4
-msgid "Parole Plugins Preferences"
+#, fuzzy
+msgid "Media Player plugins"
+msgstr "Axustes del Reproductor de Medios"
+
+#: ../data/interfaces/plugins.ui.h:5
+#, fuzzy
+msgid "Parole Plugins"
msgstr "Preferencies de Complementos de Parole"
#: ../data/interfaces/parole-settings.ui.h:1
@@ -306,11 +312,11 @@ msgstr "El fluxu ta llevando enforma tiempu pa cargar"
msgid "Stop"
msgstr "Parar"
-#: ../parole/parole-mediachooser.c:154
+#: ../parole/parole-mediachooser.c:155
msgid "Add media files"
msgstr "Amestar ficheros multimedia"
-#: ../parole/parole-mediachooser.c:173
+#: ../parole/parole-mediachooser.c:174
msgid "Add"
msgstr "Amestar"
@@ -681,21 +687,42 @@ msgstr "<b>Reproduciendo:</b>"
msgid "<b>Duration:</b>"
msgstr "<b>Duración:</b>"
-#: ../plugins/tray/tray-icon.c:370
+#: ../plugins/tray/tray-icon.c:373
msgid "Tray icon plugin"
msgstr "complementu d'iconu de bandexa"
-#: ../plugins/tray/tray-icon.c:379
+#: ../plugins/tray/tray-icon.c:383
msgid "Enable notification"
msgstr "Activar notificación"
+#: ../plugins/tray/tray-icon.c:392
+msgid "Always minimize to tray when window is closed"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:431
+msgid "Minimize to tray?"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:437
+msgid "Minimize to tray"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:453
+msgid "Are you sure you want to quit Parole"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:457
+#, fuzzy
+msgid "Remember my choice"
+msgstr "Remembrar llista de reproducción"
+
#. Construct function
-#: ../plugins/tray/tray-icon.c:451
+#: ../plugins/tray/tray-icon.c:544
msgid "Tray icon"
msgstr "Iconu de bandexa"
#. Title
-#: ../plugins/tray/tray-icon.c:452
+#: ../plugins/tray/tray-icon.c:545
msgid "Show icon in the system tray"
msgstr "Amosar iconu na estaya de la bandexa del sistema"
diff --git a/po/da.po b/po/da.po
index a24f93c..b9f9c1e 100644
--- a/po/da.po
+++ b/po/da.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: parole 0.1.90\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-04 16:25+0000\n"
+"POT-Creation-Date: 2009-10-06 10:11+0000\n"
"PO-Revision-Date: 2009-08-23 23:08+0100\n"
"Last-Translator: Per Kongstad <p_kongstad at op.pl>\n"
"Language-Team: Danish <dansk at dansk-gruppen.dk>\n"
@@ -134,7 +134,13 @@ msgid "<b>Site:</b>"
msgstr "<b>Side:</b>"
#: ../data/interfaces/plugins.ui.h:4
-msgid "Parole Plugins Preferences"
+#, fuzzy
+msgid "Media Player plugins"
+msgstr "Indstillinger til medieafspiller"
+
+#: ../data/interfaces/plugins.ui.h:5
+#, fuzzy
+msgid "Parole Plugins"
msgstr "Indstillinger af udvidelsesmoduler til parole"
#: ../data/interfaces/parole-settings.ui.h:1
@@ -305,11 +311,11 @@ msgstr "Det tager for lang tid at indlæse strømmen"
msgid "Stop"
msgstr "Stop"
-#: ../parole/parole-mediachooser.c:154
+#: ../parole/parole-mediachooser.c:155
msgid "Add media files"
msgstr "Tilføj mediefiler"
-#: ../parole/parole-mediachooser.c:173
+#: ../parole/parole-mediachooser.c:174
msgid "Add"
msgstr "Tilføj"
@@ -679,21 +685,42 @@ msgstr "<b>Afspiller:</b>"
msgid "<b>Duration:</b>"
msgstr "<b>Varighed:</b>"
-#: ../plugins/tray/tray-icon.c:370
+#: ../plugins/tray/tray-icon.c:373
msgid "Tray icon plugin"
msgstr "Udvidelsesmodul til statusikon"
-#: ../plugins/tray/tray-icon.c:379
+#: ../plugins/tray/tray-icon.c:383
msgid "Enable notification"
msgstr "Slå påmindelse til"
+#: ../plugins/tray/tray-icon.c:392
+msgid "Always minimize to tray when window is closed"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:431
+msgid "Minimize to tray?"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:437
+msgid "Minimize to tray"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:453
+msgid "Are you sure you want to quit Parole"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:457
+#, fuzzy
+msgid "Remember my choice"
+msgstr "Husk spilleliste"
+
#. Construct function
-#: ../plugins/tray/tray-icon.c:451
+#: ../plugins/tray/tray-icon.c:544
msgid "Tray icon"
msgstr "Statusikon"
#. Title
-#: ../plugins/tray/tray-icon.c:452
+#: ../plugins/tray/tray-icon.c:545
msgid "Show icon in the system tray"
msgstr "Vis ikon i proceslinien"
diff --git a/po/es.po b/po/es.po
index 8af9222..e1ac1af 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-04 16:25+0000\n"
+"POT-Creation-Date: 2009-10-06 10:11+0000\n"
"PO-Revision-Date: 2009-09-06 02:22-0300\n"
"Last-Translator: elega <elega at elega.com.ar>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -132,7 +132,13 @@ msgid "<b>Site:</b>"
msgstr "<b>Sitio:</b>"
#: ../data/interfaces/plugins.ui.h:4
-msgid "Parole Plugins Preferences"
+#, fuzzy
+msgid "Media Player plugins"
+msgstr "Configuración del reproductor de medios"
+
+#: ../data/interfaces/plugins.ui.h:5
+#, fuzzy
+msgid "Parole Plugins"
msgstr "Preferencias de complementos Parole"
#: ../data/interfaces/parole-settings.ui.h:1
@@ -303,11 +309,11 @@ msgstr ""
msgid "Stop"
msgstr "Detener"
-#: ../parole/parole-mediachooser.c:154
+#: ../parole/parole-mediachooser.c:155
msgid "Add media files"
msgstr "Agregar archivos multimedia"
-#: ../parole/parole-mediachooser.c:173
+#: ../parole/parole-mediachooser.c:174
msgid "Add"
msgstr "Añadir"
@@ -678,21 +684,42 @@ msgstr "<b>Reproduciendo:</b>"
msgid "<b>Duration:</b>"
msgstr "<b>Duración:</b>"
-#: ../plugins/tray/tray-icon.c:370
+#: ../plugins/tray/tray-icon.c:373
msgid "Tray icon plugin"
msgstr "Complemento Ãcono de la bandeja"
-#: ../plugins/tray/tray-icon.c:379
+#: ../plugins/tray/tray-icon.c:383
msgid "Enable notification"
msgstr "Activar notificaciones"
+#: ../plugins/tray/tray-icon.c:392
+msgid "Always minimize to tray when window is closed"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:431
+msgid "Minimize to tray?"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:437
+msgid "Minimize to tray"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:453
+msgid "Are you sure you want to quit Parole"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:457
+#, fuzzy
+msgid "Remember my choice"
+msgstr "Recordar lista de reproducción"
+
#. Construct function
-#: ../plugins/tray/tray-icon.c:451
+#: ../plugins/tray/tray-icon.c:544
msgid "Tray icon"
msgstr "Icono de la bandeja"
#. Title
-#: ../plugins/tray/tray-icon.c:452
+#: ../plugins/tray/tray-icon.c:545
msgid "Show icon in the system tray"
msgstr "Mostrar Ãcono en la bandeja del sistema"
diff --git a/po/id.po b/po/id.po
index ad51e70..3311bec 100644
--- a/po/id.po
+++ b/po/id.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: parole\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-04 16:25+0000\n"
+"POT-Creation-Date: 2009-10-06 10:11+0000\n"
"PO-Revision-Date: 2009-08-27 04:28+0700\n"
"Last-Translator: Andhika Padmawan <andhika.padmawan at gmail.com>\n"
"Language-Team: Indonesian <translation-team-id at lists.sourceforge.net>\n"
@@ -132,7 +132,13 @@ msgid "<b>Site:</b>"
msgstr "<b>Situs:</b>"
#: ../data/interfaces/plugins.ui.h:4
-msgid "Parole Plugins Preferences"
+#, fuzzy
+msgid "Media Player plugins"
+msgstr "Pengaturan Pemutar Media"
+
+#: ../data/interfaces/plugins.ui.h:5
+#, fuzzy
+msgid "Parole Plugins"
msgstr "Pengaturan Plugin Parole"
#: ../data/interfaces/parole-settings.ui.h:1
@@ -301,11 +307,11 @@ msgstr "Arus menghabiskan terlalu banyak waktu untuk dimuat"
msgid "Stop"
msgstr "Stop"
-#: ../parole/parole-mediachooser.c:154
+#: ../parole/parole-mediachooser.c:155
msgid "Add media files"
msgstr "Tambah berkas media"
-#: ../parole/parole-mediachooser.c:173
+#: ../parole/parole-mediachooser.c:174
msgid "Add"
msgstr "Tambah"
@@ -676,21 +682,42 @@ msgstr "<b>Memutar:</b>"
msgid "<b>Duration:</b>"
msgstr "<b>Durasi:</b>"
-#: ../plugins/tray/tray-icon.c:370
+#: ../plugins/tray/tray-icon.c:373
msgid "Tray icon plugin"
msgstr "Baki plugin ikon"
-#: ../plugins/tray/tray-icon.c:379
+#: ../plugins/tray/tray-icon.c:383
msgid "Enable notification"
msgstr "Aktifkan notifikasi"
+#: ../plugins/tray/tray-icon.c:392
+msgid "Always minimize to tray when window is closed"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:431
+msgid "Minimize to tray?"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:437
+msgid "Minimize to tray"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:453
+msgid "Are you sure you want to quit Parole"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:457
+#, fuzzy
+msgid "Remember my choice"
+msgstr "Ingat senarai putar"
+
#. Construct function
-#: ../plugins/tray/tray-icon.c:451
+#: ../plugins/tray/tray-icon.c:544
msgid "Tray icon"
msgstr "Baki ikon"
#. Title
-#: ../plugins/tray/tray-icon.c:452
+#: ../plugins/tray/tray-icon.c:545
msgid "Show icon in the system tray"
msgstr "Tampilkan ikon di baki sistem"
diff --git a/po/ja.po b/po/ja.po
index dc14708..ec9472c 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: parole 0.1.90\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-06 00:43+0900\n"
+"POT-Creation-Date: 2009-10-06 10:11+0000\n"
"PO-Revision-Date: 2009-10-06 00:40+0900\n"
"Last-Translator: Masato Hashimoto <cabezon.hashimoto at gmail.com>\n"
"Language-Team: Japanese <xfce-users-jp at ml.fdiary.net>\n"
@@ -135,7 +135,13 @@ msgid "<b>Site:</b>"
msgstr "<b>ãµã¤ã:</b>"
#: ../data/interfaces/plugins.ui.h:4
-msgid "Parole Plugins Preferences"
+#, fuzzy
+msgid "Media Player plugins"
+msgstr "ã¡ãã£ã¢ãã¬ã¼ã¤ã¼è¨å®"
+
+#: ../data/interfaces/plugins.ui.h:5
+#, fuzzy
+msgid "Parole Plugins"
msgstr "Parole ãã©ã°ã¤ã³è¨å®"
#: ../data/interfaces/parole-settings.ui.h:1
@@ -304,11 +310,11 @@ msgstr "ãã®ã¹ããªã¼ã ãèªã¿è¾¼ãã«ã¯ããªãæéããããã¾
msgid "Stop"
msgstr "åæ¢"
-#: ../parole/parole-mediachooser.c:154
+#: ../parole/parole-mediachooser.c:155
msgid "Add media files"
msgstr "ã¡ãã£ã¢ãã¡ã¤ã«ã®è¿½å "
-#: ../parole/parole-mediachooser.c:173
+#: ../parole/parole-mediachooser.c:174
msgid "Add"
msgstr "追å "
@@ -677,21 +683,42 @@ msgstr "<b>åçä¸:</b>"
msgid "<b>Duration:</b>"
msgstr "<b>æé:</b>"
-#: ../plugins/tray/tray-icon.c:347
+#: ../plugins/tray/tray-icon.c:373
msgid "Tray icon plugin"
msgstr "ãã¬ã¤ã¢ã¤ã³ã³ãã©ã°ã¤ã³"
-#: ../plugins/tray/tray-icon.c:356
+#: ../plugins/tray/tray-icon.c:383
msgid "Enable notification"
msgstr "éç¥ãæå¹ã«ãã"
+#: ../plugins/tray/tray-icon.c:392
+msgid "Always minimize to tray when window is closed"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:431
+msgid "Minimize to tray?"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:437
+msgid "Minimize to tray"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:453
+msgid "Are you sure you want to quit Parole"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:457
+#, fuzzy
+msgid "Remember my choice"
+msgstr "ãã¬ã¤ãªã¹ããè¨æ¶"
+
#. Construct function
-#: ../plugins/tray/tray-icon.c:428
+#: ../plugins/tray/tray-icon.c:544
msgid "Tray icon"
msgstr "ãã¬ã¤ã¢ã¤ã³ã³"
#. Title
-#: ../plugins/tray/tray-icon.c:429
+#: ../plugins/tray/tray-icon.c:545
msgid "Show icon in the system tray"
msgstr "ã·ã¹ãã ãã¬ã¤ã«ã¢ã¤ã³ã³ã表示ãã¾ã"
diff --git a/po/parole.pot b/po/parole.pot
index 774096f..75cddf4 100644
--- a/po/parole.pot
+++ b/po/parole.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-04 16:25+0000\n"
+"POT-Creation-Date: 2009-10-06 10:12+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -133,7 +133,11 @@ msgid "<b>Site:</b>"
msgstr ""
#: ../data/interfaces/plugins.ui.h:4
-msgid "Parole Plugins Preferences"
+msgid "Media Player plugins"
+msgstr ""
+
+#: ../data/interfaces/plugins.ui.h:5
+msgid "Parole Plugins"
msgstr ""
#: ../data/interfaces/parole-settings.ui.h:1
@@ -288,11 +292,11 @@ msgstr ""
msgid "Stop"
msgstr ""
-#: ../parole/parole-mediachooser.c:154
+#: ../parole/parole-mediachooser.c:155
msgid "Add media files"
msgstr ""
-#: ../parole/parole-mediachooser.c:173
+#: ../parole/parole-mediachooser.c:174
msgid "Add"
msgstr ""
@@ -661,21 +665,41 @@ msgstr ""
msgid "<b>Duration:</b>"
msgstr ""
-#: ../plugins/tray/tray-icon.c:370
+#: ../plugins/tray/tray-icon.c:373
msgid "Tray icon plugin"
msgstr ""
-#: ../plugins/tray/tray-icon.c:379
+#: ../plugins/tray/tray-icon.c:383
msgid "Enable notification"
msgstr ""
+#: ../plugins/tray/tray-icon.c:392
+msgid "Always minimize to tray when window is closed"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:431
+msgid "Minimize to tray?"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:437
+msgid "Minimize to tray"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:453
+msgid "Are you sure you want to quit Parole"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:457
+msgid "Remember my choice"
+msgstr ""
+
#. Construct function
-#: ../plugins/tray/tray-icon.c:451
+#: ../plugins/tray/tray-icon.c:544
msgid "Tray icon"
msgstr ""
#. Title
-#: ../plugins/tray/tray-icon.c:452
+#: ../plugins/tray/tray-icon.c:545
msgid "Show icon in the system tray"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 4c3481e..e1f7e20 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Parole 0.1.90git.rALT0.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-04 16:25+0000\n"
+"POT-Creation-Date: 2009-10-06 10:11+0000\n"
"PO-Revision-Date: 2009-08-28 07:47+0400\n"
"Last-Translator: Anatoly Chernov <aichernov at umail.ru>\n"
"Language-Team: \n"
@@ -131,7 +131,13 @@ msgid "<b>Site:</b>"
msgstr "<b>СайÑ:</b>"
#: ../data/interfaces/plugins.ui.h:4
-msgid "Parole Plugins Preferences"
+#, fuzzy
+msgid "Media Player plugins"
+msgstr "УÑÑановки медиаплейеÑа"
+
+#: ../data/interfaces/plugins.ui.h:5
+#, fuzzy
+msgid "Parole Plugins"
msgstr "СвойÑÑва плагинов"
#: ../data/interfaces/parole-settings.ui.h:1
@@ -303,11 +309,11 @@ msgstr "ÐоÑок ÑÑебÑÐµÑ Ð¼Ð½Ð¾Ð³Ð¾ вÑемени Ð´Ð»Ñ Ð·Ð°Ð³ÑÑз
msgid "Stop"
msgstr "СÑоп"
-#: ../parole/parole-mediachooser.c:154
+#: ../parole/parole-mediachooser.c:155
msgid "Add media files"
msgstr "ÐобавиÑÑ Ð¼ÐµÐ´Ð¸Ð°-Ñайл"
-#: ../parole/parole-mediachooser.c:173
+#: ../parole/parole-mediachooser.c:174
msgid "Add"
msgstr "ÐобавиÑÑ"
@@ -677,21 +683,42 @@ msgstr "<b>ÐÑоигÑÑвание:</b>"
msgid "<b>Duration:</b>"
msgstr "<b>ÐÑодолжиÑелÑноÑÑÑ:</b>"
-#: ../plugins/tray/tray-icon.c:370
+#: ../plugins/tray/tray-icon.c:373
msgid "Tray icon plugin"
msgstr "ÐодÑÐ»Ñ Ð¾ÑобÑÐ°Ð¶ÐµÐ½Ð¸Ñ Ð·Ð½Ð°Ñка в ÑиÑÑемном лоÑке"
-#: ../plugins/tray/tray-icon.c:379
+#: ../plugins/tray/tray-icon.c:383
msgid "Enable notification"
msgstr "РазÑеÑиÑÑ ÑведомлениÑ"
+#: ../plugins/tray/tray-icon.c:392
+msgid "Always minimize to tray when window is closed"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:431
+msgid "Minimize to tray?"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:437
+msgid "Minimize to tray"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:453
+msgid "Are you sure you want to quit Parole"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:457
+#, fuzzy
+msgid "Remember my choice"
+msgstr "ÐапомниÑÑ ÑпиÑок воÑпÑоизведениÑ"
+
#. Construct function
-#: ../plugins/tray/tray-icon.c:451
+#: ../plugins/tray/tray-icon.c:544
msgid "Tray icon"
msgstr "Ðконка в в ÑиÑÑемном лоÑке"
#. Title
-#: ../plugins/tray/tray-icon.c:452
+#: ../plugins/tray/tray-icon.c:545
msgid "Show icon in the system tray"
msgstr "ÐоказаÑÑ Ð¸ÐºÐ¾Ð½ÐºÑ Ð¿Ð»ÐµÐ¹ÐµÑа в ÑиÑÑемном лоÑке"
diff --git a/po/sk.po b/po/sk.po
index 6a0f1b2..e5ff29a 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Parole 0.1.90svn.r07906\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-04 16:25+0000\n"
+"POT-Creation-Date: 2009-10-06 10:11+0000\n"
"PO-Revision-Date: 2009-08-17 17:08+0200\n"
"Last-Translator: Robert Hartl <hartl.robert at gmail.com>\n"
"Language-Team: slovak <sk-i18n at lists.linux.sk>\n"
@@ -132,7 +132,13 @@ msgid "<b>Site:</b>"
msgstr "<b>Stránka:</b>"
#: ../data/interfaces/plugins.ui.h:4
-msgid "Parole Plugins Preferences"
+#, fuzzy
+msgid "Media Player plugins"
+msgstr "Nastavenia prehrávaÄa médiÃ"
+
+#: ../data/interfaces/plugins.ui.h:5
+#, fuzzy
+msgid "Parole Plugins"
msgstr "Možnosti zásuvných modulov Parole"
#: ../data/interfaces/parole-settings.ui.h:1
@@ -298,11 +304,11 @@ msgstr ""
msgid "Stop"
msgstr "Zastaviť"
-#: ../parole/parole-mediachooser.c:154
+#: ../parole/parole-mediachooser.c:155
msgid "Add media files"
msgstr "Pridať mediálne súbory"
-#: ../parole/parole-mediachooser.c:173
+#: ../parole/parole-mediachooser.c:174
msgid "Add"
msgstr "Pridať"
@@ -671,21 +677,42 @@ msgstr "<b>Prehrávanie:</b>"
msgid "<b>Duration:</b>"
msgstr "<b>Trvanie:</b>"
-#: ../plugins/tray/tray-icon.c:370
+#: ../plugins/tray/tray-icon.c:373
msgid "Tray icon plugin"
msgstr ""
-#: ../plugins/tray/tray-icon.c:379
+#: ../plugins/tray/tray-icon.c:383
msgid "Enable notification"
msgstr "Povoliť oznamovanie"
+#: ../plugins/tray/tray-icon.c:392
+msgid "Always minimize to tray when window is closed"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:431
+msgid "Minimize to tray?"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:437
+msgid "Minimize to tray"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:453
+msgid "Are you sure you want to quit Parole"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:457
+#, fuzzy
+msgid "Remember my choice"
+msgstr "Zapamätať zoznam skladieb"
+
#. Construct function
-#: ../plugins/tray/tray-icon.c:451
+#: ../plugins/tray/tray-icon.c:544
msgid "Tray icon"
msgstr ""
#. Title
-#: ../plugins/tray/tray-icon.c:452
+#: ../plugins/tray/tray-icon.c:545
msgid "Show icon in the system tray"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index dbdbd12..7b0a956 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Parole Media Player Turkish Translation\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-04 16:25+0000\n"
+"POT-Creation-Date: 2009-10-06 10:11+0000\n"
"PO-Revision-Date: \n"
"Last-Translator: Samed Beyribey <ras0ir at eventualis.org>\n"
"Language-Team: Xfce-TR <xfce-tr at googlegroups.com>\n"
@@ -127,7 +127,13 @@ msgid "<b>Site:</b>"
msgstr "<b>Site:</b>"
#: ../data/interfaces/plugins.ui.h:4
-msgid "Parole Plugins Preferences"
+#, fuzzy
+msgid "Media Player plugins"
+msgstr "Ortam Oynatıcı Ayarları"
+
+#: ../data/interfaces/plugins.ui.h:5
+#, fuzzy
+msgid "Parole Plugins"
msgstr "Parole Eklenti Seçenekleri"
#: ../data/interfaces/parole-settings.ui.h:1
@@ -296,11 +302,11 @@ msgstr "Yayının yüklenmesi çok fazla zaman alıyor"
msgid "Stop"
msgstr "Durdur"
-#: ../parole/parole-mediachooser.c:154
+#: ../parole/parole-mediachooser.c:155
msgid "Add media files"
msgstr "Ortam dosyaları ekle"
-#: ../parole/parole-mediachooser.c:173
+#: ../parole/parole-mediachooser.c:174
msgid "Add"
msgstr "Ekle"
@@ -671,21 +677,42 @@ msgstr "<b>Oynatılıyor:</b>"
msgid "<b>Duration:</b>"
msgstr "<b>Süre:</b>"
-#: ../plugins/tray/tray-icon.c:370
+#: ../plugins/tray/tray-icon.c:373
msgid "Tray icon plugin"
msgstr "Sistem çekmecesi simgesi eklentisi"
-#: ../plugins/tray/tray-icon.c:379
+#: ../plugins/tray/tray-icon.c:383
msgid "Enable notification"
msgstr "Bildirimleri etkinleÅtir"
+#: ../plugins/tray/tray-icon.c:392
+msgid "Always minimize to tray when window is closed"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:431
+msgid "Minimize to tray?"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:437
+msgid "Minimize to tray"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:453
+msgid "Are you sure you want to quit Parole"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:457
+#, fuzzy
+msgid "Remember my choice"
+msgstr "Oynatma listesini hatırla"
+
#. Construct function
-#: ../plugins/tray/tray-icon.c:451
+#: ../plugins/tray/tray-icon.c:544
msgid "Tray icon"
msgstr "Sistem çekmecesi simgesi"
#. Title
-#: ../plugins/tray/tray-icon.c:452
+#: ../plugins/tray/tray-icon.c:545
msgid "Show icon in the system tray"
msgstr "Sistem çekmecesinde simge göster"
diff --git a/po/uk.po b/po/uk.po
index bcb8bcf..37fc84e 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: uk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-10-04 16:25+0000\n"
+"POT-Creation-Date: 2009-10-06 10:11+0000\n"
"PO-Revision-Date: 2009-08-30 20:32+0300\n"
"Last-Translator: Motsyo Gennadi <drool at altlinux.ru>\n"
"Language-Team: Ukrainian\n"
@@ -133,7 +133,13 @@ msgid "<b>Site:</b>"
msgstr "<b>СайÑ:</b>"
#: ../data/interfaces/plugins.ui.h:4
-msgid "Parole Plugins Preferences"
+#, fuzzy
+msgid "Media Player plugins"
+msgstr "ÐалаÑÑÑÐ²Ð°Ð½Ð½Ñ Ð¿ÑогÑаваÑа"
+
+#: ../data/interfaces/plugins.ui.h:5
+#, fuzzy
+msgid "Parole Plugins"
msgstr "ÐлаÑÑивоÑÑÑ Ð¿Ð»Ð°Ð³ÑнÑв"
#: ../data/interfaces/parole-settings.ui.h:1
@@ -295,11 +301,11 @@ msgstr "ÐоÑÑк Ð²Ð¸Ð¼Ð°Ð³Ð°Ñ Ð±Ð°Ð³Ð°Ñо ÑаÑÑ Ð´Ð»Ñ Ð·Ð°Ð²Ð°Ð½Ñаж
msgid "Stop"
msgstr "СÑоп"
-#: ../parole/parole-mediachooser.c:154
+#: ../parole/parole-mediachooser.c:155
msgid "Add media files"
msgstr "ÐодаÑи медÑа-Ñайл"
-#: ../parole/parole-mediachooser.c:173
+#: ../parole/parole-mediachooser.c:174
msgid "Add"
msgstr "ÐодаÑи"
@@ -668,21 +674,42 @@ msgstr "<b>ÐÑдÑвоÑеннÑ:</b>"
msgid "<b>Duration:</b>"
msgstr "<b>ТÑивалÑÑÑÑ:</b>"
-#: ../plugins/tray/tray-icon.c:370
+#: ../plugins/tray/tray-icon.c:373
msgid "Tray icon plugin"
msgstr "ÐлагÑн знаÑка в лоÑкÑ"
-#: ../plugins/tray/tray-icon.c:379
+#: ../plugins/tray/tray-icon.c:383
msgid "Enable notification"
msgstr "УвÑмкнÑÑи повÑдомленнÑ"
+#: ../plugins/tray/tray-icon.c:392
+msgid "Always minimize to tray when window is closed"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:431
+msgid "Minimize to tray?"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:437
+msgid "Minimize to tray"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:453
+msgid "Are you sure you want to quit Parole"
+msgstr ""
+
+#: ../plugins/tray/tray-icon.c:457
+#, fuzzy
+msgid "Remember my choice"
+msgstr "Ðапам'ÑÑаÑи ÑпиÑок"
+
#. Construct function
-#: ../plugins/tray/tray-icon.c:451
+#: ../plugins/tray/tray-icon.c:544
msgid "Tray icon"
msgstr "ÐнаÑок в лоÑкÑ"
#. Title
-#: ../plugins/tray/tray-icon.c:452
+#: ../plugins/tray/tray-icon.c:545
msgid "Show icon in the system tray"
msgstr "ÐÑдобÑажаÑи знаÑок в ÑиÑÑÐµÐ¼Ð½Ð¾Ð¼Ñ Ð»Ð¾ÑкÑ"
More information about the Xfce4-commits
mailing list