[Xfce4-commits] Enhanced audio cover image loading, scale proportionally, store at the largest used image size.

2013-01-08 Thread Sean Davis
Updating branch refs/heads/master
 to d96e68e3db30964ef883f9fda229a87361939b96 (commit)
   from e781a38713d482249137d161b81a902452967d88 (commit)

commit d96e68e3db30964ef883f9fda229a87361939b96
Author: Sean Davis 
Date:   Tue Jan 8 19:36:55 2013 -0500

Enhanced audio cover image loading, scale proportionally, store at the 
largest used image size.

 src/gst/parole-gst.c |  171 ++
 src/parole-player.c  |6 +-
 2 files changed, 106 insertions(+), 71 deletions(-)

diff --git a/src/gst/parole-gst.c b/src/gst/parole-gst.c
index 5d08e64..885d5a0 100644
--- a/src/gst/parole-gst.c
+++ b/src/gst/parole-gst.c
@@ -68,7 +68,7 @@ static void parole_gst_change_state   (ParoleGst *gst,
 static voidparole_gst_terminate_internal   (ParoleGst *gst, 
 gboolean fade_sound);
 
-static gchar * parole_gst_tag_list_get_cover_external (ParoleGst *gst);
+static GdkPixbuf * parole_gst_tag_list_get_cover_external (ParoleGst *gst);
 
 static GdkPixbuf * parole_gst_tag_list_get_cover (ParoleGst *gst, GstTagList 
*tag_list);
 
@@ -1099,9 +1099,11 @@ parole_gst_buffer_to_pixbuf (GstBuffer *buffer)
   return pixbuf;
 }
 
-gchar *
+GdkPixbuf *
 parole_gst_tag_list_get_cover_external (ParoleGst *gst)
 {
+GdkPixbuf *pixbuf;
+GError *err = NULL;
 gchar *uri;
 gchar *filename;
 gchar *directory;
@@ -1152,96 +1154,131 @@ parole_gst_tag_list_get_cover_external (ParoleGst *gst)
 g_free(directory);
 g_free(file_dir);
 g_free(lower);
-return cover_filename;
+
+if (!cover_filename)
+return NULL;
+
+pixbuf = gdk_pixbuf_new_from_file(cover_filename, &err);
+g_free(cover_filename);
+if (err)
+{
+g_object_unref(pixbuf);
+g_error_free(err);
+return NULL;
+}
+return pixbuf;
 }
 
-static const GValue *
-parole_gst_tag_list_get_cover_real (ParoleGst *gst, GstTagList *tag_list)
+GdkPixbuf *
+parole_gst_tag_list_get_cover_embedded (ParoleGst *gst, GstTagList *tag_list)
 {
+GdkPixbuf *pixbuf;
 #if GST_CHECK_VERSION(1, 0, 0)
-  GstPad *videopad;
-  GstCaps *caps;
+GstPad *videopad;
+GstCaps *caps;
 #endif
-  const GValue *cover_value = NULL;
-  guint i;
+const GValue *cover_value = NULL;
+guint i;
 
-  for (i = 0; ; i++) {
-const GValue *value;
+for (i = 0; ; i++) {
+const GValue *value;
 #if GST_CHECK_VERSION(1, 0, 0)
 #else
-GstBuffer *buffer;
+GstBuffer *buffer;
 #endif
-GstStructure *caps_struct;
-int type;
+GstStructure *caps_struct;
+int type;
 
-value = gst_tag_list_get_value_index (tag_list,
- GST_TAG_IMAGE,
- i);
-if (value == NULL)
-  break;
+value = gst_tag_list_get_value_index (  tag_list,
+GST_TAG_IMAGE,
+i);
+if (value == NULL)
+break;
 
 #if GST_CHECK_VERSION(1, 0, 0)
-g_signal_emit_by_name (gst->priv->playbin, "get-video-pad", i, &videopad);
-caps = gst_pad_query_caps(videopad, NULL);
-caps_struct = gst_caps_get_structure (caps, 0);
-gst_caps_unref(caps);
-g_object_unref (videopad);
+g_signal_emit_by_name (gst->priv->playbin, "get-video-pad", i, 
&videopad);
+caps = gst_pad_query_caps(videopad, NULL);
+caps_struct = gst_caps_get_structure (caps, 0);
+gst_caps_unref(caps);
+g_object_unref (videopad);
 #else
-buffer = gst_value_get_buffer (value);
-caps_struct = gst_caps_get_structure (buffer->caps, 0);
+buffer = gst_value_get_buffer (value);
+caps_struct = gst_caps_get_structure (buffer->caps, 0);
 #endif
-
-gst_structure_get_enum (caps_struct,
-   "image-type",
-   GST_TYPE_TAG_IMAGE_TYPE,
-   &type);
-if (type == GST_TAG_IMAGE_TYPE_UNDEFINED) {
-  if (cover_value == NULL)
-cover_value = value;
-} else if (type == GST_TAG_IMAGE_TYPE_FRONT_COVER) {
-  cover_value = value;
-  break;
+
+gst_structure_get_enum (caps_struct,
+"image-type",
+GST_TYPE_TAG_IMAGE_TYPE,
+&type);
+if (type == GST_TAG_IMAGE_TYPE_UNDEFINED) {
+if (cover_value == NULL)
+cover_value = value;
+} else if (type == GST_TAG_IMAGE_TYPE_FRONT_COVER) {
+cover_value = value;
+break;
+}
 }
-  }
 
-  return cover_value;
+if (!cover_value) {
+cover_value = gst_tag_list_get_value_index (tag_list,
+GST_TAG_PREVIEW_IMAGE,
+0);
+}
+
+if (cover_value) {
+GstBuffer *buff

[Xfce4-commits] Merge branch 'master' of ssh://git.xfce.org/apps/parole

2013-01-08 Thread Sean Davis
Updating branch refs/heads/master
 to e781a38713d482249137d161b81a902452967d88 (commit)
   from 3b7cc50be42cbdb07af17060053179c64fd0ca11 (commit)

commit e781a38713d482249137d161b81a902452967d88
Merge: 3b7cc50 9c60935
Author: Sean Davis 
Date:   Tue Jan 8 18:17:31 2013 -0500

Merge branch 'master' of ssh://git.xfce.org/apps/parole

commit 9c6093520cc41ff6af30b628767a75dbdc9e3c25
Author: Piotr Strębski 
Date:   Tue Jan 8 17:29:45 2013 +0100

l10n: Updated Polish (pl) translation to 100%

New status: 205 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

commit f90976d70597d7393fe0eb8ada0c374f902a03db
Author: Piotr Strębski 
Date:   Tue Jan 8 17:25:38 2013 +0100

l10n: Updated Polish (pl) translation to 95%

New status: 196 messages complete with 2 fuzzies and 7 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/pl.po |  456 ++
 1 files changed, 281 insertions(+), 175 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 10b1c08..0ca68a2 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Parole master\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-11-19 03:09+\n"
+"POT-Creation-Date: 2013-01-08 12:15+\n"
 "PO-Revision-Date: 2012-04-19 15:00+0200\n"
 "Last-Translator: Piotr Sokół \n"
 "Language-Team: polski <>\n"
@@ -32,113 +32,133 @@ msgstr "20:9 (DVB)"
 msgid "4:3 (TV)"
 msgstr "4:3 (TV)"
 
-#: ../data/interfaces/parole.ui.h:4 ../src/misc/parole-filters.c:64
+#: ../data/interfaces/parole.ui.h:4
+msgid ""
+"by Unknown "
+"Artist"
+msgstr "autorstwa Nieznanego artysty"
+
+#: ../data/interfaces/parole.ui.h:5
+msgid ""
+"on Unknown "
+"Album"
+msgstr "z Nieznanego albumu"
+
+#: ../data/interfaces/parole.ui.h:6
+msgid "Unknown Song"
+msgstr "Nieznany utwór"
+
+#: ../data/interfaces/parole.ui.h:7 ../src/misc/parole-filters.c:64
 msgid "Audio"
 msgstr "Pliki dźwiękowe"
 
-#: ../data/interfaces/parole.ui.h:5
+#: ../data/interfaces/parole.ui.h:8
 msgid "Audio Track:"
 msgstr "Ścieżka audio:"
 
-#: ../data/interfaces/parole.ui.h:6
+#: ../data/interfaces/parole.ui.h:9
 msgid "Auto"
 msgstr "Automatyczne"
 
-#: ../data/interfaces/parole.ui.h:8
+#: ../data/interfaces/parole.ui.h:11
 #, no-c-format
 msgid "Buffering (0%)"
 msgstr "Buforowanie (0%)"
 
-#: ../data/interfaces/parole.ui.h:9 ../src/parole-player.c:681
+#: ../data/interfaces/parole.ui.h:12 ../src/parole-player.c:720
 msgid "Empty"
 msgstr "Pusty"
 
-#: ../data/interfaces/parole.ui.h:10 ../src/parole-disc.c:147
-#: ../src/parole-disc.c:465
+#: ../data/interfaces/parole.ui.h:13 ../src/parole-disc.c:110
+#: ../src/parole-disc.c:156
 msgid "Insert Disc"
 msgstr "Włóż dysk"
 
-#: ../data/interfaces/parole.ui.h:11
+#: ../data/interfaces/parole.ui.h:14
 msgid "Languages"
 msgstr "Języki"
 
-#: ../data/interfaces/parole.ui.h:12
+#: ../data/interfaces/parole.ui.h:15
 msgid "Media player"
 msgstr "Odtwarzacz nagrań"
 
-#: ../data/interfaces/parole.ui.h:13
+#: ../data/interfaces/parole.ui.h:16
 msgid "None"
 msgstr "Brak"
 
-#: ../data/interfaces/parole.ui.h:14
-msgid "Open _location"
-msgstr "Otwórz p_ołożenie"
+#: ../data/interfaces/parole.ui.h:17
+msgid "Open Recent"
+msgstr "Otwórz ostatnie"
+
+#: ../data/interfaces/parole.ui.h:18
+msgid "Open _Location"
+msgstr "Otwórz _położenie"
 
-#: ../data/interfaces/parole.ui.h:15 ../src/parole-about.c:68
+#: ../data/interfaces/parole.ui.h:19 ../src/parole-about.c:68
 msgid "Parole Media Player"
 msgstr "Odtwarzacz nagrań Parole"
 
-#: ../data/interfaces/parole.ui.h:16
-msgid "Pl_ugins"
-msgstr "_Wtyczki"
+#: ../data/interfaces/parole.ui.h:20
+msgid "Plugins"
+msgstr "Wtyczki"
 
-#: ../data/interfaces/parole.ui.h:17
+#: ../data/interfaces/parole.ui.h:21
 msgid "Select Text Subtitles..."
 msgstr "Wskaż napisy tekstowe..."
 
-#: ../data/interfaces/parole.ui.h:18
+#: ../data/interfaces/parole.ui.h:22
 msgid "Show _playlist"
 msgstr "Wyświetla _listę odtwarzania"
 
-#: ../data/interfaces/parole.ui.h:19
+#: ../data/interfaces/parole.ui.h:23
 msgid "Square"
 msgstr "Kwadratowe"
 
-#: ../data/interfaces/parole.ui.h:20
+#: ../data/interfaces/parole.ui.h:24
 msgid "Subtitles"
 msgstr "Napisy"
 
-#: ../data/interfaces/parole.ui.h:21
+#: ../data/interfaces/parole.ui.h:25
 msgid "Subtitles:"
 msgstr "Napisy:"
 
-#: ../data/interfaces/parole.ui.h:22
+#: ../data/interfaces/parole.ui.h:26
 msgid "Volume _Down"
 msgstr "Z_mniejsz głośność"
 
-#: ../data/interfaces/parole.ui.h:23
+#: ../data/interfaces/parole.ui.h:27
 msgid "Volume _Up"
 msgstr "Z_większ głośność"
 
-#: ../data/interfaces/parole.ui.h:24
+#: ../data/interfaces/parole.ui.h:28
 msgid "_Aspect Ratio"
 msgstr "_Proporcje obrazu"
 
-#: ../data/interfaces/parole.ui.h:25
+#: ../data/interfaces/parole.ui.h:29
 msgid "_Edit"
 msgstr "_Edycja"
 
-#: ../data/interfaces/parole.ui.h:26
+#: ../data/interfaces/parole.ui.h:30
 msgid "_Help"
 ms

[Xfce4-commits] parole-gst cleanup

2013-01-08 Thread Sean Davis
Updating branch refs/heads/master
 to 3b7cc50be42cbdb07af17060053179c64fd0ca11 (commit)
   from a7f1b15ca85c4040ba4d4a079faded8b77c244f5 (commit)

commit 3b7cc50be42cbdb07af17060053179c64fd0ca11
Author: Sean Davis 
Date:   Tue Jan 8 14:58:01 2013 -0500

parole-gst cleanup

 src/gst/parole-gst.c |   25 ++---
 1 files changed, 2 insertions(+), 23 deletions(-)

diff --git a/src/gst/parole-gst.c b/src/gst/parole-gst.c
index ec0735a..5d08e64 100644
--- a/src/gst/parole-gst.c
+++ b/src/gst/parole-gst.c
@@ -234,8 +234,6 @@ parole_gst_realize (GtkWidget *widget)
 GdkColor color;
 gint mask;
 
-g_print("realize\n");
-
 GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
 gst = PAROLE_GST (widget);
 
@@ -508,8 +506,6 @@ parole_gst_set_x_overlay (ParoleGst *gst)
 {
 GstElement *video_sink;
 
-g_print("eh?\n");
-
 g_object_get (G_OBJECT (gst->priv->playbin),
  "video-sink", &video_sink,
  NULL);
@@ -1562,10 +1558,6 @@ parole_gst_bus_event (GstBus *bus, GstMessage *msg, 
gpointer data)
 #endif
 GstInstallPluginsContext *ctx;
 gint response;
-#ifdef GDK_WINDOWING_X11
-GtkWidget *parent;
-   GdkDisplay *display;
-#endif
 
 gst = PAROLE_GST (data);
 
@@ -1661,17 +1653,11 @@ parole_gst_bus_event (GstBus *bus, GstMessage *msg, 
gpointer data)
 ctx = gst_install_plugins_context_new();
 
 #ifdef GDK_WINDOWING_X11
-   display = gdk_display_get_default ();
-
 if (gtk_widget_get_window (GTK_WIDGET (gst)) != NULL &&
 gtk_widget_get_realized (GTK_WIDGET (gst)))
 {
-   gulong xid = 0;
-   
-   parent = gtk_widget_get_toplevel (GTK_WIDGET (gst));
-
-xid = GDK_WINDOW_XID(gtk_widget_get_window (parent));
-gst_install_plugins_context_set_xid (ctx, xid);
+gst_install_plugins_context_set_xid (ctx, 
+GDK_WINDOW_XID (GTK_WIDGET (gst)->window));
 }
 #endif /* GDK_WINDOWING_X11 */
 
@@ -2139,20 +2125,15 @@ parole_gst_constructed (GObject *object)
 
 gst = PAROLE_GST (object);
 
-g_print("start\n");
-
 g_object_get (G_OBJECT (gst->priv->conf),
  "enable-xv", &enable_xv,
  NULL);
- 
-g_print("playbin\n");
 
 #if GST_CHECK_VERSION(1, 0, 0)
 gst->priv->playbin = gst_element_factory_make ("playbin", "player");
 #else
 gst->priv->playbin = gst_element_factory_make ("playbin2", "player");
 #endif
-g_print("null?\n");
  
 if ( G_UNLIKELY (gst->priv->playbin == NULL) )
 {
@@ -2166,13 +2147,11 @@ parole_gst_constructed (GObject *object)
g_error ("playbin load failed");
 }
 
-g_print("xv\n");
 if (enable_xv)
 {
gst->priv->video_sink = gst_element_factory_make ("xvimagesink", 
"video");
gst->priv->xvimage_sink = TRUE;
 }
-g_print("ximagesink\n");
 
 if ( G_UNLIKELY (gst->priv->video_sink == NULL) )
 {
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Make codec installer transient for parole window.

2013-01-08 Thread Sean Davis
Updating branch refs/heads/master
 to a7f1b15ca85c4040ba4d4a079faded8b77c244f5 (commit)
   from f02bd897f426ff0b77191cab18bf7e3a865565c4 (commit)

commit a7f1b15ca85c4040ba4d4a079faded8b77c244f5
Author: Sean Davis 
Date:   Tue Jan 8 14:49:58 2013 -0500

Make codec installer transient for parole window.

 src/gst/parole-gst.c |   20 
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/src/gst/parole-gst.c b/src/gst/parole-gst.c
index 606cefd..ec0735a 100644
--- a/src/gst/parole-gst.c
+++ b/src/gst/parole-gst.c
@@ -1562,6 +1562,10 @@ parole_gst_bus_event (GstBus *bus, GstMessage *msg, 
gpointer data)
 #endif
 GstInstallPluginsContext *ctx;
 gint response;
+#ifdef GDK_WINDOWING_X11
+GtkWidget *parent;
+   GdkDisplay *display;
+#endif
 
 gst = PAROLE_GST (data);
 
@@ -1655,6 +1659,22 @@ parole_gst_bus_event (GstBus *bus, GstMessage *msg, 
gpointer data)
 details[0] = 
gst_missing_plugin_message_get_installer_detail(msg);
 details[1] = NULL;
 ctx = gst_install_plugins_context_new();
+
+#ifdef GDK_WINDOWING_X11
+   display = gdk_display_get_default ();
+
+if (gtk_widget_get_window (GTK_WIDGET (gst)) != NULL &&
+gtk_widget_get_realized (GTK_WIDGET (gst)))
+{
+   gulong xid = 0;
+   
+   parent = gtk_widget_get_toplevel (GTK_WIDGET (gst));
+
+xid = GDK_WINDOW_XID(gtk_widget_get_window (parent));
+gst_install_plugins_context_set_xid (ctx, xid);
+}
+#endif /* GDK_WINDOWING_X11 */
+
 gst_install_plugins_async(details, ctx, 
parole_gst_install_plugins_result_func, gst);
 
 gst_install_plugins_context_free(ctx);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Update interface files for parole-extension.

2013-01-08 Thread Sean Davis
Updating branch refs/heads/master
 to f02bd897f426ff0b77191cab18bf7e3a865565c4 (commit)
   from 50c47946d297aa7aec18c3f114f05e446ceac027 (commit)

commit f02bd897f426ff0b77191cab18bf7e3a865565c4
Author: Sean Davis 
Date:   Tue Jan 8 12:59:39 2013 -0500

Update interface files for parole-extension.

 data/interfaces/parole.ui  |8 
 data/interfaces/plugins.ui |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/data/interfaces/parole.ui b/data/interfaces/parole.ui
index 1324c7c..2706a9f 100644
--- a/data/interfaces/parole.ui
+++ b/data/interfaces/parole.ui
@@ -5,7 +5,7 @@
   
 True
 False
-extension
+parole-extension
   
   
 True
@@ -478,9 +478,9 @@
 True
 image_volume_up
 False
-
-
 
+
+
 
   
 
@@ -493,8 +493,8 @@
 True
 image_volume_down
 False
-
 
+
 
   
 
diff --git a/data/interfaces/plugins.ui b/data/interfaces/plugins.ui
index d8dcb7f..e900d09 100644
--- a/data/interfaces/plugins.ui
+++ b/data/interfaces/plugins.ui
@@ -9,7 +9,7 @@
 600
 300
 True
-extension
+parole-extension
 dialog
 True
 True
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Initial port to gstreamer 1.0 -- still broken.

2013-01-08 Thread Sean Davis
Updating branch refs/heads/master
 to e4203a6d47ae5f7fa3107b081d27a07ce36d04fc (commit)
   from 352c5262b129161d5b8d55d9a056087d9d36ae53 (commit)

commit e4203a6d47ae5f7fa3107b081d27a07ce36d04fc
Author: Sean Davis 
Date:   Tue Jan 8 12:50:43 2013 -0500

Initial port to gstreamer 1.0 -- still broken.

 configure.ac.in  |   31 +++--
 src/gst/parole-gst.c |  175 +++---
 src/parole-conf-dialog.c |   12 +++
 src/parole-vis.c |4 +
 4 files changed, 192 insertions(+), 30 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index f0b6922..0072b3d 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -75,6 +75,26 @@ AC_CHECK_HEADERS([errno.h signal.h stddef.h sys/ioctl.h 
fcntl.h\
 
 XDT_I18N([@LINGUAS@])
 
+dnl gstreamer version
+AC_ARG_WITH([gstreamer],
+[AS_HELP_STRING([--with-gstreamer=0.10|1.0],[which gstreamer 
version to compile against (default: 0.10)])],
+[case "$with_gstreamer" in
+0.10|1.0) ;;
+*) AC_MSG_ERROR([invalid gstreamer version specified]) ;;
+ esac],
+[with_gstreamer=0.10]
+)
+
+case "$with_gstreamer" in
+  0.10) gstreamer_api_version=0.10
+   gstreamer_minimum_version=0.10.31
+   ;;
+  1.0) gstreamer_api_version=1.0
+   gstreamer_minimum_version=0.11.90
+   ;;
+esac
+AC_DEFINE_UNQUOTED(GSTREAMER_API_VERSION, $gstreamer_api_version, [Define the 
GStreamer+ API version])
+
 # #
 #  Check for required packages   #
 #=#
@@ -97,11 +117,12 @@ XDT_CHECK_PACKAGE([GTHREAD], [gthread-2.0], 
[glib_minimum_version])
 XDT_CHECK_PACKAGE([GMODULE], [gmodule-2.0], [glib_minimum_version])
 XDT_CHECK_PACKAGE([GIO], [gio-2.0], [glib_minimum_version])
 
-XDT_CHECK_PACKAGE([GST], [gstreamer-0.10], [gstreamer_minimum_version])
-XDT_CHECK_PACKAGE([GST_BASE], [gstreamer-base-0.10], 
[gstreamer_minimum_version])
-XDT_CHECK_PACKAGE([GST_VIDEO], [gstreamer-video-0.10], 
[gstreamer_minimum_version])
-XDT_CHECK_PACKAGE([GST_INTERFACES], [gstreamer-interfaces-0.10], 
[gstreamer_minimum_version])
-XDT_CHECK_PACKAGE([GST_PBUTILS], [gstreamer-pbutils-0.10], [0.10.2])
+XDT_CHECK_PACKAGE([GST], [gstreamer-${gstreamer_api_version}], 
[gstreamer_minimum_version])
+XDT_CHECK_PACKAGE([GST_BASE], [gstreamer-base-${gstreamer_api_version}], 
[gstreamer_minimum_version])
+XDT_CHECK_PACKAGE([GST_VIDEO], [gstreamer-video-${gstreamer_api_version}], 
[gstreamer_minimum_version])
+if test x"${gstreamer_api_version}" = x"0.10"; then
+XDT_CHECK_PACKAGE([GST_INTERFACES], 
[gstreamer-interfaces-${gstreamer_api_version}], [gstreamer_minimum_version])
+fi
 
 GST_MAJORMINOR=0.10
 GST_REQS=0.10.30
diff --git a/src/gst/parole-gst.c b/src/gst/parole-gst.c
index 6e27725..606cefd 100644
--- a/src/gst/parole-gst.c
+++ b/src/gst/parole-gst.c
@@ -28,8 +28,15 @@
 
 #include 
 
-#include 
-#include 
+#include "parole-gst.h"
+
+#if GST_CHECK_VERSION(1, 0, 0)
+#include 
+#include 
+#else
+ #include 
+ #include 
+#endif
 #include 
 #include 
 
@@ -41,8 +48,6 @@
 
 #include 
 
-#include "parole-gst.h"
-
 #include "common/parole-common.h"
 
 #include "parole-utils.h"
@@ -229,6 +234,8 @@ parole_gst_realize (GtkWidget *widget)
 GdkColor color;
 gint mask;
 
+g_print("realize\n");
+
 GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
 gst = PAROLE_GST (widget);
 
@@ -501,17 +508,21 @@ parole_gst_set_x_overlay (ParoleGst *gst)
 {
 GstElement *video_sink;
 
+g_print("eh?\n");
+
 g_object_get (G_OBJECT (gst->priv->playbin),
  "video-sink", &video_sink,
  NULL);
  
 g_assert (video_sink != NULL);
 
-if ( GDK_IS_WINDOW (GTK_WIDGET (gst)->window) )
-   gst_x_overlay_set_xwindow_id (GST_X_OVERLAY (video_sink),
- GDK_WINDOW_XWINDOW (GTK_WIDGET 
(gst)->window));
-
-gst_object_unref (video_sink);
+#if GST_CHECK_VERSION(1, 0, 0)
+   gst_video_overlay_set_window_handle (GST_VIDEO_OVERLAY (video_sink),
+ GDK_WINDOW_XID (GTK_WIDGET 
(gst)->window));
+#else
+   gst_x_overlay_set_xwindow_id (GST_X_OVERLAY (video_sink),
+ GDK_WINDOW_XWINDOW (GTK_WIDGET 
(gst)->window));
+#endif
 
 }
 
@@ -540,14 +551,22 @@ parole_gst_expose_event (GtkWidget *widget, 
GdkEventExpose *ev)
case GST_STATE_PLAYING:
if ( playing_video || gst->priv->vis_loaded)
{
-   gst_x_overlay_expose (GST_X_OVERLAY (gst->priv->video_sink));
+#if GST_CHECK_VERSION(1, 0, 0)
+   gst_video_overlay_expose (GST_VIDEO_OVERLAY 
(gst->priv->video_sink));
+#else
+   gst_x_overlay_expose (GST_X_OVERLAY (gst->priv->video_sink));
+#endif
}
else
parole_gst_draw_logo (gst);
 

[Xfce4-commits] Replace extension.png with parole-extension.png to prevent conflicts.

2013-01-08 Thread Sean Davis
Updating branch refs/heads/master
 to 50c47946d297aa7aec18c3f114f05e446ceac027 (commit)
   from e4203a6d47ae5f7fa3107b081d27a07ce36d04fc (commit)

commit 50c47946d297aa7aec18c3f114f05e446ceac027
Author: Sean Davis 
Date:   Tue Jan 8 12:56:59 2013 -0500

Replace extension.png with parole-extension.png to prevent conflicts.

 data/icons/16x16/Makefile.am   |2 +-
 .../16x16/{extension.png => parole-extension.png}  |  Bin 754 -> 754 bytes
 data/icons/48x48/Makefile.am   |2 +-
 .../48x48/{extension.png => parole-extension.png}  |  Bin 2277 -> 2277 bytes
 4 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/data/icons/16x16/Makefile.am b/data/icons/16x16/Makefile.am
index 2ba0547..c46d68e 100644
--- a/data/icons/16x16/Makefile.am
+++ b/data/icons/16x16/Makefile.am
@@ -5,4 +5,4 @@ Datadir = $(datadir)/icons/hicolor/16x16/apps
 
 Data_DATA =\
parole.png  \
-   extension.png
+   parole-extension.png
diff --git a/data/icons/16x16/extension.png 
b/data/icons/16x16/parole-extension.png
similarity index 100%
rename from data/icons/16x16/extension.png
rename to data/icons/16x16/parole-extension.png
diff --git a/data/icons/48x48/Makefile.am b/data/icons/48x48/Makefile.am
index 43a0c3d..7a32d1d 100644
--- a/data/icons/48x48/Makefile.am
+++ b/data/icons/48x48/Makefile.am
@@ -5,4 +5,4 @@ Datadir = $(datadir)/icons/hicolor/48x48/apps
 
 Data_DATA =\
parole.png  \
-   extension.png
+   parole-extension.png
diff --git a/data/icons/48x48/extension.png 
b/data/icons/48x48/parole-extension.png
similarity index 100%
rename from data/icons/48x48/extension.png
rename to data/icons/48x48/parole-extension.png
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Initial Polish translation

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to 8d07d07bab18f530e51295222b626904370e3cb8 (commit)
   from 7155cf8e965b4fcbc7668b9e19de800b12be7974 (commit)

commit 8d07d07bab18f530e51295222b626904370e3cb8
Author: Piotr Strębski 
Date:   Wed Jan 9 00:02:09 2013 +0100

l10n: Initial Polish translation

New status: 55 messages complete with 0 fuzzies and 29 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/{nn.po => pl.po} |  130 ++-
 1 files changed, 66 insertions(+), 64 deletions(-)

diff --git a/po/nn.po b/po/pl.po
similarity index 84%
copy from po/nn.po
copy to po/pl.po
index 2f61b34..5575f6d 100644
--- a/po/nn.po
+++ b/po/pl.po
@@ -1,198 +1,200 @@
 # 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.
+# Piotr Strębski , 2013.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-cddrive-plugin\n"
+"Project-Id-Version: 1\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2007-06-29 12:12+0200\n"
-"PO-Revision-Date: 2012-01-15 00:49+0100\n"
-"Last-Translator: Kevin Brubeck Unhammer \n"
-"Language-Team: Norwegian Nynorsk \n"
-"Language: nn\n"
+"PO-Revision-Date: 2013-01-09 00:00+0100\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Xfce PL\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.5.4\n"
+"Language: pl\n"
+"X-Poedit-SourceCharset: UTF-8\n"
 
 #: ../panel-plugin/cddrive.c:185
 msgid "Drive status is unavailable... is HAL installed and hald running ?"
-msgstr "Kunne ikkje lesa diskstatus … er HAL installert, og køyrer hald?"
+msgstr ""
 
 #: ../panel-plugin/cddrive.c:194
 msgid "Close tray"
-msgstr "Lukk spelaren"
+msgstr "Zamknij tackę"
 
 #: ../panel-plugin/cddrive.c:196
 msgid "Open tray"
-msgstr "Opna spelaren"
+msgstr "Otwórz tackę"
 
 #. drive is not ejectable
 #: ../panel-plugin/cddrive.c:200
 msgid "No disc in the drive"
-msgstr "Ingen disk i spelaren"
+msgstr "W napędzie nie ma płyty"
 
 #. translation note: "Eject blank " (e.g. "Eject blank cd-rw")
 #: ../panel-plugin/cddrive.c:213
 #, c-format
 msgid "Eject blank %s"
-msgstr "Løys ut tom %s"
+msgstr "Wysuń pustą %s"
 
 #. translation note: "Eject \"\""
 #: ../panel-plugin/cddrive.c:217
 #, c-format
 msgid "Eject \"%s\""
-msgstr "Løys ut «%s»"
+msgstr "Wysuń \"%s\""
 
 #. translation note: "Eject audio "
 #: ../panel-plugin/cddrive.c:221
 #, c-format
 msgid "Eject audio %s"
-msgstr "Løys ut lyd-%s"
+msgstr "Wysuń audio %s"
 
 #. translation note: "Eject " (e.g. "Eject dvd")
 #: ../panel-plugin/cddrive.c:224
 #, c-format
 msgid "Eject %s"
-msgstr "Løys ut %s"
+msgstr "Wysuń %s"
 
 #. translation note: "Blank " (e.g. "Blank cd-rw")
 #: ../panel-plugin/cddrive.c:231
 #, c-format
 msgid "Blank %s"
-msgstr "Tom %s"
+msgstr "Pusta %s"
 
 #. translation note: "\"\" (made translatable in case translation
 #. do not use the '"' character to enclose the title)
 #: ../panel-plugin/cddrive.c:236
 #, c-format
 msgid "\"%s\""
-msgstr "«%s»"
+msgstr "\"%s\""
 
 #. translation note: "Audio "
 #: ../panel-plugin/cddrive.c:240
 #, c-format
 msgid "Audio %s"
-msgstr "Lyd-%s"
+msgstr "Audio %s"
 
 #: ../panel-plugin/cddrive.c:260
 #, c-format
 msgid "%s status is unavailable... is HAL installed and hald running ?"
-msgstr "Kunne ikkje lesa status til %s … er HAL installert, og køyrer hald?<"
+msgstr ""
 
 #. translation note: "Close "
 #: ../panel-plugin/cddrive.c:271
 #, c-format
 msgid "Close %s"
-msgstr "Lukk %s"
+msgstr "Zamknij %s"
 
 #. translation note: "Open "
 #: ../panel-plugin/cddrive.c:274
 #, c-format
 msgid "Open %s"
-msgstr "Opna %s"
+msgstr "Otwórz %s"
 
 #. drive is not ejectable
 #. translation note: "No disc in "
 #: ../panel-plugin/cddrive.c:280
 #, c-format
 msgid "No disc in %s"
-msgstr "Ingen disk i %s"
+msgstr "Nie ma płyty w %s"
 
 #. translation note: "Eject blank  from " (e.g. "Eject 
blank cd-rw from cdrom1")
 #: ../panel-plugin/cddrive.c:293
 #, c-format
 msgid "Eject blank %s from %s"
-msgstr "Løys ut tom %s frå %s"
+msgstr "Wysuń pustą %s z %s"
 
 #. translation note: "Eject \"\" from "
 #: ../panel-plugin/cddrive.c:297
 #, c-format
 msgid "Eject \"%s\" from %s"
-msgstr "Løys ut «%s» frå %s"
+msgstr "Wysuń \"%s\" z %s"
 
 #. translation note: "Eject audio  from "
 #: ../panel-plugin/cddrive.c:301
 #, c-format
 msgid "Eject audio %s from %s"
-msgstr "Løys ut lyd-%s frå %s"
+msgstr "Wysuń audio %s z %s"
 
 #. translation note: "Eject  from " (e.g. "Eject dvd 
from my-dvd-drive")
 #: ../panel-plugin/cddrive.c:304
 #, c-format
 msgid "Eject %s from %s"
-msgstr "Løys ut %s frå %s"
+msgstr "Wysuń %s z %s"
 
 #. translation note: "Blank  in " (e.g. "Blank cd-rw in 
cdrom1")
 #: ../panel-plugin/cddrive.c:311
 #, c-format
 msgid "Blank %s in %s"
-msgstr "Tom %s i %s"
+msgstr "Pusta %s w %s"
 
 

[Xfce4-commits] l10n: Initial Polish translation

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to 1f717d4eee123070b0d81793ae4b2578f9c4d279 (commit)
   from 4a5ccb1469e13244f9fc9b18b02b3f18b175da6e (commit)

commit 1f717d4eee123070b0d81793ae4b2578f9c4d279
Author: Piotr Strębski 
Date:   Tue Jan 8 23:48:58 2013 +0100

l10n: Initial Polish translation

New status: 15 messages complete with 0 fuzzies and 15 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/{da.po => pl.po} |   73 ++-
 1 files changed, 37 insertions(+), 36 deletions(-)

diff --git a/po/da.po b/po/pl.po
similarity index 73%
copy from po/da.po
copy to po/pl.po
index f607b97..e8d7fd6 100644
--- a/po/da.po
+++ b/po/pl.po
@@ -1,61 +1,62 @@
-# Xfce4-embed-plugin.
-# Copyright (C) 2011 David Schneider 
-# This file is distributed under the same license as the Xfce4-embed-plugin 
package.
-# Per Kongstad , 2012.
-# 
-#, fuzzy
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# Piotr Strębski , 2013.
+#
 msgid ""
 msgstr ""
-"Project-Id-Version: 0.9.0\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-10 11:00+\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Per Kongstad \n"
-"Language-Team: Danish \n"
+"Project-Id-Version: 1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-01-08 13:54+\n"
+"PO-Revision-Date: 2013-01-08 23:47+0100\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: \n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: Danish\n"
+"X-Generator: Poedit 1.5.4\n"
+"Language: pl\n"
+"X-Poedit-SourceCharset: UTF-8\n"
 
 #: ../panel-plugin/embed.c:48
 msgid "Embed"
-msgstr "Indbyg"
+msgstr ""
 
 #. pop out menu item, not shown by default
 #: ../panel-plugin/embed.c:244
 msgid "Pop _Out"
-msgstr "Pop _op"
+msgstr ""
 
 #. embed menu item, shown by default.
 #: ../panel-plugin/embed.c:249
 msgid "_Embed"
-msgstr "_Indbyg"
+msgstr "_Osadź"
 
 #. focus menu item, not shown by default
 #: ../panel-plugin/embed.c:255
 msgid "_Focus"
-msgstr "_Fokus"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:51
 #, c-format
 msgid "Unable to open the following url: %s"
-msgstr "Kunne ikke åbne den følgende url: %s"
+msgstr "Nie udało się otworzyć następującego adresu url: %s"
 
 #: ../panel-plugin/embed-dialogs.c:100
 msgid "Input is valid"
-msgstr "Indtastning er gyldig"
+msgstr "Materiał wejściowy jest poprawny"
 
 #: ../panel-plugin/embed-dialogs.c:105
 msgid "Input is invalid"
-msgstr "Indtastning er ugyldig"
+msgstr "Materiał wejściowy jest niepoprawny"
 
 #: ../panel-plugin/embed-dialogs.c:317 ../panel-plugin/embed.desktop.in.h:1
 msgid "Embed Plugin"
-msgstr "Udvidelsesmodul indbyg"
+msgstr "Wtyczka osadzania"
 
 #: ../panel-plugin/embed-dialogs.c:326
 msgid "Application Launching"
-msgstr "Start af programmer"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:328
 #, c-format
@@ -75,7 +76,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:339
 msgid "L_aunch command"
-msgstr "S_tartkommando"
+msgstr ""
 
 #. poll_delay
 #. No UI element. Generally polling is unnecessary, unless you have a very
@@ -83,7 +84,7 @@ msgstr "S_tartkommando"
 #. * identifiable when it is mapped.
 #: ../panel-plugin/embed-dialogs.c:348
 msgid "Selection Criteria"
-msgstr "Udvælgeseskriteria"
+msgstr "Kryterium wyboru"
 
 #: ../panel-plugin/embed-dialogs.c:350
 msgid ""
@@ -93,7 +94,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:354
 msgid "_Process name"
-msgstr "_Procesnavn"
+msgstr "Nazwa _procesu"
 
 #: ../panel-plugin/embed-dialogs.c:355
 msgid ""
@@ -103,7 +104,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:361
 msgid "_Window class"
-msgstr "_Vindueklasse"
+msgstr "_Klasa okna"
 
 #: ../panel-plugin/embed-dialogs.c:362
 msgid ""
@@ -113,7 +114,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:368
 msgid "Window _title"
-msgstr "Vindue_titel"
+msgstr "_Tytuł okna"
 
 #: ../panel-plugin/embed-dialogs.c:369
 msgid ""
@@ -123,7 +124,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:373
 msgid "Display"
-msgstr "Vis"
+msgstr "Wyświetl"
 
 #: ../panel-plugin/embed-dialogs.c:376
 #, c-format
@@ -134,19 +135,19 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:379
 msgid "_Label format"
-msgstr "_Etiketformat"
+msgstr "_Format etykiety"
 
 #: ../panel-plugin/embed-dialogs.c:384
 msgid "Label _font"
-msgstr "Etiket_skrifttype"
+msgstr "_Czcionka etykiety"
 
 #: ../panel-plugin/embed-dialogs.c:385
 msgid "Choose the label font"
-msgstr "Vælg etiketskrifttypen"
+msgstr "Wybierz czcionkę etykiety"
 
 #: ../panel-plugin/embed-dialogs.c:389
 msgid "Minimum _size (px)"
-msgstr "Minimum_størrelse (piksel)"
+msgstr "Minimalny _rozmiar (px)"
 
 #: ../panel-plugin/embed-dialogs.c:390
 msgid ""
@@ -156,12 +157,12 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:395

[Xfce4-commits] l10n: Initial Polish translation

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to ed723b82913a364bbcc30509eb24517c866dd37a (commit)
   from 41a83fa9a5b7de92f9cbdefd7451f06a83ab4625 (commit)

commit ed723b82913a364bbcc30509eb24517c866dd37a
Author: Piotr Strębski 
Date:   Tue Jan 8 23:34:03 2013 +0100

l10n: Initial Polish translation

New status: 43 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/{eu.po => pl.po} |   97 ++-
 1 files changed, 49 insertions(+), 48 deletions(-)

diff --git a/po/eu.po b/po/pl.po
similarity index 61%
copy from po/eu.po
copy to po/pl.po
index 32ac00c..fc2638e 100644
--- a/po/eu.po
+++ b/po/pl.po
@@ -1,148 +1,150 @@
-# Euskara translations for xfce4-smartpm-plugin.
-# Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the xfce4-smartpm-plugin 
package.
-# Piarres Beobide , 2008, 2009.
+# Piotr Strębski , 2013.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: eu\n"
+"Project-Id-Version: xfce4-smartpm-plugin 1\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2008-04-22 08:54+0200\n"
-"PO-Revision-Date: 2009-01-28 01:27+0100\n"
-"Last-Translator: Piarres Beobide \n"
-"Language-Team: Euskara \n"
+"PO-Revision-Date: 2013-01-08 23:32+0100\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Xfce PL\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
+"X-Generator: Poedit 1.5.4\n"
+"Language: pl\n"
+"X-Poedit-SourceCharset: UTF-8\n"
 
 #: ../src/xfcesmart.c:149
 msgid "No upgrades"
-msgstr "Bertsio-berritzerik ez"
+msgstr "Brak uaktualnień"
 
 #: ../src/xfcesmart.c:158
 #, c-format
 msgid "%d upgrade available"
-msgstr "Bertsio-berritze %d eskuragarri"
+msgstr "%d dostępnych aktualizacji"
 
 #: ../src/xfcesmart.c:159
 #, c-format
 msgid "%d upgrades available"
-msgstr "%d bertsio-berritze eskuragarri"
+msgstr "%d dostępnych aktualizacji"
 
 #: ../src/xfcesmart.c:162
 msgid "Package Upgrades"
-msgstr "Pakete bertsio-berritzeak"
+msgstr "Aktualizacje pakietu"
 
 #: ../src/xfcesmart.c:248
 msgid "No new packages"
-msgstr "Ez dago pakete berririk"
+msgstr "Nie ma nowych pakietów"
 
 #: ../src/xfcesmart.c:250
 #, c-format
 msgid "Channels have %d new packages"
-msgstr "Kanalak %d pakete berri dituzte"
+msgstr "W kanałach znajdują się %d nowe pakiety"
 
 #. unknown
 #: ../src/xfcesmart.c:252
 msgid "Channels updated"
-msgstr "Kanalak eguneraturik"
+msgstr "Kanały zostały zaktualizowane"
 
 #: ../src/xfcesmart.c:256
 msgid "Package Updates"
-msgstr "Pakete eguneraketak"
+msgstr "Aktualizacje pakietu"
 
 #: ../src/xfcesmart.c:261 ../src/xfcesmart.c:367
 #, c-format
 msgid "Error updating%s%s"
-msgstr "Errorea eguneratzean%s%s"
+msgstr "Błąd aktualizacji%s%s"
 
 #: ../src/xfcesmart.c:274
 msgid "Smart Read-Only"
-msgstr "Smart irakurketa-soila"
+msgstr "Smart w trybie tylko do odczytu"
 
 #: ../src/xfcesmart.c:275
 msgid "Another process seems to be using Smart ?"
-msgstr "Dirudienez beste prozesu bat Smart erabiltzen ari da ?"
+msgstr "Wydaje się, że inny proces używa już Smarta."
 
 #: ../src/xfcesmart.c:306
 msgid "Updating channels..."
-msgstr "Kanalak eguneratzen"
+msgstr "Aktualizacja kanałów..."
 
 #: ../src/xfcesmart.c:359 ../src/xfcesmart.c:1118
 msgid "Update Channels"
-msgstr "Eguneratu kanalak"
+msgstr "Zaktualizuj kanały"
 
 #: ../src/xfcesmart.c:364 ../src/xfcesmart.c:405
 msgid "Failed to run update"
-msgstr "Huts eguneraketa exekutatzean"
+msgstr "Błąd przy uruchomieniu aktualizacji"
 
 #: ../src/xfcesmart.c:379 ../src/xfcesmart.c:400
 msgid "Channels updated."
-msgstr "Kanalak eguneraturik."
+msgstr "Kanały zostały zaktualizowane."
 
 #: ../src/xfcesmart.c:404 ../src/xfcesmart.c:645
 msgid "Smart Unavailable"
-msgstr "Smart ez dago erabilgarri"
+msgstr "Smart niedostępny"
 
 #: ../src/xfcesmart.c:555
 #, c-format
 msgid "Error checking%s%s"
-msgstr "Errorea egiaztatzean%s%s"
+msgstr "Błąd sprawdzania%s%s"
 
 #: ../src/xfcesmart.c:595
 msgid "Checking for upgrades..."
-msgstr "Bertsio-berrien bila arakatzen..."
+msgstr "Sprawdzanie aktualizacji..."
 
 #: ../src/xfcesmart.c:646
 msgid "Failed to run upgrade"
-msgstr "Huts bertsio-berritzea exekutatzean"
+msgstr "Błąd przy uruchomieniu aktualizacji"
 
 #: ../src/xfcesmart.c:729
 msgid "Smart Failed"
-msgstr "Smart-ek huts egin du"
+msgstr "Smart z błędem"
 
 #: ../src/xfcesmart.c:730
 msgid "Failed to run smart program"
-msgstr "Huts smart programa exekutatzean"
+msgstr "Błąd przy uruchamianiu programu smart"
 
 #: ../src/xfcesmart.c:801
 msgid "Upgrade Now"
-msgstr "Orain bertsio-berritu"
+msgstr "Zaktualizuj teraz"
 
 #: ../src/xfcesmart.c:948
 msgid "Upgrade In Progress"
-msgstr "Bertsio-berritzea egiten"
+msgstr "Aktualizacja w trakcie"
 
 #: ../src/xfcesmart.c:949
 msgid "An upgrade is already in progress, pl

[Xfce4-commits] l10n: Initial Polish translation

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to 3c633e042ba95f8e6acafa44d20be82fb2af0b58 (commit)
   from 0e8a2d46c7a7c07f1095517f173d3f04d6888250 (commit)

commit 3c633e042ba95f8e6acafa44d20be82fb2af0b58
Author: Piotr Strębski 
Date:   Tue Jan 8 22:12:12 2013 +0100

l10n: Initial Polish translation

New status: 27 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/{zh_TW.po => pl.po} |   70 ---
 1 files changed, 36 insertions(+), 34 deletions(-)

diff --git a/po/zh_TW.po b/po/pl.po
similarity index 69%
copy from po/zh_TW.po
copy to po/pl.po
index 9381d59..23ef7ac 100644
--- a/po/zh_TW.po
+++ b/po/pl.po
@@ -1,115 +1,118 @@
 # 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.
+# Piotr Strębski , 2013.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: xfmedia-remote-plugin master\n"
+"Project-Id-Version: xfmedia-remote-plugin 1\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2008-05-14 17:32-0400\n"
-"PO-Revision-Date: 2012-01-15 21:15+0800\n"
-"Last-Translator: Cheng-Chia Tseng \n"
-"Language-Team: chinese-l10n \n"
+"PO-Revision-Date: 2013-01-08 22:11+0100\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Xfce PL\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: Poedit 1.5.4\n"
+"Language: pl\n"
+"X-Poedit-SourceCharset: UTF-8\n"
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:245
 msgid "Choose playlist to load"
-msgstr "選擇要載入的播放清單"
+msgstr "Wybierz listę odtwarzania do załadowania"
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:280
 msgid "Save playlist"
-msgstr "儲存播放清單"
+msgstr "Zapisz listę odtwarzania"
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:301
 msgid "Failed to save playlist"
-msgstr "無法儲存播放清單"
+msgstr "Błąd przy zapisie listy odtwarzania"
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:370
 msgid "Please wait until the previous add operation completes."
-msgstr "請稍候到前個加入動作完成。"
+msgstr ""
+"Proszę czekać dopóki nie zostanie ukończona poprzednia operacja dodawania."
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:374
 msgid "Add track(s) to playlist"
-msgstr "加入曲目至播放清單"
+msgstr "Dodaj ścieżkę(-i) do listy odtwarzania"
 
 #. Play
 #: ../panel-plugin/xfmedia-remote-plugin.c:509
 #: ../panel-plugin/xfmedia-remote-plugin.c:601
 msgid "_Play"
-msgstr "播放(_P)"
+msgstr "_Odtwarzaj"
 
 #. Remove
 #: ../panel-plugin/xfmedia-remote-plugin.c:521
 msgid "_Remove"
-msgstr "移除(_R)"
+msgstr "_Usuń"
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:569
 #, c-format
 msgid "Failed to execute xfmedia: %s"
-msgstr "無法執行 xfmedia:%s"
+msgstr "Błąd przy wykonaniu xfmedia: %s"
 
 #. Prev
 #: ../panel-plugin/xfmedia-remote-plugin.c:590
 msgid "P_rev"
-msgstr "前一首(_R)"
+msgstr "Pop_rzedni"
 
 #. Pause
 #: ../panel-plugin/xfmedia-remote-plugin.c:612
 msgid "P_ause"
-msgstr "暫停(_A)"
+msgstr "_Pauza"
 
 #. Stop
 #: ../panel-plugin/xfmedia-remote-plugin.c:623
 msgid "_Stop"
-msgstr "停止(_S)"
+msgstr "_Zatrzymaj"
 
 #. Next
 #: ../panel-plugin/xfmedia-remote-plugin.c:634
 msgid "_Next"
-msgstr "下一首(_N)"
+msgstr "_Następny"
 
 #. Playlist
 #: ../panel-plugin/xfmedia-remote-plugin.c:651
 msgid "P_laylist"
-msgstr "播放清單(_L)"
+msgstr "_Lista odtwarzania"
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:672
 msgid "Playlist"
-msgstr "播放清單"
+msgstr "Lista odtwarzania"
 
 #. Load Playlist
 #: ../panel-plugin/xfmedia-remote-plugin.c:679
 msgid "_Load..."
-msgstr "載入(_L)..."
+msgstr "_Wczytaj"
 
 #. Save Playlist
 #: ../panel-plugin/xfmedia-remote-plugin.c:690
 msgid "_Save..."
-msgstr "儲存(_S)..."
+msgstr "Zapi_sz"
 
 #. Clear Playlist
 #: ../panel-plugin/xfmedia-remote-plugin.c:701
 msgid "_Clear"
-msgstr "清除(_C)"
+msgstr "W_yczyść"
 
 #. Add Track
 #: ../panel-plugin/xfmedia-remote-plugin.c:712
 msgid "_Add track(s)..."
-msgstr "加入曲目(_A)..."
+msgstr "_Dodaj ścieżkę(-i)..."
 
 #. Quit
 #: ../panel-plugin/xfmedia-remote-plugin.c:729
 msgid "_Quit"
-msgstr "退出(_Q)"
+msgstr "Wy_jście"
 
 #. Start Xfmedia
 #: ../panel-plugin/xfmedia-remote-plugin.c:800
 msgid "Start _Xfmedia"
-msgstr "啟動 _Xfmedia"
+msgstr "Uruchom _Xfmedia"
 
 #. Header
 #: ../panel-plugin/xfmedia-remote-plugin.c:817
@@ -117,30 +120,29 @@ msgstr "啟動 _Xfmedia"
 #: ../panel-plugin/xfmedia-remote-plugin.c:1292
 #: ../panel-plugin/xfmedia-remote.desktop.in.in.h:2
 msgid "Xfmedia Remote"
-msgstr "Xfmedia 遠端"
+msgstr "Zdalne Xfmedia"
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:942
 msgid "Stopped"
-msgstr "已停止"
+msgstr "Zatrzymano"
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:960
 msgid "No Xfmedia instances running"
-msgstr "沒有 Xfmedia 實體執行中"
+msgstr "Nie są uruchomione żadne przypadki Xfmedia"
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:1117
 #: ../panel-plugin/xfmedia-remote-plugin.c:1119
 msgid "Popup menu"
-msgstr

[Xfce4-commits] l10n: Initial Polish translation

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to dcbb051282d7b299e4c5e7b10595dbe7be93b3d1 (commit)
   from 3a3813a765b96e93a3236be2b56213e2c149ac65 (commit)

commit dcbb051282d7b299e4c5e7b10595dbe7be93b3d1
Author: Piotr Strębski 
Date:   Tue Jan 8 21:56:07 2013 +0100

l10n: Initial Polish translation

New status: 12 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/{zh_TW.po => pl.po} |   41 +
 1 files changed, 21 insertions(+), 20 deletions(-)

diff --git a/po/zh_TW.po b/po/pl.po
similarity index 61%
copy from po/zh_TW.po
copy to po/pl.po
index 2f6cc27..852cbf8 100644
--- a/po/zh_TW.po
+++ b/po/pl.po
@@ -1,34 +1,36 @@
 # 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.
+# Piotr Strębski , 2013.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-wmdock-plugin master\n"
+"Project-Id-Version: xfce4-wmdock-plugin 1\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2009-01-26 20:22+0100\n"
-"PO-Revision-Date: 2012-01-15 21:06+0800\n"
-"Last-Translator: Cheng-Chia Tseng \n"
-"Language-Team: chinese-l10n \n"
+"PO-Revision-Date: 2013-01-08 21:54+0100\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Xfce PL\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: Poedit 1.5.4\n"
+"Language: pl\n"
+"X-Poedit-SourceCharset: UTF-8\n"
 
 #: panel-plugin/wmdock.c:196
 #, c-format
 msgid "Do you want remove the dockapp \"%s\"?"
-msgstr "您想要移除 dockapp「%s」嗎?"
+msgstr "Czy chcesz usunąć program doku \"%s\"?"
 
 #: panel-plugin/wmdock.c:398
 msgid "No dockapp is running!"
-msgstr "沒有執行中的 dockapp!"
+msgstr "Nie jest uruchomiony żaden program doku!"
 
 #: panel-plugin/wmdock.c:858
 #, c-format
 msgid "Failed to start %s!"
-msgstr "無法啟動 %s!"
+msgstr "Błąd przy uruchamianiu %s!"
 
 #: panel-plugin/wmdock.c:1148
 msgid "WMdock"
@@ -36,41 +38,40 @@ msgstr "WMdock"
 
 #: panel-plugin/wmdock.c:1151
 msgid "Remove dockapp"
-msgstr "移除 dockapp"
+msgstr "Usuń program doku"
 
 #: panel-plugin/wmdock.c:1167
 msgid "General settings"
-msgstr "通用設定值"
+msgstr "Ustawienia ogólne"
 
 #: panel-plugin/wmdock.c:1168
 msgid "Dockapp detection"
-msgstr "Dockapp 偵測"
+msgstr "Wykrycie programu doku"
 
 #: panel-plugin/wmdock.c:1216
 msgid "Select dockapp to configure:"
-msgstr "選取要設定的 Dockapp:"
+msgstr "Wskaż program doku do konfiguracji:"
 
 #: panel-plugin/wmdock.c:1225
 msgid "Shell command:"
-msgstr "Shell 指令:"
+msgstr "Komenda powłoki:"
 
 #: panel-plugin/wmdock.c:1236
 msgid "Display tile in the background."
-msgstr "於背景顯示標題。"
+msgstr "Wyświetlaj kafelki w tle."
 
 #: panel-plugin/wmdock.c:1237
 msgid ""
 "Display a separate WMdock properties\n"
 "button in the panel."
 msgstr ""
-"在面板顯示個別的 WMdock\n"
-"屬性按鈕。"
+"Wyświetlaj w panelu oddzielny przycisk\n"
+"właściwości WMdock"
 
 #: panel-plugin/wmdock.c:1238
 msgid ""
 "Add only dockapps which start with\n"
 "wm* in the name."
 msgstr ""
-"僅加入名稱開頭為 wm* 的 \n"
-"dockapp。"
-
+"Dodaj tylko programy doku, których nazwa\n"
+"zaczyna się od wm*"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Initial Polish translation

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to 60f32c5af1911dfd05b3a1bb39184b91d4251371 (commit)
   from 3761689a50607e6dd317284a3d5a4a771aadd7da (commit)

commit 60f32c5af1911dfd05b3a1bb39184b91d4251371
Author: Piotr Strębski 
Date:   Tue Jan 8 21:47:34 2013 +0100

l10n: Initial Polish translation

New status: 2 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/{es.po => pl.po} |   19 ++-
 1 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/po/es.po b/po/pl.po
similarity index 59%
copy from po/es.po
copy to po/pl.po
index 2ed4be7..72035d3 100644
--- a/po/es.po
+++ b/po/pl.po
@@ -5,22 +5,23 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-stopwatch-plugin\n"
+"Project-Id-Version: xfce4-stopwatch-plugin 1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-07-19 16:08+\n"
-"PO-Revision-Date: 2011-07-19 15:08-0500\n"
-"Last-Translator: Andres Sanchez \n"
-"Language-Team: Spanish\n"
+"POT-Creation-Date: 2013-01-08 15:27+\n"
+"PO-Revision-Date: 2013-01-08 21:46+0100\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Xfce PL\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Spanish\n"
+"X-Generator: Poedit 1.5.4\n"
+"Language: Pl\n"
+"X-Poedit-SourceCharset: UTF-8\n"
 
 #: ../panel-plugin/xfce4-stopwatch-plugin.desktop.in.in.h:1
 msgid "Stopwatch"
-msgstr "Cronómetro"
+msgstr "Stoper"
 
 #: ../panel-plugin/xfce4-stopwatch-plugin.desktop.in.in.h:2
 msgid "Time yourself"
-msgstr "Tome tiempo para usted"
-
+msgstr "Bądź na czas"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Polish (pl) translation to 100%

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to 0e78583d702081a1bcbeec5420096dbd81985ac6 (commit)
   from a3477246992b946653187c21ba674d2ef27d8077 (commit)

commit 0e78583d702081a1bcbeec5420096dbd81985ac6
Author: Piotr Strębski 
Date:   Tue Jan 8 19:25:12 2013 +0100

l10n: Updated Polish (pl) translation to 100%

New status: 279 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/pl.po |  121 +
 1 files changed, 81 insertions(+), 40 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index b830be7..7080e38 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -4,21 +4,20 @@
 # Piotr Maliński , 2006.
 # Szymon Kałasz , 2006.
 # Piotr Sokół , 2009, 2011.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: exo 0.5.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-12-09 18:45+0100\n"
+"POT-Creation-Date: 2013-01-08 16:57+\n"
 "PO-Revision-Date: 2011-02-21 15:58+0100\n"
 "Last-Translator: Piotr Sokół \n"
 "Language-Team: Polish <>\n"
-"Language: pl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n"
-"%100<10 || n%100>=20)) ? 1 : 2));\n"
+"Language: pl\n"
+"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && 
(n%100<10 || n%100>=20)) ? 1 : 2));\n"
 
 #: ../exo/exo-cell-renderer-ellipsized-text.c:131
 #: ../exo/exo-cell-renderer-icon.c:144
@@ -396,7 +395,7 @@ msgstr ""
 "Proszę przeciągnąć jeden z powyższych elementów na pasek narzędziowy aby go "
 "dodać, lub element z paska narzędziowego na listę elementów, aby go usunąć."
 
-#: ../exo/exo-toolbars-editor.c:538
+#: ../exo/exo-toolbars-editor.c:537
 msgid "Separator"
 msgstr "Separator"
 
@@ -600,37 +599,44 @@ msgstr "Skrypty powłoki"
 msgid "Create Launcher %s"
 msgstr "Utwórz aktywator %s"
 
-#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to 
avoid mnemonic conflicts
+#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to
+#. avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:297
 msgid "_Name:"
 msgstr "_Nazwa:"
 
-#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to 
avoid mnemonic conflicts
+#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to
+#. avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:313
 msgid "C_omment:"
 msgstr "_Komentarz:"
 
-#. TRANSLATORS: Label in "Create Launcher" dialog, make sure to avoid mnemonic 
conflicts
+#. TRANSLATORS: Label in "Create Launcher" dialog, make sure to avoid mnemonic
+#. conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:329
 msgid "Comm_and:"
 msgstr "_Polecenie:"
 
-#. TRANSLATORS: Label in "Create Link" dialog, make sure to avoid mnemonic 
conflicts
+#. TRANSLATORS: Label in "Create Link" dialog, make sure to avoid mnemonic
+#. conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:344
 msgid "_URL:"
 msgstr "Adres _URL:"
 
-#. TRANSLATORS: Label in "Create Launcher" dialog, make sure to avoid mnemonic 
conflicts
+#. TRANSLATORS: Label in "Create Launcher" dialog, make sure to avoid mnemonic
+#. conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:360
 msgid "Working _Directory:"
 msgstr "Katalog _roboczy:"
 
-#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to 
avoid mnemonic conflicts
+#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to
+#. avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:389
 msgid "_Icon:"
 msgstr "_Ikona:"
 
-#. TRANSLATORS: Label for the icon button in "Create Launcher"/"Create Link" 
dialog if no icon selected
+#. TRANSLATORS: Label for the icon button in "Create Launcher"/"Create Link"
+#. dialog if no icon selected
 #. setup a label to tell that no icon was selected
 #: ../exo-desktop-item-edit/exo-die-editor.c:406
 #: ../exo-desktop-item-edit/exo-die-editor.c:1233
@@ -641,9 +647,11 @@ msgstr "Brak"
 msgid "Options:"
 msgstr "Opcje:"
 
-#. TRANSLATORS: Check button label in "Create Launcher" dialog, make sure to 
avoid mnemonic conflicts
-#. *  and sync your translations with the translations in Thunar 
and xfce4-panel.
-#.
+#. TRANSLATORS: Check button label in "Create Launcher" dialog, make sure to
+#. avoid mnemonic conflicts
+#. *  and sync your translations with the translations in Thunar
+#. and xfce4-panel.
+#. 
 #: ../exo-desktop-item-edit/exo-die-editor.c:421
 msgid "Use _startup notification"
 msgstr "P_owiadamianie o uruchamianiu"
@@ -657,9 +665,11 @@ msgstr ""
 "Powiadamia o uruchomieniu polecenia z menedżera plików lub menu. Nie każdy "
 "program jest obsługiwany."
 
-#. TRANSLATORS: Check button label in "Create Launcher" dialog, make sure to 
avoid mnemonic conflicts
-#. *  and sync your translations with the translations in Thunar 
a

[Xfce4-commits] l10n: Updated Polish (pl) translation to 96%

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to a786acf194436b79c4c01417e996c9f231b26760 (commit)
   from d4c4c5a745db93acb341879ec18adcc795df8507 (commit)

commit a786acf194436b79c4c01417e996c9f231b26760
Author: Piotr Strębski 
Date:   Tue Jan 8 19:23:14 2013 +0100

l10n: Updated Polish (pl) translation to 96%

New status: 374 messages complete with 0 fuzzies and 13 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/pl.po |   10 +-
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 664bf55..258c9c6 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-panel 4.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-10-06 12:54+\n"
+"POT-Creation-Date: 2013-01-08 14:36+\n"
 "PO-Revision-Date: 2012-04-15 12:05+0200\n"
 "Last-Translator: Piotr Sokół \n"
 "Language-Team: polski <>\n"
@@ -216,7 +216,7 @@ msgstr[0] "Tworzenie %d aktywatora"
 msgstr[1] "Tworzenie %d aktywatorów"
 msgstr[2] "Tworzenie %d aktywatorów"
 
-#: ../panel/panel-application.c:1719
+#: ../panel/panel-application.c:1725
 msgid ""
 "You have started X without session manager. Clicking Quit will close the X "
 "server."
@@ -224,11 +224,11 @@ msgstr ""
 "Uruchomiono serwer X bez menedżera sesji. Zakończenie programu zakończy "
 "działanie serwera X."
 
-#: ../panel/panel-application.c:1720
+#: ../panel/panel-application.c:1726
 msgid "Are you sure you want to quit the panel?"
 msgstr "Zakończyć działanie panelu?"
 
-#: ../panel/panel-application.c:1728
+#: ../panel/panel-application.c:1734
 #, c-format
 msgid "Failed to execute command \"%s\""
 msgstr "Nie udało się wykonać polecenia „%s”."
@@ -1185,7 +1185,7 @@ msgstr "za kwadrans %1"
 #: ../plugins/clock/clock-fuzzy.c:110
 #, no-c-format
 msgid "ten to %1"
-msgstr "za dziesięć minut %1"
+msgstr "za dziesięć %1"
 
 #: ../plugins/clock/clock-fuzzy.c:111
 #, no-c-format
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Polish (pl) translation to 96%

2013-01-08 Thread Transifex
Updating branch refs/heads/xfce-4.10
 to 6178882901ae1df93e09b0e4d97d0b46ee999727 (commit)
   from 024c5f000f2f7545a46b6105352c8a077df4cf87 (commit)

commit 6178882901ae1df93e09b0e4d97d0b46ee999727
Author: Piotr Strębski 
Date:   Tue Jan 8 19:20:17 2013 +0100

l10n: Updated Polish (pl) translation to 96%

New status: 374 messages complete with 0 fuzzies and 13 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/pl.po |   10 +-
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 3ddfc44..429417e 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-panel 4.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-09-14 05:57+\n"
+"POT-Creation-Date: 2013-01-08 14:39+\n"
 "PO-Revision-Date: 2012-04-15 12:05+0200\n"
 "Last-Translator: Piotr Sokół \n"
 "Language-Team: polski <>\n"
@@ -1135,7 +1135,7 @@ msgstr "Późny wieczór"
 #: ../plugins/clock/clock-fuzzy.c:100
 #, no-c-format
 msgid "%0 o'clock"
-msgstr "%0"
+msgstr "godzina %0"
 
 #: ../plugins/clock/clock-fuzzy.c:101
 #, no-c-format
@@ -1165,7 +1165,7 @@ msgstr "dwadzieścia pięć po %0"
 #: ../plugins/clock/clock-fuzzy.c:106
 #, no-c-format
 msgid "half past %0"
-msgstr "w pół do %1"
+msgstr "wpół do %1"
 
 #: ../plugins/clock/clock-fuzzy.c:107
 #, no-c-format
@@ -1180,7 +1180,7 @@ msgstr "za dwadzieścia %1"
 #: ../plugins/clock/clock-fuzzy.c:109
 #, no-c-format
 msgid "quarter to %1"
-msgstr "za kwadrans %1"
+msgstr "za piętnaście %1"
 
 #: ../plugins/clock/clock-fuzzy.c:110
 #, no-c-format
@@ -1195,7 +1195,7 @@ msgstr "za pięć %1"
 #: ../plugins/clock/clock-fuzzy.c:112
 #, no-c-format
 msgid "%1 o'clock"
-msgstr "%1"
+msgstr "godzina %1"
 
 #. I18N: some languages have a singular form for the first hour,
 #. * other languages should just use the same strings as above
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Initial Polish translation

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to 93848f14ffcb8f42ca27d2ad09ebea3b4bb33a63 (commit)
   from 0b22517f1ea788ba5b71872e980034051921ab0e (commit)

commit 93848f14ffcb8f42ca27d2ad09ebea3b4bb33a63
Author: Piotr Strębski 
Date:   Tue Jan 8 19:16:00 2013 +0100

l10n: Initial Polish translation

New status: 41 messages complete with 0 fuzzies and 39 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po-doc/{lt.po => pl.po} |  175 ---
 1 files changed, 45 insertions(+), 130 deletions(-)

diff --git a/po-doc/lt.po b/po-doc/pl.po
similarity index 65%
copy from po-doc/lt.po
copy to po-doc/pl.po
index b50e92f..fa9ce08 100644
--- a/po-doc/lt.po
+++ b/po-doc/pl.po
@@ -1,18 +1,16 @@
-#
-# Algimantas Margevičius , 2012.
-#
 msgid ""
 msgstr ""
-"Project-Id-Version: screenshoter doc\n"
+"Project-Id-Version: xfce4-screenshooter 1\n"
 "POT-Creation-Date: 2012-01-02 23:51+0100\n"
-"PO-Revision-Date: 2012-02-11 10:33+0200\n"
-"Last-Translator: Algimantas Margevičius \n"
-"Language-Team: Lietuvių <>\n"
+"PO-Revision-Date: 2013-01-08 19:15+0100\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Xfce Polish Translation Team \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
-"%100<10 || n%100>=20) ? 1 : 2)\n"
+"X-Generator: Poedit 1.5.4\n"
+"Language: pl\n"
+"X-Poedit-SourceCharset: UTF-8\n"
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
@@ -56,7 +54,7 @@ msgstr ""
 
 #: ../docs/manual/C/index.xml.in:12(title)
 msgid "Xfce4 Screenshooter"
-msgstr "Xfce4 Ekranvaizdis"
+msgstr "Zrzutnik ekranu Xfce4"
 
 #: ../docs/manual/C/index.xml.in:17(year)
 msgid "2008"
@@ -84,11 +82,6 @@ msgid ""
 "complete license text is available from the http://www.gnu.org/\";>Free Software Foundation."
 msgstr ""
-"Leidžiama kopijuoti, platinti ir/ar keisti remiantis GNU Free Documentation "
-"License, Version 1.1 ar vėlesne versija kaip išleido Free Software "
-"Foundation; be nekintamų dalių, be pirmo plano tekstų ir be antro plano "
-"viršelio tekstų. Pilnas licencijos tekstas prieinamas http://www.gnu.org/\";>Free Software Foundation."
 
 #: ../docs/manual/C/index.xml.in:40(firstname)
 msgid "Jérôme"
@@ -116,11 +109,11 @@ msgstr "renm...@gmail.com"
 
 #: ../docs/manual/C/index.xml.in:55(releaseinfo)
 msgid "This manual describes version @PACKAGE_VERSION@ of Xfce4 Screenshooter."
-msgstr "Šis žinynas aprašo Xfce 4 Screensooter @PACKAGE_VERSION@ versiją."
+msgstr ""
 
 #: ../docs/manual/C/index.xml.in:61(title)
 msgid "Introduction to Xfce4 Screenshooter"
-msgstr "Įžanga į Xfce4 Screenshooter"
+msgstr "Wprowadzenie do Zrzutnika ekranu Xfce4"
 
 #: ../docs/manual/C/index.xml.in:63(para)
 msgid ""
@@ -131,54 +124,46 @@ msgid ""
 "application, or host it on http://www.zimagez.com";
 "\">ZimageZ, a free online image hosting service."
 msgstr ""
-"Ši programa leidžia padaryti viso ekrano, aktyvaus lango ar pasirinktos "
-"srities ekranvaizdį. Galite nurodyti vėlavimą, išsaugoti kaip png failą, "
-"kopijuoti į iškarpinę, atverti su kita programa ar patalpinti http://www.zimagez.com\";>ZimageZ."
 
 #: ../docs/manual/C/index.xml.in:73(para)
 msgid "A plugin for the Xfce panel is also available."
-msgstr "Taipogi yra įskiepis skirtas Xfce skydeliui."
+msgstr "Wtyczka do panelu Xfce jest również dostępna."
 
 #: ../docs/manual/C/index.xml.in:80(title)
 msgid "Using the application"
-msgstr "Naudojimasis programa"
+msgstr "Użycie programu"
 
 #: ../docs/manual/C/index.xml.in:83(title)
 msgid "Via the user interface"
-msgstr "Su naudotojo sąsaja"
+msgstr "Przez interfejs użytkownika"
 
 #: ../docs/manual/C/index.xml.in:85(para)
 msgid ""
 "To launch the application, use the \"Screenshot\" item in the \"Accessories"
 "\" category of Xfce's main menu."
 msgstr ""
-"Naudodami paleisti programą, pagrindiniame Xfce meniu pasirinkite elementą "
-"„Ekranvaizdis“ reikmenų kategorijoje."
 
 #: ../docs/manual/C/index.xml.in:90(para)
 msgid "This window will be displayed:"
-msgstr "Šis langas bus rodomas:"
+msgstr ""
 
 #: ../docs/manual/C/index.xml.in:101(phrase)
 msgid "The window of Xfce4 Screenshooter"
-msgstr "Xfce4 Screenshooter langas"
+msgstr "Okno Zrzutnika ekranu Xfce4"
 
 #: ../docs/manual/C/index.xml.in:107(title)
 msgid "Region to capture"
-msgstr "Reikalinga sritis"
+msgstr "Obszar do przechwycenia"
 
 #: ../docs/manual/C/index.xml.in:109(para)
 msgid ""
 "The \"Region to capture\" section allows you to set "
 "what the screenshot will be taken of:"
 msgstr ""
-"\"Reikalinga sritis\" leidžia pasirinkti sritį kurios "
-"ekranvaizdį daryti:"
 
 #: ../docs/manual/C/index.xml.in:115(listitem)
 msgid "\"Entire screen\" takes a screenshot of the whole screen as you see it."
-msgstr "„Visas ekranas“ padaro viso matomo ekrano e

[Xfce4-commits] l10n: Initial Polish translation

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to 4c4da8d37cc3d4f2bbbd871db227d2caa93c52bc (commit)
   from 34eb2f284adf8a7965215372755b91f279343d39 (commit)

commit 4c4da8d37cc3d4f2bbbd871db227d2caa93c52bc
Author: Piotr Strębski 
Date:   Tue Jan 8 18:51:15 2013 +0100

l10n: Initial Polish translation

New status: 50 messages complete with 0 fuzzies and 25 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/{xfbib.pot => pl.po} |  116 ---
 1 files changed, 59 insertions(+), 57 deletions(-)

diff --git a/po/xfbib.pot b/po/pl.po
similarity index 77%
copy from po/xfbib.pot
copy to po/pl.po
index 3bbee8f..0eedca7 100644
--- a/po/xfbib.pot
+++ b/po/pl.po
@@ -1,20 +1,22 @@
 # 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.
+# Piotr Strębski , 2013.
 #
-#, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: xfbib 1\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2009-03-31 18:57+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
-"Language-Team: LANGUAGE \n"
+"PO-Revision-Date: 2013-01-08 18:49+0100\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Xfce PL\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.5.4\n"
+"Language: Pl\n"
+"X-Poedit-SourceCharset: UTF-8\n"
 
 #: ../src/main.c:70
 msgid "main_entries"
@@ -22,7 +24,7 @@ msgstr ""
 
 #: ../src/main.c:71
 msgid "Report bugs to http://bugs.xfce.org/\n";
-msgstr ""
+msgstr "Zgłoszenie błędów na http://bugs.xfce.org/\n";
 
 #: ../src/main.c:73
 #, c-format
@@ -42,7 +44,7 @@ msgstr ""
 #. Error
 #: ../src/xfbib-bibtex.c:240
 msgid "Unknown entry type\n"
-msgstr ""
+msgstr "Nieznany typ wpisu\n"
 
 #. Equal sign missing
 #: ../src/xfbib-bibtex-field.c:96
@@ -97,47 +99,47 @@ msgstr ""
 #: ../src/xfbib-entry-edit-dialog.c:178
 #, c-format
 msgid "Icon missing: %s"
-msgstr ""
+msgstr "Brakująca ikona: %s"
 
 #: ../src/xfbib-entry-edit-dialog.c:224
 msgid "Type:"
-msgstr ""
+msgstr "Typ:"
 
 #: ../src/xfbib-entry-edit-dialog.c:231
 msgid "Key:"
-msgstr ""
+msgstr "Klucz:"
 
 #: ../src/xfbib-entry-edit-dialog.c:327 ../src/xfbib-multiple-input.c:168
 msgid "Title"
-msgstr ""
+msgstr "Tytuł"
 
 #: ../src/xfbib-entry-edit-dialog.c:328
 msgid "Author/Editor"
-msgstr ""
+msgstr "Autor/Redaktor"
 
 #: ../src/xfbib-entry-edit-dialog.c:329
 msgid "Publication"
-msgstr ""
+msgstr "Publikacja"
 
 #: ../src/xfbib-entry-edit-dialog.c:330
 msgid "Publisher"
-msgstr ""
+msgstr "Wydawca"
 
 #: ../src/xfbib-entry-edit-dialog.c:331
 msgid "Misc"
-msgstr ""
+msgstr "Różne"
 
 #: ../src/xfbib-entry-edit-dialog.c:484
 msgid "A BibTeX type is required!"
-msgstr ""
+msgstr "Typ BibTeX jest wymagany!"
 
 #: ../src/xfbib-entry-edit-dialog.c:488
 msgid "BibTeX key is required!"
-msgstr ""
+msgstr "Klucz BibTeX jest wymagany!"
 
 #: ../src/xfbib-entry-tree-view.c:172
 msgid "Address of publisher"
-msgstr ""
+msgstr "Adres wydawcy"
 
 #: ../src/xfbib-entry-tree-view.c:173
 msgid "Annotation for annotated bibliography styles"
@@ -149,11 +151,11 @@ msgstr ""
 
 #: ../src/xfbib-entry-tree-view.c:175
 msgid "Title of the book, if only part of it is being cited"
-msgstr ""
+msgstr "Tytuł książki, jeśli tylko część z niej została zacytowana"
 
 #: ../src/xfbib-entry-tree-view.c:176
 msgid "Chapter number"
-msgstr ""
+msgstr "Liczba rozdziałów"
 
 #: ../src/xfbib-entry-tree-view.c:177
 msgid "Citation key of the cross-referenced entry"
@@ -161,7 +163,7 @@ msgstr ""
 
 #: ../src/xfbib-entry-tree-view.c:178
 msgid "Edition of the book (such as \"first\" or \"second\")"
-msgstr ""
+msgstr "Wydanie książki (takie jak \"pierwsze\" lub \"drugie\")"
 
 #: ../src/xfbib-entry-tree-view.c:179
 msgid "Name(s) of the editor(s), separated by 'and' if more than one"
@@ -169,19 +171,19 @@ msgstr ""
 
 #: ../src/xfbib-entry-tree-view.c:180
 msgid "Specification of electronic publication"
-msgstr ""
+msgstr "Specyfikacja publikacji elektronicznej"
 
 #: ../src/xfbib-entry-tree-view.c:181
 msgid "Publishing method if the method is nonstandard"
-msgstr ""
+msgstr "Metoda publikacji, jeśli metoda jest niestandardowa"
 
 #: ../src/xfbib-entry-tree-view.c:182
 msgid "Institution that was involved in the publishing"
-msgstr ""
+msgstr "Instytucja, która była zaangażowana w publikację"
 
 #: ../src/xfbib-entry-tree-view.c:183
 msgid "Journal or magazine in which the work was published"
-msgstr ""
+msgstr "Czasopismo lub magazyn, w którym praca została opublikowana"
 
 #: ../src/xfbib-entry-tree-view.c:184
 msgid ""
@@ -191,19 +193,19 @@ msgstr ""
 
 #: ../src/xfbib-entry-tree-view.c:185
 msgid "Month of publication or creation if unpublished"
-msgstr ""
+msgstr "Miesiąc publikacji lub stworzenia, jeśli nieop

[Xfce4-commits] l10n: Initial Polish translation

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to 0fdc50c1a0aa721dd86bef93cfe5abc994059b46 (commit)
   from 9c27837b05e060250e9815d22fc9ad70fabddf87 (commit)

commit 0fdc50c1a0aa721dd86bef93cfe5abc994059b46
Author: Piotr Strębski 
Date:   Tue Jan 8 18:24:32 2013 +0100

l10n: Initial Polish translation

New status: 3 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/{es.po => pl.po} |   23 ---
 1 files changed, 12 insertions(+), 11 deletions(-)

diff --git a/po/es.po b/po/pl.po
similarity index 50%
copy from po/es.po
copy to po/pl.po
index 63ff74f..650c478 100644
--- a/po/es.po
+++ b/po/pl.po
@@ -1,32 +1,33 @@
 # 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.
+# Piotr Strębski , 2013.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: transd\n"
+"Project-Id-Version: transd 1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-28 05:03+\n"
-"PO-Revision-Date: 2012-04-28 02:02-0600\n"
-"Last-Translator: Sergio García \n"
-"Language-Team: Spanish/es \n"
+"POT-Creation-Date: 2013-01-08 13:06+\n"
+"PO-Revision-Date: 2013-01-08 18:23+0100\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: PL \n"
 "Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Spanish\n"
-"X-Poedit-Country: SPAIN\n"
+"X-Poedit-Language: Polish\n"
+"X-Poedit-Country: POLAND\n"
+"X-Poedit-SourceCharset: utf-8\n"
 
 #: ../src/transd.c:192
 msgid "Transd now uses a new configuration file format.  Please see the README 
for details.  Transd will now exit."
-msgstr "Transd ahora usa una nueva configuración de formato de archivo. Por 
favor lea el README para más detalles. Transd se cerrará ahora."
+msgstr "Transd używa teraz nowy format pliku konfiguracyjnego.  Po szczegóły 
proszę zajrzeć do pliku README.  Transd kończy teraz działanie."
 
 #: ../transd.desktop.in.h:1
 msgid "Daemon which monitors windows and sets transparency based on rulesets"
-msgstr "Demonio que monitorea las ventanas y aplica transparencias basado en 
cojuntos de reglas"
+msgstr "Demon monitorujący okna i ustanawiający przezroczystość w oparciu o 
zestaw reguł"
 
 #: ../transd.desktop.in.h:2
 msgid "Transparency Daemon"
-msgstr "Demonio de transparencia"
+msgstr "Demon przezroczystości"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Initial Polish translation

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to 1933efba6272d057d76fc46a19c5bc52a6099d5a (commit)
   from 0796b2a9c4ffde586fdc006814c337e1822ae524 (commit)

commit 1933efba6272d057d76fc46a19c5bc52a6099d5a
Author: Piotr Strębski 
Date:   Tue Jan 8 18:16:31 2013 +0100

l10n: Initial Polish translation

New status: 67 messages complete with 0 fuzzies and 3 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/{zh_TW.po => pl.po} |  151 ---
 1 files changed, 77 insertions(+), 74 deletions(-)

diff --git a/po/zh_TW.po b/po/pl.po
similarity index 68%
copy from po/zh_TW.po
copy to po/pl.po
index db43d3e..3d944f8 100644
--- a/po/zh_TW.po
+++ b/po/pl.po
@@ -1,124 +1,127 @@
 # 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.
+# Piotr Strębski , 2013.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: xfmpc master\n"
+"Project-Id-Version: xfmpc 1\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-10-23 17:29+0200\n"
-"PO-Revision-Date: 2011-11-14 23:29+0800\n"
-"Last-Translator: Cheng-Chia Tseng \n"
-"Language-Team: chinese-l10n \n"
+"PO-Revision-Date: 2013-01-08 18:15+0100\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: PL \n"
 "Language: \n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Polish\n"
+"X-Poedit-Country: POLAND\n"
+"X-Poedit-SourceCharset: utf-8\n"
 
 #: ../src/dbbrowser.c:1508
 msgid "Replace"
-msgstr "替換"
+msgstr "Zastąp"
 
 #: ../src/dbbrowser.c:1524
 #: ../src/playlist.c:1511
 msgid "Browse"
-msgstr "瀏覽"
+msgstr "Przeglądaj"
 
 #: ../src/extended-interface.c:495
 msgid "Repeat"
-msgstr "返復"
+msgstr "Powtórz"
 
 #: ../src/extended-interface.c:505
 msgid "Random"
-msgstr "隨機"
+msgstr "Losowo"
 
 #: ../src/extended-interface.c:515
 msgid "Single Mode"
-msgstr "單一模式"
+msgstr ""
 
 #: ../src/extended-interface.c:525
 msgid "Consume Mode"
-msgstr "耗盡模式"
+msgstr ""
 
 #: ../src/extended-interface.c:548
 msgid "_Shortcuts"
-msgstr "捷徑(_S)"
+msgstr "_Skróty"
 
 #: ../src/extended-interface.c:747
 #: ../xfmpc.desktop.in.h:2
 msgid "MPD client written in GTK+ for Xfce"
-msgstr "以 GTK+ 寫成的,為 Xfce 設計的 MPD 客戶端"
+msgstr "Klient MPD napisany w GTK+ dla Xfce"
 
 #: ../src/extended-interface.c:749
 msgid "translator-credits"
-msgstr "Cheng-Chia Tseng , 2011."
+msgstr "tłumacze"
 
 #: ../src/extended-interface.c:890
 msgid "Clear Playlist"
-msgstr "清除播放清單"
+msgstr "Wyczyść listę odtwarzania"
 
 #: ../src/extended-interface.c:908
 msgid "Refresh Database"
-msgstr "重新整理資料庫"
+msgstr "Odśwież bazę danych"
 
 #: ../src/extended-interface.c:926
 msgid "Context Menu"
-msgstr "情境選單"
+msgstr "Menu kontekstowe"
 
 #: ../src/extended-interface.c:969
 msgid "Current Playlist"
-msgstr "目前的播放清單"
+msgstr "Bieżąca lista odtwarzania"
 
 #: ../src/extended-interface.c:975
 msgid "Browse database"
-msgstr "瀏覽資料庫"
+msgstr "Przeglądaj bazę danych"
 
 #: ../src/interface.c:467
 #, c-format
 msgid "by \"%s\" from \"%s\" (%s)"
-msgstr "來自「%s」專輯「%s」(%s)"
+msgstr "autorstwa \"%s\" z \"%s\" (%s)"
 
 #: ../src/interface.c:486
 msgid "Stopped"
-msgstr "已停止"
+msgstr "Zatrzymano"
 
 #: ../src/interface.c:496
 #: ../src/interface.c:916
 msgid "Not connected"
-msgstr "未連接"
+msgstr "Nie połączono"
 
 #: ../src/main-window.c:641
 #, c-format
 msgid "%d songs, %d hours and %d minutes"
-msgstr "%d 首歌,%d 小時 %d 分鐘"
+msgstr "%d utworów, %d godzin i %d minut"
 
 #: ../src/main-window.c:652
 #, c-format
 msgid "%d songs, %d minutes"
-msgstr "%d 首歌,%d 分鐘"
+msgstr "%d utworów, %d minut"
 
 #: ../src/mpdclient.c:382
 msgid "Failed to connect to MPD"
-msgstr "無法連接至 MPD"
+msgstr "Błąd przy łączeniu z MPD"
 
 #: ../src/mpdclient.c:387
 msgid "Connected to MPD"
-msgstr "已連接至 MPD"
+msgstr "Połączono z MPD"
 
 #: ../src/mpdclient.c:627
 #: ../src/mpdclient.c:657
 #: ../src/mpdclient.c:672
 msgid "n/a"
-msgstr "不可用"
+msgstr "b/d"
 
 #: ../src/preferences-dialog.c:701
 msgid "Xfmpc Preferences"
-msgstr "Xfmpc 偏好設定"
+msgstr "Preferencje Xfmpc"
 
 #: ../src/preferences-dialog.c:703
 msgid "Customize your MPD client"
-msgstr "自訂您的 MPD 客戶端"
+msgstr "Dostosuj do swych potrzeb swego klienta MPD"
 
 #: ../src/preferences-dialog.c:720
 msgid "MPD"
@@ -126,185 +129,185 @@ msgstr "MPD"
 
 #: ../src/preferences-dialog.c:731
 msgid "Connection"
-msgstr "連線"
+msgstr "Połączenie"
 
 #: ../src/preferences-dialog.c:739
 msgid "Use _default system settings"
-msgstr "使用預設系統設定值(_D)f"
+msgstr "Użyj _domyślnych ustawień systemowych"
 
 #: ../src/preferences-dialog.c:745
 msgid "If checked, Xfmpc will try to read the environment variables MPD_HOST 
and MPD_PORT otherwise it will use localhost"
-msgstr "若勾選,Xfmpc 會先嘗試讀取環境變數 MPD_HOST 與 HPD_PORT,否則會使用本地端主機"
+msgstr ""
 
 #: ../src/preferences-dialog.c:775
 msgid "Hostname:"
-msgstr "主機名稱:"
+msgstr "Nazwa

[Xfce4-commits] l10n: Initial Polish translation

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to 94134cc8b5084d27272e13996c6c08b88f07d704 (commit)
   from c2ac6136e1d090ae308ff862dff99df158470585 (commit)

commit 94134cc8b5084d27272e13996c6c08b88f07d704
Author: Piotr Strębski 
Date:   Tue Jan 8 17:56:39 2013 +0100

l10n: Initial Polish translation

New status: 18 messages complete with 0 fuzzies and 10 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/{zh_TW.po => pl.po} |   73 ---
 1 files changed, 37 insertions(+), 36 deletions(-)

diff --git a/po/zh_TW.po b/po/pl.po
similarity index 62%
copy from po/zh_TW.po
copy to po/pl.po
index 13fa7d4..957fb94 100644
--- a/po/zh_TW.po
+++ b/po/pl.po
@@ -1,153 +1,154 @@
 # 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.
+# Piotr Strębski , 2013.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: thunar-shares-plugin master\n"
+"Project-Id-Version: 1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-19 03:54+\n"
-"PO-Revision-Date: 2012-01-19 15:40+0800\n"
-"Last-Translator: Cheng-Chia Tseng \n"
-"Language-Team: chinese-l10n \n"
+"POT-Creation-Date: 2013-01-08 12:51+\n"
+"PO-Revision-Date: 2013-01-08 17:53+0100\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: PL-pl \n"
 "Language: \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"
+"Plural-Forms: 2\n"
+"X-Poedit-Language: Polish\n"
+"X-Poedit-Country: POLAND\n"
+"X-Poedit-SourceCharset: utf-8\n"
 
 #: ../libshares/libshares-util.c:161
 msgid "Please, write a name."
-msgstr "請填寫名稱。"
+msgstr "Proszę podać imię."
 
 #. Warn the user
 #: ../libshares/libshares-util.c:169
 msgid "Share name too long. Some old clients may have problems to access it, 
continue anyway?"
-msgstr "分享名稱過長。某些舊客戶端存取它時可能發生問題,無論如何要繼續嗎?"
+msgstr "Nazwa współudziału jest za długa. Niektóre starsze programy mogą mieć 
problem z dostępem. Mimo wszystko kontynuować?"
 
 #: ../libshares/libshares-util.c:182
 #, c-format
 msgid "Error while getting share information: %s"
-msgstr "取得分享資訊時發生錯誤:%s"
+msgstr "Wystąpił błąd podczas uzyskiwania informacji współudziału: %s"
 
 #: ../libshares/libshares-util.c:192
 msgid "Another share has the same name"
-msgstr "另一個分享已有相同名稱"
+msgstr "Inne współdzielenie ma taką samą nazwę"
 
 #: ../libshares/libshares-util.c:246
 msgid "Cannot modify the share:"
-msgstr "無法修改分享:"
+msgstr "Nie można modyfikować współudziału:"
 
 #: ../libshares/libshares-util.c:345
 msgid "Thunar needs to add some permissions to your folder in order to share 
it. Do you agree?"
-msgstr "Thunar 需要放行一些許可權到您的資料夾才能分享它。您同意嗎?"
+msgstr "Thunar wymaga dodania pewnych uprawnień do tego katalogu, by móc go 
współdzielić. Czy się zgadzasz?"
 
 #: ../libshares/libshares-util.c:384
 msgid "Error when changing folder permissions."
-msgstr "變更資料夾許可權時發生錯誤。"
+msgstr "Błąd podczas zmiany uprawnień katalogu."
 
 #: ../libshares/shares.c:165
 #, c-format
 msgid "%s %s %s returned with signal %d"
-msgstr "%s %s %s 傳回訊號 %d"
+msgstr "%s %s %s zwróciło sygnał %d"
 
 #: ../libshares/shares.c:174
 #, c-format
 msgid "%s %s %s failed for an unknown reason"
-msgstr "%s %s %s 因為某個原因執行失敗"
+msgstr "%s %s %s napotkało błąd z nieznanego powodu"
 
 #: ../libshares/shares.c:195
 #, c-format
 msgid "'net usershare' returned error %d: %s"
-msgstr "「net usershare」傳回錯誤 %d:%s"
+msgstr ""
 
 #: ../libshares/shares.c:197
 #, c-format
 msgid "'net usershare' returned error %d"
-msgstr "「net usershare」傳回錯誤 %d"
+msgstr ""
 
 #: ../libshares/shares.c:231
 #, c-format
 msgid "the output of 'net usershare' is not in valid UTF-8 encoding"
-msgstr "「net usershare」的輸出並非有效的 UTF-8 編碼"
+msgstr ""
 
 #: ../libshares/shares.c:490
 #: ../libshares/shares.c:702
 #, c-format
 msgid "Failed"
-msgstr "失敗"
+msgstr "Błąd"
 
 #: ../libshares/shares.c:592
 #, c-format
 msgid "Samba's testparm returned with signal %d"
-msgstr "Samba 的 testparm 傳回訊號 %d"
+msgstr ""
 
 #: ../libshares/shares.c:598
 #, c-format
 msgid "Samba's testparm failed for an unknown reason"
-msgstr "Samba 的 testparm 因為某個原因執行失敗"
+msgstr ""
 
 #: ../libshares/shares.c:613
 #, c-format
 msgid "Samba's testparm returned error %d: %s"
-msgstr "Samba 的 testparm 傳回錯誤 %d:%s"
+msgstr ""
 
 #: ../libshares/shares.c:615
 #, c-format
 msgid "Samba's testparm returned error %d"
-msgstr "Samba 的 testparm 傳回錯誤 %d"
+msgstr ""
 
 #: ../libshares/shares.c:784
 #, c-format
 msgid "Cannot remove the share for path %s: that path is not shared"
-msgstr "無法移除路徑 %s 的分享:該路徑未被分享"
+msgstr ""
 
 #: ../libshares/shares.c:837
 #, c-format
 msgid "Cannot change the path of an existing share; please remove the old 
share first and add a new one"
-msgstr "無法變更既有分享的路徑;請先移除舊的分享,再加入新的"
+msgstr ""
 
 #: ../thunar-plugin/tsp-page.c:152
 msgid "Folder Sharing"
-msgstr "資料夾分享"
+msgstr "Współdzieleni

[Xfce4-commits] l10n: Updated Polish (pl) translation to 100%

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to ca89e10cd921200817ce15675909340816b7bb92 (commit)
   from 149cb344344ab3387065c3fe2906f5bc21d374f2 (commit)

commit ca89e10cd921200817ce15675909340816b7bb92
Author: Piotr Strębski 
Date:   Tue Jan 8 17:35:32 2013 +0100

l10n: Updated Polish (pl) translation to 100%

New status: 9 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/pl.po |   16 
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 1e68bc2..05c891d 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -2,24 +2,24 @@
 # 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: xfce4-smarbookmar-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-03 22:26+0100\n"
+"POT-Creation-Date: 2013-01-08 15:21+\n"
 "PO-Revision-Date: 2006-04-08 12:19+0900\n"
 "Last-Translator: Piotr Maliński \n"
 "Language-Team: Polish \n"
-"Language: pl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: pl\n"
 
 #: ../src/smartbookmark.c:90
 #, c-format
 msgid "Failed to send %s to your preferred browser"
-msgstr ""
+msgstr "Nie udało się przesłać %s do Twojej preferowanej przeglądarki"
 
 #: ../src/smartbookmark.c:296
 msgid "Smartbookmark"
@@ -50,9 +50,9 @@ msgid "URL:  "
 msgstr "URL:  "
 
 #: ../src/smartbookmark.desktop.in.h:1
-msgid "SmartBookmark"
-msgstr "Inteligentne zakładki"
-
-#: ../src/smartbookmark.desktop.in.h:2
 msgid "Query websites from the Xfce panel"
 msgstr "Odpytywanie stron internetowych z panelu Xfce"
+
+#: ../src/smartbookmark.desktop.in.h:2
+msgid "SmartBookmark"
+msgstr "Inteligentne zakładki"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Polish (pl) translation to 96%

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to 4c3ff76701f05a69064f64c39c2160721180d7af (commit)
   from a81adc6e75a4c3d7e0192322d451d39d971c2f47 (commit)

commit 4c3ff76701f05a69064f64c39c2160721180d7af
Author: Piotr Strębski 
Date:   Tue Jan 8 17:34:24 2013 +0100

l10n: Updated Polish (pl) translation to 96%

New status: 50 messages complete with 2 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/pl.po |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index f5430ed..cfd3a75 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-10-28 08:57+\n"
+"POT-Creation-Date: 2013-01-08 14:21+\n"
 "PO-Revision-Date: 2009-04-07 19:33+0100\n"
 "Last-Translator: Piotr Sokół \n"
 "Language-Team: Polish\n"
@@ -244,7 +244,7 @@ msgstr "Tylko _punkty montowania"
 msgid ""
 "Trim the device names to the number of characters specified in the spin "
 "button."
-msgstr "Skraca nazwy urządzeń do liczby znaków określonej w obrocie przcisku"
+msgstr "Skraca nazwy urządzeń do liczby znaków określonej w obrocie przycisku"
 
 #: ../panel-plugin/mount-plugin.c:970
 msgid "Trim device names: "
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Polish (pl) translation to 39%

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to 788dff8d6bb75e90e6b5a80707dc1c1e80517a2d (commit)
   from a97a0d79cee60b4552ae18abb59b03d19239 (commit)

commit 788dff8d6bb75e90e6b5a80707dc1c1e80517a2d
Author: Piotr Strębski 
Date:   Tue Jan 8 17:31:46 2013 +0100

l10n: Updated Polish (pl) translation to 39%

New status: 43 messages complete with 2 fuzzies and 65 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 doc/po/pl.po |  252 +++--
 1 files changed, 119 insertions(+), 133 deletions(-)

diff --git a/doc/po/pl.po b/doc/po/pl.po
index 8bf6c4c..539007e 100644
--- a/doc/po/pl.po
+++ b/doc/po/pl.po
@@ -1,5 +1,5 @@
 # Piotr Sokół , 2012.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
@@ -8,82 +8,81 @@ msgstr ""
 "PO-Revision-Date: 2012-08-24 12:44+0200\n"
 "Last-Translator: Piotr Sokół \n"
 "Language-Team: polski <>\n"
-"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bits\n"
-"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n"
-"%100<10 || n%100>=20)) ? 1 : 2));\n"
+"Language: \n"
+"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && 
(n%100<10 || n%100>=20)) ? 1 : 2));\n"
 
-#: xfce4-terminal.1.xml:14(contrib) xfce4-terminal.1.xml:22(contrib)
+#: xfce4-terminal.1.xml14(contrib) xfce4-terminal.1.xml22(contrib)
 msgid "Developer"
 msgstr "Programista"
 
-#: xfce4-terminal.1.xml:15(firstname)
+#: xfce4-terminal.1.xml15(firstname)
 msgid "Nick"
 msgstr "Nick"
 
-#: xfce4-terminal.1.xml:16(surname)
+#: xfce4-terminal.1.xml16(surname)
 msgid "Schermer"
 msgstr "Schermer"
 
-#: xfce4-terminal.1.xml:18(email)
+#: xfce4-terminal.1.xml18(email)
 msgid "n...@xfce.org"
 msgstr "n...@xfce.org"
 
-#: xfce4-terminal.1.xml:23(firstname)
+#: xfce4-terminal.1.xml23(firstname)
 msgid "Benedikt"
 msgstr "Benedikt"
 
-#: xfce4-terminal.1.xml:24(surname)
+#: xfce4-terminal.1.xml24(surname)
 msgid "Meurer"
 msgstr "Meurer"
 
-#: xfce4-terminal.1.xml:26(jobtitle)
+#: xfce4-terminal.1.xml26(jobtitle)
 msgid "Software developer"
 msgstr "Twórca programu"
 
-#: xfce4-terminal.1.xml:27(orgname)
+#: xfce4-terminal.1.xml27(orgname)
 msgid "os-cillation"
 msgstr "os-cillation"
 
-#: xfce4-terminal.1.xml:28(orgdiv)
+#: xfce4-terminal.1.xml28(orgdiv)
 msgid "System development"
 msgstr "Rozwój systemu"
 
-#: xfce4-terminal.1.xml:29(email)
+#: xfce4-terminal.1.xml29(email)
 msgid "be...@xfce.org"
 msgstr "be...@xfce.org"
 
-#: xfce4-terminal.1.xml:37(manvolnum)
+#: xfce4-terminal.1.xml37(manvolnum)
 msgid "1"
 msgstr "1"
 
-#: xfce4-terminal.1.xml:39(refmiscinfo)
+#: xfce4-terminal.1.xml39(refmiscinfo)
 msgid "Xfce"
 msgstr "Xfce"
 
-#: xfce4-terminal.1.xml:44(refpurpose)
+#: xfce4-terminal.1.xml44(refpurpose)
 msgid "A Terminal emulator for X"
 msgstr "Emulator terminala dla X"
 
-#: xfce4-terminal.1.xml:48(title)
+#: xfce4-terminal.1.xml48(title)
 msgid "Synopsis"
 msgstr ""
 
-#: xfce4-terminal.1.xml:50(command)
+#: xfce4-terminal.1.xml50(command)
 msgid "Terminal"
 msgstr "Terminal"
 
-#: xfce4-terminal.1.xml:51(arg)
+#: xfce4-terminal.1.xml51(arg)
 msgid "OPTION"
 msgstr "OPCJA"
 
-#: xfce4-terminal.1.xml:56(title)
+#: xfce4-terminal.1.xml56(title)
 msgid "Description"
 msgstr "Opis"
 
-#: xfce4-terminal.1.xml:57(para)
+#: xfce4-terminal.1.xml57(para)
 msgid ""
 "@PACKAGE_NAME@ is what is known as an X terminal emulator, often referred to "
 "as terminal or shell. It provides an equivalent to the old-fashioned text "
@@ -94,7 +93,7 @@ msgid ""
 "far more power and ease of use than does DOS."
 msgstr ""
 
-#: xfce4-terminal.1.xml:67(para)
+#: xfce4-terminal.1.xml67(para)
 msgid ""
 "@PACKAGE_NAME@ emulates the xterm application "
 "developed by the X Consortium. In turn, the xterm "
@@ -105,16 +104,16 @@ msgid ""
 "as to position the cursor and to clear the screen."
 msgstr ""
 
-#: xfce4-terminal.1.xml:79(title)
+#: xfce4-terminal.1.xml79(title)
 msgid "Options"
 msgstr "Opcje"
 
-#: xfce4-terminal.1.xml:82(title)
+#: xfce4-terminal.1.xml82(title)
 #, fuzzy
 msgid "Option Summary"
 msgstr "Opcja podsumowania"
 
-#: xfce4-terminal.1.xml:83(para)
+#: xfce4-terminal.1.xml83(para)
 #, fuzzy
 msgid ""
 "Here is a summary of all the options, grouped by type. Explanations are in "
@@ -123,11 +122,11 @@ msgstr ""
 "Podsumowanie opcji, pogrupowane po typie. Wyjaśnienia w poszczególnych "
 "sekcjach."
 
-#: xfce4-terminal.1.xml:89(link) xfce4-terminal.1.xml:146(title)
+#: xfce4-terminal.1.xml89(link) xfce4-terminal.1.xml146(title)
 msgid "General Options"
 msgstr "Ogólne"
 
-#: xfce4-terminal.1.xml:91(para)
+#: xfce4-terminal.1.xml91(para)
 msgid ""
 "; ; ; "
 msgstr ""
 
-#: xfce4-terminal.1.xml:102(link) xfce4-terminal.1.xml:205(title)
+#: xfce4-terminal.1.xml102(link) xfce4-terminal.1.xml205(title)
 msgid "Window or Tab Separators"
 msgstr ""
 
-#: xfce4-terminal.1.xml:104(para)
+#: xfce4-terminal.1.xml104(para)
 msgid ""
 "; "
 msgst

[Xfce4-commits] l10n: Updated Polish (pl) translation to 100%

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to 9c6093520cc41ff6af30b628767a75dbdc9e3c25 (commit)
   from f90976d70597d7393fe0eb8ada0c374f902a03db (commit)

commit 9c6093520cc41ff6af30b628767a75dbdc9e3c25
Author: Piotr Strębski 
Date:   Tue Jan 8 17:29:45 2013 +0100

l10n: Updated Polish (pl) translation to 100%

New status: 205 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/pl.po |   20 +---
 1 files changed, 9 insertions(+), 11 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index bc16f8e..0ca68a2 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -172,12 +172,11 @@ msgstr "_Otwórz"
 
 #: ../data/interfaces/playlist.ui.h:1
 msgid "Angle Menu"
-msgstr ""
+msgstr "Menu położenia"
 
 #: ../data/interfaces/playlist.ui.h:2
-#, fuzzy
 msgid "Audio Menu"
-msgstr "Pliki dźwiękowe"
+msgstr "Menu audio"
 
 #: ../data/interfaces/playlist.ui.h:3
 msgid "Chapter Menu"
@@ -633,7 +632,7 @@ msgstr "Wyczyść ostatnie elementy"
 msgid ""
 "Are you sure you wish to clear your recent items history?  This cannot be "
 "undone."
-msgstr ""
+msgstr "Czy na pewno chcesz wyczyścić historię ostatnich elementów? Ta 
operacja nie może zostać cofnięta."
 
 #: ../src/parole-player.c:1219 ../src/parole-player.c:1351
 msgid "Media stream is not seekable"
@@ -848,20 +847,20 @@ msgstr "Pliki list odtwarzania"
 #: ../src/plugins/notify/notify-provider.c:129
 #: ../src/plugins/notify/notify-provider.c:132
 msgid "on"
-msgstr ""
+msgstr "z"
 
 #: ../src/plugins/notify/notify-provider.c:129
 #: ../src/plugins/notify/notify-provider.c:132
 msgid "by"
-msgstr ""
+msgstr "autorstwa"
 
 #: ../src/plugins/notify/notify.desktop.in.h:1
 msgid "Notify"
-msgstr ""
+msgstr "Powiadom"
 
 #: ../src/plugins/notify/notify.desktop.in.h:2
 msgid "Show notifications for currently playing tracks"
-msgstr ""
+msgstr "Wyświetl powiadomienia dla obecnie odtwarzanych ścieżek"
 
 #: ../src/plugins/tray/tray-provider.c:244
 msgid "Tray icon plugin"
@@ -872,13 +871,12 @@ msgid "Always minimize to tray when window is closed"
 msgstr "Minimalizowanie do obszaru powiadamiania po zamknięciu okna"
 
 #: ../src/plugins/tray/tray-provider.c:300
-#, fuzzy
 msgid "Are you sure you want to quit?"
-msgstr "Zakończyć działanie programu?"
+msgstr "Czy na pewno chcesz zakończyć?"
 
 #: ../src/plugins/tray/tray-provider.c:303
 msgid "Parole can be minimized to the system tray instead."
-msgstr ""
+msgstr "Parole może zamiast tego zostać zminimalizowanym do tacki systemowej."
 
 #: ../src/plugins/tray/tray-provider.c:306
 msgid "Minimize to tray"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Polish (pl) translation to 95%

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to f90976d70597d7393fe0eb8ada0c374f902a03db (commit)
   from 352c5262b129161d5b8d55d9a056087d9d36ae53 (commit)

commit f90976d70597d7393fe0eb8ada0c374f902a03db
Author: Piotr Strębski 
Date:   Tue Jan 8 17:25:38 2013 +0100

l10n: Updated Polish (pl) translation to 95%

New status: 196 messages complete with 2 fuzzies and 7 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/pl.po |  458 ++
 1 files changed, 283 insertions(+), 175 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 10b1c08..bc16f8e 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Parole master\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-11-19 03:09+\n"
+"POT-Creation-Date: 2013-01-08 12:15+\n"
 "PO-Revision-Date: 2012-04-19 15:00+0200\n"
 "Last-Translator: Piotr Sokół \n"
 "Language-Team: polski <>\n"
@@ -32,113 +32,133 @@ msgstr "20:9 (DVB)"
 msgid "4:3 (TV)"
 msgstr "4:3 (TV)"
 
-#: ../data/interfaces/parole.ui.h:4 ../src/misc/parole-filters.c:64
+#: ../data/interfaces/parole.ui.h:4
+msgid ""
+"by Unknown "
+"Artist"
+msgstr "autorstwa Nieznanego artysty"
+
+#: ../data/interfaces/parole.ui.h:5
+msgid ""
+"on Unknown "
+"Album"
+msgstr "z Nieznanego albumu"
+
+#: ../data/interfaces/parole.ui.h:6
+msgid "Unknown Song"
+msgstr "Nieznany utwór"
+
+#: ../data/interfaces/parole.ui.h:7 ../src/misc/parole-filters.c:64
 msgid "Audio"
 msgstr "Pliki dźwiękowe"
 
-#: ../data/interfaces/parole.ui.h:5
+#: ../data/interfaces/parole.ui.h:8
 msgid "Audio Track:"
 msgstr "Ścieżka audio:"
 
-#: ../data/interfaces/parole.ui.h:6
+#: ../data/interfaces/parole.ui.h:9
 msgid "Auto"
 msgstr "Automatyczne"
 
-#: ../data/interfaces/parole.ui.h:8
+#: ../data/interfaces/parole.ui.h:11
 #, no-c-format
 msgid "Buffering (0%)"
 msgstr "Buforowanie (0%)"
 
-#: ../data/interfaces/parole.ui.h:9 ../src/parole-player.c:681
+#: ../data/interfaces/parole.ui.h:12 ../src/parole-player.c:720
 msgid "Empty"
 msgstr "Pusty"
 
-#: ../data/interfaces/parole.ui.h:10 ../src/parole-disc.c:147
-#: ../src/parole-disc.c:465
+#: ../data/interfaces/parole.ui.h:13 ../src/parole-disc.c:110
+#: ../src/parole-disc.c:156
 msgid "Insert Disc"
 msgstr "Włóż dysk"
 
-#: ../data/interfaces/parole.ui.h:11
+#: ../data/interfaces/parole.ui.h:14
 msgid "Languages"
 msgstr "Języki"
 
-#: ../data/interfaces/parole.ui.h:12
+#: ../data/interfaces/parole.ui.h:15
 msgid "Media player"
 msgstr "Odtwarzacz nagrań"
 
-#: ../data/interfaces/parole.ui.h:13
+#: ../data/interfaces/parole.ui.h:16
 msgid "None"
 msgstr "Brak"
 
-#: ../data/interfaces/parole.ui.h:14
-msgid "Open _location"
-msgstr "Otwórz p_ołożenie"
+#: ../data/interfaces/parole.ui.h:17
+msgid "Open Recent"
+msgstr "Otwórz ostatnie"
 
-#: ../data/interfaces/parole.ui.h:15 ../src/parole-about.c:68
+#: ../data/interfaces/parole.ui.h:18
+msgid "Open _Location"
+msgstr "Otwórz _położenie"
+
+#: ../data/interfaces/parole.ui.h:19 ../src/parole-about.c:68
 msgid "Parole Media Player"
 msgstr "Odtwarzacz nagrań Parole"
 
-#: ../data/interfaces/parole.ui.h:16
-msgid "Pl_ugins"
-msgstr "_Wtyczki"
+#: ../data/interfaces/parole.ui.h:20
+msgid "Plugins"
+msgstr "Wtyczki"
 
-#: ../data/interfaces/parole.ui.h:17
+#: ../data/interfaces/parole.ui.h:21
 msgid "Select Text Subtitles..."
 msgstr "Wskaż napisy tekstowe..."
 
-#: ../data/interfaces/parole.ui.h:18
+#: ../data/interfaces/parole.ui.h:22
 msgid "Show _playlist"
 msgstr "Wyświetla _listę odtwarzania"
 
-#: ../data/interfaces/parole.ui.h:19
+#: ../data/interfaces/parole.ui.h:23
 msgid "Square"
 msgstr "Kwadratowe"
 
-#: ../data/interfaces/parole.ui.h:20
+#: ../data/interfaces/parole.ui.h:24
 msgid "Subtitles"
 msgstr "Napisy"
 
-#: ../data/interfaces/parole.ui.h:21
+#: ../data/interfaces/parole.ui.h:25
 msgid "Subtitles:"
 msgstr "Napisy:"
 
-#: ../data/interfaces/parole.ui.h:22
+#: ../data/interfaces/parole.ui.h:26
 msgid "Volume _Down"
 msgstr "Z_mniejsz głośność"
 
-#: ../data/interfaces/parole.ui.h:23
+#: ../data/interfaces/parole.ui.h:27
 msgid "Volume _Up"
 msgstr "Z_większ głośność"
 
-#: ../data/interfaces/parole.ui.h:24
+#: ../data/interfaces/parole.ui.h:28
 msgid "_Aspect Ratio"
 msgstr "_Proporcje obrazu"
 
-#: ../data/interfaces/parole.ui.h:25
+#: ../data/interfaces/parole.ui.h:29
 msgid "_Edit"
 msgstr "_Edycja"
 
-#: ../data/interfaces/parole.ui.h:26
+#: ../data/interfaces/parole.ui.h:30
 msgid "_Help"
 msgstr "Pomo_c"
 
-#: ../data/interfaces/parole.ui.h:27
+#: ../data/interfaces/parole.ui.h:31
 msgid "_Media"
 msgstr "_Nagranie"
 
-#: ../data/interfaces/parole.ui.h:28
+#: ../data/interfaces/parole.ui.h:32
 msgid "_Mute"
 msgstr "_Wycisz"
 
-#: ../data/interfaces/parole.ui.h:29
+#: ../data/interfaces/parole.ui.h:33
 msgid "_Repeat"
 msgstr "_Powtarzanie"
 
-#: ../data/interfaces/parole.ui.h:30
+#: ../data/interfaces/parole.ui.h:34
 msgid "_Shuffle"
 msgstr "_Losowe"
 
-#: ../data/interfa

[Xfce4-commits] l10n: Updated Polish (pl) translation to 92%

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to f34b9b3f0e763b76571b5df386a6c902d2c4ede2 (commit)
   from 7893b7256557a2b874b55b2b704aa858e2d796a4 (commit)

commit f34b9b3f0e763b76571b5df386a6c902d2c4ede2
Author: Piotr Strębski 
Date:   Tue Jan 8 17:20:13 2013 +0100

l10n: Updated Polish (pl) translation to 92%

New status: 52 messages complete with 0 fuzzies and 4 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/pl.po |2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index e365ab9..d96ccca 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -64,12 +64,10 @@ msgid "Unable to connect to D-Bus system bus daemon"
 msgstr ""
 
 #: xfce4-volstatus-icon/main.c:227
-#, fuzzy
 msgid "Unable to connect to HAL"
 msgstr "Nie można połączyć z HAL"
 
 #: xfce4-volstatus-icon/main.c:242
-#, fuzzy
 msgid "Unable to get device list from HAL"
 msgstr "Nie można pobrać listy urządzeń z HAL"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Polish (pl) translation to 78%

2013-01-08 Thread Transifex
Updating branch refs/heads/master
 to 19192dae04d4d28fef9be8f9aadc961a0a941e8e (commit)
   from 1d9e98cb81fe6f6633aba8eddc2af68e9bb2470c (commit)

commit 19192dae04d4d28fef9be8f9aadc961a0a941e8e
Author: Piotr Strębski 
Date:   Tue Jan 8 17:12:38 2013 +0100

l10n: Updated Polish (pl) translation to 78%

New status: 222 messages complete with 21 fuzzies and 39 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/pl.po |  109 ++---
 1 files changed, 54 insertions(+), 55 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 0e5d5ae..f2a1e46 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfburn 0.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-11-07 08:39+\n"
+"POT-Creation-Date: 2013-01-08 13:18+\n"
 "PO-Revision-Date: 2009-03-07 23:51+0100\n"
 "Last-Translator: Piotr Sokół \n"
 "Language-Team: Polish\n"
@@ -61,7 +61,7 @@ msgstr "Czyszczenie płyty"
 
 #: ../xfburn/xfburn-blank-dialog.c:209
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:195
-#: ../xfburn/xfburn-burn-image-dialog.c:198
+#: ../xfburn/xfburn-burn-image-dialog.c:200
 #: ../xfburn/xfburn-copy-cd-dialog.c:131
 #: ../xfburn/xfburn-copy-dvd-dialog.c:131
 #: ../xfburn/xfburn-burn-audio-cd-composition-dialog.c:160
@@ -74,7 +74,7 @@ msgstr "Tryb czyszczenia"
 
 #: ../xfburn/xfburn-blank-dialog.c:230
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:227
-#: ../xfburn/xfburn-burn-image-dialog.c:206
+#: ../xfburn/xfburn-burn-image-dialog.c:208
 #: ../xfburn/xfburn-copy-cd-dialog.c:139
 #: ../xfburn/xfburn-copy-dvd-dialog.c:139
 #: ../xfburn/xfburn-burn-audio-cd-composition-dialog.c:194
@@ -83,7 +83,7 @@ msgstr "Opcje"
 
 #: ../xfburn/xfburn-blank-dialog.c:234
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:231
-#: ../xfburn/xfburn-burn-image-dialog.c:210
+#: ../xfburn/xfburn-burn-image-dialog.c:212
 #: ../xfburn/xfburn-copy-cd-dialog.c:143
 #: ../xfburn/xfburn-copy-dvd-dialog.c:143
 #: ../xfburn/xfburn-burn-audio-cd-composition-dialog.c:198
@@ -125,14 +125,14 @@ msgid "Done"
 msgstr "Wykonano"
 
 #: ../xfburn/xfburn-blank-dialog.c:444 ../xfburn/xfburn-perform-burn.c:372
-#: ../xfburn/xfburn-progress-dialog.c:603
+#: ../xfburn/xfburn-progress-dialog.c:637
 msgid "Failure"
 msgstr "Niepowodzenie"
 
 #: ../xfburn/xfburn-blank-dialog.c:461
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:610
-#: ../xfburn/xfburn-burn-image-dialog.c:395
-#: ../xfburn/xfburn-burn-image-dialog.c:565
+#: ../xfburn/xfburn-burn-image-dialog.c:402
+#: ../xfburn/xfburn-burn-image-dialog.c:578
 #: ../xfburn/xfburn-burn-audio-cd-composition-dialog.c:397
 msgid "Unable to grab the drive."
 msgstr "Nie można pozyskać napędu."
@@ -163,7 +163,7 @@ msgid "Would you like to change the default 
composition name?"
 msgstr "Zmienić domyślną nazwę projektu?"
 
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:236
-#: ../xfburn/xfburn-burn-image-dialog.c:215
+#: ../xfburn/xfburn-burn-image-dialog.c:217
 #: ../xfburn/xfburn-copy-cd-dialog.c:148
 #: ../xfburn/xfburn-copy-dvd-dialog.c:148
 #: ../xfburn/xfburn-burn-audio-cd-composition-dialog.c:203
@@ -171,7 +171,7 @@ msgid "_Dummy write"
 msgstr "_Symulowanie nagrywania"
 
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:240
-#: ../xfburn/xfburn-burn-image-dialog.c:219
+#: ../xfburn/xfburn-burn-image-dialog.c:221
 #: ../xfburn/xfburn-burn-audio-cd-composition-dialog.c:207
 msgid "Burn_Free"
 msgstr "Burn_Free"
@@ -218,51 +218,55 @@ msgstr "Tryb zapisu nie jest na razie obsługiwany."
 msgid "Could not create ISO source structure."
 msgstr "Nie można utworzyć struktury obrazu ISO."
 
-#: ../xfburn/xfburn-burn-image-dialog.c:159
+#: ../xfburn/xfburn-burn-image-dialog.c:161
 msgid "Burn image"
 msgstr "Nagrywanie obrazu"
 
 #. file
-#: ../xfburn/xfburn-burn-image-dialog.c:166
-#: ../xfburn/xfburn-burn-image-dialog.c:183
+#: ../xfburn/xfburn-burn-image-dialog.c:168
+#: ../xfburn/xfburn-burn-image-dialog.c:185
 msgid "Image to burn"
 msgstr "Plik obrazu"
 
-#: ../xfburn/xfburn-burn-image-dialog.c:170
+#: ../xfburn/xfburn-burn-image-dialog.c:172
 msgid "All files"
 msgstr "Wszystkie pliki"
 
-#: ../xfburn/xfburn-burn-image-dialog.c:174
+#: ../xfburn/xfburn-burn-image-dialog.c:176
 msgid "ISO images"
 msgstr "Pliki obrazów ISO"
 
-#: ../xfburn/xfburn-burn-image-dialog.c:229
+#: ../xfburn/xfburn-burn-image-dialog.c:226
+msgid "_Quit after successful completion"
+msgstr ""
+
+#: ../xfburn/xfburn-burn-image-dialog.c:236
 msgid "_Burn image"
 msgstr "_Nagraj"
 
-#: ../xfburn/xfburn-burn-image-dialog.c:278
+#: ../xfburn/xfburn-burn-image-dialog.c:285
 msgid "Burn mode is not currently implemented."
 msgstr "Tryb nagrywania nie jest zrealizowany."
 
-#: ../xfburn/xfburn-burn-image-dialog.c:329
-#: ../xfburn/xfburn-burn-image-dialog.c:358
+#: ../xfburn/xfburn-burn-image-dialog.c:336
+#: ../xfburn/xfburn-burn-image-dialog.c:365
 #, fuzzy
 msgid "An

[Xfce4-commits] l10n: Updated Croatian (hr) translation to 86%

2013-01-08 Thread Transifex
Updating branch refs/heads/xfce-4.10
 to 024c5f000f2f7545a46b6105352c8a077df4cf87 (commit)
   from 9b92579a6a961cdbac890c69be9bcdff879adf1c (commit)

commit 024c5f000f2f7545a46b6105352c8a077df4cf87
Author: Ivica  Kolić 
Date:   Tue Jan 8 09:38:56 2013 +0100

l10n: Updated Croatian (hr) translation to 86%

New status: 335 messages complete with 0 fuzzies and 52 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/hr.po |8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/po/hr.po b/po/hr.po
index 41bf047..ec22d8d 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-panel 4.7.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-12-03 17:18+\n"
+"POT-Creation-Date: 2013-01-08 03:57+\n"
 "PO-Revision-Date: 2012-05-11 20:53+0100\n"
 "Last-Translator: Ivica Kolić \n"
 "Language-Team: Croatian <>\n"
@@ -444,7 +444,7 @@ msgstr "D_užina (%):"
 
 #: ../panel/panel-preferences-dialog.glade.h:20
 msgid "M_ode:"
-msgstr ""
+msgstr "N_ačin:"
 
 #. I18N: name of the section (frame) in the panel preferences where the user
 #. can define the length and size of the panel
@@ -676,7 +676,7 @@ msgstr "Konfiguracija ploče je dopunjena."
 
 #: ../plugins/actions/actions-dialog.glade.h:1
 msgid "Action"
-msgstr ""
+msgstr "Akcija"
 
 #: ../plugins/actions/actions-dialog.glade.h:2
 #: ../plugins/actions/actions.desktop.in.h:1
@@ -706,7 +706,7 @@ msgstr "Vidljivo"
 
 #: ../plugins/actions/actions-dialog.glade.h:9
 msgid "_Actions"
-msgstr ""
+msgstr "_Akcije"
 
 #: ../plugins/actions/actions-dialog.glade.h:10
 msgid "_Show confirmation dialog"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Croatian (hr) translation to 87%

2013-01-08 Thread Transifex
Updating branch refs/heads/xfce-4.10
 to 9df0a71d35537e6f78d8c8f7b16ec512109d4184 (commit)
   from f6eed5a9480c4ee7fb1867e1e5a704a7abd51170 (commit)

commit 9df0a71d35537e6f78d8c8f7b16ec512109d4184
Author: Ivica  Kolić 
Date:   Tue Jan 8 09:36:09 2013 +0100

l10n: Updated Croatian (hr) translation to 87%

New status: 599 messages complete with 0 fuzzies and 82 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/hr.po |   20 +++-
 1 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/po/hr.po b/po/hr.po
index c9fc5e2..7782648 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-09-25 18:33+\n"
+"POT-Creation-Date: 2013-01-08 07:42+\n"
 "PO-Revision-Date: 2010-06-17 01:51+0200\n"
 "Last-Translator: Ivica Kolić <>\n"
 "Language-Team: Croatian \n"
@@ -2011,7 +2011,7 @@ msgstr "Nisam uspio izbaciti \"%s\""
 
 #: ../thunar/thunar-size-label.c:146
 msgid "Click here to stop calculating the total size of the folder."
-msgstr ""
+msgstr "Kliknite ovdje za prestanak izračunavanja ukupne veličine mape."
 
 #. tell the user that the operation was canceled
 #: ../thunar/thunar-size-label.c:267
@@ -2160,8 +2160,8 @@ msgstr "Neuspješno otvaranje mape  \"%s\""
 #: ../thunar/thunar-standard-view.c:3697
 msgid "Prepare the selected file to be moved with a Paste command"
 msgid_plural "Prepare the selected files to be moved with a Paste command"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Pripremi odabranu datoteku za premještanje naredbom Zalijepi"
+msgstr[1] "Pripremi odabrane datoteke za premještanje naredbom Zalijepi"
 
 #: ../thunar/thunar-standard-view.c:3705
 msgid "Prepare the selected file to be copied with a Paste command"
@@ -3150,7 +3150,7 @@ msgstr "Napravi akciju"
 
 #: ../plugins/thunar-uca/thunar-uca-chooser.c:385
 msgid "Failed to save actions to disk."
-msgstr ""
+msgstr "Neuspjelo spremanje akcija na disk."
 
 #: ../plugins/thunar-uca/thunar-uca-chooser.c:436
 #, c-format
@@ -3158,10 +3158,12 @@ msgid ""
 "Are you sure that you want to delete\n"
 "action \"%s\"?"
 msgstr ""
+"jeste li sigurni da želite izbrisati\n"
+"akciju \"%s\"?"
 
 #: ../plugins/thunar-uca/thunar-uca-chooser.c:437
 msgid "If you delete a custom action, it is permanently lost."
-msgstr ""
+msgstr "Ako izbrišete prilagođenu akciju, biti će trajno izgubljena."
 
 #. Basic
 #. 
@@ -3203,7 +3205,7 @@ msgstr ""
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:187
 msgid "Browse the file system to select an application to use for this action."
-msgstr ""
+msgstr "Pretaži datotečni sustav za odabir programa koji će se koristiti za 
ovu akciju."
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:203
 msgid "Use Startup Notification"
@@ -3349,7 +3351,7 @@ msgstr "Naredba nije podešena."
 
 #: ../plugins/thunar-uca/thunar-uca-provider.c:177
 msgid "Configure c_ustom actions..."
-msgstr ""
+msgstr "Konfiguriraj p_rilagođene akcije..."
 
 #: ../plugins/thunar-uca/thunar-uca-provider.c:178
 msgid ""
@@ -3363,7 +3365,7 @@ msgstr "Neuspješno pokretanje naredbe \"%s\"."
 
 #: ../plugins/thunar-uca/uca.xml.in.h:1
 msgid "Example for a custom action"
-msgstr ""
+msgstr "Primjer prilagođene akcije"
 
 #: ../plugins/thunar-uca/uca.xml.in.h:2
 msgid "Open Terminal Here"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits