[Xfce4-commits] [xfce/xfdesktop] branch master updated (2b4c627 - cfb4447)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a change to branch master
in repository xfce/xfdesktop.

  from  2b4c627   I18n: Update translation ms (100%).
   new  f89d6a6   Detect special icons in multiple selection
   new  64ef0f6   Disable rename menu entry for special icons
   new  0a0a6e8   Various mouse click behavior fixes
   new  1cf3a42   Prevent accidental double clicks in single click mode 
(Bug #10720)
   new  3317d34   Show sub directories in template menu
   new  f1498fa   Properly count and limit amount of template files
   new  95fd806   Add 'Paste Into Folder' context menu entry
   new  738005a   Set initial value of font size spin button
   new  a8cd502   Cleanup some tabs
   new  7f39f31   Center icons vertically in the grid (Bug #11086)
   new  488f116   Fix another warning
   new  731f6c9   Fix invalid g_source_remove() call
   new  cfb4447   trivial: remove unused variable

The 13 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 settings/main.c   |5 +-
 src/windowlist.c  |2 +-
 src/xfdesktop-file-icon-manager.c |  149 -
 src/xfdesktop-icon-view.c |   68 -
 4 files changed, 168 insertions(+), 56 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 09/13: Cleanup some tabs

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/xfdesktop.

commit a8cd502d4a2c445793de9abcda66651e11aa9f27
Author: Thaddaeus Tintenfisch thad.fi...@gmail.com
Date:   Mon Mar 2 20:06:38 2015 +0100

Cleanup some tabs

Signed-off-by: Eric Koegel eric.koe...@gmail.com
---
 src/windowlist.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/windowlist.c b/src/windowlist.c
index 11ae7c1..2b6d766 100644
--- a/src/windowlist.c
+++ b/src/windowlist.c
@@ -184,7 +184,7 @@ menu_item_from_wnck_window(WnckWindow *wnck_window, gint 
icon_width,
 tmp = gdk_pixbuf_copy(icon);
 /* minimized window, fade out app icon */
 gdk_pixbuf_saturate_and_pixelate(tmp, tmp, 0.55, TRUE);
-   }
+}
 
 if(tmp) {
 img = gtk_image_new_from_pixbuf(tmp);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 02/13: Disable rename menu entry for special icons

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/xfdesktop.

commit 64ef0f646c2b8c310828bbd33400305fe4bb63e2
Author: Thaddaeus Tintenfisch thad.fi...@gmail.com
Date:   Thu Feb 19 23:30:13 2015 +0100

Disable rename menu entry for special icons

Signed-off-by: Eric Koegel eric.koe...@gmail.com
---
 src/xfdesktop-file-icon-manager.c |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/xfdesktop-file-icon-manager.c 
b/src/xfdesktop-file-icon-manager.c
index 1abd18f..86c1979 100644
--- a/src/xfdesktop-file-icon-manager.c
+++ b/src/xfdesktop-file-icon-manager.c
@@ -1749,14 +1749,15 @@ 
xfdesktop_file_icon_manager_populate_context_menu(XfceDesktop *desktop,
 g_signal_connect(G_OBJECT(mi), activate,
  G_CALLBACK(xfdesktop_file_icon_menu_rename),
  fmanager);
-} else {
+} else if(multi_sel) {
 /* Bulk rename for multiple icons, the callback will
  * handle the situation where some icons selected can't
  * be renamed */
 g_signal_connect(G_OBJECT(mi), activate,
  G_CALLBACK(xfdesktop_file_icon_menu_rename),
  fmanager);
-}
+} else
+gtk_widget_set_sensitive(mi, FALSE);
 
 /* Separator */
 mi = gtk_separator_menu_item_new();

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 08/13: Set initial value of font size spin button

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/xfdesktop.

commit 738005a36fa9a76b9f8787404fb3d36962537aa8
Author: Thaddaeus Tintenfisch thad.fi...@gmail.com
Date:   Sun Mar 1 12:18:41 2015 +0100

Set initial value of font size spin button

Signed-off-by: Eric Koegel eric.koe...@gmail.com
---
 settings/main.c |1 +
 1 file changed, 1 insertion(+)

diff --git a/settings/main.c b/settings/main.c
index e3d234b..546f8e2 100644
--- a/settings/main.c
+++ b/settings/main.c
@@ -1729,6 +1729,7 @@ xfdesktop_settings_dialog_setup_tabs(GtkBuilder 
*main_gxml,
 chk_custom_font_size = GTK_WIDGET(gtk_builder_get_object(main_gxml,
  
chk_custom_font_size));
 spin_font_size = GTK_WIDGET(gtk_builder_get_object(main_gxml, 
spin_font_size));
+gtk_spin_button_set_value(GTK_SPIN_BUTTON(spin_font_size), 12);
 
 /* single click */
 chk_single_click = GTK_WIDGET(gtk_builder_get_object(main_gxml,

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 04/13: Prevent accidental double clicks in single click mode (Bug #10720)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/xfdesktop.

commit 1cf3a422ac21ac5e408f967d5424af9be914488f
Author: Thaddaeus Tintenfisch thad.fi...@gmail.com
Date:   Thu Feb 26 00:27:09 2015 +0100

Prevent accidental double clicks in single click mode (Bug #10720)

Signed-off-by: Eric Koegel eric.koe...@gmail.com
---
 src/xfdesktop-icon-view.c |   30 --
 1 file changed, 20 insertions(+), 10 deletions(-)

diff --git a/src/xfdesktop-icon-view.c b/src/xfdesktop-icon-view.c
index 6167cf7..a6a5cce 100644
--- a/src/xfdesktop-icon-view.c
+++ b/src/xfdesktop-icon-view.c
@@ -145,7 +145,8 @@ struct _XfdesktopIconViewPrivate
   definitely_dragging:1,
   allow_rubber_banding:1,
   definitely_rubber_banding:1,
-  control_click:1;
+  control_click:1,
+  double_click:1;
 gint press_start_x;
 gint press_start_y;
 GdkRectangle band_rect;
@@ -850,6 +851,14 @@ xfdesktop_icon_view_add_move_binding(GtkBindingSet 
*binding_set,
 }
 
 static gboolean
+xfdesktop_icon_view_get_single_click(XfdesktopIconView *icon_view)
+{
+g_return_val_if_fail(XFDESKTOP_IS_ICON_VIEW(icon_view), FALSE);
+
+return icon_view-priv-single_click;
+}
+
+static gboolean
 xfdesktop_icon_view_button_press(GtkWidget *widget,
  GdkEventButton *evt,
  gpointer user_data)
@@ -956,6 +965,13 @@ xfdesktop_icon_view_button_press(GtkWidget *widget,
 }
 }
 } else if(evt-type == GDK_2BUTTON_PRESS) {
+/* filter this event in single click mode */
+if(xfdesktop_icon_view_get_single_click(icon_view)) {
+icon_view-priv-double_click = TRUE;
+xfdesktop_icon_view_unselect_all(icon_view);
+return TRUE;
+}
+
 /* be sure to cancel any pending drags that might have snuck through.
  * this shouldn't happen, but it does sometimes (bug 3426).  */
 icon_view-priv-maybe_begin_drag = FALSE;
@@ -981,14 +997,6 @@ xfdesktop_icon_view_button_press(GtkWidget *widget,
 return FALSE;
 }
 
-static gboolean
-xfdesktop_icon_view_get_single_click(XfdesktopIconView *icon_view)
-{
-g_return_val_if_fail(XFDESKTOP_IS_ICON_VIEW(icon_view), FALSE);
-
-return icon_view-priv-single_click;
-}
-
 static gint
 xfdesktop_icon_view_get_tooltip_size(XfdesktopIconView *icon_view)
 {
@@ -1027,7 +1035,8 @@ xfdesktop_icon_view_button_release(GtkWidget *widget,
 !(evt-state  GDK_SHIFT_MASK)
 !(evt-state  GDK_CONTROL_MASK)
 !icon_view-priv-definitely_dragging
-!icon_view-priv-definitely_rubber_banding) {
+!icon_view-priv-definitely_rubber_banding
+!icon_view-priv-double_click) {
 /* Find out if we clicked on an icon */
 icon_l = g_list_find_custom(icon_view-priv-icons, evt,
 
(GCompareFunc)xfdesktop_check_icon_clicked);
@@ -1079,6 +1088,7 @@ xfdesktop_icon_view_button_release(GtkWidget *widget,
 if(evt-button == 1 || evt-button == 3) {
 DBG(unsetting stuff);
 icon_view-priv-control_click = FALSE;
+icon_view-priv-double_click = FALSE;
 icon_view-priv-maybe_begin_drag = FALSE;
 icon_view-priv-definitely_dragging = FALSE;
 if(icon_view-priv-definitely_rubber_banding) {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 06/13: Properly count and limit amount of template files

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/xfdesktop.

commit f1498fa0d7670190d754c4ba39286f525d3a637d
Author: Thaddaeus Tintenfisch thad.fi...@gmail.com
Date:   Sat Feb 28 19:20:52 2015 +0100

Properly count and limit amount of template files

Signed-off-by: Eric Koegel eric.koe...@gmail.com
---
 src/xfdesktop-file-icon-manager.c |   20 +++-
 1 file changed, 15 insertions(+), 5 deletions(-)

diff --git a/src/xfdesktop-file-icon-manager.c 
b/src/xfdesktop-file-icon-manager.c
index 0b2b37b..8355c95 100644
--- a/src/xfdesktop-file-icon-manager.c
+++ b/src/xfdesktop-file-icon-manager.c
@@ -151,6 +151,7 @@ struct _XfdesktopFileIconManagerPrivate
 XfdesktopThumbnailer *thumbnailer;
 
 guint max_templates;
+guint templates_count;
 };
 
 static void xfdesktop_file_icon_manager_set_property(GObject *object,
@@ -1198,7 +1199,8 @@ compare_template_files(gconstpointer a,
 static void
 xfdesktop_file_icon_menu_fill_template_menu(GtkWidget *menu,
 GFile *template_dir,
-XfdesktopFileIconManager *fmanager)
+XfdesktopFileIconManager *fmanager,
+gboolean recursive)
 {
 GFileEnumerator *enumerator;
 GtkWidget *item, *image, *submenu;
@@ -1219,11 +1221,16 @@ xfdesktop_file_icon_menu_fill_template_menu(GtkWidget 
*menu,
 if(enumerator == NULL)
 return;
 
+if(recursive == FALSE)
+fmanager-priv-templates_count = 0;
+
 /* keep it under fmanager-priv-max_templates otherwise the menu
  * could have tons of items and be unusable. Additionally this should
  * help in instances where the XDG_TEMPLATES_DIR has a large number of
  * files in it. */
-while((info = g_file_enumerator_next_file(enumerator, NULL, NULL))  
items  fmanager-priv-max_templates) {
+while((info = g_file_enumerator_next_file(enumerator, NULL, NULL))
+   fmanager-priv-templates_count  fmanager-priv-max_templates)
+{
 /* skip hidden  backup files */
 if(g_file_info_get_is_hidden(info) || g_file_info_get_is_backup(info)) 
{
 g_object_unref(info);
@@ -1234,7 +1241,8 @@ xfdesktop_file_icon_menu_fill_template_menu(GtkWidget 
*menu,
 g_object_set_data_full(G_OBJECT(file), info, info, g_object_unref);
 files = g_list_prepend(files, file);
 
-items++;
+if(g_file_info_get_file_type(info) != G_FILE_TYPE_DIRECTORY)
+fmanager-priv-templates_count++;
 }
 
 g_object_unref(enumerator);
@@ -1249,7 +1257,8 @@ xfdesktop_file_icon_menu_fill_template_menu(GtkWidget 
*menu,
 if(g_file_info_get_file_type(info) == G_FILE_TYPE_DIRECTORY) {
 submenu = gtk_menu_new();
 
-xfdesktop_file_icon_menu_fill_template_menu(submenu, file, 
fmanager);
+xfdesktop_file_icon_menu_fill_template_menu(submenu, file,
+fmanager, TRUE);
 
 if(!gtk_container_get_children((GtkContainer*) submenu)) {
 g_object_unref(file);
@@ -1503,7 +1512,8 @@ 
xfdesktop_file_icon_manager_populate_context_menu(XfceDesktop *desktop,
 if(templates_dir  !g_file_equal(home_dir, 
templates_dir)) {
 
xfdesktop_file_icon_menu_fill_template_menu(tmpl_menu,
 
templates_dir,
-
fmanager);
+
fmanager,
+FALSE);
 }
 
 if(!gtk_container_get_children((GtkContainer*) 
tmpl_menu)) {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 05/13: Show sub directories in template menu

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/xfdesktop.

commit 3317d343085f0d796532e8641e6ce3a0cdd89d38
Author: Thaddaeus Tintenfisch thad.fi...@gmail.com
Date:   Thu Feb 26 22:35:02 2015 +0100

Show sub directories in template menu

Signed-off-by: Eric Koegel eric.koe...@gmail.com
---
 src/xfdesktop-file-icon-manager.c |   36 +++-
 1 file changed, 23 insertions(+), 13 deletions(-)

diff --git a/src/xfdesktop-file-icon-manager.c 
b/src/xfdesktop-file-icon-manager.c
index 86c1979..0b2b37b 100644
--- a/src/xfdesktop-file-icon-manager.c
+++ b/src/xfdesktop-file-icon-manager.c
@@ -1201,7 +1201,7 @@ xfdesktop_file_icon_menu_fill_template_menu(GtkWidget 
*menu,
 XfdesktopFileIconManager *fmanager)
 {
 GFileEnumerator *enumerator;
-GtkWidget *item, *image;
+GtkWidget *item, *image, *submenu;
 GFileInfo *info;
 GFile *file;
 GIcon *icon;
@@ -1224,12 +1224,6 @@ xfdesktop_file_icon_menu_fill_template_menu(GtkWidget 
*menu,
  * help in instances where the XDG_TEMPLATES_DIR has a large number of
  * files in it. */
 while((info = g_file_enumerator_next_file(enumerator, NULL, NULL))  
items  fmanager-priv-max_templates) {
-/* Skip directories */
-if(g_file_info_get_file_type(info) == G_FILE_TYPE_DIRECTORY) {
-   g_object_unref(info);
-   continue;
-}
-
 /* skip hidden  backup files */
 if(g_file_info_get_is_hidden(info) || g_file_info_get_is_backup(info)) 
{
 g_object_unref(info);
@@ -1251,6 +1245,18 @@ xfdesktop_file_icon_menu_fill_template_menu(GtkWidget 
*menu,
 file = lp-data;
 info = g_object_get_data(G_OBJECT(file), info);
 
+/* create and fill template submenu */
+if(g_file_info_get_file_type(info) == G_FILE_TYPE_DIRECTORY) {
+submenu = gtk_menu_new();
+
+xfdesktop_file_icon_menu_fill_template_menu(submenu, file, 
fmanager);
+
+if(!gtk_container_get_children((GtkContainer*) submenu)) {
+g_object_unref(file);
+continue;
+}
+}
+
 /* generate a label by stripping off the extension */
 label = g_strdup(g_file_info_get_display_name(info));
 dot = g_utf8_strrchr(label, -1, '.');
@@ -1267,15 +1273,19 @@ xfdesktop_file_icon_menu_fill_template_menu(GtkWidget 
*menu,
 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(item), image);
 
 /* add the item to the menu */
-gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
 gtk_widget_show(item);
+gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
 
-g_object_set_data_full(G_OBJECT(item), file,
-   g_object_ref(file), g_object_unref);
+if(g_file_info_get_file_type(info) == G_FILE_TYPE_DIRECTORY)
+gtk_menu_item_set_submenu(GTK_MENU_ITEM(item), submenu);
+else {
+g_object_set_data_full(G_OBJECT(item), file,
+   g_object_ref(file), g_object_unref);
 
-g_signal_connect(G_OBJECT(item), activate,
- 
G_CALLBACK(xfdesktop_file_icon_template_item_activated),
- fmanager);
+g_signal_connect(G_OBJECT(item), activate,
+ 
G_CALLBACK(xfdesktop_file_icon_template_item_activated),
+ fmanager);
+}
 
 g_object_unref(file);
 }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 11/13: Fix another warning

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/xfdesktop.

commit 488f11607c7a73d543986832fdfac8cc198798cb
Author: Thaddaeus Tintenfisch thad.fi...@gmail.com
Date:   Tue Mar 3 01:09:08 2015 +0100

Fix another warning

instance of invalid non-instantiatable type 'XfdesktopFileIconManager'

Signed-off-by: Eric Koegel eric.koe...@gmail.com
---
 src/xfdesktop-file-icon-manager.c |9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/src/xfdesktop-file-icon-manager.c 
b/src/xfdesktop-file-icon-manager.c
index 5eba11f..31de677 100644
--- a/src/xfdesktop-file-icon-manager.c
+++ b/src/xfdesktop-file-icon-manager.c
@@ -2190,7 +2190,6 @@ icon_view_resized(XfdesktopIconView *icon_view,
 {
 GQueue *new_queue;
 XfdesktopIcon *icon;
-XfdesktopFileIconManagerPrivate *priv = 
XFDESKTOP_FILE_ICON_MANAGER_GET_PRIVATE(fmanager);
 const gchar *name;
 gchar *identifier;
 gint16 row, col;
@@ -2201,12 +2200,12 @@ icon_view_resized(XfdesktopIconView *icon_view,
 return;
 
 /* No pending icons, nothing to do */
-if(priv == NULL || priv-pending_icons == NULL || 
g_queue_is_empty(priv-pending_icons))
+if(fmanager-priv-pending_icons == NULL || 
g_queue_is_empty(fmanager-priv-pending_icons))
 return;
 
 new_queue = g_queue_new();
 
-while((icon = g_queue_pop_head(priv-pending_icons))) {
+while((icon = g_queue_pop_head(fmanager-priv-pending_icons))) {
 name = xfdesktop_icon_peek_label(XFDESKTOP_ICON(icon));
 identifier = xfdesktop_icon_get_identifier(XFDESKTOP_ICON(icon));
 
@@ -2231,8 +2230,8 @@ icon_view_resized(XfdesktopIconView *icon_view,
 }
 
 /* Free the old queue and replace it with the new one */
-g_queue_free(priv-pending_icons);
-priv-pending_icons = new_queue;
+g_queue_free(fmanager-priv-pending_icons);
+fmanager-priv-pending_icons = new_queue;
 }
 
 static void

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 01/13: Detect special icons in multiple selection

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/xfdesktop.

commit f89d6a697bd216349d306e16fb82924e058f2e89
Author: Thaddaeus Tintenfisch thad.fi...@gmail.com
Date:   Thu Feb 19 22:43:27 2015 +0100

Detect special icons in multiple selection

Signed-off-by: Eric Koegel eric.koe...@gmail.com
---
 src/xfdesktop-file-icon-manager.c |   35 ++-
 1 file changed, 26 insertions(+), 9 deletions(-)

diff --git a/src/xfdesktop-file-icon-manager.c 
b/src/xfdesktop-file-icon-manager.c
index 088c9ab..1abd18f 100644
--- a/src/xfdesktop-file-icon-manager.c
+++ b/src/xfdesktop-file-icon-manager.c
@@ -1339,7 +1339,7 @@ 
xfdesktop_file_icon_manager_populate_context_menu(XfceDesktop *desktop,
 GFileInfo *info = NULL;
 GList *selected, *app_infos, *l;
 GtkWidget *mi, *img, *tmpl_menu;
-gboolean multi_sel, got_custom_menu = FALSE;
+gboolean multi_sel, multi_sel_special = FALSE, got_custom_menu = FALSE;
 GFile *templates_dir = NULL, *home_dir;
 const gchar *templates_dir_path = NULL;
 #ifdef HAVE_THUNARX
@@ -1360,6 +1360,18 @@ 
xfdesktop_file_icon_manager_populate_context_menu(XfceDesktop *desktop,
 
 multi_sel = (g_list_length(selected)  1);
 
+if(multi_sel) {
+/* check if special icons are selected */
+for(l = selected; l != NULL; l = l-next) {
+if(XFDESKTOP_IS_SPECIAL_FILE_ICON(l-data)
+   || XFDESKTOP_IS_VOLUME_ICON(l-data))
+{
+multi_sel_special = TRUE;
+break;
+}
+}
+}
+
 if(!multi_sel) {
 got_custom_menu = 
xfdesktop_icon_populate_context_menu(XFDESKTOP_ICON(selected-data),

GTK_WIDGET(menu));
@@ -1665,8 +1677,13 @@ 
xfdesktop_file_icon_manager_populate_context_menu(XfceDesktop *desktop,
  G_CALLBACK(xfdesktop_file_icon_menu_paste),
  fmanager);
 } else
-gtk_widget_set_sensitive(mi, FALSE);
-} else if(info) {
+gtk_widget_set_sensitive(mi, FALSE);
+
+/* Separator */
+mi = gtk_separator_menu_item_new();
+gtk_widget_show(mi);
+gtk_menu_shell_append(GTK_MENU_SHELL(menu), mi);
+} else if(!multi_sel_special) {
 /* Menu popup on an icon */
 /* Cut */
 mi = gtk_image_menu_item_new_from_stock(GTK_STOCK_CUT, NULL);
@@ -1740,15 +1757,15 @@ 
xfdesktop_file_icon_manager_populate_context_menu(XfceDesktop *desktop,
  G_CALLBACK(xfdesktop_file_icon_menu_rename),
  fmanager);
 }
-}
 
-/* Separator */
-mi = gtk_separator_menu_item_new();
-gtk_widget_show(mi);
-gtk_menu_shell_append(GTK_MENU_SHELL(menu), mi);
+/* Separator */
+mi = gtk_separator_menu_item_new();
+gtk_widget_show(mi);
+gtk_menu_shell_append(GTK_MENU_SHELL(menu), mi);
+}
 
 #ifdef HAVE_THUNARX
-if(info  fmanager-priv-thunarx_menu_providers) {
+if(!multi_sel_special  fmanager-priv-thunarx_menu_providers) {
 GList *menu_actions = NULL;
 ThunarxMenuProvider *provider;
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 12/13: Fix invalid g_source_remove() call

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/xfdesktop.

commit 731f6c95dd36cfb505c030c91e0fe6044be17735
Author: Thaddaeus Tintenfisch thad.fi...@gmail.com
Date:   Tue Mar 3 16:01:26 2015 +0100

Fix invalid g_source_remove() call

If the timeout already expired, then the following error would occur:
  GLib-CRITICAL **: Source ID 123 was not found when attempting to
  remove it

Signed-off-by: Eric Koegel eric.koe...@gmail.com
---
 settings/main.c |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/settings/main.c b/settings/main.c
index 546f8e2..1f106ba 100644
--- a/settings/main.c
+++ b/settings/main.c
@@ -1033,6 +1033,8 @@ xfdesktop_spin_icon_size_timer(GtkSpinButton *button)
 DESKTOP_ICONS_ICON_SIZE_PROP,
 gtk_spin_button_get_value(button));
 
+g_object_set_data(G_OBJECT(button), timer-id, NULL);
+
 return FALSE;
 }
 
@@ -2055,7 +2057,7 @@ main(int argc, char **argv)
 
 if(G_UNLIKELY(opt_version)) {
 g_print(%s %s (Xfce %s)\n\n, G_LOG_DOMAIN, VERSION, 
xfce_version_string());
-g_print(%s\n, Copyright (c) 2004-2013);
+g_print(%s\n, Copyright (c) 2004-2015);
 g_print(\t%s\n\n, _(The Xfce development team. All rights 
reserved.));
 g_print(_(Please report bugs to %s.), PACKAGE_BUGREPORT);
 g_print(\n);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 07/13: Add 'Paste Into Folder' context menu entry

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/xfdesktop.

commit 95fd806ca26129bcdd497fbcfdb2c937f2b0a1f3
Author: Thaddaeus Tintenfisch thad.fi...@gmail.com
Date:   Fri Feb 27 19:05:20 2015 +0100

Add 'Paste Into Folder' context menu entry

Signed-off-by: Eric Koegel eric.koe...@gmail.com
---
 src/xfdesktop-file-icon-manager.c |   45 +
 1 file changed, 45 insertions(+)

diff --git a/src/xfdesktop-file-icon-manager.c 
b/src/xfdesktop-file-icon-manager.c
index 8355c95..5eba11f 100644
--- a/src/xfdesktop-file-icon-manager.c
+++ b/src/xfdesktop-file-icon-manager.c
@@ -993,6 +993,32 @@ xfdesktop_file_icon_menu_paste(GtkWidget *widget,
 }
 
 static void
+xfdesktop_file_icon_menu_paste_into_folder(GtkWidget *widget,
+   gpointer user_data)
+{
+XfdesktopFileIconManager *fmanager = 
XFDESKTOP_FILE_ICON_MANAGER(user_data);
+XfdesktopFileIcon *icon;
+GFileInfo *info;
+GFile *file;
+GList *selected;
+
+selected = 
xfdesktop_icon_view_get_selected_items(fmanager-priv-icon_view);
+g_return_if_fail(g_list_length(selected) == 1);
+icon = XFDESKTOP_FILE_ICON(selected-data);
+g_list_free(selected);
+
+info = xfdesktop_file_icon_peek_file_info(icon);
+
+if(g_file_info_get_file_type(info) != G_FILE_TYPE_DIRECTORY)
+return;
+
+file = xfdesktop_file_icon_peek_file(icon);
+
+if(widget  fmanager)
+xfdesktop_clipboard_manager_paste_files(clipboard_manager, file, 
widget, NULL);
+}
+
+static void
 xfdesktop_file_icon_menu_arrange_icons(GtkWidget *widget,
gpointer user_data)
 {
@@ -1724,6 +1750,25 @@ 
xfdesktop_file_icon_manager_populate_context_menu(XfceDesktop *desktop,
  G_CALLBACK(xfdesktop_file_icon_menu_copy),
  fmanager);
 
+/* Paste Into Folder */
+if(!multi_sel  info) {
+if(g_file_info_get_file_type(info) == G_FILE_TYPE_DIRECTORY
+g_file_info_get_attribute_boolean(info, 
G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE)) {
+img = gtk_image_new_from_stock(GTK_STOCK_PASTE, 
GTK_ICON_SIZE_MENU);
+gtk_widget_show(img);
+mi = gtk_image_menu_item_new_with_mnemonic(_(Paste Into 
Folder));
+gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(mi), 
img);
+gtk_widget_show(mi);
+gtk_menu_shell_append(GTK_MENU_SHELL(menu), mi);
+
if(xfdesktop_clipboard_manager_get_can_paste(clipboard_manager)) {
+g_signal_connect(G_OBJECT(mi), activate,
+ 
G_CALLBACK(xfdesktop_file_icon_menu_paste_into_folder),
+ fmanager);
+} else
+gtk_widget_set_sensitive(mi, FALSE);
+}
+}
+
 /* Separator */
 mi = gtk_separator_menu_item_new();
 gtk_widget_show(mi);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 10/13: Center icons vertically in the grid (Bug #11086)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/xfdesktop.

commit 7f39f313895f4678f06f24519eab5486371f9360
Author: Thaddaeus Tintenfisch thad.fi...@gmail.com
Date:   Mon Mar 2 22:06:27 2015 +0100

Center icons vertically in the grid (Bug #11086)

Signed-off-by: Eric Koegel eric.koe...@gmail.com
---
 src/xfdesktop-icon-view.c |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/xfdesktop-icon-view.c b/src/xfdesktop-icon-view.c
index a6a5cce..4670ac3 100644
--- a/src/xfdesktop-icon-view.c
+++ b/src/xfdesktop-icon-view.c
@@ -2810,7 +2810,7 @@ 
xfdesktop_icon_view_invalidate_icon_pixbuf(XfdesktopIconView *icon_view,
 return;
 
 rect.x += CELL_PADDING + ((CELL_SIZE - 2 * CELL_PADDING) - rect.width) 
/ 2;
-rect.y += CELL_PADDING;
+rect.y += CELL_PADDING + (ICON_SIZE - rect.height) / 2;;
 
 if(gtk_widget_get_realized(GTK_WIDGET(icon_view))) {
 gtk_widget_queue_draw_area(GTK_WIDGET(icon_view), rect.x, rect.y,
@@ -3001,7 +3001,7 @@ xfdesktop_icon_view_update_icon_extents(XfdesktopIconView 
*icon_view,
 return FALSE;
 }
 pixbuf_extents-x += CELL_PADDING + ((CELL_SIZE - CELL_PADDING * 2) - 
pixbuf_extents-width) / 2;
-pixbuf_extents-y += CELL_PADDING;
+pixbuf_extents-y += CELL_PADDING + (ICON_SIZE - pixbuf_extents-height) / 
2;
 
 if(!xfdesktop_icon_view_calculate_icon_text_area(icon_view, icon, 
text_extents))
 return FALSE;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 03/13: Various mouse click behavior fixes

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/xfdesktop.

commit 0a0a6e81e5404798fb1fac68f6c8d7f32df13854
Author: Thaddaeus Tintenfisch thad.fi...@gmail.com
Date:   Wed Feb 25 12:53:12 2015 +0100

Various mouse click behavior fixes

Unselect a selected icon on button release while Control is pressed.
This fixes a problem which is triggered by dragging a selected icon.

Signed-off-by: Eric Koegel eric.koe...@gmail.com
---
 src/xfdesktop-icon-view.c |   36 +++-
 1 file changed, 27 insertions(+), 9 deletions(-)

diff --git a/src/xfdesktop-icon-view.c b/src/xfdesktop-icon-view.c
index 36b5660..6167cf7 100644
--- a/src/xfdesktop-icon-view.c
+++ b/src/xfdesktop-icon-view.c
@@ -144,7 +144,8 @@ struct _XfdesktopIconViewPrivate
 guint maybe_begin_drag:1,
   definitely_dragging:1,
   allow_rubber_banding:1,
-  definitely_rubber_banding:1;
+  definitely_rubber_banding:1,
+  control_click:1;
 gint press_start_x;
 gint press_start_y;
 GdkRectangle band_rect;
@@ -880,10 +881,8 @@ xfdesktop_icon_view_button_press(GtkWidget *widget,
 if(xfdesktop_icon_view_is_icon_selected(icon_view, icon)) {
 /* clicked an already-selected icon */
 
-if(evt-state  GDK_CONTROL_MASK) {
-/* unselect */
-xfdesktop_icon_view_unselect_item(icon_view, icon);
-}
+if(evt-state  GDK_CONTROL_MASK)
+icon_view-priv-control_click = TRUE;
 
 icon_view-priv-cursor = icon;
 } else {
@@ -940,7 +939,9 @@ xfdesktop_icon_view_button_press(GtkWidget *widget,
 icon_view-priv-cursor = NULL;
 icon_view-priv-first_clicked_item = NULL;
 
-if(icon_view-priv-allow_rubber_banding  evt-button == 1) {
+if(icon_view-priv-allow_rubber_banding  evt-button == 1
+!(evt-state  GDK_SHIFT_MASK))
+{
 icon_view-priv-maybe_begin_drag = TRUE;
 icon_view-priv-definitely_dragging = FALSE;
 icon_view-priv-press_start_x = evt-x;
@@ -957,8 +958,8 @@ xfdesktop_icon_view_button_press(GtkWidget *widget,
 } else if(evt-type == GDK_2BUTTON_PRESS) {
 /* be sure to cancel any pending drags that might have snuck through.
  * this shouldn't happen, but it does sometimes (bug 3426).  */
-icon_view-priv-definitely_dragging = FALSE;
 icon_view-priv-maybe_begin_drag = FALSE;
+icon_view-priv-definitely_dragging = FALSE;
 icon_view-priv-definitely_rubber_banding = FALSE;
 
 if(evt-button == 1) {
@@ -969,7 +970,8 @@ xfdesktop_icon_view_button_press(GtkWidget *widget,
 g_signal_emit(G_OBJECT(icon_view), 
__signals[SIG_ICON_ACTIVATED],
   0, NULL);
 xfdesktop_icon_activated(icon);
-xfdesktop_icon_view_unselect_item(icon_view, icon);
+//xfdesktop_icon_view_unselect_item(icon_view, icon);
+xfdesktop_icon_view_unselect_all(icon_view);
 }
 }
 
@@ -1059,10 +1061,26 @@ xfdesktop_icon_view_button_release(GtkWidget *widget,
 xfce_desktop_popup_root_menu(XFCE_DESKTOP(widget), 0, evt-time);
 }
 
+if(evt-button == 1  evt-state  GDK_CONTROL_MASK
+icon_view-priv-control_click)
+{
+icon_l = g_list_find_custom(icon_view-priv-icons, evt,
+
(GCompareFunc)xfdesktop_check_icon_clicked);
+if(icon_l  (icon = icon_l-data)) {
+if(xfdesktop_icon_view_is_icon_selected(icon_view, icon)) {
+/* clicked an already-selected icon */
+
+/* unselect */
+xfdesktop_icon_view_unselect_item(icon_view, icon);
+}
+}
+}
+
 if(evt-button == 1 || evt-button == 3) {
 DBG(unsetting stuff);
-icon_view-priv-definitely_dragging = FALSE;
+icon_view-priv-control_click = FALSE;
 icon_view-priv-maybe_begin_drag = FALSE;
+icon_view-priv-definitely_dragging = FALSE;
 if(icon_view-priv-definitely_rubber_banding) {
 /* Remove the rubber band selection box */
 icon_view-priv-definitely_rubber_banding = FALSE;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 13/13: trivial: remove unused variable

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/xfdesktop.

commit cfb4447ece472e0dad606fe7e686d95c6a03ea01
Author: Eric Koegel eric.koe...@gmail.com
Date:   Tue Mar 3 20:10:33 2015 +0300

trivial: remove unused variable
---
 src/xfdesktop-file-icon-manager.c |1 -
 1 file changed, 1 deletion(-)

diff --git a/src/xfdesktop-file-icon-manager.c 
b/src/xfdesktop-file-icon-manager.c
index 31de677..d65e161 100644
--- a/src/xfdesktop-file-icon-manager.c
+++ b/src/xfdesktop-file-icon-manager.c
@@ -1235,7 +1235,6 @@ xfdesktop_file_icon_menu_fill_template_menu(GtkWidget 
*menu,
 GIcon *icon;
 GList *files = NULL, *lp;
 gchar *label, *dot;
-guint items = 0;
 
 g_return_if_fail(G_IS_FILE(template_dir));
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/exo] branch master updated (c33c220 - 351697d)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/exo.

  from  c33c220   I18n: Update translation pl (99%).
   new  351697d   I18n: Update translation de (100%).

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/de.po |   24 
 1 file changed, 12 insertions(+), 12 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/gtk-xfce-engine] 03/03: Post release tag bump.

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

peter pushed a commit to branch master-gtk2
in repository xfce/gtk-xfce-engine.

commit f679cdb6de193442598b21450f5c5fc1b2f1da85
Author: Peter de Ridder pe...@xfce.org
Date:   Tue Mar 3 20:44:05 2015 +0100

Post release tag bump.
---
 configure.ac.in |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac.in b/configure.ac.in
index f9f7268..f629e42 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -10,7 +10,7 @@ m4_define([gtk_xfce_engine_version_minor], [10])
 m4_define([gtk_xfce_engine_version_micro], [1])
 m4_define([gtk_xfce_engine_version_nano],  []) dnl leave this empty to have no 
nano version
 m4_define([gtk_xfce_engine_version_build], [@REVISION@])
-m4_define([gtk_xfce_engine_version_tag],   [])
+m4_define([gtk_xfce_engine_version_tag],   [git])
 m4_define([gtk_xfce_engine_version], 
[gtk_xfce_engine_version_major().gtk_xfce_engine_version_minor().gtk_xfce_engine_version_micro()ifelse(gtk_xfce_engine_version_nano(),
 [], [], 
[.gtk_xfce_engine_version_nano()])ifelse(gtk_xfce_engine_version_tag(), [git], 
[gtk_xfce_engine_version_tag()-gtk_xfce_engine_version_build()], 
[gtk_xfce_engine_version_tag()])])
 
 dnl ***

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/gtk-xfce-engine] branch master-gtk2 updated (7e852e4 - f679cdb)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

peter pushed a change to branch master-gtk2
in repository xfce/gtk-xfce-engine.

  from  7e852e4   Post release tag bump.
   new  1e62259   Fixed installation of Xfce-flat theme
   new  187e8c6   Release 2.10.1!
   new  f679cdb   Post release tag bump.

The 3 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 NEWS|4 
 configure.ac.in |4 ++--
 themes/flat/Makefile.am |3 +--
 3 files changed, 7 insertions(+), 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/gtk-xfce-engine] annotated tag gtk-xfce-engine-2.10.1 created (now d8f4d3d)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

peter pushed a change to annotated tag gtk-xfce-engine-2.10.1
in repository xfce/gtk-xfce-engine.

at  d8f4d3d   (tag)
   tagging  187e8c6150fbc91eaf0227bcd2426419b55ac76c (commit)
  replaces  gtk-xfce-engine-2.10.0
 tagged by  Peter de Ridder
on  Tue Mar 3 20:43:11 2015 +0100

- Log -
2.10.1
==
- Fix installation of Xfce-flat theme
---

No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/gtk-xfce-engine] 01/03: Fixed installation of Xfce-flat theme

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

peter pushed a commit to branch master-gtk2
in repository xfce/gtk-xfce-engine.

commit 1e62259f83061dcccdd2443095ac274185a57759
Author: Peter de Ridder pe...@xfce.org
Date:   Tue Mar 3 20:39:52 2015 +0100

Fixed installation of Xfce-flat theme
---
 themes/flat/Makefile.am |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/themes/flat/Makefile.am b/themes/flat/Makefile.am
index 4c396c3..f81465f 100644
--- a/themes/flat/Makefile.am
+++ b/themes/flat/Makefile.am
@@ -1,4 +1,3 @@
-SUBDIRS = $(GTK_SUBDIRS)
-DIST_SUBDIRS = gtk-2.0
+SUBDIRS = gtk-2.0
 themedir = $(datadir)/themes/Xfce-flat
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/gtk-xfce-engine] 02/03: Release 2.10.1!

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

peter pushed a commit to branch master-gtk2
in repository xfce/gtk-xfce-engine.

commit 187e8c6150fbc91eaf0227bcd2426419b55ac76c
Author: Peter de Ridder pe...@xfce.org
Date:   Tue Mar 3 20:41:48 2015 +0100

Release 2.10.1!
---
 NEWS|4 
 configure.ac.in |6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 324863d..3f0c6fa 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+2.10.1
+==
+- Fix installation of Xfce-flat theme
+
 2.10.0
 ==
 - Add new theme Xfce-flat
diff --git a/configure.ac.in b/configure.ac.in
index ba0295b..f9f7268 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -1,5 +1,5 @@
 dnl
-dnl Copyright (c) 2004-2011 The Xfce development team
+dnl Copyright (c) 2004-2015 The Xfce development team
 dnl
 
 dnl ***
@@ -7,10 +7,10 @@ dnl *** Version information ***
 dnl ***
 m4_define([gtk_xfce_engine_version_major], [2])
 m4_define([gtk_xfce_engine_version_minor], [10])
-m4_define([gtk_xfce_engine_version_micro], [0])
+m4_define([gtk_xfce_engine_version_micro], [1])
 m4_define([gtk_xfce_engine_version_nano],  []) dnl leave this empty to have no 
nano version
 m4_define([gtk_xfce_engine_version_build], [@REVISION@])
-m4_define([gtk_xfce_engine_version_tag],   [git])
+m4_define([gtk_xfce_engine_version_tag],   [])
 m4_define([gtk_xfce_engine_version], 
[gtk_xfce_engine_version_major().gtk_xfce_engine_version_minor().gtk_xfce_engine_version_micro()ifelse(gtk_xfce_engine_version_nano(),
 [], [], 
[.gtk_xfce_engine_version_nano()])ifelse(gtk_xfce_engine_version_tag(), [git], 
[gtk_xfce_engine_version_tag()-gtk_xfce_engine_version_build()], 
[gtk_xfce_engine_version_tag()])])
 
 dnl ***

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-diskperf-plugin] 01/01: updates for release

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

landry pushed a commit to branch master
in repository panel-plugins/xfce4-diskperf-plugin.

commit 6130ac592a679df1b51c891a0545eadca79f6ccd
Author: Landry Breuil lan...@xfce.org
Date:   Tue Mar 3 21:12:08 2015 +0100

updates for release
---
 NEWS|   10 ++
 configure.ac.in |4 ++--
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index f12f1a6..946205b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,14 @@
+2.5.5 (2015/3/3):
+-
+* Use the new GtkTooltip API
+* Fix a memory leak in the FreeBSD codepath (#11153)
+* Add support for FreeBSD (bug #10350)
+* New translations: th, ms, bg, oc, hr, en_AU, sr
+* Updated translations: ar, ast, bg, cs, de, es, fr, it,
+  hr, hu. ko, nb, nl, ug, pl, sv, tr, zh_CN, zh_TW
+
 2.5.4 (2012/6/30):
+-
  * Better compliance with panel plugin HIG
  * Use double values for progress bars (bug #8882)
  * Facilitate bringing up the configuration dialog (bug #8899)
diff --git a/configure.ac.in b/configure.ac.in
index 074dbbe..e48804b 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -5,7 +5,7 @@ dnl
 
 m4_define([diskperf_version_major], [2])
 m4_define([diskperf_version_minor], [5])
-m4_define([diskperf_version_micro], [4])
+m4_define([diskperf_version_micro], [5])
 m4_define([diskperf_version_build], [@REVISION@])
 m4_define([diskperf_version_tag], []) # leave empty for releases
 m4_define([diskperf_version], 
[diskperf_version_major().diskperf_version_minor().diskperf_version_micro()ifelse(diskperf_version_tag(),
 [git], [diskperf_version_tag()-diskperf_version_build()], 
[diskperf_version_tag()])])
@@ -32,7 +32,7 @@ dnl 
 AC_PROG_CC_C99()
 AC_PROG_LD()
 AC_PROG_INSTALL()
-AC_PROG_INTLTOOL()
+IT_PROG_INTLTOOL([0.35.0])
 
 LT_PREREQ([2.2.6])
 LT_INIT([disable-static])

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-fsguard-plugin] 01/01: updates for release

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

landry pushed a commit to branch master
in repository panel-plugins/xfce4-fsguard-plugin.

commit 8ca95f3142258f97e555c224f27ba4dc274abb75
Author: Landry Breuil lan...@xfce.org
Date:   Tue Mar 3 21:25:28 2015 +0100

updates for release
---
 Makefile.am |6 --
 NEWS|7 +++
 configure.ac.in |   17 +++--
 3 files changed, 10 insertions(+), 20 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 56a8346..647f7d3 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -8,12 +8,6 @@ SUBDIRS =  
\
 distclean-local:
rm -rf *.cache *~
 
-dist-bz2: dist
-   zcat $(PACKAGE)-$(VERSION).tar.gz | bzip2 --best -c  
$(PACKAGE)-$(VERSION).tar.bz2
-
-distcheck-bz2: distcheck
-   zcat $(PACKAGE)-$(VERSION).tar.gz | bzip2 --best -c  
$(PACKAGE)-$(VERSION).tar.bz2
-
 .PHONY: ChangeLog
 
 ChangeLog: Makefile
diff --git a/NEWS b/NEWS
index d83aba2..d643ce2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,10 @@
+20150303 (1.0.2):
+-
+
+  * Properly resize image _and_ btn so that the image is not shrinked
+  * New translations: th, ms, bg, oc, is, sl, en_AU
+  * Updated translations: ast, de, es, fr, it, hr, nl, pl, tr, ug
+
 20120630 (1.0.1):
 -
 
diff --git a/configure.ac.in b/configure.ac.in
index c02dbb3..64c8f73 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -6,7 +6,7 @@ dnl
 
 m4_define([xfce4_fsguard_plugin_version_major], [1])
 m4_define([xfce4_fsguard_plugin_version_minor], [0])
-m4_define([xfce4_fsguard_plugin_version_micro], [1])
+m4_define([xfce4_fsguard_plugin_version_micro], [2])
 m4_define([xfce4_fsguard_plugin_version_nano], [])
 m4_define([xfce4_fsguard_plugin_version_build], [@REVISION@])
 m4_define([xfce4_fsguard_plugin_version_tag], []) # Leave empty for releases
@@ -16,25 +16,14 @@ m4_define([xfce4_fsguard_plugin_version], 
[xfce4_fsguard_plugin_version_major().
 AC_INIT([Free Space Checker], [xfce4_fsguard_plugin_version], 
[http://bugzilla.xfce.org/], [xfce4-fsguard-plugin],
[http://goodies.xfce.org/projects/panel-plugins/xfce4-fsguard-plugin])
 
-AM_INIT_AUTOMAKE([xfce4-fsguard-plugin], [xfce4_fsguard_plugin_version()])
+AM_INIT_AUTOMAKE([1.8 dist-bzip2 tar-ustar])
 AM_CONFIG_HEADER([config.h])
 AM_MAINTAINER_MODE
 
-dnl Avoid g77 and g++ checks
-m4_undefine([AC_PROG_CXX])
-m4_defun([AC_PROG_CXX],[])
-m4_undefine([AC_PROG_F77])
-m4_defun([AC_PROG_F77],[])
-
-dnl Check for UNIX variants
-AC_AIX
-AC_ISC_POSIX
-AC_MINIX
-
 dnl Check for basic programs
 AC_PROG_CC
 AC_PROG_INSTALL
-AC_PROG_INTLTOOL
+IT_PROG_INTLTOOL([0.35.0])
 
 dnl Initialize libtool
 LT_PREREQ([2.2.6])

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-diskperf-plugin] annotated tag 2.5.5 created (now 8db96e9)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

landry pushed a change to annotated tag 2.5.5
in repository panel-plugins/xfce4-diskperf-plugin.

at  8db96e9   (tag)
   tagging  6130ac592a679df1b51c891a0545eadca79f6ccd (commit)
  replaces  2.5.4
 tagged by  Landry Breuil
on  Tue Mar 3 21:12:24 2015 +0100

- Log -
* Use the new GtkTooltip API
* Fix a memory leak in the FreeBSD codepath (#11153)
* Add support for FreeBSD (bug #10350)
* New translations: th, ms, bg, oc, hr, en_AU, sr
* Updated translations: ar, ast, bg, cs, de, es, fr, it,
  hr, hu. ko, nb, nl, ug, pl, sv, tr, zh_CN, zh_TW
---

No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-diskperf-plugin] branch master updated (768a168 - 6130ac5)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

landry pushed a change to branch master
in repository panel-plugins/xfce4-diskperf-plugin.

  from  768a168   Use the new GtkTooltip API
   new  6130ac5   updates for release

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 NEWS|   10 ++
 configure.ac.in |4 ++--
 2 files changed, 12 insertions(+), 2 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-fsguard-plugin] annotated tag 1.0.2 created (now 9d73594)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

landry pushed a change to annotated tag 1.0.2
in repository panel-plugins/xfce4-fsguard-plugin.

at  9d73594   (tag)
   tagging  8ca95f3142258f97e555c224f27ba4dc274abb75 (commit)
  replaces  1.0.1
 tagged by  Landry Breuil
on  Tue Mar 3 21:25:42 2015 +0100

- Log -
* Properly resize image _and_ btn so that the image is not shrinked
* New translations: th, ms, bg, oc, is, sl, en_AU
* Updated translations: ast, de, es, fr, it, hr, nl, pl, tr, ug
---

No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-fsguard-plugin] branch master updated (47b0d3f - 8ca95f3)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

landry pushed a change to branch master
in repository panel-plugins/xfce4-fsguard-plugin.

  from  47b0d3f   I18n: Update translation es (100%).
   new  8ca95f3   updates for release

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 Makefile.am |6 --
 NEWS|7 +++
 configure.ac.in |   17 +++--
 3 files changed, 10 insertions(+), 20 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] 02/08: Use xfce4-panel debugging methods

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

andrzejr pushed a commit to branch master
in repository panel-plugins/xfce4-pulseaudio-plugin.

commit 5057c01c5b6a82e5236e1a536035db8a81c60a76
Author: Guido Berhoerster guido+x...@berhoerster.name
Date:   Tue Mar 3 14:38:57 2015 +0100

Use xfce4-panel debugging methods

Use xfce4-panel debuging methods described on
http://docs.xfce.org/xfce/xfce4-panel/debugging#debugging_plugins.
In particular log to stderr and enable debug logging if the PANEL_DEBUG
environment variable is set to all.
Change G_LOG_DOMAIN to the more intuitive pulseaudio-plugin.
Remove logging to a logfile as multiple plugin instances clobber the
logfile and automatic restart after abort() or crash truncates the
file.
Use pulseaudio_plugin_debug instead of g_debug which provides
additional information.

Conflicts:
panel-plugin/pulseaudio-plugin.c
---
 panel-plugin/Makefile.am |4 +-
 panel-plugin/pulseaudio-debug.c  |   45 +
 panel-plugin/pulseaudio-debug.h  |   38 +++
 panel-plugin/pulseaudio-plugin.c |  100 +-
 panel-plugin/pulseaudio-volume.c |   27 +-
 5 files changed, 145 insertions(+), 69 deletions(-)

diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index 60c8c08..907c9c9 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -1,7 +1,7 @@
 
 INCLUDES = \
-I$(top_srcdir) \
-   -DG_LOG_DOMAIN=\libpulseaudio-plugin\ \
+   -DG_LOG_DOMAIN=\pulseaudio-plugin\ \
-DPACKAGE_LOCALE_DIR=\$(localedir)\ \
$(PLATFORM_CPPFLAGS)
 
@@ -19,6 +19,8 @@ libpulseaudio_built_sources = \
 
 libpulseaudio_plugin_la_SOURCES = \
$(libpulseaudio_built_sources) \
+   pulseaudio-debug.c \
+   pulseaudio-debug.h \
pulseaudio-volume.c \
pulseaudio-volume.h \
pulseaudio-button.c \
diff --git a/panel-plugin/pulseaudio-debug.c b/panel-plugin/pulseaudio-debug.c
new file mode 100644
index 000..0cba907
--- /dev/null
+++ b/panel-plugin/pulseaudio-debug.c
@@ -0,0 +1,45 @@
+/*
+ * Copyright (c) 2015 Guido Berhoerster guido+x...@berhoerster.name
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, 
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include config.h
+#endif
+
+#include glib.h
+#include stdarg.h
+
+#include pulseaudio-debug.h
+
+void
+pulseaudio_debug_real (const gchar *log_domain,
+   const gchar *file,
+   const gchar *func,
+   gint line,
+   const gchar *format, ...)
+{
+  va_list  args;
+  gchar   *prefixed_format;
+
+  va_start (args, format);
+  prefixed_format = g_strdup_printf ([%s:%d %s]: %s, file, line, func, 
format);
+  g_logv (log_domain, G_LOG_LEVEL_DEBUG, prefixed_format, args);
+  va_end (args);
+
+  g_free (prefixed_format);
+}
diff --git a/panel-plugin/pulseaudio-debug.h b/panel-plugin/pulseaudio-debug.h
new file mode 100644
index 000..9403b6f
--- /dev/null
+++ b/panel-plugin/pulseaudio-debug.h
@@ -0,0 +1,38 @@
+/*
+ * Copyright (c) 2015 Guido Berhoerster guido+x...@berhoerster.name
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, 
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifndef __PULSEAUDIO_DEBUG_H__
+#define __PULSEAUDIO_DEBUG_H__
+
+#include glib.h
+#include stdarg.h
+
+G_BEGIN_DECLS
+
+#define pulseaudio_debug(...)  pulseaudio_debug_real (G_LOG_DOMAIN, __FILE__, 
__func__, __LINE__, __VA_ARGS__)
+
+void pulseaudio_debug_real  (const gchar*log_domain,
+ const gchar*file,
+

[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] branch master updated (3af1719 - 090a053)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

andrzejr pushed a change to branch master
in repository panel-plugins/xfce4-pulseaudio-plugin.

  from  3af1719   Check for LIBM
   new  c153fd5   Allow execution of the mixer from context menu
   new  5057c01   Use xfce4-panel debugging methods
   new  0352549   Make the default mixer command a compile-time option
   new  f09628c   Replace the deprecated INCLUDES with AM_CPPFLAGS
   new  34b9b71   Replace deprecated AC_PROC_INTLTOOL with IT_PROG_INTLTOOL
   new  5d733f2   Improve documentation and description
   new  b36fc00   Remove duplicate libtool initialization
   new  090a053   Fixed undefined symbol, clean up.

The 8 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 AUTHORS   |2 +
 NEWS  |   15 
 README|   12 +++
 configure.ac.in   |   20 +++--
 panel-plugin/Makefile.am  |   11 ++-
 panel-plugin/pulseaudio-button.c  |4 +-
 panel-plugin/pulseaudio-config.c  |   36 -
 panel-plugin/pulseaudio-config.h  |2 +-
 panel-plugin/pulseaudio-debug.c   |   45 +++
 panel-plugin/pulseaudio-debug.h   |   38 +
 panel-plugin/pulseaudio-dialog.c  |   20 ++---
 panel-plugin/pulseaudio-dialog.glade  |   10 +--
 panel-plugin/pulseaudio-plugin.c  |  143 -
 panel-plugin/pulseaudio-volume.c  |   27 ---
 panel-plugin/pulseaudio.desktop.in.in |2 +-
 15 files changed, 269 insertions(+), 118 deletions(-)
 create mode 100644 panel-plugin/pulseaudio-debug.c
 create mode 100644 panel-plugin/pulseaudio-debug.h

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] 04/08: Replace the deprecated INCLUDES with AM_CPPFLAGS

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

andrzejr pushed a commit to branch master
in repository panel-plugins/xfce4-pulseaudio-plugin.

commit f09628c39a4d8a049d1179a33cd32309fb54a69d
Author: Guido Berhoerster guido+x...@berhoerster.name
Date:   Tue Mar 3 20:08:15 2015 +0100

Replace the deprecated INCLUDES with AM_CPPFLAGS
---
 panel-plugin/Makefile.am |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index 8f0fa21..624432b 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -1,9 +1,10 @@
 
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-DG_LOG_DOMAIN=\pulseaudio-plugin\ \
-DPACKAGE_LOCALE_DIR=\$(localedir)\ \
-DDEFAULT_MIXER_COMMAND=\$(DEFAULT_MIXER_COMMAND)\ \
+   -DDATADIR=\$(datadir)\ \
$(PLATFORM_CPPFLAGS)
 
 #
@@ -44,8 +45,7 @@ libpulseaudio_plugin_la_CFLAGS = \
$(XFCONF_CFLAGS) \
$(IDO_CFLAGS) \
$(KEYBINDER_CFLAGS) \
-   $(PLATFORM_CFLAGS) \
-   -DDATADIR=\$(datadir)\
+   $(PLATFORM_CFLAGS)
 
 libpulseaudio_plugin_la_LDFLAGS = \
-avoid-version \

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] 01/08: Allow execution of the mixer from context menu

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

andrzejr pushed a commit to branch master
in repository panel-plugins/xfce4-pulseaudio-plugin.

commit c153fd53ff2d589412b2c4fcac10aa89e9cf46bf
Author: Guido Berhoerster guido+x...@berhoerster.name
Date:   Mon Mar 2 23:08:21 2015 +0100

Allow execution of the mixer from context menu
---
 panel-plugin/pulseaudio-dialog.glade |6 +++---
 panel-plugin/pulseaudio-plugin.c |   38 ++
 2 files changed, 41 insertions(+), 3 deletions(-)

diff --git a/panel-plugin/pulseaudio-dialog.glade 
b/panel-plugin/pulseaudio-dialog.glade
index 5d3cbed..9f0030e 100644
--- a/panel-plugin/pulseaudio-dialog.glade
+++ b/panel-plugin/pulseaudio-dialog.glade
@@ -151,7 +151,7 @@
   object class=GtkLabel id=label2
 property name=visibleTrue/property
 property name=can_focusFalse/property
-property name=label 
translatable=yesMixer _tool/property
+property name=label 
translatable=yesAudio _Mixer/property
 property name=use_underlineTrue/property
   /object
   packing
@@ -163,7 +163,7 @@
   object class=GtkEntry id=entry-mixer-name
 property name=visibleTrue/property
 property name=can_focusTrue/property
-property name=tooltip_text 
translatable=yesName of the audio mixer application to start when the plugin 
button is pressed. E.g. pavucontrol, unity-control-center sound./property
+property name=tooltip_text 
translatable=yesAudio mixer command that can be executed from the context 
menu, e.g. pavucontrol, unity-control-center sound./property
 property name=invisible_char•/property
 property 
name=primary_icon_activatableFalse/property
 property 
name=secondary_icon_activatableFalse/property
@@ -184,7 +184,7 @@
 property name=xscale0/property
 child
   object class=GtkButton 
id=button-run-mixer
-property name=label 
translatable=yes_Run mixer tool.../property
+property name=label 
translatable=yes_Run Audio Mixer.../property
 property name=visibleTrue/property
 property name=can_focusTrue/property
 property 
name=receives_defaultTrue/property
diff --git a/panel-plugin/pulseaudio-plugin.c b/panel-plugin/pulseaudio-plugin.c
index ce026e2..548614b 100644
--- a/panel-plugin/pulseaudio-plugin.c
+++ b/panel-plugin/pulseaudio-plugin.c
@@ -32,6 +32,7 @@
 
 #include gtk/gtk.h
 #include libxfce4util/libxfce4util.h
+#include libxfce4ui/libxfce4ui.h
 #include libxfce4panel/xfce-panel-plugin.h
 
 #include pulseaudio-plugin.h
@@ -320,9 +321,35 @@ pulseaudio_plugin_mute_pressed (const char
*keystring,
 
 
 static void
+pulseaudio_plugin_mixer_item_activate_cb (PulseaudioPlugin *pulseaudio_plugin,
+  GtkMenuItem  *menu_item)
+{
+  const gchar *command;
+  GError  *error = NULL;
+
+  g_return_if_fail (IS_PULSEAUDIO_PLUGIN (pulseaudio_plugin));
+
+  command = pulseaudio_config_get_mixer_name (pulseaudio_plugin-config);
+  if (!xfce_spawn_command_line_on_screen (gtk_widget_get_screen (GTK_WIDGET 
(menu_item)),
+  command, FALSE, FALSE, error))
+{
+  xfce_dialog_show_error (NULL, error,
+  _(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.), command);
+  g_error_free (error);
+}
+}
+
+
+static void
 pulseaudio_plugin_construct (XfcePanelPlugin *plugin)
 {
   PulseaudioPlugin *pulseaudio_plugin = PULSEAUDIO_PLUGIN (plugin);
+  GtkWidget*mixer_menu_item;
+  GtkWidget*separator;
 
 #ifdef HAVE_IDO
   ido_init();
@@ -359,6 +386,17 @@ pulseaudio_plugin_construct (XfcePanelPlugin *plugin)
   /* volume controller */
   pulseaudio_plugin-volume = pulseaudio_volume_new ();
 
+  /* menu items */
+  separator = gtk_separator_menu_item_new ();
+  xfce_panel_plugin_menu_insert_item (plugin, GTK_MENU_ITEM (separator));
+  gtk_widget_show (separator);
+
+  mixer_menu_item = gtk_menu_item_new_with_mnemonic (_(Run Audio Mi_xer));
+  xfce_panel_plugin_menu_insert_item (plugin, 

[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] 07/08: Remove duplicate libtool initialization

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

andrzejr pushed a commit to branch master
in repository panel-plugins/xfce4-pulseaudio-plugin.

commit b36fc00c0801ced19c1950026d3d13b7eb71e16e
Author: Guido Berhoerster guido+x...@berhoerster.name
Date:   Tue Mar 3 21:53:19 2015 +0100

Remove duplicate libtool initialization
---
 configure.ac.in |2 --
 1 file changed, 2 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index 9554e2a..d420023 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -39,8 +39,6 @@ AC_PROG_CC()
 AC_PROG_LD()
 AC_PROG_INSTALL()
 IT_PROG_INTLTOOL([0.35.0])
-LT_PREREQ([2.2.6])
-LT_INIT([disable-static])
 
 dnl **
 dnl *** Initialize libtool ***

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] 08/08: Fixed undefined symbol, clean up.

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

andrzejr pushed a commit to branch master
in repository panel-plugins/xfce4-pulseaudio-plugin.

commit 090a053cbbd61f0a80ee40c75740e34b9bec9f5e
Author: Andrzej ndrwr...@gmail.com
Date:   Tue Mar 3 22:45:41 2015 +

Fixed undefined symbol, clean up.
---
 panel-plugin/pulseaudio-button.c |4 ++--
 panel-plugin/pulseaudio-config.c |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/panel-plugin/pulseaudio-button.c b/panel-plugin/pulseaudio-button.c
index 925b255..03ab209 100644
--- a/panel-plugin/pulseaudio-button.c
+++ b/panel-plugin/pulseaudio-button.c
@@ -228,11 +228,11 @@ pulseaudio_button_button_release (GtkWidget  *widget,
   if(event-button == 1) /* left button */
 {
   if (!xfce_spawn_command_line_on_screen (gtk_widget_get_screen (widget),
-  pulseaudio_config_get_mixer_name 
(button-config),
+  
pulseaudio_config_get_mixer_command (button-config),
   FALSE, FALSE, error))
 {
   xfce_dialog_show_error (NULL, error, _(Failed to execute command 
\%s\.),
-  pulseaudio_config_get_mixer_name 
(button-config));
+  pulseaudio_config_get_mixer_command 
(button-config));
   g_error_free (error);
 }
   return TRUE;
diff --git a/panel-plugin/pulseaudio-config.c b/panel-plugin/pulseaudio-config.c
index cb8aa13..7716f97 100644
--- a/panel-plugin/pulseaudio-config.c
+++ b/panel-plugin/pulseaudio-config.c
@@ -153,7 +153,7 @@ pulseaudio_config_init (PulseaudioConfig *config)
 {
   config-enable_keyboard_shortcuts = DEFAULT_ENABLE_KEYBOARD_SHORTCUTS;
   config-volume_step   = DEFAULT_VOLUME_STEP;
-  config-mixer_command= g_strdup (DEFAULT_MIXER_COMMAND);
+  config-mixer_command = g_strdup (DEFAULT_MIXER_COMMAND);
 }
 
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] 03/08: Make the default mixer command a compile-time option

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

andrzejr pushed a commit to branch master
in repository panel-plugins/xfce4-pulseaudio-plugin.

commit 0352549fba7cd068f45e84ca86b0cdb52f7d4056
Author: Guido Berhoerster guido+x...@berhoerster.name
Date:   Tue Mar 3 20:01:34 2015 +0100

Make the default mixer command a compile-time option

Make the default mixer command a compile-time option and rename mixer
name to mixer command since it is interpreted a command which can be
optionally specified with full path and command line options.
---
 configure.ac.in  |   16 ---
 panel-plugin/Makefile.am |1 +
 panel-plugin/pulseaudio-config.c |   36 --
 panel-plugin/pulseaudio-config.h |2 +-
 panel-plugin/pulseaudio-dialog.c |   20 +--
 panel-plugin/pulseaudio-dialog.glade |2 +-
 panel-plugin/pulseaudio-plugin.c |2 +-
 7 files changed, 44 insertions(+), 35 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index 3923de4..53a6baf 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -105,6 +105,15 @@ dnl *** Check for debugging support ***
 dnl ***
 XDT_FEATURE_DEBUG()
 
+dnl *
+dnl *** Default mixer command ***
+dnl *
+AC_ARG_WITH([mixer-command],
+[AS_HELP_STRING([--with-mixer-command=CMD], [Default mixer command 
(default: pavucontrol]))],
+[DEFAULT_MIXER_COMMAND=$withval],
+[DEFAULT_MIXER_COMMAND=pavucontrol])
+AC_SUBST([DEFAULT_MIXER_COMMAND])
+
 dnl *
 dnl *** Substitute platform flags ***
 dnl *
@@ -134,7 +143,8 @@ dnl ***
 echo
 echo Build Configuration:
 echo
-echo * Debug Support:$enable_debug
-echo * Use keybinder:${KEYBINDER_FOUND:-no}
-echo * Use IDO library:  ${IDO_FOUND:-no}
+echo * Debug Support:  $enable_debug
+echo * Use keybinder:  ${KEYBINDER_FOUND:-no}
+echo * Use IDO library:${IDO_FOUND:-no}
+echo * Default Mixer command:  $DEFAULT_MIXER_COMMAND
 echo
diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index 907c9c9..8f0fa21 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -3,6 +3,7 @@ INCLUDES = \
-I$(top_srcdir) \
-DG_LOG_DOMAIN=\pulseaudio-plugin\ \
-DPACKAGE_LOCALE_DIR=\$(localedir)\ \
+   -DDEFAULT_MIXER_COMMAND=\$(DEFAULT_MIXER_COMMAND)\ \
$(PLATFORM_CPPFLAGS)
 
 #
diff --git a/panel-plugin/pulseaudio-config.c b/panel-plugin/pulseaudio-config.c
index a3b9703..cb8aa13 100644
--- a/panel-plugin/pulseaudio-config.c
+++ b/panel-plugin/pulseaudio-config.c
@@ -47,8 +47,6 @@
 
 #define DEFAULT_ENABLE_KEYBOARD_SHORTCUTS TRUE
 #define DEFAULT_VOLUME_STEP   6
-#define DEFAULT_MIXER_NAMEpavucontrol
-
 
 
 
@@ -75,7 +73,7 @@ struct _PulseaudioConfig
 
   gboolean enable_keyboard_shortcuts;
   guintvolume_step;
-  gchar   *mixer_name;
+  gchar   *mixer_command;
 };
 
 
@@ -85,7 +83,7 @@ enum
 PROP_0,
 PROP_ENABLE_KEYBOARD_SHORTCUTS,
 PROP_VOLUME_STEP,
-PROP_MIXER_NAME,
+PROP_MIXER_COMMAND,
 N_PROPERTIES,
   };
 
@@ -131,10 +129,10 @@ pulseaudio_config_class_init (PulseaudioConfigClass 
*klass)
 
 
   g_object_class_install_property (gobject_class,
-   PROP_MIXER_NAME,
-   g_param_spec_string (mixer-name,
+   PROP_MIXER_COMMAND,
+   g_param_spec_string (mixer-command,
 NULL, NULL,
-DEFAULT_MIXER_NAME,
+DEFAULT_MIXER_COMMAND,
 G_PARAM_READWRITE |
 
G_PARAM_STATIC_STRINGS));
 
@@ -155,7 +153,7 @@ pulseaudio_config_init (PulseaudioConfig *config)
 {
   config-enable_keyboard_shortcuts = DEFAULT_ENABLE_KEYBOARD_SHORTCUTS;
   config-volume_step   = DEFAULT_VOLUME_STEP;
-  config-mixer_name= g_strdup (DEFAULT_MIXER_NAME);
+  config-mixer_command= g_strdup (DEFAULT_MIXER_COMMAND);
 }
 
 
@@ -166,7 +164,7 @@ pulseaudio_config_finalize (GObject *object)
   PulseaudioConfig *config = PULSEAUDIO_CONFIG (object);
 
   xfconf_shutdown();
-  g_free (config-mixer_name);
+  g_free (config-mixer_command);
 
   G_OBJECT_CLASS (pulseaudio_config_parent_class)-finalize (object);
 }
@@ -191,8 +189,8 @@ pulseaudio_config_get_property (GObject*object,
   g_value_set_uint (value, config-volume_step);
   break;
 
-case PROP_MIXER_NAME:
-  g_value_set_string (value, 

[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] 05/08: Replace deprecated AC_PROC_INTLTOOL with IT_PROG_INTLTOOL

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

andrzejr pushed a commit to branch master
in repository panel-plugins/xfce4-pulseaudio-plugin.

commit 34b9b710253afd9469e6715ddb2ad9062c81fad8
Author: Guido Berhoerster guido+x...@berhoerster.name
Date:   Tue Mar 3 20:10:36 2015 +0100

Replace deprecated AC_PROC_INTLTOOL with IT_PROG_INTLTOOL
---
 configure.ac.in |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac.in b/configure.ac.in
index 53a6baf..9554e2a 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -38,7 +38,7 @@ dnl 
 AC_PROG_CC()
 AC_PROG_LD()
 AC_PROG_INSTALL()
-AC_PROG_INTLTOOL()
+IT_PROG_INTLTOOL([0.35.0])
 LT_PREREQ([2.2.6])
 LT_INIT([disable-static])
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] 06/08: Improve documentation and description

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

andrzejr pushed a commit to branch master
in repository panel-plugins/xfce4-pulseaudio-plugin.

commit 5d733f22fcb339d084fa47bef1e66aeaaf8802b4
Author: Guido Berhoerster guido+x...@berhoerster.name
Date:   Tue Mar 3 21:48:52 2015 +0100

Improve documentation and description

Create README and NEWS contents.
Improve description.
Update author information.
---
 AUTHORS   |2 ++
 NEWS  |   15 +++
 README|   12 
 panel-plugin/pulseaudio-dialog.glade  |2 +-
 panel-plugin/pulseaudio-plugin.c  |5 +++--
 panel-plugin/pulseaudio.desktop.in.in |2 +-
 6 files changed, 34 insertions(+), 4 deletions(-)

diff --git a/AUTHORS b/AUTHORS
index e69de29..086606d 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -0,0 +1,2 @@
+Andrzej Radecki ndrwr...@gmail.com
+Guido Berhoerster guido+x...@berhoerster.name
diff --git a/NEWS b/NEWS
index e69de29..2f9aefb 100644
--- a/NEWS
+++ b/NEWS
@@ -0,0 +1,15 @@
+0.2.0
+=
+
+- Autoconf and automake modernization
+- Make the default mixer command a compile-time option
+- Add menu item for muting the volume
+- Allow execution of the mixer from context menu
+- Replace the button with a toggle button that displays a popup with a scale
+  for adjusting the volume when activated
+
+0.1.0
+=
+
+- Initial version
+
diff --git a/README b/README
index e69de29..4a0bb5b 100644
--- a/README
+++ b/README
@@ -0,0 +1,12 @@
+Xfce PulseAudio Panel Plugin
+
+
+The Xfce PulseAudio Plugin is a plugin for the Xfce panel which provides a
+convenient way to adjust the audio volume of the [PulseAudio sound system][1]
+and to an auto mixer tool like pavucontrol. It can optionally handle
+multimedia keys for controlling the audio volume.
+
+See the file INSTALL for detailed instructions on how to build and install
+Xfce PulseAudio Plugin.
+
+[1]: http://www.freedesktop.org/wiki/Software/PulseAudio/ PulseAudio Website
diff --git a/panel-plugin/pulseaudio-dialog.glade 
b/panel-plugin/pulseaudio-dialog.glade
index 44858c3..face85a 100644
--- a/panel-plugin/pulseaudio-dialog.glade
+++ b/panel-plugin/pulseaudio-dialog.glade
@@ -10,7 +10,7 @@
   /object
   object class=XfceTitledDialog id=dialog
 property name=can_focusFalse/property
-property name=title translatable=yesPulseaudio/property
+property name=title translatable=yesPulseAudio Panel 
Plugin/property
 property name=default_width425/property
 property name=default_height525/property
 property name=icon_namegtk-properties/property
diff --git a/panel-plugin/pulseaudio-plugin.c b/panel-plugin/pulseaudio-plugin.c
index 9d07c77..cad20cd 100644
--- a/panel-plugin/pulseaudio-plugin.c
+++ b/panel-plugin/pulseaudio-plugin.c
@@ -188,6 +188,7 @@ pulseaudio_plugin_show_about (XfcePanelPlugin *plugin)
   const gchar *auth[] =
 {
   Andrzej Radecki ndrwr...@gmail.com,
+  Guido Berhoerster guido+x...@berhoerster.name,
   NULL
 };
 
@@ -199,9 +200,9 @@ pulseaudio_plugin_show_about (XfcePanelPlugin *plugin)
  license,  xfce_get_license_text 
(XFCE_LICENSE_TEXT_GPL),
  version,  PACKAGE_VERSION,
  program-name, PACKAGE_NAME,
- comments, _(A panel plugin for controlling 
PulseAudio mixer.),
+ comments, _(Adjust the audio volume of the 
PulseAudio sound system),
  website,  
http://goodies.xfce.org/projects/panel-plugins/xfce4-pulseaudio-plugin;,
- copyright,_(Copyright (c) 2014\n),
+ copyright,_(Copyright \xc2\xa9 2014 Andrzej 
Radecki\n),
  authors,  auth,
  NULL);
 
diff --git a/panel-plugin/pulseaudio.desktop.in.in 
b/panel-plugin/pulseaudio.desktop.in.in
index 9077b76..13444eb 100644
--- a/panel-plugin/pulseaudio.desktop.in.in
+++ b/panel-plugin/pulseaudio.desktop.in.in
@@ -2,7 +2,7 @@
 Type=X-XFCE-PanelPlugin
 Encoding=UTF-8
 _Name=PulseAudio Plugin
-_Comment=A panel plugin for controlling PulseAudio mixer.
+_Comment=Adjust the audio volume of the PulseAudio sound system
 Icon=xfce4-pulseaudio-plugin
 X-XFCE-Module=pulseaudio-plugin
 X-XFCE-Internal=FALSE

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/exo] 01/01: I18n: Update translation de (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/exo.

commit 2773e8acdc95310ad623a4a86ce578a2a850fd78
Author: Tobias Bannert tobann...@gmail.com
Date:   Wed Mar 4 00:30:03 2015 +0100

I18n: Update translation de (100%).

286 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/de.po |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/po/de.po b/po/de.po
index 5dbe327..52a5f0d 100644
--- a/po/de.po
+++ b/po/de.po
@@ -13,7 +13,7 @@ msgstr 
 Project-Id-Version: Exo\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2015-02-17 06:30+0100\n
-PO-Revision-Date: 2015-03-03 16:29+\n
+PO-Revision-Date: 2015-03-03 19:29+\n
 Last-Translator: Tobias Bannert tobann...@gmail.com\n
 Language-Team: German 
(http://www.transifex.com/projects/p/exo/language/de/)\n
 MIME-Version: 1.0\n
@@ -1315,29 +1315,29 @@ msgid 
 option, you can select which preferred application you want to run, and\n
 pass additional parameters to the application (i.e. for TerminalEmulator\n
 you can pass the command line that should be run in the terminal).
-msgstr Falls Sie die --launch-Option nicht angeben, wird exo-open alle 
angegebenen\nURLs mit ihrem bevorzugten Programm öffnen. Ansonsten können Sie 
auswählen,\nwelche bevorzugte Anwendung Sie starten wollen, und können dieser 
dann\nzusätzliche Parameter übergeben (z.B. kann man bei TerminalEmulator 
den\nBefehl angeben, der im Terminal ausgeführt werden soll).
+msgstr Falls Sie die --launch-Option nicht angeben, wird exo-open alle 
angegebenen\nAdressen mit Ihrem bevorzugten Programm öffnen. Ansonsten können 
Sie auswählen,\nwelche bevorzugte Anwendung Sie starten wollen, und können 
dieser dann\nzusätzliche Parameter übergeben (z.B. kann man bei 
TerminalEmulator den\nBefehl angeben, der im Terminal ausgeführt werden soll).
 
 #: ../exo-open/main.c:195
 #, c-format
 msgid 
 Launching desktop files is not supported when %s is compiled without GIO-
 Unix features.
-msgstr Das Ausführen von Desktopdateien wird nicht unterstützt, wenn %s ohne 
GIO-Unix Funktionen kompiliert wurde.
+msgstr Das Ausführen von Schreibtischdateien wird nicht unterstützt, wenn %s 
ohne GIO-Unix-Funktionen kompiliert wurde.
 
 #: ../exo-open/main.c:260
 #, c-format
 msgid Failed to launch preferred application for category \%s\.
-msgstr Konnte die bevorzugte Anwendung für den Typ »%s« nicht starten.
+msgstr Die bevorzugte Anwendung für den Typ »%s« konnte nicht gestartet 
werden.
 
 #: ../exo-open/main.c:577
 #, c-format
 msgid Unable to detect the URI-scheme of \%s\.
-msgstr Konnte das URI-Schema von »%s« nicht erkennen.
+msgstr Das Adressschema von »%s« konnte nicht erkannt werden.
 
 #: ../exo-open/main.c:591
 #, c-format
 msgid Failed to open URI \%s\.
-msgstr Konnte die URI »%s« nicht öffnen.
+msgstr Die Adresse »%s« konnte nicht geöffnet werden.
 
 #: ../exo-open/exo-file-manager.desktop.in.h:2
 msgid Browse the file system
@@ -1353,4 +1353,4 @@ msgstr Befehlszeile verwenden
 
 #: ../exo-open/exo-web-browser.desktop.in.h:2
 msgid Browse the web
-msgstr Im Internet surfen
+msgstr Das Internet durchsuchen

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/exo] branch xfce-4.10 updated (232b9f8 - 907745a)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch xfce-4.10
in repository xfce/exo.

  from  232b9f8   I18n: Update translation de (100%).
   new  907745a   I18n: Update translation de (100%).

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/de.po |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/exo] branch master updated (351697d - 2773e8a)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/exo.

  from  351697d   I18n: Update translation de (100%).
   new  2773e8a   I18n: Update translation de (100%).

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/de.po |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/exo] 01/01: I18n: Update translation de (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch xfce-4.10
in repository xfce/exo.

commit 907745ad463f9cd0136dae3aadc4c41e6da932c0
Author: Tobias Bannert tobann...@gmail.com
Date:   Wed Mar 4 00:30:11 2015 +0100

I18n: Update translation de (100%).

275 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/de.po |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/po/de.po b/po/de.po
index d0be958..a8e9614 100644
--- a/po/de.po
+++ b/po/de.po
@@ -12,7 +12,7 @@ msgstr 
 Project-Id-Version: Exo\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-02 22:55+0200\n
-PO-Revision-Date: 2015-03-03 15:08+\n
+PO-Revision-Date: 2015-03-03 19:29+\n
 Last-Translator: Tobias Bannert tobann...@gmail.com\n
 Language-Team: German 
(http://www.transifex.com/projects/p/exo/language/de/)\n
 MIME-Version: 1.0\n
@@ -1269,29 +1269,29 @@ msgid 
 option, you can select which preferred application you want to run, and\n
 pass additional parameters to the application (i.e. for TerminalEmulator\n
 you can pass the command line that should be run in the terminal).
-msgstr Falls Sie die --launch-Option nicht angeben, wird exo-open alle 
angegebenen\nURLs mit ihrem bevorzugten Programm öffnen. Ansonsten können Sie 
auswählen,\nwelche bevorzugte Anwendung Sie starten wollen, und können dieser 
dann\nzusätzliche Parameter übergeben (z.B. kann man bei TerminalEmulator 
den\nBefehl angeben, der im Terminal ausgeführt werden soll).
+msgstr Falls Sie die --launch-Option nicht angeben, wird exo-open alle 
angegebenen\nAdressen mit Ihrem bevorzugten Programm öffnen. Ansonsten können 
Sie auswählen,\nwelche bevorzugte Anwendung Sie starten wollen, und können 
dieser dann\nzusätzliche Parameter übergeben (z.B. kann man bei 
TerminalEmulator den\nBefehl angeben, der im Terminal ausgeführt werden soll).
 
 #: ../exo-open/main.c:195
 #, c-format
 msgid 
 Launching desktop files is not supported when %s is compiled without GIO-
 Unix features.
-msgstr Das Ausführen von Desktopdateien wird nicht unterstützt, wenn %s ohne 
GIO-Unix Funktionen kompiliert wurde.
+msgstr Das Ausführen von Schreibtischdateien wird nicht unterstützt, wenn %s 
ohne GIO-Unix-Funktionen kompiliert wurde.
 
 #: ../exo-open/main.c:260
 #, c-format
 msgid Failed to launch preferred application for category \%s\.
-msgstr Konnte die bevorzugte Anwendung für den Typ »%s« nicht starten.
+msgstr Die bevorzugte Anwendung für den Typ »%s« konnte nicht gestartet 
werden.
 
 #: ../exo-open/main.c:577
 #, c-format
 msgid Unable to detect the URI-scheme of \%s\.
-msgstr Konnte das URI-Schema von »%s« nicht erkennen.
+msgstr Das Adressschema von »%s« konnte nicht erkannt werden.
 
 #: ../exo-open/main.c:591
 #, c-format
 msgid Failed to open URI \%s\.
-msgstr Konnte die URI »%s« nicht öffnen.
+msgstr Die Adresse »%s« konnte nicht geöffnet werden.
 
 #: ../exo-open/exo-file-manager.desktop.in.h:2
 msgid Browse the file system
@@ -1307,4 +1307,4 @@ msgstr Befehlszeile verwenden
 
 #: ../exo-open/exo-web-browser.desktop.in.h:2
 msgid Browse the web
-msgstr Im Internet surfen
+msgstr Das Internet durchsuchen

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] 01/04: Copied scalemenuitem.c/h from xfce4-power-manager

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

andrzejr pushed a commit to branch master
in repository panel-plugins/xfce4-pulseaudio-plugin.

commit 7e3bdd9c3b8a8947112055fa673778fc785ec8a3
Author: Andrzej ndrwr...@gmail.com
Date:   Tue Mar 3 23:00:32 2015 +

Copied scalemenuitem.c/h from xfce4-power-manager
---
 panel-plugin/Makefile.am |4 +-
 panel-plugin/scalemenuitem.c |  581 ++
 panel-plugin/scalemenuitem.h |   82 ++
 3 files changed, 666 insertions(+), 1 deletion(-)

diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index 624432b..b4fc98b 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -32,7 +32,9 @@ libpulseaudio_plugin_la_SOURCES = \
pulseaudio-plugin.c \
pulseaudio-plugin.h \
pulseaudio-dialog.c \
-   pulseaudio-dialog.h
+   pulseaudio-dialog.h \
+   scalemenuitem.c \
+   scalemenuitem.h
 
 
 libpulseaudio_plugin_la_CFLAGS = \
diff --git a/panel-plugin/scalemenuitem.c b/panel-plugin/scalemenuitem.c
new file mode 100644
index 000..5d9faab
--- /dev/null
+++ b/panel-plugin/scalemenuitem.c
@@ -0,0 +1,581 @@
+/* -*- c-basic-offset: 2 -*- vi:set ts=2 sts=2 sw=2:
+ * * Copyright (C) 2014 Eric Koegel e...@xfce.org
+ *
+ * Licensed under the GNU General Public License Version 2
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ */
+/*
+ * Based on the scale menu item implementation of the indicator applet:
+ * Authors:
+ *Cody Russell cruss...@canonical.com
+ * 
http://bazaar.launchpad.net/~indicator-applet-developers/ido/trunk.14.10/view/head:/src/idoscalemenuitem.h
+ */
+
+#ifdef HAVE_CONFIG_H
+#include config.h
+#endif
+
+#include scalemenuitem.h
+
+#include gdk/gdk.h
+#include gdk/gdkkeysyms.h
+
+/* for DBG/TRACE */
+#include libxfce4util/libxfce4util.h
+
+
+
+static gboolean scale_menu_item_button_press_event  (GtkWidget  
*menuitem,
+ GdkEventButton 
*event);
+static gboolean scale_menu_item_button_release_event(GtkWidget  
*menuitem,
+ GdkEventButton 
*event);
+static gboolean scale_menu_item_motion_notify_event (GtkWidget  
*menuitem,
+ GdkEventMotion 
*event);
+static gboolean scale_menu_item_grab_broken (GtkWidget  
*menuitem,
+ GdkEventGrabBroken 
*event);
+static void scale_menu_item_grab_notify (GtkWidget  
*menuitem,
+ gboolean
was_grabbed);
+static void scale_menu_item_parent_set  (GtkWidget  
*item,
+ GtkWidget  
*previous_parent);
+static void update_packing  (ScaleMenuItem  *
self);
+
+
+
+
+struct _ScaleMenuItemPrivate {
+  GtkWidget*scale;
+  GtkWidget*description_label;
+  GtkWidget*percentage_label;
+  GtkWidget*vbox;
+  GtkWidget*hbox;
+  gboolean  grabbed;
+  gboolean  ignore_value_changed;
+};
+
+
+
+enum {
+  SLIDER_GRABBED,
+  SLIDER_RELEASED,
+  VALUE_CHANGED,
+  LAST_SIGNAL
+};
+
+
+
+
+static guint signals[LAST_SIGNAL] = { 0 };
+
+G_DEFINE_TYPE (ScaleMenuItem, scale_menu_item, GTK_TYPE_IMAGE_MENU_ITEM)
+
+#define GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), 
TYPE_SCALE_MENU_ITEM, ScaleMenuItemPrivate))
+
+
+
+static void
+scale_menu_item_scale_value_changed (GtkRange *range,
+ gpointer  user_data)
+{
+  ScaleMenuItem *self = user_data;
+  ScaleMenuItemPrivate *priv = GET_PRIVATE (self);
+
+  /* The signal is not sent when it was set through
+   * scale_menu_item_set_value().  */
+
+  if (!priv-ignore_value_changed)
+g_signal_emit (self, signals[VALUE_CHANGED], 0, gtk_range_get_value 
(range));
+}
+
+static void
+scale_menu_item_class_init (ScaleMenuItemClass *item_class)
+{
+  GObjectClass  *gobject_class =   G_OBJECT_CLASS  (item_class);
+  GtkWidgetClass*widget_class =GTK_WIDGET_CLASS

[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] 04/04: Removed extra items from the plugin menu.

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

andrzejr pushed a commit to branch master
in repository panel-plugins/xfce4-pulseaudio-plugin.

commit eb226f9212456b1144e2e9881eecb2fe453794b6
Author: Andrzej ndrwr...@gmail.com
Date:   Wed Mar 4 02:39:50 2015 +

Removed extra items from the plugin menu.
---
 panel-plugin/pulseaudio-plugin.c |   37 -
 1 file changed, 37 deletions(-)

diff --git a/panel-plugin/pulseaudio-plugin.c b/panel-plugin/pulseaudio-plugin.c
index 6859732..409a379 100644
--- a/panel-plugin/pulseaudio-plugin.c
+++ b/panel-plugin/pulseaudio-plugin.c
@@ -315,35 +315,9 @@ pulseaudio_plugin_mute_pressed (const char
*keystring,
 
 
 static void
-pulseaudio_plugin_mixer_item_activate_cb (PulseaudioPlugin *pulseaudio_plugin,
-  GtkMenuItem  *menu_item)
-{
-  const gchar *command;
-  GError  *error = NULL;
-
-  g_return_if_fail (IS_PULSEAUDIO_PLUGIN (pulseaudio_plugin));
-
-  command = pulseaudio_config_get_mixer_command (pulseaudio_plugin-config);
-  if (!xfce_spawn_command_line_on_screen (gtk_widget_get_screen (GTK_WIDGET 
(menu_item)),
-  command, FALSE, FALSE, error))
-{
-  xfce_dialog_show_error (NULL, error,
-  _(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.), command);
-  g_error_free (error);
-}
-}
-
-
-static void
 pulseaudio_plugin_construct (XfcePanelPlugin *plugin)
 {
   PulseaudioPlugin *pulseaudio_plugin = PULSEAUDIO_PLUGIN (plugin);
-  GtkWidget*mixer_menu_item;
-  GtkWidget*separator;
 
 #ifdef HAVE_IDO
   ido_init();
@@ -377,17 +351,6 @@ pulseaudio_plugin_construct (XfcePanelPlugin *plugin)
   /* volume controller */
   pulseaudio_plugin-volume = pulseaudio_volume_new ();
 
-  /* menu items */
-  separator = gtk_separator_menu_item_new ();
-  xfce_panel_plugin_menu_insert_item (plugin, GTK_MENU_ITEM (separator));
-  gtk_widget_show (separator);
-
-  mixer_menu_item = gtk_menu_item_new_with_mnemonic (_(Run Audio Mi_xer));
-  xfce_panel_plugin_menu_insert_item (plugin, GTK_MENU_ITEM (mixer_menu_item));
-  g_signal_connect_swapped (G_OBJECT (mixer_menu_item), activate,
-G_CALLBACK (pulseaudio_plugin_mixer_item_activate_cb), pulseaudio_plugin);
-  gtk_widget_show (mixer_menu_item);
-
   /* instantiate a button box */
   pulseaudio_plugin-button = pulseaudio_button_new (pulseaudio_plugin,
  pulseaudio_plugin-config,

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] 02/04: Deprecation fixes.

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

andrzejr pushed a commit to branch master
in repository panel-plugins/xfce4-pulseaudio-plugin.

commit 5cdcd0182f4dc10a7d8742279e9b67ebe3785238
Author: Andrzej ndrwr...@gmail.com
Date:   Tue Mar 3 23:02:24 2015 +

Deprecation fixes.

(gtk_image_menu_item deprecation warning to be ignored)
---
 panel-plugin/scalemenuitem.c |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/panel-plugin/scalemenuitem.c b/panel-plugin/scalemenuitem.c
index 5d9faab..49f9f9f 100644
--- a/panel-plugin/scalemenuitem.c
+++ b/panel-plugin/scalemenuitem.c
@@ -176,8 +176,8 @@ static void
 update_packing (ScaleMenuItem *self)
 {
   ScaleMenuItemPrivate *priv = GET_PRIVATE (self);
-  GtkBox *hbox = GTK_BOX (gtk_hbox_new (FALSE, 0));
-  GtkBox *vbox = GTK_BOX (gtk_vbox_new (FALSE, 0));
+  GtkBox *hbox = GTK_BOX (gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0));
+  GtkBox *vbox = GTK_BOX (gtk_box_new (GTK_ORIENTATION_VERTICAL, 0));
 
   TRACE(entering);
 
@@ -396,7 +396,7 @@ scale_menu_item_new_with_range (gdouble   min,
 
   priv = GET_PRIVATE (scale_item);
 
-  priv-scale = gtk_hscale_new_with_range (min, max, step);
+  priv-scale = gtk_scale_new_with_range (GTK_ORIENTATION_HORIZONTAL, min, 
max, step);
   priv-vbox = NULL;
   priv-hbox = NULL;
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 01/01: I18n: Update translation ko (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/xfdesktop.

commit e216e003fd0bc2eec1f8afd62cb2f02250294a68
Author: Seong-ho Cho darkcircle.0...@gmail.com
Date:   Wed Mar 4 06:31:52 2015 +0100

I18n: Update translation ko (100%).

222 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/ko.po |  206 --
 1 file changed, 105 insertions(+), 101 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index 3e082ee..5f37937 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -12,8 +12,8 @@ msgid 
 msgstr 
 Project-Id-Version: Xfdesktop\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2015-02-16 12:32+0100\n
-PO-Revision-Date: 2015-03-02 08:34+\n
+POT-Creation-Date: 2015-03-03 18:32+0100\n
+PO-Revision-Date: 2015-03-04 05:04+\n
 Last-Translator: Seong-ho Cho darkcircle.0...@gmail.com\n
 Language-Team: Korean 
(http://www.transifex.com/projects/p/xfdesktop/language/ko/)\n
 MIME-Version: 1.0\n
@@ -106,53 +106,53 @@ msgstr %s 바탕 화면
 msgid Move this dialog to the workspace you want to edit the settings for.
 msgstr 설정을 편집하려는 작업 공간으로 이 대화상자를 이동하십시오.
 
-#: ../settings/main.c:1176
+#: ../settings/main.c:1178
 msgid Image selection is unavailable while the image style is set to None.
 msgstr 그림 방식을 없음으로 설정하였기 때문에 그림 선택을 사용할 수 없습니다.
 
-#: ../settings/main.c:1526
+#: ../settings/main.c:1528
 msgid Spanning screens
 msgstr 모니터 확장
 
-#: ../settings/main.c:1836
+#: ../settings/main.c:1839
 msgid Image files
 msgstr 그림 파일
 
-#: ../settings/main.c:2016
+#: ../settings/main.c:2019
 msgid Settings manager socket
 msgstr 관리자 소켓 설정
 
-#: ../settings/main.c:2016
+#: ../settings/main.c:2019
 msgid SOCKET ID
 msgstr 소켓 ID
 
-#: ../settings/main.c:2017
+#: ../settings/main.c:2020
 msgid Version information
 msgstr 버전 정보
 
-#: ../settings/main.c:2018 ../src/xfdesktop-application.c:844
+#: ../settings/main.c:2021 ../src/xfdesktop-application.c:844
 msgid Enable debug messages
 msgstr 디버그 메시지 활성화
 
-#: ../settings/main.c:2046
+#: ../settings/main.c:2049
 #, c-format
 msgid Type '%s --help' for usage.
 msgstr 사용법을 보려면 '%s --help'를 입력합니다.
 
-#: ../settings/main.c:2058
+#: ../settings/main.c:2061
 msgid The Xfce development team. All rights reserved.
 msgstr Xfce 개발 팀. All rights reserved.
 
-#: ../settings/main.c:2059
+#: ../settings/main.c:2062
 #, c-format
 msgid Please report bugs to %s.
 msgstr %s(으)로 버그를 알려주십시오.
 
-#: ../settings/main.c:2066
+#: ../settings/main.c:2069
 msgid Desktop Settings
 msgstr 작업 공간 설정
 
-#: ../settings/main.c:2068
+#: ../settings/main.c:2071
 msgid Unable to contact settings server
 msgstr 설정 서버에 연결할 수 없습니다.
 
@@ -341,7 +341,7 @@ msgstr 최소화한 프로그램 아이콘
 msgid File/launcher icons
 msgstr 파일/실행 아이콘
 
-#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1045
+#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1024
 msgid Desktop
 msgstr 데스크톱
 
@@ -432,13 +432,13 @@ msgid 
 msgstr 자동으로 만들어지는 섬네일 아이콘으로 데스크톱에서 미리 볼 수 있는 파일을 표시하려면 이 옵션을 선택합니다.
 
 #: ../settings/xfdesktop-settings-ui.glade.h:33
-msgid Single _click to activate items
-msgstr 한 번 눌러서 항목 활성화(_C)
-
-#: ../settings/xfdesktop-settings-ui.glade.h:34
 msgid Show hidden files on the desktop
 msgstr 데스크톱 숨김 파일 표시
 
+#: ../settings/xfdesktop-settings-ui.glade.h:34
+msgid Single _click to activate items
+msgstr 한 번 눌러서 항목 활성화(_C)
+
 #: ../settings/xfdesktop-settings-ui.glade.h:35
 msgid Show icon tooltips. Size:
 msgstr 아이콘 풍선 도움말을 보여줍니다. 크기:
@@ -497,40 +497,40 @@ msgstr 정말로 '%s' 작업 공간을 제거하시렵니까?\n참고: 현재 
 msgid Remove
 msgstr 제거
 
-#: ../src/windowlist.c:246
+#: ../src/windowlist.c:247
 msgid Window List
 msgstr 창 목록
 
-#: ../src/windowlist.c:272
+#: ../src/windowlist.c:273
 #, c-format
 msgid bWorkspace %d/b
 msgstr b작업 공간 %d/b
 
-#: ../src/windowlist.c:362 ../src/windowlist.c:365
+#: ../src/windowlist.c:361 ../src/windowlist.c:364
 msgid _Add Workspace
 msgstr 작업 공간 추가(_A)
 
-#: ../src/windowlist.c:373
+#: ../src/windowlist.c:372
 #, c-format
 msgid _Remove Workspace %d
 msgstr 작업 공간 %d 제거(_R)
 
-#: ../src/windowlist.c:376
+#: ../src/windowlist.c:375
 #, c-format
 msgid _Remove Workspace '%s'
 msgstr 작업 공간 '%s' 제거(_R)
 
 #: ../src/xfdesktop-app-menu-item.c:351
-#: ../src/xfdesktop-file-icon-manager.c:861
-#: ../src/xfdesktop-file-icon-manager.c:1126
-#: ../src/xfdesktop-file-icon-manager.c:1322 ../src/xfdesktop-file-utils.c:664
-#: ../src/xfdesktop-file-utils.c:1086 ../src/xfdesktop-file-utils.c:1163
-#: ../src/xfdesktop-file-utils.c:1188 ../src/xfdesktop-file-utils.c:1240
+#: ../src/xfdesktop-file-icon-manager.c:862
+#: ../src/xfdesktop-file-icon-manager.c:1153
+#: ../src/xfdesktop-file-icon-manager.c:1366 ../src/xfdesktop-file-utils.c:665
+#: ../src/xfdesktop-file-utils.c:1087 ../src/xfdesktop-file-utils.c:1164
+#: ../src/xfdesktop-file-utils.c:1189 ../src/xfdesktop-file-utils.c:1241
 msgid Launch Error
 msgstr 실행 오류
 
 #: 

[Xfce4-commits] [xfce/xfdesktop] branch master updated (d122e28 - e216e00)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/xfdesktop.

  from  d122e28   Fix glib warning
   new  e216e00   I18n: Update translation ko (100%).

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/ko.po |  206 --
 1 file changed, 105 insertions(+), 101 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] branch master updated (090a053 - eb226f9)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

andrzejr pushed a change to branch master
in repository panel-plugins/xfce4-pulseaudio-plugin.

  from  090a053   Fixed undefined symbol, clean up.
   new  7e3bdd9   Copied scalemenuitem.c/h from xfce4-power-manager
   new  5cdcd01   Deprecation fixes.
   new  98e08df   Added a menu
   new  eb226f9   Removed extra items from the plugin menu.

The 4 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 panel-plugin/Makefile.am |6 +-
 panel-plugin/pulseaudio-button.c |   69 ++---
 panel-plugin/pulseaudio-button.h |3 +-
 panel-plugin/pulseaudio-menu.c   |  263 +
 panel-plugin/pulseaudio-menu.h   |   47 +++
 panel-plugin/pulseaudio-plugin.c |   40 +--
 panel-plugin/scalemenuitem.c |  581 ++
 panel-plugin/scalemenuitem.h |   82 ++
 8 files changed, 1009 insertions(+), 82 deletions(-)
 create mode 100644 panel-plugin/pulseaudio-menu.c
 create mode 100644 panel-plugin/pulseaudio-menu.h
 create mode 100644 panel-plugin/scalemenuitem.c
 create mode 100644 panel-plugin/scalemenuitem.h

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] 03/04: Added a menu

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

andrzejr pushed a commit to branch master
in repository panel-plugins/xfce4-pulseaudio-plugin.

commit 98e08df1734ec7527514fc87898c07202af5ab01
Author: Andrzej ndrwr...@gmail.com
Date:   Wed Mar 4 02:35:34 2015 +

Added a menu
---
 panel-plugin/Makefile.am |2 +
 panel-plugin/pulseaudio-button.c |   69 --
 panel-plugin/pulseaudio-button.h |3 +-
 panel-plugin/pulseaudio-menu.c   |  263 ++
 panel-plugin/pulseaudio-menu.h   |   47 +++
 panel-plugin/pulseaudio-plugin.c |3 +-
 panel-plugin/scalemenuitem.h |4 +-
 7 files changed, 345 insertions(+), 46 deletions(-)

diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index b4fc98b..1a540d3 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -33,6 +33,8 @@ libpulseaudio_plugin_la_SOURCES = \
pulseaudio-plugin.h \
pulseaudio-dialog.c \
pulseaudio-dialog.h \
+   pulseaudio-menu.c \
+   pulseaudio-menu.h \
scalemenuitem.c \
scalemenuitem.h
 
diff --git a/panel-plugin/pulseaudio-button.c b/panel-plugin/pulseaudio-button.c
index 03ab209..89225c5 100644
--- a/panel-plugin/pulseaudio-button.c
+++ b/panel-plugin/pulseaudio-button.c
@@ -41,6 +41,7 @@
 
 #include pulseaudio-plugin.h
 #include pulseaudio-config.h
+#include pulseaudio-menu.h
 #include pulseaudio-button.h
 
 #define V_MUTED  0
@@ -63,12 +64,10 @@ static const char *icons[] = {
 static void pulseaudio_button_finalize(GObject 
   *object);
 static gboolean pulseaudio_button_button_press(GtkWidget   
   *widget,
GdkEventButton  
   *event);
-static gboolean pulseaudio_button_button_release  (GtkWidget   
   *widget,
-   GdkEventButton  
   *event);
 static gboolean pulseaudio_button_scroll_event(GtkWidget   
   *widget,
GdkEventScroll  
   *event);
 static void pulseaudio_button_menu_deactivate 
(PulseaudioButton   *button,
-   GtkMenu 
   *menu);
+   GtkMenuShell
   *menu);
 static void pulseaudio_button_update_icons
(PulseaudioButton   *button);
 static void pulseaudio_button_update  
(PulseaudioButton   *button,
gboolean
force_update);
@@ -78,6 +77,7 @@ struct _PulseaudioButton
 {
   GtkToggleButton   __parent__;
 
+  PulseaudioPlugin *plugin;
   PulseaudioConfig *config;
   PulseaudioVolume *volume;
 
@@ -91,7 +91,7 @@ struct _PulseaudioButton
   guint pixbuf_idx;
   GdkPixbuf   **pixbufs;
 
-  GtkMenu  *menu;
+  GtkWidget*menu;
 
   gulongvolume_changed_id;
   gulongdeactivate_id;
@@ -118,7 +118,6 @@ pulseaudio_button_class_init (PulseaudioButtonClass *klass)
 
   gtkwidget_class = GTK_WIDGET_CLASS (klass);
   gtkwidget_class-button_press_event   = pulseaudio_button_button_press;
-  gtkwidget_class-button_release_event = pulseaudio_button_button_release;
   gtkwidget_class-scroll_event = pulseaudio_button_scroll_event;
 }
 
@@ -149,6 +148,7 @@ pulseaudio_button_init (PulseaudioButton *button)
   /* Intercept scroll events */
   gtk_widget_add_events (GTK_WIDGET (button), GDK_SCROLL_MASK);
 
+  button-plugin = NULL;
   button-config = NULL;
   button-volume = NULL;
 
@@ -185,8 +185,8 @@ pulseaudio_button_finalize (GObject *object)
 
   if (button-menu != NULL)
 {
-  gtk_menu_detach (button-menu);
-  gtk_menu_popdown (button-menu);
+  gtk_menu_detach (GTK_MENU (button-menu));
+  gtk_menu_popdown (GTK_MENU (button-menu));
   button-menu = NULL;
 }
 
@@ -203,43 +203,24 @@ pulseaudio_button_button_press (GtkWidget  *widget,
   if(event-button == 1) /* left button */
 {
   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (widget), TRUE);
+  if (button-menu == NULL)
+  button-menu = pulseaudio_menu_new (button-volume, button-config, 
widget);
+  if (button-deactivate_id == 0)
+  button-deactivate_id = g_signal_connect_swapped
+(GTK_MENU_SHELL (button-menu), deactivate,
+ G_CALLBACK (pulseaudio_button_menu_deactivate), button);
+
+  gtk_menu_popup (GTK_MENU (button-menu),
+  NULL, NULL,
+  xfce_panel_plugin_position_menu, button-plugin,
+  //NULL, NULL,
+  0,
+  gtk_get_current_event_time ());
   return TRUE;
 }
 
   if(event-button == 2) /* middle button 

[Xfce4-commits] [xfce/exo] 01/01: I18n: Update translation de (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/exo.

commit 351697d034f23cc1f4f5c2913a71060739cd4bcc
Author: Tobias Bannert tobann...@gmail.com
Date:   Tue Mar 3 18:30:02 2015 +0100

I18n: Update translation de (100%).

286 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/de.po |   24 
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/po/de.po b/po/de.po
index 9a9d466..5dbe327 100644
--- a/po/de.po
+++ b/po/de.po
@@ -13,7 +13,7 @@ msgstr 
 Project-Id-Version: Exo\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2015-02-17 06:30+0100\n
-PO-Revision-Date: 2015-02-22 22:25+\n
+PO-Revision-Date: 2015-03-03 16:29+\n
 Last-Translator: Tobias Bannert tobann...@gmail.com\n
 Language-Team: German 
(http://www.transifex.com/projects/p/exo/language/de/)\n
 MIME-Version: 1.0\n
@@ -114,31 +114,31 @@ msgstr Aktiv
 
 #: ../exo/exo-icon-bar.c:341
 msgid Active item index
-msgstr Index des aktiven Elements
+msgstr Index des aktiven Elementes
 
 #: ../exo/exo-icon-bar.c:347 ../exo/exo-icon-bar.c:348
 msgid Active item fill color
-msgstr Füllfarbe des aktiven Elements
+msgstr Füllfarbe des aktiven Elementes
 
 #: ../exo/exo-icon-bar.c:354 ../exo/exo-icon-bar.c:355
 msgid Active item border color
-msgstr Randfarbe des aktiven Elements
+msgstr Randfarbe des aktiven Elementes
 
 #: ../exo/exo-icon-bar.c:361 ../exo/exo-icon-bar.c:362
 msgid Active item text color
-msgstr Textfarbe des aktiven Elements
+msgstr Textfarbe des aktiven Elementes
 
 #: ../exo/exo-icon-bar.c:368 ../exo/exo-icon-bar.c:369
 msgid Cursor item fill color
-msgstr Füllfarbe des Elements unter dem Zeiger
+msgstr Füllfarbe des Elementes unter dem Zeiger
 
 #: ../exo/exo-icon-bar.c:375 ../exo/exo-icon-bar.c:376
 msgid Cursor item border color
-msgstr Randfarbe des Elements unter dem Zeiger
+msgstr Randfarbe des Elementes unter dem Zeiger
 
 #: ../exo/exo-icon-bar.c:382 ../exo/exo-icon-bar.c:383
 msgid Cursor item text color
-msgstr Textfarbe des Elements unter dem Zeiger
+msgstr Textfarbe des Elementes unter dem Zeiger
 
 #. EXO_ICON_CHOOSER_CONTEXT_ACTIONS
 #: ../exo/exo-icon-chooser-dialog.c:109
@@ -213,7 +213,7 @@ msgstr Bilddateien
 #. setup the context combo box
 #: ../exo/exo-icon-chooser-dialog.c:210
 msgid Select _icon from:
-msgstr _Symbol wählen aus:
+msgstr Symbol_wahl aus:
 
 #. search filter
 #: ../exo/exo-icon-chooser-dialog.c:225
@@ -396,7 +396,7 @@ msgstr Eine _neue Werkzeugleiste hinzufügen
 msgid 
 Drag an item onto the toolbars above to add it, from the toolbars in the 
 items table to remove it.
-msgstr Ziehen Sie ein Objekt auf die obigen Werkzeugleisten und legen Sie es 
dort ab, um es hinzuzufügen oder umgekehrt, um es zu entfernen.
+msgstr Elemente lassen sich auf die oberen Werkzeugleisten, durch ablegen und 
ziehen, hinzufügen und entfernen.
 
 #: ../exo/exo-toolbars-editor.c:537
 msgid Separator
@@ -620,7 +620,7 @@ msgstr A_dresse:
 #. conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:360
 msgid Working _Directory:
-msgstr _Arbeitsverzeichnis
+msgstr Arbeits_verzeichnis:
 
 #. TRANSLATORS: Label in Create Launcher/Create Link dialog, make sure to
 #. avoid mnemonic conflicts
@@ -861,7 +861,7 @@ msgstr Terminal
 msgid 
 The preferred Terminal Emulator will be used to\n
 run commands that require a CLI environment.
-msgstr Das Terminal wird verwendet, um Befehle auszuführen,\ndie eine 
Kommandozeilenumgebung benötigen.
+msgstr Das Terminal wird verwendet, um Befehle auszuführen,\ndie eine 
Befehlszeilenumgebung benötigen.
 
 #: ../exo-helper/exo-helper-chooser.c:149
 #: ../exo-helper/exo-helper-chooser.c:156

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/ristretto] branch master updated (b942ac3 - 94f94e2)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/ristretto.

  from  b942ac3   I18n: Update translation es (100%).
   new  59ccedf   I18n: Update translation ko (100%).
   new  94f94e2   I18n: Update translation zh_TW (100%).

The 2 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/ko.po|   24 
 po/zh_TW.po |   41 ++---
 2 files changed, 50 insertions(+), 15 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/exo] branch xfce-4.10 updated (5ff63c4 - 232b9f8)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch xfce-4.10
in repository xfce/exo.

  from  5ff63c4   I18n: Update translation bg (100%).
   new  232b9f8   I18n: Update translation de (100%).

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/de.po |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/ristretto] 02/02: I18n: Update translation zh_TW (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/ristretto.

commit 94f94e2d04efc74c1981e1a6a2101c396cf97fca
Author: Jeff Huang s8321...@gmail.com
Date:   Tue Mar 3 18:31:02 2015 +0100

I18n: Update translation zh_TW (100%).

188 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/zh_TW.po |   41 ++---
 1 file changed, 38 insertions(+), 3 deletions(-)

diff --git a/po/zh_TW.po b/po/zh_TW.po
index 46992b5..80ce93f 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -10,8 +10,8 @@ msgid 
 msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2015-01-18 12:31+0100\n
-PO-Revision-Date: 2015-01-19 09:19+\n
+POT-Creation-Date: 2015-03-02 18:31+0100\n
+PO-Revision-Date: 2015-03-03 12:13+\n
 Last-Translator: Jeff Huang s8321...@gmail.com\n
 Language-Team: Chinese (Taiwan) 
(http://www.transifex.com/projects/p/xfce-apps/language/zh_TW/)\n
 MIME-Version: 1.0\n
@@ -475,7 +475,7 @@ msgstr GNOME
 msgid Developer:
 msgstr 開發者:
 
-#: ../src/main_window.c:2606
+#: ../src/main_window.c:2606 ../ristretto.appdata.xml.in.h:1
 msgid Ristretto is an image viewer for the Xfce desktop environment.
 msgstr Ristretto 是個 Xfce 桌面環境的影像檢視器。
 
@@ -862,3 +862,38 @@ msgstr Ristretto 影像檢視器
 #: ../ristretto.desktop.in.h:2
 msgid Look at your images easily
 msgstr 輕鬆查看您的影像
+
+#: ../ristretto.appdata.xml.in.h:2
+msgid 
+The Ristretto Image Viewer is an application that can be used to view and 
+scroll through images, run a slideshow of images, open images with other 
+applications like an image-editor or configure an image as the desktop 
+wallpaper.
+msgstr Ristretto 
影像檢視器是一個用來檢視及捲動瀏覽影象、播放影像幻燈片、以其他應用程式(如影像編輯器)開啟、或是將影像設定為桌面的桌布的應用程式。
+
+#: ../ristretto.appdata.xml.in.h:3
+msgid 
+This version comes with the improvements such as thumbnail usage as appicon 
+and update to the first image in the image-list when receiving a ready-
+signal, required to show the thumbnail once it's generated.
+msgstr 此版本帶有一些像是將縮圖使用為應用程式的小圖示、及當收到預備訊號時更新在影像列表中的第一個影像、及當生成後需要顯示縮圖。
+
+#: ../ristretto.appdata.xml.in.h:4
+msgid 
+This release contains lots of translation-updates, and a crash when 
+configuring the 'limit-quality' property.
+msgstr 此版本包含了許多翻譯更新,會在設定「品質極限」屬性時當掉。
+
+#: ../ristretto.appdata.xml.in.h:5
+msgid 
+This version comes with several changes such as online documentation on 
+docs.xfce.org, the option to limit the maximum image-quality to the screen 
+dimensions to improve memory-usage and performance - now ristretto renders 
+at full quality with this option disabled, only one toolbar - instead of 
+two, a quick-launch button on the toolbar to execute an editor, the option 
+to pick a default-editor per mime-type, an optional clock that shows up when
+ ristretto is fullscreen, Ristretto now shows a 'Loading..' message in the 
+statusbar to indicate when it is busy and progressive loading of directories
+ to prevent lockup of the UI. This version is designed to work with version 
+4.10 of Xfce.
+msgstr 此版本帶來許多改變,像是在 docs.xfce.org 的線上文件、以螢幕的解析度限制最大影像品質以改善記憶體使用量及效能 - 
ristretto 現在可以以停用這個選項來以完整品質渲染、現在只有一個工具列 - 而非兩個、在工具列上的快速啟動按鈕可以執行編輯器、選取每個 MIME 
類型的預設編輯器的選項、一個可以在 ristretto 處於全螢幕狀態選擇性顯示的時鐘、Ristretto 
現在會在忙碌及載入資料夾時在狀態列上顯示「載入中..」訊息,以防止使用者介面鎖死。此版本是設計來與 Xfce 4.10 一同運作的。

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/ristretto] 01/02: I18n: Update translation ko (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/ristretto.

commit 59ccedfd64e437f498eb9f50584cd4590e8623bd
Author: Seong-ho Cho darkcircle.0...@gmail.com
Date:   Tue Mar 3 18:31:02 2015 +0100

I18n: Update translation ko (100%).

188 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/ko.po |   24 
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index 75957ba..d2bcf4b 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -8,8 +8,8 @@ msgid 
 msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2015-01-25 12:30+0100\n
-PO-Revision-Date: 2015-02-08 11:39+\n
+POT-Creation-Date: 2015-03-02 18:31+0100\n
+PO-Revision-Date: 2015-03-03 12:16+\n
 Last-Translator: Seong-ho Cho darkcircle.0...@gmail.com\n
 Language-Team: Korean 
(http://www.transifex.com/projects/p/xfce-apps/language/ko/)\n
 MIME-Version: 1.0\n
@@ -885,13 +885,13 @@ msgstr 이번 출시 버전에서는 여러부분의 번역 업데이트를 포
 #: ../ristretto.appdata.xml.in.h:5
 msgid 
 This version comes with several changes such as online documentation on 
-http://docs.xfce.org, the option to limit the maximum image-quality to the 
-screen dimensions to improve memory-usage and performance - now ristretto 
-renders at full quality with this option disabled, only one toolbar - 
-instead of two, a quick-launch button on the toolbar to execute an editor, 
-the option to pick a default-editor per mime-type, an optional clock that 
-shows up when ristretto is fullscreen, Ristretto now shows a 'Loading..' 
-message in the statusbar to indicate when it is busy and progressive loading
- of directories to prevent lockup of the UI. This version is designed to 
-work with version 4.10 of Xfce.
-msgstr 이 버전에는 http://docs.xfce.org 온라인 문서에 기술한 바와 같이 다양한 개선 사항을 넣었습니다. 메모리 사용 
방식 및 프로그램 성능을 개선하기 위해 화면 해상도에 대한 최대 화질을 제한하는 옵션을 넣었습니다. 이제 리스트레또에서는 이 옵션을 
비활성화하면 완벽한 화질로 표현합니다. 그리고 도구 모음을 하나만 배치하여 편집기를 실행할 도구모음에서 빠른 실행 단추를 추가했습니다. 
MIME 형식별 기본 편집기를 고를 옵션을 넣었고, 리스트레또가 전체 화면 상태일 경우 나타날 추가 시계 기능도 넣어, 이제는 리스트레또에서 
디렉터리를 불러오는 동안 상태를 표시하고 UI 잠금 현상을 막기 위해 '불러오는 중..' 메시지를 나타냅니다. 이 버전은 Xfce 버전 
4.10에서 동작하도록 만들었습니다.
+docs.xfce.org, the option to limit the maximum image-quality to the screen 
+dimensions to improve memory-usage and performance - now ristretto renders 
+at full quality with this option disabled, only one toolbar - instead of 
+two, a quick-launch button on the toolbar to execute an editor, the option 
+to pick a default-editor per mime-type, an optional clock that shows up when
+ ristretto is fullscreen, Ristretto now shows a 'Loading..' message in the 
+statusbar to indicate when it is busy and progressive loading of directories
+ to prevent lockup of the UI. This version is designed to work with version 
+4.10 of Xfce.
+msgstr 이 버전에서는 docs.xfce.org에 있는 온라인 문서, 메모리 사용량 및 성능을 개선하려 화면 해상도별 최대 이미지 화질 
제한 옵션 추가 등의 몇가지 기능이 바뀌었습니다 - 이제 리스트레또에서는 도구 모음에서만 존재하는 언급한 옵션을 비활성화하여 완벽한 화질을 
구현합니다 - 도구 모음의 기본 편집기 선택 옵션과 리스트레또 전체화면 상태일 때 나타나는 추가 시계기능 대신 '불러오는 중..' 메시지를 
상태 표시줄에 나타내어 UI가 멈춰보이는 현상을 막습니다. 이 버전은 Xfce 버전 4.10에서 동작하도록 설계했습니다.

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-xfapplet-plugin] 01/01: I18n: Update translation es (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository panel-plugins/xfce4-xfapplet-plugin.

commit 3574d1608b0bf8c0410dece4e7ae8e5642854cae
Author: Manolo Díaz diaz.man...@gmail.com
Date:   Tue Mar 3 18:32:02 2015 +0100

I18n: Update translation es (100%).

14 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/es.po |   10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/po/es.po b/po/es.po
index 44f63d5..52d8197 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,15 +4,17 @@
 # 
 # Translators:
 #  abel.martin.r...@gmail.com, 2009
-# Adolfo Jayme Barrientos fitosch...@ubuntu.com, 2014
-# Pablo Lezaeta prfl...@gmail.com, 2014
+# Adolfo Jayme Barrientos, 2014
+# Adolfo Jayme Barrientos, 2014
+# David Segura Monroy david...@gmail.com, 2013
+# Pablo Roberto Francisco Lezaeta Reyes prfl...@gmail.com, 2014
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2006-09-10 21:12+0200\n
-PO-Revision-Date: 2014-05-19 05:57+\n
-Last-Translator: Pablo Lezaeta prfl...@gmail.com\n
+PO-Revision-Date: 2015-03-03 13:05+\n
+Last-Translator: Manolo Díaz diaz.man...@gmail.com\n
 Language-Team: Spanish 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/es/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-timer-plugin] 01/01: I18n: Update translation es (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository panel-plugins/xfce4-timer-plugin.

commit da4a880815d687249ddf752ef190bef94b138e83
Author: Manolo Díaz diaz.man...@gmail.com
Date:   Tue Mar 3 18:31:50 2015 +0100

I18n: Update translation es (100%).

42 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/es.po |   31 ---
 1 file changed, 16 insertions(+), 15 deletions(-)

diff --git a/po/es.po b/po/es.po
index 7cf4d19..1be370f 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,8 +4,9 @@
 # 
 # Translators:
 #  abel.martin.r...@gmail.com, 2009
-# Adolfo Jayme Barrientos f...@libreoffice.org, 2015
-# Adolfo Jayme Barrientos f...@libreoffice.org, 2014
+# Adolfo Jayme Barrientos, 2014-2015
+# Adolfo Jayme Barrientos, 2015
+# Adolfo Jayme Barrientos, 2014
 # mc correomc2000-...@yahoo.es, 2013
 # Pablo Roberto Francisco Lezaeta Reyes prfl...@gmail.com, 2014
 msgid 
@@ -13,8 +14,8 @@ msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2014-06-05 06:31+0200\n
-PO-Revision-Date: 2015-01-05 19:12+\n
-Last-Translator: Adolfo Jayme Barrientos f...@libreoffice.org\n
+PO-Revision-Date: 2015-03-03 12:41+\n
+Last-Translator: Manolo Díaz diaz.man...@gmail.com\n
 Language-Team: Spanish 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/es/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -51,11 +52,11 @@ msgstr ¡Bip! :) \nSe acabó el tiempo de la alarma %s.
 
 #: ../src/xfcetimer.c:198
 msgid Rerun the timer
-msgstr Reiniciar el temporalizador
+msgstr Reiniciar el temporizador
 
 #: ../src/xfcetimer.c:487
 msgid Resume timer
-msgstr Reanudar temporizador
+msgstr Reanudar el temporizador
 
 #: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
 msgid Stop timer
@@ -63,7 +64,7 @@ msgstr Parar temporizador
 
 #: ../src/xfcetimer.c:538
 msgid Pause timer
-msgstr Pausar temporizador
+msgstr Pausar el temporizador
 
 #: ../src/xfcetimer.c:552
 msgid Start timer
@@ -100,7 +101,7 @@ msgstr Nombre:
 #. 
 #: ../src/xfcetimer.c:809
 msgid Enter the countdown time
-msgstr Introduzca el tiempo de cuenta atrás
+msgstr Introduzca el tiempo de la cuenta atrás
 
 #: ../src/xfcetimer.c:812
 msgid Enter the time of alarm (24h format)
@@ -141,7 +142,7 @@ msgstr Opciones del temporizador de Xfce4
 
 #: ../src/xfcetimer.c:1506
 msgid Xfce 4 Timer Plugin
-msgstr Complemento temporalizador de Xfce 4
+msgstr Complemento temporizador de Xfce 4
 
 #: ../src/xfcetimer.c:1552
 msgid Timer name
@@ -163,12 +164,12 @@ msgstr No mostrar un aviso si se definió una orden de 
alarma
 
 #: ../src/xfcetimer.c:1622
 msgid Selecting a timer starts it
-msgstr Seleccionado temporizador se inicia
+msgstr Seleccionando un temporizador se inicia este
 
 #. Default alarm command config
 #: ../src/xfcetimer.c:1630
 msgid Use a default alarm command
-msgstr Utilizar la orden de alarma predefinido
+msgstr Utilizar la orden de alarma predefinida
 
 #: ../src/xfcetimer.c:1637
 msgid Default command: 
@@ -185,11 +186,11 @@ msgstr Número de repeticiones
 
 #: ../src/xfcetimer.c:1662
 msgid   Time interval (sec.)
-msgstr   Intervalo de tiempo (seg.)
+msgstr   Intervalo de tiempo (s)
 
 #: ../src/xfcetimer.c:1723
 msgid About xfce4-timer-plugin
-msgstr Acerca del Complemento temporalizador de Xfce4
+msgstr Acerca del Complemento temporizador de Xfce4
 
 #: ../src/xfcetimer.c:1728
 msgid A plugin to define countdown timers or alarms at given times.
@@ -197,11 +198,11 @@ msgstr Un complemento para definir temporizadores de 
cuenta regresiva o alarmas
 
 #: ../src/xfcetimer.c:1730
 msgid Copyright (c) 2005-2013\n
-msgstr Derechos de autor  (c) 2005-2013\n
+msgstr Derechos de autor (c) 2005-2013\n
 
 #: ../src/xfce4-timer.desktop.in.in.h:1
 msgid Xfce4 Timer
-msgstr Temporalizador de Xfce4
+msgstr Temporizador de Xfce4
 
 #: ../src/xfce4-timer.desktop.in.in.h:2
 msgid Timer plugin for Xfce panel

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfmedia-remote-plugin] 01/01: I18n: Update translation es (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository panel-plugins/xfmedia-remote-plugin.

commit 3b772966ce03b50b6f8fbe6513650d0c323c3f44
Author: Manolo Díaz diaz.man...@gmail.com
Date:   Tue Mar 3 18:32:11 2015 +0100

I18n: Update translation es (100%).

27 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/es.po |   13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/po/es.po b/po/es.po
index de12202..8bdcf16 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,15 +4,16 @@
 # 
 # Translators:
 #  abel.martin.r...@gmail.com, 2009
-# Adolfo Jayme Barrientos f...@libreoffice.org, 2014
+# Adolfo Jayme Barrientos, 2014
+# Adolfo Jayme Barrientos, 2014
 # Pablo Roberto Francisco Lezaeta Reyes prfl...@gmail.com, 2014
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2008-05-14 17:32-0400\n
-PO-Revision-Date: 2014-12-25 23:24+\n
-Last-Translator: Pablo Roberto Francisco Lezaeta Reyes prfl...@gmail.com\n
+PO-Revision-Date: 2015-03-03 13:16+\n
+Last-Translator: Manolo Díaz diaz.man...@gmail.com\n
 Language-Team: Spanish 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/es/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -88,12 +89,12 @@ msgstr Lista de reproducción
 #. Load Playlist
 #: ../panel-plugin/xfmedia-remote-plugin.c:679
 msgid _Load...
-msgstr _Cargar...
+msgstr _Cargar…
 
 #. Save Playlist
 #: ../panel-plugin/xfmedia-remote-plugin.c:690
 msgid _Save...
-msgstr _Guardar...
+msgstr _Guardar…
 
 #. Clear Playlist
 #: ../panel-plugin/xfmedia-remote-plugin.c:701
@@ -103,7 +104,7 @@ msgstr _Limpiar
 #. Add Track
 #: ../panel-plugin/xfmedia-remote-plugin.c:712
 msgid _Add track(s)...
-msgstr _Añadir pista(s)...
+msgstr _Añadir pista(s)…
 
 #. Quit
 #: ../panel-plugin/xfmedia-remote-plugin.c:729

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-xfapplet-plugin] branch master updated (ff7e2b1 - 3574d16)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository panel-plugins/xfce4-xfapplet-plugin.

  from  ff7e2b1   I18n: Update translation bg (100%).
   new  3574d16   I18n: Update translation es (100%).

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/es.po |   10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-xmms-plugin] 01/01: I18n: Update translation es (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository panel-plugins/xfce4-xmms-plugin.

commit abaf8f52f26e488483f95a9ffbb8babffdca70cc
Author: Manolo Díaz diaz.man...@gmail.com
Date:   Tue Mar 3 18:32:07 2015 +0100

I18n: Update translation es (100%).

35 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/es.po |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/po/es.po b/po/es.po
index 8112039..34c6deb 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,15 +4,15 @@
 # 
 # Translators:
 #  abel.martin.r...@gmail.com, 2009
-# MC correomc2000-...@yahoo.es, 2013
-# Pablo Lezaeta prfl...@gmail.com, 2013-2014
+# mc correomc2000-...@yahoo.es, 2013
+# Pablo Roberto Francisco Lezaeta Reyes prfl...@gmail.com, 2013-2014
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-13 22:15+0200\n
-PO-Revision-Date: 2014-05-19 05:57+\n
-Last-Translator: Pablo Lezaeta prfl...@gmail.com\n
+PO-Revision-Date: 2015-03-03 13:11+\n
+Last-Translator: Manolo Díaz diaz.man...@gmail.com\n
 Language-Team: Spanish 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/es/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -101,7 +101,7 @@ msgstr Ence_nder
 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 Aviso:\nNo cambie esta opción de XMMS o de BeepMediaPlayer a la otra, 
mientras alguno de estos dos esté en ejecución. Estos se bloquearán debido a 
que utilizan la misma dirección de socket. Por el mismo motivo, no debe 
ejecutar el otro reproductor mientras este complemento esté funcionando.
+msgstr Aviso:\nNo cambie esta opción de XMMS o de BeepMediaPlayer a la otra 
mientras, alguno de estos dos esté en ejecución. Estos se bloquearán debido a 
que utilizan la misma dirección de socket. Por el mismo motivo, no debe 
ejecutar el otro reproductor mientras este complemento esté funcionando.
 
 #: ../panel-plugin/preferences.c:315
 msgid Properties
@@ -163,14 +163,14 @@ msgstr Barra de volumen horizontal
 #. add check button for quit xmms option
 #: ../panel-plugin/preferences.c:381
 msgid Quit the player when plugin terminates
-msgstr Salir del reporoductor cuando el complemento se cierra
+msgstr Salir del reproductor cuando el complemento se cierra
 
 #. TODO any other idea
 #: ../panel-plugin/xmms_plugin.c:564
 msgid 
 Cannot find any supported media player. You have to install at least one 
 player first.
-msgstr No se puede encontrar ningún reproductor multimedia soportado. Debe, 
al menos, instalar primero un reproductor.
+msgstr No se puede encontrar ningún reproductor multimedia compatible. Debe 
instalar primero, al menos, un reproductor.
 
 #: ../panel-plugin/xfce4-xmms-plugin.desktop.in.in.h:1
 msgid Xfce4 XMMS Plugin

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfmedia-remote-plugin] branch master updated (ea1cd31 - 3b77296)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository panel-plugins/xfmedia-remote-plugin.

  from  ea1cd31   I18n: Update translation es (100%).
   new  3b77296   I18n: Update translation es (100%).

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/es.po |   13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-xmms-plugin] branch master updated (d6af0c2 - abaf8f5)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository panel-plugins/xfce4-xmms-plugin.

  from  d6af0c2   I18n: Update translation sk (100%).
   new  abaf8f5   I18n: Update translation es (100%).

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/es.po |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-timer-plugin] branch master updated (b32b5d5 - da4a880)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository panel-plugins/xfce4-timer-plugin.

  from  b32b5d5   I18n: Update translation sk (100%).
   new  da4a880   I18n: Update translation es (100%).

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/es.po |   31 ---
 1 file changed, 16 insertions(+), 15 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/exo] 01/01: I18n: Update translation de (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch xfce-4.10
in repository xfce/exo.

commit 232b9f89d49cc758fb4c3113484f973f5eab8ad3
Author: Tobias Bannert tobann...@gmail.com
Date:   Tue Mar 3 18:30:10 2015 +0100

I18n: Update translation de (100%).

275 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/de.po |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/po/de.po b/po/de.po
index 93e2985..d0be958 100644
--- a/po/de.po
+++ b/po/de.po
@@ -6,14 +6,14 @@
 # Jannis Pohlmann jan...@xfce.org, 2008
 # Nico Schümann n...@prog.nico22.de, 2007
 # Paul Seyfert pseyf...@mathphys.fsk.uni-heidelberg.de, 2010
-# Tobias Bannert, 2014
+# Tobias Bannert tobann...@gmail.com, 2014-2015
 msgid 
 msgstr 
 Project-Id-Version: Exo\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-02 22:55+0200\n
-PO-Revision-Date: 2014-09-11 22:09+\n
-Last-Translator: Tobias Bannert\n
+PO-Revision-Date: 2015-03-03 15:08+\n
+Last-Translator: Tobias Bannert tobann...@gmail.com\n
 Language-Team: German 
(http://www.transifex.com/projects/p/exo/language/de/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -867,7 +867,7 @@ msgstr Terminal
 msgid 
 The preferred Terminal Emulator will be used to\n
 run commands that require a CLI environment.
-msgstr Das Terminal wird verwendet, um Befehle auszuführen,\ndie eine 
Kommandozeilenumgebung benötigen.
+msgstr Das Terminal wird verwendet, um Befehle auszuführen,\ndie eine 
Befehlszeilenumgebung benötigen.
 
 #: ../exo-helper/exo-helper-chooser.c:149
 #: ../exo-helper/exo-helper-chooser.c:156

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 01/01: Fix glib warning

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a commit to branch master
in repository xfce/xfdesktop.

commit d122e28567eae18e6328ec17f297ddab6ce87ec0
Author: Thaddaeus Tintenfisch thad.fi...@gmail.com
Date:   Tue Mar 3 17:35:14 2015 +0100

Fix glib warning

The following warning would appear when starting xfdesktop with icon
type set to minimized application icons:
  signal 'hidden-state-changed' is invalid for instance '0x99c0340'
  of type 'XfdesktopWindowIconManager'

Signed-off-by: Eric Koegel eric.koe...@gmail.com
---
 src/xfce-desktop.c |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/xfce-desktop.c b/src/xfce-desktop.c
index 0e10d7a..516d76c 100644
--- a/src/xfce-desktop.c
+++ b/src/xfce-desktop.c
@@ -264,7 +264,9 @@ xfce_desktop_setup_icon_view(XfceDesktop *desktop)
 gtk_widget_show(desktop-priv-icon_view);
 gtk_container_add(GTK_CONTAINER(desktop), desktop-priv-icon_view);
 
-g_signal_connect(G_OBJECT(manager), hidden-state-changed, 
G_CALLBACK(hidden_state_changed_cb), desktop);
+if(desktop-priv-icons_style == XFCE_DESKTOP_ICON_STYLE_FILES)
+g_signal_connect(G_OBJECT(manager), hidden-state-changed,
+ G_CALLBACK(hidden_state_changed_cb), desktop);
 }
 
 gtk_widget_queue_draw(GTK_WIDGET(desktop));

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] branch master updated (cfb4447 - d122e28)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

eric pushed a change to branch master
in repository xfce/xfdesktop.

  from  cfb4447   trivial: remove unused variable
   new  d122e28   Fix glib warning

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/xfce-desktop.c |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-power-manager] 03/03: I18n: Update translation th (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/xfce4-power-manager.

commit a0b59185a3a222ed295d90664c3b3e604e310ec6
Author: Theppitak Karoonboonyanan theppi...@gmail.com
Date:   Tue Mar 3 12:30:51 2015 +0100

I18n: Update translation th (100%).

205 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/th.po |  222 --
 1 file changed, 113 insertions(+), 109 deletions(-)

diff --git a/po/th.po b/po/th.po
index ffd4f8d..0041cf9 100644
--- a/po/th.po
+++ b/po/th.po
@@ -9,8 +9,8 @@ msgid 
 msgstr 
 Project-Id-Version: Xfce4-power-manager\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2015-02-07 12:30+0100\n
-PO-Revision-Date: 2015-02-13 06:41+\n
+POT-Creation-Date: 2015-03-02 00:30+0100\n
+PO-Revision-Date: 2015-03-03 07:36+\n
 Last-Translator: Theppitak Karoonboonyanan theppi...@gmail.com\n
 Language-Team: Thai 
(http://www.transifex.com/projects/p/xfce4-power-manager/language/th/)\n
 MIME-Version: 1.0\n
@@ -19,9 +19,9 @@ msgstr 
 Language: th\n
 Plural-Forms: nplurals=1; plural=0;\n
 
-#: ../data/interfaces/xfpm-settings.ui.h:1 ../settings/xfpm-settings.c:626
-#: ../settings/xfpm-settings.c:641 ../settings/xfpm-settings.c:668
-#: ../settings/xfpm-settings.c:1551
+#: ../data/interfaces/xfpm-settings.ui.h:1 ../settings/xfpm-settings.c:640
+#: ../settings/xfpm-settings.c:655 ../settings/xfpm-settings.c:682
+#: ../settings/xfpm-settings.c:1572
 msgid Never
 msgstr ไม่เลย
 
@@ -87,289 +87,293 @@ msgid Show notifications
 msgstr แสดงการแจ้งเหตุ
 
 #: ../data/interfaces/xfpm-settings.ui.h:17
+msgid Show system tray icon
+msgstr แสดงไอคอนในถาดระบบ
+
+#: ../data/interfaces/xfpm-settings.ui.h:18
 msgid bAppearance/b
 msgstr bรูปลักษณ์/b
 
-#: ../data/interfaces/xfpm-settings.ui.h:18
+#: ../data/interfaces/xfpm-settings.ui.h:19
 msgid General
 msgstr ทั่วไป
 
-#: ../data/interfaces/xfpm-settings.ui.h:19
+#: ../data/interfaces/xfpm-settings.ui.h:20
 msgid When inactive for
 msgstr เมื่อไม่ใช้งานเป็นเวลา
 
-#: ../data/interfaces/xfpm-settings.ui.h:20
+#: ../data/interfaces/xfpm-settings.ui.h:21
 msgid System sleep mode:
 msgstr โหมดเครื่องหลับ:
 
-#: ../data/interfaces/xfpm-settings.ui.h:21
+#: ../data/interfaces/xfpm-settings.ui.h:22
 msgid bSystem power saving/b
 msgstr bการประหยัดพลังงานของระบบ/b
 
-#: ../data/interfaces/xfpm-settings.ui.h:22
+#: ../data/interfaces/xfpm-settings.ui.h:23
 msgid Critical battery power level:
 msgstr ระดับพลังงานแบตเตอรี่ขั้นวิกฤติ:
 
-#: ../data/interfaces/xfpm-settings.ui.h:23
+#: ../data/interfaces/xfpm-settings.ui.h:24
 msgid On critical battery power:
 msgstr เมื่อพลังงานแบตเตอรี่ถึงขั้นวิกฤติ:
 
-#: ../data/interfaces/xfpm-settings.ui.h:24
+#: ../data/interfaces/xfpm-settings.ui.h:25
 msgid bCritical power/b
 msgstr bพลังงานขั้นวิกฤติ/b
 
-#: ../data/interfaces/xfpm-settings.ui.h:25
+#: ../data/interfaces/xfpm-settings.ui.h:26
 msgid Lock screen when system is going for sleep
 msgstr ล็อคหน้าจอก่อนพักเครื่อง/จำศีลเครื่อง
 
-#: ../data/interfaces/xfpm-settings.ui.h:26
+#: ../data/interfaces/xfpm-settings.ui.h:27
 msgid bSecurity/b
 msgstr bระบบรักษาความปลอดภัย/b
 
-#: ../data/interfaces/xfpm-settings.ui.h:27
+#: ../data/interfaces/xfpm-settings.ui.h:28
 msgid System
 msgstr ระบบ
 
-#: ../data/interfaces/xfpm-settings.ui.h:28
+#: ../data/interfaces/xfpm-settings.ui.h:29
 msgid Handle display power management
 msgstr จัดการการจัดการพลังงานของจอแสดงผล
 
-#: ../data/interfaces/xfpm-settings.ui.h:29
+#: ../data/interfaces/xfpm-settings.ui.h:30
 msgid Blank after
 msgstr ดับจอหลังจาก
 
-#: ../data/interfaces/xfpm-settings.ui.h:30
+#: ../data/interfaces/xfpm-settings.ui.h:31
 msgid Put to sleep after
 msgstr ให้จอหลับหลังจาก
 
-#: ../data/interfaces/xfpm-settings.ui.h:31
+#: ../data/interfaces/xfpm-settings.ui.h:32
 msgid Switch off after
 msgstr ปิดจอหลังจาก
 
-#: ../data/interfaces/xfpm-settings.ui.h:32
+#: ../data/interfaces/xfpm-settings.ui.h:33
 msgid bDisplay power management settings/b
 msgstr bการตั้งค่าการจัดการพลังงานของจอภาพ/b
 
-#: ../data/interfaces/xfpm-settings.ui.h:33
+#: ../data/interfaces/xfpm-settings.ui.h:34
 msgid On inactivity reduce to
 msgstr เมื่อไม่ใช้งาน หรี่ลงเหลือ
 
-#: ../data/interfaces/xfpm-settings.ui.h:34
+#: ../data/interfaces/xfpm-settings.ui.h:35
 msgid Reduce after
 msgstr หรี่หลังจาก
 
-#: ../data/interfaces/xfpm-settings.ui.h:35
+#: ../data/interfaces/xfpm-settings.ui.h:36
 msgid bBrightness reduction/b
 msgstr bการหรี่จอภาพ/b
 
-#: ../data/interfaces/xfpm-settings.ui.h:36
+#: ../data/interfaces/xfpm-settings.ui.h:37
 msgid Display
 msgstr จอแสดงผล
 
-#: ../data/interfaces/xfpm-settings.ui.h:37
+#: ../data/interfaces/xfpm-settings.ui.h:38
 msgid Automatically lock the session:
 msgstr ล็อควาระโดยอัตโนมัติ:
 
-#: ../data/interfaces/xfpm-settings.ui.h:38
+#: ../data/interfaces/xfpm-settings.ui.h:39
 msgid Delay locking after screensaver for
 msgstr 

[Xfce4-commits] [xfce/xfce4-power-manager] 01/03: I18n: Update translation cs (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/xfce4-power-manager.

commit dd471557c2961ab31a3655e545901d80e81bbd16
Author: Alois Nešpor i...@aloisnespor.info
Date:   Tue Mar 3 12:30:51 2015 +0100

I18n: Update translation cs (100%).

205 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/cs.po |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index 4671a88..f75843d 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -11,7 +11,7 @@ msgstr 
 Project-Id-Version: Xfce4-power-manager\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2015-03-02 00:30+0100\n
-PO-Revision-Date: 2015-03-02 15:43+\n
+PO-Revision-Date: 2015-03-03 09:54+\n
 Last-Translator: Alois Nešpor i...@aloisnespor.info\n
 Language-Team: Czech 
(http://www.transifex.com/projects/p/xfce4-power-manager/language/cs/)\n
 MIME-Version: 1.0\n
@@ -376,7 +376,7 @@ msgstr Zkontrolujte instalaci správce napájení
 
 #: ../settings/xfpm-settings.c:2375
 msgid Devices
-msgstr Zažízení
+msgstr Zařízení
 
 #: ../settings/xfpm-settings-main.c:80
 msgid Settings manager socket

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-power-manager] branch master updated (5f8e726 - a0b5918)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/xfce4-power-manager.

  from  5f8e726   I18n: Update translation ms (100%).
   new  dd47155   I18n: Update translation cs (100%).
   new  46a335b   I18n: Update translation es (100%).
   new  a0b5918   I18n: Update translation th (100%).

The 3 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/cs.po |4 +-
 po/es.po |4 +-
 po/th.po |  222 --
 3 files changed, 117 insertions(+), 113 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/ristretto] branch master updated (3ae341b - b942ac3)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/ristretto.

  from  3ae341b   appdata fails validation (Bug #11622)
   new  b942ac3   I18n: Update translation es (100%).

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/es.po |   29 +++--
 1 file changed, 15 insertions(+), 14 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/exo] branch master updated (cebfd9c - c33c220)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/exo.

  from  cebfd9c   I18n: Update translation ms (100%).
   new  c33c220   I18n: Update translation pl (99%).

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/pl.po |  112 +++---
 1 file changed, 71 insertions(+), 41 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/exo] 01/01: I18n: Update translation pl (99%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/exo.

commit c33c2203f5c8bc7299033f045ddb6475330f9cd6
Author: Piotr Strębski streb...@o2.pl
Date:   Tue Mar 3 12:30:03 2015 +0100

I18n: Update translation pl (99%).

285 translated messages, 1 untranslated message.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/pl.po |  112 +++---
 1 file changed, 71 insertions(+), 41 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index dcbed37..3c81df5 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,17 +3,18 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# OSWorld michal.ol...@osworld.pl, 2014
+# Michał Olber michal.ol...@osworld.pl, 2014
 # Piotr Maliński ad...@rk.edu.pl, 2006
 # Piotr Sokół pso...@jabster.pl, 2009,2011
+# Piotr Strębski streb...@o2.pl, 2015
 # Szymon Kałasz szymon_maes...@gazeta.pl, 2006
 msgid 
 msgstr 
 Project-Id-Version: Exo\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-07-02 22:30+0200\n
-PO-Revision-Date: 2014-06-01 17:39+\n
-Last-Translator: OSWorld michal.ol...@osworld.pl\n
+POT-Creation-Date: 2015-02-17 06:30+0100\n
+PO-Revision-Date: 2015-03-03 11:25+\n
+Last-Translator: Piotr Strębski streb...@o2.pl\n
 Language-Team: Polish 
(http://www.transifex.com/projects/p/exo/language/pl/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -75,7 +76,7 @@ msgstr Nie udało się wczytać obrazu „%s”: przyczyna 
nieznana, prawdopodo
 msgid Failed to open \%s\.
 msgstr Nie udało się otworzyć „%s”.
 
-#: ../exo/exo-icon-bar.c:277 ../exo/exo-icon-view.c:806
+#: ../exo/exo-icon-bar.c:277 ../exo/exo-icon-view.c:813
 msgid Orientation
 msgstr Orientacja
 
@@ -83,19 +84,19 @@ msgstr Orientacja
 msgid The orientation of the iconbar
 msgstr Orientacja paska ikon
 
-#: ../exo/exo-icon-bar.c:294 ../exo/exo-icon-view.c:823
+#: ../exo/exo-icon-bar.c:294 ../exo/exo-icon-view.c:830
 msgid Pixbuf column
 msgstr Kolumna ikon
 
-#: ../exo/exo-icon-bar.c:295 ../exo/exo-icon-view.c:824
+#: ../exo/exo-icon-bar.c:295 ../exo/exo-icon-view.c:831
 msgid Model column used to retrieve the icon pixbuf from
 msgstr Kolumna modelowa używana do pobierania ikon
 
-#: ../exo/exo-icon-bar.c:310 ../exo/exo-icon-view.c:950
+#: ../exo/exo-icon-bar.c:310 ../exo/exo-icon-view.c:975
 msgid Text column
 msgstr Kolumna tekstu
 
-#: ../exo/exo-icon-bar.c:311 ../exo/exo-icon-view.c:951
+#: ../exo/exo-icon-bar.c:311 ../exo/exo-icon-view.c:976
 msgid Model column used to retrieve the text from
 msgstr Kolumna modelowa używana do pobierania tekstu
 
@@ -223,130 +224,139 @@ msgstr _Wyszukiwanie:
 msgid Clear search field
 msgstr Czyści pole wyszukiwania
 
-#: ../exo/exo-icon-view.c:674
+#: ../exo/exo-icon-view.c:681
 msgid Column Spacing
 msgstr Odstęp kolumn
 
-#: ../exo/exo-icon-view.c:675
+#: ../exo/exo-icon-view.c:682
 msgid Space which is inserted between grid column
 msgstr Rozmiar obszaru między komórkami tabeli
 
-#: ../exo/exo-icon-view.c:691
+#: ../exo/exo-icon-view.c:698
 msgid Number of columns
 msgstr Liczba kolumn
 
-#: ../exo/exo-icon-view.c:692
+#: ../exo/exo-icon-view.c:699
 msgid Number of columns to display
 msgstr Liczba wyświetlanych kolumn
 
-#: ../exo/exo-icon-view.c:706
+#: ../exo/exo-icon-view.c:713
 msgid Enable Search
 msgstr Włącz wyszukiwanie
 
-#: ../exo/exo-icon-view.c:707
+#: ../exo/exo-icon-view.c:714
 msgid View allows user to search through columns interactively
 msgstr Widok umożliwia interaktywne wyszukiwanie w kolumnach
 
-#: ../exo/exo-icon-view.c:724
+#: ../exo/exo-icon-view.c:731
 msgid Width for each item
 msgstr Długość każdego elementu
 
-#: ../exo/exo-icon-view.c:725
+#: ../exo/exo-icon-view.c:732
 msgid The width used for each item
 msgstr Długość używana dla każdego elementu
 
-#: ../exo/exo-icon-view.c:743
+#: ../exo/exo-icon-view.c:750
 msgid Layout mode
 msgstr Tryb wyglądu
 
-#: ../exo/exo-icon-view.c:744
+#: ../exo/exo-icon-view.c:751
 msgid The layout mode
 msgstr Tryb wyglądu
 
-#: ../exo/exo-icon-view.c:760
+#: ../exo/exo-icon-view.c:767
 msgid Margin
 msgstr Margines
 
-#: ../exo/exo-icon-view.c:761
+#: ../exo/exo-icon-view.c:768
 msgid Space which is inserted at the edges of the icon view
 msgstr Rozmiar obszaru na granicach widoku ikon
 
-#: ../exo/exo-icon-view.c:777
+#: ../exo/exo-icon-view.c:784
 msgid Markup column
 msgstr Kolumna znaczników
 
-#: ../exo/exo-icon-view.c:778
+#: ../exo/exo-icon-view.c:785
 msgid Model column used to retrieve the text if using Pango markup
 msgstr Modelowa kolumna używana do pozyskania tekstu w przypadku stosowania 
znaczników Pango
 
-#: ../exo/exo-icon-view.c:792
+#: ../exo/exo-icon-view.c:799
 msgid Icon View Model
 msgstr Model widoku ikon
 
-#: ../exo/exo-icon-view.c:793
+#: ../exo/exo-icon-view.c:800
 msgid The model for the icon view
 msgstr Model dla widoku ikon
 
-#: ../exo/exo-icon-view.c:807
+#: 

[Xfce4-commits] [xfce/libxfce4ui] branch master updated (253bec2 - 023de76)

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/libxfce4ui.

  from  253bec2   I18n: Update translation ms (100%).
   new  023de76   I18n: Update translation pl (100%).

The 1 revisions listed above as new are entirely new to this
repository and will be described in separate emails.  The revisions
listed as adds were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/pl.po |   45 +
 1 file changed, 25 insertions(+), 20 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/libxfce4ui] 01/01: I18n: Update translation pl (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/libxfce4ui.

commit 023de76b7752a2728510cf41e01a5aa896ba4964
Author: Piotr Strębski streb...@o2.pl
Date:   Tue Mar 3 12:30:18 2015 +0100

I18n: Update translation pl (100%).

165 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/pl.po |   45 +
 1 file changed, 25 insertions(+), 20 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 6ca3284..6ab6434 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -4,13 +4,14 @@
 # 
 # Translators:
 # Piotr Sokół pso...@jabster.pl, 2011-2013
+# Piotr Strębski streb...@o2.pl, 2015
 msgid 
 msgstr 
 Project-Id-Version: Libxfce4ui\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-07-02 22:33+0200\n
-PO-Revision-Date: 2014-06-01 17:59+\n
-Last-Translator: OSWorld michal.ol...@osworld.pl\n
+POT-Creation-Date: 2015-02-18 18:30+0100\n
+PO-Revision-Date: 2015-03-03 11:20+\n
+Last-Translator: Piotr Strębski streb...@o2.pl\n
 Language-Team: Polish 
(http://www.transifex.com/projects/p/libxfce4ui/language/pl/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -22,46 +23,46 @@ msgstr 
 msgid Failed to open web browser for online documentation
 msgstr Nie udało się uruchomić przeglądarki internetowej, w celu wyświetlenia 
dokumentacji sieciowej
 
-#: ../libxfce4ui/xfce-dialogs.c:213
+#: ../libxfce4ui/xfce-dialogs.c:252
 #, c-format
 msgid Do you want to read the %s manual online?
 msgstr Wyświetlić podręcznik sieciowy programu %s?
 
-#: ../libxfce4ui/xfce-dialogs.c:215
+#: ../libxfce4ui/xfce-dialogs.c:254
 msgid Do you want to read the manual online?
 msgstr Wyświetlić podręcznik sieciowy?
 
-#: ../libxfce4ui/xfce-dialogs.c:218
+#: ../libxfce4ui/xfce-dialogs.c:257
 msgid Online Documentation
 msgstr Dokumentacja sieciowa
 
-#: ../libxfce4ui/xfce-dialogs.c:221
+#: ../libxfce4ui/xfce-dialogs.c:264
 msgid 
 You will be redirected to the documentation website where the help pages are
  maintained and translated.
 msgstr Przeglądarka otworzy stronę dokumentacji, na której tworzone są 
podręczniki użytkownika i gdzie następuje ich tłumaczenie.
 
-#: ../libxfce4ui/xfce-dialogs.c:225
+#: ../libxfce4ui/xfce-dialogs.c:278
 msgid _Read Online
 msgstr _Wyświetl podręcznik
 
-#: ../libxfce4ui/xfce-dialogs.c:237
+#: ../libxfce4ui/xfce-dialogs.c:290
 msgid _Always go directly to the online documentation
 msgstr _Pomijanie tego pytania w przyszłości
 
-#: ../libxfce4ui/xfce-dialogs.c:281
+#: ../libxfce4ui/xfce-dialogs.c:334
 msgid Information
 msgstr Informacja
 
-#: ../libxfce4ui/xfce-dialogs.c:314
+#: ../libxfce4ui/xfce-dialogs.c:377
 msgid Warning
 msgstr Ostrzeżenie
 
-#: ../libxfce4ui/xfce-dialogs.c:348
+#: ../libxfce4ui/xfce-dialogs.c:421
 msgid Error
 msgstr Błąd
 
-#: ../libxfce4ui/xfce-dialogs.c:399
+#: ../libxfce4ui/xfce-dialogs.c:494
 msgid Question
 msgstr Pytanie
 
@@ -96,7 +97,7 @@ msgid Session manager did not return a valid client id
 msgstr Menadżer sesji nie zwrócił poprawnego identyfikatora klienta
 
 #. print warning for user
-#: ../libxfce4ui/xfce-spawn.c:413
+#: ../libxfce4ui/xfce-spawn.c:409
 #, c-format
 msgid 
 Working directory \%s\ does not exist. It won't be used when spawning 
@@ -157,7 +158,7 @@ msgstr Wykonanie tej czynności zostało już przypisane do 
skrótu %s.
 msgid Conflicting actions for %s
 msgstr Konflikt działania skrótu klawiszowego %s
 
-#: ../libxfce4kbd-private/xfce-shortcuts.c:176
+#: ../libxfce4kbd-private/xfce-shortcuts.c:186
 msgid This shortcut is already being used for something else.
 msgstr Ten skrót klawiszowy jest już używany.
 
@@ -186,21 +187,25 @@ msgstr polecenia
 msgid Shortcut
 msgstr Skrót
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:267
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:247
+msgid _Cancel
+msgstr _Anuluj
+
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:275
 #, c-format
 msgid Press now the keyboard keys you want to use to trigger the %s '%s'.
 msgstr Proszę wcisnąć kombinację klawiszy służącą do wywołania %s „%s”.
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:291
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:299
 msgid Shortcut:
 msgstr Skrót:
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:296
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:475
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:304
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:483
 msgid No keys pressed yet, proceed.
 msgstr Nie wciśnięto żadnego klawisza.
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:378
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:386
 msgid Could not grab the keyboard.
 msgstr Nie można przechwycić klawiatury.
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org

[Xfce4-commits] [apps/ristretto] 01/01: I18n: Update translation es (100%).

2015-03-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/ristretto.

commit b942ac36e056f5d8c3b0941d208b5ac54b635eae
Author: gabrieltandil gabriel.tan...@gmail.com
Date:   Tue Mar 3 12:31:13 2015 +0100

I18n: Update translation es (100%).

188 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/es.po |   29 +++--
 1 file changed, 15 insertions(+), 14 deletions(-)

diff --git a/po/es.po b/po/es.po
index 996e7f5..9646844 100644
--- a/po/es.po
+++ b/po/es.po
@@ -6,14 +6,15 @@
 # Abel Martín abel.martin.r...@gmail.com, 2008
 # Adolfo Jayme Barrientos, 2013
 # Adolfo Jayme Barrientos, 2013
+# gabrieltandil gabriel.tan...@gmail.com, 2015
 # Pablo Roberto Francisco Lezaeta Reyes prfl...@gmail.com, 2014-2015
 msgid 
 msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2015-01-25 12:30+0100\n
-PO-Revision-Date: 2015-02-23 18:03+\n
-Last-Translator: Manolo Díaz diaz.man...@gmail.com\n
+POT-Creation-Date: 2015-03-02 18:31+0100\n
+PO-Revision-Date: 2015-03-03 11:04+\n
+Last-Translator: gabrieltandil gabriel.tan...@gmail.com\n
 Language-Team: Spanish 
(http://www.transifex.com/projects/p/xfce-apps/language/es/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -482,7 +483,7 @@ msgstr Ristretto es un visor de imágenes rápido y ligero 
para el entorno de e
 
 #: ../src/main_window.c:2614
 msgid translator-credits
-msgstr Adolfo Jayme Barrientos fitosch...@ubuntu.com\nAbel Martín 
abel.martin.r...@gmail.com\nElega el...@elega.com.ar
+msgstr Adolfo Jayme Barrientos fitosch...@ubuntu.com\nAbel Martín 
abel.martin.r...@gmail.com\nElega el...@elega.com.ar\nGabriel 
gabriel.tan...@gmail.com
 
 #: ../src/main_window.c:2916
 msgid Open image
@@ -888,13 +889,13 @@ msgstr Esta versión contiene gran cantidad de 
actualizaciones a las traduccion
 #: ../ristretto.appdata.xml.in.h:5
 msgid 
 This version comes with several changes such as online documentation on 
-http://docs.xfce.org, the option to limit the maximum image-quality to the 
-screen dimensions to improve memory-usage and performance - now ristretto 
-renders at full quality with this option disabled, only one toolbar - 
-instead of two, a quick-launch button on the toolbar to execute an editor, 
-the option to pick a default-editor per mime-type, an optional clock that 
-shows up when ristretto is fullscreen, Ristretto now shows a 'Loading..' 
-message in the statusbar to indicate when it is busy and progressive loading
- of directories to prevent lockup of the UI. This version is designed to 
-work with version 4.10 of Xfce.
-msgstr Esta versión viene con varios cambios como documentación en línea en 
http://docs.xfce.org, la facultad de limitar la calidad máxima de la imagen 
para las dimensiones de la pantalla para mejorar el uso de memoria y el 
rendimiento: ahora Ristretto muestra a máxima calidad de las imágenes con esta 
opción deshabilitada; solo una barra de herramientas en lugar de dos, un botón 
de inicio rápido en la barra de herramientas para ejecutar un editor, la opción 
de escoger un editor predeter [...]
+docs.xfce.org, the option to limit the maximum image-quality to the screen 
+dimensions to improve memory-usage and performance - now ristretto renders 
+at full quality with this option disabled, only one toolbar - instead of 
+two, a quick-launch button on the toolbar to execute an editor, the option 
+to pick a default-editor per mime-type, an optional clock that shows up when
+ ristretto is fullscreen, Ristretto now shows a 'Loading..' message in the 
+statusbar to indicate when it is busy and progressive loading of directories
+ to prevent lockup of the UI. This version is designed to work with version 
+4.10 of Xfce.
+msgstr Esta versión viene con varios cambios como documentación en línea en 
docs.xfce.org, la facultad de limitar la calidad máxima de la imagen para las 
dimensiones de la pantalla para mejorar el uso de memoria y el rendimiento, 
ahora Ristretto muestra a máxima calidad de las imágenes con esta opción 
deshabilitada solo en una barra de herramientas en lugar de dos, un botón de 
inicio rápido en la barra de herramientas para ejecutar un editor, la opción de 
escoger un editor predeterminad [...]

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits