[Xfce4-commits] [xfce/xfwm4] 05/05: main: Only allow for the x11 gdk backend

2017-12-06 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 6a44ecc303f3cdb6ba33c0f9b75710c4c0983760
Author: Olivier Fourdan 
Date:   Wed Dec 6 09:53:25 2017 +0100

main: Only allow for the x11 gdk backend

When running xfwm4 from a nested X11 server (Xnest, Xephyr) from within
a Wayland session, GDK will selects in priority the Wayland backend,
which will lead to a crash because xfwm4 is an X11 window manager and
not a Wayland client.

Signed-off-by: Olivier Fourdan 
---
 src/main.c | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/src/main.c b/src/main.c
index 28136e1..254ed54 100644
--- a/src/main.c
+++ b/src/main.c
@@ -673,6 +673,12 @@ main (int argc, char **argv)
 
 xfce_textdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR, "UTF-8");
 
+/* xfwm4 is an X11 window manager, no point in trying to connect to
+ * any other display server (like when running nested within a
+ * Wayland compositor).
+ */
+gdk_set_allowed_backends ("x11");
+
 #ifndef HAVE_XI2
 /* Disable XI2 in GDK */
 gdk_disable_multidevice ();

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

2017-12-06 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 b6fa004ea1ad4d7db84730ae5f773cbc4b762eeb
Author: Andrey Alekseenkov 
Date:   Tue Dec 5 10:55:30 2017 +0100

Fix logic error in bottom struts validation

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

diff --git a/src/workspaces.c b/src/workspaces.c
index 62c3702..ec85eb2 100644
--- a/src/workspaces.c
+++ b/src/workspaces.c
@@ -582,7 +582,7 @@ workspaceUpdateArea (ScreenInfo *screen_info)
c->struts[STRUTS_TOP]);
 }
 
-if (checkValidStruts (&bottom, &workarea, STRUTS_BOTTOM) ||
+if (checkValidStruts (&bottom, &workarea, STRUTS_BOTTOM) &&
 gdk_rectangle_intersect (&bottom, &workarea, 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] 02/05: compositor: check XPresent before GLX

2017-12-06 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 5ee90cf17c156fd65a79801ceecafb2b2282dea1
Author: Olivier Fourdan 
Date:   Tue Dec 5 10:53:11 2017 +0100

compositor: check XPresent before GLX

Bug: 13970

Not that it matters much in this case though.

Signed-off-by: Olivier Fourdan 
---
 src/compositor.c | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/src/compositor.c b/src/compositor.c
index 922afee..eaa4d66 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -2161,18 +2161,8 @@ paint_all (ScreenInfo *screen_info, XserverRegion 
region, gushort buffer)
 }
 }
 
-#ifdef HAVE_EPOXY
-if (screen_info->use_glx) /* glx first if available */
-{
-glXWaitX ();
-bind_glx_texture (screen_info,
-  screen_info->rootPixmap[buffer]);
-redraw_glx_texture (screen_info);
-}
-else
-#endif /* HAVE_EPOXY */
 #ifdef HAVE_PRESENT_EXTENSION
-if (screen_info->use_present) /* otherwise present if available */
+if (screen_info->use_present)
 {
 if (screen_info->zoomed)
 {
@@ -2187,6 +2177,16 @@ paint_all (ScreenInfo *screen_info, XserverRegion 
region, gushort buffer)
 }
 else
 #endif /* HAVE_PRESENT_EXTENSION */
+#ifdef HAVE_EPOXY
+if (screen_info->use_glx)
+{
+glXWaitX ();
+bind_glx_texture (screen_info,
+  screen_info->rootPixmap[buffer]);
+redraw_glx_texture (screen_info);
+}
+else
+#endif /* HAVE_EPOXY */
 {
 if (screen_info->zoomed)
 {
@@ -4339,13 +4339,13 @@ compositorManageScreen (ScreenInfo *screen_info)
 screen_info->use_glx = FALSE;
 #endif /* HAVE_EPOXY */
 
-if (screen_info->use_glx)
+if (screen_info->use_present)
 {
-DBG ("Compositor using GLX for vsync");
+DBG ("Compositor using XPresent for vsync");
 }
-else if (screen_info->use_present)
+else if (screen_info->use_glx)
 {
-DBG ("Compositor using XPresent for vsync");
+DBG ("Compositor using GLX for vsync");
 }
 else
 {

-- 
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/05: Fix maximized size increment regression

2017-12-06 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 54db88acb7e1988d5c39722d639a0347c99fd7b0
Author: Olivier Fourdan 
Date:   Wed Dec 6 09:43:50 2017 +0100

Fix maximized size increment regression

Bug: 13954

Commit aee8b25a:

Do not prevent ALT+Mouse resizing for borderless maximized windows.

Introduced a regression with windows using size increment (like most
terminal emulators).

Fix the size increment issue while preserving the possibility to resize
maximized window.

Signed-off-by: Olivier Fourdan 
---
 src/client.c |  2 +-
 src/moveresize.c | 10 +++---
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/client.c b/src/client.c
index 24285ab..9aa57f7 100644
--- a/src/client.c
+++ b/src/client.c
@@ -881,7 +881,7 @@ clientMoveResizeWindow (Client *c, XWindowChanges * wc, 
unsigned long mask)
 /* Not allowed in fullscreen mode */
 mask &= ~(CWX | CWY | CWWidth | CWHeight);
 }
-/*clean up buggy requests that set all flags */
+/* clean up buggy requests that set all flags */
 if ((mask & CWX) && (wc->x == c->x))
 {
 mask &= ~CWX;
diff --git a/src/moveresize.c b/src/moveresize.c
index 4854671..8a23e76 100644
--- a/src/moveresize.c
+++ b/src/moveresize.c
@@ -103,8 +103,10 @@ clientCheckSize (Client * c, int size, int base, int min, 
int max, int incr, gbo
 
 size_return = size;
 
-/* Bypass resize increment and max sizes for fullscreen */
-if (!FLAG_TEST (c->flags, CLIENT_FLAG_FULLSCREEN))
+/* Bypass resize increment and max sizes for fullscreen and maximized */
+if (!FLAG_TEST (c->flags, CLIENT_FLAG_FULLSCREEN)
+&& !(FLAG_TEST_ALL (c->flags, CLIENT_FLAG_MAXIMIZED)
+ && (c->screen_info->params->borderless_maximize)))
 {
 
 if (!source_is_application && (c->size->flags & PResizeInc) && (incr))
@@ -1744,6 +1746,7 @@ clientResize (Client * c, int handle, XfwmEventButton 
*event)
 passdata.cancel_y = passdata.oy = c->y;
 passdata.cancel_w = passdata.ow = c->width;
 passdata.cancel_h = passdata.oh = c->height;
+passdata.configure_flags = NO_CFG_FLAG;
 passdata.use_keys = FALSE;
 passdata.grab = FALSE;
 passdata.released = FALSE;
@@ -1841,13 +1844,14 @@ clientResize (Client * c, int handle, XfwmEventButton 
*event)
 if (FLAG_TEST (c->flags, CLIENT_FLAG_MAXIMIZED))
 {
 clientRemoveMaximizeFlag (c);
+passdata.configure_flags = CFG_FORCE_REDRAW;
 }
 if (FLAG_TEST (c->flags, CLIENT_FLAG_RESTORE_SIZE_POS))
 {
 FLAG_UNSET (c->flags, CLIENT_FLAG_RESTORE_SIZE_POS);
 }
 }
-clientReconfigure (c, NO_CFG_FLAG);
+clientReconfigure (c, passdata.configure_flags);
 
 if (passdata.button != AnyButton && !passdata.released)
 {

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

2017-12-06 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 9c888ac750265b88a865cdbd01edf50395c82c54
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.
---
 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 0fb5627..24285ab 100644
--- a/src/client.c
+++ b/src/client.c
@@ -3360,6 +3360,24 @@ clientNewMaxSize (Client *c, XWindowChanges *wc, 
GdkRectangle *rect)
 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;
@@ -3368,8 +3386,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))
 {
@@ -3378,9 +3396,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), &rect);
+myScreenFindMonitorAtPoint (screen_info, cx, cy, &rect);
 
 wc.x = c->x;
 wc.y = c->y;
diff --git a/src/client.h b/src/client.h
index e8a72d7..19ef69c 100644
--- a/src/client.h
+++ b/src/client.h
@@ -469,6 +469,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 9dbc561..4854671 100644
--- a/src/moveresize.c
+++ b/src/moveresize.c
@@ -833,7 +833,7 @@ clientMoveTile (Client *c, XfwmEventMotion *event)
 /* 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] branch master updated (ef33ff7 -> 6a44ecc)

2017-12-06 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  ef33ff7   Replace XEvent with XfwmEvent + add xfwm_device_* grabs 
usage
   new  9c888ac   client: Maximize on expected output
   new  5ee90cf   compositor: check XPresent before GLX
   new  b6fa004   Fix logic error in bottom struts validation
   new  54db88a   Fix maximized size increment regression
   new  6a44ecc   main: Only allow for the x11 gdk backend

The 5 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 | 28 ++--
 src/client.h |  5 +
 src/compositor.c | 30 +++---
 src/main.c   |  6 ++
 src/moveresize.c | 12 
 src/workspaces.c |  2 +-
 6 files changed, 57 insertions(+), 26 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] branch master updated (5f0513e -> 2443cd1)

2017-12-06 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  5f0513e   I18n: Update translation de (100%).
   new  2443cd1   I18n: Update translation th (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/th.po | 58 --
 1 file changed, 40 insertions(+), 18 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/xfburn] 01/01: I18n: Update translation th (99%).

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

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

commit 0b594acaf5732e5a4facbefa1201e29d5e24d5f3
Author: Theppitak Karoonboonyanan 
Date:   Wed Dec 6 12:31:31 2017 +0100

I18n: Update translation th (99%).

305 translated messages, 1 untranslated message.

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

diff --git a/po/th.po b/po/th.po
index 234fed8..06f6242 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Theppitak Karoonboonyanan , 2014
+# Theppitak Karoonboonyanan , 2014,2017
 # Theppitak Karoonboonyanan , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-20 06:30+0200\n"
-"PO-Revision-Date: 2017-09-23 19:10+\n"
+"POT-Creation-Date: 2017-11-21 00:31+0100\n"
+"PO-Revision-Date: 2017-12-06 09:57+\n"
 "Last-Translator: Theppitak Karoonboonyanan \n"
 "Language-Team: Thai (http://www.transifex.com/xfce/xfce-apps/language/th/)\n"
 "MIME-Version: 1.0\n"
@@ -627,6 +627,16 @@ msgstr "ปริยาย"
 msgid "Max"
 msgstr "สูงสุด"
 
+#: ../xfburn/xfburn-device-box.c:507
+msgid "A full, but erasable disc is in the drive"
+msgstr "มีแผ่นที่เขียนเต็มแล้วแต่สามารถลบข้อมูลได้อยู่ในไดรว์"
+
+#: ../xfburn/xfburn-device-box.c:508
+msgid ""
+"Do you want to blank the disc, so that it can be used for the upcoming burn "
+"process?"
+msgstr "คุณต้องการล้างแผ่นเพื่อให้สามารถใช้เขียนข้อมูลได้หรือไม่?"
+
 #: ../xfburn/xfburn-device-box.c:579
 msgid "Drive can't burn on the inserted disc"
 msgstr "ไดรว์ไม่สามารถเขียนแผ่นที่ใส่เข้ามาได้"
@@ -1396,9 +1406,21 @@ msgid "Data Composition"
 msgstr "ร่างต้นฉบับแผ่นข้อมูล"
 
 #: ../xfburn.desktop.in.h:2
+msgid "Disk Burning"
+msgstr "โปรแกรมเขียนแผ่น"
+
+#: ../xfburn.desktop.in.h:3
 msgid "CD and DVD burning application"
 msgstr "โปรแกรมเขียนซีดีและดีวีดี"
 
-#: ../xfburn.desktop.in.h:3
+#: ../xfburn.desktop.in.h:4
 msgid "Burn Image (xfburn)"
 msgstr "เขียนลงแผ่น (xfburn)"
+
+#: ../xfburn.appdata.xml.in.h:1
+msgid ""
+"Xfburn is a simple CD/DVD burning tool based on libburnia libraries. It can "
+"blank CD/DVD(-RW)s, burn and create iso images, audio CDs, as well as burn "
+"personal compositions of data to either CD or DVD. It is stable and under "
+"ongoing development."
+msgstr "Xfburn เป็นเครื่องมือเขียนแผ่นซีดี/ดีวีดีอย่างง่าย โดยอาศัยไลบรารี 
libburnia สามารถล้างแผ่น CD/DVD(-RW), สร้างและเขียนอิมเมจ iso, ซีดีเพลง, 
รวมทั้งเขียนข้อมูลใดๆ ที่เรียบเรียงไว้ลงในแผ่นซีดีหรือดีวีดีได้ 
โปรแกรมนี้ทำงานได้อย่างมีเสถียรภาพและมีการพัฒนาปรับปรุงอย่างสม่ำเสมอ"

-- 
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-terminal] branch master updated (65a7d23 -> 0a981c9)

2017-12-06 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-terminal.

  from  65a7d23   Fix previous commit
   new  0a981c9   I18n: Update translation th (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/th.po | 537 ++-
 1 file changed, 289 insertions(+), 248 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 th (100%).

2017-12-06 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 2443cd1ed364242342f4fe5350fe8efd6d2505a7
Author: Theppitak Karoonboonyanan 
Date:   Wed Dec 6 12:31:43 2017 +0100

I18n: Update translation th (100%).

70 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/th.po | 58 --
 1 file changed, 40 insertions(+), 18 deletions(-)

diff --git a/po/th.po b/po/th.po
index 94489e7..f9e743c 100644
--- a/po/th.po
+++ b/po/th.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-09 00:31+0200\n"
-"PO-Revision-Date: 2017-09-19 19:07+\n"
+"POT-Creation-Date: 2017-12-01 06:31+0100\n"
+"PO-Revision-Date: 2017-12-06 09:09+\n"
 "Last-Translator: Theppitak Karoonboonyanan \n"
 "Language-Team: Thai (http://www.transifex.com/xfce/xfce-apps/language/th/)\n"
 "MIME-Version: 1.0\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Language: th\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../panel-plugin/notification-plugin.c:183
+#: ../panel-plugin/notification-plugin.c:215
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:12
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.desktop.in.h:1
 msgid "Notifications"
@@ -51,6 +51,22 @@ msgstr "นี่คือปลั๊กอินแจ้งเหตุ"
 msgid "Copyright © 2017 Simon Steinbeiß\n"
 msgstr "Copyright © 2017 Simon Steinbeiß\n"
 
+#: ../panel-plugin/notification-plugin-log.c:121
+msgid "_Do not disturb"
+msgstr "_ห้ามรบกวน"
+
+#: ../panel-plugin/notification-plugin-log.c:282
+msgid "No notifications"
+msgstr "ไม่มีรายการแจ้งเหตุ"
+
+#: ../panel-plugin/notification-plugin-log.c:301
+msgid "_Clear log"
+msgstr "_ล้างปูม"
+
+#: ../panel-plugin/notification-plugin-log.c:309
+msgid "_Notification settings…"
+msgstr "_ตั้งค่าการแจ้งเหตุ…"
+
 #: ../panel-plugin/notification-plugin.desktop.in.h:1
 msgid "Notification Plugin"
 msgstr "ปลั๊กอินแจ้งเหตุ"
@@ -60,7 +76,7 @@ msgid "Notification plugin for the Xfce panel"
 msgstr "ปลั๊กอินแจ้งเหตุสำหรับพาเนล Xfce"
 
 #: ../xfce4-notifyd/main.c:53 ../xfce4-notifyd/main.c:63
-#: ../xfce4-notifyd-config/main.c:774
+#: ../xfce4-notifyd-config/main.c:805
 msgid "Xfce Notify Daemon"
 msgstr "ดีมอนแจ้งเหตุของ Xfce"
 
@@ -73,7 +89,7 @@ msgstr "ไม่รู้จักตัวเลือก \"%s\"\n"
 msgid "Unable to start notification daemon"
 msgstr "ไม่สามารถเปิดทำงานดีมอนแจ้งเหตุได้"
 
-#: ../xfce4-notifyd/xfce-notify-daemon.c:362
+#: ../xfce4-notifyd/xfce-notify-daemon.c:404
 #, c-format
 msgid "Another notification daemon is running, exiting\n"
 msgstr "มีดีมอนแจ้งเหตุอีกตัวหนึ่งทำงานอยู่ก่อนแล้ว ขอจบการทำงาน\n"
@@ -94,57 +110,63 @@ msgstr "ปุ่ม"
 msgid "Notification preview failed"
 msgstr "แสดงตัวอย่างการแจ้งเหตุไม่สำเร็จ"
 
-#: ../xfce4-notifyd-config/main.c:776
+#: ../xfce4-notifyd-config/main.c:807
 msgid "Settings daemon is unavailable"
 msgstr "ไม่มีดีมอนค่าตั้งอยู่"
 
-#: ../xfce4-notifyd-config/main.c:908
+#: ../xfce4-notifyd-config/main.c:934
+msgid ""
+"Empty log\n"
+"No notifications have been logged yet."
+msgstr "ปูมว่างเปล่า\nยังไม่มีรายการแจ้งเหตุในปูม"
+
+#: ../xfce4-notifyd-config/main.c:941
 msgid "Refresh"
 msgstr "ปรับแสดง"
 
-#: ../xfce4-notifyd-config/main.c:909
+#: ../xfce4-notifyd-config/main.c:942
 msgid "Refresh the notification log"
 msgstr "ปรับแสดงเนื้อหาปูมการแจ้งเหตุ"
 
-#: ../xfce4-notifyd-config/main.c:914
+#: ../xfce4-notifyd-config/main.c:947
 msgid "Open"
 msgstr "เปิด"
 
-#: ../xfce4-notifyd-config/main.c:915
+#: ../xfce4-notifyd-config/main.c:948
 msgid "Open the notification log in an external editor"
 msgstr "เปิดปูมการแจ้งเหตุด้วยเครื่องมือแก้ไขภายนอก"
 
-#: ../xfce4-notifyd-config/main.c:920
+#: ../xfce4-notifyd-config/main.c:953
 msgid "Clear"
 msgstr "ล้าง"
 
-#: ../xfce4-notifyd-config/main.c:921
+#: ../xfce4-notifyd-config/main.c:954
 msgid "Clear the notification log"
 msgstr "ล้างปูมการแจ้งเหตุ"
 
-#: ../xfce4-notifyd-config/main.c:943
+#: ../xfce4-notifyd-config/main.c:976
 msgid "Display version information"
 msgstr "แสดงข้อมูลรุ่น"
 
-#: ../xfce4-notifyd-config/main.c:944
+#: ../xfce4-notifyd-config/main.c:977
 msgid "Settings manager socket"
 msgstr "ซ็อกเก็ตของโปรแกรมจัดการค่าตั้ง"
 
-#: ../xfce4-notifyd-config/main.c:944
+#: ../xfce4-notifyd-config/main.c:977
 msgid "SOCKET_ID"
 msgstr "หมายเลขซ็อกเก็ต"
 
-#: ../xfce4-notifyd-config/main.c:954
+#: ../xfce4-notifyd-config/main.c:987
 #, c-format
 msgid "Type '%s --help' for usage."
 msgstr "สั่ง '%s --help' เพื่อดูวิธีใช้"
 
-#: ../xfce4-notifyd-config/main.c:969
+#: ../xfce4-notifyd-config/main.c:1002
 #, c-format
 msgid "Released under the terms of the GNU General Public License, version 2\n"
 msgstr "เผยแพร่ภายใต้เงื่อนไขของ GNU General Public License รุ่นที่ 2\n"
 
-#: ../xfce4-notifyd-config/

[Xfce4-commits] [apps/xfburn] branch master updated (1dbdf8e -> 0b594ac)

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

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

  from  1dbdf8e   I18n: Update translation sr (99%).
   new  0b594ac   I18n: Update translation th (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/th.po | 30 ++
 1 file changed, 26 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/xfce4-terminal] 01/01: I18n: Update translation th (100%).

2017-12-06 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-terminal.

commit 0a981c9193d6db257cdc5f2ec9ec3afa07f7cd00
Author: Theppitak Karoonboonyanan 
Date:   Wed Dec 6 12:31:57 2017 +0100

I18n: Update translation th (100%).

370 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/th.po | 537 ++-
 1 file changed, 289 insertions(+), 248 deletions(-)

diff --git a/po/th.po b/po/th.po
index 092fa21..0b8d88c 100644
--- a/po/th.po
+++ b/po/th.po
@@ -9,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-12 06:31+0200\n"
-"PO-Revision-Date: 2017-09-19 19:07+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2017-10-12 00:31+0200\n"
+"PO-Revision-Date: 2017-12-06 08:13+\n"
+"Last-Translator: Theppitak Karoonboonyanan \n"
 "Language-Team: Thai (http://www.transifex.com/xfce/xfce-apps/language/th/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -168,12 +168,12 @@ msgstr "หากพบปัญหา กรุณารายงานที
 msgid "Unable to register terminal service: %s\n"
 msgstr "ไม่สามารถลงทะเบียนบริการเทอร์มินัลได้: %s\n"
 
-#: ../terminal/terminal-app.c:864
+#: ../terminal/terminal-app.c:872
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "สตริงข้อกำหนดเรขาคณิต \"%s\" ไม่ถูกต้อง\n"
 
-#: ../terminal/terminal-app.c:943
+#: ../terminal/terminal-app.c:951
 #, c-format
 msgid "Failed to connect to session manager: %s\n"
 msgstr "ติดต่อกับโปรแกรมจัดการวาระไม่สำเร็จ: %s\n"
@@ -392,64 +392,64 @@ msgstr "ตัวเลือก \"--zoom\" ต้องระบุระดั
 msgid "Unknown option \"%s\""
 msgstr "ไม่รู้จักตัวเลือก \"%s\""
 
-#: ../terminal/terminal-preferences-dialog.c:394
+#: ../terminal/terminal-preferences-dialog.c:403
 msgid "All Files"
 msgstr "ทุกแฟ้ม"
 
-#: ../terminal/terminal-preferences-dialog.c:400
+#: ../terminal/terminal-preferences-dialog.c:409
 msgid "Image Files"
 msgstr "แฟ้มรูปภาพ"
 
-#: ../terminal/terminal-preferences-dialog.c:856
+#: ../terminal/terminal-preferences-dialog.c:865
 msgid "Load Presets..."
 msgstr "โหลดชุดที่จัดไว้..."
 
-#: ../terminal/terminal-preferences.c:1106
+#: ../terminal/terminal-preferences.c:1117
 msgid "Terminal"
 msgstr "เทอร์มินัล"
 
-#: ../terminal/terminal-screen.c:407 ../terminal/terminal-screen.c:775
-#: ../terminal/terminal-screen.c:1987
+#: ../terminal/terminal-screen.c:421 ../terminal/terminal-screen.c:789
+#: ../terminal/terminal-screen.c:2006
 msgid "Untitled"
 msgstr "ไม่มีชื่อ"
 
-#: ../terminal/terminal-screen.c:676
+#: ../terminal/terminal-screen.c:690
 #, c-format
 msgid "Unable to determine your login shell."
 msgstr "ไม่สามารถพิจารณาเชลล์เข้าระบบของคุณได้"
 
-#: ../terminal/terminal-screen.c:1236
+#: ../terminal/terminal-screen.c:1259
 msgid "Child process exited"
 msgstr "โพรเซสลูกจบการทำงาน"
 
-#: ../terminal/terminal-screen.c:1239
+#: ../terminal/terminal-screen.c:1262
 msgid "_Relaunch"
 msgstr "เ_รียกทำงานใหม่"
 
-#: ../terminal/terminal-screen.c:1245
+#: ../terminal/terminal-screen.c:1268
 #, c-format
 msgid "The child process exited normally with status %d."
 msgstr "โพรเซสลูกจบการทำงานแบบปกติด้วยสถานะ %d"
 
-#: ../terminal/terminal-screen.c:1247
+#: ../terminal/terminal-screen.c:1270
 #, c-format
 msgid "The child process was aborted by signal %d."
 msgstr "โพรเซสลูกถูกยกเลิกการทำงานด้วยสัญญาณ %d"
 
-#: ../terminal/terminal-screen.c:1249
+#: ../terminal/terminal-screen.c:1272
 #, c-format
 msgid "The child process was aborted."
 msgstr "โพรเซสลูกถูกยกเลิกการทำงาน"
 
-#: ../terminal/terminal-screen.c:1667 ../terminal/terminal-screen.c:1693
+#: ../terminal/terminal-screen.c:1685 ../terminal/terminal-screen.c:1711
 msgid "Failed to execute child"
 msgstr "เรียกทำงานโพรเซสลูกไม่สำเร็จ"
 
-#: ../terminal/terminal-screen.c:2309
+#: ../terminal/terminal-screen.c:2344
 msgid "Close this tab"
 msgstr "ปิดแท็บนี้"
 
-#: ../terminal/terminal-screen.c:2363
+#: ../terminal/terminal-screen.c:2397
 #, c-format
 msgid "Failed to set encoding %s\n"
 msgstr "กำหนดใช้รหัสอักขระ %s ไม่สำเร็จ\n"
@@ -559,328 +559,337 @@ msgstr "เทอร์มินัลทิ้งตัว"
 msgid "Toggle Drop-down Terminal"
 msgstr "เปิด-ปิดเทอร์มินัลทิ้งตัว"
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:321
 msgid "_File"
 msgstr "แ_ฟ้ม"
 
-#: ../terminal/terminal-window.c:321
+#: ../terminal/terminal-window.c:322
 msgid "Open _Tab"
 msgstr "เปิดแท็_บ"
 
-#: ../terminal/terminal-window.c:321
+#: ../terminal/terminal-window.c:322
 msgid "Open a new terminal tab"
 msgstr "เปิดแท็บเทอร์มินัลใหม่"
 
-#: ../terminal/terminal-window.c:322
+#: ../terminal/terminal-window.c:323
 msgid "Open T_erminal"
 msgstr "เปิดเทอร์มินั_ล"
 
-#: ../terminal/terminal-window.c:322
+#: ../terminal/terminal-window.c:3

[Xfce4-commits] [thunar-plugins/thunar-archive-plugin] 01/03: I18n: Update translation ko (100%).

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

transifex pushed a 
commit to branch 
master
in repository thunar-plugins/thunar-archive-plugin.

commit 8b223af1d48884cd0e9d2f2bb5a7ba129078e4dd
Author: 박정규(Jung-Kyu Park) 
Date:   Wed Dec 6 18:30:27 2017 +0100

I18n: Update translation ko (100%).

15 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/ko.po | 59 ++-
 1 file changed, 34 insertions(+), 25 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index 537fb54..b9b2736 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,13 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# 박정규(Jung-Kyu Park) , 2017
 # Seong-ho Cho , 2012
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-03 20:07+0200\n"
-"PO-Revision-Date: 2017-11-14 12:03+\n"
+"POT-Creation-Date: 2017-12-06 06:30+0100\n"
+"PO-Revision-Date: 2017-12-06 17:07+\n"
 "Last-Translator: 박정규(Jung-Kyu Park) \n"
 "Language-Team: Korean 
(http://www.transifex.com/xfce/thunar-plugins/language/ko/)\n"
 "MIME-Version: 1.0\n"
@@ -19,68 +20,76 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #. prepare the dialog to query the preferred archiver for the user
-#: ../thunar-archive-plugin/tap-backend.c:81
+#: ../thunar-archive-plugin/tap-backend.c:77
 msgid "Select an archive manager"
-msgstr "압축 관리자를 선택하기"
+msgstr "압축 관리자 선택하기"
+
+#: ../thunar-archive-plugin/tap-backend.c:80
+msgid "_Cancel"
+msgstr "취소(_C)"
+
+#: ../thunar-archive-plugin/tap-backend.c:81
+msgid "_OK"
+msgstr "확인(_O)"
 
 #. add the header label
-#: ../thunar-archive-plugin/tap-backend.c:105
+#: ../thunar-archive-plugin/tap-backend.c:99
 msgid ""
 "Please select your preferred archive manager\n"
 "from the list of available applications below:"
 msgstr "다음 사용 가능한 프로그램 목록에서\n원하는 압축 관리자를 선택하여 주시기 바랍니다:"
 
 #. tell the user that we cannot handle the specified mime types
-#: ../thunar-archive-plugin/tap-backend.c:280
-#: ../thunar-archive-plugin/tap-backend.c:427
+#: ../thunar-archive-plugin/tap-backend.c:276
+#: ../thunar-archive-plugin/tap-backend.c:424
 #, c-format
 msgid "No suitable archive manager found"
 msgstr "적당한 압축 관리자가 없습니다"
 
-#. execute the action
-#: ../thunar-archive-plugin/tap-provider.c:336
-#: ../thunar-archive-plugin/tap-provider.c:375
+#. execute the action associated with the menu item
+#: ../thunar-archive-plugin/tap-provider.c:283
+#: ../thunar-archive-plugin/tap-provider.c:322
 msgid "Failed to extract files"
-msgstr "파일 압축을 푸는데 실패"
+msgstr "압축 파일 풀기 실패"
 
-#. execute the action
-#: ../thunar-archive-plugin/tap-provider.c:413
+#. execute the action associated with the menu item
+#: ../thunar-archive-plugin/tap-provider.c:360
 msgid "Failed to create archive"
-msgstr "압축 파일을 만드는데 실패"
+msgstr "압축 파일 만들기 실패"
 
-#: ../thunar-archive-plugin/tap-provider.c:468
+#: ../thunar-archive-plugin/tap-provider.c:414
 msgid "Extract _Here"
 msgstr "여기에 압축 풀기(_H)"
 
-#: ../thunar-archive-plugin/tap-provider.c:475
+#: ../thunar-archive-plugin/tap-provider.c:416
 msgid "Extract the selected archive in the current folder"
 msgid_plural "Extract the selected archives in the current folder"
-msgstr[0] "현재 폴더에 선택한 압축파일을 풀기"
+msgstr[0] "현재 폴더에 선택한 압축파일 풀기"
 
-#: ../thunar-archive-plugin/tap-provider.c:492
+#: ../thunar-archive-plugin/tap-provider.c:434
 msgid "_Extract To..."
 msgstr "압축 풀기(_E)..."
 
-#: ../thunar-archive-plugin/tap-provider.c:500
+#: ../thunar-archive-plugin/tap-provider.c:436
 msgid "Extract the selected archive"
 msgid_plural "Extract the selected archives"
-msgstr[0] "선택판 압축파일을 풀기"
+msgstr[0] "선택판 압축파일 풀기"
 
-#: ../thunar-archive-plugin/tap-provider.c:520
+#: ../thunar-archive-plugin/tap-provider.c:457
 msgid "Cr_eate Archive..."
 msgstr "압축 파일 만들기(_E)..."
 
-#: ../thunar-archive-plugin/tap-provider.c:528
+#: ../thunar-archive-plugin/tap-provider.c:459
 msgid "Create an archive with the selected object"
 msgid_plural "Create an archive with the selected objects"
 msgstr[0] "선택한 개체에 대한 압축파일 만들기"
 
-#. TRANSLATORS: This is the label of the Drag'n'Drop "Extract here" action
-#: ../thunar-archive-plugin/tap-provider.c:596
+#. TRANSLATORS: This is the label of the Drag'n'Drop "Extract here" menu item
+#: ../thunar-archive-plugin/tap-provider.c:526
 msgid "_Extract here"
 msgstr "여기에 압축풀기(_E)"
 
-#: ../thunar-archive-plugin/tap-provider.c:603
+#: ../thunar-archive-plugin/tap-provider.c:528
 msgid "Extract the selected archive here"
 msgid_plural "Extract the selected archives here"
 msgstr[0] "선택한 압축 파일을 여기에 풀기\t\t"

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

[Xfce4-commits] [thunar-plugins/thunar-archive-plugin] branch master updated (e5aeedb -> 5dbcd12)

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

transifex pushed a 
change to branch 
master
in repository thunar-plugins/thunar-archive-plugin.

  from  e5aeedb   Remove calls to deprecated gdk_threads_enter/leave
   new  8b223af   I18n: Update translation ko (100%).
   new  b2ce106   I18n: Update translation pl (100%).
   new  5dbcd12   I18n: Update translation ru (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/ko.po | 59 ++-
 po/pl.po | 51 ++-
 po/ru.po | 53 +++--
 3 files changed, 95 insertions(+), 68 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] [thunar-plugins/thunar-archive-plugin] 03/03: I18n: Update translation ru (100%).

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

transifex pushed a 
commit to branch 
master
in repository thunar-plugins/thunar-archive-plugin.

commit 5dbcd12db5b44c58017b3996ba15782acc9e9cf3
Author: Igor 
Date:   Wed Dec 6 18:30:27 2017 +0100

I18n: Update translation ru (100%).

15 translated messages.

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

diff --git a/po/ru.po b/po/ru.po
index c5e0dce..062931b 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -4,14 +4,15 @@
 # 
 # Translators:
 # Andrey Fedoseev , 2006
+# Igor , 2017
 # Sergey Alyoshin , 2016
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-03 20:07+0200\n"
-"PO-Revision-Date: 2017-09-23 19:02+\n"
-"Last-Translator: Sergey Alyoshin \n"
+"POT-Creation-Date: 2017-12-06 06:30+0100\n"
+"PO-Revision-Date: 2017-12-06 15:23+\n"
+"Last-Translator: Igor \n"
 "Language-Team: Russian 
(http://www.transifex.com/xfce/thunar-plugins/language/ru/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -20,40 +21,48 @@ msgstr ""
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || 
(n%100>=11 && n%100<=14)? 2 : 3);\n"
 
 #. prepare the dialog to query the preferred archiver for the user
-#: ../thunar-archive-plugin/tap-backend.c:81
+#: ../thunar-archive-plugin/tap-backend.c:77
 msgid "Select an archive manager"
 msgstr "Укажите менеджер архивов"
 
+#: ../thunar-archive-plugin/tap-backend.c:80
+msgid "_Cancel"
+msgstr "_Отмена"
+
+#: ../thunar-archive-plugin/tap-backend.c:81
+msgid "_OK"
+msgstr "О_к"
+
 #. add the header label
-#: ../thunar-archive-plugin/tap-backend.c:105
+#: ../thunar-archive-plugin/tap-backend.c:99
 msgid ""
 "Please select your preferred archive manager\n"
 "from the list of available applications below:"
 msgstr "Пожалуйста, выберите предпочитаемый менеджер архивов\nиз следующего 
списка доступных приложений:"
 
 #. tell the user that we cannot handle the specified mime types
-#: ../thunar-archive-plugin/tap-backend.c:280
-#: ../thunar-archive-plugin/tap-backend.c:427
+#: ../thunar-archive-plugin/tap-backend.c:276
+#: ../thunar-archive-plugin/tap-backend.c:424
 #, c-format
 msgid "No suitable archive manager found"
 msgstr "Не найдено подходящего менеджера архивов"
 
-#. execute the action
-#: ../thunar-archive-plugin/tap-provider.c:336
-#: ../thunar-archive-plugin/tap-provider.c:375
+#. execute the action associated with the menu item
+#: ../thunar-archive-plugin/tap-provider.c:283
+#: ../thunar-archive-plugin/tap-provider.c:322
 msgid "Failed to extract files"
 msgstr "Не удалось извлечь файлы"
 
-#. execute the action
-#: ../thunar-archive-plugin/tap-provider.c:413
+#. execute the action associated with the menu item
+#: ../thunar-archive-plugin/tap-provider.c:360
 msgid "Failed to create archive"
 msgstr "Не удалось создать архив"
 
-#: ../thunar-archive-plugin/tap-provider.c:468
+#: ../thunar-archive-plugin/tap-provider.c:414
 msgid "Extract _Here"
 msgstr "Извлечь _сюда"
 
-#: ../thunar-archive-plugin/tap-provider.c:475
+#: ../thunar-archive-plugin/tap-provider.c:416
 msgid "Extract the selected archive in the current folder"
 msgid_plural "Extract the selected archives in the current folder"
 msgstr[0] "Извлечь из выбранного архива в текущий каталог"
@@ -61,11 +70,11 @@ msgstr[1] "Извлечь из выбранных архивов в текущи
 msgstr[2] "Извлечь из выбранных архивов в текущий каталог"
 msgstr[3] "Извлечь из выбранных архивов в текущий каталог"
 
-#: ../thunar-archive-plugin/tap-provider.c:492
+#: ../thunar-archive-plugin/tap-provider.c:434
 msgid "_Extract To..."
 msgstr "_Извлечь в..."
 
-#: ../thunar-archive-plugin/tap-provider.c:500
+#: ../thunar-archive-plugin/tap-provider.c:436
 msgid "Extract the selected archive"
 msgid_plural "Extract the selected archives"
 msgstr[0] "Извлечь файлы из выбранного архива"
@@ -73,11 +82,11 @@ msgstr[1] "Извлечь файлы из выбранных архивов"
 msgstr[2] "Извлечь файлы из выбранных архивов"
 msgstr[3] "Извлечь файлы из выбранных архивов"
 
-#: ../thunar-archive-plugin/tap-provider.c:520
+#: ../thunar-archive-plugin/tap-provider.c:457
 msgid "Cr_eate Archive..."
 msgstr "Со_здать архив..."
 
-#: ../thunar-archive-plugin/tap-provider.c:528
+#: ../thunar-archive-plugin/tap-provider.c:459
 msgid "Create an archive with the selected object"
 msgid_plural "Create an archive with the selected objects"
 msgstr[0] "Поместить выбранный объект в архив"
@@ -85,12 +94,12 @@ msgstr[1] "Поместить выбранные объекты в архив"
 msgstr[2] "Поместить выбранные объекты в архив"
 msgstr[3] "Поместить выбранные объекты в архив"
 
-#. TRANSLATORS: This i

[Xfce4-commits] [thunar-plugins/thunar-archive-plugin] 02/03: I18n: Update translation pl (100%).

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

transifex pushed a 
commit to branch 
master
in repository thunar-plugins/thunar-archive-plugin.

commit b2ce106940212a5ae8eded0d4d1c652daa61a83f
Author: Anonymous 
Date:   Wed Dec 6 18:30:27 2017 +0100

I18n: Update translation pl (100%).

15 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/pl.po | 51 ++-
 1 file changed, 30 insertions(+), 21 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index fa5a4e5..bbed2d8 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# No Ne, 2017
 # Piotr Maliński , 2006
 # Piotr Sokół , 2009,2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-03 20:07+0200\n"
-"PO-Revision-Date: 2017-09-23 19:02+\n"
-"Last-Translator: Michał Olber \n"
+"POT-Creation-Date: 2017-12-06 06:30+0100\n"
+"PO-Revision-Date: 2017-12-06 12:33+\n"
+"Last-Translator: No Ne\n"
 "Language-Team: Polish 
(http://www.transifex.com/xfce/thunar-plugins/language/pl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -20,40 +21,48 @@ msgstr ""
 "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && 
(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && 
n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
 
 #. prepare the dialog to query the preferred archiver for the user
-#: ../thunar-archive-plugin/tap-backend.c:81
+#: ../thunar-archive-plugin/tap-backend.c:77
 msgid "Select an archive manager"
 msgstr "Wybór menedżera archiwów"
 
+#: ../thunar-archive-plugin/tap-backend.c:80
+msgid "_Cancel"
+msgstr "_Anuluj"
+
+#: ../thunar-archive-plugin/tap-backend.c:81
+msgid "_OK"
+msgstr "_OK"
+
 #. add the header label
-#: ../thunar-archive-plugin/tap-backend.c:105
+#: ../thunar-archive-plugin/tap-backend.c:99
 msgid ""
 "Please select your preferred archive manager\n"
 "from the list of available applications below:"
 msgstr "Proszę wybrać preferowany program do\ndo zarządzania archiwami:"
 
 #. tell the user that we cannot handle the specified mime types
-#: ../thunar-archive-plugin/tap-backend.c:280
-#: ../thunar-archive-plugin/tap-backend.c:427
+#: ../thunar-archive-plugin/tap-backend.c:276
+#: ../thunar-archive-plugin/tap-backend.c:424
 #, c-format
 msgid "No suitable archive manager found"
 msgstr "Nie odnaleziono odpowiedniego menedżera archiwów"
 
-#. execute the action
-#: ../thunar-archive-plugin/tap-provider.c:336
-#: ../thunar-archive-plugin/tap-provider.c:375
+#. execute the action associated with the menu item
+#: ../thunar-archive-plugin/tap-provider.c:283
+#: ../thunar-archive-plugin/tap-provider.c:322
 msgid "Failed to extract files"
 msgstr "Nie udało się rozpakować plików"
 
-#. execute the action
-#: ../thunar-archive-plugin/tap-provider.c:413
+#. execute the action associated with the menu item
+#: ../thunar-archive-plugin/tap-provider.c:360
 msgid "Failed to create archive"
 msgstr "Nie udało się utworzyć archiwum"
 
-#: ../thunar-archive-plugin/tap-provider.c:468
+#: ../thunar-archive-plugin/tap-provider.c:414
 msgid "Extract _Here"
 msgstr "Rozpakuj _tutaj"
 
-#: ../thunar-archive-plugin/tap-provider.c:475
+#: ../thunar-archive-plugin/tap-provider.c:416
 msgid "Extract the selected archive in the current folder"
 msgid_plural "Extract the selected archives in the current folder"
 msgstr[0] "Rozpakowuje zawartość archiwum do bieżącego katalogu"
@@ -61,11 +70,11 @@ msgstr[1] "Rozpakowuje zawartość archiwów do bieżącego 
katalogu"
 msgstr[2] "Rozpakowuje zawartość archiwów do bieżącego katalogu"
 msgstr[3] "Rozpakowuje zawartość archiwów do bieżącego katalogu"
 
-#: ../thunar-archive-plugin/tap-provider.c:492
+#: ../thunar-archive-plugin/tap-provider.c:434
 msgid "_Extract To..."
 msgstr "_Rozpakuj..."
 
-#: ../thunar-archive-plugin/tap-provider.c:500
+#: ../thunar-archive-plugin/tap-provider.c:436
 msgid "Extract the selected archive"
 msgid_plural "Extract the selected archives"
 msgstr[0] "Rozpakowuje zawartość archiwum do określonego katalogu"
@@ -73,11 +82,11 @@ msgstr[1] "Rozpakowuje zawartość archiwów do określonego 
katalogu"
 msgstr[2] "Rozpakowuje zawartość archiwów do określonego katalogu"
 msgstr[3] "Rozpakowuje zawartość archiwów do określonego katalogu"
 
-#: ../thunar-archive-plugin/tap-provider.c:520
+#: ../thunar-archive-plugin/tap-provider.c:457
 msgid "Cr_eate Archive..."
 msgstr "_Utwórz archiwum..."
 
-#: ../thunar-archive-plugin/tap-provider.c:528
+#: ../thunar-archive-plugin/tap-provider.c:459
 msgid "Create an archive with the selected object"
 msgid_plural "Create an archive with the selected objects"
 msgstr[0] "Tworzy archiwum z zaznaczonego element

[Xfce4-commits] [xfce/thunar] branch master updated (ec112bc -> 04ecc20)

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

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

  from  ec112bc   Fix crash on unavailable file move copy (Bug #14056)
   new  04ecc20   I18n: Update translation he (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/he.po | 560 +++
 1 file changed, 280 insertions(+), 280 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/thunar] 01/01: I18n: Update translation he (100%).

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

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

commit 04ecc20c7dda183ba03bac5f50b0ef868a818bcd
Author: Elishai Eliyahu 
Date:   Thu Dec 7 00:30:26 2017 +0100

I18n: Update translation he (100%).

737 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/he.po | 560 +++
 1 file changed, 280 insertions(+), 280 deletions(-)

diff --git a/po/he.po b/po/he.po
index 4b59e46..5ec2191 100644
--- a/po/he.po
+++ b/po/he.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-10-10 06:30+0200\n"
-"PO-Revision-Date: 2017-10-27 18:23+\n"
+"POT-Creation-Date: 2017-11-26 18:30+0100\n"
+"PO-Revision-Date: 2017-12-06 20:20+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew (http://www.transifex.com/xfce/thunar/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -111,100 +111,100 @@ msgstr "הושג השם '%s' על ה־bus של הודעת הסשן\n"
 msgid "Name '%s' lost on the message dbus, exiting."
 msgstr "שם '%s' אבד ב־dbus של ההודעה, יוצא. "
 
-#: ../thunar/thunar-application.c:465
+#: ../thunar/thunar-application.c:469
 msgid "The Thunar development team. All rights reserved."
 msgstr "קבוצת הפיתוח של Thunar. כל הזכויות שמורות."
 
-#: ../thunar/thunar-application.c:466
+#: ../thunar/thunar-application.c:470
 msgid "Written by Benedikt Meurer ."
 msgstr "נכתב ע\"י Benedikt Meurer ."
 
-#: ../thunar/thunar-application.c:467
+#: ../thunar/thunar-application.c:471
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "אנא דווח באגים ל-<%s>."
 
 #. display an error message to the user
-#: ../thunar/thunar-application.c:735
+#: ../thunar/thunar-application.c:739
 msgid "Failed to launch operation"
 msgstr "נכשל להפעיל תהליך"
 
 #. tell the user that we were unable to launch the file specified
-#: ../thunar/thunar-application.c:1438 ../thunar/thunar-application.c:1570
+#: ../thunar/thunar-application.c:1442 ../thunar/thunar-application.c:1574
 #: ../thunar/thunar-launcher.c:1222 ../thunar/thunar-location-entry.c:356
 #: ../thunar/thunar-location-entry.c:384
-#: ../thunar/thunar-shortcuts-view.c:1660
-#: ../thunar/thunar-shortcuts-view.c:1688 ../thunar/thunar-window.c:2278
+#: ../thunar/thunar-shortcuts-view.c:1653
+#: ../thunar/thunar-shortcuts-view.c:1681 ../thunar/thunar-window.c:2274
 #, c-format
 msgid "Failed to open \"%s\""
 msgstr "נכשל לפתוח את \"%s\""
 
-#: ../thunar/thunar-application.c:1574
+#: ../thunar/thunar-application.c:1578
 #, c-format
 msgid "Failed to open \"%s\": %s"
 msgstr "נכשל לפתוח את \"%s\": %s"
 
 #. display an error message
-#: ../thunar/thunar-application.c:1629
+#: ../thunar/thunar-application.c:1633
 #: ../thunar/thunar-properties-dialog.c:731
-#: ../thunar/thunar-standard-view.c:2787 ../thunar/thunar-tree-view.c:1937
+#: ../thunar/thunar-standard-view.c:2773 ../thunar/thunar-tree-view.c:1930
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "נכשל לשנות שם של \"%s\""
 
-#: ../thunar/thunar-application.c:1731
-#: ../thunar/thunar-location-buttons.c:1331
-#: ../thunar/thunar-standard-view.c:2338 ../thunar/thunar-tree-view.c:1799
+#: ../thunar/thunar-application.c:1735
+#: ../thunar/thunar-location-buttons.c:1339
+#: ../thunar/thunar-standard-view.c:2324 ../thunar/thunar-tree-view.c:1792
 msgid "New Folder"
 msgstr "תיקייה חדשה"
 
-#: ../thunar/thunar-application.c:1732
-#: ../thunar/thunar-location-buttons.c:1332
-#: ../thunar/thunar-standard-view.c:2339 ../thunar/thunar-tree-view.c:1800
+#: ../thunar/thunar-application.c:1736
+#: ../thunar/thunar-location-buttons.c:1340
+#: ../thunar/thunar-standard-view.c:2325 ../thunar/thunar-tree-view.c:1793
 msgid "Create New Folder"
 msgstr "יצירת תיקייה חדשה"
 
-#: ../thunar/thunar-application.c:1736
+#: ../thunar/thunar-application.c:1740
 msgid "New File"
 msgstr "קובץ חדש"
 
-#: ../thunar/thunar-application.c:1737
+#: ../thunar/thunar-application.c:1741
 msgid "Create New File"
 msgstr "צור קובץ חדש"
 
 #. generate a title for the create dialog
-#: ../thunar/thunar-application.c:1794 ../thunar/thunar-standard-view.c:2383
+#: ../thunar/thunar-application.c:1798 ../thunar/thunar-standard-view.c:2369
 #, c-format
 msgid "Create Document from template \"%s\""
 msgstr "יצירת מסמך מתוך תבנית \"%s\""
 
-#: ../thunar/thunar-application.c:1858
+#: ../thunar/thunar-application.c:1862
 msgid "Copying files..."
 msgstr "כעת מעתיק קבצים..."
 
-#: ../thunar/thunar-application.c:1894
+#: ../thunar/thunar-application.c:1898
 #, c-format
 msgid "Copying files to \"%s\"..."
 msgstr "כעת מעתיק קבצים לתוך \"%s\"..."
 
-#: ../thunar/thunar-application.c:1940
+#: ../thunar/thunar-application.c:1944
 #, c-format
 msgid "Creating symbolic links in \"%s\"..."
 msgstr "כעת יוצר 

[Xfce4-commits] [thunar-plugins/thunar-archive-plugin] branch master updated (5dbcd12 -> 3c9af2a)

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

transifex pushed a 
change to branch 
master
in repository thunar-plugins/thunar-archive-plugin.

  from  5dbcd12   I18n: Update translation ru (100%).
   new  3c9af2a   I18n: Update translation he (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/he.po | 51 ++-
 1 file changed, 30 insertions(+), 21 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] [thunar-plugins/thunar-archive-plugin] 01/01: I18n: Update translation he (100%).

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

transifex pushed a 
commit to branch 
master
in repository thunar-plugins/thunar-archive-plugin.

commit 3c9af2af9b9ae0d1a98c2d06dbb5545cd2ad8ce9
Author: Elishai Eliyahu 
Date:   Thu Dec 7 00:30:35 2017 +0100

I18n: Update translation he (100%).

15 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/he.po | 51 ++-
 1 file changed, 30 insertions(+), 21 deletions(-)

diff --git a/po/he.po b/po/he.po
index 5d65729..4bef97b 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,14 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Elishai Eliyahu , 2017
 # GenghisKhan , 2015
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-03 20:07+0200\n"
-"PO-Revision-Date: 2017-09-23 19:02+\n"
-"Last-Translator: GenghisKhan \n"
+"POT-Creation-Date: 2017-12-06 06:30+0100\n"
+"PO-Revision-Date: 2017-12-06 19:56+\n"
+"Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/thunar-plugins/language/he/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,71 +20,79 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. prepare the dialog to query the preferred archiver for the user
-#: ../thunar-archive-plugin/tap-backend.c:81
+#: ../thunar-archive-plugin/tap-backend.c:77
 msgid "Select an archive manager"
 msgstr "בחר מנהל ארכיון"
 
+#: ../thunar-archive-plugin/tap-backend.c:80
+msgid "_Cancel"
+msgstr "_ביטול"
+
+#: ../thunar-archive-plugin/tap-backend.c:81
+msgid "_OK"
+msgstr "_אישור"
+
 #. add the header label
-#: ../thunar-archive-plugin/tap-backend.c:105
+#: ../thunar-archive-plugin/tap-backend.c:99
 msgid ""
 "Please select your preferred archive manager\n"
 "from the list of available applications below:"
 msgstr "אנא בחר מנהל ארכיון המועדף עליך\nמתוך הרשימה של יישומים זמינים להלן:"
 
 #. tell the user that we cannot handle the specified mime types
-#: ../thunar-archive-plugin/tap-backend.c:280
-#: ../thunar-archive-plugin/tap-backend.c:427
+#: ../thunar-archive-plugin/tap-backend.c:276
+#: ../thunar-archive-plugin/tap-backend.c:424
 #, c-format
 msgid "No suitable archive manager found"
 msgstr "לא נמצא מנהל ארכיון מתאים"
 
-#. execute the action
-#: ../thunar-archive-plugin/tap-provider.c:336
-#: ../thunar-archive-plugin/tap-provider.c:375
+#. execute the action associated with the menu item
+#: ../thunar-archive-plugin/tap-provider.c:283
+#: ../thunar-archive-plugin/tap-provider.c:322
 msgid "Failed to extract files"
 msgstr "נכשל לחלץ קבצים"
 
-#. execute the action
-#: ../thunar-archive-plugin/tap-provider.c:413
+#. execute the action associated with the menu item
+#: ../thunar-archive-plugin/tap-provider.c:360
 msgid "Failed to create archive"
 msgstr "נכשל ליצור ארכיון"
 
-#: ../thunar-archive-plugin/tap-provider.c:468
+#: ../thunar-archive-plugin/tap-provider.c:414
 msgid "Extract _Here"
 msgstr "חלץ _כאן"
 
-#: ../thunar-archive-plugin/tap-provider.c:475
+#: ../thunar-archive-plugin/tap-provider.c:416
 msgid "Extract the selected archive in the current folder"
 msgid_plural "Extract the selected archives in the current folder"
 msgstr[0] "חלץ את הארכיון הנבחר בתוך התיקייה הנוכחית"
 msgstr[1] "חלץ את הארכיונים הנבחרים בתוך התיקייה הנוכחית"
 
-#: ../thunar-archive-plugin/tap-provider.c:492
+#: ../thunar-archive-plugin/tap-provider.c:434
 msgid "_Extract To..."
 msgstr "_חלץ לתוך..."
 
-#: ../thunar-archive-plugin/tap-provider.c:500
+#: ../thunar-archive-plugin/tap-provider.c:436
 msgid "Extract the selected archive"
 msgid_plural "Extract the selected archives"
 msgstr[0] "חלץ את הארכיון הנבחר"
 msgstr[1] "חלץ את הארכיונים הנבחרים"
 
-#: ../thunar-archive-plugin/tap-provider.c:520
+#: ../thunar-archive-plugin/tap-provider.c:457
 msgid "Cr_eate Archive..."
 msgstr "צו_ר ארכיון..."
 
-#: ../thunar-archive-plugin/tap-provider.c:528
+#: ../thunar-archive-plugin/tap-provider.c:459
 msgid "Create an archive with the selected object"
 msgid_plural "Create an archive with the selected objects"
 msgstr[0] "צור ארכיון עם האובייקט הנבחר"
 msgstr[1] "צור ארכיון עם האובייקטים הנבחרים"
 
-#. TRANSLATORS: This is the label of the Drag'n'Drop "Extract here" action
-#: ../thunar-archive-plugin/tap-provider.c:596
+#. TRANSLATORS: This is the label of the Drag'n'Drop "Extract here" menu item
+#: ../thunar-archive-plugin/tap-provider.c:526
 msgid "_Extract here"
 msgstr "_חלץ כאן"
 
-#: ../thunar-archive-plugin/tap-provider.c:603
+#: ../thunar-archive-plugin/tap-provider.c:528
 msgid "Extract the selected archive here"
 msgid_plural "Extract the selected archives here"
 msgstr[0] "חלץ את הארכיון הנבחר כאן"

-- 
To stop receiving notification emails li

[Xfce4-commits] [xfce/thunar-volman] 01/01: I18n: Update translation en_GB (100%).

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

transifex pushed a 
commit to branch 
master
in repository xfce/thunar-volman.

commit 3a8814044e1a1a544f0842a41604506e92468b0b
Author: Andi Chandler 
Date:   Thu Dec 7 00:30:55 2017 +0100

I18n: Update translation en_GB (100%).

116 translated messages.

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

diff --git a/po/en_GB.po b/po/en_GB.po
index 796d0f1..8074f9b 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Andi Chandler , 2017
 # Jackson Doak , 2013
 # Jeff Bailes , 2007
 msgid ""
@@ -10,8 +11,8 @@ msgstr ""
 "Project-Id-Version: Thunar-volman\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-09-09 18:30+0200\n"
-"PO-Revision-Date: 2017-09-19 18:02+\n"
-"Last-Translator: Xfce Bot \n"
+"PO-Revision-Date: 2017-12-06 19:11+\n"
+"Last-Translator: Andi Chandler \n"
 "Language-Team: English (United Kingdom) 
(http://www.transifex.com/xfce/thunar-volman/language/en_GB/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -21,7 +22,7 @@ msgstr ""
 
 #: ../thunar-volman/main.c:59
 msgid "The sysfs path of the newly added device"
-msgstr ""
+msgstr "The sysfs path of the newly added device"
 
 #: ../thunar-volman/main.c:60
 #: ../thunar-volman-settings/thunar-volman-settings.desktop.in.in.h:2
@@ -321,11 +322,11 @@ msgstr "Unsupported USB device type \"%s\""
 
 #: ../thunar-volman-settings/main.c:44
 msgid "Settings manager socket"
-msgstr ""
+msgstr "Settings manager socket"
 
 #: ../thunar-volman-settings/main.c:44
 msgid "SOCKET ID"
-msgstr ""
+msgstr "SOCKET ID"
 
 #. setup application name
 #: ../thunar-volman-settings/main.c:60
@@ -367,11 +368,11 @@ msgstr "Shell Scripts"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:110
 msgid "Help"
-msgstr ""
+msgstr "Help"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:116
 msgid "Close"
-msgstr ""
+msgstr "Close"
 
 #. Storage
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:128

-- 
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/thunar] branch xfce-4.12 updated (dfcb3d7 -> 7512ab3)

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

transifex pushed a 
change to branch 
xfce-4.12
in repository xfce/thunar.

  from  dfcb3d7   Fix crash on unavailable file move copy (Bug #14056)
   new  7512ab3   I18n: Update translation en_GB (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/en_GB.po | 27 ---
 1 file changed, 16 insertions(+), 11 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/xfce4-panel] branch master updated (776fc7a -> 835e1e3)

2017-12-06 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-panel.

  from  776fc7a   I18n: Update translation th (100%).
   new  835e1e3   I18n: Update translation en_GB (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/en_GB.po | 196 +---
 1 file changed, 107 insertions(+), 89 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/thunar-volman] branch master updated (c5d62bf -> 3a88140)

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

transifex pushed a 
change to branch 
master
in repository xfce/thunar-volman.

  from  c5d62bf   I18n: Update translation th (100%).
   new  3a88140   I18n: Update translation en_GB (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/en_GB.po | 15 ---
 1 file changed, 8 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/thunar] 01/01: I18n: Update translation en_GB (100%).

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

transifex pushed a 
commit to branch 
xfce-4.12
in repository xfce/thunar.

commit 7512ab36e3dfb2b4c0a2519ba461816f9302f325
Author: Andi Chandler 
Date:   Thu Dec 7 00:31:15 2017 +0100

I18n: Update translation en_GB (100%).

739 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/en_GB.po | 27 ---
 1 file changed, 16 insertions(+), 11 deletions(-)

diff --git a/po/en_GB.po b/po/en_GB.po
index 6a18429..9ae7890 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-04 23:34+0200\n"
+"POT-Creation-Date: 2017-10-10 06:30+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Xfce Bot , 2017\n"
+"Last-Translator: Andi Chandler , 2017\n"
 "Language-Team: English (United Kingdom) 
(https://www.transifex.com/xfce/teams/16840/en_GB/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -819,48 +819,53 @@ msgstr "File Name"
 msgid "File System"
 msgstr "File System"
 
-#: ../thunar/thunar-file.c:1513
+#: ../thunar/thunar-file.c:1075 ../thunar/thunar-gio-extensions.c:242
+#: ../thunar/thunar-shortcuts-model.c:1039
+msgid "Trash"
+msgstr "Rubbish Bin"
+
+#: ../thunar/thunar-file.c:1515
 #, c-format
 msgid "The root folder has no parent"
 msgstr "The root folder has no parent"
 
-#: ../thunar/thunar-file.c:1601 ../thunar/thunar-file.c:1897
+#: ../thunar/thunar-file.c:1603 ../thunar/thunar-file.c:1899
 #, c-format
 msgid "Failed to parse the desktop file: %s"
 msgstr "Failed to parse the desktop file: %s"
 
 #. if the .desktop file is not secure, ask user what to do
-#: ../thunar/thunar-file.c:1613
+#: ../thunar/thunar-file.c:1615
 msgid "Untrusted application launcher"
 msgstr "Untrusted application launcher"
 
-#: ../thunar/thunar-file.c:1638
+#: ../thunar/thunar-file.c:1640
 #, c-format
 msgid "No Exec field specified"
 msgstr "No Exec field specified"
 
 #. if the .desktop file is not secure, ask user what to do
-#: ../thunar/thunar-file.c:1647
+#: ../thunar/thunar-file.c:1649
 msgid "Untrusted link launcher"
 msgstr "Untrusted link launcher"
 
-#: ../thunar/thunar-file.c:1663
+#: ../thunar/thunar-file.c:1665
 #, c-format
 msgid "No URL field specified"
 msgstr "No URL field specified"
 
-#: ../thunar/thunar-file.c:1668
+#: ../thunar/thunar-file.c:1670
 msgid "Invalid desktop file"
 msgstr "Invalid desktop file"
 
 #. TRANSLATORS: this will result in " on "
-#: ../thunar/thunar-gio-extensions.c:322
+#: ../thunar/thunar-gio-extensions.c:327
 #, c-format
 msgid "%s on %s"
 msgstr "%s on %s"
 
 #. free disk space string
-#: ../thunar/thunar-gio-extensions.c:433
+#: ../thunar/thunar-gio-extensions.c:438
 #, c-format
 msgid "%s of %s free (%d%% used)"
 msgstr "%s of %s free (%d%% used)"

-- 
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-panel] branch xfce-4.12 updated (d38f281 -> 2673061)

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

transifex pushed a 
change to branch 
xfce-4.12
in repository xfce/xfce4-panel.

  from  d38f281   I18n: Update translation th (100%).
   new  2673061   I18n: Update translation en_GB (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/en_GB.po | 46 +-
 1 file changed, 25 insertions(+), 21 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/xfce4-panel] 01/01: I18n: Update translation en_GB (100%).

2017-12-06 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-panel.

commit 835e1e3bdff9f8afa846c93f6a812af21d83f45a
Author: Andi Chandler 
Date:   Thu Dec 7 00:31:37 2017 +0100

I18n: Update translation en_GB (100%).

412 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/en_GB.po | 196 +---
 1 file changed, 107 insertions(+), 89 deletions(-)

diff --git a/po/en_GB.po b/po/en_GB.po
index 6987366..2ff73ca 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Andi Chandler , 2017
 # Jackson Doak , 2013-2014
 # Jeff Bailes , 2009
 # Robert Readman , 2013
@@ -12,9 +13,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-13 00:30+0200\n"
-"PO-Revision-Date: 2017-09-19 18:01+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2017-11-15 18:31+0100\n"
+"PO-Revision-Date: 2017-12-06 19:14+\n"
+"Last-Translator: Andi Chandler \n"
 "Language-Team: English (United Kingdom) 
(http://www.transifex.com/xfce/xfce4-panel/language/en_GB/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -44,37 +45,37 @@ msgstr "Customise the panel"
 
 #. I18N: %s is the name of the plugin
 #: ../libxfce4panel/xfce-panel-plugin.c:1042
-#: ../panel/panel-preferences-dialog.c:1201
+#: ../panel/panel-preferences-dialog.c:1202
 #, c-format
 msgid "Are you sure that you want to remove \"%s\"?"
 msgstr "Are you sure that you want to remove \"%s\"?"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1047
-#: ../panel/panel-preferences-dialog.c:1204
+#: ../panel/panel-preferences-dialog.c:1205
 msgid "If you remove the item from the panel, it is permanently lost."
 msgstr "If you remove the item from the panel, it is permanently lost."
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1048 ../panel/panel-dialogs.c:127
-#: ../panel/panel-preferences-dialog.c:1206
+#: ../panel/panel-preferences-dialog.c:1207
 #: ../plugins/applicationsmenu/applicationsmenu.c:538
 #: ../plugins/directorymenu/directorymenu.c:394
 msgid "Cancel"
-msgstr ""
+msgstr "Cancel"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1049
 #: ../panel/panel-plugin-external.c:436
-#: ../panel/panel-preferences-dialog.c:929
-#: ../panel/panel-preferences-dialog.c:1207
+#: ../panel/panel-preferences-dialog.c:930
+#: ../panel/panel-preferences-dialog.c:1208
 msgid "Remove"
-msgstr ""
+msgstr "Remove"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1190
 msgid "_Properties"
-msgstr ""
+msgstr "_Properties"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1205
 msgid "_About"
-msgstr ""
+msgstr "_About"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1220
 msgid "_Move"
@@ -82,7 +83,7 @@ msgstr "_Move"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1244
 msgid "_Remove"
-msgstr ""
+msgstr "_Remove"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1265
 msgid "Pane_l"
@@ -102,11 +103,11 @@ msgstr "Log _Out"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1330
 msgid "_Help"
-msgstr ""
+msgstr "_Help"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1345
 msgid "About"
-msgstr ""
+msgstr "About"
 
 #: ../panel/main.c:81
 msgid "Show the 'Panel Preferences' dialog"
@@ -154,7 +155,7 @@ msgstr "Print version information and exit"
 #: ../panel/main.c:207
 #, c-format
 msgid "Name %s lost on the message dbus, exiting."
-msgstr ""
+msgstr "Name %s lost on the message dbus, exiting."
 
 #. parse context options
 #: ../panel/main.c:258
@@ -180,49 +181,49 @@ msgid "There is already a running instance"
 msgstr "There is already a running instance"
 
 #. spawn ourselfs again
-#: ../panel/main.c:398
+#: ../panel/main.c:394
 msgid "Restarting..."
 msgstr "Restarting..."
 
-#: ../panel/main.c:413
+#: ../panel/main.c:409
 msgid "Failed to show the preferences dialog"
 msgstr "Failed to show the preferences dialogue"
 
-#: ../panel/main.c:415
+#: ../panel/main.c:411
 msgid "Failed to show the add new items dialog"
 msgstr "Failed to show the add new items dialogue"
 
-#: ../panel/main.c:417
+#: ../panel/main.c:413
 msgid "Failed to save the panel configuration"
 msgstr "Failed to save the panel configuration"
 
-#: ../panel/main.c:419
+#: ../panel/main.c:415
 msgid "Failed to add a plugin to the panel"
 msgstr "Failed to add a plug-in to the panel"
 
-#: ../panel/main.c:421
+#: ../panel/main.c:417
 msgid "Failed to restart the panel"
 msgstr "Failed to restart the panel"
 
-#: ../panel/main.c:423
+#: ../panel/main.c:419
 msgid "Failed to quit the panel"
 msgstr "Failed to quit the panel"
 
-#: ../panel/main.c:425
+#: ../panel/main.c:421
 msgid "Failed to send D-Bus message"
 msgstr "Failed to send D-Bus message"
 
-#: ../panel/main.c:435 ../panel/panel

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

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

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

commit 3359aca72244239cda4c070bb365e223ddc7cffb
Author: Elishai Eliyahu 
Date:   Thu Dec 7 00:32:35 2017 +0100

I18n: Update translation he (100%).

306 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/he.po | 32 +++-
 1 file changed, 27 insertions(+), 5 deletions(-)

diff --git a/po/he.po b/po/he.po
index 0a99223..0a7 100644
--- a/po/he.po
+++ b/po/he.po
@@ -4,7 +4,7 @@
 # 
 # Translators:
 # Dotan Kamber , 2006
-# Elishai Eliyahu , 2016
+# Elishai Eliyahu , 2016-2017
 # GenghisKhan , 2016
 # koby vurgaft , 2013
 # Yuval Tanny , 2006-2007
@@ -12,9 +12,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-20 06:30+0200\n"
-"PO-Revision-Date: 2017-09-23 19:02+\n"
-"Last-Translator: GenghisKhan \n"
+"POT-Creation-Date: 2017-11-21 00:31+0100\n"
+"PO-Revision-Date: 2017-12-06 20:17+\n"
+"Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-apps/language/he/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -630,6 +630,16 @@ msgstr "ברירת מחדל"
 msgid "Max"
 msgstr "Max"
 
+#: ../xfburn/xfburn-device-box.c:507
+msgid "A full, but erasable disc is in the drive"
+msgstr "דיסק מלא, אבל ניתן למחיקה נמצא בכונן"
+
+#: ../xfburn/xfburn-device-box.c:508
+msgid ""
+"Do you want to blank the disc, so that it can be used for the upcoming burn "
+"process?"
+msgstr "האם אתה רוצה למחוק את הדיסק, כך שיהיה ניתן לשימוש בתהליך הצריבה הבא?"
+
 #: ../xfburn/xfburn-device-box.c:579
 msgid "Drive can't burn on the inserted disc"
 msgstr "הכונן לא מסוגל לצרוב על התקליטור שהוכנס"
@@ -1399,9 +1409,21 @@ msgid "Data Composition"
 msgstr "יצירת מידע"
 
 #: ../xfburn.desktop.in.h:2
+msgid "Disk Burning"
+msgstr "צריבת דיסק"
+
+#: ../xfburn.desktop.in.h:3
 msgid "CD and DVD burning application"
 msgstr "יישום צריבת CD וגם DVD"
 
-#: ../xfburn.desktop.in.h:3
+#: ../xfburn.desktop.in.h:4
 msgid "Burn Image (xfburn)"
 msgstr "צרוב דמות (xfburn)"
+
+#: ../xfburn.appdata.xml.in.h:1
+msgid ""
+"Xfburn is a simple CD/DVD burning tool based on libburnia libraries. It can "
+"blank CD/DVD(-RW)s, burn and create iso images, audio CDs, as well as burn "
+"personal compositions of data to either CD or DVD. It is stable and under "
+"ongoing development."
+msgstr "Xfburn הוא כלי צריבת CD/DVD פשוט המבוסס על ספריות libburnia. הוא יכול 
למחוק CD/DVD(-RW), לצרוב וליצור תמונות איזו, דיסקי אודיו, וגם לצרוב אוספי מידע 
אישיים ל-CD או DVD. הוא יציב ותחת פיתוח מתמשך. "

-- 
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 (2443cd1 -> b564366)

2017-12-06 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  2443cd1   I18n: Update translation th (100%).
   new  b564366   I18n: Update translation he (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/he.po | 48 +---
 1 file changed, 25 insertions(+), 23 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/xfburn] branch master updated (0b594ac -> 3359aca)

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

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

  from  0b594ac   I18n: Update translation th (99%).
   new  3359aca   I18n: Update translation he (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/he.po | 32 +++-
 1 file changed, 27 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


[Xfce4-commits] [xfce/xfce4-panel] 01/01: I18n: Update translation en_GB (100%).

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

transifex pushed a 
commit to branch 
xfce-4.12
in repository xfce/xfce4-panel.

commit 2673061c09ed7d216ce95ef301876b9f6f7b9d82
Author: Andi Chandler 
Date:   Thu Dec 7 00:31:54 2017 +0100

I18n: Update translation en_GB (100%).

396 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/en_GB.po | 46 +-
 1 file changed, 25 insertions(+), 21 deletions(-)

diff --git a/po/en_GB.po b/po/en_GB.po
index 42eb967..0873259 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-09 18:31+0200\n"
+"POT-Creation-Date: 2017-10-10 00:31+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Xfce Bot , 2017\n"
+"Last-Translator: Andi Chandler , 2017\n"
 "Language-Team: English (United Kingdom) 
(https://www.transifex.com/xfce/teams/16840/en_GB/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,7 +31,7 @@ msgstr ""
 "file"
 
 #: ../panel-preferences.desktop.in.h:1
-#: ../panel/panel-preferences-dialog.glade.h:10 ../panel/panel-window.c:2615
+#: ../panel/panel-preferences-dialog.glade.h:10 ../panel/panel-window.c:2623
 #: ../migrate/main.c:117
 msgid "Panel"
 msgstr "Panel"
@@ -42,13 +42,13 @@ msgstr "Customise the panel"
 
 #. I18N: %s is the name of the plugin
 #: ../libxfce4panel/xfce-panel-plugin.c:1032
-#: ../panel/panel-preferences-dialog.c:1190
+#: ../panel/panel-preferences-dialog.c:1199
 #, c-format
 msgid "Are you sure that you want to remove \"%s\"?"
 msgstr "Are you sure that you want to remove \"%s\"?"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1037
-#: ../panel/panel-preferences-dialog.c:1193
+#: ../panel/panel-preferences-dialog.c:1202
 msgid "If you remove the item from the panel, it is permanently lost."
 msgstr "If you remove the item from the panel, it is permanently lost."
 
@@ -62,17 +62,17 @@ msgid "Pane_l"
 msgstr "Pane_l"
 
 #. add new items
-#: ../libxfce4panel/xfce-panel-plugin.c:1239 ../panel/panel-window.c:2627
+#: ../libxfce4panel/xfce-panel-plugin.c:1239 ../panel/panel-window.c:2635
 msgid "Add _New Items..."
 msgstr "Add _New Items..."
 
 #. customize panel
-#: ../libxfce4panel/xfce-panel-plugin.c:1250 ../panel/panel-window.c:2638
+#: ../libxfce4panel/xfce-panel-plugin.c:1250 ../panel/panel-window.c:2646
 msgid "Panel Pr_eferences..."
 msgstr "Panel Pr_eferences..."
 
 #. logout item
-#: ../libxfce4panel/xfce-panel-plugin.c:1267 ../panel/panel-window.c:2666
+#: ../libxfce4panel/xfce-panel-plugin.c:1267 ../panel/panel-window.c:2674
 msgid "Log _Out"
 msgstr "Log _Out"
 
@@ -272,7 +272,7 @@ msgstr "Add New Item"
 msgid "Please choose a panel for the new plugin:"
 msgstr "Please choose a panel for the new plug-in:"
 
-#: ../panel/panel-dialogs.c:192 ../panel/panel-preferences-dialog.c:853
+#: ../panel/panel-dialogs.c:192 ../panel/panel-preferences-dialog.c:862
 #, c-format
 msgid "Panel %d"
 msgstr "Panel %d"
@@ -326,37 +326,41 @@ msgstr ""
 msgid "Automatic"
 msgstr "Automatic"
 
+#: ../panel/panel-preferences-dialog.c:500
+msgid "Primary"
+msgstr "Primary"
+
 #. I18N: screen name in the output selector
-#: ../panel/panel-preferences-dialog.c:511
+#: ../panel/panel-preferences-dialog.c:520
 #, c-format
 msgid "Screen %d"
 msgstr "Screen %d"
 
 #. I18N: monitor name in the output selector
-#: ../panel/panel-preferences-dialog.c:537
+#: ../panel/panel-preferences-dialog.c:546
 #, c-format
 msgid "Monitor %d"
 msgstr "Monitor %d"
 
-#: ../panel/panel-preferences-dialog.c:919
+#: ../panel/panel-preferences-dialog.c:928
 msgid "The panel and plugin configurations will be permanently removed"
 msgstr "The panel and plug-in configurations will be permanently removed"
 
-#: ../panel/panel-preferences-dialog.c:920
+#: ../panel/panel-preferences-dialog.c:929
 #, c-format
 msgid "Are you sure you want to remove panel %d?"
 msgstr "Are you sure you want to remove panel %d?"
 
 #. I18N: append (external) in the preferences dialog if the plugin
 #. * runs external
-#: ../panel/panel-preferences-dialog.c:1032
+#: ../panel/panel-preferences-dialog.c:1041
 #, c-format
 msgid "%s (external)"
 msgstr "%s (external)"
 
 #. I18N: tooltip in preferences dialog when hovering an item in the list
 #. * for external plugins
-#: ../panel/panel-preferences-dialog.c:1037
+#: ../panel/panel-preferences-dialog.c:1046
 #, c-format
 msgid ""
 "Internal name: %s-%d\n"
@@ -367,7 +371,7 @@ msgstr ""
 
 #. I18N: tooltip in preferences dialog when hovering an item in the list
 #. * for internal plugins
-#: ../panel/panel-preferences-dialog.c:1049
+#: ../panel/panel-preferences-dialog.c:1058
 #, c-format
 msgid "Internal name: %s-%d"
 msgstr "Internal name: %s-%d"
@@ -391,7 

[Xfce4-commits] [apps/xfce4-notifyd] 01/01: I18n: Update translation he (100%).

2017-12-06 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 b564366567353ed2352e9073fccdb6caacc273a4
Author: Elishai Eliyahu 
Date:   Thu Dec 7 00:32:48 2017 +0100

I18n: Update translation he (100%).

70 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/he.po | 48 +---
 1 file changed, 25 insertions(+), 23 deletions(-)

diff --git a/po/he.po b/po/he.po
index b991dc3..393bdc8 100644
--- a/po/he.po
+++ b/po/he.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-10-28 00:32+0200\n"
-"PO-Revision-Date: 2017-11-03 08:56+\n"
+"POT-Creation-Date: 2017-12-01 06:31+0100\n"
+"PO-Revision-Date: 2017-12-06 20:01+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-apps/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Language: he\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../panel-plugin/notification-plugin.c:204
+#: ../panel-plugin/notification-plugin.c:215
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:12
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.desktop.in.h:1
 msgid "Notifications"
@@ -53,17 +53,19 @@ msgstr "זהו תוסף ההודעות"
 msgid "Copyright © 2017 Simon Steinbeiß\n"
 msgstr "זכויות יוצרים © 2017 Simon Steinbeiß\n"
 
-#. checkmenuitem for the do not disturb mode of xfce4-notifyd
-#: ../panel-plugin/notification-plugin-log.c:243
-msgid "_Do not disturb"
-msgstr "_לא להפריע"
+#: ../panel-plugin/notification-plugin-log.c:121
+msgid "_Do not disturb"
+msgstr "_נא לא להפריע"
 
-#. checkmenuitem for the do not disturb mode of xfce4-notifyd
-#: ../panel-plugin/notification-plugin-log.c:260
+#: ../panel-plugin/notification-plugin-log.c:282
+msgid "No notifications"
+msgstr "בלי הודעות"
+
+#: ../panel-plugin/notification-plugin-log.c:301
 msgid "_Clear log"
 msgstr "_נקה יומן רישום"
 
-#: ../panel-plugin/notification-plugin-log.c:266
+#: ../panel-plugin/notification-plugin-log.c:309
 msgid "_Notification settings…"
 msgstr "_הגדרות הודעה..."
 
@@ -114,59 +116,59 @@ msgstr "Notification preview failed"
 msgid "Settings daemon is unavailable"
 msgstr "Settings daemon is unavailable"
 
-#: ../xfce4-notifyd-config/main.c:932
+#: ../xfce4-notifyd-config/main.c:934
 msgid ""
 "Empty log\n"
 "No notifications have been logged yet."
 msgstr "יומן ריק\nלא נרשמו ביומן עדיין הודעות."
 
-#: ../xfce4-notifyd-config/main.c:939
+#: ../xfce4-notifyd-config/main.c:941
 msgid "Refresh"
 msgstr "רענן"
 
-#: ../xfce4-notifyd-config/main.c:940
+#: ../xfce4-notifyd-config/main.c:942
 msgid "Refresh the notification log"
 msgstr "רענן את יומן ההודעות"
 
-#: ../xfce4-notifyd-config/main.c:945
+#: ../xfce4-notifyd-config/main.c:947
 msgid "Open"
 msgstr "פתח"
 
-#: ../xfce4-notifyd-config/main.c:946
+#: ../xfce4-notifyd-config/main.c:948
 msgid "Open the notification log in an external editor"
 msgstr "פתח את יומן ההודעות בעורך חיצוני"
 
-#: ../xfce4-notifyd-config/main.c:951
+#: ../xfce4-notifyd-config/main.c:953
 msgid "Clear"
 msgstr "נקה"
 
-#: ../xfce4-notifyd-config/main.c:952
+#: ../xfce4-notifyd-config/main.c:954
 msgid "Clear the notification log"
 msgstr "נקה את יומן ההודעות"
 
-#: ../xfce4-notifyd-config/main.c:974
+#: ../xfce4-notifyd-config/main.c:976
 msgid "Display version information"
 msgstr "Display version information"
 
-#: ../xfce4-notifyd-config/main.c:975
+#: ../xfce4-notifyd-config/main.c:977
 msgid "Settings manager socket"
 msgstr "Settings manager socket"
 
-#: ../xfce4-notifyd-config/main.c:975
+#: ../xfce4-notifyd-config/main.c:977
 msgid "SOCKET_ID"
 msgstr "SOCKET_ID"
 
-#: ../xfce4-notifyd-config/main.c:985
+#: ../xfce4-notifyd-config/main.c:987
 #, c-format
 msgid "Type '%s --help' for usage."
 msgstr "Type '%s --help' for usage."
 
-#: ../xfce4-notifyd-config/main.c:1000
+#: ../xfce4-notifyd-config/main.c:1002
 #, c-format
 msgid "Released under the terms of the GNU General Public License, version 2\n"
 msgstr "משוחרר תחת התנאים של הרישיון הציבורי הכללי של GNU, גרסה 2\n"
 
-#: ../xfce4-notifyd-config/main.c:1001
+#: ../xfce4-notifyd-config/main.c:1003
 #, c-format
 msgid "Please report bugs to %s.\n"
 msgstr "נא לדווח על בעיות אל %s.\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-pulseaudio-plugin] branch master updated (f589342 -> 604072c)

2017-12-06 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-pulseaudio-plugin.

  from  f589342   I18n: Update translation da (100%).
   new  604072c   I18n: Update translation he (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/he.po | 56 +++-
 1 file changed, 31 insertions(+), 25 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-verve-plugin] branch master updated (9319cbf -> e340b3d)

2017-12-06 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-verve-plugin.

  from  9319cbf   I18n: Update translation es (100%).
   new  e340b3d   I18n: Update translation he (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/he.po | 61 ++---
 1 file changed, 38 insertions(+), 23 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] 01/01: I18n: Update translation he (100%).

2017-12-06 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-pulseaudio-plugin.

commit 604072c8e3d21195c9d8a1a8543ee79e07003b3e
Author: Elishai Eliyahu 
Date:   Thu Dec 7 00:33:34 2017 +0100

I18n: Update translation he (100%).

29 translated messages.

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

diff --git a/po/he.po b/po/he.po
index 6b2ce49..98131cc 100644
--- a/po/he.po
+++ b/po/he.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-24 00:46+0200\n"
-"PO-Revision-Date: 2017-09-27 14:55+\n"
+"POT-Creation-Date: 2017-12-03 06:33+0100\n"
+"PO-Revision-Date: 2017-12-06 20:06+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -24,7 +24,7 @@ msgid "PulseAudio Plugin"
 msgstr "תוסף PulseAudio"
 
 #: ../panel-plugin/pulseaudio.desktop.in.in.h:2
-#: ../panel-plugin/pulseaudio-plugin.c:226
+#: ../panel-plugin/pulseaudio-plugin.c:242
 msgid "Adjust the audio volume of the PulseAudio sound system"
 msgstr "התאם עצמת קול אודיו של מערכת צליל PulseAudio"
 
@@ -78,15 +78,23 @@ msgid "Control playback of media players"
 msgstr "שלוט על פלייבק של נגני מדיה"
 
 #: ../panel-plugin/pulseaudio-dialog.glade.h:12
+msgid "Enable multimedia keys for playback control"
+msgstr "אפשר מקשי מולטימדיה עבור בקרת ניגון"
+
+#: ../panel-plugin/pulseaudio-dialog.glade.h:13
+msgid "Enable experimental window focus support"
+msgstr "אפשר תמיכת פוקוס חלון ניסיונית"
+
+#: ../panel-plugin/pulseaudio-dialog.glade.h:14
 msgid "Media Players"
 msgstr "נגני מדיה"
 
-#: ../panel-plugin/pulseaudio-plugin.c:228
+#: ../panel-plugin/pulseaudio-plugin.c:244
 msgid "Copyright © 2014-2017 Andrzej Radecki et al.\n"
 msgstr "זכויות יוצרים © 2014-2017 Andrzej Radecki et al.\n"
 
-#: ../panel-plugin/pulseaudio-dialog.c:135
-#: ../panel-plugin/pulseaudio-menu.c:258
+#: ../panel-plugin/pulseaudio-dialog.c:136
+#: ../panel-plugin/pulseaudio-menu.c:264
 #, c-format
 msgid ""
 "Failed to execute command \"%s\".\n"
@@ -94,57 +102,55 @@ msgid ""
 "%s"
 msgstr "נכשל להריץ פקודה \"%s\".\n\n%s"
 
-#: ../panel-plugin/pulseaudio-dialog.c:138
-#: ../panel-plugin/pulseaudio-menu.c:261
+#: ../panel-plugin/pulseaudio-dialog.c:139
+#: ../panel-plugin/pulseaudio-menu.c:267
 msgid "Error"
 msgstr "שגיאה"
 
-#: ../panel-plugin/pulseaudio-button.c:309
-#: ../panel-plugin/pulseaudio-notify.c:196
+#: ../panel-plugin/pulseaudio-button.c:313
+#: ../panel-plugin/pulseaudio-notify.c:199
 #, c-format
 msgid "Not connected to the PulseAudio server"
 msgstr "לא מחובר לשרת PulseAudio"
 
-#: ../panel-plugin/pulseaudio-button.c:311
+#: ../panel-plugin/pulseaudio-button.c:315
 #, c-format
 msgid "Volume %d%% (muted)"
 msgstr "עצמת קול %d%% (מושתקת)"
 
-#: ../panel-plugin/pulseaudio-button.c:313
+#: ../panel-plugin/pulseaudio-button.c:317
 #, c-format
 msgid "Volume %d%%"
 msgstr "עצמת קול %d%%"
 
-#: ../panel-plugin/pulseaudio-menu.c:446
+#: ../panel-plugin/pulseaudio-menu.c:501
 msgid "Output"
 msgstr "פלט"
 
-#: ../panel-plugin/pulseaudio-menu.c:480
+#: ../panel-plugin/pulseaudio-menu.c:540
 msgid "Input"
 msgstr "קלט"
 
+#: ../panel-plugin/pulseaudio-menu.c:624
+msgid "Choose Playlist"
+msgstr "בחר רשימת ניגון"
+
 #. Audio mixers
-#: ../panel-plugin/pulseaudio-menu.c:579
+#: ../panel-plugin/pulseaudio-menu.c:659
 msgid "_Audio mixer..."
 msgstr "_מערבל אודיו..."
 
-#: ../panel-plugin/pulseaudio-notify.c:198
+#: ../panel-plugin/pulseaudio-notify.c:201
 #, c-format
 msgid "Volume %d%c (muted)"
 msgstr "עצמת קול %d%c (מושתקת)"
 
-#: ../panel-plugin/pulseaudio-notify.c:200
+#: ../panel-plugin/pulseaudio-notify.c:203
 #, c-format
 msgid "Volume %d%c"
 msgstr "עצמת קול %d%c"
 
-#. TRANSLATORS: {Input/Output} ({Device Name})
-#: ../panel-plugin/devicemenuitem.c:164
-#, c-format
-msgid "%s (%s)"
-msgstr "%s (%s)"
-
-#: ../panel-plugin/mprismenuitem.c:357 ../panel-plugin/mprismenuitem.c:430
-#: ../panel-plugin/mprismenuitem.c:795
+#: ../panel-plugin/mprismenuitem.c:383 ../panel-plugin/mprismenuitem.c:456
+#: ../panel-plugin/mprismenuitem.c:866
 msgid "Not currently playing"
 msgstr "לא מנגן כרגע"

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

2017-12-06 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-verve-plugin.

commit e340b3d2737a124f2192d4999de0900a574db9ed
Author: Elishai Eliyahu 
Date:   Thu Dec 7 00:33:57 2017 +0100

I18n: Update translation he (100%).

28 translated messages.

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

diff --git a/po/he.po b/po/he.po
index a8dfcd0..67dc410 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Elishai Eliyahu , 2016
+# Elishai Eliyahu , 2016-2017
 # GenghisKhan , 2015
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-04-17 06:31+0200\n"
-"PO-Revision-Date: 2017-09-23 19:03+\n"
+"POT-Creation-Date: 2017-11-23 00:32+0100\n"
+"PO-Revision-Date: 2017-12-06 20:00+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -25,99 +25,114 @@ msgid "Could not execute command (exit status %d)"
 msgstr "לא יכול לבצע פקודה (סטטוס יציאה %d) "
 
 #. Generate error message
-#: ../panel-plugin/verve-plugin.c:409
+#: ../panel-plugin/verve-plugin.c:434
 msgid "Could not execute command:"
 msgstr "לא היתה אפשרות לבצע פקודה:"
 
 #. Create properties dialog
-#: ../panel-plugin/verve-plugin.c:1031
+#: ../panel-plugin/verve-plugin.c:1153
 msgid "Verve"
 msgstr "Verve"
 
-#: ../panel-plugin/verve-plugin.c:1054
+#: ../panel-plugin/verve-plugin.c:1176
 msgid "General"
 msgstr "כללי"
 
 #. Frame for appearance settings
-#: ../panel-plugin/verve-plugin.c:1059
+#: ../panel-plugin/verve-plugin.c:1181
 msgid "Appearance"
 msgstr "הופעה"
 
 #. Plugin size label
-#: ../panel-plugin/verve-plugin.c:1075
+#: ../panel-plugin/verve-plugin.c:1197
 msgid "Width (in chars):"
 msgstr "רוחב (בתווים):"
 
 #. Plugin label label
-#: ../panel-plugin/verve-plugin.c:1100
+#: ../panel-plugin/verve-plugin.c:1222
 msgid "Label:"
 msgstr "תווית:"
 
+#. Frame for color settings
+#: ../panel-plugin/verve-plugin.c:1239
+msgid "Colors"
+msgstr "צבעים"
+
+#. Plugin background color label
+#: ../panel-plugin/verve-plugin.c:1255
+msgid "Background color:"
+msgstr "צבע רקע אחורי:"
+
+#. Plugin foreground color label
+#: ../panel-plugin/verve-plugin.c:1279
+msgid "Foreground color:"
+msgstr "צבע רקע קידמי:"
+
 #. Frame for behaviour settings
-#: ../panel-plugin/verve-plugin.c:1117
+#: ../panel-plugin/verve-plugin.c:1298
 msgid "History"
 msgstr "היסטוריה"
 
 #. History length label
-#: ../panel-plugin/verve-plugin.c:1133
+#: ../panel-plugin/verve-plugin.c:1314
 msgid "Number of saved history items:"
 msgstr "מספר של פריטי היסטוריה שמורים:"
 
 #. Second tab
-#: ../panel-plugin/verve-plugin.c:1153 ../panel-plugin/verve-plugin.c:1157
+#: ../panel-plugin/verve-plugin.c:1334 ../panel-plugin/verve-plugin.c:1338
 msgid "Behaviour"
 msgstr "התנהגות"
 
 #. Pattern types frame label
-#: ../panel-plugin/verve-plugin.c:1166
+#: ../panel-plugin/verve-plugin.c:1347
 msgid "Enable support for:"
 msgstr "אפשר תמיכה עבור:"
 
 #. Command type: URL
-#: ../panel-plugin/verve-plugin.c:1172
+#: ../panel-plugin/verve-plugin.c:1353
 msgid "URLs (http/https/ftp/ftps)"
 msgstr "URLs (http/https/ftp/ftps)"
 
 #. Command type: email address
-#: ../panel-plugin/verve-plugin.c:1180
+#: ../panel-plugin/verve-plugin.c:1361
 msgid "Email addresses"
 msgstr "כתובות דוא״ל"
 
 #. Command type: directory path
-#: ../panel-plugin/verve-plugin.c:1188
+#: ../panel-plugin/verve-plugin.c:1369
 msgid "Directory paths"
 msgstr "נתיבי ספרייה"
 
-#: ../panel-plugin/verve-plugin.c:1201
+#: ../panel-plugin/verve-plugin.c:1382
 msgid "Expand variables with wordexp"
 msgstr "הרחב משתנים עם wordexp "
 
 #. Command type: !bang
-#: ../panel-plugin/verve-plugin.c:1211
+#: ../panel-plugin/verve-plugin.c:1392
 msgid "DuckDuckGo queries (starting with !)"
 msgstr "שאילתות DuckDuckGo (מתחילות עם !)"
 
 #. Command type: I'm feeling ducky (\)
-#: ../panel-plugin/verve-plugin.c:1219
+#: ../panel-plugin/verve-plugin.c:1400
 msgid "DuckDuckGo queries (starting with \\)"
 msgstr "שאילתות DuckDuckGo (מתחילות עם \\)"
 
 #. Fallback if the above don't match
-#: ../panel-plugin/verve-plugin.c:1227
+#: ../panel-plugin/verve-plugin.c:1408
 msgid "If the above patterns don't match:"
 msgstr "אם הדוגמאות מעלה לא תואמות:"
 
 #. Smart bookmark radio button
-#: ../panel-plugin/verve-plugin.c:1233
+#: ../panel-plugin/verve-plugin.c:1414
 msgid "Use smart bookmark URL"
 msgstr "השתמש בסימניית URL חכמה"
 
 #. Executable command radio button (smart bookmark off)
-#: ../panel-plugin/verve-plugin.c

[Xfce4-commits] [thunar-plugins/thunar-archive-plugin] branch master updated (3c9af2a -> a3a7a57)

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

transifex pushed a 
change to branch 
master
in repository thunar-plugins/thunar-archive-plugin.

  from  3c9af2a   I18n: Update translation he (100%).
   new  3aaead1   I18n: Update translation es (100%).
   new  a3a7a57   I18n: Update translation pt_BR (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/es.po| 49 +
 po/pt_BR.po | 51 ++-
 2 files changed, 59 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] [thunar-plugins/thunar-archive-plugin] 01/02: I18n: Update translation es (100%).

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

transifex pushed a 
commit to branch 
master
in repository thunar-plugins/thunar-archive-plugin.

commit 3aaead194e37d560cd71619968cae0c264f66a37
Author: Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] 
Date:   Thu Dec 7 06:30:32 2017 +0100

I18n: Update translation es (100%).

15 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/es.po | 49 +
 1 file changed, 29 insertions(+), 20 deletions(-)

diff --git a/po/es.po b/po/es.po
index 10396cd..7db8429 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,13 +4,14 @@
 # 
 # Translators:
 # Abel Martín , 2017
 # Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-03 20:07+0200\n"
-"PO-Revision-Date: 2017-09-19 18:03+\n"
+"POT-Creation-Date: 2017-12-06 06:30+0100\n"
+"PO-Revision-Date: 2017-12-07 00:04+\n"
 "Last-Translator: Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] 
\n"
 "Language-Team: Spanish 
(http://www.transifex.com/xfce/thunar-plugins/language/es/)\n"
 "MIME-Version: 1.0\n"
@@ -20,71 +21,79 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. prepare the dialog to query the preferred archiver for the user
-#: ../thunar-archive-plugin/tap-backend.c:81
+#: ../thunar-archive-plugin/tap-backend.c:77
 msgid "Select an archive manager"
 msgstr "Seleccione un administrador de archivadores"
 
+#: ../thunar-archive-plugin/tap-backend.c:80
+msgid "_Cancel"
+msgstr "_Cancelar"
+
+#: ../thunar-archive-plugin/tap-backend.c:81
+msgid "_OK"
+msgstr "_Aceptar"
+
 #. add the header label
-#: ../thunar-archive-plugin/tap-backend.c:105
+#: ../thunar-archive-plugin/tap-backend.c:99
 msgid ""
 "Please select your preferred archive manager\n"
 "from the list of available applications below:"
 msgstr "Seleccione su administrador de archivadores preferido\nde la siguiente 
lista de aplicaciones disponibles:"
 
 #. tell the user that we cannot handle the specified mime types
-#: ../thunar-archive-plugin/tap-backend.c:280
-#: ../thunar-archive-plugin/tap-backend.c:427
+#: ../thunar-archive-plugin/tap-backend.c:276
+#: ../thunar-archive-plugin/tap-backend.c:424
 #, c-format
 msgid "No suitable archive manager found"
 msgstr "No se encontró ningún administrador de archivadores adecuado"
 
-#. execute the action
-#: ../thunar-archive-plugin/tap-provider.c:336
-#: ../thunar-archive-plugin/tap-provider.c:375
+#. execute the action associated with the menu item
+#: ../thunar-archive-plugin/tap-provider.c:283
+#: ../thunar-archive-plugin/tap-provider.c:322
 msgid "Failed to extract files"
 msgstr "No se pudieron extraer los archivos"
 
-#. execute the action
-#: ../thunar-archive-plugin/tap-provider.c:413
+#. execute the action associated with the menu item
+#: ../thunar-archive-plugin/tap-provider.c:360
 msgid "Failed to create archive"
 msgstr "No se pudieron crear el archivador"
 
-#: ../thunar-archive-plugin/tap-provider.c:468
+#: ../thunar-archive-plugin/tap-provider.c:414
 msgid "Extract _Here"
 msgstr "Extraer _aquí"
 
-#: ../thunar-archive-plugin/tap-provider.c:475
+#: ../thunar-archive-plugin/tap-provider.c:416
 msgid "Extract the selected archive in the current folder"
 msgid_plural "Extract the selected archives in the current folder"
 msgstr[0] "Extraer el archivador seleccionado en la carpeta actual"
 msgstr[1] "Extraer los archivadores seleccionados en la carpeta actual"
 
-#: ../thunar-archive-plugin/tap-provider.c:492
+#: ../thunar-archive-plugin/tap-provider.c:434
 msgid "_Extract To..."
 msgstr "_Extraer en…"
 
-#: ../thunar-archive-plugin/tap-provider.c:500
+#: ../thunar-archive-plugin/tap-provider.c:436
 msgid "Extract the selected archive"
 msgid_plural "Extract the selected archives"
 msgstr[0] "Extraer el archivador seleccionado"
 msgstr[1] "Extraer los archivadores seleccionados"
 
-#: ../thunar-archive-plugin/tap-provider.c:520
+#: ../thunar-archive-plugin/tap-provider.c:457
 msgid "Cr_eate Archive..."
 msgstr "Cr_ear un archivador…"
 
-#: ../thunar-archive-plugin/tap-provider.c:528
+#: ../thunar-archive-plugin/tap-provider.c:459
 msgid "Create an archive with the selected object"
 msgid_plural "Create an archive with the selected objects"
 msgstr[0] "Crear un archivador con el objeto seleccionado"
 msgstr[1] "Crear un archivador con los objetos seleccionados"
 
-#. TRANSLATORS: This is the label of the Drag'n'Drop "Extract here" action
-#: ../thunar-archive-plugin/tap-provider.c:596
+#. TRANSLATORS: This is the label of the Drag'n'Drop "Extract here" menu item
+#: ../thunar-archive-plugin/tap-provider.c:526
 msgid "_Extract here"
 msgstr "E_xtraer aquí"
 
-#: ../thunar-archive-plugin/tap-provider.c:603
+#: ../thunar-archive-plugin/tap-pro

[Xfce4-commits] [xfce/thunar] branch master updated (04ecc20 -> 520f0d9)

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

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

  from  04ecc20   I18n: Update translation he (100%).
   new  520f0d9   I18n: Update translation pt_BR (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/pt_BR.po | 558 ++--
 1 file changed, 279 insertions(+), 279 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] [thunar-plugins/thunar-archive-plugin] 02/02: I18n: Update translation pt_BR (100%).

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

transifex pushed a 
commit to branch 
master
in repository thunar-plugins/thunar-archive-plugin.

commit a3a7a5732fc585b897c1adf3603bc864f79bfcc9
Author: Andre Miranda 
Date:   Thu Dec 7 06:30:32 2017 +0100

I18n: Update translation pt_BR (100%).

15 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/pt_BR.po | 51 ++-
 1 file changed, 30 insertions(+), 21 deletions(-)

diff --git a/po/pt_BR.po b/po/pt_BR.po
index 05fba6d..e9df45c 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Andre Miranda , 2017
 # Fábio Nogueira , 2007
 # Gunther Furtado , 2006
 # Og Maciel , 2008
@@ -10,9 +11,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-03 20:07+0200\n"
-"PO-Revision-Date: 2017-09-23 19:02+\n"
-"Last-Translator: Michael Martins \n"
+"POT-Creation-Date: 2017-12-06 06:30+0100\n"
+"PO-Revision-Date: 2017-12-07 00:48+\n"
+"Last-Translator: Andre Miranda \n"
 "Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/xfce/thunar-plugins/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -21,71 +22,79 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #. prepare the dialog to query the preferred archiver for the user
-#: ../thunar-archive-plugin/tap-backend.c:81
+#: ../thunar-archive-plugin/tap-backend.c:77
 msgid "Select an archive manager"
 msgstr "Selecionar um gerenciador de arquivos compactados"
 
+#: ../thunar-archive-plugin/tap-backend.c:80
+msgid "_Cancel"
+msgstr "_Cancelar"
+
+#: ../thunar-archive-plugin/tap-backend.c:81
+msgid "_OK"
+msgstr "_OK"
+
 #. add the header label
-#: ../thunar-archive-plugin/tap-backend.c:105
+#: ../thunar-archive-plugin/tap-backend.c:99
 msgid ""
 "Please select your preferred archive manager\n"
 "from the list of available applications below:"
 msgstr "Por favor, selecione o gerenciador de arquivos\ncompactados da sua 
escolha da lista de\naplicativos disponíveis abaixo:"
 
 #. tell the user that we cannot handle the specified mime types
-#: ../thunar-archive-plugin/tap-backend.c:280
-#: ../thunar-archive-plugin/tap-backend.c:427
+#: ../thunar-archive-plugin/tap-backend.c:276
+#: ../thunar-archive-plugin/tap-backend.c:424
 #, c-format
 msgid "No suitable archive manager found"
 msgstr "Nenhum gerenciador de arquivos compactados localizado"
 
-#. execute the action
-#: ../thunar-archive-plugin/tap-provider.c:336
-#: ../thunar-archive-plugin/tap-provider.c:375
+#. execute the action associated with the menu item
+#: ../thunar-archive-plugin/tap-provider.c:283
+#: ../thunar-archive-plugin/tap-provider.c:322
 msgid "Failed to extract files"
 msgstr "Falha ao extrair os arquivos"
 
-#. execute the action
-#: ../thunar-archive-plugin/tap-provider.c:413
+#. execute the action associated with the menu item
+#: ../thunar-archive-plugin/tap-provider.c:360
 msgid "Failed to create archive"
 msgstr "Falha ao criar o arquivo compactado"
 
-#: ../thunar-archive-plugin/tap-provider.c:468
+#: ../thunar-archive-plugin/tap-provider.c:414
 msgid "Extract _Here"
 msgstr "Extrair a_qui"
 
-#: ../thunar-archive-plugin/tap-provider.c:475
+#: ../thunar-archive-plugin/tap-provider.c:416
 msgid "Extract the selected archive in the current folder"
 msgid_plural "Extract the selected archives in the current folder"
 msgstr[0] "Extrai o arquivo selecionado na pasta atual"
 msgstr[1] "Extrai os arquivos selecionados na pasta atual"
 
-#: ../thunar-archive-plugin/tap-provider.c:492
+#: ../thunar-archive-plugin/tap-provider.c:434
 msgid "_Extract To..."
 msgstr "_Extrair para..."
 
-#: ../thunar-archive-plugin/tap-provider.c:500
+#: ../thunar-archive-plugin/tap-provider.c:436
 msgid "Extract the selected archive"
 msgid_plural "Extract the selected archives"
 msgstr[0] "Extrai o arquivo selecionado"
 msgstr[1] "Extrai os arquivos selecionados"
 
-#: ../thunar-archive-plugin/tap-provider.c:520
+#: ../thunar-archive-plugin/tap-provider.c:457
 msgid "Cr_eate Archive..."
 msgstr "Criar _arquivo compactado..."
 
-#: ../thunar-archive-plugin/tap-provider.c:528
+#: ../thunar-archive-plugin/tap-provider.c:459
 msgid "Create an archive with the selected object"
 msgid_plural "Create an archive with the selected objects"
 msgstr[0] "Cria um arquivo com o objeto selecionado"
 msgstr[1] "Cria um arquivo com os objetos selecionados"
 
-#. TRANSLATORS: This is the label of the Drag'n'Drop "Extract here" action
-#: ../thunar-archive-plugin/tap-provider.c:596
+#. TRANSLATORS: This is the label of the Drag'n'Drop "Extract here" menu item
+#: ../thunar-archive-plugin/tap-provider.c:526
 msgid "_Extr

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

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

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

commit 520f0d91a6dcfaf1601c431b5a63968b3cfe13b2
Author: Andre Miranda 
Date:   Thu Dec 7 06:30:23 2017 +0100

I18n: Update translation pt_BR (100%).

737 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/pt_BR.po | 558 ++--
 1 file changed, 279 insertions(+), 279 deletions(-)

diff --git a/po/pt_BR.po b/po/pt_BR.po
index e67a52e..726a222 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -20,8 +20,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-10-10 06:30+0200\n"
-"PO-Revision-Date: 2017-10-17 00:32+\n"
+"POT-Creation-Date: 2017-11-26 18:30+0100\n"
+"PO-Revision-Date: 2017-12-07 01:43+\n"
 "Last-Translator: Andre Miranda \n"
 "Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/xfce/thunar/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
@@ -118,100 +118,100 @@ msgstr "Nome '%s' adquirido no barramento de mensagens 
da sessão\n"
 msgid "Name '%s' lost on the message dbus, exiting."
 msgstr "Nome %s perdido na mensagem dbus, saindo."
 
-#: ../thunar/thunar-application.c:465
+#: ../thunar/thunar-application.c:469
 msgid "The Thunar development team. All rights reserved."
 msgstr "Time de desenvolvimento do Thunar. Todos os direitos reservados."
 
-#: ../thunar/thunar-application.c:466
+#: ../thunar/thunar-application.c:470
 msgid "Written by Benedikt Meurer ."
 msgstr "Escrito por Benedikt Meurer ."
 
-#: ../thunar/thunar-application.c:467
+#: ../thunar/thunar-application.c:471
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Por favor relate problemas para <%s>."
 
 #. display an error message to the user
-#: ../thunar/thunar-application.c:735
+#: ../thunar/thunar-application.c:739
 msgid "Failed to launch operation"
 msgstr "Falha ao lançar operação"
 
 #. tell the user that we were unable to launch the file specified
-#: ../thunar/thunar-application.c:1438 ../thunar/thunar-application.c:1570
+#: ../thunar/thunar-application.c:1442 ../thunar/thunar-application.c:1574
 #: ../thunar/thunar-launcher.c:1222 ../thunar/thunar-location-entry.c:356
 #: ../thunar/thunar-location-entry.c:384
-#: ../thunar/thunar-shortcuts-view.c:1660
-#: ../thunar/thunar-shortcuts-view.c:1688 ../thunar/thunar-window.c:2278
+#: ../thunar/thunar-shortcuts-view.c:1653
+#: ../thunar/thunar-shortcuts-view.c:1681 ../thunar/thunar-window.c:2274
 #, c-format
 msgid "Failed to open \"%s\""
 msgstr "Falha ao abrir \"%s\""
 
-#: ../thunar/thunar-application.c:1574
+#: ../thunar/thunar-application.c:1578
 #, c-format
 msgid "Failed to open \"%s\": %s"
 msgstr "Falha ao abrir \"%s\": %s"
 
 #. display an error message
-#: ../thunar/thunar-application.c:1629
+#: ../thunar/thunar-application.c:1633
 #: ../thunar/thunar-properties-dialog.c:731
-#: ../thunar/thunar-standard-view.c:2787 ../thunar/thunar-tree-view.c:1937
+#: ../thunar/thunar-standard-view.c:2773 ../thunar/thunar-tree-view.c:1930
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "Falha ao renomear \"%s\""
 
-#: ../thunar/thunar-application.c:1731
-#: ../thunar/thunar-location-buttons.c:1331
-#: ../thunar/thunar-standard-view.c:2338 ../thunar/thunar-tree-view.c:1799
+#: ../thunar/thunar-application.c:1735
+#: ../thunar/thunar-location-buttons.c:1339
+#: ../thunar/thunar-standard-view.c:2324 ../thunar/thunar-tree-view.c:1792
 msgid "New Folder"
 msgstr "Nova pasta"
 
-#: ../thunar/thunar-application.c:1732
-#: ../thunar/thunar-location-buttons.c:1332
-#: ../thunar/thunar-standard-view.c:2339 ../thunar/thunar-tree-view.c:1800
+#: ../thunar/thunar-application.c:1736
+#: ../thunar/thunar-location-buttons.c:1340
+#: ../thunar/thunar-standard-view.c:2325 ../thunar/thunar-tree-view.c:1793
 msgid "Create New Folder"
 msgstr "Criar nova pasta"
 
-#: ../thunar/thunar-application.c:1736
+#: ../thunar/thunar-application.c:1740
 msgid "New File"
 msgstr "Novo arquivo"
 
-#: ../thunar/thunar-application.c:1737
+#: ../thunar/thunar-application.c:1741
 msgid "Create New File"
 msgstr "Criar novo arquivo"
 
 #. generate a title for the create dialog
-#: ../thunar/thunar-application.c:1794 ../thunar/thunar-standard-view.c:2383
+#: ../thunar/thunar-application.c:1798 ../thunar/thunar-standard-view.c:2369
 #, c-format
 msgid "Create Document from template \"%s\""
 msgstr "Criar documento a partir do modelo \"%s\""
 
-#: ../thunar/thunar-application.c:1858
+#: ../thunar/thunar-application.c:1862
 msgid "Copying files..."
 msgstr "Copiando arquivos..."
 
-#: ../thunar/thunar-application.c:1894
+#: ../thunar/thunar-application.c:1898
 #, c-format
 msgid "Copying files to \"%s\"..."
 msgstr "Copiando arquivos para \"%s\"..."
 
-#: ../thunar/thunar-applicat

[Xfce4-commits] [xfce/xfce4-panel] branch master updated (835e1e3 -> 5eb5463)

2017-12-06 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-panel.

  from  835e1e3   I18n: Update translation en_GB (100%).
   new  5eb5463   I18n: Update translation pt_BR (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/pt_BR.po | 149 +---
 1 file changed, 83 insertions(+), 66 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/xfburn] branch master updated (3359aca -> 2314c18)

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

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

  from  3359aca   I18n: Update translation he (100%).
   new  2314c18   I18n: Update translation pt_BR (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/pt_BR.po | 7 ---
 1 file changed, 4 insertions(+), 3 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/xfce4-panel] 01/01: I18n: Update translation pt_BR (100%).

2017-12-06 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-panel.

commit 5eb5463bad87a64933ecf68297eaebe931f9ed57
Author: Andre Miranda 
Date:   Thu Dec 7 06:31:22 2017 +0100

I18n: Update translation pt_BR (100%).

412 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/pt_BR.po | 149 +---
 1 file changed, 83 insertions(+), 66 deletions(-)

diff --git a/po/pt_BR.po b/po/pt_BR.po
index 762982d..e71ec8c 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -18,9 +18,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-13 00:30+0200\n"
-"PO-Revision-Date: 2017-09-23 19:02+\n"
-"Last-Translator: Marcelo Tobias \n"
+"POT-Creation-Date: 2017-11-15 18:31+0100\n"
+"PO-Revision-Date: 2017-12-07 02:03+\n"
+"Last-Translator: Andre Miranda \n"
 "Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/xfce/xfce4-panel/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -50,18 +50,18 @@ msgstr "Personalizar o painel"
 
 #. I18N: %s is the name of the plugin
 #: ../libxfce4panel/xfce-panel-plugin.c:1042
-#: ../panel/panel-preferences-dialog.c:1201
+#: ../panel/panel-preferences-dialog.c:1202
 #, c-format
 msgid "Are you sure that you want to remove \"%s\"?"
 msgstr "Você tem certeza que deseja remover \"%s\"?"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1047
-#: ../panel/panel-preferences-dialog.c:1204
+#: ../panel/panel-preferences-dialog.c:1205
 msgid "If you remove the item from the panel, it is permanently lost."
 msgstr "Se você remover o item do painel, ele será perdido permanentemente."
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1048 ../panel/panel-dialogs.c:127
-#: ../panel/panel-preferences-dialog.c:1206
+#: ../panel/panel-preferences-dialog.c:1207
 #: ../plugins/applicationsmenu/applicationsmenu.c:538
 #: ../plugins/directorymenu/directorymenu.c:394
 msgid "Cancel"
@@ -69,8 +69,8 @@ msgstr "Cancelar"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1049
 #: ../panel/panel-plugin-external.c:436
-#: ../panel/panel-preferences-dialog.c:929
-#: ../panel/panel-preferences-dialog.c:1207
+#: ../panel/panel-preferences-dialog.c:930
+#: ../panel/panel-preferences-dialog.c:1208
 msgid "Remove"
 msgstr "Remover"
 
@@ -186,49 +186,49 @@ msgid "There is already a running instance"
 msgstr "Já existe uma instância em execução"
 
 #. spawn ourselfs again
-#: ../panel/main.c:398
+#: ../panel/main.c:394
 msgid "Restarting..."
 msgstr "Reiniciando..."
 
-#: ../panel/main.c:413
+#: ../panel/main.c:409
 msgid "Failed to show the preferences dialog"
 msgstr "Falha ao abrir o diálogo de preferências"
 
-#: ../panel/main.c:415
+#: ../panel/main.c:411
 msgid "Failed to show the add new items dialog"
 msgstr "Falha ao mostrar o diálogo de adicionar novos itens"
 
-#: ../panel/main.c:417
+#: ../panel/main.c:413
 msgid "Failed to save the panel configuration"
 msgstr "Falha ao salvar a configuração do painel"
 
-#: ../panel/main.c:419
+#: ../panel/main.c:415
 msgid "Failed to add a plugin to the panel"
 msgstr "Falha ao adicionar um plug-in ao painel"
 
-#: ../panel/main.c:421
+#: ../panel/main.c:417
 msgid "Failed to restart the panel"
 msgstr "Falha ao reiniciar o painel"
 
-#: ../panel/main.c:423
+#: ../panel/main.c:419
 msgid "Failed to quit the panel"
 msgstr "Falha ao sair do painel"
 
-#: ../panel/main.c:425
+#: ../panel/main.c:421
 msgid "Failed to send D-Bus message"
 msgstr "Falha ao enviar mensagem D-Bus"
 
-#: ../panel/main.c:435 ../panel/panel-plugin-external.c:435
+#: ../panel/main.c:431 ../panel/panel-plugin-external.c:435
 msgid "Execute"
 msgstr "Executar"
 
-#: ../panel/main.c:436
+#: ../panel/main.c:432
 msgid ""
 "Do you want to start the panel? If you do, make sure you save the session on"
 " logout, so the panel is automatically started the next time you login."
 msgstr "Você quer iniciar o painel? Se você o fizer, certifique-se de salvar a 
sessão ao desconectar, assim o painel é iniciado automaticamente na próxima vez 
que você se conectar."
 
-#: ../panel/main.c:439 ../panel/main.c:453
+#: ../panel/main.c:435 ../panel/main.c:449
 #, c-format
 msgid "No running instance of %s was found"
 msgstr "Nenhuma instância em execução do %s foi encontrada"
@@ -273,12 +273,12 @@ msgstr "Você tem certeza que deseja fechar o painel?"
 msgid "Failed to execute command \"%s\""
 msgstr "Não foi possível executar o comando \"%s\""
 
-#: ../panel/panel-dbus-client.c:216
+#: ../panel/panel-dbus-client.c:218
 msgid ""
 "Invalid plugin event syntax specified. Use PLUGIN-NAME:NAME[:TYPE:VALUE]."
 msgstr "Sintaxe de evento do plug-in inválida. Use 
NOME-DO-PLUGIN:NOME[:TIPO:VALOR]."
 
-#: ../panel/panel-dbus-client.c:246
+#:

[Xfce4-commits] [apps/xfburn] 01/01: I18n: Update translation pt_BR (99%).

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

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

commit 2314c18d8ae9c23825b128d0205cdde2642298f5
Author: Andre Miranda 
Date:   Thu Dec 7 06:32:08 2017 +0100

I18n: Update translation pt_BR (99%).

304 translated messages, 2 untranslated messages.

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

diff --git a/po/pt_BR.po b/po/pt_BR.po
index c6c56d7..3bcd42b 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Andre Miranda , 2017
 # Andre Miranda , 2014
 # Henrique P. Machado , 2008
 # Michael Martins , 2015
@@ -14,8 +15,8 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-11-21 00:31+0100\n"
-"PO-Revision-Date: 2017-11-21 16:08+\n"
-"Last-Translator: Michael Martins \n"
+"PO-Revision-Date: 2017-12-07 01:48+\n"
+"Last-Translator: Andre Miranda \n"
 "Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/xfce/xfce-apps/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -639,7 +640,7 @@ msgstr ""
 msgid ""
 "Do you want to blank the disc, so that it can be used for the upcoming burn "
 "process?"
-msgstr ""
+msgstr "Deseja apagar o disco para que possa utilizá-lo na gravação a seguir?"
 
 #: ../xfburn/xfburn-device-box.c:579
 msgid "Drive can't burn on the inserted disc"

-- 
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 (b564366 -> d0b65d5)

2017-12-06 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  b564366   I18n: Update translation he (100%).
   new  acacfb1   I18n: Update translation es (100%).
   new  d0b65d5   I18n: Update translation pt_BR (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/es.po| 50 ++
 po/pt_BR.po | 50 ++
 2 files changed, 52 insertions(+), 48 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] 02/02: I18n: Update translation pt_BR (100%).

2017-12-06 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 d0b65d5cefa157d8272f5758fe88d4739fd5baa0
Author: Andre Miranda 
Date:   Thu Dec 7 06:32:21 2017 +0100

I18n: Update translation pt_BR (100%).

70 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/pt_BR.po | 50 ++
 1 file changed, 26 insertions(+), 24 deletions(-)

diff --git a/po/pt_BR.po b/po/pt_BR.po
index b560896..4b3c2d3 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -13,9 +13,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-10-28 00:32+0200\n"
-"PO-Revision-Date: 2017-10-30 20:08+\n"
-"Last-Translator: Michael Martins \n"
+"POT-Creation-Date: 2017-12-01 06:31+0100\n"
+"PO-Revision-Date: 2017-12-07 01:50+\n"
+"Last-Translator: Andre Miranda \n"
 "Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/xfce/xfce-apps/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -23,7 +23,7 @@ msgstr ""
 "Language: pt_BR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../panel-plugin/notification-plugin.c:204
+#: ../panel-plugin/notification-plugin.c:215
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:12
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.desktop.in.h:1
 msgid "Notifications"
@@ -55,17 +55,19 @@ msgstr "Este é o plug-in de notificações"
 msgid "Copyright © 2017 Simon Steinbeiß\n"
 msgstr "Copyright © 2017 Simon Steinbeiß\n"
 
-#. checkmenuitem for the do not disturb mode of xfce4-notifyd
-#: ../panel-plugin/notification-plugin-log.c:243
-msgid "_Do not disturb"
-msgstr "_Não incomode"
+#: ../panel-plugin/notification-plugin-log.c:121
+msgid "_Do not disturb"
+msgstr "_Não incomode"
 
-#. checkmenuitem for the do not disturb mode of xfce4-notifyd
-#: ../panel-plugin/notification-plugin-log.c:260
+#: ../panel-plugin/notification-plugin-log.c:282
+msgid "No notifications"
+msgstr "Nenhuma notificação"
+
+#: ../panel-plugin/notification-plugin-log.c:301
 msgid "_Clear log"
 msgstr "_Limpar registro"
 
-#: ../panel-plugin/notification-plugin-log.c:266
+#: ../panel-plugin/notification-plugin-log.c:309
 msgid "_Notification settings…"
 msgstr "_Configurações de notificações…"
 
@@ -116,59 +118,59 @@ msgstr "A visualização da notificação falhou"
 msgid "Settings daemon is unavailable"
 msgstr "Serviço de configurações indisponível"
 
-#: ../xfce4-notifyd-config/main.c:932
+#: ../xfce4-notifyd-config/main.c:934
 msgid ""
 "Empty log\n"
 "No notifications have been logged yet."
 msgstr "Registro vazio\nNenhuma notificação foi registrada 
ainda."
 
-#: ../xfce4-notifyd-config/main.c:939
+#: ../xfce4-notifyd-config/main.c:941
 msgid "Refresh"
 msgstr "Atualizar"
 
-#: ../xfce4-notifyd-config/main.c:940
+#: ../xfce4-notifyd-config/main.c:942
 msgid "Refresh the notification log"
 msgstr "Atualiza o registro de notificações"
 
-#: ../xfce4-notifyd-config/main.c:945
+#: ../xfce4-notifyd-config/main.c:947
 msgid "Open"
 msgstr "Abrir"
 
-#: ../xfce4-notifyd-config/main.c:946
+#: ../xfce4-notifyd-config/main.c:948
 msgid "Open the notification log in an external editor"
 msgstr "Abre o registro de notificações em um editor externo"
 
-#: ../xfce4-notifyd-config/main.c:951
+#: ../xfce4-notifyd-config/main.c:953
 msgid "Clear"
 msgstr "Limpar"
 
-#: ../xfce4-notifyd-config/main.c:952
+#: ../xfce4-notifyd-config/main.c:954
 msgid "Clear the notification log"
 msgstr "Limpa o registro de notificações"
 
-#: ../xfce4-notifyd-config/main.c:974
+#: ../xfce4-notifyd-config/main.c:976
 msgid "Display version information"
 msgstr "Exibe informação da versão"
 
-#: ../xfce4-notifyd-config/main.c:975
+#: ../xfce4-notifyd-config/main.c:977
 msgid "Settings manager socket"
 msgstr "Socket do gerenciador de configurações"
 
-#: ../xfce4-notifyd-config/main.c:975
+#: ../xfce4-notifyd-config/main.c:977
 msgid "SOCKET_ID"
 msgstr "SOCKET_ID"
 
-#: ../xfce4-notifyd-config/main.c:985
+#: ../xfce4-notifyd-config/main.c:987
 #, c-format
 msgid "Type '%s --help' for usage."
 msgstr "Digite \"%s --help\" para obter informações de uso."
 
-#: ../xfce4-notifyd-config/main.c:1000
+#: ../xfce4-notifyd-config/main.c:1002
 #, c-format
 msgid "Released under the terms of the GNU General Public License, version 2\n"
 msgstr "Liberado sob os termos da Licença Pública GNU (GPL), versão 2\n"
 
-#: ../xfce4-notifyd-config/main.c:1001
+#: ../xfce4-notifyd-config/main.c:1003
 #, c-format
 msgid "Please report bugs to %s.\n"
 msgstr "Por favor, relate erros para %s.\n"

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

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

2017-12-06 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 acacfb1845f3b32f01985760e6d4b89130335bd5
Author: Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] 
Date:   Thu Dec 7 06:32:21 2017 +0100

I18n: Update translation es (100%).

70 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/es.po | 50 ++
 1 file changed, 26 insertions(+), 24 deletions(-)

diff --git a/po/es.po b/po/es.po
index a6303f3..03d9fd3 100644
--- a/po/es.po
+++ b/po/es.po
@@ -14,9 +14,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-10-28 00:32+0200\n"
-"PO-Revision-Date: 2017-10-30 00:03+\n"
-"Last-Translator: Sergio García \n"
+"POT-Creation-Date: 2017-12-01 06:31+0100\n"
+"PO-Revision-Date: 2017-12-07 00:04+\n"
+"Last-Translator: Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] 
\n"
 "Language-Team: Spanish 
(http://www.transifex.com/xfce/xfce-apps/language/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -24,7 +24,7 @@ msgstr ""
 "Language: es\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../panel-plugin/notification-plugin.c:204
+#: ../panel-plugin/notification-plugin.c:215
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:12
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.desktop.in.h:1
 msgid "Notifications"
@@ -56,17 +56,19 @@ msgstr "Este es el complemento de notificación"
 msgid "Copyright © 2017 Simon Steinbeiß\n"
 msgstr "Derechos de autor © 2017 Simon Steinbeiß\n"
 
-#. checkmenuitem for the do not disturb mode of xfce4-notifyd
-#: ../panel-plugin/notification-plugin-log.c:243
-msgid "_Do not disturb"
-msgstr "No mole_star"
+#: ../panel-plugin/notification-plugin-log.c:121
+msgid "_Do not disturb"
+msgstr "No mole_star"
 
-#. checkmenuitem for the do not disturb mode of xfce4-notifyd
-#: ../panel-plugin/notification-plugin-log.c:260
+#: ../panel-plugin/notification-plugin-log.c:282
+msgid "No notifications"
+msgstr "Sin notificaciones"
+
+#: ../panel-plugin/notification-plugin-log.c:301
 msgid "_Clear log"
 msgstr "_Limpiar registro"
 
-#: ../panel-plugin/notification-plugin-log.c:266
+#: ../panel-plugin/notification-plugin-log.c:309
 msgid "_Notification settings…"
 msgstr "Co_nfiguración de las notificaciones…"
 
@@ -117,59 +119,59 @@ msgstr "No se pudo mostrar una vista previa de la 
notificación"
 msgid "Settings daemon is unavailable"
 msgstr "El servicio de configuraciones no está disponible"
 
-#: ../xfce4-notifyd-config/main.c:932
+#: ../xfce4-notifyd-config/main.c:934
 msgid ""
 "Empty log\n"
 "No notifications have been logged yet."
 msgstr "Registro vacío\nNo se han registrado notificaciones 
todavía."
 
-#: ../xfce4-notifyd-config/main.c:939
+#: ../xfce4-notifyd-config/main.c:941
 msgid "Refresh"
 msgstr "Actualizar"
 
-#: ../xfce4-notifyd-config/main.c:940
+#: ../xfce4-notifyd-config/main.c:942
 msgid "Refresh the notification log"
 msgstr "Actualizar el registro de notificaciones"
 
-#: ../xfce4-notifyd-config/main.c:945
+#: ../xfce4-notifyd-config/main.c:947
 msgid "Open"
 msgstr "Abrir"
 
-#: ../xfce4-notifyd-config/main.c:946
+#: ../xfce4-notifyd-config/main.c:948
 msgid "Open the notification log in an external editor"
 msgstr "Abrir el registro de notificaciones con un editor externo"
 
-#: ../xfce4-notifyd-config/main.c:951
+#: ../xfce4-notifyd-config/main.c:953
 msgid "Clear"
 msgstr "Vaciar"
 
-#: ../xfce4-notifyd-config/main.c:952
+#: ../xfce4-notifyd-config/main.c:954
 msgid "Clear the notification log"
 msgstr "Vaciar el registro de notificaciones"
 
-#: ../xfce4-notifyd-config/main.c:974
+#: ../xfce4-notifyd-config/main.c:976
 msgid "Display version information"
 msgstr "Mostrar información de la versión"
 
-#: ../xfce4-notifyd-config/main.c:975
+#: ../xfce4-notifyd-config/main.c:977
 msgid "Settings manager socket"
 msgstr "Socket del gestor de configuración"
 
-#: ../xfce4-notifyd-config/main.c:975
+#: ../xfce4-notifyd-config/main.c:977
 msgid "SOCKET_ID"
 msgstr "ID._DEL_SOCKET"
 
-#: ../xfce4-notifyd-config/main.c:985
+#: ../xfce4-notifyd-config/main.c:987
 #, c-format
 msgid "Type '%s --help' for usage."
 msgstr "Escriba «%s --help» para opciones de uso."
 
-#: ../xfce4-notifyd-config/main.c:1000
+#: ../xfce4-notifyd-config/main.c:1002
 #, c-format
 msgid "Released under the terms of the GNU General Public License, version 2\n"
 msgstr "Publicado bajo los términos de la Licencia Pública General de GNU, 
versión 2\n"
 
-#: ../xfce4-notifyd-config/main.c:1001
+#: ../xfce4-notifyd-config/main.c:1003
 #, c-format
 msgid "Please report bugs to %s.\n"
 msgstr "Informe de fallos a %s.\n"

-- 
To stop receiving notification emails like this one, please contact
the ad

[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] branch master updated (604072c -> 60c24d5)

2017-12-06 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-pulseaudio-plugin.

  from  604072c   I18n: Update translation he (100%).
   new  60c24d5   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 | 48 
 1 file changed, 28 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] 01/01: I18n: Update translation es (100%).

2017-12-06 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-pulseaudio-plugin.

commit 60c24d56a09560fa347ad7e3af215bf2c32abf7f
Author: Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] 
Date:   Thu Dec 7 06:33:06 2017 +0100

I18n: Update translation es (100%).

29 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/es.po | 48 
 1 file changed, 28 insertions(+), 20 deletions(-)

diff --git a/po/es.po b/po/es.po
index e4952de..28e2989 100644
--- a/po/es.po
+++ b/po/es.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-11-23 06:32+0100\n"
-"PO-Revision-Date: 2017-11-29 14:22+\n"
+"POT-Creation-Date: 2017-12-03 06:33+0100\n"
+"PO-Revision-Date: 2017-12-07 00:08+\n"
 "Last-Translator: Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] 
\n"
 "Language-Team: Spanish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/es/)\n"
 "MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgid "PulseAudio Plugin"
 msgstr "Complemento de PulseAudio"
 
 #: ../panel-plugin/pulseaudio.desktop.in.in.h:2
-#: ../panel-plugin/pulseaudio-plugin.c:243
+#: ../panel-plugin/pulseaudio-plugin.c:242
 msgid "Adjust the audio volume of the PulseAudio sound system"
 msgstr "Ajustar el volumen del sistema de sonido de PulseAudio"
 
@@ -83,15 +83,19 @@ msgid "Enable multimedia keys for playback control"
 msgstr "Habilitar teclas multimedia para el control de reproducción"
 
 #: ../panel-plugin/pulseaudio-dialog.glade.h:13
+msgid "Enable experimental window focus support"
+msgstr "Habilitar el soporte experimental de foco de ventana"
+
+#: ../panel-plugin/pulseaudio-dialog.glade.h:14
 msgid "Media Players"
 msgstr "Reproductores multimedia"
 
-#: ../panel-plugin/pulseaudio-plugin.c:245
+#: ../panel-plugin/pulseaudio-plugin.c:244
 msgid "Copyright © 2014-2017 Andrzej Radecki et al.\n"
 msgstr "Derechos de autor © 2014-2017 Andrzej Radecki y otros.\n"
 
-#: ../panel-plugin/pulseaudio-dialog.c:135
-#: ../panel-plugin/pulseaudio-menu.c:258
+#: ../panel-plugin/pulseaudio-dialog.c:136
+#: ../panel-plugin/pulseaudio-menu.c:264
 #, c-format
 msgid ""
 "Failed to execute command \"%s\".\n"
@@ -99,51 +103,55 @@ msgid ""
 "%s"
 msgstr "Orden fallida «%s».\n\n%s"
 
-#: ../panel-plugin/pulseaudio-dialog.c:138
-#: ../panel-plugin/pulseaudio-menu.c:261
+#: ../panel-plugin/pulseaudio-dialog.c:139
+#: ../panel-plugin/pulseaudio-menu.c:267
 msgid "Error"
 msgstr "Error"
 
-#: ../panel-plugin/pulseaudio-button.c:309
-#: ../panel-plugin/pulseaudio-notify.c:196
+#: ../panel-plugin/pulseaudio-button.c:313
+#: ../panel-plugin/pulseaudio-notify.c:199
 #, c-format
 msgid "Not connected to the PulseAudio server"
 msgstr "No está conectado con el servidor de PulseAudio"
 
-#: ../panel-plugin/pulseaudio-button.c:311
+#: ../panel-plugin/pulseaudio-button.c:315
 #, c-format
 msgid "Volume %d%% (muted)"
 msgstr "Volumen %d%% (silenciado)"
 
-#: ../panel-plugin/pulseaudio-button.c:313
+#: ../panel-plugin/pulseaudio-button.c:317
 #, c-format
 msgid "Volume %d%%"
 msgstr "Volumen %d%%"
 
-#: ../panel-plugin/pulseaudio-menu.c:459
+#: ../panel-plugin/pulseaudio-menu.c:501
 msgid "Output"
 msgstr "Salida"
 
-#: ../panel-plugin/pulseaudio-menu.c:496
+#: ../panel-plugin/pulseaudio-menu.c:540
 msgid "Input"
 msgstr "Entrada"
 
+#: ../panel-plugin/pulseaudio-menu.c:624
+msgid "Choose Playlist"
+msgstr "Elejir lista de reproducción"
+
 #. Audio mixers
-#: ../panel-plugin/pulseaudio-menu.c:585
+#: ../panel-plugin/pulseaudio-menu.c:659
 msgid "_Audio mixer..."
 msgstr "Mezclador de _audio…"
 
-#: ../panel-plugin/pulseaudio-notify.c:198
+#: ../panel-plugin/pulseaudio-notify.c:201
 #, c-format
 msgid "Volume %d%c (muted)"
 msgstr "Volumen %d%c (silenciado)"
 
-#: ../panel-plugin/pulseaudio-notify.c:200
+#: ../panel-plugin/pulseaudio-notify.c:203
 #, c-format
 msgid "Volume %d%c"
 msgstr "Volumen %d%c"
 
-#: ../panel-plugin/mprismenuitem.c:357 ../panel-plugin/mprismenuitem.c:430
-#: ../panel-plugin/mprismenuitem.c:795
+#: ../panel-plugin/mprismenuitem.c:383 ../panel-plugin/mprismenuitem.c:456
+#: ../panel-plugin/mprismenuitem.c:866
 msgid "Not currently playing"
-msgstr "Actualmente no se está reproduciendo"
+msgstr "No se está reproduciendo"

-- 
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-session] 04/04: Fix fadeout window using Xlib API

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

eric pushed a 
commit to branch 
master
in repository xfce/xfce4-session.

commit 1be6d6a24dd295016780c7c97100d4500aadad65
Author: Viktor Odintsev 
Date:   Tue Dec 5 16:03:47 2017 +0300

Fix fadeout window using Xlib API

Windows with override_redirect == TRUE have a different behavior
starting with GDK 3. This part of code was rewritten with Xlib API.

Signed-off-by: Eric Koegel 
---
 libxfsm/xfsm-util.c|  12 ++-
 xfce4-session/xfsm-fadeout.c   | 208 +++--
 xfce4-session/xfsm-fadeout.h   |   1 -
 xfce4-session/xfsm-logout-dialog.c |   4 -
 4 files changed, 141 insertions(+), 84 deletions(-)

diff --git a/libxfsm/xfsm-util.c b/libxfsm/xfsm-util.c
index f8809e3..537aab0 100644
--- a/libxfsm/xfsm-util.c
+++ b/libxfsm/xfsm-util.c
@@ -157,7 +157,12 @@ void
 xfsm_window_add_border (GtkWindow *window)
 {
   GtkWidget *box1, *box2;
-  GdkRGBA bg_color;
+  GtkWidget *child;
+  GdkRGBAbg_color;
+
+  child = gtk_bin_get_child (GTK_BIN (window));
+  if (G_UNLIKELY (child == NULL))
+return;
 
   gtk_widget_realize(GTK_WIDGET(window));
 
@@ -176,9 +181,12 @@ G_GNUC_END_IGNORE_DEPRECATIONS
   gtk_container_add (GTK_CONTAINER (box1), box2);
 
   gtk_container_set_border_width (GTK_CONTAINER (box2), 6);
-  gtk_container_add (GTK_CONTAINER (gtk_bin_get_child (GTK_BIN (window))), 
box2);
 
+  g_object_ref (child);
+  gtk_container_remove (GTK_CONTAINER (window), child);
   gtk_container_add (GTK_CONTAINER (window), box1);
+  gtk_container_add (GTK_CONTAINER (box2), child);
+  g_object_unref (child);
 }
 
 XfconfChannel*
diff --git a/xfce4-session/xfsm-fadeout.c b/xfce4-session/xfsm-fadeout.c
index 8102acf..6233fa2 100644
--- a/xfce4-session/xfsm-fadeout.c
+++ b/xfce4-session/xfsm-fadeout.c
@@ -24,117 +24,171 @@
 #endif
 
 #include 
-#include 
 #include 
 
+#ifdef GDK_WINDOWING_X11
+#include 
+#include 
+#include 
+#include 
+#endif
+
 
 
 struct _XfsmFadeout
 {
-  GSList *windows;
+#ifdef GDK_WINDOWING_X11
+  Display *xdisplay;
+  GSList  *xwindows;
+#endif
 };
 
 
 
+#ifdef GDK_WINDOWING_X11
+static Window
+xfsm_x11_fadeout_new_window (GdkDisplay *display,
+ GdkScreen *screen)
+{
+  XSetWindowAttributes  attr;
+  Display  *xdisplay;
+  Windowxwindow;
+  GdkWindow*root;
+  GdkCursor*cursor;
+  cairo_t  *cr;
+  gint  width;
+  gint  height;
+  GdkPixbuf*root_pixbuf;
+  cairo_surface_t  *surface;
+  gulongmask = 0;
+  gulongopacity;
+  gboolean  composited;
+
+  gdk_error_trap_push ();
+
+  xdisplay = gdk_x11_display_get_xdisplay (display);
+  root = gdk_screen_get_root_window (screen);
+
+  width = gdk_window_get_width (root);
+  height = gdk_window_get_height (root);
+
+  composited = gdk_screen_is_composited (screen)
+   && gdk_screen_get_rgba_visual (screen) != NULL;
+
+  cursor = gdk_cursor_new_for_display (display, GDK_WATCH);
+
+  if (!composited)
+{
+  /* create a copy of root window before showing the fadeout */
+  root_pixbuf = gdk_pixbuf_get_from_window (root, 0, 0, width, height);
+}
+
+  attr.cursor = gdk_x11_cursor_get_xcursor (cursor);
+  mask |= CWCursor;
+
+  attr.override_redirect = TRUE;
+  mask |= CWOverrideRedirect;
+
+  attr.background_pixel = BlackPixel (xdisplay, 
gdk_x11_screen_get_screen_number (screen));
+  mask |= CWBackPixel;
+
+  xwindow = XCreateWindow (xdisplay, gdk_x11_window_get_xid (root),
+   0, 0, width, height, 0, CopyFromParent,
+   InputOutput, CopyFromParent, mask, &attr);
+
+  g_object_unref (cursor);
+
+  if (composited)
+{
+  /* apply transparency before map */
+  opacity = 0.5 * 0x;
+  XChangeProperty (xdisplay, xwindow,
+   gdk_x11_get_xatom_by_name_for_display (display, 
"_NET_WM_WINDOW_OPACITY"),
+   XA_CARDINAL, 32, PropModeReplace, (guchar *)&opacity, 
1);
+}
+
+  XMapWindow (xdisplay, xwindow);
+
+  if (!composited)
+{
+  /* create background for window */
+  surface = cairo_xlib_surface_create (xdisplay, xwindow,
+   gdk_x11_visual_get_xvisual 
(gdk_screen_get_system_visual (screen)),
+   0, 0);
+  cairo_xlib_surface_set_size (surface, width, height);
+  cr = cairo_create (surface);
+
+  /* draw the copy of the root window */
+  gdk_cairo_set_source_pixbuf (cr, root_pixbuf, 0, 0);
+  cairo_paint (cr);
+  g_object_unref (root_pixbuf);
+
+  /* draw black transparent layer */
+  cairo_set_source_rgba (cr, 0, 0, 0, 0.5);
+  cairo_paint (cr);
+  cairo_destroy (cr)

[Xfce4-commits] [xfce/xfce4-session] 03/04: Fix keyboard grab for logout window

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

eric pushed a 
commit to branch 
master
in repository xfce/xfce4-session.

commit 62c7ed5a56c31e6dd89861605dbbd0162eada663
Author: Viktor Odintsev 
Date:   Tue Dec 5 15:17:43 2017 +0300

Fix keyboard grab for logout window

Signed-off-by: Eric Koegel 
---
 xfce4-session/xfsm-logout-dialog.c | 83 --
 1 file changed, 35 insertions(+), 48 deletions(-)

diff --git a/xfce4-session/xfsm-logout-dialog.c 
b/xfce4-session/xfsm-logout-dialog.c
index e473d8b..4871f62 100644
--- a/xfce4-session/xfsm-logout-dialog.c
+++ b/xfce4-session/xfsm-logout-dialog.c
@@ -671,6 +671,18 @@ xfsm_logout_dialog_screenshot_save (GdkPixbuf   
*screenshot,
 
 
 
+static void
+xfsm_logout_dialog_grab_callback (GdkSeat   *seat,
+  GdkWindow *window,
+  gpointer   user_data)
+{
+  /* ensure window is mapped to avoid unsuccessful grabs */
+  if (!gdk_window_is_visible (window))
+gdk_window_show (window);
+}
+
+
+
 static gint
 xfsm_logout_dialog_run (GtkDialog *dialog,
 gboolean   grab_input)
@@ -678,9 +690,7 @@ xfsm_logout_dialog_run (GtkDialog *dialog,
   GdkWindow *window;
   gint   ret;
   GdkDevice *device;
-#if 0 /* GTK_CHECK_VERSION (3, 20, 0) */
   GdkSeat   *seat;
-#endif
 
   if (grab_input)
 {
@@ -689,32 +699,18 @@ xfsm_logout_dialog_run (GtkDialog *dialog,
   window = gtk_widget_get_window (GTK_WIDGET (dialog));
 
   device = gtk_get_current_event_device ();
+  seat = device != NULL
+ ? gdk_device_get_seat (device)
+ : gdk_display_get_default_seat (gtk_widget_get_display 
(GTK_WIDGET (dialog)));
 
-  if (gdk_device_grab (device,
-   window,
-   GDK_OWNERSHIP_APPLICATION,
-   FALSE,
-   GDK_KEY_PRESS_MASK,
-   NULL,
-   GDK_CURRENT_TIME) != GDK_GRAB_SUCCESS)
-{
-  g_critical ("Failed to grab the keyboard for logout window");
-}
-#if 0 /* GTK_CHECK_VERSION (3, 20, 0) */
-  seat = gdk_device_get_seat (gtk_get_current_event_device ());
-
-  if (gdk_seat_grab (seat,
- window,
+  if (gdk_seat_grab (seat, window,
  GDK_SEAT_CAPABILITY_KEYBOARD,
- FALSE,
- NULL,
- gtk_get_current_event (),
- NULL,
+ FALSE, NULL, NULL,
+ xfsm_logout_dialog_grab_callback,
  NULL) != GDK_GRAB_SUCCESS)
 {
   g_critical ("Failed to grab the keyboard for logout window");
 }
-#endif
 
 #ifdef GDK_WINDOWING_X11
   /* force input to the dialog */
@@ -729,11 +725,7 @@ xfsm_logout_dialog_run (GtkDialog *dialog,
   ret = gtk_dialog_run (dialog);
 
   if (grab_input)
-gdk_device_ungrab (device, GDK_CURRENT_TIME);
-#if 0 /*GTK_CHECK_VERSION (3, 20, 0) */
-if (grab_input)
 gdk_seat_ungrab (seat);
-#endif
 
   return ret;
 }
@@ -757,6 +749,9 @@ xfsm_logout_dialog (const gchar  *session_name,
   XfconfChannel*channel = xfsm_open_config ();
   gboolean  autosave;
   XfsmShutdown *shutdown;
+  GdkDevice*device;
+  GdkSeat  *seat;
+  gint  grab_count = 0;
 
   g_return_val_if_fail (return_type != NULL, FALSE);
   g_return_val_if_fail (return_save_session != NULL, FALSE);
@@ -795,35 +790,27 @@ xfsm_logout_dialog (const gchar  *session_name,
* the dialog when running it */
   for (;;)
 {
-  GdkDevice *device = gtk_get_current_event_device ();
-
-  if (gdk_device_grab (device,
-   gtk_widget_get_window (hidden),
-   GDK_OWNERSHIP_APPLICATION,
-   FALSE,
-   GDK_KEY_PRESS_MASK,
-   NULL,
-   GDK_CURRENT_TIME) == GDK_GRAB_SUCCESS)
-{
-  gdk_device_ungrab (device, GDK_CURRENT_TIME);
-  break;
-}
-#if 0 /*GTK_CHECK_VERSION (3, 20, 0)*/
-  GdkSeat *seat = gdk_device_get_seat (gtk_get_current_event_device 
());
+  device = gtk_get_current_event_device ();
+  seat = device != NULL
+ ? gdk_device_get_seat (device)
+ : gdk_display_get_default_seat (gtk_widget_get_display 
(hidden));
 
-  if (gdk_seat_grab (seat,
- gtk_widget_get_window (hidden),
+  if (gdk_seat_grab (seat, gtk_widget_get_window (hidden),
  GDK_SEAT_CAPABILITY_KEYBOARD,
- FALSE,

[Xfce4-commits] [xfce/xfce4-session] branch master updated (a10c715 -> 1be6d6a)

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

eric pushed a 
change to branch 
master
in repository xfce/xfce4-session.

  from  a10c715   I18n: Update translation da (100%).
   new  480cf90   Bump GTK version to 3.20
   new  8a2733e   Check accessibility depending on xfsm configuration
   new  62c7ed5   Fix keyboard grab for logout window
   new  1be6d6a   Fix fadeout window using Xlib API

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:
 configure.ac.in|   6 +-
 libxfsm/xfsm-util.c|  12 ++-
 xfce4-session/xfsm-fadeout.c   | 208 +++--
 xfce4-session/xfsm-fadeout.h   |   1 -
 xfce4-session/xfsm-logout-dialog.c | 100 --
 xfce4-session/xfsm-logout-dialog.h |   3 +-
 xfce4-session/xfsm-manager.c   |   9 +-
 7 files changed, 194 insertions(+), 145 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/xfce4-session] 01/04: Bump GTK version to 3.20

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

eric pushed a 
commit to branch 
master
in repository xfce/xfce4-session.

commit 480cf90a0ac659457df36a5d11f7250159651ac4
Author: Viktor Odintsev 
Date:   Tue Dec 5 03:13:37 2017 +0300

Bump GTK version to 3.20

Signed-off-by: Eric Koegel 
---
 configure.ac.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index 38b1009..bf70f9f 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -102,7 +102,7 @@ XDT_I18N([@LINGUAS@])
 dnl Check for required packages
 XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.12.0])
 XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-2], [4.12.0])
-XDT_CHECK_PACKAGE([GTK], [gtk+-3.0], [3.18.0])
+XDT_CHECK_PACKAGE([GTK], [gtk+-3.0], [3.20.0])
 XDT_CHECK_PACKAGE([GIO], [gio-2.0], [2.42.0])
 XDT_CHECK_PACKAGE([GMODULE], [gmodule-2.0], [2.24.0])
 XDT_CHECK_PACKAGE([LIBWNCK], [libwnck-3.0], [3.10])
@@ -115,8 +115,8 @@ XDT_CHECK_OPTIONAL_PACKAGE([POLKIT], [polkit-gobject-1], 
[0.102],
 AC_DEFINE(GLIB_VERSION_MIN_REQUIRED, GLIB_VERSION_2_42, [Ignore post 2.42 
deprecations])
 AC_DEFINE(GLIB_VERSION_MAX_ALLOWED, GLIB_VERSION_2_42, [Prevent post 2.42 
APIs])
 
-AC_DEFINE(GDK_VERSION_MIN_REQUIRED, GDK_VERSION_3_18, [Ignore post 3.18 
deprecations])
-AC_DEFINE(GDK_VERSION_MAX_ALLOWED, GDK_VERSION_3_18, [Prevent post 3.18 APIs])
+AC_DEFINE(GDK_VERSION_MIN_REQUIRED, GDK_VERSION_3_20, [Ignore post 3.20 
deprecations])
+AC_DEFINE(GDK_VERSION_MAX_ALLOWED, GDK_VERSION_3_22, [Prevent post 3.22 APIs])
 
 dnl Check for debugging support
 XDT_FEATURE_DEBUG([xfsm_debug_default])

-- 
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-session] 02/04: Check accessibility depending on xfsm configuration

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

eric pushed a 
commit to branch 
master
in repository xfce/xfce4-session.

commit 8a2733e822d5f0bae89027194aa0678a5b72a9c7
Author: Viktor Odintsev 
Date:   Tue Dec 5 02:33:47 2017 +0300

Check accessibility depending on xfsm configuration

Signed-off-by: Eric Koegel 
---
 xfce4-session/xfsm-logout-dialog.c | 13 ++---
 xfce4-session/xfsm-logout-dialog.h |  3 ++-
 xfce4-session/xfsm-manager.c   |  9 +++--
 3 files changed, 15 insertions(+), 10 deletions(-)

diff --git a/xfce4-session/xfsm-logout-dialog.c 
b/xfce4-session/xfsm-logout-dialog.c
index 57738bf..e473d8b 100644
--- a/xfce4-session/xfsm-logout-dialog.c
+++ b/xfce4-session/xfsm-logout-dialog.c
@@ -743,11 +743,11 @@ xfsm_logout_dialog_run (GtkDialog *dialog,
 gboolean
 xfsm_logout_dialog (const gchar  *session_name,
 XfsmShutdownType *return_type,
-gboolean *return_save_session)
+gboolean *return_save_session,
+gboolean  accessibility)
 {
   gint  result;
   GtkWidget*hidden;
-  gboolean  a11y;
   GtkWidget*dialog;
   GdkScreen*screen;
   gint  monitor;
@@ -785,12 +785,11 @@ xfsm_logout_dialog (const gchar  *session_name,
   monitor = 0;
 }
 
-  /* check if accessibility is enabled */
   hidden = gtk_invisible_new_for_screen (screen);
   gtk_widget_show (hidden);
-  a11y = GTK_IS_ACCESSIBLE (gtk_widget_get_accessible (hidden));
 
-  if (G_LIKELY (!a11y))
+  /* check if accessibility is enabled */
+  if (G_LIKELY (!accessibility))
 {
   /* wait until we can grab the keyboard, we need this for
* the dialog when running it */
@@ -849,7 +848,7 @@ xfsm_logout_dialog (const gchar  *session_name,
   else
 {
   dialog = g_object_new (XFSM_TYPE_LOGOUT_DIALOG,
- "decorated", !a11y,
+ "decorated", !accessibility,
  "screen", screen, NULL);
 
   gtk_window_set_keep_above (GTK_WINDOW (dialog), TRUE);
@@ -863,7 +862,7 @@ xfsm_logout_dialog (const gchar  *session_name,
   /* set mode */
   xfsm_logout_dialog_set_mode (xfsm_dialog, MODE_LOGOUT_BUTTONS);
 
-  result = xfsm_logout_dialog_run (GTK_DIALOG (dialog), !a11y);
+  result = xfsm_logout_dialog_run (GTK_DIALOG (dialog), !accessibility);
 
   gtk_widget_hide (dialog);
 
diff --git a/xfce4-session/xfsm-logout-dialog.h 
b/xfce4-session/xfsm-logout-dialog.h
index 2cb0882..0e7f68b 100644
--- a/xfce4-session/xfsm-logout-dialog.h
+++ b/xfce4-session/xfsm-logout-dialog.h
@@ -38,6 +38,7 @@ GType  xfsm_logout_dialog_get_type (void) G_GNUC_CONST;
 
 gboolean   xfsm_logout_dialog  (const gchar  *session_name,
 XfsmShutdownType *return_type,
-gboolean *return_save_session);
+gboolean *return_save_session,
+gboolean  accessibility);
 
 #endif
diff --git a/xfce4-session/xfsm-manager.c b/xfce4-session/xfsm-manager.c
index 00309b0..bf189a4 100644
--- a/xfce4-session/xfsm-manager.c
+++ b/xfce4-session/xfsm-manager.c
@@ -1189,8 +1189,13 @@ xfsm_manager_save_yourself_global (XfsmManager 
*manager,
 {
   /* if we're not specifying fast shutdown, and we're ok with
* prompting then ask the user what to do */
-  if (!xfsm_logout_dialog (manager->session_name, 
&manager->shutdown_type, &shutdown_save))
-return;
+  if (!xfsm_logout_dialog (manager->session_name,
+   &manager->shutdown_type,
+   &shutdown_save,
+   manager->start_at))
+{
+  return;
+}
 
   /* |allow_shutdown_save| is ignored if we prompt the user.  i think
* this is the right thing to do. */

-- 
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