[Xfce4-commits] Do not ref/unref widgets and let libindicator manage them

2014-01-21 Thread Andrzej
Updating branch refs/heads/master
 to 11fbd8c67c272706dbde3ca9fa0722b4691ec817 (commit)
   from 6eec40b9771d3bc430e62ab9a0c0c92b643d56ae (commit)

commit 11fbd8c67c272706dbde3ca9fa0722b4691ec817
Author: Andrzej 
Date:   Wed Jan 22 01:43:35 2014 +

Do not ref/unref widgets and let libindicator manage them

 panel-plugin/indicator-button-box.c |   17 ++---
 panel-plugin/indicator-button.c |   18 ++
 2 files changed, 4 insertions(+), 31 deletions(-)

diff --git a/panel-plugin/indicator-button-box.c 
b/panel-plugin/indicator-button-box.c
index 2cb0c24..d4cf065 100644
--- a/panel-plugin/indicator-button-box.c
+++ b/panel-plugin/indicator-button-box.c
@@ -148,11 +148,6 @@ indicator_button_box_finalize (GObject *object)
 
   indicator_button_box_disconnect_signals (box);
 
-  if (box->label != NULL)
-g_object_unref (G_OBJECT (box->label));
-  if (box->icon != NULL)
-g_object_unref (G_OBJECT (box->icon));
-
   G_OBJECT_CLASS (indicator_button_box_parent_class)->finalize (object);
 }
 
@@ -237,12 +232,8 @@ indicator_button_box_set_label (IndicatorButtonBox  *box,
   g_return_if_fail (GTK_IS_LABEL (label));
 
   if (box->label != NULL)
-{
-  gtk_container_remove (GTK_CONTAINER (box), box->label);
-  g_object_unref (G_OBJECT (box->label));
-}
+gtk_container_remove (GTK_CONTAINER (box), box->label);
   box->label = GTK_WIDGET (label);
-  g_object_ref (G_OBJECT (box->label));
   g_signal_connect(G_OBJECT(box->label), "notify::label",
G_CALLBACK(indicator_button_box_label_changed), box);
   g_signal_connect(G_OBJECT(box->label), "notify::visible",
@@ -284,13 +275,9 @@ indicator_button_box_set_image (IndicatorButtonBox  *box,
   /* g_debug ("indicator-button-box set image, image=%x", (uint) image); */
 
   if (box->icon != NULL)
-{
-  gtk_container_remove (GTK_CONTAINER (box), box->icon);
-  g_object_unref (G_OBJECT (box->icon));
-}
+gtk_container_remove (GTK_CONTAINER (box), box->icon);
 
   box->icon = GTK_WIDGET (image);
-  g_object_ref (G_OBJECT (box->icon));
   g_signal_connect(G_OBJECT(box->icon), "notify::pixbuf",
G_CALLBACK(indicator_button_box_icon_changed), box);
 
diff --git a/panel-plugin/indicator-button.c b/panel-plugin/indicator-button.c
index 6b5fd92..2963e84 100644
--- a/panel-plugin/indicator-button.c
+++ b/panel-plugin/indicator-button.c
@@ -137,14 +137,6 @@ xfce_indicator_button_finalize (GObject *object)
 
   xfce_indicator_button_disconnect_signals (button);
 
-  if (button->menu != NULL)
-g_object_unref (G_OBJECT (button->menu));
-  /* IndicatorObjectEntry is not GObject */
-  /* if (button->entry != NULL) */
-  /*   g_object_unref (G_OBJECT (button->entry)); */
-  if (button->io != NULL)
-g_object_unref (G_OBJECT (button->io));
-
   G_OBJECT_CLASS (xfce_indicator_button_parent_class)->finalize (object);
 }
 
@@ -184,10 +176,7 @@ xfce_indicator_button_set_menu (XfceIndicatorButton 
*button,
 
   if (button->menu != menu)
 {
-  if (button->menu != NULL)
-g_object_unref (G_OBJECT (button->menu));
   button->menu = menu;
-  g_object_ref (G_OBJECT (button->menu));
   g_signal_connect_swapped (G_OBJECT (button->menu), "deactivate",
 G_CALLBACK 
(xfce_indicator_button_menu_deactivate), button);
   gtk_menu_attach_to_widget(menu, GTK_WIDGET (button), NULL);
@@ -302,11 +291,6 @@ xfce_indicator_button_new (IndicatorObject  *io,
   gtk_container_add (GTK_CONTAINER (button->align_box), button->box);
   gtk_widget_show (button->box);
 
-  if (button->io != NULL)
-g_object_ref (G_OBJECT (button->io));
-  /* IndicatorObjectEntry is not GObject */
-  /* g_object_ref (G_OBJECT (button->entry)); */
-
   return GTK_WIDGET (button);
 }
 
@@ -332,11 +316,13 @@ xfce_indicator_button_button_press (GtkWidget  
*widget,
 
   if(event->button == 1 && button->menu != NULL) /* left click only */
 {
+  //gtk_menu_attach_to_widget(button->menu, GTK_WIDGET (button), NULL);
   gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget),TRUE);
   gtk_menu_reposition (GTK_MENU (button->menu));
   gtk_menu_popup (button->menu, NULL, NULL,
   xfce_panel_plugin_position_menu, button->plugin,
   event->button, event->time);
+  //gtk_menu_detach(button->menu);
   return TRUE;
 }
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] I18n: Update translation el (67%).

2014-01-21 Thread Transifex
Updating branch refs/heads/master
 to 9f35e9a549c04df8eb4eb841da5852de531f2357 (commit)
   from 08db6c8a2d638434fbdbff2eae94d0b98fb0b8b2 (commit)

commit 9f35e9a549c04df8eb4eb841da5852de531f2357
Author: Spyros 
Date:   Wed Jan 22 00:30:52 2014 +0100

I18n: Update translation el (67%).

173 translated messages, 85 untranslated messages.

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

 po/el.po |  299 +++---
 1 file changed, 151 insertions(+), 148 deletions(-)

diff --git a/po/el.po b/po/el.po
index 6c38a8a..cc4b73c 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,13 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Spyros , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-11-13 06:30+0100\n"
-"PO-Revision-Date: 2013-11-19 16:28+\n"
-"Last-Translator: Xfce \n"
+"POT-Creation-Date: 2013-12-18 06:30+0100\n"
+"PO-Revision-Date: 2014-01-21 22:15+\n"
+"Last-Translator: Spyros \n"
 "Language-Team: Greek 
(http://www.transifex.com/projects/p/xfce/language/el/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -18,8 +19,8 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: ../data/interfaces/parole.ui.h:1 ../data/desktop/parole.desktop.in.in.h:1
-#: ../src/parole-player.c:565 ../src/parole-player.c:1453
-#: ../src/parole-about.c:70
+#: ../src/parole-player.c:567 ../src/parole-player.c:1455
+#: ../src/parole-about.c:70 ../src/plugins/mpris2/mpris2-provider.c:199
 msgid "Parole Media Player"
 msgstr "Εφαρμογή αναπαραγωγής πολυμέσων Parole"
 
@@ -33,22 +34,22 @@ msgstr ""
 
 #: ../data/interfaces/parole.ui.h:4
 msgid "Open _Location…"
-msgstr ""
+msgstr "Άνοιγμα _τοποθεσίας..."
 
 #: ../data/interfaces/parole.ui.h:5
 msgid "Open _Recent"
-msgstr ""
+msgstr "Άνοιγμα _προσφάτων"
 
 #: ../data/interfaces/parole.ui.h:6
 msgid "_Save Playlist…"
-msgstr ""
+msgstr "_Αποθήκευση λίστας αναπαραγωγής..."
 
 #: ../data/interfaces/parole.ui.h:7 ../src/parole-disc.c:112
 #: ../src/parole-disc.c:154
 msgid "Insert Disc"
 msgstr "Εισάγετε δίσκο"
 
-#: ../data/interfaces/parole.ui.h:8 ../src/plugins/tray/tray-provider.c:150
+#: ../data/interfaces/parole.ui.h:8 ../src/plugins/tray/tray-provider.c:152
 msgid "_Quit"
 msgstr ""
 
@@ -57,18 +58,18 @@ msgid "_Playback"
 msgstr ""
 
 #. Toggle Repeat
-#: ../data/interfaces/parole.ui.h:10 ../src/parole-player.c:2988
+#: ../data/interfaces/parole.ui.h:10 ../src/parole-player.c:2994
 msgid "_Repeat"
 msgstr "_Επανάληψη"
 
 #. Toggle Shuffle
-#: ../data/interfaces/parole.ui.h:11 ../src/parole-player.c:2996
+#: ../data/interfaces/parole.ui.h:11 ../src/parole-player.c:3002
 msgid "_Shuffle"
 msgstr "_Τυχαία αναπαραγωγή"
 
 #: ../data/interfaces/parole.ui.h:12
 msgid "_DVD"
-msgstr ""
+msgstr "_DVD"
 
 #: ../data/interfaces/parole.ui.h:13
 msgid "_DVD Menu"
@@ -102,7 +103,7 @@ msgstr ""
 msgid "_Audio Track"
 msgstr ""
 
-#: ../data/interfaces/parole.ui.h:21 ../src/parole-player.c:791
+#: ../data/interfaces/parole.ui.h:21 ../src/parole-player.c:793
 msgid "Empty"
 msgstr "Άδειο"
 
@@ -123,8 +124,8 @@ msgid "_Video"
 msgstr ""
 
 #. Fullscreen
-#: ../data/interfaces/parole.ui.h:26 ../src/parole-player.c:1938
-#: ../src/parole-player.c:2976
+#: ../data/interfaces/parole.ui.h:26 ../src/parole-player.c:1940
+#: ../src/parole-player.c:2982
 msgid "_Fullscreen"
 msgstr ""
 
@@ -132,7 +133,7 @@ msgstr ""
 msgid "_Aspect Ratio"
 msgstr "Αναλογία _οθόνης"
 
-#: ../data/interfaces/parole.ui.h:28 ../src/parole-player.c:719
+#: ../data/interfaces/parole.ui.h:28 ../src/parole-player.c:721
 msgid "None"
 msgstr "Κανένας"
 
@@ -182,7 +183,7 @@ msgstr "_Βοήθεια"
 
 #: ../data/interfaces/parole.ui.h:40
 msgid "_Report a Bug…"
-msgstr ""
+msgstr "_Αναφορά σφάλματος..."
 
 #: ../data/interfaces/parole.ui.h:41
 msgid "_About"
@@ -190,13 +191,13 @@ msgstr ""
 
 #: ../data/interfaces/parole.ui.h:42
 msgid "Unknown Song"
-msgstr ""
+msgstr "Άγνωστο Τραγούδι"
 
 #: ../data/interfaces/parole.ui.h:43
 msgid ""
 "on Unknown "
 "Album"
-msgstr ""
+msgstr "on Άγνωστο Άλμπουμ"
 
 #: ../data/interfaces/parole.ui.h:44
 msgid ""
@@ -218,8 +219,8 @@ msgid "Open Media Files"
 msgstr "Άνοιγμα αρχείων πολυμέσων"
 
 #: ../data/interfaces/playlist.ui.h:1
-#: ../data/interfaces/parole-settings.ui.h:23 ../src/parole-medialist.c:808
-#: ../src/parole-medialist.c:851 ../src/parole-player.c:3304
+#: ../data/interfaces/parole-settings.ui.h:23 ../src/parole-medialist.c:814
+#: ../src/parole-medialist.c:857 ../src/parole-player.c:3310
 msgid "Playlist"
 msgstr "Λίστα αναπαραγωγής"
 
@@ -251,11 +252,11 @@ msgstr ""
 msgid "Clear"
 msgstr "Καθαρισμός"
 
-#: ../data/interfaces/playlist.ui.h:9 ../src/parole-player.c:2988
+#: ../data/interfaces/playlist.ui.h:9 ../src/parole-player.c:2994
 msgid "Repeat"
 msgstr "Επανάληψη"
 
-#: ../data/interfaces/playlist.ui.h:10 ../src/parole-player.c:2996

[Xfce4-commits] I18n: Update translation ca (99%).

2014-01-21 Thread Transifex
Updating branch refs/heads/master
 to 250f8ae1cbde491d85f8576ecb812ea5ed7062a6 (commit)
   from 209cda002c09687139cd7e7de34f52a99ff85c53 (commit)

commit 250f8ae1cbde491d85f8576ecb812ea5ed7062a6
Author: Roger Pueyo Centelles 
Date:   Wed Jan 22 00:30:17 2014 +0100

I18n: Update translation ca (99%).

733 translated messages, 1 untranslated message.

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

 po/ca.po |   20 
 1 file changed, 4 insertions(+), 16 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 62967ff..d9a53e1 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -6,14 +6,15 @@
 # alavios , 2013
 # carlesmu , 2013
 # frangor , 2013
+# Roger Pueyo Centelles , 2014
 # lebrush , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-30 00:30+0200\n"
-"PO-Revision-Date: 2013-10-23 17:50+\n"
-"Last-Translator: frangor \n"
+"PO-Revision-Date: 2014-01-21 18:52+\n"
+"Last-Translator: Roger Pueyo Centelles \n"
 "Language-Team: Catalan 
(http://www.transifex.com/projects/p/xfce/language/ca/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -673,7 +674,6 @@ msgid "ReplaceDialogPart1|Do you want to replace the 
existing file"
 msgstr "Voleu reemplaçar el fitxer existent"
 
 #. Fourth box (size, volume, free space)
-#. 
 #: ../thunar/thunar-dialogs.c:618 ../thunar/thunar-dialogs.c:649
 #: ../thunar/thunar-properties-dialog.c:457
 msgid "Size:"
@@ -770,7 +770,6 @@ msgid "Owner"
 msgstr "Propietari"
 
 #. Permissions chooser
-#. 
 #: ../thunar/thunar-enum-types.c:98 ../thunar/thunar-properties-dialog.c:529
 msgid "Permissions"
 msgstr "Permisos"
@@ -1220,7 +1219,6 @@ msgstr "«%s» %s"
 #. * where the trashed file/folder was located before it was moved to the
 #. trash), otherwise the
 #. * properties dialog width will be messed up.
-#. 
 #: ../thunar/thunar-list-model.c:2271 ../thunar/thunar-properties-dialog.c:365
 msgid "Original Path:"
 msgstr "Camí original:"
@@ -1528,7 +1526,6 @@ msgid "File Manager Preferences"
 msgstr "Preferències del gestor de fitxers"
 
 #. Display
-#. 
 #: ../thunar/thunar-preferences-dialog.c:242
 msgid "Display"
 msgstr "Visualitza"
@@ -1603,7 +1600,6 @@ msgid "_Format:"
 msgstr "_Format:"
 
 #. Side Pane
-#. 
 #: ../thunar/thunar-preferences-dialog.c:363
 msgid "Side Pane"
 msgstr "Subfinestra lateral"
@@ -1681,7 +1677,6 @@ msgid ""
 msgstr "Seleccioneu aquesta opció per visualitzar les icones de distintiu a la 
subfinestra en arbre. Els distintius es defineixen al diàleg de propietats del 
directori."
 
 #. Behavior
-#. 
 #: ../thunar/thunar-preferences-dialog.c:457
 msgid "Behavior"
 msgstr "Comportament"
@@ -1738,7 +1733,6 @@ msgid "Open folder in new _tab"
 msgstr "Obre la carpegta en una nova _pestanya"
 
 #. Advanced
-#. 
 #: ../thunar/thunar-preferences-dialog.c:581
 msgid "Advanced"
 msgstr "Avançat"
@@ -1818,7 +1812,6 @@ msgid "Names:"
 msgstr "Noms:"
 
 #. Second box (kind, open with, link target)
-#. 
 #: ../thunar/thunar-properties-dialog.c:312
 msgid "Kind:"
 msgstr "Tipus:"
@@ -1836,7 +1829,6 @@ msgid "Location:"
 msgstr "Ubicació:"
 
 #. Third box (deleted, modified, accessed)
-#. 
 #: ../thunar/thunar-properties-dialog.c:404
 msgid "Deleted:"
 msgstr "Suprimit:"
@@ -1854,7 +1846,6 @@ msgid "Free Space:"
 msgstr "Espai lliure:"
 
 #. Emblem chooser
-#. 
 #: ../thunar/thunar-properties-dialog.c:519
 msgid "Emblems"
 msgstr "Distintius"
@@ -1964,7 +1955,6 @@ msgstr "Feu clic aquí per veure la documentació de 
l'operació de canvi de nom
 #. from $libdir/thunarx-2/,
 #. *  and opening the multi rename dialog by selecting multiple
 #. files and pressing F2.
-#. 
 #: ../thunar/thunar-renamer-dialog.c:611
 msgid ""
 "No renamer modules were found on your system. Please check your\n"
@@ -2525,7 +2515,7 @@ msgstr "Obre la localització mostrada en una nova 
finestra de Thunar"
 
 #: ../thunar/thunar-window.c:352
 msgid "Detac_h Tab"
-msgstr ""
+msgstr "Separa la pestanya"
 
 #: ../thunar/thunar-window.c:352
 msgid "Open current folder in a new window"
@@ -2736,7 +2726,6 @@ msgid "Change the visibility of this window's menubar"
 msgstr "Canvia la visibilitat de la barra de menú d'aquesta finestra"
 
 #. * add view options
-#. 
 #: ../thunar/thunar-window.c:764
 msgid "View as _Icons"
 msgstr "Vista d'_icones"
@@ -3363,7 +3352,6 @@ msgid "If you delete a custom action, it is permanently 
lost."
 msgstr "Si suprimiu una acció personalitzada, aquesta es perdrà per sempre."
 
 #. Basic
-#. 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:123
 msgid "Basic"
 msgstr "Bàsic"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Fixed button sizing when icon/image storage type == GTK_IMAGE_EMPTY

2014-01-21 Thread Andrzej
Updating branch refs/heads/master
 to 6eec40b9771d3bc430e62ab9a0c0c92b643d56ae (commit)
   from 723a2dbf8253ee3bc84c599c587839167bd9b011 (commit)

commit 6eec40b9771d3bc430e62ab9a0c0c92b643d56ae
Author: Andrzej 
Date:   Tue Jan 21 21:52:03 2014 +

Fixed button sizing when icon/image storage type == GTK_IMAGE_EMPTY

 panel-plugin/indicator-button-box.c |   16 
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/panel-plugin/indicator-button-box.c 
b/panel-plugin/indicator-button-box.c
index 041b083..2cb0c24 100644
--- a/panel-plugin/indicator-button-box.c
+++ b/panel-plugin/indicator-button-box.c
@@ -423,7 +423,9 @@ indicator_button_box_get_preferred_width (GtkWidget *widget,
 {
   gtk_widget_get_preferred_width (box->label, &min_size, &nat_size);
 
-  if (box->icon != NULL && box->orientation == GTK_ORIENTATION_HORIZONTAL)
+  if (box->icon != NULL &&
+  gtk_image_get_storage_type (GTK_IMAGE (box->icon)) != 
GTK_IMAGE_EMPTY &&
+  box->orientation == GTK_ORIENTATION_HORIZONTAL)
 {
   min_size = min_size + ICON_SIZE + SPACING;
   nat_size = nat_size + ICON_SIZE + SPACING;
@@ -476,7 +478,9 @@ indicator_button_box_get_preferred_height (GtkWidget 
*widget,
 {
   gtk_widget_get_preferred_height (box->label, &min_size, &nat_size);
 
-  if (box->icon != NULL && box->orientation == GTK_ORIENTATION_VERTICAL)
+  if (box->icon != NULL &&
+  gtk_image_get_storage_type (GTK_IMAGE (box->icon)) != 
GTK_IMAGE_EMPTY &&
+  box->orientation == GTK_ORIENTATION_VERTICAL)
 {
   min_size = min_size + ICON_SIZE + SPACING;
   nat_size = nat_size + ICON_SIZE + SPACING;
@@ -530,7 +534,10 @@ indicator_button_box_size_allocate (GtkWidget *widget,
 
   indicator_button_box_is_small (box); // refresh cache
 
-  if (box->icon != NULL && box->label != NULL && !box->is_small)
+  if (box->icon != NULL &&
+  gtk_image_get_storage_type (GTK_IMAGE (box->icon)) != GTK_IMAGE_EMPTY &&
+  box->label != NULL &&
+  !box->is_small)
 {
   if (box->orientation == GTK_ORIENTATION_HORIZONTAL)
 {
@@ -547,7 +554,8 @@ indicator_button_box_size_allocate (GtkWidget *widget,
   gtk_widget_size_allocate (box->icon, &icon_alloc);
   gtk_widget_size_allocate (box->label, &label_alloc);
 }
-  else if (box->icon != NULL)
+  else if (box->icon != NULL &&
+   gtk_image_get_storage_type (GTK_IMAGE (box->icon)) != 
GTK_IMAGE_EMPTY)
 {
   gtk_widget_size_allocate (box->icon, &icon_alloc);
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Fixed a randomly missing icon in sound indicator

2014-01-21 Thread Andrzej
Updating branch refs/heads/master
 to 723a2dbf8253ee3bc84c599c587839167bd9b011 (commit)
   from 2c252c25a26459531a37abe0a953a7efa31673b5 (commit)

commit 723a2dbf8253ee3bc84c599c587839167bd9b011
Author: Andrzej 
Date:   Tue Jan 21 20:51:27 2014 +

Fixed a randomly missing icon in sound indicator

Sound indicator sometimes adds an image with a GTK_IMAGE_EMPTY
storage type and updates it later.

 panel-plugin/indicator-button-box.c |6 --
 1 file changed, 6 deletions(-)

diff --git a/panel-plugin/indicator-button-box.c 
b/panel-plugin/indicator-button-box.c
index f3abb6a..041b083 100644
--- a/panel-plugin/indicator-button-box.c
+++ b/panel-plugin/indicator-button-box.c
@@ -289,12 +289,6 @@ indicator_button_box_set_image (IndicatorButtonBox  *box,
   g_object_unref (G_OBJECT (box->icon));
 }
 
-  if(gtk_image_get_storage_type(image) == GTK_IMAGE_EMPTY)
-{
-  box->icon = NULL;
-  return;
-}
-
   box->icon = GTK_WIDGET (image);
   g_object_ref (G_OBJECT (box->icon));
   g_signal_connect(G_OBJECT(box->icon), "notify::pixbuf",
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2014-01-21 Thread Transifex
Updating branch refs/heads/master
 to da61495218044db15bf95c4f2184ec969dc50c7a (commit)
   from f85177a94e678b173e4ea5769f80feb7f9c28bd5 (commit)

commit da61495218044db15bf95c4f2184ec969dc50c7a
Author: Piotr Sokół 
Date:   Tue Jan 21 18:32:03 2014 +0100

I18n: Update translation pl (100%).

216 translated messages.

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

 po/pl.po |  222 --
 1 file changed, 114 insertions(+), 108 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index a9977f5..0243c9d 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -5,17 +5,19 @@
 # Translators:
 # Cyryl Sochacki , 2013
 # OSWorld , 2013
+# OSWorld , 2013
 # Piotr Maliński , 2006
-# Piotr Sokół , 2009,2011-2013
+# Piotr Sokół , 2009,2011-2014
 # Piotr Strębski , 2013
 # Robert Kurowski , 2005
 # Szymon Kałasz , 2006
+# Xfce , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-11-15 00:31+0100\n"
-"PO-Revision-Date: 2013-11-19 07:59+\n"
+"POT-Creation-Date: 2013-12-15 00:31+0100\n"
+"PO-Revision-Date: 2014-01-21 16:04+\n"
 "Last-Translator: Piotr Sokół \n"
 "Language-Team: Polish 
(http://www.transifex.com/projects/p/xfce/language/pl/)\n"
 "MIME-Version: 1.0\n"
@@ -24,37 +26,37 @@ msgstr ""
 "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"
 
-#: ../settings/main.c:371 ../src/xfdesktop-special-file-icon.c:295
+#: ../settings/main.c:372 ../src/xfdesktop-special-file-icon.c:295
 #: ../src/xfdesktop-special-file-icon.c:479
 msgid "Home"
 msgstr "Katalog użytkownika"
 
-#: ../settings/main.c:373
+#: ../settings/main.c:374
 msgid "Filesystem"
 msgstr "System plików"
 
-#: ../settings/main.c:375
+#: ../settings/main.c:376
 msgid "Trash"
 msgstr "Kosz"
 
-#: ../settings/main.c:377
+#: ../settings/main.c:378
 msgid "Removable Devices"
 msgstr "Nośniki wymienne"
 
-#: ../settings/main.c:379
+#: ../settings/main.c:380
 msgid "Network Shares"
 msgstr "Współdzielone w sieci"
 
-#: ../settings/main.c:381
+#: ../settings/main.c:382
 msgid "Disks and Drives"
 msgstr "Dyski i napędy"
 
-#: ../settings/main.c:383
+#: ../settings/main.c:384
 msgid "Other Items"
 msgstr "Inne elementy"
 
 #. Display the file name, file type, and file size in the tooltip.
-#: ../settings/main.c:496
+#: ../settings/main.c:497
 #, c-format
 msgid ""
 "%s\n"
@@ -62,97 +64,97 @@ msgid ""
 "Size: %s"
 msgstr "%s\nTyp: %s\nRozmiar: %s"
 
-#: ../settings/main.c:680
+#: ../settings/main.c:681
 #, c-format
 msgid "Wallpaper for Monitor %d (%s)"
 msgstr "Tło pulpitu na ekranie %d (%s)"
 
-#: ../settings/main.c:683
+#: ../settings/main.c:684
 #, c-format
 msgid "Wallpaper for Monitor %d"
 msgstr "Tło pulpitu na ekranie %d"
 
-#: ../settings/main.c:689
+#: ../settings/main.c:690
 msgid ""
 "You are using more than one display, move this dialog to the display you "
 "want to edit the settings for."
 msgstr "W użyciu jest więcej niż jeden ekran. Proszę umieścić to okno 
dialogowe na ekranie, który ma zostać skonfigurowany."
 
-#: ../settings/main.c:697
+#: ../settings/main.c:698
 #, c-format
 msgid "Wallpaper for %s on Monitor %d (%s)"
 msgstr "Tło pulpitu dla %s na ekranie %d (%s)"
 
-#: ../settings/main.c:701
+#: ../settings/main.c:702
 #, c-format
 msgid "Wallpaper for %s on Monitor %d"
 msgstr "Tło pulpitu dla %s na ekranie %d"
 
-#: ../settings/main.c:708
+#: ../settings/main.c:709
 msgid ""
 "You are using more than one display, move this dialog to the display and "
 "workspace you want to edit the settings for."
 msgstr "W użyciu jest więcej niż jeden ekran. Proszę umieścić to okno 
dialogowe na ekranie i obszarze roboczym, które mają zostać skonfigurowane."
 
 #. Single monitor and single workspace
-#: ../settings/main.c:716
+#: ../settings/main.c:717
 #, c-format
 msgid "Wallpaper for my desktop"
 msgstr "Tło pulpitu"
 
 #. Single monitor and per workspace wallpaper
-#: ../settings/main.c:722
+#: ../settings/main.c:723
 #, c-format
 msgid "Wallpaper for %s"
 msgstr "Tło pulpitu dla %s"
 
-#: ../settings/main.c:727
+#: ../settings/main.c:728
 msgid "Move this dialog to the workspace you want to edit the settings for."
 msgstr "Proszę umieścić to okno dialogowe na obszarze roboczym, który ma 
zostać skonfigurowany."
 
-#: ../settings/main.c:1130
+#: ../settings/main.c:1131
 msgid "Image selection is unavailable while the image style is set to None."
 msgstr "Wybór obrazów jest niedostępny dopóki styl obrazów jest ustawiony na 
Brak."
 
-#: ../settings/main.c:1482
+#: ../settings/main.c:1483
 msgid "Spanning screens"
 msgstr "Zakres monitorów"
 
-#: ../settings/main.c:1787
+#: ../settings/main.c:1788
 msgid "Image files"
 msgstr "Pliki obrazów"
 
-#: ../settings/main.c:1939
+#: ../settings/main.c:1945
 msgid "Settings manager socket"
 msgstr "Określa gniazdo menedżera ustawień"
 
-#: ../settings/main.c:1939
+#: ../settings/main.c:1945
 msgid "

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

2014-01-21 Thread Transifex
Updating branch refs/heads/master
 to 08db6c8a2d638434fbdbff2eae94d0b98fb0b8b2 (commit)
   from 9ae811828af98bcd4e6c1fd46dfc3e1fa7a1eb8e (commit)

commit 08db6c8a2d638434fbdbff2eae94d0b98fb0b8b2
Author: Piotr Strębski 
Date:   Tue Jan 21 18:30:54 2014 +0100

I18n: Update translation pl (100%).

258 translated messages.

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

 po/pl.po |  224 +++---
 1 file changed, 113 insertions(+), 111 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index c00bfd7..9561356 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,14 +7,14 @@
 # elder , 2013
 # Paweł Drożański , 2012
 # Piotr Sokół , 2012-2013
-# Piotr Strębski , 2013
+# Piotr Strębski , 2013-2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-11-13 06:30+0100\n"
-"PO-Revision-Date: 2013-11-19 16:28+\n"
-"Last-Translator: Xfce \n"
+"POT-Creation-Date: 2013-12-18 06:30+0100\n"
+"PO-Revision-Date: 2014-01-21 16:09+\n"
+"Last-Translator: Piotr Strębski \n"
 "Language-Team: Polish 
(http://www.transifex.com/projects/p/xfce/language/pl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -23,8 +23,8 @@ msgstr ""
 "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/parole.ui.h:1 ../data/desktop/parole.desktop.in.in.h:1
-#: ../src/parole-player.c:565 ../src/parole-player.c:1453
-#: ../src/parole-about.c:70
+#: ../src/parole-player.c:567 ../src/parole-player.c:1455
+#: ../src/parole-about.c:70 ../src/plugins/mpris2/mpris2-provider.c:199
 msgid "Parole Media Player"
 msgstr "Odtwarzacz nagrań Parole"
 
@@ -53,7 +53,7 @@ msgstr "_Zapisz listę odtwarzania..."
 msgid "Insert Disc"
 msgstr "Proszę wsunąć płytę"
 
-#: ../data/interfaces/parole.ui.h:8 ../src/plugins/tray/tray-provider.c:150
+#: ../data/interfaces/parole.ui.h:8 ../src/plugins/tray/tray-provider.c:152
 msgid "_Quit"
 msgstr "Za_kończ"
 
@@ -62,12 +62,12 @@ msgid "_Playback"
 msgstr "_Odtwarzanie"
 
 #. Toggle Repeat
-#: ../data/interfaces/parole.ui.h:10 ../src/parole-player.c:2988
+#: ../data/interfaces/parole.ui.h:10 ../src/parole-player.c:2994
 msgid "_Repeat"
 msgstr "_Powtarzanie"
 
 #. Toggle Shuffle
-#: ../data/interfaces/parole.ui.h:11 ../src/parole-player.c:2996
+#: ../data/interfaces/parole.ui.h:11 ../src/parole-player.c:3002
 msgid "_Shuffle"
 msgstr "_Losowa kolejność"
 
@@ -107,7 +107,7 @@ msgstr "_Dźwięk"
 msgid "_Audio Track"
 msgstr "Ścieżka _dźwiękowa"
 
-#: ../data/interfaces/parole.ui.h:21 ../src/parole-player.c:791
+#: ../data/interfaces/parole.ui.h:21 ../src/parole-player.c:793
 msgid "Empty"
 msgstr "Pusty"
 
@@ -128,8 +128,8 @@ msgid "_Video"
 msgstr "_Wideo"
 
 #. Fullscreen
-#: ../data/interfaces/parole.ui.h:26 ../src/parole-player.c:1938
-#: ../src/parole-player.c:2976
+#: ../data/interfaces/parole.ui.h:26 ../src/parole-player.c:1940
+#: ../src/parole-player.c:2982
 msgid "_Fullscreen"
 msgstr "_Pełny ekran"
 
@@ -137,7 +137,7 @@ msgstr "_Pełny ekran"
 msgid "_Aspect Ratio"
 msgstr "_Proporcje obrazu"
 
-#: ../data/interfaces/parole.ui.h:28 ../src/parole-player.c:719
+#: ../data/interfaces/parole.ui.h:28 ../src/parole-player.c:721
 msgid "None"
 msgstr "Brak"
 
@@ -223,8 +223,8 @@ msgid "Open Media Files"
 msgstr "Wybór pliku"
 
 #: ../data/interfaces/playlist.ui.h:1
-#: ../data/interfaces/parole-settings.ui.h:23 ../src/parole-medialist.c:808
-#: ../src/parole-medialist.c:851 ../src/parole-player.c:3304
+#: ../data/interfaces/parole-settings.ui.h:23 ../src/parole-medialist.c:814
+#: ../src/parole-medialist.c:857 ../src/parole-player.c:3310
 msgid "Playlist"
 msgstr "Lista odtwarzania"
 
@@ -256,11 +256,11 @@ msgstr "Czyści listę odtwarzania"
 msgid "Clear"
 msgstr "Wyczyść"
 
-#: ../data/interfaces/playlist.ui.h:9 ../src/parole-player.c:2988
+#: ../data/interfaces/playlist.ui.h:9 ../src/parole-player.c:2994
 msgid "Repeat"
 msgstr "Przełącza powtarzanie"
 
-#: ../data/interfaces/playlist.ui.h:10 ../src/parole-player.c:2996
+#: ../data/interfaces/playlist.ui.h:10 ../src/parole-player.c:3002
 msgid "Shuffle"
 msgstr "Przełącza losowanie kolejności"
 
@@ -453,13 +453,13 @@ msgstr "Odtwarza nagrania dźwiękowe i wideo"
 msgid "Play/Pause"
 msgstr "Rozpoczyna/wstrzymuje odtwarzanie"
 
-#: ../data/desktop/parole.desktop.in.in.h:4 ../src/parole-player.c:2960
-#: ../src/parole-player.c:3184 ../src/plugins/notify/notify-provider.c:199
+#: ../data/desktop/parole.desktop.in.in.h:4 ../src/parole-player.c:2966
+#: ../src/parole-player.c:3190 ../src/plugins/notify/notify-provider.c:201
 msgid "Previous Track"
 msgstr "Przechodzi do poprzedniego nagrania"
 
-#: ../data/desktop/parole.desktop.in.in.h:5 ../src/parole-player.c:2968
-#: ../src/parole-player.c:3194 ../src/plugins/notify/notify-provider.c:209
+#: ../data/desktop/parole.desktop.in.in.h:5 ../src/parole-player.c:2974
+#: ../src/parole-player.c:3200

[Xfce4-commits] Fix build error introduced by commit 1585aecab8b5a89902d7bb13e8600f75935e559e

2014-01-21 Thread Simon Steinbeiss
Updating branch refs/heads/master
 to 9ae811828af98bcd4e6c1fd46dfc3e1fa7a1eb8e (commit)
   from da3858b3d513e7fac1298f55f963352c9061ff11 (commit)

commit 9ae811828af98bcd4e6c1fd46dfc3e1fa7a1eb8e
Author: Simon Steinbeiss 
Date:   Tue Jan 21 10:36:52 2014 +0100

Fix build error introduced by commit 
1585aecab8b5a89902d7bb13e8600f75935e559e

 configure.ac.in |2 ++
 1 file changed, 2 insertions(+)

diff --git a/configure.ac.in b/configure.ac.in
index 22b7c9d..8990738 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -251,6 +251,8 @@ data/icons/16x16/Makefile
 data/icons/24x24/Makefile
 data/icons/32x32/Makefile
 data/icons/48x48/Makefile
+data/icons/64x64/Makefile
+data/icons/128x128/Makefile
 data/icons/scalable/Makefile
 data/mime/Makefile
 data/desktop/Makefile
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits