[Xfce4-commits] Start reimplementing gst-logo

2013-08-19 Thread Sean Davis
Updating branch refs/heads/bluesabre/gtk3
 to 5698714a4e4235fa457dcc349487945b8bf93773 (commit)
   from b285c76bcac9b894c871716f8ee2b9144cd2b7b6 (commit)

commit 5698714a4e4235fa457dcc349487945b8bf93773
Author: Sean Davis 
Date:   Mon Aug 19 22:50:52 2013 -0400

Start reimplementing gst-logo

 src/parole-player.c |  127 +++
 1 file changed, 127 insertions(+)

diff --git a/src/parole-player.c b/src/parole-player.c
index 0a5a604..ab6f403 100644
--- a/src/parole-player.c
+++ b/src/parole-player.c
@@ -121,6 +121,9 @@ static gbooleanparole_audiobox_expose_event 
(GtkWidget *w, GdkEventE
 /*
  * GtkBuilder Callbacks
  */
+void on_content_area_size_allocate (GtkWidget *widget, GtkAllocation 
*allocation, ParolePlayer *player);
+
+ 
 gbooleanparole_player_configure_event_cb(GtkWidget *widget, 
 GdkEventConfigure *ev, 
 ParolePlayer *player);
@@ -335,6 +338,8 @@ struct ParolePlayerPrivate
 GtkWidget  *control; /* contains all play button*/
 GtkWidget  *fullscreen_button;
 GtkWidget  *fullscreen_image;
+GdkPixbuf   *logo;
+gbooleanscale_logo;
 
 GtkWidget  *hbox_infobar;
 GtkWidget  *infobar;
@@ -2756,6 +2761,122 @@ parole_audiobox_expose_event (GtkWidget *w, 
GdkEventExpose *ev, ParolePlayer *pl
 return FALSE;
 }
 
+void
+on_content_area_size_allocate (GtkWidget *widget, GtkAllocation *allocation, 
ParolePlayer *player)
+{
+g_print("size allocate\n");
+g_return_if_fail (allocation != NULL);
+
+gtk_widget_set_allocation(widget, allocation);
+
+if ( gtk_widget_get_realized (widget) )
+{  
+   player->priv->scale_logo = TRUE;
+   
+   gtk_widget_queue_draw (widget);
+   }
+}
+
+static void
+parole_draw_logo (ParolePlayer *player)
+{
+static GdkPixbuf *pix = NULL;
+#if GTK_CHECK_VERSION(3, 0, 0)
+cairo_region_t *region;
+GdkRGBA *color;
+cairo_t *cr;
+#else
+GdkRegion *region;
+#endif
+GdkRectangle rect;
+GtkWidget *widget;
+GtkAllocation *allocation = g_new0 (GtkAllocation, 1);
+
+widget = GTK_WIDGET (player->priv->eventbox_output);
+
+if ( !gtk_widget_get_window(widget) )
+   return;
+
+rect.x = 0;
+rect.y = 0;
+
+gtk_widget_get_allocation(widget, allocation);
+rect.width = allocation->width;
+rect.height = allocation->height;
+
+#if GTK_CHECK_VERSION(3, 0, 0)
+region = cairo_region_create_rectangle(&rect);
+#else
+region = gdk_region_rectangle (&rect);
+#endif
+
+gdk_window_begin_paint_region (gtk_widget_get_window(widget),
+  region);
+
+#if GTK_CHECK_VERSION(3, 0, 0)
+cairo_region_destroy (region);
+
+GdkWindow *window;
+cairo_surface_t *target;
+
+window = gtk_widget_get_window (widget);
+
+//target = cairo_get_group_target (cr);
+
+/* Clear to parent-relative pixmap
+* We need to use direct X access here because GDK doesn't know about
+* the parent relative pixmap. */
+//cairo_surface_flush (target);
+
+XClearArea (GDK_WINDOW_XDISPLAY (window),
+GDK_WINDOW_XID (window),
+0, 0,
+allocation->width, allocation->height,
+False);/*
+cairo_surface_mark_dirty_rectangle (target,
+0, 0,
+allocation->width, 
allocation->height);*/
+#else
+gdk_region_destroy (region);
+
+gdk_window_clear_area (gtk_widget_get_window(widget),
+  0, 0,
+  allocation->width,
+  allocation->height);
+#endif
+
+if (player->priv->scale_logo)
+{
+   if (pix)
+   g_object_unref (pix);
+   pix = gdk_pixbuf_scale_simple (player->priv->logo,
+  allocation->width,
+  allocation->height,
+  GDK_INTERP_BILINEAR);
+   player->priv->scale_logo = FALSE;
+}
+
+#if GTK_CHECK_VERSION(3, 0, 0)
+cr = gdk_cairo_create (gtk_widget_get_window(widget));
+gdk_cairo_set_source_pixbuf (cr, pix, 0, 0);
+cairo_paint (cr);
+cairo_destroy (cr);
+#else
+gdk_draw_pixbuf (GDK_DRAWABLE (gtk_widget_get_window(widget)),
+gtk_widget_get_style(widget)->fg_gc[0],
+pix,
+0, 0, 0, 0,
+allocation->width,
+allocation->height,
+GDK_RGB_DITHER_NONE,
+0, 0);
+#endif
+
+gdk_window_end_paint (gtk_widget_get_window(GTK_WIDGET 
(player->priv->eventbox_output)));
+
+g_free(allocation);
+}
+
 gboolean
 parole_player_configure_event_cb (GtkWidget *widget, GdkEventConfigure *ev, 

[Xfce4-commits] I18n: Update translation es (93%).

2013-08-19 Thread Transifex
Updating branch refs/heads/master
 to 5a45f1623a9dac35f0751ebba86aae9f71d743a3 (commit)
   from 655fc7cbe75ad470adc6c29d29ac76de1bbdecb2 (commit)

commit 5a45f1623a9dac35f0751ebba86aae9f71d743a3
Author: MC 
Date:   Mon Aug 19 18:32:33 2013 +0200

I18n: Update translation es (93%).

553 translated messages, 38 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 lib/po/es.po |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/po/es.po b/lib/po/es.po
index 7702aed..5af6ed2 100644
--- a/lib/po/es.po
+++ b/lib/po/es.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Xfce Websites\n"
 "Report-Msgid-Bugs-To: https://bugzilla.xfce.org\n";
 "POT-Creation-Date: 2013-07-03 22:08+0200\n"
-"PO-Revision-Date: 2013-08-16 08:38+\n"
+"PO-Revision-Date: 2013-08-19 16:12+\n"
 "Last-Translator: MC \n"
 "Language-Team: Spanish 
(http://www.transifex.com/projects/p/xfce/language/es/)\n"
 "MIME-Version: 1.0\n"
@@ -3266,7 +3266,7 @@ msgstr "Xfce encarna la filosofía tradicional UNIX de 
modularidad y  reutilizac
 msgid ""
 "Another priority of Xfce is adherence to standards, specifically those "
 "defined at http://freedesktop.org\";>freedesktop.org."
-msgstr ""
+msgstr "Otra prioridad de Xfce es ajustarse a los standares, especificamente a 
 aquellos definidos en http://freedesktop.org\";>freedesktop.org."
 
 #: about/index.php:19
 msgid ""
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] I18n: Update translation pl (97%).

2013-08-19 Thread Transifex
Updating branch refs/heads/master
 to 001ed27e010bdf0056420a9fc7fc8839dd662fe4 (commit)
   from bc63c533cc274f4c71b9bd032299c1b4b7d2db92 (commit)

commit 001ed27e010bdf0056420a9fc7fc8839dd662fe4
Author: Piotr Strębski 
Date:   Mon Aug 19 18:32:05 2013 +0200

I18n: Update translation pl (97%).

40 translated messages, 1 untranslated message.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/pl.po |   96 +++---
 1 file changed, 36 insertions(+), 60 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index c83e69f..5e981de 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,23 +1,24 @@
-# Polish translations for xfce4-timer package.
-# Copyright (C) 2005 Kemal Ilgar Eroglu.
-# This file is distributed under the same license as the xfce4-timer package.
-# Piotr Maliński , 2006.
-# Piotr Sokół , 2009.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Piotr Maliński , 2006
+# Piotr Sokół , 2009
+# Piotr Strębski , 2013
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-timer-plugin 0.6.1\n"
+"Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-10 12:32+0300\n"
-"PO-Revision-Date: 2009-03-24 11:05+0100\n"
-"Last-Translator: Piotr Sokół \n"
-"Language-Team: Polish\n"
-"Language: \n"
+"POT-Creation-Date: 2013-07-13 22:15+0200\n"
+"PO-Revision-Date: 2013-08-19 12:28+\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Polish \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"
 
 #: ../src/xfcetimer.c:141
 #, c-format
@@ -36,32 +37,31 @@ msgstr "Pozostało %d s"
 
 #: ../src/xfcetimer.c:149
 msgid " (Paused)"
-msgstr ""
+msgstr "(Wstrzymany)"
 
 #. Display the name of the alarm when the countdown ends
 #: ../src/xfcetimer.c:170
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "Beeep! :) \n"
 "Time is up for the alarm %s."
-msgstr "Czas upłynął!"
+msgstr "Bip! :) \nNadszedł czas wyznaczony alarmem %s."
 
 #: ../src/xfcetimer.c:462
-#, fuzzy
 msgid "Resume timer"
-msgstr "Uruchom stoper"
+msgstr "Ponów czasomierz"
 
 #: ../src/xfcetimer.c:469 ../src/xfcetimer.c:525
 msgid "Stop timer"
-msgstr "Zatrzymaj stoper"
+msgstr "Zatrzymaj czasomierz"
 
 #: ../src/xfcetimer.c:513
 msgid "Pause timer"
-msgstr "Uruchom stoper"
+msgstr "Wstrzymaj czasomierz"
 
 #: ../src/xfcetimer.c:527
 msgid "Start timer"
-msgstr "Uruchom stoper"
+msgstr "Uruchom czasomierz"
 
 #: ../src/xfcetimer.c:536
 msgid "Stop the alarm"
@@ -88,9 +88,8 @@ msgid "At %02d:%02d"
 msgstr "%02d:%02d"
 
 #: ../src/xfcetimer.c:774
-#, fuzzy
 msgid "Name:"
-msgstr "Nazwa"
+msgstr "Nazwa: "
 
 #. 
 #: ../src/xfcetimer.c:782
@@ -119,11 +118,8 @@ msgstr "lub"
 
 #. **
 #: ../src/xfcetimer.c:830
-#, fuzzy
 msgid "Command to run:"
-msgstr ""
-"\n"
-"Polecenie:"
+msgstr "Polecenie do uruchomienia:"
 
 #: ../src/xfcetimer.c:860
 msgid "Add new alarm"
@@ -135,18 +131,15 @@ msgstr "Edycja alarmu"
 
 #: ../src/xfcetimer.c:1450 ../src/xfcetimer.c:1459
 msgid "Xfce4 Timer Options"
-msgstr "Stoper"
+msgstr "Opcje czasomierza Xfce4"
 
 #: ../src/xfcetimer.c:1461
 msgid "Xfce 4 Timer Plugin"
-msgstr "Stoper"
+msgstr "Wtyczka czasomierza Xfce 4"
 
 #: ../src/xfcetimer.c:1507
-#, fuzzy
 msgid "Timer name"
-msgstr ""
-"Nazwa\n"
-"alarmu"
+msgstr "Nazwa czasomierza"
 
 #: ../src/xfcetimer.c:1512
 msgid ""
@@ -159,11 +152,8 @@ msgid "Alarm command"
 msgstr "Polecenie"
 
 #: ../src/xfcetimer.c:1572
-#, fuzzy
 msgid "Don't display a warning  if an alarm command is set"
-msgstr ""
-"Nie wyświetlaj okna ostrzeżenia\n"
-"jeśli wprowadzono polecenie alarmu"
+msgstr "Nie wyświetlaj ostrzeżenia jeśli polecenie alarmu jest ustawione"
 
 #: ../src/xfcetimer.c:1577
 msgid "Selecting a timer starts it"
@@ -171,20 +161,17 @@ msgstr ""
 
 #. Default alarm command config
 #: ../src/xfcetimer.c:1585
-#, fuzzy
 msgid "Use a default alarm command"
-msgstr "Powtarzanie polecenia alarmu"
+msgstr "Użyj domyślnego polecenia alarmu"
 
 #: ../src/xfcetimer.c:1592
-#, fuzzy
 msgid "Default command: "
-msgstr "Polecenie"
+msgstr "Domyślne polecenie:"
 
 #. Alarm repetitions config
 #: ../src/xfcetimer.c:1604
-#, fuzzy
 msgid "Repeat the alarm command"
-msgstr "Powtarzanie polecenia alarmu"
+msgstr "Powtórz polecenie alarmu"
 
 #: ../src/xfcetimer.c:1611
 msgid "Number of repetitions"
@@ -195,32 +182,21 @@ msgid "  Time interval (sec.)"
 msgstr "  Interwał (s): "
 
 #: ../src/xfcetimer.c:1678
-#, fuzzy
 msgid "About xfce4-timer-plugin"
-msgstr "Stoper"
+msgstr "O xfce4-timer-plugin"
 
 #: ../src/xfcetimer.c:1683
 msgid "A plugin to de

[Xfce4-commits] I18n: Update translation pl (100%).

2013-08-19 Thread Transifex
Updating branch refs/heads/master
 to ac719de52f2fdef36ca8995e50ae925386047ae2 (commit)
   from ec5270da56239e6805f442a857c5686bba064635 (commit)

commit ac719de52f2fdef36ca8995e50ae925386047ae2
Author: Piotr Strębski 
Date:   Mon Aug 19 18:32:38 2013 +0200

I18n: Update translation pl (100%).

191 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/pl.po |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index bd60c0f..5d2179b 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -5,6 +5,7 @@
 # Translators:
 # Piotr Maliński , 2006
 # Piotr Sokół , 2009,2011-2013
+# Piotr Strębski , 2013
 # Robert Kurowski , 2005
 # Szymon Kałasz , 2006
 msgid ""
@@ -12,8 +13,8 @@ msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-08-04 12:32+0200\n"
-"PO-Revision-Date: 2013-08-06 12:14+\n"
-"Last-Translator: Piotr Sokół \n"
+"PO-Revision-Date: 2013-08-19 12:40+\n"
+"Last-Translator: Piotr Strębski \n"
 "Language-Team: Polish \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -81,7 +82,7 @@ msgstr "Tło pulpitu dla %s"
 
 #: ../settings/main.c:982
 msgid "Image selection is unavailable while the image style is set to None."
-msgstr ""
+msgstr "Wybór obrazów jest niedostępny dopóki styl obrazów jest ustawiony na 
Brak."
 
 #: ../settings/main.c:1199
 msgid "Spanning screens"
@@ -192,7 +193,7 @@ msgstr "Powiększenie"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:15
 msgid "Spanning Screens"
-msgstr ""
+msgstr "Rozpiętość ekranów"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:16
 msgid "Color:"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] I18n: Update translation pl (65%).

2013-08-19 Thread Transifex
Updating branch refs/heads/master
 to f5cb23e0dbae01b68304b9024bf6ce68a862da29 (commit)
   from 63d48a8dd0a660741fbb9940be437a9ad7390044 (commit)

commit f5cb23e0dbae01b68304b9024bf6ce68a862da29
Author: Piotr Strębski 
Date:   Mon Aug 19 18:32:28 2013 +0200

I18n: Update translation pl (65%).

23 translated messages, 12 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/pl.po |  164 +-
 1 file changed, 131 insertions(+), 33 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 6a6d0b4..fc39d02 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,82 +1,180 @@
-# Polish translations for xfce4-xmms-plugin package.
-# Copyright (C) 2005 Kemal Ilgar Eroglu.
-# This file is distributed under the same license as the xfce4-xmms-plugin 
package.
-# Piotr Maliński , 2006.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Piotr Maliński , 2006
+# Piotr Strębski , 2013
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-xmms-plugin 0.4.0\n"
+"Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-09-10 21:29+0200\n"
-"PO-Revision-Date: 2006-04-08 13:26+0900\n"
-"Last-Translator: Piotr Maliński \n"
-"Language-Team: Polish \n"
+"POT-Creation-Date: 2013-07-13 22:15+0200\n"
+"PO-Revision-Date: 2013-08-19 12:34+\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Polish \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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"
 
-#: ../panel-plugin/xmms_plugin.c:756
+#: ../panel-plugin/popupmenu.c:85
+msgid "Add files"
+msgstr "Dodaj pliki"
+
+#: ../panel-plugin/popupmenu.c:96
+msgid "Audio files"
+msgstr "Pliki audio"
+
+#: ../panel-plugin/popupmenu.c:97
+msgid "Playlist files"
+msgstr "Pliki listy odtwarzania"
+
+#: ../panel-plugin/popupmenu.c:98
+msgid "All files"
+msgstr "Wszystkie pliki"
+
+#. open files button
+#: ../panel-plugin/popupmenu.c:252
+msgid "_Open files"
+msgstr "_Otwórz pliki"
+
+#. add files button
+#: ../panel-plugin/popupmenu.c:256
+msgid "_Add files"
+msgstr "_Dodaj pliki"
+
+#: ../panel-plugin/popupmenu.c:261
+msgid "_Jump to File"
+msgstr "_Skocz do pliku"
+
+#. clear pl button
+#: ../panel-plugin/popupmenu.c:265
+msgid "_Clear Playlist"
+msgstr "_Wyczyść listę odtwarzania"
+
+#. repeate button
+#: ../panel-plugin/popupmenu.c:269
+msgid "_Repeat"
+msgstr "_Powtórz"
+
+#. shuffle button
+#: ../panel-plugin/popupmenu.c:273
+msgid "_Shuffle"
+msgstr ""
+
+#. main window button
+#: ../panel-plugin/popupmenu.c:281
+msgid "_Main Window"
+msgstr ""
+
+#. playlist button
+#: ../panel-plugin/popupmenu.c:285
+msgid "_Playlist"
+msgstr "_Lista odtwarzania"
+
+#. equalizer button
+#: ../panel-plugin/popupmenu.c:289
+msgid "_Equalizer"
+msgstr ""
+
+#: ../panel-plugin/popupmenu.c:292
+msgid "_View"
+msgstr ""
+
+#. preference button
+#: ../panel-plugin/popupmenu.c:303
+msgid "_Preferences"
+msgstr "_Ustawienia"
+
+#: ../panel-plugin/popupmenu.c:307
+msgid "Power _Off"
+msgstr ""
+
+#: ../panel-plugin/popupmenu.c:310
+msgid "Power _On"
+msgstr ""
+
+#: ../panel-plugin/preferences.c:280
+msgid ""
+"Notice:\n"
+"Do not change this property from XMMS or BeepMediaPlayer to the other one 
when either one of these is running. It will crash because they use same socket 
address. For the same reason, you cannot run the other player when this plugin 
is running."
+msgstr ""
+
+#: ../panel-plugin/preferences.c:315
 msgid "Properties"
 msgstr "Właściwości"
 
-#: ../panel-plugin/xmms_plugin.c:768
+#: ../panel-plugin/preferences.c:327
 msgid "Xfce4 XMMS Plugin Options"
 msgstr "Opcje wtyczki Xfce4 XMMS"
 
+#: ../panel-plugin/preferences.c:340
+msgid "Media Player"
+msgstr ""
+
 #. put labels into the left column of our table
-#: ../panel-plugin/xmms_plugin.c:787
+#: ../panel-plugin/preferences.c:354
 msgid "Font Size"
 msgstr "Rozmiar Czcionki"
 
-#: ../panel-plugin/xmms_plugin.c:788
+#: ../panel-plugin/preferences.c:355
 msgid "Scroll Speed"
 msgstr "Szybkość Przewijania"
 
-#: ../panel-plugin/xmms_plugin.c:789
+#: ../panel-plugin/preferences.c:356
 msgid "Scroll Stepwidth"
 msgstr "Szybkość Przechodzenia"
 
-#: ../panel-plugin/xmms_plugin.c:790
+#: ../panel-plugin/preferences.c:357
 msgid "Scroll Delay"
 msgstr "Opóźnienie Przewijania"
 
 #. add check buttons for the scrolled title, progressbar and volume bar
-#: ../panel-plugin/xmms_plugin.c:802
+#: ../panel-plugin/preferences.c:369
 msgid "Show scrolled song title"
 msgstr "Pokazuj tytuł piosenki"
 
-#: ../panel-plugin/xmms_plugin.c:803
+#: ../panel-plugin/preferences.c:370
 msgid "Show track position"
 msgstr "Pokazuj pozycję ścieżki"
 
-#: ../panel-plugin/xmms_plugin.c:804
+#: ../panel-plugin/preferences.c:3

[Xfce4-commits] I18n: Update translation es (100%).

2013-08-19 Thread Transifex
Updating branch refs/heads/master
 to a3932b2d8d5afcd4a84511fc0017aad121dca800 (commit)
   from bf847ce2735839be4aa5ee2a1b188f66ba32a022 (commit)

commit a3932b2d8d5afcd4a84511fc0017aad121dca800
Author: MC 
Date:   Mon Aug 19 18:31:31 2013 +0200

I18n: Update translation es (100%).

39 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/es.po |   36 ++--
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/po/es.po b/po/es.po
index 00c301e..20877e3 100644
--- a/po/es.po
+++ b/po/es.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-08-18 12:31+0200\n"
-"PO-Revision-Date: 2013-08-19 09:19+\n"
+"PO-Revision-Date: 2013-08-19 16:04+\n"
 "Last-Translator: MC \n"
 "Language-Team: Spanish 
(http://www.transifex.com/projects/p/xfce/language/es/)\n"
 "MIME-Version: 1.0\n"
@@ -25,11 +25,11 @@ msgstr "Seleccione el tipo de letra..."
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:80
 msgid "Select font family and size to use for the labels."
-msgstr ""
+msgstr "Seleccione familia de fuentes y el tamaño que se utilizará para las 
etiquetas."
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:84
 msgid "Right-click to revert to the default font."
-msgstr ""
+msgstr "Hacer click con el botón derecho para revertir al tipo de letra 
predeterminado."
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:102
 msgid "Select font"
@@ -37,11 +37,11 @@ msgstr "Seleccione el tipo de letra"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:188
 msgid "Configure CPU Frequency Monitor"
-msgstr "Configurar monitor de frecuencia de la CPU"
+msgstr "Configurar monitor de frecuencia del procesador"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:190
 msgid "Configure the CPU frequency plugin"
-msgstr "Configurar el complemento de frecuencia de la CPU"
+msgstr "Configurar el complemento de frecuencia de la procesador"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:208
 msgid "Monitor"
@@ -49,7 +49,7 @@ msgstr "Monitor"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:223
 msgid "_Update interval:"
-msgstr ""
+msgstr "Intervalo de act_ualización:"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:241
 msgid "Panel"
@@ -57,11 +57,11 @@ msgstr "Panel"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:257
 msgid "_Font:"
-msgstr ""
+msgstr "_Tipo de Letra:"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:275
 msgid "_Display CPU:"
-msgstr ""
+msgstr "_Mostrar procesador"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:290
 msgid "min"
@@ -78,23 +78,23 @@ msgstr "max"
 #. check buttons for display widgets in panel
 #: ../panel-plugin/xfce4-cpufreq-configure.c:298
 msgid "_Keep compact"
-msgstr ""
+msgstr "_Mantener reducido"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:303
 msgid "Show text in a single _line"
-msgstr ""
+msgstr "Mostrar texto en una sola _línea"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:308
 msgid "Show CPU _icon"
-msgstr ""
+msgstr "Mostrar _icono del procesador"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:313
 msgid "Show CPU fre_quency"
-msgstr ""
+msgstr "Mostrar _frecuencia del procesador"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:318
 msgid "Show CPU _governor"
-msgstr ""
+msgstr "Mostrar _perfil del procesador"
 
 #: ../panel-plugin/xfce4-cpufreq-linux.c:465
 msgid ""
@@ -125,11 +125,11 @@ msgstr "Perfil de CPU actual:"
 
 #: ../panel-plugin/xfce4-cpufreq-overview.c:232
 msgid "CPU Information"
-msgstr "Información de la CPU"
+msgstr "Información del procesador"
 
 #: ../panel-plugin/xfce4-cpufreq-overview.c:239
 msgid "An overview of all the CPUs in the system"
-msgstr "Un resumen de todas las CPUs en el sistema"
+msgstr "Un resumen de todas los procesadores en el sistema"
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:60
 msgid "current min"
@@ -152,7 +152,7 @@ msgstr "No hay información del procesador disponible."
 msgid "%d cpu available"
 msgid_plural "%d cpus available"
 msgstr[0] "%d de CPU disponible"
-msgstr[1] "%d de CPUs disponible"
+msgstr[1] "%d procesadores disponible"
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:176
 msgid "Frequency: "
@@ -165,7 +165,7 @@ msgstr "Gobernador:"
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:559
 #: ../panel-plugin/cpufreq.desktop.in.h:2
 msgid "Show CPU frequencies and governor"
-msgstr ""
+msgstr "Mostrar frecuencias y perfil del procesador"
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:561
 msgid "Copyright (c) 2003-2012\n"
@@ -182,4 +182,4 @@ msgstr "¡Su sistema aún no es soportado!"
 
 #: ../panel-plugin/cpufreq.desktop.in.h:1
 msgid "CPU Frequency Monitor"
-msgstr "Monitor de frecuencia de CPU"
+msgstr "Monitor de frecuencia del procesador"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] I18n: Update translation pl (74%).

2013-08-19 Thread Transifex
Updating branch refs/heads/master
 to a2d90a747de11c34f4601d3f1862fd925f19669a (commit)
   from e0f5d31abbec2adf2b64faf043be48be3c165558 (commit)

commit a2d90a747de11c34f4601d3f1862fd925f19669a
Author: Piotr Strębski 
Date:   Mon Aug 19 18:31:42 2013 +0200

I18n: Update translation pl (74%).

23 translated messages, 8 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/pl.po |  163 ++
 1 file changed, 143 insertions(+), 20 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index d98b5d2..1074b68 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,31 +1,154 @@
-# Polish translation for xfce4-indicator-plugin.
-# Copyright (C) 2011 xfce4-indicator-plugin COPYRIGHT HOLDER
-# This file is distributed under the same license as the 
xfce4-indicator-plugin package.
-# Piotr Sokół , 2011.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Cyryl Sochacki , 2013
+# Piotr Sokół , 2011
+# Piotr Strębski , 2013
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-indicator-plugin\n"
+"Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-22 06:01+\n"
-"PO-Revision-Date: 2011-03-22 12:42+0100\n"
-"Last-Translator: Piotr Sokół \n"
-"Language-Team: Polish <>\n"
+"POT-Creation-Date: 2013-07-03 21:02+0200\n"
+"PO-Revision-Date: 2013-08-19 12:15+\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Polish \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"
-"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"
 
-#: ../panel-plugin/indicator.c:208
+#: ../panel-plugin/indicator.desktop.in.in.h:1
+msgid "Indicator Plugin"
+msgstr "Aplet powiadamiania"
+
+#: ../panel-plugin/indicator.desktop.in.in.h:2 ../panel-plugin/indicator.c:157
+msgid "An indicator of something that needs your attention on the desktop"
+msgstr "Przechowuje powiadomienia o zdarzeniach środowiska wartych zwrócenia 
uwagi"
+
+#: ../panel-plugin/indicator.c:159
+msgid "Copyright (c) 2009-2013\n"
+msgstr "Prawa autorskie (c) 2009-2013\n"
+
+#: ../panel-plugin/indicator.c:288
 msgid "No Indicators"
 msgstr "Brak powiadomień"
 
-#: ../panel-plugin/indicator.desktop.in.in.h:1
-msgid "An indicator of something that needs your attention on the desktop"
+#. raw name,  pretty name,
+#. icon-name(?)
+#: ../panel-plugin/indicator-dialog.c:57
+msgid "Application Indicators"
+msgstr "Powiadomienia programów"
+
+#: ../panel-plugin/indicator-dialog.c:58
+msgid "Sound Menu"
+msgstr "Menu dźwięku"
+
+#: ../panel-plugin/indicator-dialog.c:59
+msgid "Printers Menu"
+msgstr "Menu drukarek"
+
+#: ../panel-plugin/indicator-dialog.c:60
+msgid "Power Management"
+msgstr "Zarządzanie zasilaniem"
+
+#: ../panel-plugin/indicator-dialog.c:61
+msgid "Application Menus (Global Menu)"
+msgstr "Aplikacje Menu (Globalne Menu)"
+
+#: ../panel-plugin/indicator-dialog.c:62
+msgid "Session Management"
+msgstr "Zarządzanie sesją"
+
+#: ../panel-plugin/indicator-dialog.c:63
+msgid "Messaging Menu"
+msgstr "Menu wiadomości tekstowych"
+
+#: ../panel-plugin/indicator-dialog.c:64
+msgid "Date and Time"
+msgstr "Data i czas"
+
+#: ../panel-plugin/indicator-dialog.c:436
+msgid "Are you sure you want to clear the list of known indicators?"
+msgstr "Czy na pewno wyczyścić listę znanych powiadomień?"
+
+#: ../panel-plugin/indicator-dialog.c:581
+#, c-format
+msgid "Unable to open the following url: %s"
+msgstr "Nie udało się otworzyć następującego adresu url: %s"
+
+#: ../panel-plugin/indicator-dialog.glade.h:1
+msgid "Indicators"
+msgstr "Powiadomienia"
+
+#: ../panel-plugin/indicator-dialog.glade.h:2
+msgid "_Maximum row size (px):"
 msgstr ""
-"Przechowuje powiadomienia o zdarzeniach środowiska wartych zwrócenia uwagi"
 
-#: ../panel-plugin/indicator.desktop.in.in.h:2
-msgid "Indicator Plugin"
-msgstr "Aplet powiadamiania"
+#: ../panel-plugin/indicator-dialog.glade.h:3
+msgid ""
+"Icons are scaled to fit a single row of the panel. Use this option to "
+"restrict the maximum size of the row."
+msgstr ""
+
+#: ../panel-plugin/indicator-dialog.glade.h:4
+msgid "Align left in deskbar mode"
+msgstr ""
+
+#: ../panel-plugin/indicator-dialog.glade.h:5
+msgid ""
+"Controls the indicator button layout when the panel is in a Deskbar mode. "
+"Possible choices are \"centered\" or \"aligned left\"."
+msgstr ""
+
+#: ../panel-plugin/indicator-dialog.glade.h:6
+msgid "Appearance"
+msgstr "Wygląd"
+
+#: ../panel-plugin/indicator-dialog.glade.h:7
+msgid "Hide indicators by default"
+msgstr "Domyślnie ukrywaj powiadomienia"
+
+#:

[Xfce4-commits] I18n: Update translation pl (100%).

2013-08-19 Thread Transifex
Updating branch refs/heads/master
 to 3819dfff69b08ddd73d4701688fa596afd65fe42 (commit)
   from ea2c7b61978cc3ab0f04d38217d02e996f2c9e5f (commit)

commit 3819dfff69b08ddd73d4701688fa596afd65fe42
Author: Piotr Strębski 
Date:   Mon Aug 19 18:30:49 2013 +0200

I18n: Update translation pl (100%).

213 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/pl.po |  296 ++
 1 file changed, 125 insertions(+), 171 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 8fb022a..993057a 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,128 +1,126 @@
-# Polish translation for xfce4-power-manager.
-# Copyright (C) 2011 xfce4-power-manager COPYRIGHT HOLDER
-# This file is distributed under the same license as the xfce4-power-manager 
package.
-# Piotr Sokół , 2011, 2012.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Piotr Sokół , 2011-2012
+# Piotr Strębski , 2013
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce-power-manager 1.0.10\n"
+"Project-Id-Version: Xfce4-power-manager\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-11-27 11:36+\n"
-"PO-Revision-Date: 2012-11-27 18:15+0100\n"
-"Last-Translator: Piotr Sokół \n"
-"Language-Team: polski <>\n"
-"Language: pl\n"
+"POT-Creation-Date: 2013-08-12 00:30+0200\n"
+"PO-Revision-Date: 2013-08-19 12:38+\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Polish \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"
-"X-Generator: Gtranslator 2.91.5\n"
+"Content-Transfer-Encoding: 8bit\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"
 
-#: ../data/interfaces/xfpm-settings.ui.h:1
-msgid "Actions"
-msgstr "Czynności"
+#: ../data/interfaces/xfpm-settings.ui.h:1 ../settings/xfpm-settings.c:809
+#: ../settings/xfpm-settings.c:877 ../settings/xfpm-settings.c:1026
+#: ../settings/xfpm-settings.c:1203 ../settings/xfpm-settings.c:1260
+#: ../settings/xfpm-settings.c:1312
+msgid "Nothing"
+msgstr "Brak"
 
 #: ../data/interfaces/xfpm-settings.ui.h:2
-msgid "Advanced Options"
-msgstr "Zaawansowane"
+#: ../settings/xfpm-settings-main.c:121 ../src/xfpm-main.c:415
+msgid "Xfce Power Manager"
+msgstr "Zasilanie"
 
 #: ../data/interfaces/xfpm-settings.ui.h:3
-msgid "Brightness"
-msgstr "Jasność"
+msgid "Power manager settings"
+msgstr "Konfiguruje ustawienia zasilania"
 
 #: ../data/interfaces/xfpm-settings.ui.h:4
-msgid "General Options"
-msgstr "Ogólne"
+msgid "When sleep button is pressed:"
+msgstr "Działanie przycisku uśpienia:"
 
 #: ../data/interfaces/xfpm-settings.ui.h:5
-msgid "Monitor"
-msgstr "Ekran"
+msgid "When hibernate button is pressed:"
+msgstr "Działanie przycisku hibernacji:"
 
 #: ../data/interfaces/xfpm-settings.ui.h:6
-msgid "Actions"
-msgstr "Czynności"
+msgid "When power button is pressed:"
+msgstr "Działanie przycisku zasilania:"
 
 #: ../data/interfaces/xfpm-settings.ui.h:7
-msgid "Consider the computer on low power at:"
-msgstr "Niski poziom naładowania akumulatora:"
+msgid "System tray icon: "
+msgstr "Wyświetlanie ikony obszaru powiadamiania:"
 
-#. Hibernate menu option
-#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:820
-#: ../settings/xfpm-settings.c:888 ../settings/xfpm-settings.c:1037
-#: ../settings/xfpm-settings.c:1214 ../settings/xfpm-settings.c:1271
-#: ../settings/xfpm-settings.c:1323 ../src/xfpm-power.c:484
-#: ../src/xfpm-power.c:779
-msgid "Hibernate"
-msgstr "Zahibernowanie"
+#: ../data/interfaces/xfpm-settings.ui.h:8
+msgid "Monitor power management control"
+msgstr "Zarządzanie zasilaniem ekranu"
 
 #: ../data/interfaces/xfpm-settings.ui.h:9
-msgid "Level:"
-msgstr "Poziom:"
+msgid "Show notifications to notify about the battery state"
+msgstr "Wyświetlanie powiadomień o stanie akumulatora"
 
 #: ../data/interfaces/xfpm-settings.ui.h:10
-msgid "Lock screen when going for suspend/hibernate"
-msgstr ""
-"Blokowanie ekranu po wstrzymaniu lub zahibernowaniu działania komputera"
+msgid "General Options"
+msgstr "Ogólne"
 
-#: ../data/interfaces/xfpm-settings.ui.h:11 ../src/xfpm-power-common.c:132
-msgid "Monitor"
-msgstr "Ekran"
+#: ../data/interfaces/xfpm-settings.ui.h:11
+msgid "When laptop lid is closed:"
+msgstr "Działanie zamknięcia pokrywy laptopa:"
 
 #: ../data/interfaces/xfpm-settings.ui.h:12
-msgid "Monitor power management control"
-msgstr "Zarządzanie zasilaniem ekranu"
+msgid "Put the computer to sleep when inactive for:"
+msgstr "Czas bezczynności wymagany do wstrzymania działania komputera:"
 
-#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:809
-#: ../settings/xfpm-settings.c:877 ..

[Xfce4-commits] I18n: Update translation pl (100%).

2013-08-19 Thread Transifex
Updating branch refs/heads/master
 to 5e10757226a5b03c048f485cf10c47f38e43def6 (commit)
   from 72999a207e25d4072d5d60f41b2f8e1302c20de9 (commit)

commit 5e10757226a5b03c048f485cf10c47f38e43def6
Author: Piotr Strębski 
Date:   Mon Aug 19 18:30:52 2013 +0200

I18n: Update translation pl (100%).

208 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/pl.po |  584 +++---
 1 file changed, 136 insertions(+), 448 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 1166700..476398a 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,35 +1,35 @@
-# Polish translations for xfce4-session package.
-# Copyright (C) 2003-2006 The Xfce development team.
-# This file is distributed under the same license as the xfce4-session package.
-# Paweł Pastuła , 2003.
-# Wit Wiliński , 2005.
-# Piotr Maliński , 2005, 2006.
-# Szymon Kałasz , 2006.
-# Piotr Sokół , 2009, 2011, 2012.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Paweł Pastuła , 2003
+# Piotr Maliński , 2005-2006
+# Piotr Sokół , 2009,2011-2012
+# Piotr Strębski , 2013
+# Szymon Kałasz , 2006
+# Wit Wiliński , 2005
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-session 4.4.0\n"
+"Project-Id-Version: Xfce4-session\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-11-27 06:39+\n"
-"PO-Revision-Date: 2012-11-27 13:09+0100\n"
-"Last-Translator: Piotr Sokół \n"
-"Language-Team: polski <>\n"
-"Language: pl\n"
+"POT-Creation-Date: 2013-07-02 22:44+0200\n"
+"PO-Revision-Date: 2013-08-19 12:04+\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Polish \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"
-"X-Generator: Gtranslator 2.91.5\n"
+"Content-Transfer-Encoding: 8bit\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"
 
 #: ../xfce.desktop.in.h:1
-msgid "Use this session to run Xfce as your desktop environment"
-msgstr "Uruchamia sesję środowiska graficznego Xfce"
+msgid "Xfce Session"
+msgstr "Sesja Xfce"
 
 #: ../xfce.desktop.in.h:2
-msgid "Xfce Session"
-msgstr "Xfce"
+msgid "Use this session to run Xfce as your desktop environment"
+msgstr "Uruchamia sesję środowiska graficznego Xfce"
 
 #: ../engines/balou/balou-theme.c:110
 msgid "No description given"
@@ -146,13 +146,13 @@ msgid "Simple Splash Engine"
 msgstr "Prosty ekran powitalny"
 
 #: ../scripts/xscreensaver.desktop.in.h:1
-msgid "Launch screensaver and locker program"
-msgstr "Uruchamianie wygaszacza ekranu i programu blokującego ekran"
-
-#: ../scripts/xscreensaver.desktop.in.h:2
 msgid "Screensaver"
 msgstr "Wygaszacz ekranu"
 
+#: ../scripts/xscreensaver.desktop.in.h:2
+msgid "Launch screensaver and locker program"
+msgstr "Uruchamianie wygaszacza ekranu i programu blokującego ekran"
+
 #: ../settings/main.c:43
 msgid "Settings manager socket"
 msgstr "Określa gniazdo menedżera ustawień"
@@ -187,8 +187,7 @@ msgstr "Nie można połączyć z serwerem ustawień"
 
 #: ../settings/main.c:116
 msgid "Unable to create user interface from embedded definition data"
-msgstr ""
-"Nie można utworzyć interfejsu użytkownika przy użyciu dołączonych danych"
+msgstr "Nie można utworzyć interfejsu użytkownika przy użyciu dołączonych 
danych"
 
 #: ../settings/main.c:128
 msgid "App_lication Autostart"
@@ -230,9 +229,7 @@ msgstr "Wyczyścić pamięć podręczną sesji?"
 msgid ""
 "The saved states of your applications will not be restored during your next "
 "login."
-msgstr ""
-"Zapisane stany programów nie zostaną przywrócone podczas następnego "
-"logowania."
+msgstr "Zapisane stany programów nie zostaną przywrócone podczas następnego 
logowania."
 
 #: ../settings/session-editor.c:174
 msgid "_Proceed"
@@ -241,8 +238,7 @@ msgstr "_Kontynuuj"
 #: ../settings/session-editor.c:212
 #, c-format
 msgid "You might need to delete some files manually in \"%s\"."
-msgstr ""
-"Możliwe, że niektóre pliki będzie trzeba usunąć ręcznie z położenia „%s”."
+msgstr "Możliwe, że niektóre pliki będzie trzeba usunąć ręcznie z położenia 
„%s”."
 
 #: ../settings/session-editor.c:215
 msgid "All Xfce cache files could not be cleared"
@@ -261,12 +257,10 @@ msgstr "Kończenie programu"
 msgid ""
 "The application will lose any unsaved state and will not be restarted in "
 "your next session."
-msgstr ""
-"Program utraci niezapisany stan i nie zostanie uruchomiony podczas następnej "
-"sesji."
+msgstr "Program utraci niezapisany stan i nie zostanie uruchomiony podczas 
następnej sesji."
 
 #: ../settings/session-editor.c:256
-#: ../settings/xfce4-session-settings.glade.h:41
+#: ../settings/xfce4-session-settings.glade.h:30
 msgid "_Quit Progra

[Xfce4-commits] I18n: Update translation pl (71%).

2013-08-19 Thread Transifex
Updating branch refs/heads/master
 to 487819f36cc6a00120988ba3276b949d1013c100 (commit)
   from a3932b2d8d5afcd4a84511fc0017aad121dca800 (commit)

commit 487819f36cc6a00120988ba3276b949d1013c100
Author: Piotr Strębski 
Date:   Mon Aug 19 18:31:31 2013 +0200

I18n: Update translation pl (71%).

28 translated messages, 11 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/pl.po |   89 --
 1 file changed, 34 insertions(+), 55 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 0e84291..b9848a9 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,25 +1,28 @@
-# Polish translations for xfce4-cpufreq-plugin package.
-# Piotr Maliński , 2006.
-# Piotr Sokół , 2012.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Piotr Maliński , 2006
+# Piotr Sokół , 2012
+# Piotr Strębski , 2013
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-cpufreq-plugin\n"
+"Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-08-18 09:44+0200\n"
-"PO-Revision-Date: 2012-04-29 13:56+0200\n"
-"Last-Translator: Piotr Sokół \n"
-"Language-Team: polski <>\n"
-"Language: pl\n"
+"POT-Creation-Date: 2013-08-18 12:31+0200\n"
+"PO-Revision-Date: 2013-08-19 12:31+\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Polish \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"
+"Content-Transfer-Encoding: 8bit\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"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:78
 msgid "Select font..."
-msgstr ""
+msgstr "Wybór czcionki..."
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:80
 msgid "Select font family and size to use for the labels."
@@ -31,7 +34,7 @@ msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:102
 msgid "Select font"
-msgstr ""
+msgstr "Wybór czcionki"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:188
 msgid "Configure CPU Frequency Monitor"
@@ -55,24 +58,23 @@ msgstr "Panel"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:257
 msgid "_Font:"
-msgstr ""
+msgstr "_Czcionka:"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:275
-#, fuzzy
 msgid "_Display CPU:"
-msgstr "Wyświetlany CPU:"
+msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:290
 msgid "min"
-msgstr ""
+msgstr "min."
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:291
 msgid "avg"
-msgstr ""
+msgstr "śr."
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:292
 msgid "max"
-msgstr ""
+msgstr "maks."
 
 #. check buttons for display widgets in panel
 #: ../panel-plugin/xfce4-cpufreq-configure.c:298
@@ -84,27 +86,22 @@ msgid "Show text in a single _line"
 msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:308
-#, fuzzy
 msgid "Show CPU _icon"
-msgstr "Wyświetlanie ikony CPU"
+msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:313
-#, fuzzy
 msgid "Show CPU fre_quency"
-msgstr "Wyświetlanie częstotliwości CPU"
+msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:318
-#, fuzzy
 msgid "Show CPU _governor"
-msgstr "Wyświetlanie zarządcy CPU"
+msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-linux.c:465
 msgid ""
 "Your system does not support cpufreq.\n"
 "The applet only shows the current cpu frequency"
-msgstr ""
-"System nie obsługuje cpufreg.\n"
-"Aplet będzie wyświetlał tylko bieżącą częstotliwość CPU."
+msgstr "System nie obsługuje cpufreg.\nAplet będzie wyświetlał tylko bieżącą 
częstotliwość CPU."
 
 #: ../panel-plugin/xfce4-cpufreq-overview.c:73
 msgid "Scaling driver:"
@@ -137,20 +134,19 @@ msgstr "Przegląd wszystkich CPU systemu"
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:60
 msgid "current min"
-msgstr ""
+msgstr "obecna min."
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:79
 msgid "current avg"
-msgstr ""
+msgstr "obecna śr."
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:97
 msgid "current max"
-msgstr ""
+msgstr "obecna maks."
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:169
-#, fuzzy
 msgid "No CPU information available."
-msgstr "Informacje CPU"
+msgstr "Brak dostępnych informacji o CPU."
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:173
 #, c-format
@@ -170,39 +166,22 @@ msgstr "Zarządca:"
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:559
 #: ../panel-plugin/cpufreq.desktop.in.h:2
-#, fuzzy
 msgid "Show CPU frequencies and governor"
-msgstr "Wyświetla częstotliwość i zarządców CPU"
+msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:561
 msgid "Copyright (c) 2003-2012\n"
-msgstr ""
+msgstr "Prawa autorskie (c) 2003-2012\n"
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:584
-#, fuzzy
 msgid ""
 "Your system is not configured correctly to support CPU frequenc

[Xfce4-commits] I18n: Update translation pl (84%).

2013-08-19 Thread Transifex
Updating branch refs/heads/master
 to 80d2b10a22063f1b8c70627e1428e740c23cb49b (commit)
   from 929777b84c81040947434f593fb36ee642ec3811 (commit)

commit 80d2b10a22063f1b8c70627e1428e740c23cb49b
Author: Piotr Strębski 
Date:   Mon Aug 19 18:31:11 2013 +0200

I18n: Update translation pl (84%).

247 translated messages, 44 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/pl.po |  316 --
 1 file changed, 79 insertions(+), 237 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 758975d..e206f56 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,27 +1,29 @@
-# Polish translations for Xfburn.
-# Copyright (C) 2005-2006 Jean-François Wauthy
-# This file is distributed under the same license as the Xfburn package.
-# Szymon Kałasz , 2006.
-# Piotr Sokół , 2009.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# elder , 2013
+# Piotr Sokół , 2009
+# Piotr Strębski , 2013
+# Szymon Kałasz , 2006
 msgid ""
 msgstr ""
-"Project-Id-Version: xfburn 0.4.0\n"
+"Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-19 09:46+0100\n"
-"PO-Revision-Date: 2009-03-07 23:51+0100\n"
-"Last-Translator: Piotr Sokół \n"
-"Language-Team: Polish\n"
-"Language: \n"
+"POT-Creation-Date: 2013-07-03 20:34+0200\n"
+"PO-Revision-Date: 2013-08-19 11:51+\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Polish \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"
 
 #: ../xfburn/xfburn-global.h:28
 msgid "Capacity:"
-msgstr ""
+msgstr "Pojemność:"
 
 #: ../xfburn/xfburn-global.h:29
 msgid "addr:"
@@ -29,10 +31,9 @@ msgstr ""
 
 #: ../xfburn/xfburn-global.h:30
 msgid "Time total:"
-msgstr ""
+msgstr "Całkowity czas:"
 
 #: ../xfburn/xfburn-global.h:32
-#, fuzzy
 msgid "length"
 msgstr "Czas trwania"
 
@@ -41,17 +42,16 @@ msgid "Flushing cache..."
 msgstr "Opróżnianie bufora..."
 
 #: ../xfburn/xfburn-global.h:34
-#, fuzzy
 msgid "Please insert a recordable disc and hit enter"
-msgstr "Proszę umieścić w napędzie płytę nadającą się do nagrania."
+msgstr "Proszę umieścić w napędzie płytę nadającą się do nagrania i wcisnąć 
ENTER"
 
 #: ../xfburn/xfburn-global.h:35
 msgid "Cannot determine disc status - hit enter to try again."
-msgstr ""
+msgstr "Nie można ustalić stanu płyty - naciśnij enter, by spróbować ponownie."
 
 #: ../xfburn/xfburn-global.h:36
 msgid "CD copying finished successfully."
-msgstr ""
+msgstr "Pomyślnie skopiowano płytę CD."
 
 #: ../xfburn/xfburn-global.h:42
 msgid "Data composition"
@@ -78,9 +78,8 @@ msgid "Full Format"
 msgstr "Pełne formatowanie"
 
 #: ../xfburn/xfburn-blank-dialog.c:75
-#, fuzzy
 msgid "Quick Deformat"
-msgstr "Szybkie formatowanie"
+msgstr ""
 
 #: ../xfburn/xfburn-blank-dialog.c:76
 msgid "Full Deformat (slow)"
@@ -88,7 +87,7 @@ msgstr "Pełne formatowanie"
 
 #: ../xfburn/xfburn-blank-dialog.c:149
 msgid "Eject the disc"
-msgstr "_Wysunięcie płyty"
+msgstr "Wysuń płytę"
 
 #: ../xfburn/xfburn-blank-dialog.c:150
 msgid "Default value for eject checkbox"
@@ -133,7 +132,8 @@ msgstr "_Wysunięcie płyty po zakończeniu"
 msgid "_Blank"
 msgstr "Wy_czyść"
 
-#. blanking can only be performed on blank discs, format and deformat are 
allowed to be blank ones
+#. blanking can only be performed on blank discs, format and deformat are
+#. allowed to be blank ones
 #: ../xfburn/xfburn-blank-dialog.c:356
 msgid "The inserted disc is already blank."
 msgstr "Płyta jest już wyczyszczona."
@@ -163,7 +163,7 @@ msgid "Done"
 msgstr "Wykonano"
 
 #: ../xfburn/xfburn-blank-dialog.c:444 ../xfburn/xfburn-perform-burn.c:372
-#: ../xfburn/xfburn-progress-dialog.c:637
+#: ../xfburn/xfburn-progress-dialog.c:649
 msgid "Failure"
 msgstr "Niepowodzenie"
 
@@ -242,9 +242,8 @@ msgstr "Wystąpił błąd podczas zapisywania obrazu ISO: %s"
 
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:548
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:554
-#, fuzzy
 msgid "An error occurred in the burn backend."
-msgstr "Wystąpił błąd w obsłudze nagrywania."
+msgstr ""
 
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:571
 #: ../xfburn/xfburn-burn-audio-cd-composition-dialog.c:328
@@ -275,7 +274,7 @@ msgid "ISO images"
 msgstr "Pliki obrazów ISO"
 
 #: ../xfburn/xfburn-burn-image-dialog.c:226
-msgid "_Quit after successful completion"
+msgid "_Quit after success"
 msgstr ""
 
 #: ../xfburn/xfburn-burn-image-dialog.c:236
@@ -288,9 +287,8 @@ msgstr "Tryb nagrywania nie jest zrealizowany."
 
 #: ../xfburn/xfburn-burn-image-dialog.c:336
 #: ../xf

[Xfce4-commits] I18n: Update translation pl (96%).

2013-08-19 Thread Transifex
Updating branch refs/heads/master
 to 0d55249990a86f4816b97ecea949c9364c1bd89a (commit)
   from 58e57db88660e262b69a4b84d26a1298d367e9d7 (commit)

commit 0d55249990a86f4816b97ecea949c9364c1bd89a
Author: Piotr Strębski 
Date:   Mon Aug 19 18:31:22 2013 +0200

I18n: Update translation pl (96%).

54 translated messages, 2 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/pl.po |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 4ede022..da20eeb 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -4,13 +4,14 @@
 # 
 # Translators:
 # Piotr Sokół , 2013
+# Piotr Strębski , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2007-05-27 20:15-0700\n"
-"PO-Revision-Date: 2013-08-05 11:00+\n"
-"Last-Translator: Piotr Sokół \n"
+"PO-Revision-Date: 2013-08-19 11:54+\n"
+"Last-Translator: Piotr Strębski \n"
 "Language-Team: Polish \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -63,7 +64,7 @@ msgstr "Xfce Volstatus"
 
 #: xfce4-volstatus-icon/main.c:216
 msgid "Unable to connect to D-Bus system bus daemon"
-msgstr ""
+msgstr "Nie można połączyć z demonem szyny danych systemu D-Bus"
 
 #: xfce4-volstatus-icon/main.c:227
 msgid "Unable to connect to HAL"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] I18n: Update translation pl (100%).

2013-08-19 Thread Transifex
Updating branch refs/heads/master
 to 72b77b99d954c7f3943ff4b7b2a0a656e1c520f9 (commit)
   from acd13554bd8f74609d3024ebd15335b17efeb319 (commit)

commit 72b77b99d954c7f3943ff4b7b2a0a656e1c520f9
Author: Piotr Strębski 
Date:   Mon Aug 19 18:31:17 2013 +0200

I18n: Update translation pl (100%).

74 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/pl.po |  234 +-
 1 file changed, 77 insertions(+), 157 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index d9ccc2f..2496594 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,165 +1,160 @@
+# SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
-# Ireneusz Gierlach , 2011.
-# Piotr Sokół , 2009, 2011.
-#
+# 
+# Translators:
+# Iro , 2011
+# Piotr Sokół , 2009,2011
+# Piotr Strębski , 2013
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-screenshooter 1.5.0\n"
+"Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-07-31 23:29+0200\n"
-"PO-Revision-Date: 2011-03-24 12:40+0100\n"
-"Last-Translator: Piotr Sokół \n"
-"Language-Team: Polish <>\n"
-"Language: pl\n"
+"POT-Creation-Date: 2013-07-13 22:14+0200\n"
+"PO-Revision-Date: 2013-08-19 11:38+\n"
+"Last-Translator: Piotr Strębski \n"
+"Language-Team: Polish \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: Lokalize 1.1\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"
 
 #: ../lib/screenshooter-dialogs.c:453
 #, c-format
 msgid "%.2fKb of %.2fKb"
 msgstr "%.2fKb z %.2fKb"
 
-#: ../lib/screenshooter-dialogs.c:535
+#: ../lib/screenshooter-dialogs.c:539
 msgid "Transfer"
 msgstr "Wysyłanie"
 
-#: ../lib/screenshooter-dialogs.c:556
+#: ../lib/screenshooter-dialogs.c:560
 msgid ""
 "The screenshot is being "
 "transferred to:"
-msgstr ""
-"Wysyłanie obrazu do:"
+msgstr "Wysyłanie obrazu 
do:"
 
-#: ../lib/screenshooter-dialogs.c:672 ../lib/screenshooter-dialogs.c:689
-#: ../lib/screenshooter-dialogs.c:881 ../lib/screenshooter-utils.c:64
+#: ../lib/screenshooter-dialogs.c:682 ../lib/screenshooter-dialogs.c:699
+#: ../lib/screenshooter-dialogs.c:891 ../lib/screenshooter-utils.c:64
 #: ../lib/screenshooter-utils.c:96
 #: ../src/xfce4-screenshooter.desktop.in.in.h:1
-#: ../panel-plugin/screenshooter.desktop.in.in.h:1
+#: ../panel-plugin/screenshooter.desktop.in.h:1
 msgid "Screenshot"
 msgstr "Przechwycenie obrazu ekranu"
 
-#: ../lib/screenshooter-dialogs.c:684
+#: ../lib/screenshooter-dialogs.c:694
 msgid "Take a screenshot"
 msgstr "Przechwytuje obraz określonego obszaru ekranu"
 
-#: ../lib/screenshooter-dialogs.c:699
+#: ../lib/screenshooter-dialogs.c:709
 msgid "Preferences"
 msgstr "Konfiguruje ustawienia apletu"
 
-#: ../lib/screenshooter-dialogs.c:730
+#: ../lib/screenshooter-dialogs.c:740
 msgid "Region to capture"
 msgstr "Obszar"
 
-#: ../lib/screenshooter-dialogs.c:750
+#: ../lib/screenshooter-dialogs.c:760
 msgid "Entire screen"
 msgstr "Cały ekran"
 
-#: ../lib/screenshooter-dialogs.c:757 ../src/main.c:53
-#: ../panel-plugin/screenshooter-plugin.c:311
+#: ../lib/screenshooter-dialogs.c:767 ../src/main.c:59
+#: ../panel-plugin/screenshooter-plugin.c:317
 msgid "Take a screenshot of the entire screen"
 msgstr "Przechwytuje obraz całego ekranu"
 
-#: ../lib/screenshooter-dialogs.c:765
+#: ../lib/screenshooter-dialogs.c:775
 msgid "Active window"
 msgstr "Bieżące okno"
 
-#: ../lib/screenshooter-dialogs.c:772 ../src/main.c:90
-#: ../panel-plugin/screenshooter-plugin.c:316
+#: ../lib/screenshooter-dialogs.c:782 ../src/main.c:96
+#: ../panel-plugin/screenshooter-plugin.c:322
 msgid "Take a screenshot of the active window"
 msgstr "Przechwytuje obraz bieżącego okna"
 
-#: ../lib/screenshooter-dialogs.c:780
+#: ../lib/screenshooter-dialogs.c:790
 msgid "Select a region"
 msgstr "Wybrany"
 
-#: ../lib/screenshooter-dialogs.c:785 ../src/main.c:68
-#: ../panel-plugin/screenshooter-plugin.c:321
+#: ../lib/screenshooter-dialogs.c:795 ../src/main.c:74
+#: ../panel-plugin/screenshooter-plugin.c:327
 msgid ""
 "Select a region to be captured by clicking a point of the screen without "
 "releasing the mouse button, dragging your mouse to the other corner of the "
 "region, and releasing the mouse button."
 msgstr "Przechwytuje obraz zaznaczonego obszaru ekranu"
 
-#: ../lib/screenshooter-dialogs.c:795
+#: ../lib/screenshooter-dialogs.c:805
 msgid "Capture the mouse pointer"
 msgstr "Uwzględnianie kursora myszy"
 
-#: ../lib/screenshooter-dialogs.c:800
+#: ../lib/screenshooter-dialogs.c:810
 msgid "Display the mouse pointer on the screenshot"
 msgstr "Wyświetla kursor 

[Xfce4-commits] Fix reading number of CPUs when cpufreq is available.

2013-08-19 Thread Harald Judt
Updating branch refs/heads/master
 to e12661067a0e9d667573609926b0ecca92158931 (commit)
   from 28e29670f4a9db924959503e7b36c2b67a42631b (commit)

commit e12661067a0e9d667573609926b0ecca92158931
Author: Harald Judt 
Date:   Mon Aug 19 16:37:42 2013 +0200

Fix reading number of CPUs when cpufreq is available.

When using cpufreq, the number of CPUs detected was wrong. Fix it by 
rewriting
the read_sysfs function.

 panel-plugin/xfce4-cpufreq-linux.c |   37 +---
 1 file changed, 22 insertions(+), 15 deletions(-)

diff --git a/panel-plugin/xfce4-cpufreq-linux.c 
b/panel-plugin/xfce4-cpufreq-linux.c
index 26ca1fd..585028b 100644
--- a/panel-plugin/xfce4-cpufreq-linux.c
+++ b/panel-plugin/xfce4-cpufreq-linux.c
@@ -325,26 +325,33 @@ cpufreq_cpu_read_procfs ()
return TRUE;
 }
 
+static inline gboolean
+cpufreq_cpu_exists (gint num)
+{
+   const gchar *base = "/sys/devices/system/cpu";
+   gchar *file;
+   gboolean ret;
+
+   file = g_strdup_printf ("%s/cpu%d", base, num);
+   ret = g_file_test (file, G_FILE_TEST_EXISTS);
+   g_free (file);
+   return ret;
+}
+
 static gboolean
-cpufreq_cpu_read_sysfs ()
+cpufreq_cpu_read_sysfs (void)
 {
-   gint j, i = -2;
-   DIR *dir;
-   struct dirent *dir_entry;
+   gchar *file;
+   gint count = 0, i = 0;
 
-   if ((dir = opendir ("/sys/devices/system/cpu")) != NULL)
-   {
-   while ((dir_entry = readdir (dir)) != NULL)
-   i++;
-   }
-   else
+   while (cpufreq_cpu_exists (count))
+   count++;
+
+   if (count == 0)
return FALSE;
-   closedir (dir);
 
-   for (j = 0; j < i; j++)
-   {
-   cpufreq_cpu_parse_sysfs_init (j, NULL);
-   }
+   while (i < count)
+   cpufreq_cpu_parse_sysfs_init (i++, NULL);
 
return TRUE;
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Merge branch 'master' of git://git.xfce.org/panel-plugins/xfce4-cpufreq-plugin

2013-08-19 Thread Harald Judt
Updating branch refs/heads/master
 to bf847ce2735839be4aa5ee2a1b188f66ba32a022 (commit)
   from e12661067a0e9d667573609926b0ecca92158931 (commit)

commit bf847ce2735839be4aa5ee2a1b188f66ba32a022
Merge: e126610 8896314
Author: Harald Judt 
Date:   Mon Aug 19 16:40:43 2013 +0200

Merge branch 'master' of 
git://git.xfce.org/panel-plugins/xfce4-cpufreq-plugin

commit 889631419625683beca568b92ebd225603537868
Author: MC 
Date:   Mon Aug 19 12:31:36 2013 +0200

I18n: Update translation es (71%).

28 translated messages, 11 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

commit fd79ead5af32707fc59cdb838be208ffbef0f067
Author: Rafael Ferreira 
Date:   Mon Aug 19 06:31:21 2013 +0200

I18n: Update translation pt_BR (100%).

39 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

commit 0d7711305d33d397b7453602a6da3252d0d96b73
Author: k3lt01 
Date:   Mon Aug 19 06:31:21 2013 +0200

I18n: Update translation en_AU (100%).

39 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

commit b909c7da7653952a1a4f6d748f7b0cfc5edd22c9
Author: jc1 
Date:   Mon Aug 19 00:31:21 2013 +0200

I18n: Update translation fr (100%).

39 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/en_AU.po |   76 ++
 po/es.po|   82 +++---
 po/fr.po|   93 +++--
 po/pt_BR.po |   96 +++
 4 files changed, 134 insertions(+), 213 deletions(-)

diff --git a/po/en_AU.po b/po/en_AU.po
index 426b032..6caddbd 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -1,39 +1,38 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
+# 
 # Translators:
 # k3lt01 , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-08-18 09:44+0200\n"
-"PO-Revision-Date: 2013-07-29 08:40+\n"
+"POT-Creation-Date: 2013-08-18 12:31+0200\n"
+"PO-Revision-Date: 2013-08-19 03:33+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) (http://www.transifex.com/projects/p/xfce/";
-"language/en_AU/)\n"
-"Language: en_AU\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: en_AU\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:78
 msgid "Select font..."
-msgstr ""
+msgstr "Select font..."
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:80
 msgid "Select font family and size to use for the labels."
-msgstr ""
+msgstr "Select font family and size to use for the labels."
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:84
 msgid "Right-click to revert to the default font."
-msgstr ""
+msgstr "Right-click to revert to the default font."
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:102
 msgid "Select font"
-msgstr ""
+msgstr "Select font"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:188
 msgid "Configure CPU Frequency Monitor"
@@ -49,7 +48,7 @@ msgstr "Monitor"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:223
 msgid "_Update interval:"
-msgstr ""
+msgstr "_Update interval:"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:241
 msgid "Panel"
@@ -57,56 +56,50 @@ msgstr "Panel"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:257
 msgid "_Font:"
-msgstr ""
+msgstr "_Font:"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:275
-#, fuzzy
 msgid "_Display CPU:"
-msgstr "Display CPU:"
+msgstr "_Display CPU:"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:290
 msgid "min"
-msgstr ""
+msgstr "min"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:291
 msgid "avg"
-msgstr ""
+msgstr "avg"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:292
 msgid "max"
-msgstr ""
+msgstr "max"
 
 #. check buttons for display widgets in panel
 #: ../panel-plugin/xfce4-cpufreq-configure.c:298
 msgid "_Keep compact"
-msgstr ""
+msgstr "_Keep compact"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:303
 msgid "Show text in a single _line"
-msgstr ""
+msgstr "Show text in a single _line"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:308
-#, fuzzy
 msgid "Show CPU _icon"
-msgstr "Show CPU icon"
+msgstr "Show CPU _icon"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:313
-#, fuzzy
 msgid "Show CPU fre_quency"
-msgstr "Show CPU frequency"
+msgstr "Show CPU fre_quency"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:318
-#, fuzzy
 msgid "Show CPU _governor"
-msgstr "Show CPU governor"
+msgstr "Show CPU _governor"
 
 #: ../panel-plugin/xfce4-cpufreq-linux.c:465
 msgid ""
 "Your system does not support cpufreq.\n"
 "Th

[Xfce4-commits] I18n: Update translation es (71%).

2013-08-19 Thread Transifex
Updating branch refs/heads/master
 to 889631419625683beca568b92ebd225603537868 (commit)
   from fd79ead5af32707fc59cdb838be208ffbef0f067 (commit)

commit 889631419625683beca568b92ebd225603537868
Author: MC 
Date:   Mon Aug 19 12:31:36 2013 +0200

I18n: Update translation es (71%).

28 translated messages, 11 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/es.po |   82 +++---
 1 file changed, 30 insertions(+), 52 deletions(-)

diff --git a/po/es.po b/po/es.po
index e864887..00c301e 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1,25 +1,27 @@
-# Spanish translations for xfce4-cpufreq-plugin package
-# Copyright (C) 2009 THE xfce4-cpufreq-plugin'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the xfce4-cpugreq-plugin 
package.
-#  , 2009.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+#  , 2009
+# MC , 2013
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce 4-cpufreq-plugin\n"
+"Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-08-18 09:44+0200\n"
-"PO-Revision-Date: 2009-02-10 18:57+0100\n"
-"Last-Translator: Abel Martín \n"
-"Language-Team: Spanish\n"
-"Language: \n"
+"POT-Creation-Date: 2013-08-18 12:31+0200\n"
+"PO-Revision-Date: 2013-08-19 09:19+\n"
+"Last-Translator: MC \n"
+"Language-Team: Spanish 
(http://www.transifex.com/projects/p/xfce/language/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: es\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:78
 msgid "Select font..."
-msgstr ""
+msgstr "Seleccione el tipo de letra..."
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:80
 msgid "Select font family and size to use for the labels."
@@ -31,7 +33,7 @@ msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:102
 msgid "Select font"
-msgstr ""
+msgstr "Seleccione el tipo de letra"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:188
 msgid "Configure CPU Frequency Monitor"
@@ -58,21 +60,20 @@ msgid "_Font:"
 msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:275
-#, fuzzy
 msgid "_Display CPU:"
-msgstr "Mostrar CPU"
+msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:290
 msgid "min"
-msgstr ""
+msgstr "min"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:291
 msgid "avg"
-msgstr ""
+msgstr "med"
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:292
 msgid "max"
-msgstr ""
+msgstr "max"
 
 #. check buttons for display widgets in panel
 #: ../panel-plugin/xfce4-cpufreq-configure.c:298
@@ -84,27 +85,22 @@ msgid "Show text in a single _line"
 msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:308
-#, fuzzy
 msgid "Show CPU _icon"
-msgstr "Mostrar icono de la CPU"
+msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:313
-#, fuzzy
 msgid "Show CPU fre_quency"
-msgstr "Mostrar frecuencia de la CPU"
+msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-configure.c:318
-#, fuzzy
 msgid "Show CPU _governor"
-msgstr "Mostrar perfil de la CPU"
+msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-linux.c:465
 msgid ""
 "Your system does not support cpufreq.\n"
 "The applet only shows the current cpu frequency"
-msgstr ""
-"Su sistema no soporta cpufreq.\n"
-"Sólo se muestra la actual frecuencia de la CPU."
+msgstr "Su sistema no soporta cpufreq.\nSólo se muestra la actual frecuencia 
de la CPU."
 
 #: ../panel-plugin/xfce4-cpufreq-overview.c:73
 msgid "Scaling driver:"
@@ -137,20 +133,19 @@ msgstr "Un resumen de todas las CPUs en el sistema"
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:60
 msgid "current min"
-msgstr ""
+msgstr "min actual"
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:79
 msgid "current avg"
-msgstr ""
+msgstr "med actual"
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:97
 msgid "current max"
-msgstr ""
+msgstr "max actual"
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:169
-#, fuzzy
 msgid "No CPU information available."
-msgstr "Información de la CPU"
+msgstr "No hay información del procesador disponible."
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:173
 #, c-format
@@ -169,39 +164,22 @@ msgstr "Gobernador:"
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:559
 #: ../panel-plugin/cpufreq.desktop.in.h:2
-#, fuzzy
 msgid "Show CPU frequencies and governor"
-msgstr "Muestra la frecuencia de CPU y los gobernadores"
+msgstr ""
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:561
 msgid "Copyright (c) 2003-2012\n"
-msgstr ""
+msgstr "Copyright (c) 2003-2012\n"
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.c:584
-#, fuzzy
 msgid ""
 "Your system is not configured correctly to support CPU frequency scaling!"
-msgstr ""
-"¡Su sistema no está configurado correctamente para soportar ajuste de "
-"frecuencia de CPUs!"
+msgstr "¡Su sistema no está configurado correctamen

[Xfce4-commits] I18n: Add new translation zh_CN (100%).

2013-08-19 Thread Transifex
Updating branch refs/heads/master
 to ab2a973cbeb70b765cd369dd94775f8b3952919e (commit)
   from 2afe516e9bca1e67948d3a028e1e44875296f068 (commit)

commit ab2a973cbeb70b765cd369dd94775f8b3952919e
Author: Chipong 
Date:   Mon Aug 19 12:31:18 2013 +0200

I18n: Add new translation zh_CN (100%).

36 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{zh_TW.po => zh_CN.po} |   75 +++--
 1 file changed, 38 insertions(+), 37 deletions(-)

diff --git a/po/zh_TW.po b/po/zh_CN.po
similarity index 71%
copy from po/zh_TW.po
copy to po/zh_CN.po
index 6a8916e..61722b8 100644
--- a/po/zh_TW.po
+++ b/po/zh_CN.po
@@ -3,39 +3,40 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Cheng-Chia Tseng , 2011
+# Chipong , 2013
+# Chipong , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2012-09-29 13:30+\n"
-"PO-Revision-Date: 2013-07-06 15:58+\n"
-"Last-Translator: Cheng-Chia Tseng \n"
-"Language-Team: Chinese (Taiwan) 
(http://www.transifex.com/projects/p/xfce/language/zh_TW/)\n"
+"PO-Revision-Date: 2013-08-19 04:51+\n"
+"Last-Translator: Chipong \n"
+"Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/xfce/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: zh_TW\n"
+"Language: zh_CN\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. Add menu item for muting
 #: ../panel-plugin/xfce-mixer-plugin.c:306
 msgid "Mu_te"
-msgstr "靜音(_T)"
+msgstr "静音(_T)"
 
 #: ../panel-plugin/xfce-mixer-plugin.c:314
 msgid "Run Audio Mi_xer"
-msgstr "執行混音器(_X)"
+msgstr "运行混音器(_X)"
 
 #: ../panel-plugin/xfce-mixer-plugin.c:581 ../xfce4-mixer/main.c:148
 msgid ""
 "GStreamer was unable to detect any sound devices. Some sound system specific"
 " GStreamer packages may be missing. It may also be a permissions problem."
-msgstr "GStreamer 無法偵測到任何音效裝置。某些音效系統特定的 GStreamer 套件可能遺失。又或者是許可權的問題。"
+msgstr "Gstreamer 未能检测到任何声音设备。一些声音系统的特定 Gstreamer 软件包可能缺失。也可能是权限问题。"
 
 #: ../panel-plugin/xfce-mixer-plugin.c:931
 msgid "No command defined"
-msgstr "未定義指令"
+msgstr "未定义命令"
 
 #. Generate error message and insert the current command
 #: ../panel-plugin/xfce-mixer-plugin.c:939
@@ -44,33 +45,33 @@ msgid ""
 "Could not execute the command \"%s\". Ensure that either the location of the"
 " command is included in the PATH environment variable or that you are "
 "providing the full path to the command."
-msgstr "無法執行「%s」指令。請確定指令的位置包含在 PATH 環境變數中,或是您需提供指令的完整路徑。"
+msgstr "未能执行命令 “%s”。确保要么此命令的路径包含在路径环境变量中,要么您提供了此命令的完整路径。"
 
 #: ../panel-plugin/xfce-plugin-dialog.c:150
 msgid "Audio Mixer Plugin"
-msgstr "混音器外掛"
+msgstr "混音器插件"
 
 #: ../panel-plugin/xfce-plugin-dialog.c:152
 msgid "Configure the sound card and mixer track"
-msgstr "設定音效卡與混音器聲軌"
+msgstr "配置声卡和音轨"
 
 #: ../panel-plugin/xfce-plugin-dialog.c:165
 #: ../xfce4-mixer/xfce-mixer-window.c:185
 msgid "Sound _card:"
-msgstr "音效卡(_C):"
+msgstr "声卡(_C):"
 
 #: ../panel-plugin/xfce-plugin-dialog.c:174
 msgid "Mixer _track:"
-msgstr "混音器聲軌(_T):"
+msgstr "混音器音轨(_T)"
 
 #: ../panel-plugin/xfce-volume-button.c:854
 msgid "No valid device and/or element."
-msgstr "無有效裝置及/或元素。"
+msgstr "无有效的设备和/或元件。"
 
 #: ../panel-plugin/xfce-volume-button.c:859
 #, c-format
 msgid "%s: muted"
-msgstr "%s:靜音"
+msgstr "%s: 静音"
 
 #: ../panel-plugin/xfce-volume-button.c:861
 #, c-format
@@ -89,7 +90,7 @@ msgstr "混音器"
 #: ../panel-plugin/mixer.desktop.in.h:2
 #: ../xfce4-mixer/xfce4-mixer.desktop.in.h:2
 msgid "Adjust volume levels"
-msgstr "調整音量"
+msgstr "调整音量"
 
 #: ../libxfce4mixer/libxfce4mixer.c:422
 #, c-format
@@ -98,16 +99,16 @@ msgstr "未知音量控制 %d"
 
 #: ../xfce4-mixer/main.c:86
 msgid "Enable debugging output"
-msgstr "啟用除錯輸出"
+msgstr "启用调试输出"
 
 #: ../xfce4-mixer/main.c:87
 msgid "Show version and exit"
-msgstr "顯示版本並結束"
+msgstr "显示版本信息并退出"
 
 #: ../xfce4-mixer/main.c:130
 #, c-format
 msgid "xfce4-mixer: Failed to initialize xfconf: %s\n"
-msgstr "xfce4-mixer:未能初始化 xfconf:%s\n"
+msgstr "Xfce4 混音器:无法初始化 xfconf: %s\n"
 
 #: ../xfce4-mixer/xfce-mixer-container.c:218
 msgid "_Playback"
@@ -115,75 +116,75 @@ msgstr "播放(_P)"
 
 #: ../xfce4-mixer/xfce-mixer-container.c:218
 msgid "C_apture"
-msgstr "擷取(_A)"
+msgstr "捕获(_A)"
 
 #: ../xfce4-mixer/xfce-mixer-container.c:218
 msgid "S_witches"
-msgstr "開關(_W)"
+msgstr "开关(_W)"
 
 #: ../xfce4-mixer/xfce-mixer-container.c:218
 msgid "_Options"
-msgstr "選項(_O)"
+msgstr "选项(_O)"
 
 #: ../xfce4-mixer/xfce-mixer-container.c:390
 msgid "No controls visible"
-msgstr "無可見控制項"
+msgstr "没有可见的控制项"
 
 #: ../xfce4-mixer/xfce-mixer-container.c:401
 msgid "No controls visible"
-msgstr "無可見的控制項"
+msgstr "无可见控制器"
 
 #: ../xfce4-mixer/xfce-mixer-container.c:409
 msgid ""
 "In order to toggle the visibility of mixer controls, open the \"Select "
 "Controls\" dialog."
-msgstr "要切換顯示的混音器控制項,請開啟「選取

[Xfce4-commits] Check GFileInfo before trying to use it.

2013-08-19 Thread Eric Koegel
Updating branch refs/heads/eric/icon-changes
 to 21fe3ab4185b7eba72b5554f4645c8945be3da27 (commit)
   from f6252759fcb4aa2e510237aa45c77b84bfab3cc4 (commit)

commit 21fe3ab4185b7eba72b5554f4645c8945be3da27
Author: Eric Koegel 
Date:   Mon Aug 19 11:47:00 2013 +0300

Check GFileInfo before trying to use it.

 src/xfdesktop-file-icon.c |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/xfdesktop-file-icon.c b/src/xfdesktop-file-icon.c
index 7673ea7..1d2ddcc 100644
--- a/src/xfdesktop-file-icon.c
+++ b/src/xfdesktop-file-icon.c
@@ -269,6 +269,11 @@ xfdesktop_file_icon_add_emblems(XfdesktopFileIcon *icon)
 else
 return NULL;
 
+icon->priv->gicon = emblemed_icon;
+
+if(!G_IS_FILE_INFO(xfdesktop_file_icon_peek_file_info(icon)))
+return emblemed_icon;
+
 /* Get the list of emblems */
 emblem_names = 
g_file_info_get_attribute_stringv(xfdesktop_file_icon_peek_file_info(icon),
  "metadata::emblems");
@@ -289,7 +294,7 @@ xfdesktop_file_icon_add_emblems(XfdesktopFileIcon *icon)
 
 /* Clear out the old icon and set the new one */
 xfdesktop_file_icon_invalidate_icon(icon);
-return icon->priv->gicon = emblemed_icon;
+return emblemed_icon;
 }
 
 void
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits