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

2019-11-09 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/xfce4-panel.

commit ab6b87925388a6a0fe76f914d4f2e026c13b84b5
Author: Xfce Bot 
Date:   Sun Nov 10 06:30:55 2019 +0100

I18n: Update translation pt_BR (100%).

413 translated messages.

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

diff --git a/po/pt_BR.po b/po/pt_BR.po
index 9774e32..4753d3d 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -9,9 +9,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-panel\n"
+"Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-20 18:22+0200\n"
+"POT-Creation-Date: 2019-10-20 18:31+0200\n"
 "PO-Revision-Date: 2019-10-20 16:24+\n"
 "Last-Translator: Xfce Bot , 2019\n"
 "Language-Team: Portuguese (Brazil) 
(https://www.transifex.com/xfce/teams/16840/pt_BR/)\n"

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


[Xfce4-commits] [xfce/xfce4-panel] branch xfce-4.14 updated (a7bfe4e -> ab6b879)

2019-11-09 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/xfce4-panel.

  from  a7bfe4e   I18n: Update translation zh_TW (100%).
   new  ab6b879   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 | 4 ++--
 1 file changed, 2 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] [xfce/xfce4-power-manager] 02/02: Dismiss critical notification when connecting to AC

2019-11-09 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-power-manager.

commit df7c0ae1ea7d7c25e28bbb0b34aba3a9ad2faa05
Author: Simon Steinbeiss 
Date:   Sun Nov 10 00:33:58 2019 +0100

Dismiss critical notification when connecting to AC

We can most likely dismiss the critical notification on all battery state 
changes,
because if there still is one around it means we just connected to a power 
source
(critical notifications always get cleared before new ones are spawned).
---
 src/xfpm-notify.c | 10 +++---
 src/xfpm-power.c  |  3 +++
 2 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/src/xfpm-notify.c b/src/xfpm-notify.c
index c1845a6..fc19d85 100644
--- a/src/xfpm-notify.c
+++ b/src/xfpm-notify.c
@@ -345,8 +345,9 @@ void xfpm_notify_critical (XfpmNotify *notify, 
NotifyNotification *n)
 
 void xfpm_notify_close_critical (XfpmNotify *notify)
 {
-g_return_if_fail (XFPM_IS_NOTIFY (notify));
+   GError *error = NULL;
 
+   g_return_if_fail (XFPM_IS_NOTIFY (notify));
 
 if (notify->priv->critical_id != 0)
 {
@@ -356,8 +357,11 @@ void xfpm_notify_close_critical (XfpmNotify *notify)
 
 if ( notify->priv->critical )
 {
-   if (!notify_notification_close (notify->priv->critical, NULL))
-   g_warning ("Failed to close notification\n");
+   if (!notify_notification_close (notify->priv->critical, 
))
+   {
+   g_warning ("Failed to close critical 
notification: %s", error->message);
+   g_error_free (error);
+   }
 
g_object_unref (G_OBJECT(notify->priv->critical) );
notify->priv->critical  = NULL;
diff --git a/src/xfpm-power.c b/src/xfpm-power.c
index ab22a36..4919f47 100644
--- a/src/xfpm-power.c
+++ b/src/xfpm-power.c
@@ -249,6 +249,9 @@ xfpm_power_check_power (XfpmPower *power, gboolean 
on_battery)
 
 xfpm_dpms_set_on_battery (power->priv->dpms, on_battery);
 
+   /* Dismiss critical notifications on battery 
state changes */
+   xfpm_notify_close_critical 
(power->priv->notify);
+
power->priv->on_battery = on_battery;
list = g_hash_table_get_values (power->priv->hash);
len = g_list_length (list);

-- 
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-power-manager] 01/02: panel-plugin: Add (optional) Presentation mode indicator (Bug #15773)

2019-11-09 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-power-manager.

commit 2969f0b1ddb60ccda2989c6da6977ab51c75dfd7
Author: Simon Steinbeiss 
Date:   Sat Nov 9 00:56:35 2019 +0100

panel-plugin: Add (optional) Presentation mode indicator (Bug #15773)
---
 common/xfpm-config.h   |  1 +
 .../power-manager-plugin/power-manager-button.c| 76 +++---
 .../xfce/xfce-power-manager-plugin.c   | 16 -
 3 files changed, 82 insertions(+), 11 deletions(-)

diff --git a/common/xfpm-config.h b/common/xfpm-config.h
index 3c5e404..dbbdee5 100644
--- a/common/xfpm-config.h
+++ b/common/xfpm-config.h
@@ -81,6 +81,7 @@ G_BEGIN_DECLS
 #define HANDLE_BRIGHTNESS_KEYS   "handle-brightness-keys"
 #define SHOW_BRIGHTNESS_POPUP"show-brightness-popup"
 #define SHOW_PANEL_LABEL "show-panel-label"
+#define SHOW_PRESENTATION_INDICATOR  "show-presentation-indicator"
 
 G_END_DECLS
 
diff --git a/panel-plugins/power-manager-plugin/power-manager-button.c 
b/panel-plugins/power-manager-plugin/power-manager-button.c
index 40b4dca..a4a913c 100644
--- a/panel-plugins/power-manager-plugin/power-manager-button.c
+++ b/panel-plugins/power-manager-plugin/power-manager-button.c
@@ -51,6 +51,7 @@
 #define SAFE_SLIDER_MIN_LEVEL (5)
 #define PANEL_DEFAULT_ICON ("battery-full-charged")
 #define PANEL_DEFAULT_ICON_SYMBOLIC ("battery-full-charged-symbolic")
+#define PRESENTATION_MODE_ICON ("x-office-presentation-symbolic")
 
 struct PowerManagerButtonPrivate
 {
@@ -73,6 +74,7 @@ struct PowerManagerButtonPrivate
 
 /* The actual panel icon image */
 GtkWidget   *panel_icon_image;
+GtkWidget   *panel_presentation_mode;
 GtkWidget   *panel_label;
 GtkWidget   *hbox;
 /* Keep track of icon name to redisplay during size changes */
@@ -100,6 +102,8 @@ struct PowerManagerButtonPrivate
 gint32   brightness_min_level;
 
 gint show_panel_label;
+gboolean presentation_mode;
+gboolean show_presentation_indicator;
 
 /* filter range value changed events for snappier UI feedback */
 guintset_level_timeout;
@@ -122,6 +126,8 @@ typedef enum
 PROP_0 = 0,
 PROP_BRIGHTNESS_MIN_LEVEL,
 PROP_SHOW_PANEL_LABEL,
+PROP_PRESENTATION_MODE,
+PROP_SHOW_PRESENTATION_INDICATOR,
 } POWER_MANAGER_BUTTON_PROPERTIES;
 
 enum {
@@ -139,6 +145,7 @@ static GList* find_device_in_list (PowerManagerButton 
*button, const gchar *obje
 static gboolean power_manager_button_device_icon_draw (GtkWidget *img, cairo_t 
*cr, gpointer userdata);
 static void power_manager_button_set_icon (PowerManagerButton *button);
 static void power_manager_button_set_label (PowerManagerButton *button, 
gdouble percentage, guint64 time_to_empty_or_full);
+static void power_manager_button_update_presentation_indicator 
(PowerManagerButton *button);
 static void power_manager_button_update_label (PowerManagerButton *button, 
UpDevice *device);
 static gboolean power_manager_button_press_event (GtkWidget *widget, 
GdkEventButton *event);
 static gboolean power_manager_button_menu_add_device (PowerManagerButton 
*button, BatteryDevice *battery_device, gboolean append);
@@ -226,9 +233,13 @@ find_device_in_list (PowerManagerButton *button, const 
gchar *object_path)
 static void
 power_manager_button_set_icon (PowerManagerButton *button)
 {
+g_return_if_fail (GTK_IS_WIDGET (button->priv->panel_presentation_mode));
+
 gtk_image_set_from_icon_name (GTK_IMAGE (button->priv->panel_icon_image), 
button->priv->panel_icon_name, GTK_ICON_SIZE_BUTTON);
 gtk_image_set_pixel_size (GTK_IMAGE (button->priv->panel_icon_image), 
button->priv->panel_icon_width);
 
+gtk_image_set_pixel_size (GTK_IMAGE 
(button->priv->panel_presentation_mode), button->priv->panel_icon_width);
+
 /* Notify others the icon name changed */
 g_signal_emit (button, __signals[SIG_ICON_NAME_CHANGED], 0);
 
@@ -812,6 +823,16 @@ power_manager_button_set_property (GObject *object,
 button->priv->show_panel_label = g_value_get_int (value);
 power_manager_button_update_label (button, 
button->priv->display_device);
 break;
+case PROP_PRESENTATION_MODE:
+button->priv->presentation_mode = g_value_get_boolean (value);
+if (GTK_IS_WIDGET (button->priv->panel_presentation_mode))
+power_manager_button_update_presentation_indicator (button);
+break;
+case PROP_SHOW_PRESENTATION_INDICATOR:
+button->priv->show_presentation_indicator = g_value_get_boolean 
(value);
+if (GTK_IS_WIDGET (button->priv->panel_presentation_mode))
+

[Xfce4-commits] [xfce/xfce4-power-manager] branch master updated (e252b4b -> df7c0ae)

2019-11-09 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-power-manager.

  from  e252b4b   Switch to symbolic window-close icons
   new  2969f0b   panel-plugin: Add (optional) Presentation mode indicator 
(Bug #15773)
   new  df7c0ae   Dismiss critical notification when connecting to AC

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


Summary of changes:
 common/xfpm-config.h   |  1 +
 .../power-manager-plugin/power-manager-button.c| 76 +++---
 .../xfce/xfce-power-manager-plugin.c   | 16 -
 src/xfpm-notify.c  | 10 ++-
 src/xfpm-power.c   |  3 +
 5 files changed, 92 insertions(+), 14 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 xfce-4.12 updated (2e1013c -> ce6cef3)

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

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

  from  2e1013c   Updates for release
   new  ce6cef3   Back to development

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:
 configure.ac.in | 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: Back to development

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

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

commit ce6cef3390d47b6c4d96039b35aefc85be3a0655
Author: Alexander Schwinn 
Date:   Sat Nov 9 23:40:08 2019 +0100

Back to development
---
 configure.ac.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac.in b/configure.ac.in
index 2187732..7d7bdba 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -29,7 +29,7 @@ m4_define([thunar_version_minor], [6])
 m4_define([thunar_version_micro], [18])
 m4_define([thunar_version_nano], [])
 m4_define([thunar_version_build], [@REVISION@])
-m4_define([thunar_version_tag], [])
+m4_define([thunar_version_tag], [git])
 m4_define([thunar_version], 
[thunar_version_major().thunar_version_minor().thunar_version_micro()ifelse(thunar_version_nano(),
 [], [], [.thunar_version_nano()])ifelse(thunar_version_tag(), [git], 
[thunar_version_tag()-thunar_version_build()], [thunar_version_tag()])])
 
 dnl ***

-- 
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] annotated tag thunar-1.6.18 created (now 24957f7)

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

alex pushed a 
change to annotated 
tag thunar-1.6.18
in repository xfce/thunar.

at  24957f7   (tag)
   tagging  2e1013cc2f839265d0f84e059749ad44f724d396 (commit)
  replaces  thunar-1.6.17
 tagged by  Alexander Schwinn
on  Sat Nov 9 23:34:12 2019 +0100

- Log -
probably the last thunar release on the xfce-4.12 branch
---

No new revisions were added by this update.

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


[Xfce4-commits] [xfce/thunar] branch xfce-4.12 updated (2a5cd0c -> 2e1013c)

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

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

  from  2a5cd0c   I18n: Update translation sl (94%).
   new  2e1013c   Updates for release

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| 15 ++-
 configure.ac.in |  4 ++--
 2 files changed, 16 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [xfce/thunar] 01/01: Updates for release

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

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

commit 2e1013cc2f839265d0f84e059749ad44f724d396
Author: Alexander Schwinn 
Date:   Sat Nov 9 23:31:29 2019 +0100

Updates for release
---
 NEWS| 15 ++-
 configure.ac.in |  4 ++--
 2 files changed, 16 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index eb335e9..d8d8405 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,16 @@
+1.6.18
+==
+- Crash on refresh if remote folder has been removed (Bug #15961)
+- Remove 'auto-expand folders' from tree-view since it causes bad 
+usability with keyboard (Bug #15743)
+- Changed Wiki links to https://docs.xfce.org/xfce/thunar/4.12/start 
+- Dont restart the folder monitor on each refresh - Fixes "ghost files 
+after moving files" (Bug #13364)
+- Fix build without HAVE_GIO_UNIX (Bug #12863)
+- Translation Updates:
+  Catalan, Chinese (Taiwan), Danish, Norwegian Bokmål, Persian (Iran), 
+  Slovenian, 
+
 1.6.17
 ==
 - tree view jumps (scrolls) when clicking on a directory (Bug #15174)
@@ -1100,4 +1113,4 @@ Ukrainian, Urdu, Urdu (Pakistan), Uyghur, Vietnamese
 - The "Open With" dialog now allows users to remove launchers that were
   previously added via the custom command box.
 - The number of relocations for the libraries was reduced to improve the
-  application startup time.
+  application startup time.
\ No newline at end of file
diff --git a/configure.ac.in b/configure.ac.in
index 18a7503..2187732 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -26,10 +26,10 @@ m4_define([thunarx_verinfo], [0:0:0])
 m4_define([thunarx_version_api], [2])
 m4_define([thunar_version_major], [1])
 m4_define([thunar_version_minor], [6])
-m4_define([thunar_version_micro], [17])
+m4_define([thunar_version_micro], [18])
 m4_define([thunar_version_nano], [])
 m4_define([thunar_version_build], [@REVISION@])
-m4_define([thunar_version_tag], [git])
+m4_define([thunar_version_tag], [])
 m4_define([thunar_version], 
[thunar_version_major().thunar_version_minor().thunar_version_micro()ifelse(thunar_version_nano(),
 [], [], [.thunar_version_nano()])ifelse(thunar_version_tag(), [git], 
[thunar_version_tag()-thunar_version_build()], [thunar_version_tag()])])
 
 dnl ***

-- 
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/03: panel: Make sure "span monitors" is conditionally sensitive

2019-11-09 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 57f439b9b30c645b9b52a233056819c3b54fcc89
Author: Simon Steinbeiss 
Date:   Wed Nov 6 01:15:31 2019 +0100

panel: Make sure "span monitors" is conditionally sensitive
---
 panel/panel-preferences-dialog.c | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/panel/panel-preferences-dialog.c b/panel/panel-preferences-dialog.c
index 4c8dab1..375dfff 100644
--- a/panel/panel-preferences-dialog.c
+++ b/panel/panel-preferences-dialog.c
@@ -530,7 +530,7 @@ panel_preferences_dialog_bindings_update 
(PanelPreferencesDialog *dialog)
 {
   gtk_combo_box_set_active_iter (GTK_COMBO_BOX (object), );
   output_selected = TRUE;
-  span_monitors_sensitive = TRUE;
+  span_monitors_sensitive = FALSE;
 }
 
   if (n_monitors >= 1)
@@ -650,7 +650,11 @@ panel_preferences_dialog_output_changed (GtkComboBox   
 *combobox,
   /* monitor spanning does not work when an output is selected */
   object = gtk_builder_get_object (GTK_BUILDER (dialog), "span-monitors");
   panel_return_if_fail (GTK_IS_WIDGET (object));
-  gtk_widget_set_sensitive (GTK_WIDGET (object), output_name == NULL);
+  if (output_name == NULL ||
+  g_strcmp0 ("Automatic", output_name) == 0)
+gtk_widget_set_sensitive (GTK_WIDGET (object), TRUE);
+  else
+gtk_widget_set_sensitive (GTK_WIDGET (object), FALSE);
 
   g_free (output_name);
 }

-- 
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] 03/03: clock: Drop leading zeros for days in default layout

2019-11-09 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 1afb65374f9cb81f613b40fc96bc414c3470f709
Author: Simon Steinbeiss 
Date:   Sat Nov 9 23:21:05 2019 +0100

clock: Drop leading zeros for days in default layout
---
 plugins/clock/clock-digital.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/clock/clock-digital.h b/plugins/clock/clock-digital.h
index 1e237bc..77fdc26 100644
--- a/plugins/clock/clock-digital.h
+++ b/plugins/clock/clock-digital.h
@@ -22,7 +22,7 @@
 G_BEGIN_DECLS
 
 /* TRANSLATORS: adjust this accordingly for your locale format */
-#define DEFAULT_DIGITAL_FORMAT NC_("Time", "%a %d %b, %R")
+#define DEFAULT_DIGITAL_FORMAT NC_("Time", "%a %_d %b, %R")
 
 typedef struct _XfceClockDigitalClass XfceClockDigitalClass;
 typedef struct _XfceClockDigital  XfceClockDigital;

-- 
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] 02/03: clock: Add back hour:min to format presets (Bug #16035)

2019-11-09 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 e8c6fc408d0c0e750420633c8424498c9439cc17
Author: Simon Steinbeiss 
Date:   Sat Nov 9 23:19:03 2019 +0100

clock: Add back hour:min to format presets (Bug #16035)

Previously it used to be %R, which adds leading zeros to the hours, but
it was dropped shortly before 4.14.

https://git.xfce.org/xfce/xfce4-panel/commit?id=2c69eeb88871829d165b480d8ad9b6a704e09568
---
 plugins/clock/clock.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/plugins/clock/clock.c b/plugins/clock/clock.c
index c05f143..0b4b886 100644
--- a/plugins/clock/clock.c
+++ b/plugins/clock/clock.c
@@ -181,6 +181,7 @@ static const gchar *digital_formats[] =
   "%T",
   "%r",
   "%I:%M %p",
+  "%_H:%M",
   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] branch master updated (7cddebd -> 1afb653)

2019-11-09 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  7cddebd   I18n: Update translation zh_TW (100%).
   new  57f439b   panel: Make sure "span monitors" is conditionally 
sensitive
   new  e8c6fc4   clock: Add back hour:min to format presets (Bug #16035)
   new  1afb653   clock: Drop leading zeros for days in default layout

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


Summary of changes:
 panel/panel-preferences-dialog.c | 8 ++--
 plugins/clock/clock-digital.h| 2 +-
 plugins/clock/clock.c| 1 +
 3 files changed, 8 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [xfce/thunar] 01/01: Back to development

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

alex pushed a 
commit to branch 
xfce-4.14
in repository xfce/thunar.

commit f9d646e6d8a7c1acf4dea3360882a85a392bca65
Author: Alexander Schwinn 
Date:   Sat Nov 9 23:18:39 2019 +0100

Back to development
---
 configure.ac.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac.in b/configure.ac.in
index 8aaeb26..2728ff7 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -29,7 +29,7 @@ m4_define([thunar_version_minor], [8])
 m4_define([thunar_version_micro], [10])
 m4_define([thunar_version_nano], [])
 m4_define([thunar_version_build], [@REVISION@])
-m4_define([thunar_version_tag], [])
+m4_define([thunar_version_tag], [git])
 m4_define([thunar_version], 
[thunar_version_major().thunar_version_minor().thunar_version_micro()ifelse(thunar_version_nano(),
 [], [], [.thunar_version_nano()])ifelse(thunar_version_tag(), [git], 
[thunar_version_tag()-thunar_version_build()], [thunar_version_tag()])])
 
 dnl ***

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


[Xfce4-commits] [xfce/thunar] branch xfce-4.14 updated (1ba0d50 -> f9d646e)

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

alex pushed a 
change to branch 
xfce-4.14
in repository xfce/thunar.

  from  1ba0d50   Updates for release
   new  f9d646e   Back to development

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:
 configure.ac.in | 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] annotated tag thunar-1.8.10 created (now e2610b4)

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

alex pushed a 
change to annotated 
tag thunar-1.8.10
in repository xfce/thunar.

at  e2610b4   (tag)
   tagging  1ba0d507e1a58ebcff361efb8e5addfee40dd670 (commit)
  replaces  xfce-4.14.0
 tagged by  Alexander Schwinn
on  Sat Nov 9 22:55:01 2019 +0100

- Log -
bugfix release on 4.14 branch
---

No new revisions were added by this update.

-- 
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: Updates for release

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

alex pushed a 
commit to branch 
xfce-4.14
in repository xfce/thunar.

commit 1ba0d507e1a58ebcff361efb8e5addfee40dd670
Author: Alexander Schwinn 
Date:   Sat Nov 9 22:52:55 2019 +0100

Updates for release
---
 NEWS| 52 +++-
 configure.ac.in |  4 ++--
 2 files changed, 53 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index b002057..488114f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,53 @@
+1.8.10
+==
+   - Allow compilation with panel 4.15
+   - thunar-job: callee should keep track of the number of processed files 
+   (Bug #16117)
+   - Thunar does not show a context menu on right-click when started via 
+   trash-panel-plugin (Bug #16000)
+   - Make sure icon text is centered after unchecking "Text beside icons"
+   - Remove the vertical gap between icon and its label (Bug #16041)
+   - Fix icon view alignment (Bug #16107)
+   - Not possible to grab scrollbar on the very right pixels when Thunar 
+   is maximized (Bug #16050)
+   - Wrap text of error dialog
+   - Not possible to empty the trash via the pathbar context menu
+   - Crash on refresh if remote folder has been removed (Bug #15961)
+   - Center action buttons in conflict dialog window (Bug #15973) - 
+   Prevent usage of deprecated gtk_dialog_get_action_area
+   - Ensure user customizable action uses currently selected file path 
+   (Bug #15119)
+   - make filename label selectable in conflict dialog window
+   - Center action buttons in conflict dialog window (Bug #15973)
+   - Clear user customizable action shortcut when the action is deleted
+   - Prevent Gtk-CRITICAL when adding or modifying a user customizable 
+   action.
+   - Thunar SendTo Email: Add missing archive formats for archive 
+   detection (Bug #15917)
+   - sendto plugin: fix content type resolution. (Bug #15916)
+   - sendto plugin: extract function tse_file_is_archive (Bug #15916)
+   - sendto plugin: move g_file_info_get_content_type() call out of the 
+   cycle (Bug #15916)
+   - All glory to lowercase (Bug #15394)
+   - mismatched names between thunar.appdata.xml and thunar.desktop (Bug 
+   #15498)
+   - Replace text "Enter the new name:" by "Enter the name:" for file 
+   creation dialog (Bug #15423)
+   - Remove superfluous .desktop file "Thunar-folder-handler.desktop.in" 
+   (Bug #15467)
+   - Prevent unnecessary fallback copy-delete in file move when overwriting
+   - Fix possible memory leak
+   - Fix popup menus size (Bug #15832)
+   - Add Alt+D as alternative accelerator for Open Location (Bug #15828)
+   - Do not insert hyphens at intra-word line breaks (Bug #15856)
+- Translation Updates:
+  Albanian, Arabic, Belarusian, Bulgarian, Catalan, Chinese (Taiwan), 
+  Croatian, Danish, Dutch, English (United Kingdom), French, Galician, 
+  German, Hungarian, Italian, Japanese, Korean, Lithuanian, Malay, 
+  Norwegian Bokmål, Persian (Iran), Polish, Portuguese, Portuguese 
+  (Brazil), Russian, Serbian, Slovak, Slovenian, Spanish, Thai, Turkish, 
+  Ukrainian, 
+
 1.8.9
 ==
 - Remove 'auto-expand folders' from tree-view since it causes bad
@@ -1311,4 +1361,4 @@ Ukrainian, Urdu, Urdu (Pakistan), Uyghur, Vietnamese
 - The "Open With" dialog now allows users to remove launchers that were
   previously added via the custom command box.
 - The number of relocations for the libraries was reduced to improve the
-  application startup time.
+  application startup time.
\ No newline at end of file
diff --git a/configure.ac.in b/configure.ac.in
index 6b0e197..8aaeb26 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -26,10 +26,10 @@ m4_define([thunarx_verinfo], [0:0:0])
 m4_define([thunarx_version_api], [3])
 m4_define([thunar_version_major], [1])
 m4_define([thunar_version_minor], [8])
-m4_define([thunar_version_micro], [9])
+m4_define([thunar_version_micro], [10])
 m4_define([thunar_version_nano], [])
 m4_define([thunar_version_build], [@REVISION@])
-m4_define([thunar_version_tag], [git])
+m4_define([thunar_version_tag], [])
 m4_define([thunar_version], 
[thunar_version_major().thunar_version_minor().thunar_version_micro()ifelse(thunar_version_nano(),
 [], [], [.thunar_version_nano()])ifelse(thunar_version_tag(), [git], 
[thunar_version_tag()-thunar_version_build()], [thunar_version_tag()])])
 
 dnl ***

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


[Xfce4-commits] [xfce/thunar] branch xfce-4.14 updated (48854b6 -> 1ba0d50)

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

alex pushed a 
change to branch 
xfce-4.14
in repository xfce/thunar.

  from  48854b6   Allow compilation with panel 4.15
   new  1ba0d50   Updates for release

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| 52 +++-
 configure.ac.in |  4 ++--
 2 files changed, 53 insertions(+), 3 deletions(-)

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


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

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

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

commit bbb8d7c0dc0e9728f58ca9906688801a37636b67
Author: Toni Estévez 
Date:   Sat Nov 9 18:30:41 2019 +0100

I18n: Update translation es (100%).

120 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/es.po | 35 ++-
 1 file changed, 18 insertions(+), 17 deletions(-)

diff --git a/po/es.po b/po/es.po
index 8183c91..b6ed2f4 100644
--- a/po/es.po
+++ b/po/es.po
@@ -5,19 +5,20 @@
 # Translators:
 # Abel Martín , 2008,2011
 # Adolfo Jayme Barrientos, 2014
-# Fito JB, 2014
-# Javier F. Serrador , 2018
+# Adolfo Jayme-Barrientos, 2014
+# e49097353bae6e06d169bea93a448e3e, 2018
 # Jaime Marquínez Ferrándiz, 2018
-# Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] , 2017
-# Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] , 2013-2015
-# Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] , 2017
+# prflr88 , 2017
+# prflr88 , 2013-2015
+# prflr88 , 2017
+# Toni Estévez , 2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar-volman\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-11-27 18:15+0100\n"
-"PO-Revision-Date: 2018-10-19 19:24+\n"
-"Last-Translator: Jaime Marquínez Ferrándiz\n"
+"PO-Revision-Date: 2019-11-09 17:18+\n"
+"Last-Translator: Toni Estévez \n"
 "Language-Team: Spanish 
(http://www.transifex.com/xfce/thunar-volman/language/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -33,16 +34,16 @@ msgstr "La ruta «sysfs» del dispositivo recién añadido"
 #: ../thunar-volman-settings/thunar-volman-settings.desktop.in.in.h:2
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:103
 msgid "Configure management of removable drives and media"
-msgstr "Configurar la gestión de dispositivos y medios extraíbles"
+msgstr "Configurar la gestión de dispositivos y soportes extraíbles"
 
 #: ../thunar-volman/main.c:61
 msgid "Print version information and exit"
-msgstr "Escribe la información de versión y termina"
+msgstr "Escribe la información de la versión y termina"
 
 #. setup application name
 #: ../thunar-volman/main.c:93
 msgid "Thunar Volume Manager"
-msgstr "Volúmenes Administrados Thunar"
+msgstr "Gestor de volúmenes de Thunar"
 
 #: ../thunar-volman/main.c:121
 msgid "All rights reserved."
@@ -51,12 +52,12 @@ msgstr "Todos los derechos reservados."
 #: ../thunar-volman/main.c:122
 #, c-format
 msgid "Please report bugs to <%s>."
-msgstr "Por favor, informe defectos a <%s>."
+msgstr "Informe de errores en <%s>."
 
 #: ../thunar-volman/main.c:176
 #, c-format
 msgid "There is no device with the sysfs path \"%s\""
-msgstr "No hay ningún dispositivo con la ruta «sysfs» «%s»"
+msgstr "No hay ningún dispositivo en la ruta «sysfs» «%s»"
 
 #: ../thunar-volman/main.c:188
 #, c-format
@@ -66,7 +67,7 @@ msgstr "Debe especificar la ruta «sysfs» de los dispositivos 
nuevos con --devi
 #. ...so we need to prompt what to do
 #: ../thunar-volman/tvm-block-device.c:204
 msgid "Photos and Music"
-msgstr "Fotos y Música"
+msgstr "Fotos y música"
 
 #: ../thunar-volman/tvm-block-device.c:205
 msgid "Photos were found on your portable music player"
@@ -89,16 +90,16 @@ msgstr "Ig_norar"
 #: ../thunar-volman/tvm-block-device.c:209
 #: ../thunar-volman/tvm-block-device.c:278
 msgid "Import _Photos"
-msgstr "Importar _fotos"
+msgstr "Importar las _fotos"
 
 #: ../thunar-volman/tvm-block-device.c:210
 msgid "Manage _Music"
-msgstr "Gestionar _música"
+msgstr "Gestionar la _música"
 
 #. ask the user to import photos
 #: ../thunar-volman/tvm-block-device.c:273
 msgid "Photo Import"
-msgstr "Importación de Fotos"
+msgstr "Importación de fotos"
 
 #: ../thunar-volman/tvm-block-device.c:274
 msgid "A photo card has been detected"
@@ -108,7 +109,7 @@ msgstr "Se ha detectado una tarjeta con fotos"
 msgid ""
 "There are photos on the card. Would you like to add these photos to your "
 "album?"
-msgstr "Hay fotos en la tarjeta. ¿Desea agregar estas fotos a su álbum?"
+msgstr "Hay fotos en la tarjeta. ¿Desea añadir estas fotos a su álbum?"
 
 #. prompt the user to execute the file
 #. prompt the user to execute this file

-- 
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 es (100%).

2019-11-09 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 53e439757f09e200e6ef98f590f262734ee7ab3f
Author: Toni Estévez 
Date:   Sat Nov 9 18:30:14 2019 +0100

I18n: Update translation es (100%).

766 translated messages.

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

diff --git a/po/es.po b/po/es.po
index e62a339..87d14b1 100644
--- a/po/es.po
+++ b/po/es.po
@@ -27,7 +27,7 @@ msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-09-02 00:30+0200\n"
-"PO-Revision-Date: 2019-11-09 11:30+\n"
+"PO-Revision-Date: 2019-11-09 16:55+\n"
 "Last-Translator: Toni Estévez \n"
 "Language-Team: Spanish (http://www.transifex.com/xfce/thunar/language/es/)\n"
 "MIME-Version: 1.0\n"
@@ -377,7 +377,7 @@ msgstr "_Aceptar"
 #: ../thunar/thunar-chooser-dialog.c:429
 #, c-format
 msgid "Failed to add new application \"%s\""
-msgstr "No se pudo añadir la nueva aplicación «%s»"
+msgstr "No se pudo añadir la aplicación nueva«%s»"
 
 #: ../thunar/thunar-chooser-dialog.c:494
 #, c-format
@@ -423,7 +423,7 @@ msgid ""
 "This will remove the application launcher that appears in the file context 
menu, but will not uninstall the application itself.\n"
 "\n"
 "You can only remove application launchers that were created using the custom 
command box in the \"Open With\" dialog of the file manager."
-msgstr "Esto quitará el lanzador de la aplicación que aparece en el menú de 
contexto del archivo, pero no desinstalará la aplicación.\n\nSolamente puede 
eliminar los lanzadores de aplicaciones que se hayan creado usando el cuadro de 
orden personalizada del diálogo «Abrir con» del administrador de archivos."
+msgstr "Esto quitará el lanzador de la aplicación que aparece en el menú 
contextual del archivo, pero no desinstalará la aplicación.\n\nSolamente puede 
eliminar los lanzadores de aplicaciones que se hayan creado usando el cuadro de 
orden personalizada del diálogo «Abrir con» del administrador de archivos."
 
 #. display an error to the user
 #: ../thunar/thunar-chooser-dialog.c:724
@@ -532,7 +532,7 @@ msgstr "Columnas visibles"
 msgid ""
 "Choose the order of information to appear in the\n"
 "detailed list view."
-msgstr "Elija el orden en que debe aparecer la información\nen el modo de 
vista detallada."
+msgstr "Elija el orden en que debe aparecer la información\nen la vista de 
lista detallada."
 
 #. create the "Move Up" button
 #: ../thunar/thunar-column-editor.c:198
@@ -592,7 +592,7 @@ msgstr "Desconocido"
 
 #: ../thunar/thunar-compact-view.c:108
 msgid "Compact directory listing"
-msgstr "Listado de directorio compacto"
+msgstr "Listado de carpetas compacto"
 
 #: ../thunar/thunar-compact-view.c:109
 msgid "Compact view"
@@ -650,11 +650,11 @@ msgstr "Configurar las _columnas…"
 
 #: ../thunar/thunar-details-view.c:137
 msgid "Configure the columns in the detailed list view"
-msgstr "Configura las columnas de la vista detallada de listas"
+msgstr "Configurar las columnas de la vista de lista detallada"
 
 #: ../thunar/thunar-details-view.c:400
 msgid "Detailed directory listing"
-msgstr "Listado detallado de la carpeta"
+msgstr "Listado de carpetas detallado"
 
 #: ../thunar/thunar-details-view.c:401
 msgid "Details view"
@@ -705,7 +705,7 @@ msgstr "Copiar de todos _modos"
 #. setup the confirmation dialog
 #: ../thunar/thunar-dialogs.c:545
 msgid "Confirm to replace files"
-msgstr "Confirmar para remplazar archivos"
+msgstr "Confirmar para reemplazar archivos"
 
 #: ../thunar/thunar-dialogs.c:550
 msgid "S_kip All"
@@ -717,11 +717,11 @@ msgstr "_Omitir"
 
 #: ../thunar/thunar-dialogs.c:552
 msgid "Replace _All"
-msgstr "Remplazar _todo"
+msgstr "Reemplazar _todo"
 
 #: ../thunar/thunar-dialogs.c:553
 msgid "_Replace"
-msgstr "_Remplazar"
+msgstr "_Reemplazar"
 
 #: ../thunar/thunar-dialogs.c:581
 #, c-format
@@ -741,12 +741,12 @@ msgstr "Esta carpeta ya contiene un archivo «%s»."
 #: ../thunar/thunar-dialogs.c:604
 #, c-format
 msgid "ReplaceDialogPart1|Do you want to replace the link"
-msgstr "¿Quiere remplazar el enlace existente"
+msgstr "¿Quiere reemplazar el enlace existente"
 
 #: ../thunar/thunar-dialogs.c:606
 #, c-format
 msgid "ReplaceDialogPart1|Do you want to replace the existing folder"
-msgstr "¿Quiere remplazar la carpeta existente"
+msgstr "¿Quiere reemplazar la carpeta existente"
 
 #: ../thunar/thunar-dialogs.c:608
 #, c-format
@@ -767,12 +767,12 @@ msgstr "Modificación:"
 #: ../thunar/thunar-dialogs.c:640
 #, c-format
 msgid "ReplaceDialogPart2|with the following link?"
-msgstr "por el siguiente enlace?"
+msgstr "por el enlace siguiente?"
 
 #: ../thunar/thunar-dialogs.c:642
 #, 

[Xfce4-commits] [thunar-plugins/thunar-shares-plugin] 01/01: I18n: Update translation es (100%).

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

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

commit 1314682e9e3f6e0dc27fc2245c8d69c7a9d3da80
Author: Toni Estévez 
Date:   Sat Nov 9 18:30:31 2019 +0100

I18n: Update translation es (100%).

29 translated messages.

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

diff --git a/po/es.po b/po/es.po
index f64cb41..c21ed7f 100644
--- a/po/es.po
+++ b/po/es.po
@@ -5,14 +5,15 @@
 # Translators:
 # daniel <>, 2008
 # Jaime Marquínez Ferrándiz, 2018
-# Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] , 2014
+# prflr88 , 2014
+# Toni Estévez , 2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-02-16 06:30+0100\n"
-"PO-Revision-Date: 2018-02-16 15:40+\n"
-"Last-Translator: Jaime Marquínez Ferrándiz\n"
+"PO-Revision-Date: 2019-11-09 17:09+\n"
+"Last-Translator: Toni Estévez \n"
 "Language-Team: Spanish 
(http://www.transifex.com/xfce/thunar-plugins/language/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,19 +23,19 @@ msgstr ""
 
 #: ../libshares/libshares-util.c:166
 msgid "Please, write a name."
-msgstr "Por favor, escriba un nombre."
+msgstr "Escriba un nombre."
 
 #. Warn the user
 #: ../libshares/libshares-util.c:174
 msgid ""
 "Share name too long. Some old clients may have problems to access it, "
 "continue anyway?"
-msgstr "Nombre del recurso compartido demasiado largo. Algunos clientes 
antiguos pueden tener problemas para acceder a él, ¿Continuar de todos modos?"
+msgstr "El nombre del recurso compartido es demasiado largo. Algunos clientes 
antiguos pueden tener problemas para acceder al recurso. ¿Continuar de todos 
modos?"
 
 #: ../libshares/libshares-util.c:187
 #, c-format
 msgid "Error while getting share information: %s"
-msgstr "Error al obtener la información compartida: %s"
+msgstr "Error al obtener la información del recurso compartido: %s"
 
 #: ../libshares/libshares-util.c:197
 msgid "Another share has the same name"
@@ -52,7 +53,7 @@ msgstr "Thunar necesita añadir algunos permisos a su carpeta 
para compartirla.
 
 #: ../libshares/libshares-util.c:392
 msgid "Error when changing folder permissions."
-msgstr "Error al cambiar los permisos de la carpeta"
+msgstr "Error al cambiar los permisos de la carpeta."
 
 #: ../libshares/shares.c:165
 #, c-format
@@ -107,14 +108,14 @@ msgstr "La orden «testparm» de Samba devolvió el error %d"
 #: ../libshares/shares.c:784
 #, c-format
 msgid "Cannot remove the share for path %s: that path is not shared"
-msgstr "No se puede eliminar el recurso compartido para la ruta %s: esta ruta 
no está compartida"
+msgstr "No se puede eliminar el recurso compartido ubicado en la ruta %s: esta 
ruta no está compartida"
 
 #: ../libshares/shares.c:837
 #, c-format
 msgid ""
 "Cannot change the path of an existing share; please remove the old share "
 "first and add a new one"
-msgstr "No se puede cambiar la ruta de un recurso compartido; por favor, 
elimine el antiguo recurso compartido primero y añada uno nuevo"
+msgstr "No se puede cambiar la ruta de un recurso compartido existente; 
elimine primero el recurso antiguo y añada después uno nuevo"
 
 #: ../thunar-plugin/tsp-page.c:151
 msgid "Folder Sharing"
@@ -132,12 +133,12 @@ msgstr "Nombre del recurso compartido:"
 #. Write access
 #: ../thunar-plugin/tsp-page.c:180
 msgid "Allow others users to write in this folder"
-msgstr "Permitir escritura a todos los usuarios"
+msgstr "Permitir que otros usuarios escriban en esta carpeta"
 
 #. Guest access
 #: ../thunar-plugin/tsp-page.c:185
 msgid "Allow Guest access"
-msgstr "Permitir acceso a invitados"
+msgstr "Permitir el acceso a invitados"
 
 #: ../thunar-plugin/tsp-page.c:193
 msgid "Comments:"

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


[Xfce4-commits] [xfce/thunar-volman] branch master updated (dbb4de1 -> bbb8d7c)

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

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

  from  dbb4de1   I18n: Update translation sl (100%).
   new  bbb8d7c   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 | 35 ++-
 1 file changed, 18 insertions(+), 17 deletions(-)

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


[Xfce4-commits] [thunar-plugins/thunar-media-tags-plugin] branch master updated (b773f5f -> ae0b7c6)

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

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

  from  b773f5f   I18n: Update translation en_GB (100%).
   new  ae0b7c6   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 | 19 ++-
 1 file changed, 10 insertions(+), 9 deletions(-)

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


[Xfce4-commits] [thunar-plugins/thunar-media-tags-plugin] 01/01: I18n: Update translation es (100%).

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

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

commit ae0b7c65131485eed12e59ce5a3ccdf891b3ddd5
Author: Toni Estévez 
Date:   Sat Nov 9 18:30:24 2019 +0100

I18n: Update translation es (100%).

60 translated messages.

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

diff --git a/po/es.po b/po/es.po
index abcb3e2..250a5fe 100644
--- a/po/es.po
+++ b/po/es.po
@@ -5,14 +5,15 @@
 # Translators:
 # Abel Martín , 2008
 # Jaime Marquínez Ferrándiz, 2018
-# Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] , 2014-2015
+# prflr88 , 2014-2015
+# Toni Estévez , 2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-02-15 00:30+0100\n"
-"PO-Revision-Date: 2018-02-16 15:40+\n"
-"Last-Translator: Jaime Marquínez Ferrándiz\n"
+"PO-Revision-Date: 2019-11-09 17:01+\n"
+"Last-Translator: Toni Estévez \n"
 "Language-Team: Spanish 
(http://www.transifex.com/xfce/thunar-plugins/language/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -50,7 +51,7 @@ msgstr "Artista - Pista - Título"
 
 #: ../thunar-plugin/tag-renamer.c:67
 msgid "Custom"
-msgstr "Personalizado"
+msgstr "Personalizar"
 
 #. Custom format
 #: ../thunar-plugin/tag-renamer.c:243
@@ -93,11 +94,11 @@ msgstr "Título desconocido"
 #. Edit tags action
 #: ../thunar-plugin/tag-renamer.c:629
 msgid "Edit _Tags"
-msgstr "Editar _etiquetas"
+msgstr "Editar las _etiquetas"
 
 #: ../thunar-plugin/tag-renamer.c:629
 msgid "Edit ID3/OGG tags of this file."
-msgstr "Editar etiquetas ID3/OGG de este archivo."
+msgstr "Editar las etiquetas ID3/OGG de este archivo."
 
 #: ../thunar-plugin/tag-renamer.c:648
 msgid "Tag Help"
@@ -198,7 +199,7 @@ msgstr "Audio"
 #. Set up the dialog
 #: ../thunar-plugin/audio-tags-page.c:556
 msgid "Edit Tags"
-msgstr "Editar etiquetas"
+msgstr "Editar las etiquetas"
 
 #: ../thunar-plugin/audio-tags-page.c:559
 msgid "_Cancel"
@@ -223,7 +224,7 @@ msgstr "_Cerrar"
 #: ../thunar-plugin/audio-tags-page.c:984
 #, c-format
 msgid "%d:%02d Minutes"
-msgstr "%d:%02d Minutos"
+msgstr "%d:%02d minutos"
 
 #: ../thunar-plugin/audio-tags-page.c:985
 #, c-format
@@ -274,4 +275,4 @@ msgstr "Mostrar información más detallada sobre este 
archivo de audio."
 
 #: ../thunar-plugin/audio-tags-page.c:1198
 msgid "Save audio tags."
-msgstr "Guardar etiquetas de audio."
+msgstr "Guardar las etiquetas de audio."

-- 
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 (498a9e3 -> 53e4397)

2019-11-09 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  498a9e3   I18n: Update translation es (100%).
   new  53e4397   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 | 222 +++
 1 file changed, 111 insertions(+), 111 deletions(-)

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


[Xfce4-commits] [thunar-plugins/thunar-shares-plugin] branch master updated (0a7f05a -> 1314682)

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

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

  from  0a7f05a   I18n: Update translation en_GB (100%).
   new  1314682   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 | 23 ---
 1 file changed, 12 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/thunar] 01/01: I18n: Update translation es (100%).

2019-11-09 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 498a9e3cceb8346d35939f4790fcca700831b9c6
Author: Toni Estévez 
Date:   Sat Nov 9 12:30:14 2019 +0100

I18n: Update translation es (100%).

766 translated messages.

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

diff --git a/po/es.po b/po/es.po
index 5175a24..e62a339 100644
--- a/po/es.po
+++ b/po/es.po
@@ -27,8 +27,8 @@ msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-09-02 00:30+0200\n"
-"PO-Revision-Date: 2019-10-27 18:48+\n"
-"Last-Translator: César Enrique García \n"
+"PO-Revision-Date: 2019-11-09 11:30+\n"
+"Last-Translator: Toni Estévez \n"
 "Language-Team: Spanish (http://www.transifex.com/xfce/thunar/language/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -95,7 +95,7 @@ msgstr "Ordenar elementos en orden descendente"
 
 #: ../thunar/thunar-application.c:79
 msgid "Open the bulk rename dialog"
-msgstr "Abrir el diálogo de cambio de nombre en masa de Thunar"
+msgstr "Abrir el diálogo de cambio de nombre en masa"
 
 #: ../thunar/thunar-application.c:80
 msgid "Run in daemon mode"
@@ -423,7 +423,7 @@ msgid ""
 "This will remove the application launcher that appears in the file context 
menu, but will not uninstall the application itself.\n"
 "\n"
 "You can only remove application launchers that were created using the custom 
command box in the \"Open With\" dialog of the file manager."
-msgstr "Esto quitará el lanzador de la aplicación que aparece en el menú de 
contexto de fichero, pero no desinstalará la aplicación.\n\nSolamente puede 
eliminar lanzadores de aplicación que se haya creado mediante la entrada de 
órdenes personalizada en el diálogo «Abrir con» del administrador de ficheros."
+msgstr "Esto quitará el lanzador de la aplicación que aparece en el menú de 
contexto del archivo, pero no desinstalará la aplicación.\n\nSolamente puede 
eliminar los lanzadores de aplicaciones que se hayan creado usando el cuadro de 
orden personalizada del diálogo «Abrir con» del administrador de archivos."
 
 #. display an error to the user
 #: ../thunar/thunar-chooser-dialog.c:724
@@ -604,7 +604,7 @@ msgstr "C_rear"
 
 #: ../thunar/thunar-create-dialog.c:159
 msgid "Enter the name:"
-msgstr "Ingrese el nombre:"
+msgstr "Escriba el nombre:"
 
 #. display an error message
 #: ../thunar/thunar-create-dialog.c:452
@@ -627,17 +627,17 @@ msgstr "La carpeta de trabajo debe ser una ruta absoluta"
 #: ../thunar/thunar-dbus-service.c:984 ../thunar/thunar-dbus-service.c:1419
 #, c-format
 msgid "At least one filename must be specified"
-msgstr "Debe especificarse al menos un nombre de fichero"
+msgstr "Debe especificarse al menos un nombre de archivo"
 
 #: ../thunar/thunar-dbus-service.c:1159
 #, c-format
 msgid "At least one source filename must be specified"
-msgstr "Debe especificarse al menos un nombre de fichero de origen"
+msgstr "Debe especificarse al menos un nombre de archivo de origen"
 
 #: ../thunar/thunar-dbus-service.c:1169
 #, c-format
 msgid "The number of source and target filenames must be the same"
-msgstr "El número de los ficheros de origen y de destino debe ser el mismo "
+msgstr "El número de archivos de origen y de destino debe ser el mismo"
 
 #: ../thunar/thunar-dbus-service.c:1178
 #, c-format
@@ -646,7 +646,7 @@ msgstr "Debe especificarse al menos una carpeta de destino"
 
 #: ../thunar/thunar-details-view.c:137
 msgid "Configure _Columns..."
-msgstr "Configurar _columnas…"
+msgstr "Configurar las _columnas…"
 
 #: ../thunar/thunar-details-view.c:137
 msgid "Configure the columns in the detailed list view"
@@ -664,11 +664,11 @@ msgstr "Vista detallada"
 #: ../thunar/thunar-dialogs.c:100
 #, c-format
 msgid "Rename \"%s\""
-msgstr "Renombre «%s»"
+msgstr "Renombrar «%s»"
 
 #: ../thunar/thunar-dialogs.c:106
 msgid "_Rename"
-msgstr "Cambia_r el nombre"
+msgstr "_Renombrar"
 
 #: ../thunar/thunar-dialogs.c:136
 msgid "Enter the new name:"
@@ -736,7 +736,7 @@ msgstr "Esta carpeta ya contiene una carpeta «%s»."
 #: ../thunar/thunar-dialogs.c:591
 #, c-format
 msgid "This folder already contains a file \"%s\"."
-msgstr "Esta carpeta ya contiene un fichero «%s»."
+msgstr "Esta carpeta ya contiene un archivo «%s»."
 
 #: ../thunar/thunar-dialogs.c:604
 #, c-format
@@ -751,7 +751,7 @@ msgstr "¿Quiere remplazar la carpeta existente"
 #: ../thunar/thunar-dialogs.c:608
 #, c-format
 msgid "ReplaceDialogPart1|Do you want to replace the existing file"
-msgstr "¿Quiere remplazar el fichero existente"
+msgstr "¿Quiere reemplazar el archivo existente"
 
 #. Fourth box (size, volume, free 

[Xfce4-commits] [xfce/thunar] branch master updated (5b4637b -> 498a9e3)

2019-11-09 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  5b4637b   Allow compilation with panel 4.15
   new  498a9e3   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 | 132 +++
 1 file changed, 66 insertions(+), 66 deletions(-)

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