[Xfce4-commits] [xfce/xfwm4] 08/08: client: Check GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit d730ebb6244874805b3e37b6c0bb3b9328f2b23d
Author: Olivier Fourdan 
Date:   Sun Jul 22 10:58:42 2018 +0200

client: Check GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED

Check that value for GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED has actually
changed before reconfiguring the window.

(cherry picked from commit 5f7a1f5f91fd0eec91a4a88c669847fd2567a270)
---
 src/client.c |  4 +++-
 src/events.c | 10 ++
 2 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/src/client.c b/src/client.c
index df34eb0..4071e67 100644
--- a/src/client.c
+++ b/src/client.c
@@ -4089,6 +4089,7 @@ clientGetGtkHideTitlebar (Client * c)
 {
 ScreenInfo *screen_info;
 DisplayInfo *display_info;
+unsigned long old_value;
 long val;
 
 g_return_val_if_fail (c != NULL, FALSE);
@@ -4096,13 +4097,14 @@ clientGetGtkHideTitlebar (Client * c)
 
 screen_info = c->screen_info;
 display_info = screen_info->display_info;
+old_value = FLAG_TEST (c->flags, CLIENT_FLAG_HIDE_TITLEBAR);
 FLAG_UNSET (c->flags, CLIENT_FLAG_HIDE_TITLEBAR);
 
 if (getHint (display_info, c->window, GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED, 
) &&( val != 0))
 {
 FLAG_SET (c->flags, CLIENT_FLAG_HIDE_TITLEBAR);
 }
-return FLAG_TEST (c->flags, CLIENT_FLAG_HIDE_TITLEBAR);
+return old_value != FLAG_TEST (c->flags, CLIENT_FLAG_HIDE_TITLEBAR);
 }
 
 #ifdef HAVE_LIBSTARTUP_NOTIFICATION
diff --git a/src/events.c b/src/events.c
index 74503e3..ee026aa 100644
--- a/src/events.c
+++ b/src/events.c
@@ -1839,11 +1839,13 @@ handlePropertyNotify (DisplayInfo *display_info, 
XPropertyEvent * ev)
 else if (ev->atom == 
display_info->atoms[GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED])
 {
 TRACE ("client \"%s\" (0x%lx) has received a 
GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED notify", c->name, c->window);
-clientGetGtkHideTitlebar (c);
-if (FLAG_TEST (c->flags, CLIENT_FLAG_MAXIMIZED))
+if (clientGetGtkHideTitlebar (c))
 {
-clientUpdateMaximizeSize (c);
-clientReconfigure (c, CFG_FORCE_REDRAW);
+if (FLAG_TEST (c->flags, CLIENT_FLAG_MAXIMIZED))
+{
+clientUpdateMaximizeSize (c);
+clientReconfigure (c, CFG_FORCE_REDRAW);
+}
 }
 }
 #ifdef HAVE_STARTUP_NOTIFICATION

-- 
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] 06/08: netwm: Fix adding maximized state

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 860b369474875442ff1e1b14589522a8db8e9804
Author: Olivier Fourdan 
Date:   Wed Jul 18 15:28:23 2018 +0200

netwm: Fix adding maximized state

Bug 14514

xfwm4 would fail to add maximized states using extended window manager
hints mechanisms.

(cherry picked from commit 5e1354886ae9b22c0fe86ba695ed7f0a63fed14e)
---
 src/netwm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/netwm.c b/src/netwm.c
index f44e95b..fc83486 100644
--- a/src/netwm.c
+++ b/src/netwm.c
@@ -382,9 +382,9 @@ clientUpdateNetState (Client * c, XClientMessageEvent * ev)
 {
 if (FLAG_TEST (c->xfwm_flags, XFWM_FLAG_HAS_MAXIMIZE))
 {
-if ((action == NET_WM_STATE_ADD) && !FLAG_TEST (c->flags, 
CLIENT_FLAG_MAXIMIZED))
+if ((action == NET_WM_STATE_ADD) && !FLAG_TEST_ALL (c->flags, 
CLIENT_FLAG_MAXIMIZED))
 {
-mode = 0L;
+mode = FLAG_TEST (c->flags, CLIENT_FLAG_MAXIMIZED);
 if ((first  == 
display_info->atoms[NET_WM_STATE_MAXIMIZED_HORZ]) ||
 (second == 
display_info->atoms[NET_WM_STATE_MAXIMIZED_HORZ]))
 {

-- 
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] 07/08: client: Check when GTK_FRAME_EXTENTS has changed

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 18575f3a098c7bbb3a43838c7745e01efa260997
Author: Olivier Fourdan 
Date:   Sun Jul 22 10:54:35 2018 +0200

client: Check when GTK_FRAME_EXTENTS has changed

Bug: 14511

GTK+ will update its GTK_FRAME_EXTENTS property continuously even when
the value hasn't actually changed, which causes the maximized state to
be cleared when transitioning to/from fullscreen to maximized.

Check that he extents have changed and reconfigure the client's window
only when the value has changed.

(cherry picked from commit 0a5ba680f27a48242d52c590727deb837708da09)
---
 src/client.c | 9 +++--
 src/events.c | 6 --
 2 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/src/client.c b/src/client.c
index 3a5531d..df34eb0 100644
--- a/src/client.c
+++ b/src/client.c
@@ -4047,6 +4047,7 @@ clientGetGtkFrameExtents (Client * c)
 {
 ScreenInfo *screen_info;
 DisplayInfo *display_info;
+gboolean value_changed = FALSE;
 gulong *extents;
 int nitems;
 int i;
@@ -4066,7 +4067,11 @@ clientGetGtkFrameExtents (Client * c)
 FLAG_SET (c->flags, CLIENT_FLAG_HAS_FRAME_EXTENTS);
 for (i = 0; i < SIDE_COUNT; i++)
 {
-c->frame_extents[i] = (int) extents[i];
+if (c->frame_extents[i] != (int) extents[i])
+{
+value_changed = TRUE;
+c->frame_extents[i] = (int) extents[i];
+}
 }
 }
 }
@@ -4076,7 +4081,7 @@ clientGetGtkFrameExtents (Client * c)
 XFree (extents);
 }
 
-return FLAG_TEST (c->flags, CLIENT_FLAG_HAS_FRAME_EXTENTS);
+return value_changed;
 }
 
 gboolean
diff --git a/src/events.c b/src/events.c
index 50303b0..74503e3 100644
--- a/src/events.c
+++ b/src/events.c
@@ -1831,8 +1831,10 @@ handlePropertyNotify (DisplayInfo *display_info, 
XPropertyEvent * ev)
 else if (ev->atom == display_info->atoms[GTK_FRAME_EXTENTS])
 {
 TRACE ("client \"%s\" (0x%lx) has received a GTK_FRAME_EXTENTS 
notify", c->name, c->window);
-clientGetGtkFrameExtents (c);
-clientUpdateMaximizeSize (c);
+if (clientGetGtkFrameExtents (c))
+{
+clientUpdateMaximizeSize (c);
+}
 }
 else if (ev->atom == 
display_info->atoms[GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED])
 {

-- 
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] branch xfce-4.12 updated (2bd611c -> d730ebb)

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  2bd611c   screen: Fix broken monitor index
   new  0c00ec4   client: Maximize on expected output
   new  0f7f70f   Fix logic error in bottom struts validation
   new  11421dc   client: Make sure to redraw when removing maximized
   new  13b6fce   screen: Use computed screen size instead of xlib
   new  020b072   Typo in clientMoveTile
   new  860b369   netwm: Fix adding maximized state
   new  18575f3   client: Check when GTK_FRAME_EXTENTS has changed
   new  d730ebb   client: Check GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED

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:
 src/client.c | 40 
 src/client.h |  5 +
 src/events.c | 16 ++--
 src/moveresize.c |  4 ++--
 src/netwm.c  |  4 ++--
 src/screen.c |  8 +++-
 src/workspaces.c |  2 +-
 7 files changed, 55 insertions(+), 24 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] 04/08: screen: Use computed screen size instead of xlib

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 13b6fceb41e6275193939eb63431ef712d5a76ca
Author: Olivier Fourdan 
Date:   Thu Jan 18 21:18:04 2018 +0100

screen: Use computed screen size instead of xlib

When the xrandr layout is changed, we recompute the screen size on the
actual monitors size and layout.

Use this computed value instead of the size reported by Xlib as it's not
yet updated by the time we reconfigure our display. This is particularly
bad when the compositor is enabled as the overlay window end up being of
the wrong size.

(cherry picked from commit 480517d49d3e4cf48357fbe47d193f62542ab94b)
---
 src/screen.c | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/screen.c b/src/screen.c
index 4a790e9..61d7b0b 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -658,15 +658,13 @@ myScreenComputeSize (ScreenInfo *screen_info)
width, height, screen_info->logical_width, 
screen_info->logical_height);
 }
 
-/* Keep the smallest size between what we computed and the
- * reported size for the screen.
- */
-if (width == 0 || width > screen_info->logical_width)
+/* If we failed to compute the size, use whatever xlib reports */
+if (width == 0)
 {
 width = screen_info->logical_width;
 }
 
-if (height == 0 || height > screen_info->logical_height)
+if (height == 0)
 {
 height = screen_info->logical_height;
 }

-- 
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] 02/08: Fix logic error in bottom struts validation

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 0f7f70f3b3ed0883bdca6989673dbd1cdffdd901
Author: Andrey Alekseenkov 
Date:   Tue Dec 5 10:55:30 2017 +0100

Fix logic error in bottom struts validation

Bug: 13964
(cherry picked from commit b6fa004ea1ad4d7db84730ae5f773cbc4b762eeb)
---
 src/workspaces.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/workspaces.c b/src/workspaces.c
index 1006d6e..9d313e5 100644
--- a/src/workspaces.c
+++ b/src/workspaces.c
@@ -580,7 +580,7 @@ workspaceUpdateArea (ScreenInfo *screen_info)
c->struts[STRUTS_TOP]);
 }
 
-if (checkValidStruts (, , STRUTS_BOTTOM) ||
+if (checkValidStruts (, , STRUTS_BOTTOM) &&
 gdk_rectangle_intersect (, , NULL))
 {
 screen_info->margins[STRUTS_BOTTOM] = 
MAX(screen_info->margins[STRUTS_BOTTOM],

-- 
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/08: client: Maximize on expected output

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 0c00ec4c86003e053d2e68337929fad8d7bedff1
Author: P. Pronk 
Date:   Tue Jan 10 12:45:53 2017 +0100

client: Maximize on expected output

Bug: 13284

When dragging a window from a large monitor to the top of a smaller monitor 
to
maximize the window, it is possible that the window gets maximised on a
different monitor then the monitor your mouse is.

This happens because clientToggleMaximized uses the center point of the 
window
to calculate on which monitor the window should be maximised.

To fix this behaviour this commits adds a clientToggleMaximizedAtPoint 
method
so we can tell on which monitor the window should be maximised.

(cherry picked from commit 9c888ac750265b88a865cdbd01edf50395c82c54)
---
 src/client.c | 26 +-
 src/client.h |  5 +
 src/moveresize.c |  2 +-
 3 files changed, 27 insertions(+), 6 deletions(-)

diff --git a/src/client.c b/src/client.c
index b8301b3..3496d9e 100644
--- a/src/client.c
+++ b/src/client.c
@@ -3342,6 +3342,24 @@ clientNewMaxSize (Client *c, XWindowChanges *wc, 
GdkRectangle *rect, tilePositio
 gboolean
 clientToggleMaximized (Client *c, int mode, gboolean restore_position)
 {
+g_return_val_if_fail (c != NULL, FALSE);
+
+TRACE ("entering clientToggleMaximized");
+
+if (!CLIENT_CAN_MAXIMIZE_WINDOW (c))
+{
+return FALSE;
+}
+
+return clientToggleMaximizedAtPoint(c,
+frameX (c) + (frameWidth (c) / 2),
+frameY (c) + (frameHeight (c) / 2),
+mode, restore_position);
+}
+
+gboolean
+clientToggleMaximizedAtPoint (Client *c, gint cx, gint cy, int mode, gboolean 
restore_position)
+{
 DisplayInfo *display_info;
 ScreenInfo *screen_info;
 XWindowChanges wc;
@@ -3350,8 +3368,8 @@ clientToggleMaximized (Client *c, int mode, gboolean 
restore_position)
 
 g_return_val_if_fail (c != NULL, FALSE);
 
-TRACE ("entering clientToggleMaximized");
-TRACE ("maximzing/unmaximizing client \"%s\" (0x%lx)", c->name, c->window);
+TRACE ("entering clientToggleMaximizedAtPoint");
+TRACE ("maximizing/unmaximizing client \"%s\" (0x%lx)", c->name, 
c->window);
 
 if (!CLIENT_CAN_MAXIMIZE_WINDOW (c))
 {
@@ -3360,9 +3378,7 @@ clientToggleMaximized (Client *c, int mode, gboolean 
restore_position)
 
 screen_info = c->screen_info;
 display_info = screen_info->display_info;
-myScreenFindMonitorAtPoint (screen_info,
-frameX (c) + (frameWidth (c) / 2),
-frameY (c) + (frameHeight (c) / 2), );
+myScreenFindMonitorAtPoint (screen_info, cx, cy, );
 
 wc.x = c->x;
 wc.y = c->y;
diff --git a/src/client.h b/src/client.h
index 3b2d6f2..68d7c7b 100644
--- a/src/client.h
+++ b/src/client.h
@@ -465,6 +465,11 @@ void clientUpdateMaximizeSize  
 (Client *);
 gboolean clientToggleMaximized  (Client *,
  int,
  gboolean);
+gboolean clientToggleMaximizedAtPoint   (Client *,
+ gint,
+ gint,
+ int,
+ gboolean);
 gboolean clientTile (Client *,
  gint,
  gint,
diff --git a/src/moveresize.c b/src/moveresize.c
index 1c07e8e..b15d8ab 100644
--- a/src/moveresize.c
+++ b/src/moveresize.c
@@ -832,7 +832,7 @@ clientMoveTile (Client *c, XMotionEvent *xevent)
 /* mouse pointer on top edge excluding corners */
 if (y < disp_y + dist)
 {
-return clientToggleMaximized (c, CLIENT_FLAG_MAXIMIZED, FALSE);
+return clientToggleMaximizedAtPoint (c, x, y, 
CLIENT_FLAG_MAXIMIZED, 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/xfwm4] 03/08: client: Make sure to redraw when removing maximized

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 11421dc28cf3a4ea6598eb32f48dc39da2c078db
Author: Olivier Fourdan 
Date:   Fri Dec 8 20:17:25 2017 +0100

client: Make sure to redraw when removing maximized

Bug: 13954

When a client issues a ConfigureRequest() on a toplevel window, that
window may transition from maximized to un-maximized state.

Make sure we repaint and relocate the client window within the frame.

Signed-off-by: Olivier Fourdan 
(cherry picked from commit 87cbe0e3d01d467c14aa2bb4d3656bf6b39a4247)
---
 src/client.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/client.c b/src/client.c
index 3496d9e..3a5531d 100644
--- a/src/client.c
+++ b/src/client.c
@@ -908,6 +908,7 @@ clientMoveResizeWindow (Client *c, XWindowChanges * wc, 
unsigned long mask)
 if (FLAG_TEST (c->flags, CLIENT_FLAG_MAXIMIZED))
 {
 clientRemoveMaximizeFlag (c);
+flags |= CFG_FORCE_REDRAW;
 }
 
 flags |= CFG_REQUEST | CFG_CONSTRAINED;

-- 
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] 05/08: Typo in clientMoveTile

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 020b0722b0d83e43ee295486ddffca504283f56a
Author: Adam Purkrt 
Date:   Sun Jan 21 17:51:37 2018 +0100

Typo in clientMoveTile

Bug: 14181

The comparison is corrected, closing a one pixel gap between
TILE_LEFT and TILE_UP_LEFT and between TILE_RIGHT and TILE_UP_RIGHT.

(cherry picked from commit 4ec48e8d52ad5afefb20d00345967a1bcf27a34f)
---
 src/moveresize.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/moveresize.c b/src/moveresize.c
index b15d8ab..f0c1b4c 100644
--- a/src/moveresize.c
+++ b/src/moveresize.c
@@ -813,7 +813,7 @@ clientMoveTile (Client *c, XMotionEvent *xevent)
 {
 /* tile window depending on the mouse position on the screen */
 
-if ((y > disp_y + dist_corner) && (y < disp_max_y - dist_corner))
+if ((y >= disp_y + dist_corner) && (y < disp_max_y - dist_corner))
 {
 /* mouse pointer on left edge excluding corners */
 if (x < disp_x + dist)

-- 
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] branch master updated (642275e -> 942156e)

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  642275e   compositor: Add support for NET_WM_BYPASS_COMPOSITOR
   new  942156e   I18n: Update translation lt (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/lt.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] [xfce/xfwm4] 01/01: I18n: Update translation lt (100%).

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 942156e40b1728141c56d19ebfb0c3a721c39c19
Author: Anonymous 
Date:   Fri Jul 27 18:32:36 2018 +0200

I18n: Update translation lt (100%).

169 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index b4d2df3..1b107b9 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -5,20 +5,20 @@
 # Translators:
 # Algimantas Margevičius , 2012
 # Mantas Zapolskas , 2003
-# Moo, 2015-2017
+# Moo, 2015-2018
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfwm4\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-12-20 12:33+0100\n"
-"PO-Revision-Date: 2017-12-20 20:05+\n"
+"PO-Revision-Date: 2018-07-27 12:55+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfwm4/language/lt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: lt\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
(n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 
11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n 
% 1 != 0 ? 2: 3);\n"
 
 #: ../helper-dialog/helper-dialog.c:86
 msgid ""
@@ -452,7 +452,7 @@ msgstr "Automatiškai iškelti _langus kai jie perkeliami 
link lango krašto"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:23
 msgid "Use _edge resistance instead of window snapping"
-msgstr "Vietoj lango karpymo naudoti _lango atsparumą"
+msgstr "Vietoj lango pritraukimo naudoti _lango atsparumą"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:24
 msgid "Notify of _urgency by making window's decoration blink"

-- 
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/parole] branch master updated (cbfa573 -> e8f5d00)

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  cbfa573   I18n: Update translation eu (92%).
   new  e8f5d00   I18n: Update translation eu (97%).

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/eu.po | 38 +++---
 1 file changed, 19 insertions(+), 19 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/parole] 01/01: I18n: Update translation eu (97%).

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit e8f5d006eb2e48322e9617b90a4cea6999db6d19
Author: Aitor Beriain 
Date:   Fri Jul 27 18:31:23 2018 +0200

I18n: Update translation eu (97%).

291 translated messages, 8 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/eu.po | 38 +++---
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index 52962ea..3f3d486 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-04-12 06:31+0200\n"
-"PO-Revision-Date: 2018-07-27 10:30+\n"
+"PO-Revision-Date: 2018-07-27 11:16+\n"
 "Last-Translator: Aitor Beriain \n"
 "Language-Team: Basque 
(http://www.transifex.com/xfce/xfce-apps/language/eu/)\n"
 "MIME-Version: 1.0\n"
@@ -133,7 +133,7 @@ msgstr "_Bideoa"
 #: ../data/interfaces/parole.ui.h:27 ../src/parole-player.c:1982
 #: ../src/parole-player.c:2135
 msgid "_Fullscreen"
-msgstr "_Pantaila osoa"
+msgstr "_Pantaila-osoa"
 
 #: ../data/interfaces/parole.ui.h:28
 msgid "_Aspect Ratio"
@@ -261,7 +261,7 @@ msgstr "Gehitu"
 
 #: ../data/interfaces/playlist.ui.h:5
 msgid "Remove selected media"
-msgstr ""
+msgstr "Hautatutako media kendu"
 
 #: ../data/interfaces/playlist.ui.h:6
 msgid "Remove"
@@ -503,11 +503,11 @@ msgstr "Ikusi"
 
 #: ../data/interfaces/shortcuts.ui.h:6
 msgid "Toggle fullscreen"
-msgstr "Txandakatu pantaila osoko modua"
+msgstr "Txandakatu pantaila-osoko modua"
 
 #: ../data/interfaces/shortcuts.ui.h:7
 msgid "Exit fullscreen"
-msgstr "Irten pantaila osoko modutik"
+msgstr "Irten pantaila-osoko modutik"
 
 #: ../data/interfaces/shortcuts.ui.h:8
 msgid "Toggle menubar"
@@ -605,18 +605,18 @@ msgid ""
 "Parole is a modern simple media player based on the GStreamer framework and "
 "written to fit well in the Xfce desktop. It is designed with simplicity, "
 "speed and resource usage in mind."
-msgstr ""
+msgstr "Parole media erreproduzigailu moderno eta sinple bat da, GStreamer 
lan-inguruan oinarritua eta Xfce mahaiganean ondo ahokatzeko idatzia. 
Sinpletasuna, abiadura eta baliabideen erabilera aintzat hartuz diseinatu da."
 
 #: ../data/appdata/parole.appdata.xml.in.h:2
 msgid ""
 "Parole features playback of local media files, including video with "
 "subtitles support, Audio CDs, DVDs, and live streams. Parole is also "
 "extensible via plugins."
-msgstr ""
+msgstr "Parolek media fitxategi lokalak erreproduzitu ditzake, baita bideoak 
azpitituluekin, audio CDak, DVDak, eta zuzeneko jarioak ere. Paroleren 
ezaugarriak pluginen bidez luzatu daitezke."
 
 #: ../data/appdata/parole.appdata.xml.in.h:3
 msgid "This is a minor translations-only release."
-msgstr ""
+msgstr "Hau itzulpenak soilik eguneratzen dituen argitalpen txiki bat da."
 
 #: ../data/appdata/parole.appdata.xml.in.h:4
 msgid ""
@@ -713,12 +713,12 @@ msgstr "Ados"
 msgid ""
 "Parole needs %s to play this file.\n"
 "It can be installed automatically."
-msgstr ""
+msgstr "Parolek %s behar du fitxategi hau 
erreproduzitzeko.\nAutomatikoki instalatu daiteke."
 
 #: ../src/gst/parole-gst.c:1324
 #, c-format
 msgid "Parole needs %s to play this file."
-msgstr ""
+msgstr "Parolek %s behar du fitxategi hau erreproduzitzeko."
 
 #: ../src/gst/parole-gst.c:1693
 msgid "The stream is taking too much time to load"
@@ -726,7 +726,7 @@ msgstr "Korrontea debora asko tardatzen ari da kargatzeko"
 
 #: ../src/gst/parole-gst.c:1695
 msgid "Do you want to continue loading or stop?"
-msgstr ""
+msgstr "Kargatzen jarraitu edo gelditzea nahi duzu?"
 
 #: ../src/gst/parole-gst.c:1696
 msgid "Stop"
@@ -742,13 +742,13 @@ msgstr "GStreameren errorea"
 
 #: ../src/gst/parole-gst.c:1862
 msgid "Parole Media Player cannot start."
-msgstr ""
+msgstr "Parole media erreproduzigailua ezin da abiarazi."
 
 #: ../src/gst/parole-gst.c:1887 ../src/gst/parole-gst.c:1902
 #: ../src/gst/parole-gst.c:1936
 #, c-format
 msgid "Unable to load \"%s\" plugin, check your GStreamer installation."
-msgstr ""
+msgstr "Ezin izan da \"%s\" plugina kargatu, egiaztatu ezazu zure GStreameren 
instalazioa."
 
 #: ../src/gst/parole-gst.c:2496 ../src/gst/parole-gst.c:2500
 #, c-format
@@ -773,7 +773,7 @@ msgid ""
 "\n"
 "Please report bugs to .\n"
 "\n"
-msgstr ""
+msgstr "\nParole media erreproduzigailua %s\n\nXfce Goodies proiektuaren 
zati\nhttps://goodies.xfce.org\n\nGNU GPL lizentziapean argitaratua.\n\nMesedez 
eman akatsen berri hemen .\n\n"
 
 #: ../src/main.c:227
 msgid "Open a new instance"
@@ -789,7 +789,7 @@ msgstr "Ezarri Audio-CD/VCD/DVD gailu bidea"
 
 #: ../src/main.c:233
 msgid "Start in embedded mode"
-msgstr ""
+msgstr "Abiarazi 

[Xfce4-commits] [apps/parole] branch master updated (96e5221 -> cbfa573)

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  96e5221   I18n: Update translation eu (82%).
   new  cbfa573   I18n: Update translation eu (92%).

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/eu.po | 62 +++---
 1 file changed, 31 insertions(+), 31 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/parole] 01/01: I18n: Update translation eu (92%).

2018-07-27 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit cbfa573a1fd7da22d2ce249d832f5a34e90e7b0e
Author: Aitor Beriain 
Date:   Fri Jul 27 12:31:24 2018 +0200

I18n: Update translation eu (92%).

276 translated messages, 23 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/eu.po | 62 +++---
 1 file changed, 31 insertions(+), 31 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index cc6ac64..52962ea 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-04-12 06:31+0200\n"
-"PO-Revision-Date: 2018-07-24 09:13+\n"
+"PO-Revision-Date: 2018-07-27 10:30+\n"
 "Last-Translator: Aitor Beriain \n"
 "Language-Team: Basque 
(http://www.transifex.com/xfce/xfce-apps/language/eu/)\n"
 "MIME-Version: 1.0\n"
@@ -334,11 +334,11 @@ msgstr "Automatikoa"
 
 #: ../data/interfaces/parole-settings.ui.h:2
 msgid "X Window System (X11/XShm/Xv)"
-msgstr ""
+msgstr "X leiho sistema (X11/XShm/Xv)"
 
 #: ../data/interfaces/parole-settings.ui.h:3
 msgid "X Window System (No Xv)"
-msgstr ""
+msgstr "X leiho sistema (Xv ez)"
 
 #: ../data/interfaces/parole-settings.ui.h:4
 msgid "Parole Settings"
@@ -552,7 +552,7 @@ msgstr "Erreprodukzioa"
 #: ../data/interfaces/shortcuts.ui.h:19
 #: ../data/desktop/org.xfce.Parole.desktop.in.in.h:3
 msgid "Play/Pause"
-msgstr ""
+msgstr "Erreproduzitu/Gelditu"
 
 #: ../data/interfaces/shortcuts.ui.h:20 ../src/main.c:241
 msgid "Previous track"
@@ -849,15 +849,15 @@ msgstr "Fitxategi guztiak"
 #, c-format
 msgid "Playlist (%i item)"
 msgid_plural "Playlist (%i items)"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Erreprodukzio-zerrenda (elementu %i)"
+msgstr[1] "Erreprodukzio-zerrenda (%i elementu)"
 
 #: ../src/parole-medialist.c:221 ../src/parole-medialist.c:1477
 #, c-format
 msgid "Playlist (%i chapter)"
 msgid_plural "Playlist (%i chapters)"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Erreprodukzio-zerrenda (kapitulu %i)"
+msgstr[1] "Erreprodukzio-zerrenda (%i kapitulu)"
 
 #: ../src/parole-medialist.c:390 ../src/parole-player.c:710
 #, c-format
@@ -878,7 +878,7 @@ msgstr "Erreprodukzio-zerrenda formatu ezezaguna"
 
 #: ../src/parole-medialist.c:664
 msgid "Please choose a supported playlist format"
-msgstr ""
+msgstr "Mesedez hautatu onartutako erreprodukzio-zerrenda formatu bat"
 
 #: ../src/parole-medialist.c:707 ../src/parole-plugins-manager.c:338
 msgid "Unknown"
@@ -959,7 +959,7 @@ msgstr "GStreamer interfaze errorea"
 
 #: ../src/parole-player.c:1794
 msgid "Unknown Song"
-msgstr ""
+msgstr "Abesti ezezaguna"
 
 #: ../src/parole-player.c:1805 ../src/parole-player.c:1811
 #: ../src/parole-player.c:1819
@@ -988,45 +988,45 @@ msgstr "Pantaila-osoa"
 
 #: ../src/parole-player.c:1994
 msgid "Leave _Fullscreen"
-msgstr ""
+msgstr "Utzi _pantaila-osoa"
 
 #: ../src/parole-player.c:1995
 msgid "Leave Fullscreen"
-msgstr ""
+msgstr "Utzi pantaila-osoa"
 
 #. Play menu item
 #. * Play pause
 #: ../src/parole-player.c:2097 ../src/plugins/tray/tray-provider.c:119
 msgid "_Pause"
-msgstr ""
+msgstr "_Gelditu"
 
 #: ../src/parole-player.c:2097 ../src/plugins/tray/tray-provider.c:119
 msgid "_Play"
-msgstr ""
+msgstr "Erre_produzitu"
 
 #. * Previous item in playlist.
 #: ../src/parole-player.c:2113
 msgid "_Previous"
-msgstr ""
+msgstr "_Aurrekoa"
 
 #. * Next item in playlist.
 #: ../src/parole-player.c:2124
 msgid "_Next"
-msgstr ""
+msgstr "_Hurrengoa"
 
 #. * Un/Full screen
 #: ../src/parole-player.c:2135
 msgid "_Leave Fullscreen"
-msgstr ""
+msgstr "_Utzi pantaila-osoa"
 
 #. * Un/Hide menubar
 #: ../src/parole-player.c:2150
 msgid "Show menubar"
-msgstr ""
+msgstr "Ikusi menu-barra"
 
 #: ../src/parole-player.c:2167
 msgid "Mini Mode"
-msgstr ""
+msgstr "Mini modua"
 
 #: ../src/parole-player.c:2386
 msgid "Unmute"
@@ -1034,25 +1034,25 @@ msgstr "Desmututu"
 
 #: ../src/parole-player.c:2785
 msgid "Unable to open default web browser"
-msgstr ""
+msgstr "Ezin izan da lehenetsitako nabigatzailea ireki"
 
 #: ../src/parole-player.c:2787
 msgid ""
 "Please go to https://docs.xfce.org/apps/parole/bugs to report your bug."
-msgstr ""
+msgstr "Mesedez jo ezazu https://docs.xfce.org/apps/parole/bugs helbidera zure 
arazoaren berri emateko."
 
 #: ../src/parole-player.c:2815
 msgid "Go"
-msgstr ""
+msgstr "Joan"
 
 #: ../src/parole-player.c:2828
 msgid "Position:"
-msgstr ""
+msgstr "Kokapena:"
 
 #. Clear Recent Menu Item
 #: ../src/parole-player.c:3232
 msgid "_Clear recent items…"
-msgstr ""
+msgstr "_Garbitu azken elementuak…"
 
 #: ../src/parole-player.c:3550
 msgid "Audio Track:"
@@ -1077,7 +1077,7 @@ msgstr "Ikusi Parole webgunea"
 
 #: ../src/parole-conf-dialog.c:292
 msgid