[Xfce4-commits] [xfce/xfwm4] branch master updated (0151f6b - 45d9fce)

2014-12-30 Thread noreply
This is an automated email from the git hooks/post-receive script.

olivier pushed a change to branch master
in repository xfce/xfwm4.

  from  0151f6b   Revert Experiment with button events.
   new  45d9fce   Fix cycle vs. focus follow mouse

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/cycle.c |   93 ---
 1 file changed, 63 insertions(+), 30 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/xfwm4] 01/01: Fix cycle vs. focus follow mouse

2014-12-30 Thread noreply
This is an automated email from the git hooks/post-receive script.

olivier pushed a commit to branch master
in repository xfce/xfwm4.

commit 45d9fce5b6740118b17570732201199e37016f49
Author: Olivier Fourdan four...@xfce.org
Date:   Tue Dec 30 22:13:01 2014 +0100

Fix cycle vs. focus follow mouse

Bug: 11166

Enabling selection with the mouse in the cycle/wab window implies
that events are routed to their usual,  respective windows, meaning
that enter/leave notify events also reach regular windows.

An unfortunate side effect is that, in focus follow mouse, focus
could be sent back to the window underneath the pointer instead
of the desired selected window if the pointer was located inside
the cycle/tab window when it got unmapped.

To avoid this, track enter/leave notify events in the cycle/tab
windows and swallow the enter notify event resulting from the
cycle/tab window being unmapped.

Signed-off-by: Olivier Fourdan four...@xfce.org
---
 src/cycle.c |   93 ---
 1 file changed, 63 insertions(+), 30 deletions(-)

diff --git a/src/cycle.c b/src/cycle.c
index 93819d4..1f1dccc 100644
--- a/src/cycle.c
+++ b/src/cycle.c
@@ -54,6 +54,7 @@ struct _ClientCycleData
 {
 Tabwin *tabwin;
 Window wireframe;
+gboolean inside;
 };
 
 static gint
@@ -233,8 +234,6 @@ clientCycleEventFilter (XEvent * xevent, gpointer data)
 int key, modifiers;
 gboolean key_pressed, cycling, gone;
 GList *li;
-Window mouse_window = 0;
-XButtonEvent ev;
 
 TRACE (entering clientCycleEventFilter);
 
@@ -346,40 +345,44 @@ clientCycleEventFilter (XEvent * xevent, gpointer data)
 }
 break;
 case ButtonPress:
-status = EVENT_FILTER_STOP;
-ev = xevent-xbutton;
-/* window of the event, we might accept it later */
-mouse_window = xevent-xbutton.window;
-if (mouse_window != 0)
+/* only accept events for the tab windows */
+for (li = passdata-tabwin-tabwin_list; li != NULL; li = li-next)
 {
-/* only accept events for the tab windows */
-for (li = passdata-tabwin-tabwin_list; li != NULL; li = 
li-next)
+if (GDK_WINDOW_XID (gtk_widget_get_window (li-data)) == 
xevent-xbutton.window)
 {
-if (GDK_WINDOW_XID (gtk_widget_get_window (li-data)) == 
mouse_window)
+if  (xevent-xbutton.button == Button1)
 {
-if  (ev.button == Button1)
-{
-c2 = tabwinSelectHovered (passdata-tabwin);
-cycling = FALSE;
-break;
-}
-else if  (ev.button == Button4)
-{
-/* Mouse wheel scroll up */
-TRACE (Cycle: previous);
-c2 = tabwinSelectPrev(passdata-tabwin);
-}
-else if (ev.button == Button5)
-{
-/* Mouse wheel scroll down */
-TRACE (Cycle: next);
-c2 = tabwinSelectNext(passdata-tabwin);
-}
+c2 = tabwinSelectHovered (passdata-tabwin);
+cycling = FALSE;
+break;
+}
+else if  (xevent-xbutton.button == Button4)
+{
+/* Mouse wheel scroll up */
+TRACE (Cycle: previous);
+c2 = tabwinSelectPrev(passdata-tabwin);
+}
+else if (xevent-xbutton.button == Button5)
+{
+/* Mouse wheel scroll down */
+TRACE (Cycle: next);
+c2 = tabwinSelectNext(passdata-tabwin);
 }
 }
-if (c2)
+}
+if (c2)
+{
+c = c2;
+}
+break;
+case EnterNotify:
+case LeaveNotify:
+/* Track whether the pointer is inside one of the tab-windows */
+for (li = passdata-tabwin-tabwin_list; li != NULL; li = li-next)
+{
+if (GDK_WINDOW_XID (gtk_widget_get_window (li-data)) == 
xevent-xcrossing.window)
 {
-c = c2;
+passdata-inside = (xevent-xcrossing.type == EnterNotify);
 }
 }
 break;
@@ -415,6 +418,26 @@ clientCycleEventFilter (XEvent * xevent, gpointer data)
 return status;
 }
 
+static eventFilterStatus
+clientCycleFlushEventFilter (XEvent * 

[Xfce4-commits] [apps/xfce4-dict] branch master updated (9eede6f - 64f5dc8)

2014-12-30 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/xfce4-dict.

  from  9eede6f   I18n: Update translation fr (100%).
   new  64f5dc8   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 |   16 
 1 file changed, 8 insertions(+), 8 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/xfce4-dict] 01/01: I18n: Update translation es (100%).

2014-12-30 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/xfce4-dict.

commit 64f5dc8d6f663837d7c7eb0dcca728ea7790b43c
Author: Pablo Roberto Francisco Lezaeta Reyes prfl...@gmail.com
Date:   Wed Dec 31 06:30:56 2014 +0100

I18n: Update translation es (100%).

111 translated messages.

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

diff --git a/po/es.po b/po/es.po
index 95d0fd3..1cbbd43 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,15 +4,15 @@
 # 
 # Translators:
 # Abel Martín abel.martin.r...@gmail.com, 2008
-# Adolfo Jayme Barrientos fitosch...@ubuntu.com, 2014
+# Adolfo Jayme Barrientos f...@libreoffice.org, 2014
 # Pablo Roberto Francisco Lezaeta Reyes prfl...@gmail.com, 2013-2014
 msgid 
 msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 20:36+0200\n
-PO-Revision-Date: 2014-07-07 02:50+\n
-Last-Translator: Adolfo Jayme Barrientos fitosch...@ubuntu.com\n
+PO-Revision-Date: 2014-12-31 03:13+\n
+Last-Translator: Pablo Roberto Francisco Lezaeta Reyes prfl...@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
@@ -45,7 +45,7 @@ msgstr Término de búsqueda
 
 #: ../src/xfce4-dict.c:51
 msgid Search the given text using a Dict server(RFC 2229)
-msgstr Buscar el texto dado usando un servidor Dict (RFC 2229)
+msgstr Buscar el texto dado usando un servidor DICT (RFC 2229)
 
 #: ../src/xfce4-dict.c:52
 msgid Search the given text using a web-based search engine
@@ -205,7 +205,7 @@ msgid 
 Enter some text here you would like to read.\n
 \n
 Be relaxed and make yourself comfortable, then press Start to begin speed 
reading.
-msgstr Introduzca aquí algún texto aquí quiera leer.\n\nRelájese y póngase 
cómodo, entonces pulse Comenzar para empezar la lectura rápida.
+msgstr Introduzca aquí algún texto que quiera leer.\n\nRelájese y póngase 
cómodo, entonces pulse Comenzar para empezar la lectura rápida.
 
 #: ../lib/speedreader.c:654
 msgid Load the contents of a file
@@ -226,7 +226,7 @@ msgstr _Comenzar
 
 #: ../lib/common.c:188
 msgid The search URL is empty. Please check your preferences.
-msgstr El URL de búsqueda está vacío. Compruebe sus preferencias.
+msgstr La dirección URL de búsqueda está vacío. Compruebe sus preferencias.
 
 #: ../lib/common.c:194
 msgid Browser could not be opened. Please check your preferences.
@@ -348,7 +348,7 @@ msgstr Derechos de autor © 2006 - 2013 Enrico Tröger
 
 #: ../lib/gui.c:966
 msgid translator-credits
-msgstr Adolfo Jayme Barrientos fit...@ubuntu.com, 2014\nPablo Lazaeta Reyes 
prfl...@gmail.com, 2014\nAbel Martín abel.martin.r...@gmail.com, 2008
+msgstr Adolfo Jayme Barrientos fit...@ubuntu.com, 2014\nPablo Roberto 
Francisco Lazaeta Reyes prfl...@gmail.com, 2014-2015\nAbel Martín 
abel.martin.r...@gmail.com, 2008
 
 #: ../lib/prefs.c:55
 msgid dict.leo.org - German - English
@@ -504,4 +504,4 @@ msgstr Programa de corrección ortográfica:
 msgid 
 iThe spell check program can be 'enchant', 'aspell', 'ispell' or any other 
spell check program which is compatible to the ispell command.\n
 The icon shows whether the entered command exists./i
-msgstr iEl programa de corrección ortográfica puede ser «enchant», 
«aspell», «ispell» o cualquier otro corrector ortográfico compatible con la 
orden ispell.\nEl icono muestra si la orden escrita existe./i
+msgstr iEl programa de corrección ortográfica puede ser «enchant», 
«aspell», «ispell» o cualquier otro corrector ortográfico compatible con la 
orden «ispell».\nEl icono muestra si la orden escrita existe./i

-- 
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/xfce4-notifyd] branch master updated (1e42f7a - df7c16d)

2014-12-30 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/xfce4-notifyd.

  from  1e42f7a   I18n: Update translation fr (100%).
   new  df7c16d   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 |   16 
 1 file changed, 8 insertions(+), 8 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/xfce4-notifyd] 01/01: I18n: Update translation es (100%).

2014-12-30 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/xfce4-notifyd.

commit df7c16d291b03dd5a175dca123bb7ecc501bcd91
Author: Pablo Roberto Francisco Lezaeta Reyes prfl...@gmail.com
Date:   Wed Dec 31 06:31:01 2014 +0100

I18n: Update translation es (100%).

29 translated messages.

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

diff --git a/po/es.po b/po/es.po
index eec3a5b..32b5639 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,14 +4,14 @@
 # 
 # Translators:
 #  abel.martin.r...@gmail.com, 2008
-# Pablo Lezaeta prfl...@gmail.com, 2013-2014
+# Pablo Roberto Francisco Lezaeta Reyes prfl...@gmail.com, 2013-2014
 msgid 
 msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-10-27 18:31+0100\n
-PO-Revision-Date: 2014-05-19 05:13+\n
-Last-Translator: Pablo Lezaeta prfl...@gmail.com\n
+PO-Revision-Date: 2014-12-31 02:38+\n
+Last-Translator: Pablo Roberto Francisco Lezaeta Reyes prfl...@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
@@ -22,7 +22,7 @@ msgstr 
 #: ../xfce4-notifyd/main.c:74 ../xfce4-notifyd/main.c:84
 #: ../xfce4-notifyd-config/main.c:258
 msgid Xfce Notify Daemon
-msgstr Demonio de notificación de Xfce
+msgstr Servicio de notificación de Xfce
 
 #: ../xfce4-notifyd/main.c:77
 #, c-format
@@ -46,7 +46,7 @@ msgstr No se pudo conectar al bus de sesión D-Bus
 #: ../xfce4-notifyd/xfce-notify-daemon.c:1232
 #, c-format
 msgid Another notification xndaemon is already running
-msgstr Ya hay otro demonio de notificación ejecutándose
+msgstr Ya hay otro servicio de notificación ejecutándose
 
 #: ../xfce4-notifyd-config/main.c:57
 msgid Notification Preview
@@ -66,7 +66,7 @@ msgstr No se pudo realizar la previsualización de la 
notificación
 
 #: ../xfce4-notifyd-config/main.c:260
 msgid Settings daemon is unavailable
-msgstr La configuración del demonio no está disponible
+msgstr La configuración del servicio no está disponible
 
 #: ../xfce4-notifyd-config/main.c:310
 msgid Display version information
@@ -74,11 +74,11 @@ msgstr Mostrar información de versión
 
 #: ../xfce4-notifyd-config/main.c:311
 msgid Settings manager socket
-msgstr «Socket» del gestor de configuración
+msgstr Socket del gestor de configuración
 
 #: ../xfce4-notifyd-config/main.c:311
 msgid SOCKET_ID
-msgstr _ID DEL «SOCKET»
+msgstr _ID. DEL SOCKET
 
 #: ../xfce4-notifyd-config/main.c:321
 #, c-format

-- 
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-weather-plugin] 01/01: I18n: Update translation es (100%).

2014-12-30 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-weather-plugin.

commit a929b5f9ee77c640480d94bb813ba976c24960ef
Author: Pablo Roberto Francisco Lezaeta Reyes prfl...@gmail.com
Date:   Wed Dec 31 06:31:45 2014 +0100

I18n: Update translation es (100%).

330 translated messages.

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

diff --git a/po/es.po b/po/es.po
index 6f0f243..6f202e4 100644
--- a/po/es.po
+++ b/po/es.po
@@ -15,7 +15,7 @@ msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2014-10-24 18:31+0200\n
-PO-Revision-Date: 2014-12-24 07:32+\n
+PO-Revision-Date: 2014-12-31 03:04+\n
 Last-Translator: Pablo Roberto Francisco Lezaeta Reyes prfl...@gmail.com\n
 Language-Team: Spanish 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/es/)\n
 MIME-Version: 1.0\n
@@ -359,7 +359,7 @@ msgstr iCambie el nombre de la ubicación como prefiera y 
corrija la\naltitud
 msgid 
 Named after the astronomer Anders Celsius who invented the original scale in 
1742, the Celsius scale is an international standard unit and nowadays defined 
using the Kelvin scale. 0 °C is equivalent to 273.15 K and 1 °C difference in 
temperature is exactly the same difference as 1 K. It is defined with the 
melting point of water being roughly at 0 °C and its boiling point at 100 °C at 
one standard atmosphere (1 atm = 1013.5 hPa). Until 1948, the unit was known as 
icentigrade/i - fro [...]
 In meteorology and everyday life the Celsius scale is very convenient for 
expressing temperatures because its numbers can be an easy indicator for the 
formation of black ice and snow.
-msgstr Llamada así en honor al astrónomo Anders Celsius, quien inventó la 
escala original en 1742, la escala de Centígrados es una unidad internacional 
estándar que hoy en día se define a partir de la escala Kelvin. 0 °C equivale a 
 273.15 K y 1 °C de diferencia en temperatura es exactamente la misma 
diferencia que 1 K. Se define con el 0 °C en en el punto de congelación del 
agua y con 100 °C en el punto de ebullición, todo ello a una atmósfera estándar 
(1 atm = 1013.5 hPa). La unidad e [...]
+msgstr Llamada así en honor al astrónomo Anders Celsius, quien inventó la 
escala original en 1742, la escala de grado Celsius es una unidad internacional 
estándar que hoy en día se define a partir de la escala Kelvin. 0 °C equivale a 
 273.15 K y 1 °C de diferencia en temperatura es exactamente la misma 
diferencia que 1 K. Se define con el 0 °C en en el punto de congelación del 
agua y con 100 °C en el punto de ebullición, todo ello a una atmósfera estándar 
(1 atm = 1013.5 hPa). La unidad [...]
 
 #: ../panel-plugin/weather-config.c:661
 msgid 
@@ -382,7 +382,7 @@ msgid 
 elsewhere. It is defined as the pressure exerted by a 1 inch circular column
  of mercury of 1 inch in height at 32 °F (0 °C) at the standard acceleration
  of gravity.
-msgstr Pulgadas de mercurio es utilizado todavía extensivamente en informes 
del tiempo, refrigeración y aviación en Estados Unidos, aunque raramente se 
utilitiliza en otros sitios. Se define como la presión ejercida por una columna 
circular de 1 pulgada de mercurio y 1pulgada de altura a 32 °F (0 °C) bajo 
aceleración de la gravedad estándar.
+msgstr Pulgadas de mercurio es utilizado todavía extensivamente en informes 
del tiempo, refrigeración y aviación en Estados Unidos, aunque raramente se 
utiliza en otros sitios. Se define como la presión ejercida por una columna 
circular de 1 pulgada de mercurio y 1 pulgada de altura a 32 °F (0 °C) bajo 
aceleración de la gravedad estándar.
 
 #: ../panel-plugin/weather-config.c:719
 msgid 
@@ -401,7 +401,7 @@ msgid 
 demonstrated the first mercury barometer to the general public. A pressure 
 of 1 torr is approximately equal to one millimeter of mercury, and one 
 standard atmosphere (atm) equals 760 Torr.
-msgstr La unidad torr fue nombrado en honor del físico y matemático 
Evangelista Torricelli quien descubrió el principio del barómetro en 1644 y 
demostró el primer barómetro de mercurio al público en general. Una presión de 
1 Torr es aproximadamente igual a un milímetro de mercurio, y una atmósfera 
estándar (atm) es igual a 760 Torr.
+msgstr La unidad Torr fue nombrado en honor del físico y matemático 
Evangelista Torricelli quien descubrió el principio del barómetro en 1644 y 
demostró el primer barómetro de mercurio al público en general. Una presión de 
1 Torr es aproximadamente igual a un milímetro de mercurio, y una atmósfera 
estándar (atm) es igual a 760 Torr.
 
 #: ../panel-plugin/weather-config.c:762
 msgid Wind speeds in TV or in the news are often provided in km/h.
@@ -517,7 +517,7 @@ msgstr _Temperatura:
 
 #: ../panel-plugin/weather-config.c:969
 msgid Celsius (°C)
-msgstr Centígrado (°C)
+msgstr 

[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] branch master updated (b952549 - a929b5f)

2014-12-30 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-weather-plugin.

  from  b952549   I18n: Update translation es (100%).
   new  a929b5f   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, 5 insertions(+), 5 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