[Xfce4-commits] [xfce/xfce4-settings] branch master updated (b2a67e5 -> bcf3c27)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository xfce/xfce4-settings.

  from  b2a67e5   Back to development
   new  bcf3c27   dialogs: Ensure dialogs have min and max buttons

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:
 dialogs/accessibility-settings/main.c | 1 +
 dialogs/appearance-settings/main.c| 1 +
 dialogs/color-settings/main.c | 1 +
 dialogs/display-settings/main.c   | 2 ++
 dialogs/keyboard-settings/main.c  | 1 +
 dialogs/mouse-settings/main.c | 1 +
 6 files changed, 7 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] [xfce/xfce4-settings] 01/01: dialogs: Ensure dialogs have min and max buttons

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/xfce4-settings.

commit bcf3c27b91ef223ec65c5d7dfbaecd835befc5a2
Author: Simon Steinbeiss 
Date:   Sat Jan 18 11:38:06 2020 +0100

dialogs: Ensure dialogs have min and max buttons
---
 dialogs/accessibility-settings/main.c | 1 +
 dialogs/appearance-settings/main.c| 1 +
 dialogs/color-settings/main.c | 1 +
 dialogs/display-settings/main.c   | 2 ++
 dialogs/keyboard-settings/main.c  | 1 +
 dialogs/mouse-settings/main.c | 1 +
 6 files changed, 7 insertions(+)

diff --git a/dialogs/accessibility-settings/main.c 
b/dialogs/accessibility-settings/main.c
index 4b83ec8..2402b37 100644
--- a/dialogs/accessibility-settings/main.c
+++ b/dialogs/accessibility-settings/main.c
@@ -253,6 +253,7 @@ main (gint argc, gchar **argv)
 {
 /* Get the dialog widget */
 dialog = gtk_builder_get_object (builder, "dialog");
+gtk_window_set_type_hint (GTK_WINDOW (dialog), 
GDK_WINDOW_TYPE_HINT_NORMAL);
 
 g_signal_connect (dialog, "response",
 G_CALLBACK (accessibility_settings_dialog_response), NULL);
diff --git a/dialogs/appearance-settings/main.c 
b/dialogs/appearance-settings/main.c
index c9acaa1..087f9d3 100644
--- a/dialogs/appearance-settings/main.c
+++ b/dialogs/appearance-settings/main.c
@@ -1222,6 +1222,7 @@ main (gint argc, gchar **argv)
 {
 /* build the dialog */
 dialog = gtk_builder_get_object (builder, "dialog");
+gtk_window_set_type_hint (GTK_WINDOW (dialog), 
GDK_WINDOW_TYPE_HINT_NORMAL);
 
 g_signal_connect (dialog, "response",
 G_CALLBACK (appearance_settings_dialog_response), NULL);
diff --git a/dialogs/color-settings/main.c b/dialogs/color-settings/main.c
index ac6a227..f240c08 100644
--- a/dialogs/color-settings/main.c
+++ b/dialogs/color-settings/main.c
@@ -1425,6 +1425,7 @@ main (gint argc, gchar **argv)
 if (G_UNLIKELY (opt_socket_id == 0)) {
 /* Get the dialog widget */
 settings->dialog = gtk_builder_get_object (builder, "dialog");
+gtk_window_set_type_hint (GTK_WINDOW (settings->dialog), 
GDK_WINDOW_TYPE_HINT_NORMAL);
 
 g_signal_connect (settings->dialog, "response",
   G_CALLBACK (color_settings_dialog_response), 
settings);
diff --git a/dialogs/display-settings/main.c b/dialogs/display-settings/main.c
index 41f83a3..dfaa4fc 100644
--- a/dialogs/display-settings/main.c
+++ b/dialogs/display-settings/main.c
@@ -3715,6 +3715,8 @@ display_settings_show_main_dialog (GdkDisplay *display)
 {
 /* Build the dialog */
 dialog = display_settings_dialog_new (builder);
+gtk_window_set_type_hint (GTK_WINDOW (dialog), 
GDK_WINDOW_TYPE_HINT_NORMAL);
+
 /* Set up notifications */
 XRRSelectInput (gdk_x11_display_get_xdisplay (display),
 GDK_WINDOW_XID (gdk_get_default_root_window ()),
diff --git a/dialogs/keyboard-settings/main.c b/dialogs/keyboard-settings/main.c
index f450646..ff84062 100644
--- a/dialogs/keyboard-settings/main.c
+++ b/dialogs/keyboard-settings/main.c
@@ -123,6 +123,7 @@ main (intargc,
 {
   /* Create and run the settings dialog */
   dialog = xfce_keyboard_settings_create_dialog (settings);
+  gtk_window_set_type_hint (GTK_WINDOW (dialog), 
GDK_WINDOW_TYPE_HINT_NORMAL);
 
   g_signal_connect (dialog, "response",
   G_CALLBACK (keyboard_settings_dialog_response), NULL);
diff --git a/dialogs/mouse-settings/main.c b/dialogs/mouse-settings/main.c
index 93a3a1f..59fae69 100644
--- a/dialogs/mouse-settings/main.c
+++ b/dialogs/mouse-settings/main.c
@@ -2068,6 +2068,7 @@ main (gint argc, gchar **argv)
 {
 /* get the dialog */
 dialog = gtk_builder_get_object (builder, "mouse-dialog");
+gtk_window_set_type_hint (GTK_WINDOW (dialog), 
GDK_WINDOW_TYPE_HINT_NORMAL);
 
 /* unlock */
 locked--;

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


[Xfce4-commits] [xfce/xfce4-session] branch master updated (01a1514 -> c8aebc4)

2020-01-18 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-session.

  from  01a1514   I18n: Update translation nl (100%).
   new  c8aebc4   I18n: Update translation es (100%).

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


Summary of changes:
 po/es.po | 61 +++--
 1 file changed, 27 insertions(+), 34 deletions(-)

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


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

2020-01-18 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-session.

commit c8aebc4df807b7c8dce0207654c85d45a6f88a77
Author: Anonymous 
Date:   Sat Jan 18 12:30:52 2020 +0100

I18n: Update translation es (100%).

162 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/es.po | 61 +++--
 1 file changed, 27 insertions(+), 34 deletions(-)

diff --git a/po/es.po b/po/es.po
index fd2f60d..23e62a9 100644
--- a/po/es.po
+++ b/po/es.po
@@ -6,8 +6,8 @@
 # Abel Martín , 2008
 # Adolfo Jayme-Barrientos, 2013
 # Adolfo Jayme Barrientos, 2013
-# Fito JB, 2013
-# Casper casper, 2019
+# Adolfo Jayme-Barrientos, 2013
+# Casper casper, 2019-2020
 # Edscott Wilson Garcia , 2004
 # Fitoschido, 2013
 # prflr88 , 2014-2015
@@ -17,9 +17,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-session\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-01 00:31+0200\n"
-"PO-Revision-Date: 2019-08-01 06:18+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2020-01-14 06:31+0100\n"
+"PO-Revision-Date: 2020-01-18 08:10+\n"
+"Last-Translator: Casper casper\n"
 "Language-Team: Spanish 
(http://www.transifex.com/xfce/xfce4-session/language/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -181,23 +181,23 @@ msgstr "_Salir del programa"
 msgid "Unable to terminate program."
 msgstr "No se puede finalizar el programa."
 
-#: ../settings/session-editor.c:533
+#: ../settings/session-editor.c:536
 msgid "(Unknown program)"
 msgstr "(Programa desconocido)"
 
-#: ../settings/session-editor.c:763
+#: ../settings/session-editor.c:768
 msgid "Priority"
 msgstr "Prioridad"
 
-#: ../settings/session-editor.c:771
+#: ../settings/session-editor.c:776
 msgid "PID"
 msgstr "PID"
 
-#: ../settings/session-editor.c:777 ../settings/xfae-window.c:198
+#: ../settings/session-editor.c:782 ../settings/xfae-window.c:172
 msgid "Program"
 msgstr "Programa"
 
-#: ../settings/session-editor.c:802
+#: ../settings/session-editor.c:807
 msgid "Restart Style"
 msgstr "Estilo de reinicio"
 
@@ -205,7 +205,7 @@ msgstr "Estilo de reinicio"
 msgid "_OK"
 msgstr "Ace_ptar"
 
-#: ../settings/xfae-dialog.c:82
+#: ../settings/xfae-dialog.c:82 ../settings/xfae-window.c:220
 msgid "Add application"
 msgstr "Añadir aplicación"
 
@@ -237,7 +237,7 @@ msgstr "Cancelar"
 msgid "OK"
 msgstr "Aceptar"
 
-#: ../settings/xfae-dialog.c:260
+#: ../settings/xfae-dialog.c:260 ../settings/xfae-window.c:242
 msgid "Edit application"
 msgstr "Editar aplicación"
 
@@ -303,48 +303,41 @@ msgstr "No se pudo abrir %s para lectura"
 msgid "Failed to set run hook"
 msgstr "Error al establecer la ejecución"
 
-#: ../settings/xfae-window.c:139
-msgid ""
-"List of applications that will be started automatically on specific events 
like login, logout, shutdown, etc.\n"
-"On login additionally all applications that were saved on your last logout 
will be started.\n"
-"Cursive applications belong to another desktop environment, but you can still 
enable them if you want."
-msgstr "Lista de aplicaciones que se iniciarán automáticamente en eventos 
específicos como inicio de sesión, cierre de sesión, apagar, etc.\nAl iniciar 
sesión, además se iniciarán todas las aplicaciones que se guardaron en su 
último cierre de sesión.\nLas aplicaciones cursivas pertenecen a otro entorno 
de escritorio, pero aún puede habilitarlas si lo desea."
-
-#: ../settings/xfae-window.c:219
+#: ../settings/xfae-window.c:193
 msgid "Trigger"
 msgstr "Desencadenar"
 
-#: ../settings/xfae-window.c:243 ../settings/xfae-window.c:329
+#: ../settings/xfae-window.c:229
+msgid "Remove application"
+msgstr "Eliminar aplicación"
+
+#: ../settings/xfae-window.c:306
 msgid "Add"
 msgstr "Añadir"
 
-#: ../settings/xfae-window.c:251 ../settings/xfae-window.c:335
+#: ../settings/xfae-window.c:312
 msgid "Remove"
 msgstr "Suprimir"
 
-#: ../settings/xfae-window.c:263
-msgid "Edit"
-msgstr "Editar"
-
-#: ../settings/xfae-window.c:389
+#: ../settings/xfae-window.c:366
 #, c-format
 msgid "Failed adding \"%s\""
 msgstr "No se pudo añadir «%s»"
 
-#: ../settings/xfae-window.c:420 ../settings/xfae-window.c:434
+#: ../settings/xfae-window.c:397 ../settings/xfae-window.c:411
 msgid "Failed to remove item"
 msgstr "No se pudo eliminar el elemento"
 
-#: ../settings/xfae-window.c:463
+#: ../settings/xfae-window.c:440
 msgid "Failed to edit item"
 msgstr "No se pudo editar el elemento"
 
-#: ../settings/xfae-window.c:483
+#: ../settings/xfae-window.c:460
 #, c-format
 msgid "Failed to edit item \"%s\""
 msgstr "No se pudo editar el elemento «%s»"
 
-#: ../settings/xfae-window.c:511
+#: ../settings/xfae-window.c:488
 msgid "Failed to toggle item"
 msgstr "No se pudo activar/desactivar el elemento"
 
@@

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

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 3330aa1497f8b5e78b3f44eb6d2f24d359d9961a
Author: Anonymous 
Date:   Sat Jan 18 12:31:18 2020 +0100

I18n: Update translation es (100%).

144 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/es.po | 58 +-
 1 file changed, 33 insertions(+), 25 deletions(-)

diff --git a/po/es.po b/po/es.po
index ff94c64..b3cb70b 100644
--- a/po/es.po
+++ b/po/es.po
@@ -2,25 +2,25 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR , YEAR.
-#
+# 
 # Translators:
 # Adolfo Jayme-Barrientos, 2018
 # Xfce Bot , 2018
 # Jaime Marquínez Ferrándiz, 2019
-# Casper casper, 2019
 # prflr88 , 2019
 # Nick Schermer , 2020
 # 629cf3e396111bb8c5fb6664e2dbc91d, 2020
 # Toni Estévez , 2020
-#
+# Casper casper, 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-01 13:36-0500\n"
+"POT-Creation-Date: 2020-01-14 21:03-0500\n"
 "PO-Revision-Date: 2018-06-28 22:08+\n"
-"Last-Translator: Toni Estévez , 2020\n"
+"Last-Translator: Casper casper, 2020\n"
 "Language-Team: Spanish (https://www.transifex.com/xfce/teams/16840/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -611,13 +611,21 @@ msgstr ""
 
 #: ../data/metainfo/catfish.appdata.xml.in.h:5
 msgid ""
+"This release resolves packaging errors for Debian and includes optimized "
+"assets."
+msgstr ""
+"Esta versión resuelve errores de empaquetado para Debian e incluye activos "
+"optimizados."
+
+#: ../data/metainfo/catfish.appdata.xml.in.h:6
+msgid ""
 "This release adds support for running under Wayland and features refreshed "
 "dialogs with simplified controls."
 msgstr ""
-"Esta versión añade compatibilidad para ejecutarse en Wayland y presenta "
-"diálogos actualizados con controles simplificados."
+"Esta versión agrega soporte para ejecutarse en Wayland y presenta cuadros de"
+" diálogo actualizados con controles simplificados."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:6
+#: ../data/metainfo/catfish.appdata.xml.in.h:7
 msgid ""
 "This release addresses some startup errors as well as various issues with "
 "traversing symbolic links."
@@ -625,7 +633,7 @@ msgstr ""
 "Esta versión aborda algunos errores de inicio, así como varios problemas al "
 "atravesar enlaces simbólicos."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:7
+#: ../data/metainfo/catfish.appdata.xml.in.h:8
 msgid ""
 "This release includes many appearance improvements, introduces a new "
 "preferences dialog, and improves search results and performance."
@@ -634,7 +642,7 @@ msgstr ""
 "diálogo de preferencias y mejora los resultados y el rendimiento de la "
 "búsqueda."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:8
+#: ../data/metainfo/catfish.appdata.xml.in.h:9
 msgid ""
 "This release features performance improvements by excluding uncommon search "
 "directories."
@@ -642,7 +650,7 @@ msgstr ""
 "Esta versión incluye mejoras de rendimiento al excluir carpetas de búsqueda "
 "poco comunes."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:9
+#: ../data/metainfo/catfish.appdata.xml.in.h:10
 msgid ""
 "This release features better desktop integration, support for OpenBSD and "
 "Wayland, and improved translation support."
@@ -651,7 +659,7 @@ msgstr ""
 "compatibilidad con OpenBSD y Wayland, y un mejor apoyo para las "
 "traducciones."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:10
+#: ../data/metainfo/catfish.appdata.xml.in.h:11
 msgid ""
 "This release features improved performance, better desktop integration, and "
 "a number of long-standing bugs. Quoted search strings are now correctly "
@@ -664,7 +672,7 @@ msgstr ""
 "arrastrados a otras aplicaciones. Las miniaturas solo se generan cuando lo "
 "solicita el usuario."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:11
+#: ../data/metainfo/catfish.appdata.xml.in.h:12
 msgid ""
 "This release features several improvements to thumbnail processing and "
 "numerous bug fixes. Icon previews have been improved and will now match "
@@ -677,11 +685,11 @@ msgstr ""
 " se muestran en la parte inferior de la ventana de resultados ahora son "
 "accesibles con todos los temas del escritorio."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:12
+#: ../data/metainfo/catfish.appdata.xml.in.h:13
 msgid "This is a minor translations-only release."
 msgstr "Esta es una versión menor solo para traducciones."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:13
+#: ../data/metainfo/catfish.appdata.xml.in.h:14
 msgid ""
 "This release features several performance improvements and numerous "
 "t

[Xfce4-commits] [apps/catfish] branch master updated (5e54b6c -> 3330aa1)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  5e54b6c   I18n: Update translation nl (100%).
   new  3330aa1   I18n: Update translation es (100%).

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


Summary of changes:
 po/es.po | 58 +-
 1 file changed, 33 insertions(+), 25 deletions(-)

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


[Xfce4-commits] [xfce/xfce4-settings] branch master updated (bcf3c27 -> 2f2fc29)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository xfce/xfce4-settings.

  from  bcf3c27   dialogs: Ensure dialogs have min and max buttons
   new  2f2fc29   settings-manager: Show min and max buttons

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:
 xfce4-settings-manager/main.c | 1 +
 1 file changed, 1 insertion(+)

-- 
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-settings] 01/01: settings-manager: Show min and max buttons

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/xfce4-settings.

commit 2f2fc2944b3d8ea19bc32e4476db50f615abfd5f
Author: Simon Steinbeiss 
Date:   Sat Jan 18 13:37:21 2020 +0100

settings-manager: Show min and max buttons
---
 xfce4-settings-manager/main.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/xfce4-settings-manager/main.c b/xfce4-settings-manager/main.c
index 1f30625..ec0518e 100644
--- a/xfce4-settings-manager/main.c
+++ b/xfce4-settings-manager/main.c
@@ -100,6 +100,7 @@ main(int argc,
 garcon_set_environment ("XFCE");
 
 dialog = xfce_settings_manager_dialog_new ();
+gtk_window_set_type_hint (GTK_WINDOW (dialog), 
GDK_WINDOW_TYPE_HINT_NORMAL);
 gtk_window_present (GTK_WINDOW (dialog));
 
 if (opt_dialog != NULL

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


[Xfce4-commits] [xfce/xfce4-panel] 01/01: systray: Basic support for symbolic icons

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/xfce4-panel.

commit 7db1f872835f522a44c0e935897187444d486ea7
Author: Clement Lefebvre 
Date:   Fri Jan 17 22:48:57 2020 +0100

systray: Basic support for symbolic icons
---
 plugins/systray/systray-manager.c | 86 ++-
 plugins/systray/systray-manager.h |  6 +++
 plugins/systray/systray.c | 32 ++-
 3 files changed, 122 insertions(+), 2 deletions(-)

diff --git a/plugins/systray/systray-manager.c 
b/plugins/systray/systray-manager.c
index 4915649..3901e7b 100644
--- a/plugins/systray/systray-manager.c
+++ b/plugins/systray/systray-manager.c
@@ -78,6 +78,7 @@ static voidsystray_manager_handle_dock_request
(Systr
 static gbooleansystray_manager_handle_undock_request  
(GtkSocket   *socket,

gpointer user_data);
 static voidsystray_manager_set_visual 
(SystrayManager  *manager);
+static voidsystray_manager_set_colors_property
(SystrayManager  *manager);
 static voidsystray_manager_message_free   
(SystrayMessage  *message);
 static voidsystray_manager_message_remove_from_list   
(SystrayManager  *manager,

XClientMessageEvent *xevent);
@@ -109,6 +110,12 @@ struct _SystrayManager
   /* list of client sockets */
   GHashTable *sockets;
 
+  /* symbolic colors */
+  GdkColor fg;
+  GdkColor error;
+  GdkColor warning;
+  GdkColor success;
+
   /* orientation of the tray */
   GtkOrientation  orientation;
 
@@ -218,6 +225,23 @@ systray_manager_init (SystrayManager *manager)
   manager->orientation = GTK_ORIENTATION_HORIZONTAL;
   manager->messages = NULL;
   manager->sockets = g_hash_table_new (NULL, NULL);
+
+  /* initialize symbolic colors */
+  manager->fg.red = 0.0;
+  manager->fg.green = 0.0;
+  manager->fg.blue = 0.0;
+
+  manager->error.red = 1.0;
+  manager->error.green = 0.0;
+  manager->error.blue = 0.0;
+
+  manager->warning.red = 1.0;
+  manager->warning.green = 1.0;
+  manager->warning.blue = 0.0;
+
+  manager->success.red = 0.0;
+  manager->success.green = 1.0;
+  manager->success.blue = 0.0;
 }
 
 
@@ -344,9 +368,12 @@ G_GNUC_END_IGNORE_DEPRECATIONS
   /* set the invisible window and take a reference */
   manager->invisible = GTK_WIDGET (g_object_ref (G_OBJECT (invisible)));
 
-  /* set the visial property for transparent tray icons */
+  /* set the visual property for transparent tray icons */
   systray_manager_set_visual (manager);
 
+  /* set the property for symbolic color support */
+  systray_manager_set_colors_property (manager);
+
   /* get the current x server time stamp */
   timestamp = gdk_x11_get_server_time (gtk_widget_get_window (GTK_WIDGET 
(invisible)));
 
@@ -794,6 +821,63 @@ systray_manager_set_visual (SystrayManager *manager)
 
 
 void
+systray_manager_set_colors (SystrayManager *manager,
+GdkColor   *fg,
+GdkColor   *error,
+GdkColor   *warning,
+GdkColor   *success)
+{
+  panel_return_if_fail (XFCE_IS_SYSTRAY_MANAGER (manager));
+
+  manager->fg = *fg;
+  manager->error = *error;
+  manager->warning = *warning;
+  manager->success = *success;
+
+  systray_manager_set_colors_property (manager);
+}
+
+
+
+static void
+systray_manager_set_colors_property (SystrayManager *manager)
+{
+  GdkWindow  *window;
+  GdkDisplay *display;
+  Atomatom;
+  gulong  data[12];
+
+  g_return_if_fail (manager->invisible != NULL);
+  window = gtk_widget_get_window (manager->invisible);
+  g_return_if_fail (window != NULL);
+
+  display = gtk_widget_get_display (manager->invisible);
+  atom = gdk_x11_get_xatom_by_name_for_display (display, 
"_NET_SYSTEM_TRAY_COLORS");
+
+  data[0] = manager->fg.red;
+  data[1] = manager->fg.green;
+  data[2] = manager->fg.blue;
+  data[3] = manager->error.red;
+  data[4] = manager->error.green;
+  data[5] = manager->error.blue;
+  data[6] = manager->warning.red;
+  data[7] = manager->warning.green;
+  data[8] = manager->warning.blue;
+  data[9] = manager->success.red;
+  data[10] = manager->success.green;
+  data[11] = manager->success.blue;
+
+  XChangeProperty (GDK_DISPLAY_XDISPLAY (display),
+   GDK_WINDOW_XID (window),
+   atom,
+   XA_CARDINAL, 32,
+   PropModeReplace,
+   (guchar *) &data, 12);
+}
+
+
+
+void
 systray_manager_set_orientation (SystrayManager *manager,

[Xfce4-commits] [xfce/xfce4-panel] branch master updated (d51df58 -> 7db1f87)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository xfce/xfce4-panel.

  from  d51df58   Back to development
   new  7db1f87   systray: Basic support for symbolic icons

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:
 plugins/systray/systray-manager.c | 86 ++-
 plugins/systray/systray-manager.h |  6 +++
 plugins/systray/systray.c | 32 ++-
 3 files changed, 122 insertions(+), 2 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 01/05: Minor code cleanups.

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit 39c38f9d74d0db484d5ce2d673d443defcdc645f
Author: Graeme Gott 
Date:   Wed Jan 15 16:44:50 2020 -0500

Minor code cleanups.
---
 panel-plugin/icon-renderer.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/panel-plugin/icon-renderer.cpp b/panel-plugin/icon-renderer.cpp
index 7a0ad78..561f773 100644
--- a/panel-plugin/icon-renderer.cpp
+++ b/panel-plugin/icon-renderer.cpp
@@ -257,7 +257,7 @@ static void 
whiskermenu_icon_renderer_class_init(WhiskerMenuIconRendererClass* k
 
 //-
 
-static void whiskermenu_icon_renderer_init(G_GNUC_UNUSED 
WhiskerMenuIconRenderer* icon_renderer)
+static void whiskermenu_icon_renderer_init(WhiskerMenuIconRenderer*)
 {
 }
 
@@ -265,7 +265,7 @@ static void whiskermenu_icon_renderer_init(G_GNUC_UNUSED 
WhiskerMenuIconRenderer
 
 GtkCellRenderer* whiskermenu_icon_renderer_new()
 {
-   return 
static_cast(g_object_new(WHISKERMENU_TYPE_ICON_RENDERER, 
NULL));
+   return GTK_CELL_RENDERER(g_object_new(WHISKERMENU_TYPE_ICON_RENDERER, 
NULL));
 }
 
 //-

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] branch master updated (6d0177c -> d1ead8b)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
change to branch 
master
in repository panel-plugins/xfce4-whiskermenu-plugin.

  from  6d0177c   I18n: Update translation tr (100%).
   new  39c38f9   Minor code cleanups.
   new  baa13c3   Make casts explicit.
   new  1d308c4   Make interface for SectionButton more clear.
   new  1e2ffd9   Fix regression of row expansion by clicking treeview 
arrow.
   new  d1ead8b   Fix sidebar scrollbar always visible at launch.

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:
 panel-plugin/applications-page.cpp  |  6 +++---
 panel-plugin/icon-renderer.cpp  |  4 ++--
 panel-plugin/launcher-icon-view.cpp |  2 +-
 panel-plugin/launcher-tree-view.cpp | 26 +-
 panel-plugin/launcher-tree-view.h   |  5 +
 panel-plugin/section-button.cpp |  2 +-
 panel-plugin/section-button.h   | 15 +--
 panel-plugin/window.cpp | 33 +
 8 files changed, 31 insertions(+), 62 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 04/05: Fix regression of row expansion by clicking treeview arrow.

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit 1e2ffd9df9a4d6924863f21a631fd44f5ac35236
Author: Graeme Gott 
Date:   Fri Jan 17 09:53:50 2020 -0500

Fix regression of row expansion by clicking treeview arrow.
---
 panel-plugin/launcher-tree-view.cpp | 26 +-
 panel-plugin/launcher-tree-view.h   |  5 +
 2 files changed, 2 insertions(+), 29 deletions(-)

diff --git a/panel-plugin/launcher-tree-view.cpp 
b/panel-plugin/launcher-tree-view.cpp
index c3fa2e7..9ec7063 100644
--- a/panel-plugin/launcher-tree-view.cpp
+++ b/panel-plugin/launcher-tree-view.cpp
@@ -39,8 +39,7 @@ static gboolean is_separator(GtkTreeModel* model, 
GtkTreeIter* iter, gpointer)
 //-
 
 LauncherTreeView::LauncherTreeView() :
-   m_icon_size(0),
-   m_row_activated(false)
+   m_icon_size(0)
 {
// Create the view
m_view = GTK_TREE_VIEW(gtk_tree_view_new());
@@ -62,10 +61,7 @@ LauncherTreeView::LauncherTreeView() :
g_object_ref_sink(m_view);
 
// Handle drag-and-drop
-   g_signal_connect_slot(m_view, "button-press-event", 
&LauncherTreeView::on_button_press_event, this);
g_signal_connect_slot(m_view, "row-activated", 
&LauncherTreeView::on_row_activated, this);
-   g_signal_connect_slot(m_view, 
"test-collapse-row", &LauncherTreeView::test_row_toggle, this);
-   g_signal_connect_slot(m_view, 
"test-expand-row", &LauncherTreeView::test_row_toggle, this);
 }
 
 //-
@@ -296,15 +292,6 @@ gboolean 
LauncherTreeView::on_key_release_event(GtkWidget*, GdkEvent* event)
 
 //-
 
-gboolean LauncherTreeView::on_button_press_event(GtkWidget*, GdkEvent*)
-{
-   m_row_activated = false;
-
-   return false;
-}
-
-//-
-
 void LauncherTreeView::on_row_activated(GtkTreeView* tree_view, GtkTreePath* 
path, GtkTreeViewColumn*)
 {
Element* element = NULL;
@@ -316,8 +303,6 @@ void LauncherTreeView::on_row_activated(GtkTreeView* 
tree_view, GtkTreePath* pat
return;
}
 
-   m_row_activated = true;
-
if (gtk_tree_view_row_expanded(tree_view, path))
{
gtk_tree_view_collapse_row(tree_view, path);
@@ -329,12 +314,3 @@ void LauncherTreeView::on_row_activated(GtkTreeView* 
tree_view, GtkTreePath* pat
 }
 
 //-
-
-gboolean LauncherTreeView::test_row_toggle()
-{
-   bool allow = !m_row_activated;
-   m_row_activated = false;
-   return allow;
-}
-
-//-
diff --git a/panel-plugin/launcher-tree-view.h 
b/panel-plugin/launcher-tree-view.h
index 4c0a30f..3eff48c 100644
--- a/panel-plugin/launcher-tree-view.h
+++ b/panel-plugin/launcher-tree-view.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2013, 2016, 2019 Graeme Gott 
+ * Copyright (C) 2013, 2016, 2019, 2020 Graeme Gott 
  *
  * This library is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -65,15 +65,12 @@ private:
void create_column();
gboolean on_key_press_event(GtkWidget*, GdkEvent* event);
gboolean on_key_release_event(GtkWidget*, GdkEvent* event);
-   gboolean on_button_press_event(GtkWidget*, GdkEvent* event);
void on_row_activated(GtkTreeView* tree_view, GtkTreePath* path, 
GtkTreeViewColumn* column);
-   gboolean test_row_toggle();
 
 private:
GtkTreeView* m_view;
GtkTreeViewColumn* m_column;
int m_icon_size;
-   bool m_row_activated;
 };
 
 }

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 02/05: Make casts explicit.

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit baa13c38a25cdcaf1d130188746ad4a92c0ee86f
Author: Graeme Gott 
Date:   Thu Jan 16 14:01:46 2020 -0500

Make casts explicit.
---
 panel-plugin/launcher-icon-view.cpp | 2 +-
 panel-plugin/section-button.cpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/panel-plugin/launcher-icon-view.cpp 
b/panel-plugin/launcher-icon-view.cpp
index 1b3a8a0..8c7c27e 100644
--- a/panel-plugin/launcher-icon-view.cpp
+++ b/panel-plugin/launcher-icon-view.cpp
@@ -96,7 +96,7 @@ GtkTreePath* LauncherIconView::get_selected_path() const
{
path = 
gtk_tree_path_copy(static_cast(selection->data));
}
-   g_list_free_full(selection, (GDestroyNotify)gtk_tree_path_free);
+   g_list_free_full(selection, 
reinterpret_cast(gtk_tree_path_free));
return path;
 }
 
diff --git a/panel-plugin/section-button.cpp b/panel-plugin/section-button.cpp
index c20ab01..81bcc56 100644
--- a/panel-plugin/section-button.cpp
+++ b/panel-plugin/section-button.cpp
@@ -38,7 +38,7 @@ static gboolean on_enter_notify_event(GtkWidget*, 
GdkEventCrossing*, GtkToggleBu
 {
if (wm_settings->category_hover_activate && 
!gtk_toggle_button_get_active(button))
{
-   g_timeout_add(150, (GSourceFunc)hover_timeout, button);
+   g_timeout_add(150, 
reinterpret_cast(hover_timeout), button);
}
return false;
 }

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 05/05: Fix sidebar scrollbar always visible at launch.

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit d1ead8b49f6e56e97ac34dbc21d7f0fb37924962
Author: Graeme Gott 
Date:   Thu Jan 16 16:48:25 2020 -0500

Fix sidebar scrollbar always visible at launch.
---
 panel-plugin/window.cpp | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/panel-plugin/window.cpp b/panel-plugin/window.cpp
index 5379bd2..dccbd9d 100644
--- a/panel-plugin/window.cpp
+++ b/panel-plugin/window.cpp
@@ -709,8 +709,6 @@ void WhiskerMenu::Window::set_categories(const 
std::vector& cate
}
 
show_default_page();
-
-   check_scrollbar_needed();
 }
 
 //-
@@ -920,8 +918,6 @@ gboolean 
WhiskerMenu::Window::on_state_flags_changed_event(GtkWidget* widget, Gt
gtk_window_present(m_window);
}
 
-   check_scrollbar_needed();
-
return false;
 }
 
@@ -1000,10 +996,13 @@ gboolean WhiskerMenu::Window::on_draw_event(GtkWidget* 
widget, cairo_t* cr)
 
 void WhiskerMenu::Window::check_scrollbar_needed()
 {
+   // Find height of sidebar buttons
int height = 0;
gtk_widget_get_preferred_height(GTK_WIDGET(m_sidebar_buttons), NULL, 
&height);
 
-   if (gtk_widget_get_allocated_height(GTK_WIDGET(m_sidebar)) > height)
+   // Always show scrollbar if sidebar is shorter than buttons
+   int allocated = gtk_widget_get_allocated_height(GTK_WIDGET(m_sidebar));
+   if ((allocated > height) || (allocated == 1))
{
gtk_scrolled_window_set_policy(m_sidebar, GTK_POLICY_NEVER, 
GTK_POLICY_AUTOMATIC);
}

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 03/05: Make interface for SectionButton more clear.

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit 1d308c4614f95e6dd73998b196d82793947b1288
Author: Graeme Gott 
Date:   Thu Jan 16 15:28:42 2020 -0500

Make interface for SectionButton more clear.
---
 panel-plugin/applications-page.cpp |  6 +++---
 panel-plugin/section-button.h  | 15 +--
 panel-plugin/window.cpp| 24 +---
 3 files changed, 21 insertions(+), 24 deletions(-)

diff --git a/panel-plugin/applications-page.cpp 
b/panel-plugin/applications-page.cpp
index 3648d02..1dca32c 100644
--- a/panel-plugin/applications-page.cpp
+++ b/panel-plugin/applications-page.cpp
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2013, 2015, 2016, 2017, 2018 Graeme Gott 
+ * Copyright (C) 2013, 2015, 2016, 2017, 2018, 2020 Graeme Gott 

  *
  * This library is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -136,7 +136,7 @@ void ApplicationsPage::apply_filter(GtkToggleButton* 
togglebutton)
Category* category = NULL;
for (std::vector::const_iterator i = m_categories.begin(), 
end = m_categories.end(); i != end; ++i)
{
-   if (GTK_TOGGLE_BUTTON((*i)->get_button()->get_button()) == 
togglebutton)
+   if (GTK_TOGGLE_BUTTON((*i)->get_button()->get_widget()) == 
togglebutton)
{
category = *i;
break;
@@ -328,7 +328,7 @@ void ApplicationsPage::load_contents()
for (std::vector::const_iterator i = m_categories.begin(), 
end = m_categories.end(); i != end; ++i)
{
SectionButton* category_button = (*i)->get_button();
-   g_signal_connect_slot(category_button->get_button(), "toggled", 
&ApplicationsPage::apply_filter, this);
+   g_signal_connect_slot(category_button->get_widget(), "toggled", 
&ApplicationsPage::apply_filter, this);
category_buttons.push_back(category_button);
}
 
diff --git a/panel-plugin/section-button.h b/panel-plugin/section-button.h
index 8b48b20..5faccb9 100644
--- a/panel-plugin/section-button.h
+++ b/panel-plugin/section-button.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2013, 2016, 2017 Graeme Gott 
+ * Copyright (C) 2013, 2016, 2017, 2020 Graeme Gott 
  *
  * This library is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -29,9 +29,9 @@ public:
SectionButton(GIcon* icon, const gchar* text);
~SectionButton();
 
-   GtkRadioButton* get_button() const
+   GtkWidget* get_widget() const
{
-   return m_button;
+   return GTK_WIDGET(m_button);
}
 
bool get_active() const
@@ -44,14 +44,9 @@ public:
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(m_button), 
active);
}
 
-   GSList* get_group() const
+   void join_group(SectionButton* button)
{
-   return gtk_radio_button_get_group(m_button);
-   }
-
-   void set_group(GSList* group)
-   {
-   gtk_radio_button_set_group(m_button, group);
+   gtk_radio_button_join_group(m_button, button->m_button);
}
 
void reload_icon_size();
diff --git a/panel-plugin/window.cpp b/panel-plugin/window.cpp
index a38344d..5379bd2 100644
--- a/panel-plugin/window.cpp
+++ b/panel-plugin/window.cpp
@@ -158,7 +158,7 @@ WhiskerMenu::Window::Window(Plugin* plugin) :
GIcon* icon = g_themed_icon_new("user-bookmarks");
m_favorites_button = new SectionButton(icon, _("Favorites"));
g_object_unref(icon);
-   
g_signal_connect_slot(m_favorites_button->get_button(), 
"toggled", &Window::favorites_toggled, this);
+   
g_signal_connect_slot(m_favorites_button->get_widget(), 
"toggled", &Window::favorites_toggled, this);
 
// Create recent
m_recent = new RecentPage(this);
@@ -166,8 +166,8 @@ WhiskerMenu::Window::Window(Plugin* plugin) :
icon = g_themed_icon_new("document-open-recent");
m_recent_button = new SectionButton(icon, _("Recently Used"));
g_object_unref(icon);
-   m_recent_button->set_group(m_favorites_button->get_group());
-   g_signal_connect_slot(m_recent_button->get_button(), 
"toggled", &Window::recent_toggled, this);
+   m_recent_button->join_group(m_favorites_button);
+   g_signal_connect_slot(m_recent_button->get_widget(), 
"toggled", &Window::recent_toggled, this);
 
// Create applications
m_applications = new ApplicationsPage(this);
@@ -230,8 +230,8 @@ WhiskerMenu::Window::Window(Plugin* plugin) :
 
// Create box for packing sidebar
m_sidebar_buttons = GTK_BOX(gtk_b

[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] branch master updated (d1ead8b -> 0e94617)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
change to branch 
master
in repository panel-plugins/xfce4-whiskermenu-plugin.

  from  d1ead8b   Fix sidebar scrollbar always visible at launch.
   new  0e94617   Update NEWS file.

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


Summary of changes:
 NEWS | 10 ++
 1 file changed, 10 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] [panel-plugins/xfce4-whiskermenu-plugin] annotated tag v2.3.5 created (now 0eb657f)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
change to annotated 
tag v2.3.5
in repository panel-plugins/xfce4-whiskermenu-plugin.

at  0eb657f   (tag)
   tagging  e42c9e96e31190267a4bd388c0b0854a427c0ef2 (commit)
  replaces  v2.3.4
 tagged by  Graeme Gott
on  Sat Jan 18 10:12:57 2020 -0500

- Log -
- Fix saving unchanged plugin title. (bug #15403)
- Fix sidebar scrollbar covering buttons. (bug #14730)
- Fix categories remaining scrolled when hidden.
- Fix incorrect alignment of commands next to search.
- Fix incorrect fallback value for menu opacity.
- Fix incorrect check when setting command.
- Update documentation URL. (bug #16183)
-BEGIN PGP SIGNATURE-

iQIzBAABCgAdFiEEJqVBmruaoaPtR8P2mF4ok/sIYtUFAl4jIH8ACgkQmF4ok/sI
YtWOaQ/+Lvy1420oq8NnCA3+PabCRD47brmHot/kUBunPAvkVeNQihRtaw69Jxad
Ui4L3IC4z04nJzNTuWXLRYHfqDLicdgY1gjvBH0KWdZYg4NxrRt/K50PHARhmvY4
y53vG0ebsEqYwaTcOEfYW9ummwoxK10B68DzIZwPSRpbIWIJHDVQ36WYGNLXeMKe
cFcu8g6vnnbiWwDYiHiTT6O88hdpYY7yWdTPxUBMetUqPyfFVwk2O/rF3H5QGnFH
Aqxax0d3ISXndpX4Xgv0Rk+Il31H9u1wgoKCt7EAnI8AhSc3MGHr9JHZjldzmETZ
frvANxE4VH7CdMnu+q3/A56rGb0iIfsrKyiEVV1GVoIaVjSdKrRvatiVarl3oSt1
rQFA2ninUfkrY2Vj5R0WPm2RwgMd1O+Wa594Y8RHEfZg6XJ4sE59Z4DRehh1U17O
40CWq7Sv5TFpLN8c3j4eKXEbd3ptndNCWCFfcDYd4uWB1bqlt+5uqN8SyORr8BI/
n6dHlih+Z1nCXB0f+o42aHT88fIroBpYEAyaJryRUVy+WwhSFFHNY/+xBWck6KtP
uHy9vvC5w/RAVSP2jzeOG1IKGcYlggYEXpU24SbDHDHQdt29YHjwj6iH1TzrIXO2
CLFQpxu215o+squSlXwbiK/WiafaYc86m28bqEbtPTHFlD6O2HM=
=NoUJ
-END PGP SIGNATURE-
---

This annotated tag includes the following new commits:

   new  0a00033   Update URLs from goodies.xfce.org to docs.xfce.org
   new  d0d7376   Update copyright year.
   new  e17ec1c   Fix sidebar scrollbar covering buttons.
   new  a765b80   Fix categories remaining scrolled when hidden.
   new  0131092   Fix incorrect alignment of commands next to search.
   new  0169718   Fix incorrect fallback value for menu opacity.
   new  ef7a258   Fix incorrect check when setting command.
   new  5b631f3   Fix saving unchanged plugin title.
   new  e42c9e9   Bump version number.

The 9 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.


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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 01/01: Update NEWS file.

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit 0e94617ddda530b76bd39c465114aad2ff8302ba
Author: Graeme Gott 
Date:   Sat Jan 18 10:14:23 2020 -0500

Update NEWS file.
---
 NEWS | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/NEWS b/NEWS
index abb5e30..c7e6503 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,13 @@
+2.3.5
+=
+- Fix saving unchanged plugin title. (bug #15403)
+- Fix sidebar scrollbar covering buttons. (bug #14730)
+- Fix categories remaining scrolled when hidden.
+- Fix incorrect alignment of commands next to search.
+- Fix incorrect fallback value for menu opacity.
+- Fix incorrect check when setting command.
+- Update documentation URL. (bug #16183)
+
 2.3.4
 =
 - Fix building against xfce4-panel 4.15.0

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 07/09: Fix incorrect check when setting command.

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to annotated 
tag v2.3.5
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit ef7a258ac772975f2fdd2ce62e1c7a4d8aac2aed
Author: Graeme Gott 
Date:   Thu Jan 9 08:16:26 2020 -0500

Fix incorrect check when setting command.
---
 panel-plugin/command.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/panel-plugin/command.cpp b/panel-plugin/command.cpp
index a4cb17e..3beb8f6 100644
--- a/panel-plugin/command.cpp
+++ b/panel-plugin/command.cpp
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2013, 2016, 2018 Graeme Gott 
+ * Copyright (C) 2013, 2016, 2018, 2020 Graeme Gott 
  *
  * This library is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -140,7 +140,7 @@ G_GNUC_END_IGNORE_DEPRECATIONS
 
 void Command::set(const gchar* command)
 {
-   if (command == m_command)
+   if (g_strcmp0(command, m_command) == 0)
{
return;
}

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 09/09: Bump version number.

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to annotated 
tag v2.3.5
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit e42c9e96e31190267a4bd388c0b0854a427c0ef2
Author: Graeme Gott 
Date:   Sat Jan 18 10:11:38 2020 -0500

Bump version number.
---
 CMakeLists.txt |  2 +-
 NEWS   | 10 ++
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1ab6af6..1cc4d3b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -5,7 +5,7 @@ project(whiskermenu)
 # version number
 set(whiskermenu_version_major "2")
 set(whiskermenu_version_minor "3")
-set(whiskermenu_version_micro "4")
+set(whiskermenu_version_micro "5")
 set(whiskermenu_version_tag "")
 set(whiskermenu_version 
"${whiskermenu_version_major}.${whiskermenu_version_minor}.${whiskermenu_version_micro}")
 if(${whiskermenu_version_tag} MATCHES "git")
diff --git a/NEWS b/NEWS
index abb5e30..c7e6503 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,13 @@
+2.3.5
+=
+- Fix saving unchanged plugin title. (bug #15403)
+- Fix sidebar scrollbar covering buttons. (bug #14730)
+- Fix categories remaining scrolled when hidden.
+- Fix incorrect alignment of commands next to search.
+- Fix incorrect fallback value for menu opacity.
+- Fix incorrect check when setting command.
+- Update documentation URL. (bug #16183)
+
 2.3.4
 =
 - Fix building against xfce4-panel 4.15.0

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 08/09: Fix saving unchanged plugin title.

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to annotated 
tag v2.3.5
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit 5b631f3921dc9d98a804718edee049da30d29508
Author: Graeme Gott 
Date:   Fri Jan 10 06:38:58 2020 -0500

Fix saving unchanged plugin title.
---
 panel-plugin/plugin.cpp   | 1 -
 panel-plugin/settings.cpp | 7 ++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/panel-plugin/plugin.cpp b/panel-plugin/plugin.cpp
index 4a01151..9c99e24 100644
--- a/panel-plugin/plugin.cpp
+++ b/panel-plugin/plugin.cpp
@@ -95,7 +95,6 @@ Plugin::Plugin(XfcePanelPlugin* plugin) :
 {
// Load settings
wm_settings = new Settings;
-   wm_settings->button_title = get_button_title_default();
for (int i = Settings::CommandSwitchUser; i < Settings::CommandLogOut; 
++i)
{
wm_settings->command[i]->set_shown(false);
diff --git a/panel-plugin/settings.cpp b/panel-plugin/settings.cpp
index e33d91d..1877e44 100644
--- a/panel-plugin/settings.cpp
+++ b/panel-plugin/settings.cpp
@@ -18,6 +18,7 @@
 #include "settings.h"
 
 #include "command.h"
+#include "plugin.h"
 #include "search-action.h"
 
 #include 
@@ -88,6 +89,7 @@ static void write_vector_entry(XfceRc* rc, const char* key, 
const std::vectorhttps://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 01/09: Update URLs from goodies.xfce.org to docs.xfce.org

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to annotated 
tag v2.3.5
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit 0a00033a8be690fc8d707e1d88009eeca8153768
Author: Kevin Bowen 
Date:   Wed Nov 13 01:31:17 2019 -0800

Update URLs from goodies.xfce.org to docs.xfce.org
---
 README| 17 +
 panel-plugin/plugin.h |  2 +-
 2 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/README b/README
index cd9acf1..609fa79 100644
--- a/README
+++ b/README
@@ -1,3 +1,9 @@
+Website
+===
+
+https://docs.xfce.org/panel-plugins/xfce4-whiskermenu-plugin
+
+
 About
 =
 
@@ -40,3 +46,14 @@ focus prevention. Open the focus prevention of the compiz 
settings
 manager [ccsm -> 'General Settings' -> 'Focus Prevention'].
 Add (title="Whisker Menu") to the exclude pattern to make compiz ignore
 Whisker Menu and allow it to focus when shown.
+
+
+How to report bugs?
+===
+
+You can report bugs and feature requests at http://bugzilla.xfce.org.
+Choose the product Panel Plugins and the component xfce4-whiskermenu-plugin.
+You will need to create an account for yourself.
+
+You can also join the Xfce development mailing-list:
+https://mail.xfce.org/mailman/listinfo/xfce4-dev
diff --git a/panel-plugin/plugin.h b/panel-plugin/plugin.h
index 561cb50..c21e9fb 100644
--- a/panel-plugin/plugin.h
+++ b/panel-plugin/plugin.h
@@ -18,7 +18,7 @@
 #ifndef WHISKERMENU_PLUGIN_H
 #define WHISKERMENU_PLUGIN_H
 
-#define PLUGIN_WEBSITE 
"https://goodies.xfce.org/projects/panel-plugins/xfce4-whiskermenu-plugin";
+#define PLUGIN_WEBSITE 
"https://docs.xfce.org/panel-plugins/xfce4-whiskermenu-plugin";
 
 #include 
 

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 03/09: Fix sidebar scrollbar covering buttons.

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to annotated 
tag v2.3.5
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit e17ec1c8db1c86d8cf7811496a2538311f7e5010
Author: Graeme Gott 
Date:   Mon Jan 6 09:57:51 2020 -0500

Fix sidebar scrollbar covering buttons.
---
 panel-plugin/window.cpp | 25 -
 panel-plugin/window.h   |  3 ++-
 2 files changed, 26 insertions(+), 2 deletions(-)

diff --git a/panel-plugin/window.cpp b/panel-plugin/window.cpp
index d7fe6c8..67de030 100644
--- a/panel-plugin/window.cpp
+++ b/panel-plugin/window.cpp
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2013, 2014, 2015, 2016, 2017, 2018 Graeme Gott 

+ * Copyright (C) 2013, 2014, 2015, 2016, 2017, 2018, 2020 Graeme Gott 

  *
  * This library is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -909,6 +909,9 @@ gboolean 
WhiskerMenu::Window::on_configure_event(GtkWidget*, GdkEvent* event)
m_geometry.width = configure_event->width;
m_geometry.height = configure_event->height;
}
+
+   check_scrollbar_needed();
+
return false;
 }
 
@@ -967,6 +970,26 @@ gboolean WhiskerMenu::Window::on_draw_event(GtkWidget* 
widget, cairo_t* cr)
 
 //-
 
+void WhiskerMenu::Window::check_scrollbar_needed()
+{
+   // Find height of sidebar buttons
+   int height = 0;
+   gtk_widget_get_preferred_height(GTK_WIDGET(m_sidebar_buttons), NULL, 
&height);
+
+   // Always show scrollbar if sidebar is shorter than buttons
+   int allocated = gtk_widget_get_allocated_height(GTK_WIDGET(m_sidebar));
+   if ((allocated > height) || (allocated == 1))
+   {
+   gtk_scrolled_window_set_policy(m_sidebar, GTK_POLICY_NEVER, 
GTK_POLICY_AUTOMATIC);
+   }
+   else
+   {
+   gtk_scrolled_window_set_policy(m_sidebar, GTK_POLICY_NEVER, 
GTK_POLICY_ALWAYS);
+   }
+}
+
+//-
+
 void WhiskerMenu::Window::favorites_toggled()
 {
m_favorites->reset_selection();
diff --git a/panel-plugin/window.h b/panel-plugin/window.h
index d66de8d..99a5d50 100644
--- a/panel-plugin/window.h
+++ b/panel-plugin/window.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2013, 2014, 2015, 2016, 2018 Graeme Gott 
+ * Copyright (C) 2013, 2014, 2015, 2016, 2018, 2020 Graeme Gott 

  *
  * This library is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -94,6 +94,7 @@ private:
gboolean on_configure_event(GtkWidget*, GdkEvent* event);
void on_screen_changed_event(GtkWidget* widget, GdkScreen* old_screen);
gboolean on_draw_event(GtkWidget* widget, cairo_t* cr);
+   void check_scrollbar_needed();
void favorites_toggled();
void recent_toggled();
void category_toggled();

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 02/09: Update copyright year.

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to annotated 
tag v2.3.5
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit d0d73761f944bbfdb94e26e943b639285ee75750
Author: Graeme Gott 
Date:   Wed Jan 1 05:41:00 2020 -0500

Update copyright year.
---
 panel-plugin/plugin.cpp | 4 ++--
 po/am.po| 4 ++--
 po/ar.po| 2 +-
 po/ast.po   | 4 ++--
 po/be.po| 4 ++--
 po/bg.po| 4 ++--
 po/ca.po| 4 ++--
 po/c...@valencia.po   | 4 ++--
 po/cs.po| 4 ++--
 po/cy.po| 4 ++--
 po/da.po| 4 ++--
 po/de.po| 4 ++--
 po/el.po| 4 ++--
 po/en_GB.po | 4 ++--
 po/eo.po| 2 +-
 po/es.po| 4 ++--
 po/et.po| 2 +-
 po/eu.po| 2 +-
 po/fa.po| 4 ++--
 po/fi.po| 4 ++--
 po/fr.po| 4 ++--
 po/gl.po| 4 ++--
 po/he.po| 4 ++--
 po/hr.po| 4 ++--
 po/hu.po| 2 +-
 po/id.po| 4 ++--
 po/is.po| 4 ++--
 po/it.po| 4 ++--
 po/ja.po| 4 ++--
 po/ka.po| 4 ++--
 po/kk.po| 4 ++--
 po/ko.po| 4 ++--
 po/lt.po| 4 ++--
 po/lv.po| 2 +-
 po/ms.po| 4 ++--
 po/nb.po| 4 ++--
 po/ne.po| 4 ++--
 po/nl.po| 4 ++--
 po/pl.po| 4 ++--
 po/pt.po| 4 ++--
 po/pt_BR.po | 4 ++--
 po/ro.po| 4 ++--
 po/ru.po| 4 ++--
 po/sk.po| 4 ++--
 po/sl.po| 4 ++--
 po/sr.po| 4 ++--
 po/s...@latin.po  | 4 ++--
 po/sv.po| 4 ++--
 po/tr.po| 4 ++--
 po/uk.po| 4 ++--
 po/uz.po| 4 ++--
 po/vi.po| 2 +-
 po/xfce4-whiskermenu-plugin.pot | 4 ++--
 po/zh_CN.po | 4 ++--
 po/zh_TW.po | 4 ++--
 55 files changed, 103 insertions(+), 103 deletions(-)

diff --git a/panel-plugin/plugin.cpp b/panel-plugin/plugin.cpp
index ce9b72b..4a01151 100644
--- a/panel-plugin/plugin.cpp
+++ b/panel-plugin/plugin.cpp
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2013, 2014, 2015, 2016, 2017, 2018, 2019 Graeme Gott 

+ * Copyright (C) 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Graeme Gott 

  *
  * This library is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -406,7 +406,7 @@ void Plugin::show_about()
(NULL,
"authors", authors,
"comments", _("Alternate application launcher for Xfce"),
-   "copyright", _("Copyright \302\251 2013-2019 Graeme Gott"),
+   "copyright", _("Copyright \302\251 2013-2020 Graeme Gott"),
"license", XFCE_LICENSE_GPL,
"logo-icon-name", "xfce4-whiskermenu",
"program-name", PACKAGE_NAME,
diff --git a/po/am.po b/po/am.po
index cc44c6d..00dce7d 100644
--- a/po/am.po
+++ b/po/am.po
@@ -88,8 +88,8 @@ msgid "Clear Recently Used"
 msgstr "በ ቅርብ የተጠቀሙትን ማጽጃ"
 
 #: ../panel-plugin/plugin.cpp:409
-msgid "Copyright © 2013-2019 Graeme Gott"
-msgstr "Copyright © 2013-2019 Graeme Gott"
+msgid "Copyright © 2013-2020 Graeme Gott"
+msgstr "Copyright © 2013-2020 Graeme Gott"
 
 #: ../panel-plugin/configuration-dialog.cpp:890
 msgid "Details"
diff --git a/po/ar.po b/po/ar.po
index d42d65d..72f5d0d 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -90,7 +90,7 @@ msgid "Clear Recently Used"
 msgstr "محو المستعملة حديثا"
 
 #: ../panel-plugin/plugin.cpp:409
-msgid "Copyright © 2013-2019 Graeme Gott"
+msgid "Copyright © 2013-2020 Graeme Gott"
 msgstr ""
 
 #: ../panel-plugin/configuration-dialog.cpp:890
diff --git a/po/ast.po b/po/ast.po
index 85ae821..ba52886 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -90,8 +90,8 @@ msgid "Clear Recently Used"
 msgstr "Llimpiar Usáo apocayá"
 
 #: ../panel-plugin/plugin.cpp:409
-msgid "Copyright © 2013-2019 Graeme Gott"
-msgstr "Copyright © 2013-2019 Graeme Gott"
+msgid "Copyright © 2013-2020 Graeme Gott"
+msgstr "Copyright © 2013-2020 Graeme Gott"
 
 #: ../panel-plugin/configuration-dialog.cp

[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 05/09: Fix incorrect alignment of commands next to search.

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to annotated 
tag v2.3.5
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit 0131092f7a3e44e8ca041b218d4c720359819219
Author: Graeme Gott 
Date:   Wed Jan 8 16:00:56 2020 -0500

Fix incorrect alignment of commands next to search.
---
 panel-plugin/window.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/panel-plugin/window.cpp b/panel-plugin/window.cpp
index df97984..520f908 100644
--- a/panel-plugin/window.cpp
+++ b/panel-plugin/window.cpp
@@ -572,7 +572,7 @@ void WhiskerMenu::Window::show(const Position position)
{
gtk_box_reorder_child(m_commands_box, 
m_commands_button[i], 8 - i);
}
-   gtk_box_reorder_child(m_commands_box, 
m_commands_spacer, 4);
+   gtk_box_reorder_child(m_commands_box, 
m_commands_spacer, 9);
 
gtk_box_reorder_child(m_title_box, 
GTK_WIDGET(m_profilepic->get_widget()), 2);
gtk_box_reorder_child(m_title_box, 
GTK_WIDGET(m_username), 1);
@@ -601,7 +601,7 @@ void WhiskerMenu::Window::show(const Position position)
{
gtk_box_reorder_child(m_commands_box, 
m_commands_button[i], 8 - i);
}
-   gtk_box_reorder_child(m_commands_box, 
m_commands_spacer, 4);
+   gtk_box_reorder_child(m_commands_box, 
m_commands_spacer, 9);
 
gtk_box_reorder_child(m_title_box, 
GTK_WIDGET(m_profilepic->get_widget()), 3);
gtk_box_reorder_child(m_title_box, 
GTK_WIDGET(m_username), 2);

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 06/09: Fix incorrect fallback value for menu opacity.

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to annotated 
tag v2.3.5
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit 0169718b390c945cafb118e8ec60565bb8c05651
Author: Graeme Gott 
Date:   Thu Jan 9 08:15:36 2020 -0500

Fix incorrect fallback value for menu opacity.
---
 panel-plugin/settings.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/panel-plugin/settings.cpp b/panel-plugin/settings.cpp
index c332bb5..e33d91d 100644
--- a/panel-plugin/settings.cpp
+++ b/panel-plugin/settings.cpp
@@ -253,7 +253,7 @@ void Settings::load(char* file)
 
menu_width = std::max(10, xfce_rc_read_int_entry(rc, "menu-width", 
menu_width));
menu_height = std::max(10, xfce_rc_read_int_entry(rc, "menu-height", 
menu_height));
-   menu_opacity = std::min(100, std::max(0, xfce_rc_read_int_entry(rc, 
"menu-opacity", menu_height)));
+   menu_opacity = std::min(100, std::max(0, xfce_rc_read_int_entry(rc, 
"menu-opacity", menu_opacity)));
 
for (int i = 0; i < CountCommands; ++i)
{

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 04/09: Fix categories remaining scrolled when hidden.

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to annotated 
tag v2.3.5
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit a765b803f7fac32e000be44ce04b61b882aa9763
Author: Graeme Gott 
Date:   Wed Jan 8 07:15:40 2020 -0500

Fix categories remaining scrolled when hidden.
---
 panel-plugin/window.cpp | 4 
 1 file changed, 4 insertions(+)

diff --git a/panel-plugin/window.cpp b/panel-plugin/window.cpp
index 67de030..df97984 100644
--- a/panel-plugin/window.cpp
+++ b/panel-plugin/window.cpp
@@ -291,6 +291,10 @@ void WhiskerMenu::Window::hide()
 {
ungrab_pointer();
 
+   // Scroll categories to top
+   GtkAdjustment* adjustment = 
gtk_scrolled_window_get_vadjustment(m_sidebar);
+   gtk_adjustment_set_value(adjustment, 
gtk_adjustment_get_lower(adjustment));
+
// Reset any pressed category buttons
unset_pressed_category();
 

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


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

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit e199d4a952cc4b610543b2220b051615aa75f286
Author: Hamid Sarmadi 
Date:   Sat Jan 18 18:30:03 2020 +0100

I18n: Update translation fa_IR (61%).

185 translated messages, 115 untranslated messages.

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

diff --git a/po/fa_IR.po b/po/fa_IR.po
index f573aa2..8641b66 100644
--- a/po/fa_IR.po
+++ b/po/fa_IR.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Exo\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-05-25 18:30+0200\n"
-"PO-Revision-Date: 2020-01-17 23:17+\n"
+"PO-Revision-Date: 2020-01-18 16:11+\n"
 "Last-Translator: Hamid Sarmadi \n"
 "Language-Team: Persian (Iran) 
(http://www.transifex.com/xfce/exo/language/fa_IR/)\n"
 "MIME-Version: 1.0\n"
@@ -735,7 +735,7 @@ msgstr "یک پروندهٔ روی‌میزیِ تازه در پوشهٔ داد
 
 #: ../exo-desktop-item-edit/main.c:81
 msgid "Type of desktop file to create (Application or Link)"
-msgstr ""
+msgstr "گونهٔ پروندهٔ رومیزی برای پدیدآوردن (برنامهٔ کاربردی یا پیوند)"
 
 #: ../exo-desktop-item-edit/main.c:82
 msgid "Preset name when creating a desktop file"
@@ -844,7 +844,7 @@ msgstr ""
 
 #: ../exo-helper/exo-helper-chooser-dialog.c:103
 msgid "Select default applications for various services"
-msgstr ""
+msgstr "برنامه‌های کاربردیِ پیش‌گزیده را برای کارهای گوناگون برگزین"
 
 #. Internet
 #: ../exo-helper/exo-helper-chooser-dialog.c:127
@@ -891,7 +891,7 @@ msgstr ""
 #: ../exo-helper/exo-helper-chooser-dialog.c:242
 #: ../exo-open/exo-terminal-emulator.desktop.in.h:1
 msgid "Terminal Emulator"
-msgstr ""
+msgstr "همانندسازِ پایانه"
 
 #: ../exo-helper/exo-helper-chooser-dialog.c:250
 msgid ""
@@ -922,16 +922,16 @@ msgstr "نهادنِ نامه خوانِ پیش‌گزیده با شکست رو
 
 #: ../exo-helper/exo-helper-chooser.c:321
 msgid "Failed to set default File Manager"
-msgstr ""
+msgstr "نهادنِ پرونده‌گردانِ پیش‌گزیده با شکست روبرو شد"
 
 #: ../exo-helper/exo-helper-chooser.c:322
 msgid "Failed to set default Terminal Emulator"
-msgstr ""
+msgstr "نهادنِ همانندسازِ پایانهٔ پیش‌گزیده با شکست روبرو شد"
 
 #. allocate the chooser
 #: ../exo-helper/exo-helper-chooser.c:392
 msgid "Select application"
-msgstr ""
+msgstr "برنامهٔ کاربردی برگزین"
 
 #: ../exo-helper/exo-helper-chooser.c:505
 msgid "Choose a custom Web Browser"
@@ -939,15 +939,15 @@ msgstr "یک گشت زنِ سفارشی برگزین"
 
 #: ../exo-helper/exo-helper-chooser.c:506
 msgid "Choose a custom Mail Reader"
-msgstr ""
+msgstr "یک نامه‌خوانِ سفارشی برگزین"
 
 #: ../exo-helper/exo-helper-chooser.c:507
 msgid "Choose a custom File Manager"
-msgstr ""
+msgstr "یک پرونده گردانِ سفارشی برگزین"
 
 #: ../exo-helper/exo-helper-chooser.c:508
 msgid "Choose a custom Terminal Emulator"
-msgstr ""
+msgstr "یک همانندسازِ پایانهٔ سفارشی برگزین"
 
 #: ../exo-helper/exo-helper-chooser.c:513
 msgid ""
@@ -1016,7 +1016,7 @@ msgstr ""
 #: ../exo-helper/exo-helper.c:401
 #, c-format
 msgid "No command specified"
-msgstr ""
+msgstr "هیچ دیدگاهی یاد نشده"
 
 #: ../exo-helper/exo-helper.c:720 ../exo-helper/exo-helper.c:763
 #: ../exo-helper/exo-helper.c:834 ../exo-helper/exo-helper.c:877

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


[Xfce4-commits] [xfce/exo] branch master updated (a0f7195 -> e199d4a)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  a0f7195   I18n: Update translation fa_IR (58%).
   new  e199d4a   I18n: Update translation fa_IR (61%).

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/fa_IR.po | 22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

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


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

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit dc993407fce5993df1c96f7526d8802a6b1023d3
Author: José Vieira 
Date:   Sun Jan 19 00:30:03 2020 +0100

I18n: Update translation pt (100%).

300 translated messages.

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

diff --git a/po/pt.po b/po/pt.po
index fae5db0..53a0aa0 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,14 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# José Vieira , 2020
 # Nuno Miguel , 2015-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Exo\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-05-25 18:30+0200\n"
-"PO-Revision-Date: 2019-05-26 11:48+\n"
-"Last-Translator: Nuno Miguel \n"
+"PO-Revision-Date: 2020-01-18 20:24+\n"
+"Last-Translator: José Vieira \n"
 "Language-Team: Portuguese (http://www.transifex.com/xfce/exo/language/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -404,7 +405,7 @@ msgstr "E_stilo de barra de ferramentas"
 
 #: ../exo/exo-toolbars-view.c:757
 msgid "_Desktop Default"
-msgstr "Omissão de a_mbiente de trabalho"
+msgstr "Pre_definição de ambiente de trabalho"
 
 #: ../exo/exo-toolbars-view.c:766
 msgid "_Icons only"
@@ -844,7 +845,7 @@ msgstr "Aplicações preferidas"
 
 #: ../exo-helper/exo-helper-chooser-dialog.c:103
 msgid "Select default applications for various services"
-msgstr "Selecione as aplicações por omissão dos vários serviços"
+msgstr "Predefinir aplicações para vários serviços"
 
 #. Internet
 #: ../exo-helper/exo-helper-chooser-dialog.c:127
@@ -914,19 +915,19 @@ msgstr "Nenhuma aplicação selecionada"
 
 #: ../exo-helper/exo-helper-chooser.c:319
 msgid "Failed to set default Web Browser"
-msgstr "Falha ao definir o navegador web preferido"
+msgstr "Falha ao predefinir o navegador web"
 
 #: ../exo-helper/exo-helper-chooser.c:320
 msgid "Failed to set default Mail Reader"
-msgstr "Falha ao definir o leitor de correio preferido"
+msgstr "Falha ao predefinir o leitor de correio"
 
 #: ../exo-helper/exo-helper-chooser.c:321
 msgid "Failed to set default File Manager"
-msgstr "Falha ao definir o gesto de ficheiros preferido"
+msgstr "Falha ao predefinir o gestor de ficheiros"
 
 #: ../exo-helper/exo-helper-chooser.c:322
 msgid "Failed to set default Terminal Emulator"
-msgstr "Falha ao definir o emulador de terminal preferido"
+msgstr "Falha ao predefinir o emulador de terminal"
 
 #. allocate the chooser
 #: ../exo-helper/exo-helper-chooser.c:392
@@ -953,25 +954,25 @@ msgstr "Escolha um emulador de terminal"
 msgid ""
 "Specify the application you want to use\n"
 "as default Web Browser for Xfce:"
-msgstr "Especifique a aplicação que pretende utilizar como\no navegador web 
preferido para o Xfce:"
+msgstr "Especifique a aplicação que pretende utilizar como\no navegador web 
predefinido para o Xfce:"
 
 #: ../exo-helper/exo-helper-chooser.c:514
 msgid ""
 "Specify the application you want to use\n"
 "as default Mail Reader for Xfce:"
-msgstr "Especifique a aplicação que pretende utilizar como\nleitor de correio 
preferido para o Xfce:"
+msgstr "Especifique a aplicação que pretende utilizar como\nleitor de correio 
predefinido para o Xfce:"
 
 #: ../exo-helper/exo-helper-chooser.c:515
 msgid ""
 "Specify the application you want to use\n"
 "as default File Manager for Xfce:"
-msgstr "Especifique a aplicação que pretende utilizar como\ngestor de 
ficheiros preferido para o Xfce:"
+msgstr "Especifique a aplicação que pretende utilizar como\ngestor de 
ficheiros predefinido para o Xfce:"
 
 #: ../exo-helper/exo-helper-chooser.c:516
 msgid ""
 "Specify the application you want to use\n"
 "as default Terminal Emulator for Xfce:"
-msgstr "Especifique a aplicação que pretende utilizar como\nemulador de 
terminal preferido para o Xfce:"
+msgstr "Especifique a aplicação que pretende utilizar como\nemulador de 
terminal predefinido para o Xfce:"
 
 #: ../exo-helper/exo-helper-chooser.c:580
 msgid "Browse the file system to choose a custom command."
@@ -1031,19 +1032,19 @@ msgstr "Aplicações preferidas (Navegador web, Leitor de 
correio e Emulador de
 
 #: ../exo-helper/main.c:42
 msgid "Failed to execute default Web Browser"
-msgstr "Falha ao executar o navegador web"
+msgstr "Falha ao executar o navegador web predefinido"
 
 #: ../exo-helper/main.c:43
 msgid "Failed to execute default Mail Reader"
-msgstr "Falha ao executar o leitor de correio"
+msgstr "Falha ao executar o leitor de correio predefinido"
 
 #: ../exo-helper/main.c:44
 msgid "Failed to execute default File Manager"
-msgstr "Falha ao executar o gestor de ficheiros"
+msgstr "Falha ao executar o gestor de f

[Xfce4-commits] [xfce/exo] branch master updated (e199d4a -> dc99340)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  e199d4a   I18n: Update translation fa_IR (61%).
   new  dc99340   I18n: Update translation pt (100%).

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


Summary of changes:
 po/pt.po | 39 ---
 1 file changed, 20 insertions(+), 19 deletions(-)

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


[Xfce4-commits] [xfce/thunar] branch master updated (d7ae1de -> c49a882)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  d7ae1de   I18n: Update translation fr (100%).
   new  c49a882   I18n: Update translation pt_BR (100%).

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


Summary of changes:
 po/pt_BR.po | 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] [xfce/thunar] 01/01: I18n: Update translation pt_BR (100%).

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit c49a8828348b531f43b5d3a085bb4d8cede07d48
Author: Michael Martins 
Date:   Sun Jan 19 00:30:22 2020 +0100

I18n: Update translation pt_BR (100%).

767 translated messages.

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

diff --git a/po/pt_BR.po b/po/pt_BR.po
index 25408bd..d50d4f9 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -24,7 +24,7 @@ msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-12-23 18:30+0100\n"
-"PO-Revision-Date: 2019-12-24 20:02+\n"
+"PO-Revision-Date: 2020-01-18 21:01+\n"
 "Last-Translator: Michael Martins \n"
 "Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/xfce/thunar/language/pt_BR/)\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/catfish] 01/01: I18n: Update translation pt (100%).

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 85b48d38db21bba4d102765bf35c17b8f36e80e2
Author: José Vieira 
Date:   Sun Jan 19 00:31:24 2020 +0100

I18n: Update translation pt (100%).

144 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/pt.po | 71 +++-
 1 file changed, 39 insertions(+), 32 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index 654ff65..04aec80 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -2,24 +2,24 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR , YEAR.
-#
+# 
 # Translators:
 # Xfce Bot , 2018
 # Rui , 2019
 # Nick Schermer , 2019
-# José Vieira , 2019
+# Hugo Carvalho , 2019
 # Sérgio Marques , 2020
 # Nuno Miguel , 2020
-# Hugo Carvalho , 2020
-#
+# José Vieira , 2020
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-01 13:36-0500\n"
+"POT-Creation-Date: 2020-01-14 21:03-0500\n"
 "PO-Revision-Date: 2018-06-28 22:08+\n"
-"Last-Translator: Hugo Carvalho , 2020\n"
+"Last-Translator: José Vieira , 2020\n"
 "Language-Team: Portuguese (https://www.transifex.com/xfce/teams/16840/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -48,7 +48,7 @@ msgstr "files;find;locate;lookup;search;"
 
 #: ../data/ui/CatfishPreferences.ui.h:1
 msgid "Catfish Preferences"
-msgstr "Preferências do catfish"
+msgstr "Preferências do Catfish"
 
 #: ../data/ui/CatfishPreferences.ui.h:2
 msgid "_Close"
@@ -56,7 +56,7 @@ msgstr "_Fechar"
 
 #: ../data/ui/CatfishPreferences.ui.h:3
 msgid "Classic (_Titlebar)"
-msgstr "Clássica (_Barra de título)"
+msgstr "Clássica (Barra de _título)"
 
 #: ../data/ui/CatfishPreferences.ui.h:4
 msgid "_Modern (CSD)"
@@ -64,8 +64,7 @@ msgstr "_Moderno (CSD)"
 
 #: ../data/ui/CatfishPreferences.ui.h:5
 msgid "Your new window layout will be applied after restarting Catfish."
-msgstr ""
-"A sua nova disposição de janela será aplicada após reiniciar o Catfish."
+msgstr "A nova disposição de janela será aplicada após reiniciar o Catfish."
 
 #: ../data/ui/CatfishPreferences.ui.h:6
 msgid "Window Layout"
@@ -607,21 +606,29 @@ msgstr ""
 
 #: ../data/metainfo/catfish.appdata.xml.in.h:5
 msgid ""
+"This release resolves packaging errors for Debian and includes optimized "
+"assets."
+msgstr ""
+"Esta versão resolve erros de empacotamento para Debian e inclui recursos "
+"optimizados."
+
+#: ../data/metainfo/catfish.appdata.xml.in.h:6
+msgid ""
 "This release adds support for running under Wayland and features refreshed "
 "dialogs with simplified controls."
 msgstr ""
-"Esta versão adiciona suporte à execução no Wayland e apresenta caixas de "
-"diálogo atualizadas com controlos simplificados."
+"Esta versão adiciona suporte para execução com o Wayland e apresenta caixas "
+"de diálogo renovadas com controlos simplificados."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:6
+#: ../data/metainfo/catfish.appdata.xml.in.h:7
 msgid ""
 "This release addresses some startup errors as well as various issues with "
 "traversing symbolic links."
 msgstr ""
-"Esta versão soluciona alguns erros de arranque e vários problemas ao "
-"atravessar ligações simbólicas."
+"Esta versão trata alguns erros de iniciação, assim como vários problemas de "
+"atravessamento de ligações simbólicas."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:7
+#: ../data/metainfo/catfish.appdata.xml.in.h:8
 msgid ""
 "This release includes many appearance improvements, introduces a new "
 "preferences dialog, and improves search results and performance."
@@ -630,7 +637,7 @@ msgstr ""
 "de diálogo de preferências e melhora os resultados e o desempenho da "
 "pesquisa."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:8
+#: ../data/metainfo/catfish.appdata.xml.in.h:9
 msgid ""
 "This release features performance improvements by excluding uncommon search "
 "directories."
@@ -638,7 +645,7 @@ msgstr ""
 "Esta versão apresenta melhorias de desempenho ao excluir diretórios de "
 "pesquisa incomuns."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:9
+#: ../data/metainfo/catfish.appdata.xml.in.h:10
 msgid ""
 "This release features better desktop integration, support for OpenBSD and "
 "Wayland, and improved translation support."
@@ -646,7 +653,7 @@ msgstr ""
 "Esta versão apresenta uma melhor integração no ambiente de trabalho, suporte"
 " para o OpenBSD e Wayland, e melhor suporte à tradução."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:10
+#: ../data/metainfo/catfish.appdata.xml.in.h:11
 msgid ""
 "This release features improved performance, better desktop integration, and "
 "a number of l

[Xfce4-commits] [xfce/xfce4-panel] branch master updated (7db1f87 -> c6072ba)

2020-01-18 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  7db1f87   systray: Basic support for symbolic icons
   new  c6072ba   I18n: Update translation pt_BR (97%).

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


Summary of changes:
 po/pt_BR.po | 136 ++--
 1 file changed, 95 insertions(+), 41 deletions(-)

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


[Xfce4-commits] [apps/catfish] branch master updated (3330aa1 -> 85b48d3)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  3330aa1   I18n: Update translation es (100%).
   new  85b48d3   I18n: Update translation pt (100%).

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


Summary of changes:
 po/pt.po | 71 +++-
 1 file changed, 39 insertions(+), 32 deletions(-)

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


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

2020-01-18 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 c6072baa12083dc330259a2e01a52e81ab55b328
Author: Michael Martins 
Date:   Sun Jan 19 00:30:52 2020 +0100

I18n: Update translation pt_BR (97%).

418 translated messages, 9 untranslated messages.

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

diff --git a/po/pt_BR.po b/po/pt_BR.po
index fdf3d17..41e1f50 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-10-17 06:31+0200\n"
-"PO-Revision-Date: 2019-11-03 15:37+\n"
-"Last-Translator: Andre Miranda \n"
+"POT-Creation-Date: 2020-01-05 00:30+0100\n"
+"PO-Revision-Date: 2020-01-18 20:55+\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"
@@ -39,7 +39,7 @@ msgid ""
 "file"
 msgstr "Adicionar um novo lançador ao painel baseado na informação deste 
arquivo de área de trabalho"
 
-#: ../panel-preferences.desktop.in.h:1 ../panel/panel-window.c:2865
+#: ../panel-preferences.desktop.in.h:1 ../panel/panel-window.c:2871
 msgid "Panel"
 msgstr "Painel"
 
@@ -49,28 +49,29 @@ msgstr "Personalizar o painel"
 
 #. I18N: %s is the name of the plugin
 #: ../libxfce4panel/xfce-panel-plugin.c:1105
-#: ../panel/panel-preferences-dialog.c:1317
+#: ../panel/panel-preferences-dialog.c:1321
 #, c-format
 msgid "Are you sure that you want to remove \"%s\"?"
 msgstr "Você tem certeza que deseja remover \"%s\"?"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1110
-#: ../panel/panel-preferences-dialog.c:1320
+#: ../panel/panel-preferences-dialog.c:1324
 msgid "If you remove the item from the panel, it is permanently lost."
 msgstr "Se você remover o item do painel, ele será perdido permanentemente."
 
 #: ../libxfce4panel/xfce-panel-plugin.c: ../panel/panel-dialogs.c:163
-#: ../panel/panel-preferences-dialog.c:1322
+#: ../panel/panel-preferences-dialog.c:1326
 #: ../plugins/applicationsmenu/applicationsmenu.c:602
-#: ../plugins/directorymenu/directorymenu.c:394
+#: ../plugins/directorymenu/directorymenu.c:473
+#: ../plugins/directorymenu/directorymenu.c:938
 msgid "_Cancel"
 msgstr "_Cancelar"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1112
 #: ../libxfce4panel/xfce-panel-plugin.c:1307
 #: ../panel/panel-plugin-external.c:443
-#: ../panel/panel-preferences-dialog.c:957
-#: ../panel/panel-preferences-dialog.c:1323
+#: ../panel/panel-preferences-dialog.c:961
+#: ../panel/panel-preferences-dialog.c:1327
 #: ../plugins/launcher/launcher-dialog.c:852
 msgid "_Remove"
 msgstr "_Remover"
@@ -79,7 +80,7 @@ msgstr "_Remover"
 msgid "_Properties"
 msgstr "_Propriedades"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1268 ../panel/panel-window.c:2953
+#: ../libxfce4panel/xfce-panel-plugin.c:1268 ../panel/panel-window.c:2959
 msgid "_About"
 msgstr "_Sobre"
 
@@ -91,20 +92,20 @@ msgstr "_Mover"
 msgid "Pane_l"
 msgstr "Paine_l"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1337 ../panel/panel-window.c:2878
+#: ../libxfce4panel/xfce-panel-plugin.c:1337 ../panel/panel-window.c:2884
 msgid "Add _New Items..."
 msgstr "Adicionar _novos itens..."
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1352 ../panel/panel-window.c:2893
+#: ../libxfce4panel/xfce-panel-plugin.c:1352 ../panel/panel-window.c:2899
 msgid "Panel Pr_eferences..."
 msgstr "Pr_eferências do painel"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1373 ../panel/panel-window.c:2925
+#: ../libxfce4panel/xfce-panel-plugin.c:1373 ../panel/panel-window.c:2931
 msgid "Log _Out"
 msgstr "Encerrar sessã_o"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1393 ../panel/panel-item-dialog.c:208
-#: ../panel/panel-preferences-dialog.glade.h:12 ../panel/panel-window.c:2944
+#: ../panel/panel-preferences-dialog.glade.h:12 ../panel/panel-window.c:2950
 #: ../plugins/actions/actions-dialog.glade.h:4
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:2
 #: ../plugins/clock/clock-dialog.glade.h:8
@@ -319,7 +320,7 @@ msgstr "_Adicionar"
 msgid "Please choose a panel for the new plugin:"
 msgstr "Por favor escolha um painel para o novo plug-in:"
 
-#: ../panel/panel-dialogs.c:195 ../panel/panel-preferences-dialog.c:892
+#: ../panel/panel-dialogs.c:195 ../panel/panel-preferences-dialog.c:896
 #, c-format
 msgid "Panel %d"
 msgstr "Painel %d"
@@ -398,25 +399,25 @@ msgstr "Primário"
 msgid "Monitor %d"
 msgstr "Monitor %d"
 
-#: ../panel/panel-preferences-dialog.c:958
+#: ../panel/panel-preferences-dialog.c:962
 msgid "The panel and plugin configurations w

[Xfce4-commits] [xfce/xfdesktop] branch master updated (85368af -> 4dbc829)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  85368af   I18n: Update translation ka (100%).
   new  4dbc829   I18n: Update translation pt_BR (100%).

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


Summary of changes:
 po/pt_BR.po | 128 +++-
 1 file changed, 66 insertions(+), 62 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: I18n: Update translation pt_BR (100%).

2020-01-18 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 6da67bd5b15f9efe5da36d3e3d18568dbb40a185
Author: Nick Schermer 
Date:   Sun Jan 19 00:31:46 2020 +0100

I18n: Update translation pt_BR (100%).

152 translated messages.

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

diff --git a/po/pt_BR.po b/po/pt_BR.po
index 5bc2776..7d473a4 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -10,17 +10,17 @@
 # Tomas , 2019
 # Rafael Fontenelle , 2019
 # Michael Martins , 2019
-# Nick Schermer , 2019
 # Andre Miranda , 2019
+# Nick Schermer , 2020
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-04 00:31+0200\n"
+"POT-Creation-Date: 2020-01-15 12:31+0100\n"
 "PO-Revision-Date: 2018-10-16 16:27+\n"
-"Last-Translator: Andre Miranda , 2019\n"
+"Last-Translator: Nick Schermer , 2020\n"
 "Language-Team: Portuguese (Brazil) 
(https://www.transifex.com/xfce/teams/16840/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -132,8 +132,8 @@ msgid "Bubbles the Xfce logo around the screen"
 msgstr "Borbulha o logotipo do Xfce ao redor da tela"
 
 #: ../savers/xfce-personal-slideshow.desktop.in.in.h:1
-msgid "Pictures folder"
-msgstr "Pasta de imagens"
+msgid "Slideshow"
+msgstr "Apresentação de slides"
 
 #: ../savers/xfce-personal-slideshow.desktop.in.in.h:2
 msgid "Display a slideshow from your Pictures folder"
@@ -181,15 +181,15 @@ msgstr "Não é mais permitido acessar o sistema."
 msgid "Username:"
 msgstr "Nome de usuário:"
 
-#: ../src/gs-listener-dbus.c:1820
+#: ../src/gs-listener-dbus.c:1913
 msgid "failed to register with the message bus"
 msgstr "falha ao registrar com o barramento de mensagens"
 
-#: ../src/gs-listener-dbus.c:1830
+#: ../src/gs-listener-dbus.c:1923
 msgid "not connected to the message bus"
 msgstr "não conectado ao barramento de mensagens"
 
-#: ../src/gs-listener-dbus.c:1839 ../src/gs-listener-dbus.c:1869
+#: ../src/gs-listener-dbus.c:1932 ../src/gs-listener-dbus.c:1962
 msgid "screensaver already running in this session"
 msgstr "o protetor de tela já está em execução nesta sessão"
 
@@ -276,7 +276,7 @@ msgstr "inativo"
 msgid "The screensaver is not inhibited\n"
 msgstr "O protetor de tela não está inibido\n"
 
-#: ../src/xfce4-screensaver-command.c:220
+#: ../src/xfce4-screensaver-command.c:219
 #, c-format
 msgid "The screensaver is being inhibited by:\n"
 msgstr "O protetor de tela está sendo inibido por:\n"
@@ -335,40 +335,40 @@ msgstr "Vídeo"
 msgid "Unrecognized type: %s"
 msgstr "Tipo não reconhecido: %s"
 
-#: ../src/xfce4-screensaver-configure:717
-msgid "Screensaver required."
-msgstr "Protetor de tela necessário."
-
-#: ../src/xfce4-screensaver-configure:723
+#: ../src/xfce4-screensaver-configure:714
 msgid "Unable to configure screensaver"
 msgstr "Não foi possível configurar o protetor de tela"
 
-#: ../src/xfce4-screensaver-configure:727
+#: ../src/xfce4-screensaver-configure:718
+msgid "Screensaver required."
+msgstr "Protetor de tela necessário."
+
+#: ../src/xfce4-screensaver-configure:726
 #, c-format
 msgid "File not found: %s"
 msgstr "Arquivo não encontrado: %s"
 
-#: ../src/xfce4-screensaver-configure:736
+#: ../src/xfce4-screensaver-configure:735
 #, c-format
 msgid "Unrecognized file type: %s"
 msgstr "Tipo de arquivo não reconhecido: %s"
 
-#: ../src/xfce4-screensaver-configure:742
+#: ../src/xfce4-screensaver-configure:741
 #, c-format
 msgid "Failed to process file: %s"
 msgstr "Falha ao processar arquivo: %s"
 
-#: ../src/xfce4-screensaver-configure:747
+#: ../src/xfce4-screensaver-configure:746
 #, c-format
 msgid "Screensaver %s is configurable."
 msgstr "O protetor de tela %s é configurável."
 
-#: ../src/xfce4-screensaver-configure:750
+#: ../src/xfce4-screensaver-configure:749
 #, c-format
 msgid "Screensaver %s is not configurable."
 msgstr "O protetor de tela %s não é configurável."
 
-#: ../src/xfce4-screensaver-configure:754
+#: ../src/xfce4-screensaver-configure:753
 #, c-format
 msgid "Screensaver %s has no configuration options."
 msgstr "O protetor de tela %s não possui opções de configuração."

-- 
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 (5e726f8 -> 6da67bd)

2020-01-18 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  5e726f8   I18n: Update translation it (100%).
   new  6da67bd   I18n: Update translation pt_BR (100%).

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


Summary of changes:
 po/pt_BR.po | 40 
 1 file changed, 20 insertions(+), 20 deletions(-)

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


[Xfce4-commits] [xfce/xfdesktop] branch xfce-4.14 updated (f39b0bb -> 3438733)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  f39b0bb   I18n: Update translation it (100%).
   new  3438733   I18n: Update translation pt_BR (100%).

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


Summary of changes:
 po/pt_BR.po | 61 +
 1 file changed, 33 insertions(+), 28 deletions(-)

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


[Xfce4-commits] [xfce/xfwm4] branch master updated (9fae208 -> 764f5b5)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  9fae208   I18n: Update translation pt (100%).
   new  764f5b5   I18n: Update translation pt (100%).

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


Summary of changes:
 po/pt.po | 22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

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


[Xfce4-commits] [xfce/xfwm4] branch xfce-4.14 updated (4e680b2 -> 13cdc0c)

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  4e680b2   I18n: Update translation pt (100%).
   new  13cdc0c   I18n: Update translation pt (100%).

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


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

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


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

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 3438733aa2ce9579134a8b20fcef5df8e8c22414
Author: AILTON ANDRADE LIMA 
Date:   Sun Jan 19 00:32:56 2020 +0100

I18n: Update translation pt_BR (100%).

246 translated messages.

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

diff --git a/po/pt_BR.po b/po/pt_BR.po
index 168d3d1..845a50e 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -6,15 +6,16 @@
 # Translators:
 # Xfce Bot , 2019
 # Rafael Fontenelle , 2019
+# AILTON ANDRADE LIMA , 2020
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-21 00:36+0200\n"
+"POT-Creation-Date: 2020-01-13 00:32+0100\n"
 "PO-Revision-Date: 2019-10-20 16:40+\n"
-"Last-Translator: Rafael Fontenelle , 2019\n"
+"Last-Translator: AILTON ANDRADE LIMA , 2020\n"
 "Language-Team: Portuguese (Brazil) 
(https://www.transifex.com/xfce/teams/16840/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -138,14 +139,14 @@ msgid "Arrange icons"
 msgstr "Posicionar ícones"
 
 #. printf is to be translator-friendly
-#: ../settings/main.c:1757 ../src/xfdesktop-file-icon-manager.c:796
+#: ../settings/main.c:1757 ../src/xfdesktop-file-icon-manager.c:798
 #: ../src/xfdesktop-file-icon-manager.c:1353
 #, c-format
 msgid "Unable to launch \"%s\":"
 msgstr "Não foi possível lançar \"%s\":"
 
-#: ../settings/main.c:1758 ../src/xfdesktop-file-icon-manager.c:798
-#: ../src/xfdesktop-file-icon-manager.c:1100
+#: ../settings/main.c:1758 ../src/xfdesktop-file-icon-manager.c:800
+#: ../src/xfdesktop-file-icon-manager.c:1102
 #: ../src/xfdesktop-file-icon-manager.c:1354 ../src/xfdesktop-file-utils.c:683
 #: ../src/xfdesktop-file-utils.c:1217 ../src/xfdesktop-file-utils.c:1295
 #: ../src/xfdesktop-file-utils.c:1319 ../src/xfdesktop-file-utils.c:1381
@@ -153,13 +154,13 @@ msgid "Launch Error"
 msgstr "Erro ao lançar"
 
 #: ../settings/main.c:1760 ../settings/xfdesktop-settings-ui.glade.h:21
-#: ../src/xfdesktop-file-icon-manager.c:560
-#: ../src/xfdesktop-file-icon-manager.c:579
-#: ../src/xfdesktop-file-icon-manager.c:664
-#: ../src/xfdesktop-file-icon-manager.c:800
-#: ../src/xfdesktop-file-icon-manager.c:1104
+#: ../src/xfdesktop-file-icon-manager.c:562
+#: ../src/xfdesktop-file-icon-manager.c:581
+#: ../src/xfdesktop-file-icon-manager.c:666
+#: ../src/xfdesktop-file-icon-manager.c:802
+#: ../src/xfdesktop-file-icon-manager.c:1106
 #: ../src/xfdesktop-file-icon-manager.c:1356
-#: ../src/xfdesktop-file-icon-manager.c:2938 ../src/xfdesktop-file-utils.c:686
+#: ../src/xfdesktop-file-icon-manager.c:2941 ../src/xfdesktop-file-utils.c:686
 #: ../src/xfdesktop-file-utils.c:706 ../src/xfdesktop-file-utils.c:761
 #: ../src/xfdesktop-file-utils.c:825 ../src/xfdesktop-file-utils.c:886
 #: ../src/xfdesktop-file-utils.c:947 ../src/xfdesktop-file-utils.c:995
@@ -741,48 +742,48 @@ msgstr "Ícones da área de trabalho: %s\n"
 msgid "Desktop File Icons:  %s\n"
 msgstr "Ícones de arquivos da área de trabalho: %s\n"
 
-#: ../src/xfdesktop-file-icon-manager.c:552
-#: ../src/xfdesktop-file-icon-manager.c:570
+#: ../src/xfdesktop-file-icon-manager.c:554
+#: ../src/xfdesktop-file-icon-manager.c:572
 #, c-format
 msgid "Could not create the desktop folder \"%s\""
 msgstr "Não foi possível criar a pasta da área de trabalho \"%s\""
 
-#: ../src/xfdesktop-file-icon-manager.c:557
-#: ../src/xfdesktop-file-icon-manager.c:575
+#: ../src/xfdesktop-file-icon-manager.c:559
+#: ../src/xfdesktop-file-icon-manager.c:577
 msgid "Desktop Folder Error"
 msgstr "Erro na pasta da área de trabalho"
 
-#: ../src/xfdesktop-file-icon-manager.c:577
+#: ../src/xfdesktop-file-icon-manager.c:579
 msgid ""
 "A normal file with the same name already exists. Please delete or rename it."
 msgstr ""
 "Um arquivo comum com o mesmo nome já existe. Por favor, apague-o ou "
 "renomeie-o."
 
-#: ../src/xfdesktop-file-icon-manager.c:661 ../src/xfdesktop-file-utils.c:757
+#: ../src/xfdesktop-file-icon-manager.c:663 ../src/xfdesktop-file-utils.c:757
 #: ../src/xfdesktop-file-utils.c:821
 msgid "Rename Error"
 msgstr "Erro ao renomear"
 
-#: ../src/xfdesktop-file-icon-manager.c:662 ../src/xfdesktop-file-utils.c:822
+#: ../src/xfdesktop-file-icon-manager.c:664 ../src/xfdesktop-file-utils.c:822
 msgid "The files could not be renamed"
 msgstr "Os arquivos não puderam ser renomeados"
 
-#: ../src/xfdesktop-file-icon-manager.c:663
+#: ../src/xfdesktop-file-icon-manager.c:665
 msgid "None of the icons selected support being renamed."
 msgstr "Nenhum dos ícones selecionados podem ser renomeados."
 
-#: ../src/xfdesktop-fil

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

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 764f5b56fcf67bdd0136049aa85d311934740df5
Author: José Vieira 
Date:   Sun Jan 19 00:33:04 2020 +0100

I18n: Update translation pt (100%).

170 translated messages.

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

diff --git a/po/pt.po b/po/pt.po
index 7bf836b..4ba33e6 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -12,8 +12,8 @@ msgstr ""
 "Project-Id-Version: Xfwm4\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-08-29 00:32+0200\n"
-"PO-Revision-Date: 2020-01-17 12:38+\n"
-"Last-Translator: Nuno Miguel \n"
+"PO-Revision-Date: 2020-01-18 19:51+\n"
+"Last-Translator: José Vieira \n"
 "Language-Team: Portuguese 
(http://www.transifex.com/xfce/xfwm4/language/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -464,11 +464,11 @@ msgstr "Ao mover para o _limite do ecrã, criar mosaicos 
das janelas automaticam
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:25
 msgid "Use _edge resistance instead of window snapping"
-msgstr "Utilizar resistê_ncia de limites ao invés do alinhamento de janelas"
+msgstr "Utilizar r_esistência de limites ao invés do alinhamento de janelas"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:26
 msgid "Use mouse wheel on title bar to ro_ll up the window"
-msgstr "Utilizar roda do rato na barra de títu_lo para enrolar a janela"
+msgstr "Utilizar roda do rato na barra de título para enro_lar a janela"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:27
 msgid "Notify of _urgency by making window's decoration blink"
@@ -480,7 +480,7 @@ msgstr "Manter janelas urgentes a pi_scar repetidamente"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:29
 msgid "_Accessibility"
-msgstr "Acessi_bilidade"
+msgstr "_Acessibilidade"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:30
 msgid "Use the _mouse wheel on the desktop to switch workspaces"
@@ -494,7 +494,7 @@ msgstr "Memorizar e _restaurar área de trabalho 
anterior\nquando se troca pelos
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:33
 msgid "Wrap workspaces depending on the actual desktop _layout"
-msgstr "Trocar de áreas _de trabalho de acordo com o esquema do ambiente de 
trabalho"
+msgstr "Trocar de áreas de traba_lho de acordo com o esquema do ambiente de 
trabalho"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:34
 msgid "Wrap workspaces when _the first or the last workspace is reached"
@@ -519,11 +519,11 @@ msgstr "Por predefinição, colocar janelas:"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:42
 msgid "At the c_enter of the screen"
-msgstr "No ce_ntro do ecrã"
+msgstr "No c_entro do ecrã"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:43
 msgid "U_nder the mouse pointer"
-msgstr "Por bai_xo do ponteiro do rato"
+msgstr "Por baixo do po_nteiro do rato"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:44
 msgid "_Placement"
@@ -567,7 +567,7 @@ msgstr "Opaco"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:54
 msgid "Opacity of _inactive windows:"
-msgstr "Opacidade das janelas inati_vas:"
+msgstr "Opacidade das janelas _inativas:"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:55
 msgid "Opacity of windows during _move:"
@@ -579,11 +579,11 @@ msgstr "Opacidade das janelas ao redi_mensionar:"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:57
 msgid "Opacity of popup wi_ndows:"
-msgstr "Opacidade das janela_s de contexto:"
+msgstr "Opacidade das ja_nelas de contexto:"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:58
 msgid "C_ompositor"
-msgstr "_Compositor"
+msgstr "C_ompositor"
 
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:3
 msgid "_Number of workspaces:"

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


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

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 4dbc82914f7788052d839dcdba63d1e91b74e9f5
Author: AILTON ANDRADE LIMA 
Date:   Sun Jan 19 00:32:44 2020 +0100

I18n: Update translation pt_BR (100%).

246 translated messages.

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

diff --git a/po/pt_BR.po b/po/pt_BR.po
index 01d5bcf..33b2006 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -20,9 +20,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-09-26 06:31+0200\n"
-"PO-Revision-Date: 2019-09-28 20:25+\n"
-"Last-Translator: Michael Martins \n"
+"POT-Creation-Date: 2019-12-22 00:32+0100\n"
+"PO-Revision-Date: 2020-01-18 21:27+\n"
+"Last-Translator: AILTON ANDRADE LIMA \n"
 "Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/xfce/xfdesktop/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -135,37 +135,37 @@ msgid "Arrange icons"
 msgstr "Posicionar ícones"
 
 #. printf is to be translator-friendly
-#: ../settings/main.c:1757 ../src/xfdesktop-file-icon-manager.c:796
+#: ../settings/main.c:1757 ../src/xfdesktop-file-icon-manager.c:798
 #: ../src/xfdesktop-file-icon-manager.c:1353
 #, c-format
 msgid "Unable to launch \"%s\":"
 msgstr "Não foi possível lançar \"%s\":"
 
-#: ../settings/main.c:1758 ../src/xfdesktop-file-icon-manager.c:798
-#: ../src/xfdesktop-file-icon-manager.c:1100
+#: ../settings/main.c:1758 ../src/xfdesktop-file-icon-manager.c:800
+#: ../src/xfdesktop-file-icon-manager.c:1102
 #: ../src/xfdesktop-file-icon-manager.c:1354 ../src/xfdesktop-file-utils.c:683
-#: ../src/xfdesktop-file-utils.c:1215 ../src/xfdesktop-file-utils.c:1293
-#: ../src/xfdesktop-file-utils.c:1317 ../src/xfdesktop-file-utils.c:1379
+#: ../src/xfdesktop-file-utils.c:1217 ../src/xfdesktop-file-utils.c:1295
+#: ../src/xfdesktop-file-utils.c:1319 ../src/xfdesktop-file-utils.c:1381
 msgid "Launch Error"
 msgstr "Erro ao lançar"
 
 #: ../settings/main.c:1760 ../settings/xfdesktop-settings-ui.glade.h:21
-#: ../src/xfdesktop-file-icon-manager.c:560
-#: ../src/xfdesktop-file-icon-manager.c:579
-#: ../src/xfdesktop-file-icon-manager.c:664
-#: ../src/xfdesktop-file-icon-manager.c:800
-#: ../src/xfdesktop-file-icon-manager.c:1104
+#: ../src/xfdesktop-file-icon-manager.c:562
+#: ../src/xfdesktop-file-icon-manager.c:581
+#: ../src/xfdesktop-file-icon-manager.c:666
+#: ../src/xfdesktop-file-icon-manager.c:802
+#: ../src/xfdesktop-file-icon-manager.c:1106
 #: ../src/xfdesktop-file-icon-manager.c:1356
 #: ../src/xfdesktop-file-icon-manager.c:2938 ../src/xfdesktop-file-utils.c:686
-#: ../src/xfdesktop-file-utils.c:705 ../src/xfdesktop-file-utils.c:759
-#: ../src/xfdesktop-file-utils.c:823 ../src/xfdesktop-file-utils.c:884
-#: ../src/xfdesktop-file-utils.c:945 ../src/xfdesktop-file-utils.c:993
-#: ../src/xfdesktop-file-utils.c:1048 ../src/xfdesktop-file-utils.c:1106
-#: ../src/xfdesktop-file-utils.c:1158 ../src/xfdesktop-file-utils.c:1219
-#: ../src/xfdesktop-file-utils.c:1295 ../src/xfdesktop-file-utils.c:1321
-#: ../src/xfdesktop-file-utils.c:1383 ../src/xfdesktop-file-utils.c:1442
-#: ../src/xfdesktop-file-utils.c:1458 ../src/xfdesktop-file-utils.c:1520
-#: ../src/xfdesktop-file-utils.c:1538 ../src/xfdesktop-volume-icon.c:523
+#: ../src/xfdesktop-file-utils.c:706 ../src/xfdesktop-file-utils.c:761
+#: ../src/xfdesktop-file-utils.c:825 ../src/xfdesktop-file-utils.c:886
+#: ../src/xfdesktop-file-utils.c:947 ../src/xfdesktop-file-utils.c:995
+#: ../src/xfdesktop-file-utils.c:1050 ../src/xfdesktop-file-utils.c:1108
+#: ../src/xfdesktop-file-utils.c:1160 ../src/xfdesktop-file-utils.c:1221
+#: ../src/xfdesktop-file-utils.c:1297 ../src/xfdesktop-file-utils.c:1323
+#: ../src/xfdesktop-file-utils.c:1385 ../src/xfdesktop-file-utils.c:1444
+#: ../src/xfdesktop-file-utils.c:1460 ../src/xfdesktop-file-utils.c:1522
+#: ../src/xfdesktop-file-utils.c:1540 ../src/xfdesktop-volume-icon.c:523
 #: ../src/xfdesktop-volume-icon.c:569 ../src/xfdesktop-volume-icon.c:605
 msgid "_Close"
 msgstr "_Fechar"
@@ -719,46 +719,46 @@ msgstr "Ícones da área de trabalho: %s\n"
 msgid "Desktop File Icons:  %s\n"
 msgstr "Ícones de arquivos da área de trabalho: %s\n"
 
-#: ../src/xfdesktop-file-icon-manager.c:552
-#: ../src/xfdesktop-file-icon-manager.c:570
+#: ../src/xfdesktop-file-icon-manager.c:554
+#: ../src/xfdesktop-file-icon-manager.c:572
 #, c-format
 msgid "Could not create the desktop folder \"%s\""
 msgstr "Não foi possível criar a pasta da área de trabalho \"%s\""
 
-#: ../src/xfdesktop-file-icon-manager.c:557
-#: ../src/xfdesktop-file-icon-manager.c:575
+#: ../src

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

2020-01-18 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 13cdc0c200a981fef9cbd44f49b22a2d352023cb
Author: José Vieira 
Date:   Sun Jan 19 00:33:13 2020 +0100

I18n: Update translation pt (100%).

169 translated messages.

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

diff --git a/po/pt.po b/po/pt.po
index 24c8c8f..df61e89 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -475,7 +475,7 @@ msgstr ""
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:25
 msgid "Use _edge resistance instead of window snapping"
-msgstr "Utilizar resistê_ncia de limites ao invés do alinhamento de janelas"
+msgstr "Utilizar r_esistência de limites ao invés do alinhamento de janelas"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:26
 msgid "Use mouse wheel on title bar to ro_ll up the window"
@@ -491,7 +491,7 @@ msgstr "Manter janelas urgentes a pi_scar repetidamente"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:29
 msgid "_Accessibility"
-msgstr "Acessi_bilidade"
+msgstr "_Acessibilidade"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:30
 msgid "Use the _mouse wheel on the desktop to switch workspaces"
@@ -508,12 +508,12 @@ msgstr ""
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:33
 msgid "Wrap workspaces depending on the actual desktop _layout"
 msgstr ""
-"Trocar de áreas _de trabalho de acordo com o esquema do ambiente de trabalho"
+"Trocar de áreas de traba_lho de acordo com o esquema do ambiente de trabalho"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:34
 msgid "Wrap workspaces when _the first or the last workspace is reached"
 msgstr ""
-"Trocar de áreas de trabalho se a primeira ou a última área de trabal_ho for "
+"Trocar de áreas de _trabalho se a primeira ou a última área de trabalho for "
 "atingida"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:35
@@ -535,11 +535,11 @@ msgstr "Por predefinição, colocar janelas:"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:42
 msgid "At the c_enter of the screen"
-msgstr "No ce_ntro do ecrã"
+msgstr "No c_entro do ecrã"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:43
 msgid "U_nder the mouse pointer"
-msgstr "Por bai_xo do ponteiro do rato"
+msgstr "Por baixo do po_nteiro do rato"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:44
 msgid "_Placement"
@@ -595,11 +595,11 @@ msgstr "Opacidade das janelas ao redi_mensionar:"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:57
 msgid "Opacity of popup wi_ndows:"
-msgstr "Opacidade das janela_s de contexto:"
+msgstr "Opacidade das ja_nelas de contexto:"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:58
 msgid "C_ompositor"
-msgstr "_Compositor"
+msgstr "C_ompositor"
 
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:3
 msgid "_Number of workspaces:"

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