[Xfce4-commits] [apps/xfce4-screensaver] 01/01: Fix expectation of replies from dbus

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

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit d292c1bb427dd9fb76ba34542f3e20b56b559425
Author: Sean Davis 
Date:   Sat Jul 13 20:02:30 2019 -0400

Fix expectation of replies from dbus
---
 src/xfce4-screensaver-command.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/xfce4-screensaver-command.c b/src/xfce4-screensaver-command.c
index 78efc6f..98daefb 100644
--- a/src/xfce4-screensaver-command.c
+++ b/src/xfce4-screensaver-command.c
@@ -184,7 +184,7 @@ do_command (GDBusConnection *conn) {
 }
 
 if (do_quit) {
-reply = screensaver_send_message (conn, "Quit", NULL, FALSE);
+screensaver_send_message (conn, "Quit", NULL, FALSE);
 goto done;
 }
 
@@ -249,11 +249,11 @@ do_command (GDBusConnection *conn) {
 }
 
 if (do_activate) {
-reply = screensaver_send_message (conn, "SetActive", g_variant_new 
("(b)", TRUE), FALSE);
+screensaver_send_message (conn, "SetActive", g_variant_new ("(b)", 
TRUE), FALSE);
 }
 
 if (do_deactivate) {
-reply = screensaver_send_message (conn, "SetActive", g_variant_new 
("(b)", FALSE), TRUE);
+screensaver_send_message (conn, "SetActive", g_variant_new ("(b)", 
FALSE), FALSE);
 }
 
 if (do_inhibit) {

-- 
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-screensaver] branch master updated (6f9deef -> d292c1b)

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

bluesabre pushed a 
change to branch 
master
in repository apps/xfce4-screensaver.

  from  6f9deef   Add toggle for on-screen keyboard for individual user/use 
preference
   new  d292c1b   Fix expectation of replies from dbus

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


Summary of changes:
 src/xfce4-screensaver-command.c | 6 +++---
 1 file changed, 3 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] [apps/xfce4-screensaver] 01/01: Add toggle for on-screen keyboard for individual user/use preference

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

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit 6f9deef9b9fd5b4508bf1db4ab65f4e26be28084
Author: Sean Davis 
Date:   Sat Jul 13 19:37:57 2019 -0400

Add toggle for on-screen keyboard for individual user/use preference
---
 src/Makefile.am |   2 +
 src/gs-lock-plug.c  |  35 
 src/gs-prefs.c  |  16 
 src/gs-prefs.h  |   8 ++
 src/gs-window-x11.c |  18 +
 src/xfce4-screensaver-dialog.ui | 171 +++-
 6 files changed, 176 insertions(+), 74 deletions(-)

diff --git a/src/Makefile.am b/src/Makefile.am
index 8ee7b55..b8969f5 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -119,6 +119,8 @@ xfce4_screensaver_dialog_SOURCES = \
gs-lock-plug.h \
gs-debug.c \
gs-debug.h \
+   gs-prefs.c \
+   gs-prefs.h \
setuid.c   \
setuid.h   \
subprocs.c \
diff --git a/src/gs-lock-plug.c b/src/gs-lock-plug.c
index ed566b2..d3291d7 100644
--- a/src/gs-lock-plug.c
+++ b/src/gs-lock-plug.c
@@ -40,9 +40,11 @@
 #include 
 
 #include 
+#include 
 
 #include "gs-lock-plug.h"
 #include "gs-debug.h"
+#include "gs-prefs.h"
 #include "xfce-bg.h"
 #include "xfce-desktop-utils.h"
 #include "xfce4-screensaver-dialog-ui.h"
@@ -88,6 +90,7 @@ struct GSLockPlugPrivate {
 GtkWidget   *auth_logout_button;
 
 GtkWidget   *auth_prompt_kbd_layout_indicator;
+GtkWidget   *keyboard_toggle;
 
 gboolean caps_lock_on;
 gboolean switch_enabled;
@@ -105,6 +108,9 @@ struct GSLockPlugPrivate {
 gint monitor_index;
 
 GList   *key_events;
+
+GSPrefs   *prefs;
+XfconfChannel *channel;
 };
 
 typedef struct _ResponseData ResponseData;
@@ -1442,6 +1448,17 @@ redraw_background (GSLockPlug *plug) {
 gtk_image_set_from_pixbuf(GTK_IMAGE(plug->priv->background_image), pixbuf);
 }
 
+static void
+keyboard_toggled_cb (GtkToggleButton *button,
+gpointer*user_data) {
+GSLockPlug *plug = GS_LOCK_PLUG (user_data);
+
+gboolean active = gtk_toggle_button_get_active (button);
+xfconf_channel_set_bool (plug->priv->channel, KEY_KEYBOARD_DISPLAYED, 
active);
+
+gtk_widget_grab_focus (plug->priv->auth_prompt_entry);
+}
+
 static gboolean
 gs_lock_plug_add_login_window (GSLockPlug *plug) {
 GtkBuilder *builder;
@@ -1458,6 +1475,9 @@ gs_lock_plug_add_login_window (GSLockPlug *plug) {
 return FALSE;
 }
 
+plug->priv->prefs = gs_prefs_new ();
+plug->priv->channel = xfconf_channel_get (SETTINGS_XFCONF_CHANNEL);
+
 lock_overlay = GTK_WIDGET(gtk_builder_get_object(builder, "lock-overlay"));
 lock_panel = GTK_WIDGET(gtk_builder_get_object(builder, "lock-panel"));
 lock_dialog = GTK_WIDGET(gtk_builder_get_object(builder, "login_window"));
@@ -1492,6 +1512,15 @@ gs_lock_plug_add_login_window (GSLockPlug *plug) {
 plug->priv->auth_capslock_label = GTK_WIDGET 
(gtk_builder_get_object(builder, "auth-capslock-label"));
 plug->priv->auth_message_label = GTK_WIDGET 
(gtk_builder_get_object(builder, "auth-status-label"));
 
+plug->priv->keyboard_toggle = GTK_WIDGET (gtk_builder_get_object(builder, 
"keyboard-toggle"));
+if (plug->priv->prefs->keyboard_enabled) {
+gtk_widget_show (plug->priv->keyboard_toggle);
+gtk_widget_set_no_show_all (plug->priv->keyboard_toggle, FALSE);
+gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON 
(plug->priv->keyboard_toggle), plug->priv->prefs->keyboard_displayed);
+g_signal_connect (GTK_TOGGLE_BUTTON (plug->priv->keyboard_toggle), 
"toggled",
+  G_CALLBACK (keyboard_toggled_cb), plug);
+}
+
 /* Placeholder for the keyboard indicator */
 plug->priv->auth_prompt_kbd_layout_indicator = GTK_WIDGET (
 gtk_builder_get_object(builder, 
"auth-prompt-kbd-layout-indicator"));
@@ -1637,6 +1666,12 @@ gs_lock_plug_finalize (GObject *object) {
 
 g_free (plug->priv->logout_command);
 
+g_free (plug->priv->prefs);
+plug->priv->prefs = NULL;
+
+g_free (plug->priv->channel);
+plug->priv->channel = NULL;
+
 remove_response_idle (plug);
 remove_cancel_timeout (plug);
 remove_datetime_timeout (plug);
diff --git a/src/gs-prefs.c b/src/gs-prefs.c
index 3b81cd6..0b5e5e2 100644
--- a/src/gs-prefs.c
+++ b/src/gs-prefs.c
@@ -240,6 +240,12 @@ _gs_prefs_set_keyboard_command (GSPrefs*prefs,
 }
 
 static void
+_gs_prefs_set_keyboard_displayed (GSPrefs  *prefs,
+  

[Xfce4-commits] [apps/xfce4-screensaver] branch master updated (8104136 -> 6f9deef)

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

bluesabre pushed a 
change to branch 
master
in repository apps/xfce4-screensaver.

  from  8104136   I18n: Update translation tr (100%).
   new  6f9deef   Add toggle for on-screen keyboard for individual user/use 
preference

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


Summary of changes:
 src/Makefile.am |   2 +
 src/gs-lock-plug.c  |  35 
 src/gs-prefs.c  |  16 
 src/gs-prefs.h  |   8 ++
 src/gs-window-x11.c |  18 +
 src/xfce4-screensaver-dialog.ui | 171 +++-
 6 files changed, 176 insertions(+), 74 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-screensaver] 03/03: I18n: Update translation tr (100%).

2019-07-13 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-screensaver.

commit 81041367275fb9ea9bf103ed2604f9e195f2bf9b
Author: Serdar Sağlam 
Date:   Sun Jul 14 00:31:16 2019 +0200

I18n: Update translation tr (100%).

145 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/tr.po | 267 ---
 1 file changed, 120 insertions(+), 147 deletions(-)

diff --git a/po/tr.po b/po/tr.po
index 9f1c237..bacfbfa 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -4,20 +4,22 @@
 # FIRST AUTHOR , YEAR.
 # 
 # Translators:
-# Necdet Yücel , 2018
 # Emin Tufan , 2018
-# Nick Schermer , 2018
 # Xfce Bot , 2018
 # Demiray Muhterem , 2019
+# Necdet Yücel , 2019
+# Nick Schermer , 2019
+# Recep, 2019
+# Serdar Sağlam , 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-03-15 06:31+0100\n"
+"POT-Creation-Date: 2019-07-13 12:31+0200\n"
 "PO-Revision-Date: 2018-10-16 16:27+\n"
-"Last-Translator: Demiray Muhterem , 2019\n"
+"Last-Translator: Serdar Sağlam , 2019\n"
 "Language-Team: Turkish (https://www.transifex.com/xfce/teams/16840/tr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -41,7 +43,7 @@ msgstr "Ekran koruyucular"
 
 #: ../data/xfce4-screensaver.directory.in.h:2
 msgid "Screensaver themes"
-msgstr "Ekran koruyucu gövdeleri"
+msgstr "Ekran koruyucu temaları"
 
 #: ../savers/floaters.c:89
 msgid "Show paths that images follow"
@@ -77,16 +79,21 @@ msgstr "Kullanılacak kaynak resim"
 
 #. translators: the word "image" here
 #. * represents a command line argument
-#: ../savers/floaters.c:1120
+#: ../savers/floaters.c:1122
 msgid "image - floats images around the screen"
 msgstr "görüntü - ekran etrafında görüntüler yüzer"
 
-#: ../savers/floaters.c:1124 ../savers/popsquares.c:49
+#: ../savers/floaters.c:1126 ../savers/popsquares.c:49
 #, c-format
 msgid "%s. See --help for usage information.\n"
 msgstr "%sKullanım bilgileri için --help komutuna bakın. \n"
 
-#: ../savers/floaters.c:1132
+#: ../savers/floaters.c:1133
+#, c-format
+msgid "Failed to initialize the windowing system."
+msgstr "Pencereleme sistemi başlatılamadı."
+
+#: ../savers/floaters.c:1139
 #, c-format
 msgid "You must specify one image.  See --help for usage information.\n"
 msgstr "Bir resim belirtmelisiniz. Kullanım bilgileri için bkz --help.\n"
@@ -139,182 +146,95 @@ msgstr "Sanatsal kareler"
 msgid "A pop-art-ish grid of pulsing colors."
 msgstr "Renk basıncı pop-art-ish ızgarası."
 
-#: ../src/copy-theme-dialog.c:214
-msgid "Copying files"
-msgstr "Dosyalar kopyalanıyor"
-
-#: ../src/copy-theme-dialog.c:233
-msgid "From:"
-msgstr "Konum:"
-
-#: ../src/copy-theme-dialog.c:237
-msgid "To:"
-msgstr "Şuraya:"
-
-#: ../src/copy-theme-dialog.c:255 ../src/gs-lock-plug.c:1192
-#: ../src/xfce4-screensaver-dialog.ui.h:7
-msgid "_Cancel"
-msgstr "_İptal"
-
-#: ../src/copy-theme-dialog.c:258
-msgid "Copying themes"
-msgstr "Gövdeler kopyalanıyor"
-
-#: ../src/copy-theme-dialog.c:296
-msgid "Invalid screensaver theme"
-msgstr "Geçersiz ekran koruyucu gövdesi"
-
-#: ../src/copy-theme-dialog.c:299
-#, c-format
-msgid "%s does not appear to be a valid screensaver theme."
-msgstr "%sgeçerli bir ekran koruyucu gövdesi gibi görünmüyor. "
-
-#: ../src/copy-theme-dialog.c:457
-#, c-format
-msgid "Copying file: %u of %u"
-msgstr "Kopyalanan dosya: %u şuraya %u"
-
 #: ../src/gs-auth-pam.c:163
 msgid "Password:"
 msgstr "Parola:"
 
-#: ../src/gs-auth-pam.c:378
+#: ../src/gs-auth-pam.c:375
 #, c-format
 msgid "Unable to establish service %s: %s\n"
 msgstr "%shizmeti kurulamıyor: %s\n"
 
-#: ../src/gs-auth-pam.c:404
+#: ../src/gs-auth-pam.c:401
 #, c-format
 msgid "Can't set PAM_TTY=%s"
 msgstr "Ayarlanamadı PAM_TTY=%s"
 
-#: ../src/gs-auth-pam.c:435
+#: ../src/gs-auth-pam.c:432
 msgid "Incorrect password."
 msgstr "Yanlış parola."
 
-#: ../src/gs-auth-pam.c:437 ../src/xfce4-screensaver-dialog.c:311
+#: ../src/gs-auth-pam.c:434 ../src/xfce4-screensaver-dialog.c:311
 msgid "Authentication failed."
 msgstr "Doğrulamala başarısız oldu."
 
-#: ../src/gs-auth-pam.c:451
+#: ../src/gs-auth-pam.c:448
 msgid "Not permitted to gain access at this time."
 msgstr "Şu anda erişim sağlamak için izin verilmedi."
 
-#: ../src/gs-auth-pam.c:457
+#: ../src/gs-auth-pam.c:454
 msgid "No longer permitted to access the system."
 msgstr "Sistem erişimine artık izin verilmiyor."
 
-#: ../src/gs-auth-pam.c:674
+#: ../src/gs-auth-pam.c:667
 msgid "Username:"
 msgstr "Kullanıcı:"
 
-#: ../src/gs-listener-dbus.c:1993
+#: ../src/gs-listener-dbus.c:1825
 msgid "failed to register with the message bus"
 msgstr "ileti veri yoluna kayıt yapılamadı"
 
-#: ../src/gs-listener-dbus.c:2003
+#: 

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

2019-07-13 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-screensaver.

commit ffb67fd7e670ceb2bb532d430f30979dc29c950b
Author: Anonymous 
Date:   Sun Jul 14 00:31:16 2019 +0200

I18n: Update translation es (100%).

145 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/es.po | 262 ---
 1 file changed, 116 insertions(+), 146 deletions(-)

diff --git a/po/es.po b/po/es.po
index b259c6f..2404d06 100644
--- a/po/es.po
+++ b/po/es.po
@@ -5,12 +5,12 @@
 # 
 # Translators:
 # Nick Schermer , 2018
-# Manolo Díaz , 2018
 # Fito JB, 2018
 # César Enrique García , 2018
-# Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] , 2018
 # Xfce Bot , 2018
 # Jaime Marquínez Ferrándiz, 2019
+# Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] , 2019
+# Manolo Díaz , 2019
 # Casper casper, 2019
 # 
 #, fuzzy
@@ -18,7 +18,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-03-15 06:31+0100\n"
+"POT-Creation-Date: 2019-07-13 12:31+0200\n"
 "PO-Revision-Date: 2018-10-16 16:27+\n"
 "Last-Translator: Casper casper, 2019\n"
 "Language-Team: Spanish (https://www.transifex.com/xfce/teams/16840/es/)\n"
@@ -80,16 +80,21 @@ msgstr "La imagen de origen que utilizar"
 
 #. translators: the word "image" here
 #. * represents a command line argument
-#: ../savers/floaters.c:1120
+#: ../savers/floaters.c:1122
 msgid "image - floats images around the screen"
 msgstr "image - flota imágenes alrededor de la pantalla"
 
-#: ../savers/floaters.c:1124 ../savers/popsquares.c:49
+#: ../savers/floaters.c:1126 ../savers/popsquares.c:49
 #, c-format
 msgid "%s. See --help for usage information.\n"
 msgstr "%s. Vea --help para la información de uso.\n"
 
-#: ../savers/floaters.c:1132
+#: ../savers/floaters.c:1133
+#, c-format
+msgid "Failed to initialize the windowing system."
+msgstr "Error al iniciar el sistema de ventanas."
+
+#: ../savers/floaters.c:1139
 #, c-format
 msgid "You must specify one image.  See --help for usage information.\n"
 msgstr "Debe especificar una imagen. Vea --Ayuda para información.\n"
@@ -142,187 +147,99 @@ msgstr "Cuadros pop-art"
 msgid "A pop-art-ish grid of pulsing colors."
 msgstr "Una cuadrícula pop-art-ish de colores pulsantes."
 
-#: ../src/copy-theme-dialog.c:214
-msgid "Copying files"
-msgstr "Copiando archivos"
-
-#: ../src/copy-theme-dialog.c:233
-msgid "From:"
-msgstr "De:"
-
-#: ../src/copy-theme-dialog.c:237
-msgid "To:"
-msgstr "A:"
-
-#: ../src/copy-theme-dialog.c:255 ../src/gs-lock-plug.c:1192
-#: ../src/xfce4-screensaver-dialog.ui.h:7
-msgid "_Cancel"
-msgstr "_Cancelar"
-
-#: ../src/copy-theme-dialog.c:258
-msgid "Copying themes"
-msgstr "Copiando temas"
-
-#: ../src/copy-theme-dialog.c:296
-msgid "Invalid screensaver theme"
-msgstr "Tema de salvapantallas no válido"
-
-#: ../src/copy-theme-dialog.c:299
-#, c-format
-msgid "%s does not appear to be a valid screensaver theme."
-msgstr "%s no parece ser un tema de salvapantallas válido."
-
-#: ../src/copy-theme-dialog.c:457
-#, c-format
-msgid "Copying file: %u of %u"
-msgstr "Copiando el archivo %u de %u"
-
 #: ../src/gs-auth-pam.c:163
 msgid "Password:"
 msgstr "Contraseña:"
 
-#: ../src/gs-auth-pam.c:378
+#: ../src/gs-auth-pam.c:375
 #, c-format
 msgid "Unable to establish service %s: %s\n"
 msgstr "No se puede establecer el servicio %s: %s\n"
 
-#: ../src/gs-auth-pam.c:404
+#: ../src/gs-auth-pam.c:401
 #, c-format
 msgid "Can't set PAM_TTY=%s"
 msgstr "No se puede establecer PAM_TTY=%s"
 
-#: ../src/gs-auth-pam.c:435
+#: ../src/gs-auth-pam.c:432
 msgid "Incorrect password."
 msgstr "Contraseña incorrecta."
 
-#: ../src/gs-auth-pam.c:437 ../src/xfce4-screensaver-dialog.c:311
+#: ../src/gs-auth-pam.c:434 ../src/xfce4-screensaver-dialog.c:311
 msgid "Authentication failed."
 msgstr "Ha fallado la autenticación."
 
-#: ../src/gs-auth-pam.c:451
+#: ../src/gs-auth-pam.c:448
 msgid "Not permitted to gain access at this time."
 msgstr "En este momento no se permite otorgar acceso."
 
-#: ../src/gs-auth-pam.c:457
+#: ../src/gs-auth-pam.c:454
 msgid "No longer permitted to access the system."
 msgstr "No se permite acceder al sistema."
 
-#: ../src/gs-auth-pam.c:674
+#: ../src/gs-auth-pam.c:667
 msgid "Username:"
 msgstr "Nombre de usuario:"
 
-#: ../src/gs-listener-dbus.c:1993
+#: ../src/gs-listener-dbus.c:1825
 msgid "failed to register with the message bus"
 msgstr "Error al registrarse en el bus de mensajes"
 
-#: ../src/gs-listener-dbus.c:2003
+#: ../src/gs-listener-dbus.c:1835
 msgid "not connected to the message bus"
 msgstr "no conectado al bus de mensajes"
 
-#: ../src/gs-listener-dbus.c:2012 ../src/gs-listener-dbus.c:2042
+#: ../src/gs-listener-dbus.c:1844 

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

2019-07-13 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 4bae858a2ce2ebad58a446224c336d849a33050f
Author: Michael Martins 
Date:   Sun Jul 14 00:30:35 2019 +0200

I18n: Update translation pt_BR (99%).

406 translated messages, 4 untranslated messages.

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

diff --git a/po/pt_BR.po b/po/pt_BR.po
index 1c144fd..64fb622 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -19,9 +19,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-29 00:30+0200\n"
-"PO-Revision-Date: 2019-06-30 02:02+\n"
-"Last-Translator: Andre Miranda \n"
+"POT-Creation-Date: 2019-07-04 00:30+0200\n"
+"PO-Revision-Date: 2019-07-13 22:06+\n"
+"Last-Translator: Michael Martins \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"
@@ -342,6 +342,7 @@ msgstr "Adiciona novos plug-ins ao painel"
 
 #: ../panel/panel-item-dialog.c:214
 #: ../panel/panel-preferences-dialog.glade.h:11
+#: ../panel/panel-tic-tac-toe.c:123
 #: ../plugins/actions/actions-dialog.glade.h:3
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:3
 #: ../plugins/clock/clock-dialog.glade.h:7
@@ -477,8 +478,8 @@ msgid "Remove the currently selected panel"
 msgstr "Remover o painel selecionado atualmente"
 
 #: ../panel/panel-preferences-dialog.glade.h:15
-msgid "Backup and restore"
-msgstr "Backup e restauração"
+msgid "_Backup and restore"
+msgstr ""
 
 #: ../panel/panel-preferences-dialog.glade.h:16
 msgid "Switch between panel presets"
@@ -520,8 +521,8 @@ msgid ""
 msgstr "Selecione esta opção se você quer que janelas maximizadas cubram a 
área atrás do painel. Isto somente funciona quando o painel está preso a um 
canto da tela."
 
 #: ../panel/panel-preferences-dialog.glade.h:25
-msgid "Automatically hide the panel:"
-msgstr "Automaticamente ocultar o painel:"
+msgid "Au_tomatically hide the panel:"
+msgstr ""
 
 #: ../panel/panel-preferences-dialog.glade.h:26
 msgid "O_utput:"
@@ -590,12 +591,12 @@ msgid "Icons"
 msgstr "Ícones"
 
 #: ../panel/panel-preferences-dialog.glade.h:43
-msgid "Adjust size automatically"
-msgstr "Ajustar tamanho automaticamente"
+msgid "Adjust size au_tomatically"
+msgstr ""
 
 #: ../panel/panel-preferences-dialog.glade.h:44
-msgid "Fixed icon size (pixels):"
-msgstr "Tamanho de ícone fixo (em pixels):"
+msgid "Fixed icon _size (pixels):"
+msgstr ""
 
 #: ../panel/panel-preferences-dialog.glade.h:45
 msgid "Opacity"
@@ -668,10 +669,6 @@ msgstr "_Itens"
 msgid "_New Game"
 msgstr "_Novo jogo"
 
-#: ../panel/panel-tic-tac-toe.c:123
-msgid "Close"
-msgstr "Fechar"
-
 #: ../panel/panel-tic-tac-toe.c:132
 msgid "_Level:"
 msgstr "_Nível:"
@@ -1393,36 +1390,36 @@ msgstr "Que horas são?"
 msgid "Directory Menu"
 msgstr "Menu de diretórios"
 
-#: ../plugins/directorymenu/directorymenu.c:574
+#: ../plugins/directorymenu/directorymenu.c:576
 #, c-format
 msgid "Failed to launch application \"%s\""
 msgstr "Falha ao lançar o aplicativo \"%s\""
 
-#: ../plugins/directorymenu/directorymenu.c:606
+#: ../plugins/directorymenu/directorymenu.c:608
 #, c-format
 msgid "Failed to query content type for \"%s\""
 msgstr "Falha consultar tipo de conteúdo de \"%s\""
 
-#: ../plugins/directorymenu/directorymenu.c:615
+#: ../plugins/directorymenu/directorymenu.c:617
 #, c-format
 msgid "No default application found for \"%s\""
 msgstr "Nenhum aplicativo padrão encontrado para \"%s\""
 
-#: ../plugins/directorymenu/directorymenu.c:631
+#: ../plugins/directorymenu/directorymenu.c:633
 #, c-format
 msgid "Failed to launch default application for \"%s\""
 msgstr "Falha ao lançar o aplicativo padrão para \"%s\""
 
-#: ../plugins/directorymenu/directorymenu.c:729
+#: ../plugins/directorymenu/directorymenu.c:731
 #, c-format
 msgid "Failed to execute the preferred application for category \"%s\""
 msgstr "Falha ao executar o aplicativo padrão para a categoria \"%s\""
 
-#: ../plugins/directorymenu/directorymenu.c:803
+#: ../plugins/directorymenu/directorymenu.c:805
 msgid "Open Folder"
 msgstr "Abrir pasta"
 
-#: ../plugins/directorymenu/directorymenu.c:818
+#: ../plugins/directorymenu/directorymenu.c:820
 msgid "Open in Terminal"
 msgstr "Abrir no terminal"
 
@@ -1815,23 +1812,23 @@ msgstr "Mostrar janelas de _todos os monitores"
 msgid "Show only _minimized windows"
 msgstr "Mostrar somente as janelas _minimizadas"
 
-#: ../plugins/tasklist/tasklist-widget.c:3558
+#: ../plugins/tasklist/tasklist-widget.c:3593
 msgid "Mi_nimize All"
 msgstr "Mi_nimizar tudo"
 
-#: 

[Xfce4-commits] [apps/xfce4-screensaver] 02/03: I18n: Update translation ru (100%).

2019-07-13 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-screensaver.

commit 880e6f1a922321028465b85d087239b0514776d4
Author: Igor 
Date:   Sun Jul 14 00:31:16 2019 +0200

I18n: Update translation ru (100%).

145 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/ru.po | 215 +++
 1 file changed, 106 insertions(+), 109 deletions(-)

diff --git a/po/ru.po b/po/ru.po
index 344105d..8baf017 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -4,11 +4,11 @@
 # FIRST AUTHOR , YEAR.
 # 
 # Translators:
-# Sergey Alyoshin , 2018
-# Nick Schermer , 2018
 # Aleksey Kabanov , 2018
 # Владимир , 2018
 # Aleksandr P, 2018
+# Nick Schermer , 2019
+# Sergey Alyoshin , 2019
 # Igor , 2019
 # 
 #, fuzzy
@@ -16,7 +16,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-08 06:31+0200\n"
+"POT-Creation-Date: 2019-07-13 12:31+0200\n"
 "PO-Revision-Date: 2018-10-16 16:27+\n"
 "Last-Translator: Igor , 2019\n"
 "Language-Team: Russian (https://www.transifex.com/xfce/teams/16840/ru/)\n"
@@ -78,21 +78,21 @@ msgstr "Исходное изображение"
 
 #. translators: the word "image" here
 #. * represents a command line argument
-#: ../savers/floaters.c:1121
+#: ../savers/floaters.c:1122
 msgid "image - floats images around the screen"
 msgstr "image - выводит на экран летающие изображения"
 
-#: ../savers/floaters.c:1125 ../savers/popsquares.c:49
+#: ../savers/floaters.c:1126 ../savers/popsquares.c:49
 #, c-format
 msgid "%s. See --help for usage information.\n"
 msgstr "%s. Введите --help для получения справки.\n"
 
-#: ../savers/floaters.c:1132
+#: ../savers/floaters.c:1133
 #, c-format
 msgid "Failed to initialize the windowing system."
 msgstr "Не удалось инициализировать оконную систему."
 
-#: ../savers/floaters.c:1138
+#: ../savers/floaters.c:1139
 #, c-format
 msgid "You must specify one image.  See --help for usage information.\n"
 msgstr ""
@@ -146,41 +146,6 @@ msgstr "Цветные квадраты"
 msgid "A pop-art-ish grid of pulsing colors."
 msgstr "Сетка из ярких мерцающих квадратов."
 
-#: ../src/copy-theme-dialog.c:214
-msgid "Copying files"
-msgstr "Копирование файлов"
-
-#: ../src/copy-theme-dialog.c:233
-msgid "From:"
-msgstr "Из:"
-
-#: ../src/copy-theme-dialog.c:237
-msgid "To:"
-msgstr "В:"
-
-#: ../src/copy-theme-dialog.c:255 ../src/gs-lock-plug.c:1264
-#: ../src/xfce4-screensaver-dialog.ui.h:7
-msgid "_Cancel"
-msgstr "О_тмена"
-
-#: ../src/copy-theme-dialog.c:258
-msgid "Copying themes"
-msgstr "Копирование тем"
-
-#: ../src/copy-theme-dialog.c:296
-msgid "Invalid screensaver theme"
-msgstr "Неверная тема хранителя экрана"
-
-#: ../src/copy-theme-dialog.c:299
-#, c-format
-msgid "%s does not appear to be a valid screensaver theme."
-msgstr "%s не является допустимой темой хранителя экрана."
-
-#: ../src/copy-theme-dialog.c:457
-#, c-format
-msgid "Copying file: %u of %u"
-msgstr "Копирование файла: %u из %u"
-
 #: ../src/gs-auth-pam.c:163
 msgid "Password:"
 msgstr "Пароль:"
@@ -215,133 +180,157 @@ msgstr "Вам больше не разрешено входить в систе
 msgid "Username:"
 msgstr "Имя пользователя:"
 
-#: ../src/gs-listener-dbus.c:1956
+#: ../src/gs-listener-dbus.c:1825
 msgid "failed to register with the message bus"
 msgstr "не удалось зарегистрироваться на шине сообщений"
 
-#: ../src/gs-listener-dbus.c:1966
+#: ../src/gs-listener-dbus.c:1835
 msgid "not connected to the message bus"
 msgstr "не удалось подключиться к шине сообщений"
 
-#: ../src/gs-listener-dbus.c:1975 ../src/gs-listener-dbus.c:2005
+#: ../src/gs-listener-dbus.c:1844 ../src/gs-listener-dbus.c:1874
 msgid "screensaver already running in this session"
 msgstr "в этом сеансе уже запущен хранитель экрана"
 
-#: ../src/gs-lock-plug.c:268
+#: ../src/gs-lock-plug.c:285
 msgctxt "Date"
 msgid "%A, %B %e   %H:%M"
 msgstr "%A, %e %B   %H:%M"
 
-#: ../src/gs-lock-plug.c:351
+#: ../src/gs-lock-plug.c:368
 msgid "Time has expired."
 msgstr "Время истекло."
 
-#: ../src/gs-lock-plug.c:1249
-msgid "S_witch User..."
-msgstr "П_ереключить пользователя..."
-
-#: ../src/gs-lock-plug.c:1258
-msgid "Log _Out"
-msgstr "В_ыйти"
-
-#: ../src/gs-lock-plug.c:1269 ../src/xfce4-screensaver-dialog.ui.h:8
-msgid "_Unlock"
-msgstr "_Разблокировать"
-
-#. To translators: This expands to USERNAME on HOSTNAME
-#: ../src/gs-lock-plug.c:1435
-msgid "%U on %h"
-msgstr "%U на %h"
-
-#: ../src/gs-lock-plug.c:1450
-msgid "Please enter your password."
-msgstr "Введите ваш пароль."
-
-#: ../src/xfce4-screensaver-command.c:60
+#: ../src/xfce4-screensaver-command.c:56
 msgid "Causes the screensaver to exit gracefully"
 msgstr "Завершает хранитель экрана"
 
-#: ../src/xfce4-screensaver-command.c:64
+#: 

[Xfce4-commits] [apps/xfce4-screensaver] branch master updated (4ae5821 -> 8104136)

2019-07-13 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-screensaver.

  from  4ae5821   xfce-floaters: Enable 1000 mice at a time
   new  ffb67fd   I18n: Update translation es (100%).
   new  880e6f1   I18n: Update translation ru (100%).
   new  8104136   I18n: Update translation tr (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/es.po | 262 +++--
 po/ru.po | 215 +-
 po/tr.po | 267 ---
 3 files changed, 342 insertions(+), 402 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 (332d31c -> 4bae858)

2019-07-13 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  332d31c   I18n: Update translation th (100%).
   new  4bae858   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 | 51 ---
 1 file changed, 24 insertions(+), 27 deletions(-)

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


[Xfce4-commits] [apps/parole] branch master updated (8a759cb -> eb0af10)

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

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

  from  8a759cb   I18n: Update translation lt (100%).
   new  eb0af10   Ensure the time divider is shown/hidden correctly

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


Summary of changes:
 src/parole-player.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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


[Xfce4-commits] [apps/parole] 01/01: Ensure the time divider is shown/hidden correctly

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

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

commit eb0af1049c5faff580c8204972591126bcbba4fb
Author: Simon Steinbeiss 
Date:   Sun Jul 14 00:24:10 2019 +0200

Ensure the time divider is shown/hidden correctly

Previously the state machine was a little borked and it always initially
showed up, but was hidden after toggling mini mode.
---
 src/parole-player.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/parole-player.c b/src/parole-player.c
index d4ae7a5..831ebf7 100644
--- a/src/parole-player.c
+++ b/src/parole-player.c
@@ -1366,7 +1366,7 @@ parole_player_playing(ParolePlayer *player, const 
ParoleStream *stream) {
 } else {
 gtk_range_set_range(GTK_RANGE(player->priv->range), 0, duration);
 gtk_widget_set_visible(player->priv->label_duration, TRUE);
-gtk_widget_set_visible(player->priv->label_divider, TRUE);
+gtk_widget_set_visible(player->priv->label_divider, 
player->priv->mini_mode);
 gtk_widget_set_visible(player->priv->label_elapsed, TRUE);
 }
 
@@ -3495,6 +3495,7 @@ parole_player_init(ParolePlayer *player) {
 player->priv->label_duration = GTK_WIDGET(gtk_builder_get_object(builder, 
"media_time_duration"));
 player->priv->label_elapsed = GTK_WIDGET(gtk_builder_get_object(builder, 
"media_time_elapsed"));
 player->priv->label_divider = GTK_WIDGET(gtk_builder_get_object(builder, 
"media_time_divider"));
+gtk_widget_hide (player->priv->label_divider);
 
 /* Time Slider */
 player->priv->range = GTK_WIDGET(gtk_builder_get_object(builder, 
"media_progress_slider"));

-- 
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-screensaver] 01/01: xfce-floaters: Enable 1000 mice at a time

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

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit 4ae5821d5a21eabe037abe88c9598672dc9cbbfa
Author: Sean Davis 
Date:   Sat Jul 13 18:17:37 2019 -0400

xfce-floaters: Enable 1000 mice at a time
---
 src/xfce4-screensaver-configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xfce4-screensaver-configure b/src/xfce4-screensaver-configure
index a481054..f367416 100755
--- a/src/xfce4-screensaver-configure
+++ b/src/xfce4-screensaver-configure
@@ -166,7 +166,7 @@ class DesktopScreensaverSettings(ScreensaverSettings):
 if self.name == "xfce-floaters":
 options["number-of-images"] = {'id': 'number-of-images', 'type': 
'spinbutton',
'label': _('Max number of images'), 
'argument': '-n %',
-   'default': 5, 'low': 1, 'high': 25}
+   'default': 5, 'low': 1, 'high': 
1000}
 options["show-paths"] = {'id': 'show-paths', 'type': 'checkbox',
  'label': _('Show paths'), 'argument': 
'-p'}
 options["do-rotations"] = {'id': 'do-rotations', 'type': 
'checkbox',

-- 
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-screensaver] branch master updated (d56e4a4 -> 4ae5821)

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

bluesabre pushed a 
change to branch 
master
in repository apps/xfce4-screensaver.

  from  d56e4a4   Reload theme previews as configuration changes
   new  4ae5821   xfce-floaters: Enable 1000 mice at a time

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


Summary of changes:
 src/xfce4-screensaver-configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


[Xfce4-commits] [apps/xfce4-screensaver] 01/02: Apply some fixes for various screensavers

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

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit 16d5fee5e2612ba50f5ce7133acc48332ec170e9
Author: Sean Davis 
Date:   Sat Jul 13 18:01:29 2019 -0400

Apply some fixes for various screensavers
---
 src/xfce4-screensaver-configure | 12 
 1 file changed, 12 insertions(+)

diff --git a/src/xfce4-screensaver-configure b/src/xfce4-screensaver-configure
index 2a110f6..a481054 100755
--- a/src/xfce4-screensaver-configure
+++ b/src/xfce4-screensaver-configure
@@ -257,6 +257,14 @@ class XmlScreensaverSettings(ScreensaverSettings):
 value = _(value)
 if key in ["arg", "arg-set", "arg-unset"]:
 key = "argument"
+if "#" in value:
+tmp = value.split(" ")
+parts = []
+for piece in tmp:
+if piece.startswith("#"):
+piece = "'%s'" % piece
+parts.append(piece)
+value = " ".join(parts)
 attributes[key] = value
 
 return attributes
@@ -572,6 +580,10 @@ class ConfigurationWindow(Gtk.Window):
 if isinstance(argument, dict):
 argument = argument[value]
 elif "%" in argument:
+try:
+value = int(value)
+except:
+pass
 argument = argument.replace("%", str(value))
 arguments.append(argument)
 value = " ".join(arguments)

-- 
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-screensaver] branch master updated (28a6857 -> d56e4a4)

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

bluesabre pushed a 
change to branch 
master
in repository apps/xfce4-screensaver.

  from  28a6857   Integrate xfce4-screensaver-configure with screensaver 
preferences
   new  16d5fee   Apply some fixes for various screensavers
   new  d56e4a4   Reload theme previews as configuration changes

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:
 src/xfce4-screensaver-configure | 12 +++
 src/xfce4-screensaver-preferences.c | 42 +
 2 files changed, 54 insertions(+)

-- 
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-screensaver] 02/02: Reload theme previews as configuration changes

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

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit d56e4a4d6e2e10808cae3f68e9c4fce0be590e9c
Author: Sean Davis 
Date:   Sat Jul 13 18:01:50 2019 -0400

Reload theme previews as configuration changes
---
 src/xfce4-screensaver-preferences.c | 42 +
 1 file changed, 42 insertions(+)

diff --git a/src/xfce4-screensaver-preferences.c 
b/src/xfce4-screensaver-preferences.c
index af3a8a5..a2ff4a7 100644
--- a/src/xfce4-screensaver-preferences.c
+++ b/src/xfce4-screensaver-preferences.c
@@ -996,6 +996,44 @@ setup_treeview (GtkWidget *tree,
 }
 
 static void
+reload_theme (GtkWidget *treeview) {
+GtkWidget*preview;
+GtkTreeIter   iter;
+GtkTreeModel *model;
+GtkTreeSelection *selection;
+char *theme;
+char *name;
+
+if (active_theme == NULL) {
+return;
+}
+
+model = gtk_tree_view_get_model (GTK_TREE_VIEW (treeview));
+if (model == NULL) {
+return;
+}
+
+selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (treeview));
+
+if (!gtk_tree_selection_get_selected (selection, , )) {
+return;
+}
+
+gtk_tree_model_get (model, , ID_COLUMN, , NAME_COLUMN, , 
-1);
+
+if (theme == NULL) {
+g_free (name);
+return;
+}
+
+preview  = GTK_WIDGET (gtk_builder_get_object (builder, 
"saver_themes_preview_area"));
+preview_set_theme (preview, theme, name);
+
+g_free (theme);
+g_free (name);
+}
+
+static void
 setup_treeview_selection (GtkWidget *tree) {
 char *theme;
 GtkTreeModel *model;
@@ -1443,6 +1481,10 @@ key_changed_cb (XfconfChannel *channel, const gchar 
*key, gpointer data) {
 GtkWidget *treeview;
 treeview = GTK_WIDGET (gtk_builder_get_object (builder, 
"saver_themes_treeview"));
 setup_treeview_selection (treeview);
+} else if (g_str_has_suffix (key, "arguments")) {
+GtkWidget *treeview;
+treeview = GTK_WIDGET (gtk_builder_get_object (builder, 
"saver_themes_treeview"));
+reload_theme (treeview);
 }
 }
 

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


[Xfce4-commits] [xfce/xfdesktop] branch master updated (7328581 -> e55c5dc)

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

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

  from  7328581   Add padding to Window Actions menu entry (Bug #14628)
   new  a4ef926   Use https where possible
   new  e55c5dc   Update copyright year

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:
 autogen.sh | 2 +-
 common/xfdesktop-thumbnailer.c | 4 ++--
 doc/README.kiosk   | 4 ++--
 settings/main.c| 2 +-
 src/xfce-backdrop.c| 2 +-
 xfdesktop.1| 6 +++---
 6 files changed, 10 insertions(+), 10 deletions(-)

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


[Xfce4-commits] [xfce/xfdesktop] 02/02: Update copyright year

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

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

commit e55c5dc22340db06b67d85e045564879f7ceeefe
Author: Andre Miranda 
Date:   Sat Jul 13 18:27:03 2019 -0300

Update copyright year
---
 settings/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/settings/main.c b/settings/main.c
index 6d357f9..baa3d8c 100644
--- a/settings/main.c
+++ b/settings/main.c
@@ -2166,7 +2166,7 @@ main(int argc, char **argv)
 
 if(G_UNLIKELY(opt_version)) {
 g_print("%s %s (Xfce %s)\n\n", G_LOG_DOMAIN, VERSION, 
xfce_version_string());
-g_print("%s\n", "Copyright (c) 2004-2015");
+g_print("%s\n", "Copyright (c) 2004-2019");
 g_print("\t%s\n\n", _("The Xfce development team. All rights 
reserved."));
 g_print(_("Please report bugs to <%s>."), PACKAGE_BUGREPORT);
 g_print("\n");

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


[Xfce4-commits] [xfce/xfdesktop] 01/02: Use https where possible

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

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

commit a4ef926629070214fdc991df5cbb65498d647579
Author: Andre Miranda 
Date:   Sat Jul 13 18:26:27 2019 -0300

Use https where possible
---
 autogen.sh | 2 +-
 common/xfdesktop-thumbnailer.c | 4 ++--
 doc/README.kiosk   | 4 ++--
 src/xfce-backdrop.c| 2 +-
 xfdesktop.1| 6 +++---
 5 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index ef98c52..6655518 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -17,7 +17,7 @@ autogen.sh: You don't seem to have the Xfce development tools 
(at least
 version $XDT_REQURED_VERSION) installed on your system, which
 are required to build this software.
 Please install the xfce4-dev-tools package first; it is available
-from http://www.xfce.org/.
+from https://www.xfce.org/.
 EOF
   exit 1
 }
diff --git a/common/xfdesktop-thumbnailer.c b/common/xfdesktop-thumbnailer.c
index cc0bcdf..b51d9ef 100644
--- a/common/xfdesktop-thumbnailer.c
+++ b/common/xfdesktop-thumbnailer.c
@@ -23,9 +23,9 @@
  *  Copyright (c) Stephan Arts 2009-2011 
  *
  *  Thumbnailer Spec
- *  http://live.gnome.org/ThumbnailerSpec
+ *  https://wiki.gnome.org/action/show/DraftSpecs/ThumbnailerSpec
  *  Thumbnail Managing Standard
- *  http://people.freedesktop.org/~vuntz/thumbnail-spec-cache/creation.html
+ *  
https://specifications.freedesktop.org/thumbnail-spec/thumbnail-spec-latest.html
  */
 
 #include 
diff --git a/doc/README.kiosk b/doc/README.kiosk
index 51728ab..6b3862c 100644
--- a/doc/README.kiosk
+++ b/doc/README.kiosk
@@ -2,5 +2,5 @@ Any xfconf property or channel can be locked down to prevent
 specific users or groups from making changes. See the
 README.xfconf for the list of properties xfdesktop supports.
 Additional kiosk information is available at:
-http://docs.xfce.org/xfce/xfconf/start
-http://git.xfce.org/xfce/xfconf/tree/docs/spec/perchannel-xml.txt
+https://docs.xfce.org/xfce/xfconf/start
+https://git.xfce.org/xfce/xfconf/tree/docs/spec/perchannel-xml.txt
diff --git a/src/xfce-backdrop.c b/src/xfce-backdrop.c
index 0c2d8cc..a34de39 100644
--- a/src/xfce-backdrop.c
+++ b/src/xfce-backdrop.c
@@ -1826,7 +1826,7 @@ xfce_backdrop_loader_closed_cb(GdkPixbufLoader *loader,
 
 /* if we don't need to do any scaling, don't do any interpolation.  this
  * fixes a problem where hyper/bilinear filtering causes blurriness in
- * some images.  http://bugzilla.xfce.org/show_bug.cgi?id=2939 */
+ * some images.  https://bugzilla.xfce.org/show_bug.cgi?id=2939 */
 if(XFCE_BACKDROP_IMAGE_TILED == istyle
|| XFCE_BACKDROP_IMAGE_CENTERED == istyle)
 {
diff --git a/xfdesktop.1 b/xfdesktop.1
index 8ea2980..74c2dcc 100644
--- a/xfdesktop.1
+++ b/xfdesktop.1
@@ -1,4 +1,4 @@
-.TH XFDESKTOP 1 "August 2014"
+.TH XFDESKTOP 1 "July 2019"
 
 .SH NAME
 xfdesktop \- The Xfce 4 Desktop Environment's desktop manager
@@ -95,7 +95,7 @@ If this environment variable is not present, it defaults to
 
 .SH BUGS
 Please report any bugs to
-.IR http://bugzilla.xfce.org/ .
+.IR https://bugzilla.xfce.org/ .
 .br
 Development discussion should be conducted on the
 .IR xfce4-...@xfce.org
@@ -106,7 +106,7 @@ Usage-related questions should be directed to the
 mailing list.
 
 .SH HOMEPAGE
-.I http://xfce.org/
+.I https://xfce.org/
 
 .SH AUTHOR
 Jasper Huijsmans , Benedikt Meurer

-- 
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/02: Use https where possible

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

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

commit f8a54167410b4c2395c23c6d5ab89e78095e283c
Author: Andre Miranda 
Date:   Sat Jul 13 18:22:52 2019 -0300

Use https where possible
---
 HACKING |  4 ++--
 README  | 16 
 autogen.sh  |  2 +-
 configure.ac.in |  2 +-
 docs/reference/thunarx/thunarx-docs.xml | 12 ++--
 org.xfce.thunar.appdata.xml.in  |  6 +++---
 org.xfce.thunar.policy.in.in|  2 +-
 plugins/thunar-wallpaper/twp-provider.c |  2 +-
 thunar/thunar-exec.c|  2 +-
 thunar/thunar-file.c|  2 +-
 thunar/thunar-io-scan-directory.c   |  2 +-
 thunar/thunar-path-entry.c  |  4 ++--
 thunar/thunar-shortcuts-view.c  |  2 +-
 thunar/thunar-window.c  |  4 ++--
 14 files changed, 31 insertions(+), 31 deletions(-)

diff --git a/HACKING b/HACKING
index ca01ce7..4c0d0aa 100644
--- a/HACKING
+++ b/HACKING
@@ -1,7 +1,7 @@
 Bug tracking system
 ===
 
-Thunar uses the Xfce bug tracking system at http://bugzilla.xfce.org/,
+Thunar uses the Xfce bug tracking system at https://bugzilla.xfce.org/,
 hosted and maintained by the Xfce project.
 
 
@@ -23,7 +23,7 @@ Feature requests
 
 
 Please file feature requests to the Xfce bug tracking system
-(http://buzilla.xfce.org, product Thunar) with a Severity of
+(https://buzilla.xfce.org, product Thunar) with a Severity of
 enhancement. Make sure that your feature request wasn't reported
 already before; requesting a feature several times won't increase
 the changed that it gets added!
diff --git a/README b/README
index 4ab6c1b..be4ca73 100644
--- a/README
+++ b/README
@@ -60,32 +60,32 @@ Standards compliance
 Thunar supports the following standards/specifications:
 
   * XDG Base Directory Specification
-http://freedesktop.org/wiki/Standards_2fbasedir_2dspec
+https://freedesktop.org/wiki/Specifications/basedir-spec
 
   * Shared MIME Database Specification
-http://freedesktop.org/wiki/Standards_2fshared_2dmime_2dinfo_2dspec
+https://freedesktop.org/wiki/Specifications/shared-mime-info-spec
 
   * X Direct Save (XDS) Protocol for the X Window System
-http://freedesktop.org/wiki/Standards_2fdirect_2dsave
+https://freedesktop.org/wiki/Specifications/direct-save
 
   * Icon Theme Specification
-http://freedesktop.org/wiki/Standards_2ficon_2dtheme_2dspec
+https://freedesktop.org/wiki/Specifications/icon-theme-spec
 
   * Thumbnail Managing Standard
-http://jens.triq.net/thumbnail-spec/index.html
+https://freedesktop.org/wiki/Specifications/thumbnails
 
   * File URI Specification
-http://freedesktop.org/wiki/Standards_2ffile_2duri_2dspec
+https://freedesktop.org/wiki/Specifications/file-uri-spec
 
   * Desktop Trash Can Specification
-http://freedesktop.org/wiki/Standards_2ftrash_2dspec
+https://freedesktop.org/wiki/Specifications/trash-spec
 
 
 How to report bugs?
 ===
 
 Bugs should be reported to the Xfce bug tracking system
-(http://bugzilla.xfce.org, product Thunar). You will need to
+(https://bugzilla.xfce.org, product Thunar). You will need to
 create an account for yourself.
 
 Please read the HACKING file for information on where to send
diff --git a/autogen.sh b/autogen.sh
index e5e6f6b..2c6f794 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -24,7 +24,7 @@
 autogen.sh: You don't seem to have the Xfce development tools installed on
 your system, which are required to build this software.
 Please install the xfce4-dev-tools package first, it is available
-from http://www.xfce.org/.
+from https://www.xfce.org/.
 EOF
   exit 1
 }
diff --git a/configure.ac.in b/configure.ac.in
index 8c55181..eaefdec 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -41,7 +41,7 @@ dnl ***
 dnl *** Initialize autoconf ***
 dnl ***
 AC_COPYRIGHT([Copyright (c) 2004-2015 The Thunar development team. All rights 
reserved.])
-AC_INIT([Thunar], [thunar_version], [http://bugzilla.xfce.org/], [Thunar])
+AC_INIT([Thunar], [thunar_version], [https://bugzilla.xfce.org/], [Thunar])
 AC_PREREQ([2.60])
 AC_CONFIG_MACRO_DIR([m4])
 AC_CANONICAL_TARGET()
diff --git a/docs/reference/thunarx/thunarx-docs.xml 
b/docs/reference/thunarx/thunarx-docs.xml
index d41bb2b..4a1f2cb 100644
--- a/docs/reference/thunarx/thunarx-docs.xml
+++ b/docs/reference/thunarx/thunarx-docs.xml
@@ -42,7 +42,7 @@
 any later version published by the Free Software Foundation; with no
 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
 Texts. The complete 

[Xfce4-commits] [xfce/thunar] branch master updated (c53d11d -> f81711e)

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

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

  from  c53d11d   Dont restart the folder monitor on each refresh - Fixes 
"ghost files after moving files" (Bug #13364)
   new  f8a5416   Use https where possible
   new  f81711e   Update copyright year

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:
 HACKING |  4 ++--
 README  | 16 
 autogen.sh  |  2 +-
 configure.ac.in |  4 ++--
 docs/reference/thunarx/thunarx-docs.xml | 12 ++--
 org.xfce.thunar.appdata.xml.in  |  6 +++---
 org.xfce.thunar.policy.in.in|  2 +-
 plugins/thunar-wallpaper/twp-provider.c |  2 +-
 thunar/thunar-application.c |  2 +-
 thunar/thunar-dialogs.c |  4 ++--
 thunar/thunar-exec.c|  2 +-
 thunar/thunar-file.c|  2 +-
 thunar/thunar-io-scan-directory.c   |  2 +-
 thunar/thunar-path-entry.c  |  4 ++--
 thunar/thunar-shortcuts-view.c  |  2 +-
 thunar/thunar-window.c  |  4 ++--
 16 files changed, 35 insertions(+), 35 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] 02/02: Update copyright year

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

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

commit f81711e88e2a861d6f61b68b0dd4f58a497d0418
Author: Andre Miranda 
Date:   Sat Jul 13 18:23:08 2019 -0300

Update copyright year
---
 configure.ac.in | 2 +-
 thunar/thunar-application.c | 2 +-
 thunar/thunar-dialogs.c | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index eaefdec..9bb106d 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -40,7 +40,7 @@ m4_define([thunar_debug_default], 
[ifelse(thunar_version_tag(), [git], [yes], [m
 dnl ***
 dnl *** Initialize autoconf ***
 dnl ***
-AC_COPYRIGHT([Copyright (c) 2004-2015 The Thunar development team. All rights 
reserved.])
+AC_COPYRIGHT([Copyright (c) 2004-2019 The Thunar development team. All rights 
reserved.])
 AC_INIT([Thunar], [thunar_version], [https://bugzilla.xfce.org/], [Thunar])
 AC_PREREQ([2.60])
 AC_CONFIG_MACRO_DIR([m4])
diff --git a/thunar/thunar-application.c b/thunar/thunar-application.c
index 59fb334..004bcbd 100644
--- a/thunar/thunar-application.c
+++ b/thunar/thunar-application.c
@@ -469,7 +469,7 @@ thunar_application_handle_local_options (GApplication *gapp,
   if (G_UNLIKELY (opt_version))
 {
   g_print ("%s %s (Xfce %s)\n\n", PACKAGE_NAME, PACKAGE_VERSION, 
xfce_version_string ());
-  g_print ("%s\n", "Copyright (c) 2004-2015");
+  g_print ("%s\n", "Copyright (c) 2004-2019");
   g_print ("\t%s\n\n", _("The Thunar development team. All rights 
reserved."));
   g_print ("%s\n\n", _("Written by Benedikt Meurer ."));
   g_print (_("Please report bugs to <%s>."), PACKAGE_BUGREPORT);
diff --git a/thunar/thunar-dialogs.c b/thunar/thunar-dialogs.c
index 0083bdc..c9786d8 100644
--- a/thunar/thunar-dialogs.c
+++ b/thunar/thunar-dialogs.c
@@ -258,8 +258,8 @@ thunar_dialogs_show_about (GtkWindow   *parent,
  "copyright", "Copyright \302\251 2004-2011 Benedikt 
Meurer\n"
   "Copyright \302\251 2009-2011 Jannis 
Pohlmann\n"
   "Copyright \302\251 2009-2012 Nick 
Schermer\n"
-  "Copyright \302\251 2017-2018 Alexander 
Schwinn\n"
-  "Copyright \302\251 2017-2018 Andre 
Miranda",
+  "Copyright \302\251 2017-2019 Alexander 
Schwinn\n"
+  "Copyright \302\251 2017-2019 Andre 
Miranda",
  "destroy-with-parent", TRUE,
  "documenters", documenters,
  "license", XFCE_LICENSE_GPL,

-- 
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-screensaver] 01/01: Integrate xfce4-screensaver-configure with screensaver preferences

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

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit 28a6857f891cac6d73185f91d4ac99b547ecd4f6
Author: Sean Davis 
Date:   Sat Jul 13 17:20:27 2019 -0400

Integrate xfce4-screensaver-configure with screensaver preferences
---
 src/Makefile.am  |  4 ++
 src/xfce4-screensaver-configure  | 66 ++--
 src/xfce4-screensaver-preferences.c  | 61 --
 src/xfce4-screensaver-preferences.ui | 99 ++--
 4 files changed, 186 insertions(+), 44 deletions(-)

diff --git a/src/Makefile.am b/src/Makefile.am
index 0147413..8ee7b55 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -41,6 +41,10 @@ bin_PROGRAMS = \
xfce4-screensaver-preferences  \
$(NULL)
 
+bin_SCRIPTS = \
+   xfce4-screensaver-configure\
+   $(NULL)
+
 libexec_PROGRAMS = \
xfce4-screensaver-dialog \
xfce4-screensaver-gl-helper  \
diff --git a/src/xfce4-screensaver-configure b/src/xfce4-screensaver-configure
index 4ebf33c..2a110f6 100755
--- a/src/xfce4-screensaver-configure
+++ b/src/xfce4-screensaver-configure
@@ -48,7 +48,7 @@ class XfconfChannel:
 self.prefix = prefix
 
 def _get_property(self, prop, default=""):
-prop = "%s%s" % (self.prefix, prop)
+prop = "%s/%s" % (self.prefix, prop)
 command = ["xfconf-query", "-c", self.channel, "-p", prop, "-l", "-v"]
 response = subprocess.check_output(command).decode("utf-8")
 if prop in response:
@@ -57,11 +57,15 @@ class XfconfChannel:
 return default
 
 def _set_property(self, prop_type, prop, value):
-prop = "%s%s" % (self.prefix, prop)
+prop = "%s/%s" % (self.prefix, prop)
 command = ["xfconf-query", "-c", self.channel, "-p",
prop, "-n", "-t", prop_type, "-s", str(value)]
 return subprocess.call(command)
 
+def restore_defaults(self):
+command = ["xfconf-query", "-c", self.channel, "-p", self.prefix, 
"-r", "-R"]
+return subprocess.call(command)
+
 def get_boolean(self, prop, default):
 value = self._get_property(prop, default)
 if value in ["true", True]:
@@ -329,7 +333,7 @@ class ConfigurationWindow(Gtk.Window):
 self.inner_margin = 12
 self.screensaver_args = parsed["arguments"]
 self.xfconf_channel = XfconfChannel(
-"xfce4-screensaver", "/screensavers/%s/" % parsed["name"])
+"xfce4-screensaver", "/screensavers/%s" % parsed["name"])
 
 self.notebook = Gtk.Notebook.new()
 self.grid = Gtk.Grid.new()
@@ -556,6 +560,7 @@ class ConfigurationWindow(Gtk.Window):
 color = self.defaults[widget_id]
 widget.set_rgba(hex_to_rgba(color))
 self.set_string(widget_id, color)
+self.xfconf_channel.restore_defaults()
 
 def write_arguments(self):
 arguments = []
@@ -622,10 +627,30 @@ def get_key(dct, keyname, default=""):
 
 
 def configure(parsed):
-win = ConfigurationWindow(parsed)
-win.connect("destroy", Gtk.main_quit)
-win.show_all()
-Gtk.main()
+try:
+win = ConfigurationWindow(parsed)
+win.connect("destroy", Gtk.main_quit)
+win.show_all()
+Gtk.main()
+except KeyboardInterrupt:
+pass
+
+
+def show_fatal(primary, secondary):
+if not graphical:
+print("%s: %s" % (primary, secondary))
+sys.exit(1)
+try:
+dlg = Gtk.MessageDialog(None, 0, Gtk.MessageType.ERROR,
+Gtk.ButtonsType.OK, primary)
+dlg.format_secondary_text(secondary)
+dlg.connect("close", Gtk.main_quit)
+dlg.connect("response", Gtk.main_quit)
+dlg.show_all()
+Gtk.main()
+except KeyboardInterrupt:
+pass
+sys.exit(1)
 
 
 if __name__ == "__main__":
@@ -638,32 +663,43 @@ if __name__ == "__main__":
 help=_('check if screensaver is configurable'))
 args = parser.parse_args()
 
-fname = get_filename(args.screensaver)
+graphical = not args.check
+
+saver = args.screensaver
+if saver.startswith("screensavers-"):
+saver = saver[13:]
+
+primary = _("Unable to configure screensaver")
+
+fname = get_filename(saver)
 if fname is None:
-print(_("No file found for screensaver %s") % args.screensaver)
+show_fatal(primary, _("File not found: %s") % saver)
 sys.exit(1)
 
 if fname.endswith(".xml"):
-obj = XmlScreensaverSettings(args.screensaver)
+obj = XmlScreensaverSettings(saver)
 elif fname.endswith(".desktop"):
-obj = DesktopScreensaverSettings(args.screensaver)
+obj = DesktopScreensaverSettings(saver)
 else:
   

[Xfce4-commits] [apps/xfce4-screensaver] branch master updated (8dec3c0 -> 28a6857)

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

bluesabre pushed a 
change to branch 
master
in repository apps/xfce4-screensaver.

  from  8dec3c0   Suppress deprecation warning for set_wmclass
   new  28a6857   Integrate xfce4-screensaver-configure with screensaver 
preferences

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


Summary of changes:
 src/Makefile.am  |  4 ++
 src/xfce4-screensaver-configure  | 66 ++--
 src/xfce4-screensaver-preferences.c  | 61 --
 src/xfce4-screensaver-preferences.ui | 99 ++--
 4 files changed, 186 insertions(+), 44 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-screensaver] 01/01: Suppress deprecation warning for set_wmclass

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

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit 8dec3c0f824c814d151715188b0b71915e56680f
Author: Sean Davis 
Date:   Sat Jul 13 15:40:27 2019 -0400

Suppress deprecation warning for set_wmclass
---
 src/xfce4-screensaver-configure | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/xfce4-screensaver-configure b/src/xfce4-screensaver-configure
index c10f5a0..4ebf33c 100755
--- a/src/xfce4-screensaver-configure
+++ b/src/xfce4-screensaver-configure
@@ -24,6 +24,7 @@ import os
 import subprocess
 import sys
 import xml.etree.ElementTree as ET
+import warnings
 
 from collections import OrderedDict
 
@@ -37,6 +38,8 @@ from gi.repository import GLib
 from gi.repository import Gtk
 from gi.repository import Gdk
 
+warnings.filterwarnings("ignore")
+
 
 class XfconfChannel:
 
@@ -263,7 +266,6 @@ class XmlScreensaverSettings(ScreensaverSettings):
 element_type = "property"
 return (element_id, element_type)
 
-
 def parse_element(self, element):
 text = None
 options = None

-- 
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-screensaver] branch master updated (659651e -> 8dec3c0)

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

bluesabre pushed a 
change to branch 
master
in repository apps/xfce4-screensaver.

  from  659651e   Various pylint fixes
   new  8dec3c0   Suppress deprecation warning for set_wmclass

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


Summary of changes:
 src/xfce4-screensaver-configure | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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


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

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

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

commit 74b7e0ab2729ad3621b30d55d4b2c3eef07b72b6
Author: Anonymous 
Date:   Sat Jul 13 18:32:21 2019 +0200

I18n: Update translation lt (100%).

78 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/lt.po b/po/lt.po
index 62b5e4f..b57f7fa 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-02-24 00:31+0100\n"
-"PO-Revision-Date: 2019-02-25 12:51+\n"
+"PO-Revision-Date: 2019-07-13 11:48+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\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] [apps/xfmpc] branch master updated (cf6986a -> 74b7e0a)

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

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

  from  cf6986a   Use 'multimedia-player' icon instead of 'stock_volume' 
(Bug #15636)
   new  74b7e0a   I18n: Update translation lt (100%).

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


Summary of changes:
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


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

2019-07-13 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 998eabc6c82e403110bbfc3107c40e7783864674
Author: Anonymous 
Date:   Sat Jul 13 18:32:12 2019 +0200

I18n: Update translation lt (100%).

402 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/lt.po b/po/lt.po
index 0ce95d6..a3bcc90 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-03-21 18:31+0100\n"
-"PO-Revision-Date: 2019-03-21 20:22+\n"
+"PO-Revision-Date: 2019-07-13 11:57+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\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] [apps/xfce4-taskmanager] 01/01: I18n: Update translation lt (100%).

2019-07-13 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-taskmanager.

commit 654b70552bc7caf2ee418a89c75235e220ec7825
Author: Anonymous 
Date:   Sat Jul 13 18:32:04 2019 +0200

I18n: Update translation lt (100%).

88 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/lt.po b/po/lt.po
index 7ef5487..4d9ae59 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-04-25 00:32+0200\n"
-"PO-Revision-Date: 2019-04-25 08:43+\n"
+"PO-Revision-Date: 2019-07-13 11:48+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\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] [apps/xfburn] branch master updated (027eb99 -> 529d433)

2019-07-13 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  027eb99   I18n: Update translation eu (96%).
   new  529d433   I18n: Update translation lt (100%).

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


Summary of changes:
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


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

2019-07-13 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 529d43344acc21747469adc946684c1091a541dc
Author: Anonymous 
Date:   Sat Jul 13 18:31:38 2019 +0200

I18n: Update translation lt (100%).

306 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/lt.po b/po/lt.po
index 18aa042..a9e0b19 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-09-24 00:31+0200\n"
-"PO-Revision-Date: 2018-09-24 09:11+\n"
+"PO-Revision-Date: 2019-07-13 11:56+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\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] [apps/xfce4-terminal] branch master updated (8f794e2 -> 998eabc)

2019-07-13 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  8f794e2   I18n: Update translation fr (100%).
   new  998eabc   I18n: Update translation lt (100%).

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


Summary of changes:
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


[Xfce4-commits] [apps/xfce4-taskmanager] branch master updated (876515a -> 654b705)

2019-07-13 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-taskmanager.

  from  876515a   I18n: Update translation da (100%).
   new  654b705   I18n: Update translation lt (100%).

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


Summary of changes:
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


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

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

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

commit 4d36ab966a426167b4bcafe6c7397330ff6391e7
Author: Anonymous 
Date:   Sat Jul 13 18:31:45 2019 +0200

I18n: Update translation lt (100%).

119 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index 37bbb18..7f45d43 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -4,14 +4,14 @@
 # 
 # Translators:
 # Algimantas Margevičius , 2012
-# Moo, 2015-2017
+# Moo, 2015-2017,2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-05-07 00:31+0200\n"
-"PO-Revision-Date: 2018-09-14 00:15+\n"
-"Last-Translator: Nick Schermer \n"
+"POT-Creation-Date: 2019-06-09 18:31+0200\n"
+"PO-Revision-Date: 2019-07-13 11:48+\n"
+"Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -20,7 +20,7 @@ msgstr ""
 "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 
11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n 
% 1 != 0 ? 2: 3);\n"
 
 #: ../panel-plugin/xfce4-dict-plugin.desktop.in.h:1
-#: ../src/xfce4-dict.desktop.in.h:1 ../lib/gui.c:805 ../lib/prefs.c:266
+#: ../src/xfce4-dict.desktop.in.h:1 ../lib/gui.c:783 ../lib/prefs.c:265
 msgid "Dictionary"
 msgstr "Žodynas"
 
@@ -28,17 +28,17 @@ msgstr "Žodynas"
 msgid "A plugin to query different dictionaries."
 msgstr "Įskiepis skirtas užklausti skirtingus žodynus."
 
-#: ../panel-plugin/xfce4-dict-plugin.c:263
-#: ../panel-plugin/xfce4-dict-plugin.c:391 ../src/xfce4-dict.c:196
-#: ../lib/spell.c:241 ../lib/gui.c:540
+#: ../panel-plugin/xfce4-dict-plugin.c:269
+#: ../panel-plugin/xfce4-dict-plugin.c:397 ../src/xfce4-dict.c:196
+#: ../lib/spell.c:241 ../lib/gui.c:539
 msgid "Ready"
 msgstr "Pasiruošęs"
 
-#: ../panel-plugin/xfce4-dict-plugin.c:325
+#: ../panel-plugin/xfce4-dict-plugin.c:331
 msgid "Look up a word"
 msgstr "Ieškoti žodžio"
 
-#: ../panel-plugin/xfce4-dict-plugin.c:364 ../lib/gui.c:836
+#: ../panel-plugin/xfce4-dict-plugin.c:370 ../lib/gui.c:814
 msgid "Search term"
 msgstr "Paieškos frazė"
 
@@ -87,7 +87,7 @@ msgstr "Apie klaidas pranešti <%s>."
 msgid "Dictionary Client"
 msgstr "Žodyno klientas"
 
-#: ../src/xfce4-dict.desktop.in.h:3 ../lib/gui.c:1019
+#: ../src/xfce4-dict.desktop.in.h:3 ../lib/gui.c:997
 msgid "A client program to query different dictionaries."
 msgstr "Kliento programa įvairių žodynų užklausimui."
 
@@ -139,35 +139,35 @@ msgstr "Įvesta neteisingai"
 msgid "Process failed (%s)"
 msgstr "Procesas nepavyko (%s)"
 
-#: ../lib/speedreader.c:78
+#: ../lib/speedreader.c:77
 msgid "P_ause"
 msgstr "P_ristabdyti"
 
-#: ../lib/speedreader.c:79
+#: ../lib/speedreader.c:78
 msgid "_Resume"
 msgstr "P_ratęsti"
 
-#: ../lib/speedreader.c:254
+#: ../lib/speedreader.c:253
 msgid "S_top"
 msgstr "S_tabdyti"
 
-#: ../lib/speedreader.c:262
+#: ../lib/speedreader.c:261
 msgid "Running"
 msgstr "Vykdoma"
 
-#: ../lib/speedreader.c:265
+#: ../lib/speedreader.c:264
 msgid "Finished"
 msgstr "Baigta"
 
-#: ../lib/speedreader.c:266
+#: ../lib/speedreader.c:265
 msgid "_Back"
 msgstr "At_gal"
 
-#: ../lib/speedreader.c:274
+#: ../lib/speedreader.c:273
 msgid "Speed Reader"
 msgstr "Greitasis skaitymas"
 
-#: ../lib/speedreader.c:373
+#: ../lib/speedreader.c:372
 msgid "You must enter a text."
 msgstr "Turite įvesti tekstą."
 
@@ -195,43 +195,43 @@ msgid ""
 "does this by flashing words at a rapid rate on the screen."
 msgstr "Tai yra paprasta greitojo skaitymo programa, kuri padės jums išmokti 
skaityti greičiau. Ji ekrane greitai rodys žodžius."
 
-#: ../lib/speedreader.c:612
+#: ../lib/speedreader.c:613
 msgid "_Words per Minute:"
 msgstr "_Žodžiai per minutę:"
 
-#: ../lib/speedreader.c:619
+#: ../lib/speedreader.c:620
 msgid "_Mark Paragraphs"
 msgstr "_Pažymėti paragrafus"
 
-#: ../lib/speedreader.c:626
+#: ../lib/speedreader.c:627
 msgid "Word _Grouping:"
 msgstr "Ž_odžių grupavimas:"
 
-#: ../lib/speedreader.c:643
+#: ../lib/speedreader.c:644
 msgid "_Font Size:"
 msgstr "_Šrifto dydis:"
 
-#: ../lib/speedreader.c:664
+#: ../lib/speedreader.c:665
 msgid ""
 "Enter some text here you would like to read.\n"
 "\n"
 "Be relaxed and make yourself comfortable, then press Start to begin speed 
reading."
 msgstr "Įveskite tekstą kurį norėtumėte skaityti.\n\nAtsipalaiduokite ir 
įsitaisykite, norėdami pradėti greitąjį skaitymą spauskite „Paleisti“."
 
-#: ../lib/speedreader.c:677
+#: ../lib/speedreader.c:678
 msgid "Load the contents of a file"
 msgstr "Įkelti 

[Xfce4-commits] [apps/xfce4-dict] branch master updated (2c77c53 -> 4d36ab9)

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

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

  from  2c77c53   I18n: Update translation th (100%).
   new  4d36ab9   I18n: Update translation lt (100%).

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


Summary of changes:
 po/lt.po | 180 +++
 1 file changed, 90 insertions(+), 90 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/squeeze] 01/01: I18n: Update translation lt (100%).

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

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

commit e791db890f1e4d820bf6a4459f79857f2e84f6a6
Author: Anonymous 
Date:   Sat Jul 13 18:31:30 2019 +0200

I18n: Update translation lt (100%).

93 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/lt.po b/po/lt.po
index ebe3714..c85ae83 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-10-31 18:30+0100\n"
-"PO-Revision-Date: 2018-10-25 10:37+\n"
+"PO-Revision-Date: 2019-07-13 11:48+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\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] [apps/squeeze] branch master updated (210e1ba -> e791db8)

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

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

  from  210e1ba   I18n: Add new translation hy_AM (100%).
   new  e791db8   I18n: Update translation lt (100%).

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


Summary of changes:
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


[Xfce4-commits] [apps/ristretto] 03/06: I18n: Update translation hr (100%).

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

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

commit c676d82b799b1c15d309b12ebec57b0724c090cc
Author: Edin Veskovic 
Date:   Sat Jul 13 18:31:23 2019 +0200

I18n: Update translation hr (100%).

193 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/hr.po | 304 +--
 1 file changed, 139 insertions(+), 165 deletions(-)

diff --git a/po/hr.po b/po/hr.po
index 9097265..7dee7ef 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Edin Veskovic , 2019
 # Edin Veskovic , 2015,2017
 # Edin Veskovic , 2014
 # Ivica  Kolić , 2010
@@ -12,9 +13,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2019-04-16 18:32+0200\n"
-"PO-Revision-Date: 2019-04-16 16:32+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2019-07-13 00:31+0200\n"
+"PO-Revision-Date: 2019-07-13 14:24+\n"
+"Last-Translator: Edin Veskovic \n"
 "Language-Team: Croatian 
(http://www.transifex.com/xfce/xfce-apps/language/hr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -51,517 +52,517 @@ msgstr "%s: %s\nTry %s --help da biste vidjeli cijelu 
listu dostupnih opcija nar
 msgid "Image Viewer"
 msgstr "Preglednik slika"
 
-#: ../src/main_window.c:369
+#: ../src/main_window.c:371
 msgid "_File"
 msgstr "_Datoteka"
 
 #. Icon-name
-#: ../src/main_window.c:375
+#: ../src/main_window.c:377
 msgid "_Open..."
 msgstr "_Otvori..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:377
+#: ../src/main_window.c:379
 msgid "Open an image"
 msgstr "Otvori sliku"
 
 #. Icon-name
-#: ../src/main_window.c:381
+#: ../src/main_window.c:383
 msgid "_Save copy..."
 msgstr "_Spremi kopiju..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:383
+#: ../src/main_window.c:385
 msgid "Save a copy of the image"
 msgstr "Spremi kopiju slike"
 
 #. Icon-name
-#: ../src/main_window.c:387
+#: ../src/main_window.c:389
 msgid "_Properties..."
 msgstr "_Svojstva..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:389
+#: ../src/main_window.c:391
 msgid "Show file properties"
 msgstr "Prikaži svojstva datoteke"
 
 #. Icon-name
-#: ../src/main_window.c:393 ../src/main_window.c:412
+#: ../src/main_window.c:395 ../src/main_window.c:414
 msgid "_Edit"
 msgstr "_Uredi"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:395
+#: ../src/main_window.c:397
 msgid "Edit this image"
 msgstr "Uredi ovu sliku"
 
 #. Icon-name
-#: ../src/main_window.c:399 ../src/preferences_dialog.c:541
+#: ../src/main_window.c:401 ../src/preferences_dialog.c:541
 #: ../src/properties_dialog.c:325
 msgid "_Close"
 msgstr "_Zatvori"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:401
+#: ../src/main_window.c:403
 msgid "Close this image"
 msgstr "Zatvori ovu sliku"
 
 #. Icon-name
-#: ../src/main_window.c:405
+#: ../src/main_window.c:407
 msgid "_Quit"
 msgstr "_Isključi"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:407
+#: ../src/main_window.c:409
 msgid "Quit Ristretto"
 msgstr "Isključi Ristretto"
 
-#: ../src/main_window.c:418
+#: ../src/main_window.c:420
 msgid "_Open with"
 msgstr "_Otvori pomoću"
 
-#: ../src/main_window.c:424
-msgid "_Sorting"
-msgstr "_Sortiranje"
+#: ../src/main_window.c:426
+msgid "_Sort by"
+msgstr "_Sortiraj prema"
 
 #. Icon-name
-#: ../src/main_window.c:430
+#: ../src/main_window.c:432
 msgid "_Delete"
 msgstr "_Izbriši"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:432
+#: ../src/main_window.c:434
 msgid "Delete this image from disk"
 msgstr "Izbriši ovu sliku sa diska"
 
 #. Icon-name
-#: ../src/main_window.c:436
+#: ../src/main_window.c:438
 msgid "_Clear private data..."
 msgstr "_Očisti privatne podatke..."
 
 #. Icon-name
-#: ../src/main_window.c:442
+#: ../src/main_window.c:444
 msgid "_Preferences..."
 msgstr "_Osobitosti..."
 
-#: ../src/main_window.c:449
+#: ../src/main_window.c:451
 msgid "_View"
 msgstr "_Pogled"
 
 #. Icon-name
-#: ../src/main_window.c:455
+#: ../src/main_window.c:457
 msgid "_Fullscreen"
 msgstr "_Cijeli zaslon"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:457
+#: ../src/main_window.c:459
 msgid "Switch to fullscreen"
 msgstr "Prebaci na cijeli zaslon"
 
 #. Icon-name
-#: ../src/main_window.c:461
+#: ../src/main_window.c:463
 msgid "_Leave Fullscreen"
 msgstr "_Napusti cijeli zaslon"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:463
+#: ../src/main_window.c:465
 msgid "Leave Fullscreen"
 msgstr "Napusti cijeli zaslon"
 
 #. Icon-name
-#: ../src/main_window.c:467
+#: 

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

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

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

commit 6d34cd4715a8a8e01cc4b9a9fe339869ef69ddbc
Author: 黃柏諺 
Date:   Sat Jul 13 18:31:23 2019 +0200

I18n: Update translation zh_TW (100%).

193 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/zh_TW.po | 304 +++-
 1 file changed, 139 insertions(+), 165 deletions(-)

diff --git a/po/zh_TW.po b/po/zh_TW.po
index 4b8f7dc..2f80ed6 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -5,15 +5,16 @@
 # Translators:
 # Hsiu-Ming Chang , 2016
 # Cheng-Chia Tseng , 2011
-# Jeff Huang , 2015-2017
+# 黃柏諺 , 2015-2017
 # Walter Cheuk , 2014
+# 黃柏諺 , 2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2019-04-16 18:32+0200\n"
-"PO-Revision-Date: 2019-05-12 08:55+\n"
-"Last-Translator: Hsiu-Ming Chang \n"
+"POT-Creation-Date: 2019-07-13 00:31+0200\n"
+"PO-Revision-Date: 2019-07-13 13:13+\n"
+"Last-Translator: 黃柏諺 \n"
 "Language-Team: Chinese (Taiwan) 
(http://www.transifex.com/xfce/xfce-apps/language/zh_TW/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -50,517 +51,517 @@ msgstr "%s: %s\n\n試試 %s --help 來查看可用指令\n列選項的完整清
 msgid "Image Viewer"
 msgstr "影像檢視器"
 
-#: ../src/main_window.c:369
+#: ../src/main_window.c:371
 msgid "_File"
 msgstr "檔案(_F)"
 
 #. Icon-name
-#: ../src/main_window.c:375
+#: ../src/main_window.c:377
 msgid "_Open..."
 msgstr "開啟(_O)..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:377
+#: ../src/main_window.c:379
 msgid "Open an image"
 msgstr "開啟影像"
 
 #. Icon-name
-#: ../src/main_window.c:381
+#: ../src/main_window.c:383
 msgid "_Save copy..."
 msgstr "儲存副本(_S)..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:383
+#: ../src/main_window.c:385
 msgid "Save a copy of the image"
 msgstr "儲存一份該影像的副本"
 
 #. Icon-name
-#: ../src/main_window.c:387
+#: ../src/main_window.c:389
 msgid "_Properties..."
 msgstr "屬性(_P)..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:389
+#: ../src/main_window.c:391
 msgid "Show file properties"
 msgstr "顯示檔案屬性"
 
 #. Icon-name
-#: ../src/main_window.c:393 ../src/main_window.c:412
+#: ../src/main_window.c:395 ../src/main_window.c:414
 msgid "_Edit"
 msgstr "編輯(_E)"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:395
+#: ../src/main_window.c:397
 msgid "Edit this image"
 msgstr "編輯此影像"
 
 #. Icon-name
-#: ../src/main_window.c:399 ../src/preferences_dialog.c:541
+#: ../src/main_window.c:401 ../src/preferences_dialog.c:541
 #: ../src/properties_dialog.c:325
 msgid "_Close"
 msgstr "關閉(_C)"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:401
+#: ../src/main_window.c:403
 msgid "Close this image"
 msgstr "關閉此影像"
 
 #. Icon-name
-#: ../src/main_window.c:405
+#: ../src/main_window.c:407
 msgid "_Quit"
 msgstr "退出(_Q)"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:407
+#: ../src/main_window.c:409
 msgid "Quit Ristretto"
 msgstr "退出 Ristretto"
 
-#: ../src/main_window.c:418
+#: ../src/main_window.c:420
 msgid "_Open with"
 msgstr "以此開啟(_O):"
 
-#: ../src/main_window.c:424
-msgid "_Sorting"
+#: ../src/main_window.c:426
+msgid "_Sort by"
 msgstr "排序(_S)"
 
 #. Icon-name
-#: ../src/main_window.c:430
+#: ../src/main_window.c:432
 msgid "_Delete"
 msgstr "刪除(_D)"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:432
+#: ../src/main_window.c:434
 msgid "Delete this image from disk"
 msgstr "從磁碟刪除此影像"
 
 #. Icon-name
-#: ../src/main_window.c:436
+#: ../src/main_window.c:438
 msgid "_Clear private data..."
 msgstr "清除隱私資料(_C)..."
 
 #. Icon-name
-#: ../src/main_window.c:442
+#: ../src/main_window.c:444
 msgid "_Preferences..."
 msgstr "偏好設定(_P)..."
 
-#: ../src/main_window.c:449
+#: ../src/main_window.c:451
 msgid "_View"
 msgstr "檢視(_V)"
 
 #. Icon-name
-#: ../src/main_window.c:455
+#: ../src/main_window.c:457
 msgid "_Fullscreen"
 msgstr "全螢幕(_F)"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:457
+#: ../src/main_window.c:459
 msgid "Switch to fullscreen"
 msgstr "切換為全螢幕"
 
 #. Icon-name
-#: ../src/main_window.c:461
+#: ../src/main_window.c:463
 msgid "_Leave Fullscreen"
 msgstr "離開全螢幕(_L)"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:463
+#: ../src/main_window.c:465
 msgid "Leave Fullscreen"
 msgstr "離開全螢幕"
 
 #. Icon-name
-#: ../src/main_window.c:467
+#: ../src/main_window.c:469
 msgid "Set as _Wallpaper..."
 msgstr "設定為桌布(_W)..."
 
-#: ../src/main_window.c:474
+#: ../src/main_window.c:476
 msgid "_Zoom"
 msgstr "遠近(_Z)"
 
 #. Icon-name
-#: ../src/main_window.c:480
+#: ../src/main_window.c:482
 msgid "Zoom _In"
 msgstr "拉近(_I)"
 
 #. Label-text
 #. Keyboard 

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

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

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

commit 9618645c7aa354c7aa288871b35c88964ddb7ced
Author: Michal Várady 
Date:   Sat Jul 13 18:31:22 2019 +0200

I18n: Update translation cs (100%).

193 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/cs.po | 305 +--
 1 file changed, 139 insertions(+), 166 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index 7752d42..6b306c9 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -3,7 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Michal Várady , 2015-2016
+# Michal Várady , 2015-2016,2019
 # Miro Hrončok , 2007
 # Pavel Borecki , 2018
 # Petr Šimáček , 2017
@@ -11,9 +11,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2019-04-16 18:32+0200\n"
-"PO-Revision-Date: 2019-04-16 16:32+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2019-07-13 00:31+0200\n"
+"PO-Revision-Date: 2019-07-13 13:16+\n"
+"Last-Translator: Michal Várady \n"
 "Language-Team: Czech (http://www.transifex.com/xfce/xfce-apps/language/cs/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -50,517 +50,517 @@ msgstr "%s: %s\nPro zobrazení seznamu všech 
dostupných\nparametrů použijte
 msgid "Image Viewer"
 msgstr "Prohlížeč obrázků"
 
-#: ../src/main_window.c:369
+#: ../src/main_window.c:371
 msgid "_File"
 msgstr "_Soubor"
 
 #. Icon-name
-#: ../src/main_window.c:375
+#: ../src/main_window.c:377
 msgid "_Open..."
 msgstr "_Otevřít…"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:377
+#: ../src/main_window.c:379
 msgid "Open an image"
 msgstr "Načíst obrázek"
 
 #. Icon-name
-#: ../src/main_window.c:381
+#: ../src/main_window.c:383
 msgid "_Save copy..."
 msgstr "Uložit _kopii…"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:383
+#: ../src/main_window.c:385
 msgid "Save a copy of the image"
 msgstr "Uložit kopii obrázku"
 
 #. Icon-name
-#: ../src/main_window.c:387
+#: ../src/main_window.c:389
 msgid "_Properties..."
 msgstr "_Vlastnosti..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:389
+#: ../src/main_window.c:391
 msgid "Show file properties"
 msgstr "Zobrazit vlastnosti souboru"
 
 #. Icon-name
-#: ../src/main_window.c:393 ../src/main_window.c:412
+#: ../src/main_window.c:395 ../src/main_window.c:414
 msgid "_Edit"
 msgstr "_Upravit"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:395
+#: ../src/main_window.c:397
 msgid "Edit this image"
 msgstr "Upravit obrázek"
 
 #. Icon-name
-#: ../src/main_window.c:399 ../src/preferences_dialog.c:541
+#: ../src/main_window.c:401 ../src/preferences_dialog.c:541
 #: ../src/properties_dialog.c:325
 msgid "_Close"
 msgstr "_Zavřít"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:401
+#: ../src/main_window.c:403
 msgid "Close this image"
 msgstr "Zavřít tento obrázek"
 
 #. Icon-name
-#: ../src/main_window.c:405
+#: ../src/main_window.c:407
 msgid "_Quit"
 msgstr "_Ukončit"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:407
+#: ../src/main_window.c:409
 msgid "Quit Ristretto"
 msgstr "Ukončit aplikaci Ristretto"
 
-#: ../src/main_window.c:418
+#: ../src/main_window.c:420
 msgid "_Open with"
 msgstr "Ot_evřít pomocí"
 
-#: ../src/main_window.c:424
-msgid "_Sorting"
-msgstr "Řa_zení"
+#: ../src/main_window.c:426
+msgid "_Sort by"
+msgstr "Řa_dit podle"
 
 #. Icon-name
-#: ../src/main_window.c:430
+#: ../src/main_window.c:432
 msgid "_Delete"
 msgstr "_Smazat"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:432
+#: ../src/main_window.c:434
 msgid "Delete this image from disk"
 msgstr "Smazat tento obrázek z disku"
 
 #. Icon-name
-#: ../src/main_window.c:436
+#: ../src/main_window.c:438
 msgid "_Clear private data..."
 msgstr "S_mazat soukromé údaje..."
 
 #. Icon-name
-#: ../src/main_window.c:442
+#: ../src/main_window.c:444
 msgid "_Preferences..."
 msgstr "_Předvolby..."
 
-#: ../src/main_window.c:449
+#: ../src/main_window.c:451
 msgid "_View"
 msgstr "_Zobrazit"
 
 #. Icon-name
-#: ../src/main_window.c:455
+#: ../src/main_window.c:457
 msgid "_Fullscreen"
 msgstr "_Celá obrazovka"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:457
+#: ../src/main_window.c:459
 msgid "Switch to fullscreen"
 msgstr "Přepnout do režimu celé obrazovky"
 
 #. Icon-name
-#: ../src/main_window.c:461
+#: ../src/main_window.c:463
 msgid "_Leave Fullscreen"
 msgstr "_Opustit režim celé obrazovky"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:463
+#: ../src/main_window.c:465
 msgid "Leave Fullscreen"
 msgstr "Opustit režim celé obrazovky"
 
 

[Xfce4-commits] [apps/ristretto] 04/06: I18n: Update translation lt (100%).

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

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

commit c387f05deb63a014e3d00bd0d3cbbe523c3acadc
Author: Anonymous 
Date:   Sat Jul 13 18:31:23 2019 +0200

I18n: Update translation lt (100%).

193 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index f1dc526..9208349 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -4,14 +4,14 @@
 # 
 # Translators:
 # Algimantas Margevičius , 2012
-# Moo, 2015-2017
+# Moo, 2015-2017,2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2019-04-16 18:32+0200\n"
-"PO-Revision-Date: 2019-04-16 16:32+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2019-07-13 00:31+0200\n"
+"PO-Revision-Date: 2019-07-13 11:57+\n"
+"Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -48,525 +48,525 @@ msgstr "%s: %s\n\nNorėdami pamatyti komandų eilutės 
\nparametrų sąrašą, p
 msgid "Image Viewer"
 msgstr "Paveikslų žiūryklė"
 
-#: ../src/main_window.c:369
+#: ../src/main_window.c:371
 msgid "_File"
 msgstr "_Failas"
 
 #. Icon-name
-#: ../src/main_window.c:375
+#: ../src/main_window.c:377
 msgid "_Open..."
 msgstr "_Atverti..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:377
+#: ../src/main_window.c:379
 msgid "Open an image"
 msgstr "Atverti paveikslą"
 
 #. Icon-name
-#: ../src/main_window.c:381
+#: ../src/main_window.c:383
 msgid "_Save copy..."
 msgstr "Įr_ašyti kopiją..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:383
+#: ../src/main_window.c:385
 msgid "Save a copy of the image"
 msgstr "Įrašyti paveikslo kopiją"
 
 #. Icon-name
-#: ../src/main_window.c:387
+#: ../src/main_window.c:389
 msgid "_Properties..."
 msgstr "_Savybės..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:389
+#: ../src/main_window.c:391
 msgid "Show file properties"
 msgstr "Rodyti paveikslo savybes"
 
 #. Icon-name
-#: ../src/main_window.c:393 ../src/main_window.c:412
+#: ../src/main_window.c:395 ../src/main_window.c:414
 msgid "_Edit"
 msgstr "_Taisa"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:395
+#: ../src/main_window.c:397
 msgid "Edit this image"
 msgstr "Redaguoti šį paveikslą"
 
 #. Icon-name
-#: ../src/main_window.c:399 ../src/preferences_dialog.c:541
+#: ../src/main_window.c:401 ../src/preferences_dialog.c:541
 #: ../src/properties_dialog.c:325
 msgid "_Close"
 msgstr "_Užverti"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:401
+#: ../src/main_window.c:403
 msgid "Close this image"
 msgstr "Užverti šį paveikslą"
 
 #. Icon-name
-#: ../src/main_window.c:405
+#: ../src/main_window.c:407
 msgid "_Quit"
 msgstr "I_šeiti"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:407
+#: ../src/main_window.c:409
 msgid "Quit Ristretto"
 msgstr "Išeiti iš Ristretto"
 
-#: ../src/main_window.c:418
+#: ../src/main_window.c:420
 msgid "_Open with"
 msgstr "_Atverti naudojant"
 
-#: ../src/main_window.c:424
-msgid "_Sorting"
-msgstr "_Rikiavimas"
+#: ../src/main_window.c:426
+msgid "_Sort by"
+msgstr "_Rikiuoti pagal"
 
 #. Icon-name
-#: ../src/main_window.c:430
+#: ../src/main_window.c:432
 msgid "_Delete"
 msgstr "Išt_rinti"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:432
+#: ../src/main_window.c:434
 msgid "Delete this image from disk"
 msgstr "Ištrinti šį paveikslą iš disko"
 
 #. Icon-name
-#: ../src/main_window.c:436
+#: ../src/main_window.c:438
 msgid "_Clear private data..."
 msgstr "_Išvalyti privačiuosius duomenis..."
 
 #. Icon-name
-#: ../src/main_window.c:442
+#: ../src/main_window.c:444
 msgid "_Preferences..."
 msgstr "_Nuostatos..."
 
-#: ../src/main_window.c:449
+#: ../src/main_window.c:451
 msgid "_View"
 msgstr "R_odinys"
 
 #. Icon-name
-#: ../src/main_window.c:455
+#: ../src/main_window.c:457
 msgid "_Fullscreen"
 msgstr "_Visas ekranas"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:457
+#: ../src/main_window.c:459
 msgid "Switch to fullscreen"
 msgstr "Perjungti į viso ekrano veikseną"
 
 #. Icon-name
-#: ../src/main_window.c:461
+#: ../src/main_window.c:463
 msgid "_Leave Fullscreen"
 msgstr "_Išjungti viso ekrano veikseną"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:463
+#: ../src/main_window.c:465
 msgid "Leave Fullscreen"
 msgstr "Išjungti viso ekrano veikseną"
 
 #. Icon-name
-#: ../src/main_window.c:467
+#: ../src/main_window.c:469
 msgid "Set as _Wallpaper..."
 msgstr "_Nustatyti kaip 

[Xfce4-commits] [apps/ristretto] 05/06: I18n: Update translation ru (100%).

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

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

commit c45ae0cee48c7fa57f96e4f76046502d130bc2fe
Author: Igor 
Date:   Sat Jul 13 18:31:23 2019 +0200

I18n: Update translation ru (100%).

193 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/ru.po | 307 +--
 1 file changed, 140 insertions(+), 167 deletions(-)

diff --git a/po/ru.po b/po/ru.po
index 76eafa1..1cae977 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -4,17 +4,17 @@
 # 
 # Translators:
 # Denis Koryavov , 2010
-# Al, 2015
-# Igor , 2016-2017
+# Alexander Filev, 2015
+# Igor , 2016-2017,2019
 # Sergey Alyoshin , 2013,2015-2016
 # Stefan Zerkalica , 2008
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2019-04-16 18:32+0200\n"
-"PO-Revision-Date: 2019-04-16 16:32+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2019-07-13 00:31+0200\n"
+"PO-Revision-Date: 2019-07-13 13:05+\n"
+"Last-Translator: Igor \n"
 "Language-Team: Russian 
(http://www.transifex.com/xfce/xfce-apps/language/ru/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -51,517 +51,517 @@ msgstr "%s: %s\nПопробуйте %s --help для просмотра пол
 msgid "Image Viewer"
 msgstr "Просмотр изображений"
 
-#: ../src/main_window.c:369
+#: ../src/main_window.c:371
 msgid "_File"
 msgstr "_Файл"
 
 #. Icon-name
-#: ../src/main_window.c:375
+#: ../src/main_window.c:377
 msgid "_Open..."
 msgstr "_Открыть..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:377
+#: ../src/main_window.c:379
 msgid "Open an image"
 msgstr "Открыть изображение"
 
 #. Icon-name
-#: ../src/main_window.c:381
+#: ../src/main_window.c:383
 msgid "_Save copy..."
 msgstr "_Сохранить копию..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:383
+#: ../src/main_window.c:385
 msgid "Save a copy of the image"
 msgstr "Сохранить копию изображения"
 
 #. Icon-name
-#: ../src/main_window.c:387
+#: ../src/main_window.c:389
 msgid "_Properties..."
 msgstr "С_войства"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:389
+#: ../src/main_window.c:391
 msgid "Show file properties"
 msgstr "Показать свойства файла"
 
 #. Icon-name
-#: ../src/main_window.c:393 ../src/main_window.c:412
+#: ../src/main_window.c:395 ../src/main_window.c:414
 msgid "_Edit"
 msgstr "_Правка"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:395
+#: ../src/main_window.c:397
 msgid "Edit this image"
 msgstr "Редактировать изображение"
 
 #. Icon-name
-#: ../src/main_window.c:399 ../src/preferences_dialog.c:541
+#: ../src/main_window.c:401 ../src/preferences_dialog.c:541
 #: ../src/properties_dialog.c:325
 msgid "_Close"
 msgstr "_Закрыть"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:401
+#: ../src/main_window.c:403
 msgid "Close this image"
 msgstr "Закрыть изображение"
 
 #. Icon-name
-#: ../src/main_window.c:405
+#: ../src/main_window.c:407
 msgid "_Quit"
 msgstr "_Выйти"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:407
+#: ../src/main_window.c:409
 msgid "Quit Ristretto"
 msgstr "Выйти из программы"
 
-#: ../src/main_window.c:418
+#: ../src/main_window.c:420
 msgid "_Open with"
 msgstr "_Открыть в"
 
-#: ../src/main_window.c:424
-msgid "_Sorting"
-msgstr "_Сортировать"
+#: ../src/main_window.c:426
+msgid "_Sort by"
+msgstr "_Сортировать по"
 
 #. Icon-name
-#: ../src/main_window.c:430
+#: ../src/main_window.c:432
 msgid "_Delete"
 msgstr "_Удалить"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:432
+#: ../src/main_window.c:434
 msgid "Delete this image from disk"
 msgstr "Удалить изображение с диска"
 
 #. Icon-name
-#: ../src/main_window.c:436
+#: ../src/main_window.c:438
 msgid "_Clear private data..."
 msgstr "О_чистить личные данные..."
 
 #. Icon-name
-#: ../src/main_window.c:442
+#: ../src/main_window.c:444
 msgid "_Preferences..."
 msgstr "_Настройки..."
 
-#: ../src/main_window.c:449
+#: ../src/main_window.c:451
 msgid "_View"
 msgstr "Прос_мотр"
 
 #. Icon-name
-#: ../src/main_window.c:455
+#: ../src/main_window.c:457
 msgid "_Fullscreen"
 msgstr "_Полноэкранный режим"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:457
+#: ../src/main_window.c:459
 msgid "Switch to fullscreen"
 msgstr "Во весь экран"
 
 #. Icon-name
-#: ../src/main_window.c:461
+#: ../src/main_window.c:463
 msgid "_Leave Fullscreen"
 msgstr "_Выйти из полноэкранного режима"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:463
+#: ../src/main_window.c:465
 msgid "Leave Fullscreen"
 msgstr "Выйти из полноэкранного режима"
 
 #. Icon-name
-#: ../src/main_window.c:467
+#: ../src/main_window.c:469
 msgid "Set as 

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

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

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

commit b728e24843032c0d7b3c1d2f322935904dd5f5ba
Author: Kiril Kirilov 
Date:   Sat Jul 13 18:31:22 2019 +0200

I18n: Update translation bg (100%).

193 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/bg.po | 305 +--
 1 file changed, 139 insertions(+), 166 deletions(-)

diff --git a/po/bg.po b/po/bg.po
index 239db0d..32ea902 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,16 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Kiril Kirilov , 2015-2017
+# Kiril Kirilov , 2015-2017,2019
 # Любомир Василев, 2015
 # Plamen Stoev , 2007
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2019-04-16 18:32+0200\n"
-"PO-Revision-Date: 2019-04-16 16:32+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2019-07-13 00:31+0200\n"
+"PO-Revision-Date: 2019-07-13 12:45+\n"
+"Last-Translator: Kiril Kirilov \n"
 "Language-Team: Bulgarian 
(http://www.transifex.com/xfce/xfce-apps/language/bg/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -49,517 +49,517 @@ msgstr "%s: %s\n\nОпитайте %s --help за да видите пълния
 msgid "Image Viewer"
 msgstr "Програма за преглед на изображения"
 
-#: ../src/main_window.c:369
+#: ../src/main_window.c:371
 msgid "_File"
 msgstr "_Файл"
 
 #. Icon-name
-#: ../src/main_window.c:375
+#: ../src/main_window.c:377
 msgid "_Open..."
 msgstr "_Отваряне..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:377
+#: ../src/main_window.c:379
 msgid "Open an image"
 msgstr "Отваряне на изображение"
 
 #. Icon-name
-#: ../src/main_window.c:381
+#: ../src/main_window.c:383
 msgid "_Save copy..."
 msgstr "Запазване на копие..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:383
+#: ../src/main_window.c:385
 msgid "Save a copy of the image"
 msgstr "Запазване на копие на изображението"
 
 #. Icon-name
-#: ../src/main_window.c:387
+#: ../src/main_window.c:389
 msgid "_Properties..."
 msgstr "Свойства..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:389
+#: ../src/main_window.c:391
 msgid "Show file properties"
 msgstr "Показване на свойствата на файла"
 
 #. Icon-name
-#: ../src/main_window.c:393 ../src/main_window.c:412
+#: ../src/main_window.c:395 ../src/main_window.c:414
 msgid "_Edit"
 msgstr "_Редактиране"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:395
+#: ../src/main_window.c:397
 msgid "Edit this image"
 msgstr "Редактиране на това изображение"
 
 #. Icon-name
-#: ../src/main_window.c:399 ../src/preferences_dialog.c:541
+#: ../src/main_window.c:401 ../src/preferences_dialog.c:541
 #: ../src/properties_dialog.c:325
 msgid "_Close"
 msgstr "Затваряне"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:401
+#: ../src/main_window.c:403
 msgid "Close this image"
 msgstr "Затваряне на това изображение"
 
 #. Icon-name
-#: ../src/main_window.c:405
+#: ../src/main_window.c:407
 msgid "_Quit"
 msgstr "Изход"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:407
+#: ../src/main_window.c:409
 msgid "Quit Ristretto"
 msgstr "Изход от Ristretto"
 
-#: ../src/main_window.c:418
+#: ../src/main_window.c:420
 msgid "_Open with"
 msgstr "Отваряне с"
 
-#: ../src/main_window.c:424
-msgid "_Sorting"
-msgstr "Подреждане"
+#: ../src/main_window.c:426
+msgid "_Sort by"
+msgstr "_Сортиране по"
 
 #. Icon-name
-#: ../src/main_window.c:430
+#: ../src/main_window.c:432
 msgid "_Delete"
 msgstr "Изтриване"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:432
+#: ../src/main_window.c:434
 msgid "Delete this image from disk"
 msgstr "Изтриване на изображението от диска"
 
 #. Icon-name
-#: ../src/main_window.c:436
+#: ../src/main_window.c:438
 msgid "_Clear private data..."
 msgstr "Изчистване на личните данни..."
 
 #. Icon-name
-#: ../src/main_window.c:442
+#: ../src/main_window.c:444
 msgid "_Preferences..."
 msgstr "Предпочитания..."
 
-#: ../src/main_window.c:449
+#: ../src/main_window.c:451
 msgid "_View"
 msgstr "Преглед"
 
 #. Icon-name
-#: ../src/main_window.c:455
+#: ../src/main_window.c:457
 msgid "_Fullscreen"
 msgstr "Режим на цял екран"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:457
+#: ../src/main_window.c:459
 msgid "Switch to fullscreen"
 msgstr "Превключване в режим на цял екран"
 
 #. Icon-name
-#: ../src/main_window.c:461
+#: ../src/main_window.c:463
 msgid "_Leave Fullscreen"
 msgstr "Изход от режим на цял екран"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:463
+#: ../src/main_window.c:465
 msgid "Leave Fullscreen"
 

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

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

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

commit 8a759cb80f74746798ad253257ad1babf7ba1796
Author: Anonymous 
Date:   Sat Jul 13 18:31:13 2019 +0200

I18n: Update translation lt (100%).

301 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/lt.po b/po/lt.po
index 4177e67..fad7437 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-08-25 12:31+0200\n"
-"PO-Revision-Date: 2018-10-25 10:37+\n"
+"PO-Revision-Date: 2019-07-13 11:56+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\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] [apps/ristretto] branch master updated (189e4e1 -> 6d34cd4)

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

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

  from  189e4e1   I18n: Update translation tr (100%).
   new  b728e24   I18n: Update translation bg (100%).
   new  9618645   I18n: Update translation cs (100%).
   new  c676d82   I18n: Update translation hr (100%).
   new  c387f05   I18n: Update translation lt (100%).
   new  c45ae0c   I18n: Update translation ru (100%).
   new  6d34cd4   I18n: Update translation zh_TW (100%).

The 6 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/bg.po| 305 +++---
 po/cs.po| 305 +++---
 po/hr.po| 304 +++---
 po/lt.po| 363 
 po/ru.po| 307 +++---
 po/zh_TW.po | 304 +++---
 6 files changed, 864 insertions(+), 1024 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/mousepad] branch master updated (a0a8412 -> bf80312)

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

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

  from  a0a8412   I18n: Update translation uk (100%).
   new  bf80312   I18n: Update translation lt (100%).

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


Summary of changes:
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


[Xfce4-commits] [apps/orage] branch master updated (faab0bc -> 6356e6d)

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

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

  from  faab0bc   I18n: Update translation eu (75%).
   new  6356e6d   I18n: Update translation lt (100%).

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


Summary of changes:
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


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

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

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

commit bf803126134d501fc008001d43b9077c83da58ed
Author: Anonymous 
Date:   Sat Jul 13 18:30:54 2019 +0200

I18n: Update translation lt (100%).

310 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/lt.po b/po/lt.po
index e3ddedc..6b997d2 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-05-19 00:30+0200\n"
-"PO-Revision-Date: 2019-05-19 18:30+\n"
+"PO-Revision-Date: 2019-07-13 11:48+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\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] [apps/parole] branch master updated (470f52f -> 8a759cb)

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

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

  from  470f52f   I18n: Update translation eu (100%).
   new  8a759cb   I18n: Update translation lt (100%).

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


Summary of changes:
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


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

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

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

commit 6356e6d967a39a5fac356c7f63837e249499614e
Author: Anonymous 
Date:   Sat Jul 13 18:31:03 2019 +0200

I18n: Update translation lt (100%).

1030 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/lt.po b/po/lt.po
index cf30b9a..cd792f5 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-09-23 12:30+0200\n"
-"PO-Revision-Date: 2019-06-04 20:18+\n"
+"PO-Revision-Date: 2019-07-13 11:48+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\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] [apps/gigolo] branch master updated (fb63ddf -> 1415ce9)

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

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

  from  fb63ddf   migrate gvfs commands to gio
   new  1415ce9   I18n: Update translation lt (100%).

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


Summary of changes:
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


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

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

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

commit 1415ce9723b90dfbc5f41c6f6fce6c34cf77b3eb
Author: Anonymous 
Date:   Sat Jul 13 18:30:47 2019 +0200

I18n: Update translation lt (100%).

127 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/lt.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/lt.po b/po/lt.po
index 146efa5..a50c3e0 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-10-25 12:30+0200\n"
-"PO-Revision-Date: 2018-10-25 10:44+\n"
+"PO-Revision-Date: 2019-07-13 11:48+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\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] [apps/xfce4-screensaver] 01/01: Various pylint fixes

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

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit 659651e5a3ae474d95575490b140ed7c8266574e
Author: Sean Davis 
Date:   Sat Jul 13 08:32:13 2019 -0400

Various pylint fixes
---
 src/xfce4-screensaver-configure | 115 ++--
 1 file changed, 64 insertions(+), 51 deletions(-)

diff --git a/src/xfce4-screensaver-configure b/src/xfce4-screensaver-configure
index a2e7b23..c10f5a0 100755
--- a/src/xfce4-screensaver-configure
+++ b/src/xfce4-screensaver-configure
@@ -1,6 +1,6 @@
 #!/usr/bin/python3
 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
-#   
+#
 #   Copyright (C) 2019 Sean Davis 
 #
 #   This program is free software; you can redistribute it and/or modify
@@ -27,6 +27,9 @@ import xml.etree.ElementTree as ET
 
 from collections import OrderedDict
 
+import locale
+from locale import gettext as _
+
 import gi
 gi.require_version('Gdk', '3.0')
 gi.require_version('Gtk', '3.0')
@@ -34,9 +37,6 @@ from gi.repository import GLib
 from gi.repository import Gtk
 from gi.repository import Gdk
 
-import locale
-from locale import gettext as _
-
 
 class XfconfChannel:
 
@@ -112,7 +112,7 @@ class ScreensaverSettings:
 parsed['options'] = self.options
 parsed['description'] = self.description
 parsed['video'] = self.video
-for key in parsed.keys():
+for key in parsed:
 if parsed[key] is None:
 parsed[key] = ""
 return parsed
@@ -149,7 +149,7 @@ class DesktopScreensaverSettings(ScreensaverSettings):
 self.options = options
 self.description = "%s\n\n%s" % (comment, _("Part of Xfce 
Screensaver"))
 
-if len(self.options) > 0:
+if self.options:
 self.configurable = True
 
 return True
@@ -158,22 +158,24 @@ class DesktopScreensaverSettings(ScreensaverSettings):
 options = OrderedDict()
 if self.name == "xfce-floaters":
 options["number-of-images"] = {'id': 'number-of-images', 'type': 
'spinbutton',
-   'label': _('Max number of images'), 
'argument': '-n %', 'default': 5, 'low': 1, 'high': 25}
-options["show-paths"] = {'id': 'show-paths',
- 'type': 'checkbox', 'label': _('Show 
paths'), 'argument': '-p'}
-options["do-rotations"] = {'id': 'do-rotations',
-   'type': 'checkbox', 'label': _('Do 
rotations'), 'argument': '-r'}
-options["print-stats"] = {'id': 'print-stats',
-  'type': 'checkbox', 'label': _('Print 
stats'), 'argument': '-r'}
+   'label': _('Max number of images'), 
'argument': '-n %',
+   'default': 5, 'low': 1, 'high': 25}
+options["show-paths"] = {'id': 'show-paths', 'type': 'checkbox',
+ 'label': _('Show paths'), 'argument': 
'-p'}
+options["do-rotations"] = {'id': 'do-rotations', 'type': 
'checkbox',
+   'label': _('Do rotations'), 'argument': 
'-r'}
+options["print-stats"] = {'id': 'print-stats', 'type': 'checkbox',
+  'label': _('Print stats'), 'argument': 
'-r'}
 elif self.name == "xfce-personal-slideshow":
+pics = 
GLib.get_user_special_dir(GLib.UserDirectory.DIRECTORY_PICTURES)
 options["location"] = {'id': 'location', 'type': 'folder', 
'label': _('Location'),
-   'argument': '--location=%', 'default': 
GLib.get_user_special_dir(GLib.UserDirectory.DIRECTORY_PICTURES)}
-options["background-color"] = {'id': 'background-color',
-   'label': _('Background color'), 
'type': 'color'}
-options["sort-images"] = {'id': 'sort-images',
-  'label': _('Do not randomize images'), 
'type': 'checkbox'}
-options["no-stretch"] = {'id': 'no-stretch',
- 'label': _('Do not stretch images'), 
'type': 'checkbox'}
+   'argument': '--location=%', 'default': pics}
+options["background-color"] = {'id': 'background-color', 'type': 
'color',
+   'label': _('Background color')}
+options["sort-images"] = {'id': 'sort-images', 'type': 'checkbox',
+  'label': _('Do not randomize images')}
+options["no-stretch"] = {'id': 'no-stretch', 'type': 'checkbox',
+ 'label': _('Do not stretch images')}

[Xfce4-commits] [apps/xfce4-screensaver] branch master updated (676c9f2 -> 659651e)

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

bluesabre pushed a 
change to branch 
master
in repository apps/xfce4-screensaver.

  from  676c9f2   Close email tag
   new  659651e   Various pylint fixes

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


Summary of changes:
 src/xfce4-screensaver-configure | 115 ++--
 1 file changed, 64 insertions(+), 51 deletions(-)

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


[Xfce4-commits] [apps/ristretto] 04/05: I18n: Update translation pl (100%).

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

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

commit 5106c85e7edc4efe63d331d52275440511b556a9
Author: Anonymous 
Date:   Sat Jul 13 12:30:57 2019 +0200

I18n: Update translation pl (100%).

193 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/pl.po | 308 +--
 1 file changed, 141 insertions(+), 167 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index fbb81fe..e2510bb 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -5,17 +5,18 @@
 # Translators:
 # Dawid Job , 2015
 # Iro , 2011
-# Marcin Mikołajczak , 2017
-# Marcin Mikołajczak , 2016
+# Marcin Mikołajczak , 2017
+# Marcin Mikołajczak , 2016
+# No Ne, 2019
 # Piotr Sokół , 2009-2012,2014
 # Piotr Strębski , 2015
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2019-04-16 18:32+0200\n"
-"PO-Revision-Date: 2019-04-16 16:32+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2019-07-13 00:31+0200\n"
+"PO-Revision-Date: 2019-07-13 07:53+\n"
+"Last-Translator: No Ne\n"
 "Language-Team: Polish 
(http://www.transifex.com/xfce/xfce-apps/language/pl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -52,517 +53,517 @@ msgstr "%s: %s\nProszę wprowadzić „%s --help”, aby 
wypisać pełną listę
 msgid "Image Viewer"
 msgstr "Przeglądarka obrazów"
 
-#: ../src/main_window.c:369
+#: ../src/main_window.c:371
 msgid "_File"
 msgstr "_Plik"
 
 #. Icon-name
-#: ../src/main_window.c:375
+#: ../src/main_window.c:377
 msgid "_Open..."
 msgstr "_Otwórz..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:377
+#: ../src/main_window.c:379
 msgid "Open an image"
 msgstr "Otwiera plik obrazu"
 
 #. Icon-name
-#: ../src/main_window.c:381
+#: ../src/main_window.c:383
 msgid "_Save copy..."
 msgstr "_Zapisz kopię..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:383
+#: ../src/main_window.c:385
 msgid "Save a copy of the image"
 msgstr "Zapisuje kopię obrazu"
 
 #. Icon-name
-#: ../src/main_window.c:387
+#: ../src/main_window.c:389
 msgid "_Properties..."
 msgstr "_Właściwości..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:389
+#: ../src/main_window.c:391
 msgid "Show file properties"
 msgstr "Wyświetla właściwości pliku"
 
 #. Icon-name
-#: ../src/main_window.c:393 ../src/main_window.c:412
+#: ../src/main_window.c:395 ../src/main_window.c:414
 msgid "_Edit"
 msgstr "_Edycja"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:395
+#: ../src/main_window.c:397
 msgid "Edit this image"
 msgstr "Otwiera plik obrazu do edycji"
 
 #. Icon-name
-#: ../src/main_window.c:399 ../src/preferences_dialog.c:541
+#: ../src/main_window.c:401 ../src/preferences_dialog.c:541
 #: ../src/properties_dialog.c:325
 msgid "_Close"
 msgstr "Za_mknij"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:401
+#: ../src/main_window.c:403
 msgid "Close this image"
 msgstr "Zamyka bieżący plik"
 
 #. Icon-name
-#: ../src/main_window.c:405
+#: ../src/main_window.c:407
 msgid "_Quit"
 msgstr "Za_kończ"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:407
+#: ../src/main_window.c:409
 msgid "Quit Ristretto"
 msgstr "Kończy działanie programu"
 
-#: ../src/main_window.c:418
+#: ../src/main_window.c:420
 msgid "_Open with"
 msgstr "_Otwórz za pomocą"
 
-#: ../src/main_window.c:424
-msgid "_Sorting"
-msgstr "_Sortowanie"
+#: ../src/main_window.c:426
+msgid "_Sort by"
+msgstr "_Sortuj według"
 
 #. Icon-name
-#: ../src/main_window.c:430
+#: ../src/main_window.c:432
 msgid "_Delete"
 msgstr "_Usuń"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:432
+#: ../src/main_window.c:434
 msgid "Delete this image from disk"
 msgstr "Trwale usuwa plik obrazu"
 
 #. Icon-name
-#: ../src/main_window.c:436
+#: ../src/main_window.c:438
 msgid "_Clear private data..."
 msgstr "_Wyczyść prywatne dane..."
 
 #. Icon-name
-#: ../src/main_window.c:442
+#: ../src/main_window.c:444
 msgid "_Preferences..."
 msgstr "P_referencje..."
 
-#: ../src/main_window.c:449
+#: ../src/main_window.c:451
 msgid "_View"
 msgstr "_Widok"
 
 #. Icon-name
-#: ../src/main_window.c:455
+#: ../src/main_window.c:457
 msgid "_Fullscreen"
 msgstr "_Pełny ekran"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:457
+#: ../src/main_window.c:459
 msgid "Switch to fullscreen"
 msgstr "Włącza tryb pełnego ekranu"
 
 #. Icon-name
-#: ../src/main_window.c:461
+#: ../src/main_window.c:463
 msgid "_Leave Fullscreen"
 msgstr "_Opuść pełny ekran"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:463
+#: ../src/main_window.c:465
 msgid "Leave Fullscreen"
 msgstr "Wyłącza tryb pełnego ekranu"
 
 #. Icon-name
-#: 

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

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

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

commit 189e4e119f5206616cabb6e6a1ad1f98953afb8c
Author: Serdar Sağlam 
Date:   Sat Jul 13 12:30:57 2019 +0200

I18n: Update translation tr (100%).

193 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/tr.po | 301 +--
 1 file changed, 137 insertions(+), 164 deletions(-)

diff --git a/po/tr.po b/po/tr.po
index 8aa65df..e1ce993 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -14,8 +14,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2019-04-16 18:32+0200\n"
-"PO-Revision-Date: 2019-05-24 01:33+\n"
+"POT-Creation-Date: 2019-07-13 00:31+0200\n"
+"PO-Revision-Date: 2019-07-13 09:39+\n"
 "Last-Translator: Serdar Sağlam \n"
 "Language-Team: Turkish 
(http://www.transifex.com/xfce/xfce-apps/language/tr/)\n"
 "MIME-Version: 1.0\n"
@@ -53,517 +53,517 @@ msgstr "%s: %s\nKomut satırı parametrelerini görmek için 
%s\n --help komutun
 msgid "Image Viewer"
 msgstr "Resim Gösterici"
 
-#: ../src/main_window.c:369
+#: ../src/main_window.c:371
 msgid "_File"
 msgstr "_Dosya"
 
 #. Icon-name
-#: ../src/main_window.c:375
+#: ../src/main_window.c:377
 msgid "_Open..."
 msgstr "_Aç..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:377
+#: ../src/main_window.c:379
 msgid "Open an image"
 msgstr "Bir resim aç"
 
 #. Icon-name
-#: ../src/main_window.c:381
+#: ../src/main_window.c:383
 msgid "_Save copy..."
 msgstr "Kopya _kaydet..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:383
+#: ../src/main_window.c:385
 msgid "Save a copy of the image"
 msgstr "Resmin bir kopyasını kaydet"
 
 #. Icon-name
-#: ../src/main_window.c:387
+#: ../src/main_window.c:389
 msgid "_Properties..."
 msgstr "_Özellikler..."
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:389
+#: ../src/main_window.c:391
 msgid "Show file properties"
 msgstr "Dosya özelliklerini göster"
 
 #. Icon-name
-#: ../src/main_window.c:393 ../src/main_window.c:412
+#: ../src/main_window.c:395 ../src/main_window.c:414
 msgid "_Edit"
 msgstr "_Düzenle"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:395
+#: ../src/main_window.c:397
 msgid "Edit this image"
 msgstr "Bu resmi düzenle"
 
 #. Icon-name
-#: ../src/main_window.c:399 ../src/preferences_dialog.c:541
+#: ../src/main_window.c:401 ../src/preferences_dialog.c:541
 #: ../src/properties_dialog.c:325
 msgid "_Close"
 msgstr "_Kapat"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:401
+#: ../src/main_window.c:403
 msgid "Close this image"
 msgstr "Bu resmi kapat"
 
 #. Icon-name
-#: ../src/main_window.c:405
+#: ../src/main_window.c:407
 msgid "_Quit"
 msgstr "_Çık"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:407
+#: ../src/main_window.c:409
 msgid "Quit Ristretto"
 msgstr "Ristretto'dan Çık"
 
-#: ../src/main_window.c:418
+#: ../src/main_window.c:420
 msgid "_Open with"
 msgstr "Birlikte _aç"
 
-#: ../src/main_window.c:424
-msgid "_Sorting"
-msgstr "_Sıralama"
+#: ../src/main_window.c:426
+msgid "_Sort by"
+msgstr "_Sırala"
 
 #. Icon-name
-#: ../src/main_window.c:430
+#: ../src/main_window.c:432
 msgid "_Delete"
 msgstr "_Sil"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:432
+#: ../src/main_window.c:434
 msgid "Delete this image from disk"
 msgstr "Bu resmi diskten sil"
 
 #. Icon-name
-#: ../src/main_window.c:436
+#: ../src/main_window.c:438
 msgid "_Clear private data..."
 msgstr "Kişisel verileri _temizle..."
 
 #. Icon-name
-#: ../src/main_window.c:442
+#: ../src/main_window.c:444
 msgid "_Preferences..."
 msgstr "_Tercihler..."
 
-#: ../src/main_window.c:449
+#: ../src/main_window.c:451
 msgid "_View"
 msgstr "_Görünüm"
 
 #. Icon-name
-#: ../src/main_window.c:455
+#: ../src/main_window.c:457
 msgid "_Fullscreen"
 msgstr "_Tam ekran"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:457
+#: ../src/main_window.c:459
 msgid "Switch to fullscreen"
 msgstr "Tam ekrana ayarla"
 
 #. Icon-name
-#: ../src/main_window.c:461
+#: ../src/main_window.c:463
 msgid "_Leave Fullscreen"
 msgstr "_Tam ekranı kapat"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:463
+#: ../src/main_window.c:465
 msgid "Leave Fullscreen"
 msgstr "_Tam ekrandan ayrıl"
 
 #. Icon-name
-#: ../src/main_window.c:467
+#: ../src/main_window.c:469
 msgid "Set as _Wallpaper..."
 msgstr "Duvar kağıdı olarak _ayarla..."
 
-#: ../src/main_window.c:474
+#: ../src/main_window.c:476
 msgid "_Zoom"
 msgstr "_Yakınlaştır"
 
 #. Icon-name
-#: ../src/main_window.c:480
+#: ../src/main_window.c:482
 msgid "Zoom _In"
 msgstr "_Yakınlaş"
 
 #. Label-text
 #. Keyboard shortcut

[Xfce4-commits] [apps/ristretto] 03/05: I18n: Update translation fr (100%).

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

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

commit 29a8e0e1cbdbd1e243b20e00adb7297cefbb80bc
Author: Yannick Le Guen 
Date:   Sat Jul 13 12:30:57 2019 +0200

I18n: Update translation fr (100%).

193 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/fr.po | 305 +--
 1 file changed, 139 insertions(+), 166 deletions(-)

diff --git a/po/fr.po b/po/fr.po
index 714e930..37fe111 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -14,14 +14,14 @@
 # Towinet, 2017
 # Urien Desterres , 2014
 # Urien Desterres , 2014-2015,2017
-# Yannick Le Guen , 2015-2016
+# Yannick Le Guen , 2015-2016,2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2019-04-16 18:32+0200\n"
-"PO-Revision-Date: 2019-04-16 16:32+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2019-07-13 00:31+0200\n"
+"PO-Revision-Date: 2019-07-13 08:14+\n"
+"Last-Translator: Yannick Le Guen \n"
 "Language-Team: French 
(http://www.transifex.com/xfce/xfce-apps/language/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -58,517 +58,517 @@ msgstr "%s : %s\n\nEssayez %s --help pour afficher une 
liste complète\ndes opt
 msgid "Image Viewer"
 msgstr "Visionneur d’images"
 
-#: ../src/main_window.c:369
+#: ../src/main_window.c:371
 msgid "_File"
 msgstr "_Fichier"
 
 #. Icon-name
-#: ../src/main_window.c:375
+#: ../src/main_window.c:377
 msgid "_Open..."
 msgstr "_Ouvrir…"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:377
+#: ../src/main_window.c:379
 msgid "Open an image"
 msgstr "Ouvrir une image"
 
 #. Icon-name
-#: ../src/main_window.c:381
+#: ../src/main_window.c:383
 msgid "_Save copy..."
 msgstr "_Enregistrer une copie…"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:383
+#: ../src/main_window.c:385
 msgid "Save a copy of the image"
 msgstr "Enregistrer une copie de l’image"
 
 #. Icon-name
-#: ../src/main_window.c:387
+#: ../src/main_window.c:389
 msgid "_Properties..."
 msgstr "_Propriétés…"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:389
+#: ../src/main_window.c:391
 msgid "Show file properties"
 msgstr "Afficher les propriétés du fichier"
 
 #. Icon-name
-#: ../src/main_window.c:393 ../src/main_window.c:412
+#: ../src/main_window.c:395 ../src/main_window.c:414
 msgid "_Edit"
 msgstr "É_dition"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:395
+#: ../src/main_window.c:397
 msgid "Edit this image"
 msgstr "Modifier cette image"
 
 #. Icon-name
-#: ../src/main_window.c:399 ../src/preferences_dialog.c:541
+#: ../src/main_window.c:401 ../src/preferences_dialog.c:541
 #: ../src/properties_dialog.c:325
 msgid "_Close"
 msgstr "_Fermer"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:401
+#: ../src/main_window.c:403
 msgid "Close this image"
 msgstr "Fermer cette image"
 
 #. Icon-name
-#: ../src/main_window.c:405
+#: ../src/main_window.c:407
 msgid "_Quit"
 msgstr "_Quitter"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:407
+#: ../src/main_window.c:409
 msgid "Quit Ristretto"
 msgstr "Quitter Ristretto"
 
-#: ../src/main_window.c:418
+#: ../src/main_window.c:420
 msgid "_Open with"
 msgstr "O_uvrir avec"
 
-#: ../src/main_window.c:424
-msgid "_Sorting"
-msgstr "_Trier"
+#: ../src/main_window.c:426
+msgid "_Sort by"
+msgstr "_Trier par"
 
 #. Icon-name
-#: ../src/main_window.c:430
+#: ../src/main_window.c:432
 msgid "_Delete"
 msgstr "_Supprimer"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:432
+#: ../src/main_window.c:434
 msgid "Delete this image from disk"
 msgstr "Supprimer cette image du disque"
 
 #. Icon-name
-#: ../src/main_window.c:436
+#: ../src/main_window.c:438
 msgid "_Clear private data..."
 msgstr "_Effacer les données personnelles…"
 
 #. Icon-name
-#: ../src/main_window.c:442
+#: ../src/main_window.c:444
 msgid "_Preferences..."
 msgstr "_Préférences…"
 
-#: ../src/main_window.c:449
+#: ../src/main_window.c:451
 msgid "_View"
 msgstr "_Affichage"
 
 #. Icon-name
-#: ../src/main_window.c:455
+#: ../src/main_window.c:457
 msgid "_Fullscreen"
 msgstr "_Plein écran"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:457
+#: ../src/main_window.c:459
 msgid "Switch to fullscreen"
 msgstr "Basculer en plein écran"
 
 #. Icon-name
-#: ../src/main_window.c:461
+#: ../src/main_window.c:463
 msgid "_Leave Fullscreen"
 msgstr "_Quitter le plein écran"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:463
+#: ../src/main_window.c:465
 msgid "Leave Fullscreen"
 msgstr "Quitter le plein écran"
 
 #. Icon-name
-#: ../src/main_window.c:467
+#: ../src/main_window.c:469
 

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

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

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

commit b98d93aefdf3da484cd656f3e30faad2e729bdf0
Author: Anonymous 
Date:   Sat Jul 13 12:30:56 2019 +0200

I18n: Update translation es (100%).

193 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/es.po | 304 +--
 1 file changed, 139 insertions(+), 165 deletions(-)

diff --git a/po/es.po b/po/es.po
index e0f17f5..92684a9 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,6 +7,7 @@
 # Adolfo Jayme-Barrientos, 2013
 # Adolfo Jayme Barrientos, 2013
 # Fito JB, 2013
+# Casper casper, 2019
 # gabrieltandil , 2015
 # gabrieltandil , 2015-2016
 # Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] , 2014-2015
@@ -14,9 +15,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2019-04-16 18:32+0200\n"
-"PO-Revision-Date: 2019-04-16 16:32+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2019-07-13 00:31+0200\n"
+"PO-Revision-Date: 2019-07-13 07:21+\n"
+"Last-Translator: Casper casper\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"
@@ -53,517 +54,517 @@ msgstr "%s: %s\n\nEjecute %s --help para ver una lista 
completa de opciones de l
 msgid "Image Viewer"
 msgstr "Visor de imágenes"
 
-#: ../src/main_window.c:369
+#: ../src/main_window.c:371
 msgid "_File"
 msgstr "_Archivo"
 
 #. Icon-name
-#: ../src/main_window.c:375
+#: ../src/main_window.c:377
 msgid "_Open..."
 msgstr "_Abrir…"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:377
+#: ../src/main_window.c:379
 msgid "Open an image"
 msgstr "Abrir una imagen"
 
 #. Icon-name
-#: ../src/main_window.c:381
+#: ../src/main_window.c:383
 msgid "_Save copy..."
 msgstr "_Guardar una copia…"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:383
+#: ../src/main_window.c:385
 msgid "Save a copy of the image"
 msgstr "Guardar una copia de la imagen"
 
 #. Icon-name
-#: ../src/main_window.c:387
+#: ../src/main_window.c:389
 msgid "_Properties..."
 msgstr "_Propiedades…"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:389
+#: ../src/main_window.c:391
 msgid "Show file properties"
 msgstr "Mostrar propiedades del archivo"
 
 #. Icon-name
-#: ../src/main_window.c:393 ../src/main_window.c:412
+#: ../src/main_window.c:395 ../src/main_window.c:414
 msgid "_Edit"
 msgstr "_Editar"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:395
+#: ../src/main_window.c:397
 msgid "Edit this image"
 msgstr "Editar esta imagen"
 
 #. Icon-name
-#: ../src/main_window.c:399 ../src/preferences_dialog.c:541
+#: ../src/main_window.c:401 ../src/preferences_dialog.c:541
 #: ../src/properties_dialog.c:325
 msgid "_Close"
 msgstr "_Cerrar"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:401
+#: ../src/main_window.c:403
 msgid "Close this image"
 msgstr "Cerrar esta imagen"
 
 #. Icon-name
-#: ../src/main_window.c:405
+#: ../src/main_window.c:407
 msgid "_Quit"
 msgstr "_Salir"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:407
+#: ../src/main_window.c:409
 msgid "Quit Ristretto"
 msgstr "Salir de Ristretto"
 
-#: ../src/main_window.c:418
+#: ../src/main_window.c:420
 msgid "_Open with"
 msgstr "_Abrir con"
 
-#: ../src/main_window.c:424
-msgid "_Sorting"
-msgstr "_Ordenar"
+#: ../src/main_window.c:426
+msgid "_Sort by"
+msgstr "_Ordenar por"
 
 #. Icon-name
-#: ../src/main_window.c:430
+#: ../src/main_window.c:432
 msgid "_Delete"
 msgstr "_Eliminar"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:432
+#: ../src/main_window.c:434
 msgid "Delete this image from disk"
 msgstr "Eliminar esta imagen del disco"
 
 #. Icon-name
-#: ../src/main_window.c:436
+#: ../src/main_window.c:438
 msgid "_Clear private data..."
 msgstr "_Borrar datos privados…"
 
 #. Icon-name
-#: ../src/main_window.c:442
+#: ../src/main_window.c:444
 msgid "_Preferences..."
 msgstr "_Preferencias…"
 
-#: ../src/main_window.c:449
+#: ../src/main_window.c:451
 msgid "_View"
 msgstr "_Ver"
 
 #. Icon-name
-#: ../src/main_window.c:455
+#: ../src/main_window.c:457
 msgid "_Fullscreen"
 msgstr "_Pantalla completa"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:457
+#: ../src/main_window.c:459
 msgid "Switch to fullscreen"
 msgstr "Iniciar en modo pantalla completa"
 
 #. Icon-name
-#: ../src/main_window.c:461
+#: ../src/main_window.c:463
 msgid "_Leave Fullscreen"
 msgstr "_Salir de pantalla completa"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:463
+#: ../src/main_window.c:465
 msgid "Leave Fullscreen"
 msgstr "Salir de pantalla completa"
 
 

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

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

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

commit b6383af7002b12d81b362c0ddf555ae02c8a3cc0
Author: Vinzenz Vietzke 
Date:   Sat Jul 13 12:30:56 2019 +0200

I18n: Update translation de (100%).

193 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/de.po | 304 +--
 1 file changed, 139 insertions(+), 165 deletions(-)

diff --git a/po/de.po b/po/de.po
index fb2b03a..cc6b5d2 100644
--- a/po/de.po
+++ b/po/de.po
@@ -5,13 +5,14 @@
 # Translators:
 # Georg Eckert , 2013,2015
 # Tobias Bannert , 2014-2017
+# Vinzenz Vietzke , 2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2019-04-16 18:32+0200\n"
-"PO-Revision-Date: 2019-04-16 16:32+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2019-07-13 00:31+0200\n"
+"PO-Revision-Date: 2019-07-13 08:53+\n"
+"Last-Translator: Vinzenz Vietzke \n"
 "Language-Team: German 
(http://www.transifex.com/xfce/xfce-apps/language/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -48,517 +49,517 @@ msgstr "%s: %s\n\n%s --help versuchen, um eine komplette 
Liste\nder möglichen B
 msgid "Image Viewer"
 msgstr "Bildbetrachter"
 
-#: ../src/main_window.c:369
+#: ../src/main_window.c:371
 msgid "_File"
 msgstr "_Datei"
 
 #. Icon-name
-#: ../src/main_window.c:375
+#: ../src/main_window.c:377
 msgid "_Open..."
 msgstr "_Öffnen …"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:377
+#: ../src/main_window.c:379
 msgid "Open an image"
 msgstr "Bild öffnen"
 
 #. Icon-name
-#: ../src/main_window.c:381
+#: ../src/main_window.c:383
 msgid "_Save copy..."
 msgstr "Kopie _speichern …"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:383
+#: ../src/main_window.c:385
 msgid "Save a copy of the image"
 msgstr "Eine Kopie des Bildes speichern"
 
 #. Icon-name
-#: ../src/main_window.c:387
+#: ../src/main_window.c:389
 msgid "_Properties..."
 msgstr "Ei_genschaften …"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:389
+#: ../src/main_window.c:391
 msgid "Show file properties"
 msgstr "Dateieigenschaften anzeigen"
 
 #. Icon-name
-#: ../src/main_window.c:393 ../src/main_window.c:412
+#: ../src/main_window.c:395 ../src/main_window.c:414
 msgid "_Edit"
 msgstr "_Bearbeiten"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:395
+#: ../src/main_window.c:397
 msgid "Edit this image"
 msgstr "Dieses Bild bearbeiten"
 
 #. Icon-name
-#: ../src/main_window.c:399 ../src/preferences_dialog.c:541
+#: ../src/main_window.c:401 ../src/preferences_dialog.c:541
 #: ../src/properties_dialog.c:325
 msgid "_Close"
 msgstr "_Schließen"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:401
+#: ../src/main_window.c:403
 msgid "Close this image"
 msgstr "Dieses Fenster schließen"
 
 #. Icon-name
-#: ../src/main_window.c:405
+#: ../src/main_window.c:407
 msgid "_Quit"
 msgstr "B_eenden"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:407
+#: ../src/main_window.c:409
 msgid "Quit Ristretto"
 msgstr "Ristretto beenden"
 
-#: ../src/main_window.c:418
+#: ../src/main_window.c:420
 msgid "_Open with"
 msgstr "_Öffnen mit …"
 
-#: ../src/main_window.c:424
-msgid "_Sorting"
-msgstr "_Sortierung"
+#: ../src/main_window.c:426
+msgid "_Sort by"
+msgstr "_Sortieren nach"
 
 #. Icon-name
-#: ../src/main_window.c:430
+#: ../src/main_window.c:432
 msgid "_Delete"
 msgstr "_Löschen"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:432
+#: ../src/main_window.c:434
 msgid "Delete this image from disk"
 msgstr "Dieses Bild vom Datenrträger löschen"
 
 #. Icon-name
-#: ../src/main_window.c:436
+#: ../src/main_window.c:438
 msgid "_Clear private data..."
 msgstr "_Private Daten löschen …"
 
 #. Icon-name
-#: ../src/main_window.c:442
+#: ../src/main_window.c:444
 msgid "_Preferences..."
 msgstr "_Einstellungen …"
 
-#: ../src/main_window.c:449
+#: ../src/main_window.c:451
 msgid "_View"
 msgstr "_Ansicht"
 
 #. Icon-name
-#: ../src/main_window.c:455
+#: ../src/main_window.c:457
 msgid "_Fullscreen"
 msgstr "V_ollbild"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:457
+#: ../src/main_window.c:459
 msgid "Switch to fullscreen"
 msgstr "Zum Vollbildmodus wechseln"
 
 #. Icon-name
-#: ../src/main_window.c:461
+#: ../src/main_window.c:463
 msgid "_Leave Fullscreen"
 msgstr "_Vollbildmodus verlassen"
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:463
+#: ../src/main_window.c:465
 msgid "Leave Fullscreen"
 msgstr "Vollbildmodus verlassen"
 
 #. Icon-name
-#: ../src/main_window.c:467
+#: ../src/main_window.c:469
 msgid "Set as _Wallpaper..."
 msgstr "Als 

[Xfce4-commits] [apps/ristretto] branch master updated (7cfab43 -> 189e4e1)

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

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

  from  7cfab43   appdata.xml: Remove releases info and update URLs
   new  b6383af   I18n: Update translation de (100%).
   new  b98d93a   I18n: Update translation es (100%).
   new  29a8e0e   I18n: Update translation fr (100%).
   new  5106c85   I18n: Update translation pl (100%).
   new  189e4e1   I18n: Update translation tr (100%).

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:
 po/de.po | 304 --
 po/es.po | 304 --
 po/fr.po | 305 --
 po/pl.po | 308 +--
 po/tr.po | 301 -
 5 files changed, 695 insertions(+), 827 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-screensaver] 01/01: Close email tag

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

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit 676c9f26c85d8fe827e409c9d96f23b0a211e8d4
Author: Sean Davis 
Date:   Sat Jul 13 06:28:08 2019 -0400

Close email tag
---
 src/xfce4-screensaver-configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xfce4-screensaver-configure b/src/xfce4-screensaver-configure
index 1775046..a2e7b23 100755
--- a/src/xfce4-screensaver-configure
+++ b/src/xfce4-screensaver-configure
@@ -17,7 +17,7 @@
 #   along with this program; if not, write to the Free Software
 #   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 #
-#   Authors: Sean Davis 
 
 import argparse
 import os

-- 
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-screensaver] branch master updated (6345a9d -> 676c9f2)

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

bluesabre pushed a 
change to branch 
master
in repository apps/xfce4-screensaver.

  from  6345a9d   Add license to src/xfce4-screensaver-configure
   new  676c9f2   Close email tag

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


Summary of changes:
 src/xfce4-screensaver-configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


[Xfce4-commits] [apps/xfce4-screensaver] branch master updated (e9f01d5 -> 6345a9d)

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

bluesabre pushed a 
change to branch 
master
in repository apps/xfce4-screensaver.

  from  e9f01d5   Enable translations for src/xfce4-screensaver-configure
   new  6345a9d   Add license to src/xfce4-screensaver-configure

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


Summary of changes:
 src/xfce4-screensaver-configure | 19 +++
 1 file changed, 19 insertions(+)

-- 
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-screensaver] 01/01: Add license to src/xfce4-screensaver-configure

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

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit 6345a9da91be80390978640fee009f4d37afeee9
Author: Sean Davis 
Date:   Sat Jul 13 06:25:59 2019 -0400

Add license to src/xfce4-screensaver-configure
---
 src/xfce4-screensaver-configure | 19 +++
 1 file changed, 19 insertions(+)

diff --git a/src/xfce4-screensaver-configure b/src/xfce4-screensaver-configure
index 08aaf18..1775046 100755
--- a/src/xfce4-screensaver-configure
+++ b/src/xfce4-screensaver-configure
@@ -1,4 +1,23 @@
 #!/usr/bin/python3
+# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
+#   
+#   Copyright (C) 2019 Sean Davis 
+#
+#   This program is free software; you can redistribute it and/or modify
+#   it under the terms of the GNU General Public License as published by
+#   the Free Software Foundation; either version 2 of the License, or
+#   (at your option) any later version.
+#
+#   This program is distributed in the hope that it will be useful,
+#   but WITHOUT ANY WARRANTY; without even the implied warranty of
+#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#   GNU General Public License for more details.
+#
+#   You should have received a copy of the GNU General Public License
+#   along with this program; if not, write to the Free Software
+#   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+#   Authors: Sean Davis https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfce4-screensaver] 01/01: Enable translations for src/xfce4-screensaver-configure

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

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit e9f01d5d56c851edb52e83089e4d1874bc7b1218
Author: Sean Davis 
Date:   Sat Jul 13 06:22:00 2019 -0400

Enable translations for src/xfce4-screensaver-configure
---
 po/POTFILES.in  |  1 +
 src/xfce4-screensaver-configure | 62 ++---
 2 files changed, 41 insertions(+), 22 deletions(-)

diff --git a/po/POTFILES.in b/po/POTFILES.in
index afec5d0..e3ccb4e 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -12,6 +12,7 @@ src/gs-auth-pam.c
 src/gs-listener-dbus.c
 src/gs-lock-plug.c
 src/xfce4-screensaver-command.c
+src/xfce4-screensaver-configure
 src/xfce4-screensaver-dialog.c
 [type: gettext/glade]src/xfce4-screensaver-dialog.ui
 src/xfce4-screensaver-preferences.c
diff --git a/src/xfce4-screensaver-configure b/src/xfce4-screensaver-configure
index f121547..08aaf18 100755
--- a/src/xfce4-screensaver-configure
+++ b/src/xfce4-screensaver-configure
@@ -15,6 +15,9 @@ from gi.repository import GLib
 from gi.repository import Gtk
 from gi.repository import Gdk
 
+import locale
+from locale import gettext as _
+
 
 class XfconfChannel:
 
@@ -106,6 +109,8 @@ class DesktopScreensaverSettings(ScreensaverSettings):
 if not os.path.exists(filename):
 return False
 
+locale.textdomain('xfce4-screensaver')
+
 self.filename = filename
 
 keyfile = GLib.KeyFile.new()
@@ -123,7 +128,7 @@ class DesktopScreensaverSettings(ScreensaverSettings):
 self.label = label
 self.arguments = command.split(" ")[1:]
 self.options = options
-self.description = "%s\n\n%s" % (comment, "Part of Xfce Screensaver")
+self.description = "%s\n\n%s" % (comment, _("Part of Xfce 
Screensaver"))
 
 if len(self.options) > 0:
 self.configurable = True
@@ -134,22 +139,22 @@ class DesktopScreensaverSettings(ScreensaverSettings):
 options = OrderedDict()
 if self.name == "xfce-floaters":
 options["number-of-images"] = {'id': 'number-of-images', 'type': 
'spinbutton',
-   'label': 'Max number of images', 
'argument': '-n %', 'default': 5, 'low': 1, 'high': 25}
+   'label': _('Max number of images'), 
'argument': '-n %', 'default': 5, 'low': 1, 'high': 25}
 options["show-paths"] = {'id': 'show-paths',
- 'type': 'checkbox', 'label': 'Show 
paths', 'argument': '-p'}
+ 'type': 'checkbox', 'label': _('Show 
paths'), 'argument': '-p'}
 options["do-rotations"] = {'id': 'do-rotations',
-   'type': 'checkbox', 'label': 'Do 
rotations', 'argument': '-r'}
+   'type': 'checkbox', 'label': _('Do 
rotations'), 'argument': '-r'}
 options["print-stats"] = {'id': 'print-stats',
-  'type': 'checkbox', 'label': 'Print 
stats', 'argument': '-r'}
+  'type': 'checkbox', 'label': _('Print 
stats'), 'argument': '-r'}
 elif self.name == "xfce-personal-slideshow":
-options["location"] = {'id': 'location', 'type': 'folder', 
'label': 'Location',
+options["location"] = {'id': 'location', 'type': 'folder', 
'label': _('Location'),
'argument': '--location=%', 'default': 
GLib.get_user_special_dir(GLib.UserDirectory.DIRECTORY_PICTURES)}
 options["background-color"] = {'id': 'background-color',
-   'label': 'Background color', 
'type': 'color'}
+   'label': _('Background color'), 
'type': 'color'}
 options["sort-images"] = {'id': 'sort-images',
-  'label': 'Do not randomize images', 
'type': 'checkbox'}
+  'label': _('Do not randomize images'), 
'type': 'checkbox'}
 options["no-stretch"] = {'id': 'no-stretch',
- 'label': 'Do not stretch images', 'type': 
'checkbox'}
+ 'label': _('Do not stretch images'), 
'type': 'checkbox'}
 return options
 
 
@@ -163,6 +168,8 @@ class XmlScreensaverSettings(ScreensaverSettings):
 if not os.path.exists(filename):
 return False
 
+locale.textdomain('xscreensaver')
+
 self.filename = filename
 element = ET.parse(filename).getroot()
 
@@ -202,6 +209,8 @@ class XmlScreensaverSettings(ScreensaverSettings):
 else:
 if child.tag.startswith("_"):
 

[Xfce4-commits] [apps/xfce4-screensaver] branch master updated (be690ea -> e9f01d5)

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

bluesabre pushed a 
change to branch 
master
in repository apps/xfce4-screensaver.

  from  be690ea   Initial xfce4-screensaver-configure script and argument 
reading
   new  e9f01d5   Enable translations for src/xfce4-screensaver-configure

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/POTFILES.in  |  1 +
 src/xfce4-screensaver-configure | 62 ++---
 2 files changed, 41 insertions(+), 22 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