[Xfce4-commits] [apps/xfce4-notifyd] branch master updated (3393784 -> 943e44e)

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

ochosi pushed a 
change to branch 
master
in repository apps/xfce4-notifyd.

  from  3393784   I18n: Update translation gl (100%).
   new  943e44e   Add fallback for label alignment and older Gtk+3

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:
 panel-plugin/notification-plugin-dialogs.c | 12 ++--
 panel-plugin/notification-plugin-log.c | 14 +-
 2 files changed, 23 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [apps/xfce4-notifyd] 01/01: Add fallback for label alignment and older Gtk+3

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

ochosi pushed a 
commit to branch 
master
in repository apps/xfce4-notifyd.

commit 943e44e1894134191e060dfb26bbb56f17e48a5d
Author: R.J.V. Bertin 
Date:   Thu Jan 17 23:48:34 2019 +0100

Add fallback for label alignment and older Gtk+3
---
 panel-plugin/notification-plugin-dialogs.c | 12 ++--
 panel-plugin/notification-plugin-log.c | 14 +-
 2 files changed, 23 insertions(+), 3 deletions(-)

diff --git a/panel-plugin/notification-plugin-dialogs.c 
b/panel-plugin/notification-plugin-dialogs.c
index 9161bf9..db0786d 100644
--- a/panel-plugin/notification-plugin-dialogs.c
+++ b/panel-plugin/notification-plugin-dialogs.c
@@ -97,7 +97,11 @@ notification_plugin_configure (XfcePanelPlugin  *plugin,
   gtk_container_add_with_properties (GTK_CONTAINER 
(gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
 grid, 
"expand", TRUE, "fill", TRUE, NULL);
   label = gtk_label_new (_("Number of notifications to show"));
-  gtk_label_set_xalign (GTK_LABEL (label), 0.0);
+#if GTK_CHECK_VERSION (3, 16, 0)
+  gtk_label_set_xalign (GTK_LABEL (label), 0);
+#else
+  gtk_widget_set_halign (label, GTK_ALIGN_START);
+#endif
   gtk_grid_attach (GTK_GRID (grid), GTK_WIDGET (label), 0, 0, 1, 1);
   spin = gtk_spin_button_new (adjustment, 1.0, 0);
   gtk_grid_attach (GTK_GRID (grid), GTK_WIDGET (spin), 1, 0, 1, 1);
@@ -105,7 +109,11 @@ notification_plugin_configure (XfcePanelPlugin  
*plugin,
   G_OBJECT (spin), "value");
 
   label = gtk_label_new (_("Only show notifications from today"));
-  gtk_label_set_xalign (GTK_LABEL (label), 0.0);
+#if GTK_CHECK_VERSION (3, 16, 0)
+  gtk_label_set_xalign (GTK_LABEL (label), 0);
+#else
+  gtk_widget_set_halign (label, GTK_ALIGN_START);
+#endif
   gtk_grid_attach (GTK_GRID (grid), GTK_WIDGET (label), 0, 1, 1, 1);
   check = gtk_switch_new ();
   gtk_widget_set_halign (check, GTK_ALIGN_END);
diff --git a/panel-plugin/notification-plugin-log.c 
b/panel-plugin/notification-plugin-log.c
index cc1fa4f..b0e5bf9 100644
--- a/panel-plugin/notification-plugin-log.c
+++ b/panel-plugin/notification-plugin-log.c
@@ -130,7 +130,11 @@ notification_plugin_menu_populate (NotificationPlugin 
*notification_plugin)
   box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
   label = gtk_label_new (NULL);
   gtk_label_set_markup_with_mnemonic (GTK_LABEL (label), _("_Do not 
disturb"));
-  gtk_label_set_xalign (GTK_LABEL (label), 0.0);
+#if GTK_CHECK_VERSION (3, 16, 0)
+  gtk_label_set_xalign (GTK_LABEL (label), 0);
+#else
+  gtk_widget_set_halign (label, GTK_ALIGN_START);
+#endif
   notification_plugin->do_not_disturb_switch = gtk_switch_new ();
   gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0);
   gtk_box_pack_start (GTK_BOX (box), 
notification_plugin->do_not_disturb_switch, FALSE, FALSE, 0);
@@ -222,7 +226,11 @@ G_GNUC_END_IGNORE_DEPRECATIONS
   g_free (tmp);
   summary = gtk_label_new (NULL);
   gtk_label_set_markup (GTK_LABEL (summary), markup);
+#if GTK_CHECK_VERSION (3, 16, 0)
   gtk_label_set_xalign (GTK_LABEL (summary), 0);
+#else
+  gtk_widget_set_halign (summary, GTK_ALIGN_START);
+#endif
   gtk_label_set_ellipsize (GTK_LABEL (summary), PANGO_ELLIPSIZE_END);
   gtk_label_set_max_width_chars (GTK_LABEL (summary), 40);
   g_free (markup);
@@ -238,7 +246,11 @@ G_GNUC_END_IGNORE_DEPRECATIONS
 g_free (tmp1);
   }
   g_free (tmp);
+#if GTK_CHECK_VERSION (3, 16, 0)
   gtk_label_set_xalign (GTK_LABEL (body), 0);
+#else
+  gtk_widget_set_halign (body, GTK_ALIGN_START);
+#endif
   gtk_label_set_ellipsize (GTK_LABEL (body), PANGO_ELLIPSIZE_END);
   gtk_label_set_max_width_chars (GTK_LABEL (body), 40);
 

-- 
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-calculator-plugin] branch master updated (6f375ac -> 3dbdab7)

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

transifex pushed a 
change to branch 
master
in repository panel-plugins/xfce4-calculator-plugin.

  from  6f375ac   I18n: Update translation es (100%).
   new  3dbdab7   I18n: Add new translation gl (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 => gl.po} | 31 ---
 1 file changed, 16 insertions(+), 15 deletions(-)
 copy po/{pt.po => gl.po} (74%)

-- 
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-battery-plugin] branch master updated (81942b7 -> ea35f76)

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

transifex pushed a 
change to branch 
master
in repository panel-plugins/xfce4-battery-plugin.

  from  81942b7   I18n: Update translation eu (100%).
   new  ea35f76   I18n: Update translation gl (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/gl.po | 93 
 1 file changed, 47 insertions(+), 46 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-mpc-plugin] branch master updated (9e1c091 -> d283b05)

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

transifex pushed a 
change to branch 
master
in repository panel-plugins/xfce4-mpc-plugin.

  from  9e1c091   I18n: Update translation sr (100%).
   new  d283b05   I18n: Update translation gl (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/gl.po | 60 ++--
 1 file changed, 30 insertions(+), 30 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-calculator-plugin] 01/01: I18n: Add new translation gl (100%).

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

transifex pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-calculator-plugin.

commit 3dbdab75cd52599788c1269c15c8bdb5c4a9bd20
Author: Daniel Muñiz Fontoira 
Date:   Thu Jan 31 18:33:42 2019 +0100

I18n: Add new translation gl (100%).

15 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/gl.po | 86 
 1 file changed, 86 insertions(+)

diff --git a/po/gl.po b/po/gl.po
new file mode 100644
index 000..20f659d
--- /dev/null
+++ b/po/gl.po
@@ -0,0 +1,86 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+# 
+# Translators:
+# Nick Schermer , 2019
+# Xosé, 2019
+# Daniel Muñiz Fontoira , 2019
+# 
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2019-01-14 18:35+0100\n"
+"PO-Revision-Date: 2019-01-14 12:47+\n"
+"Last-Translator: Daniel Muñiz Fontoira , 2019\n"
+"Language-Team: Galician (https://www.transifex.com/xfce/teams/16840/gl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: gl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../panel-plugin/calculator.c:151
+#, c-format
+msgid "Calculator error: %s"
+msgstr "Erro de cálculo: %s"
+
+#: ../panel-plugin/calculator.c:227
+msgid " Calc:"
+msgstr "Calcular:"
+
+#: ../panel-plugin/calculator.c:399
+msgid "Calculator Plugin"
+msgstr "Engadido Calculadora"
+
+#: ../panel-plugin/calculator.c:402
+msgid "_Close"
+msgstr "_Pechar"
+
+#: ../panel-plugin/calculator.c:416
+msgid "Appearance"
+msgstr "Aparencia"
+
+#: ../panel-plugin/calculator.c:426
+msgid "Width (in chars):"
+msgstr "Ancho (en caracteres):"
+
+#: ../panel-plugin/calculator.c:438
+msgid "History"
+msgstr "Historial"
+
+#: ../panel-plugin/calculator.c:448
+msgid "Size:"
+msgstr "Tamaño:"
+
+#: ../panel-plugin/calculator.c:474
+msgid "Calculator for Xfce panel"
+msgstr "Calculadora para o panel do Xfce"
+
+#: ../panel-plugin/calculator.c:476
+msgid "Copyright (c) 2003-2019\n"
+msgstr "Copyright (c) 2003-2019\n"
+
+#: ../panel-plugin/calculator.c:526
+msgid "Trigonometrics use degrees"
+msgstr "Empregar graos para a trigonometría"
+
+#: ../panel-plugin/calculator.c:529
+msgid "Trigonometrics use radians"
+msgstr "Empregar radiáns para a trigonometría"
+
+#. Add checkbox to enable hexadecimal output
+#: ../panel-plugin/calculator.c:549
+msgid "Hexadecimal output"
+msgstr "Saída hexadecimal"
+
+#: ../panel-plugin/calculator.desktop.in.h:1
+msgid "Calculator"
+msgstr "Calculadora"
+
+#: ../panel-plugin/calculator.desktop.in.h:2
+msgid "Calculator plugin for the Xfce panel"
+msgstr "Engadido de calculadora para o panel Xfce"

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


[Xfce4-commits] [xfce/xfdesktop] branch master updated (9bc78cd -> 26e4ebe)

2019-01-31 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  9bc78cd   I18n: Update translation es (100%).
   new  26e4ebe   I18n: Update translation gl (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/gl.po | 343 ---
 1 file changed, 196 insertions(+), 147 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 gl (100%).

2019-01-31 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 26e4ebec287774f5d0a371cae2d66352d62f587a
Author: Daniel Muñiz Fontoira 
Date:   Thu Jan 31 18:34:42 2019 +0100

I18n: Update translation gl (100%).

243 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/gl.po | 343 ---
 1 file changed, 196 insertions(+), 147 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index 6248951..3b9d4f4 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,17 +3,17 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Daniel Muñiz Fontoira , 2018
+# Daniel Muñiz Fontoira , 2018-2019
 # Leandro Regueiro , 2006,2008-2010
-# José Manuel Rúa Estévez , 2017
+# nel rues , 2017
 # Xosé, 2015,2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 06:32+0200\n"
-"PO-Revision-Date: 2018-09-14 00:26+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2018-12-31 00:31+0100\n"
+"PO-Revision-Date: 2019-01-31 17:01+\n"
+"Last-Translator: Daniel Muñiz Fontoira \n"
 "Language-Team: Galician 
(http://www.transifex.com/xfce/xfdesktop/language/gl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -21,37 +21,37 @@ msgstr ""
 "Language: gl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../settings/main.c:417 ../src/xfdesktop-special-file-icon.c:295
+#: ../settings/main.c:419 ../src/xfdesktop-special-file-icon.c:295
 #: ../src/xfdesktop-special-file-icon.c:481
 msgid "Home"
 msgstr "Cartafol persoal"
 
-#: ../settings/main.c:419
+#: ../settings/main.c:421
 msgid "Filesystem"
 msgstr "Sistema de ficheiros"
 
-#: ../settings/main.c:421 ../src/xfdesktop-special-file-icon.c:299
+#: ../settings/main.c:423 ../src/xfdesktop-special-file-icon.c:299
 msgid "Trash"
 msgstr "Lixo"
 
-#: ../settings/main.c:423
+#: ../settings/main.c:425
 msgid "Removable Devices"
 msgstr "Dispositivos extraíbles"
 
-#: ../settings/main.c:425
+#: ../settings/main.c:427
 msgid "Network Shares"
 msgstr "Comparticións na rede"
 
-#: ../settings/main.c:427
+#: ../settings/main.c:429
 msgid "Disks and Drives"
 msgstr "Discos e unidades"
 
-#: ../settings/main.c:429
+#: ../settings/main.c:431
 msgid "Other Devices"
 msgstr "Outros dispositivos"
 
 #. Display the file name, file type, and file size in the tooltip.
-#: ../settings/main.c:542
+#: ../settings/main.c:545
 #, c-format
 msgid ""
 "%s\n"
@@ -59,117 +59,165 @@ msgid ""
 "Size: %s"
 msgstr "%s\nTipo: %s\nTamaño: %s"
 
-#: ../settings/main.c:733
+#: ../settings/main.c:736
 #, c-format
 msgid "Wallpaper for Monitor %d (%s)"
 msgstr "Fondo de escritorio do monitor %d (%s)"
 
-#: ../settings/main.c:736
+#: ../settings/main.c:739
 #, c-format
 msgid "Wallpaper for Monitor %d"
 msgstr "Fondo de escritorio do monitor %d"
 
-#: ../settings/main.c:742
+#: ../settings/main.c:745
 msgid "Move this dialog to the display you want to edit the settings for."
 msgstr "Mova este diálogo para a pantalla cuxas propiedades desexe editar."
 
-#: ../settings/main.c:749
+#: ../settings/main.c:752
 #, c-format
 msgid "Wallpaper for %s on Monitor %d (%s)"
 msgstr "Fondo de pantalla para %s no monitor %d (%s)"
 
-#: ../settings/main.c:753
+#: ../settings/main.c:756
 #, c-format
 msgid "Wallpaper for %s on Monitor %d"
 msgstr "Fondo de pantalla para %s no monitor %d"
 
-#: ../settings/main.c:760
+#: ../settings/main.c:763
 msgid ""
 "Move this dialog to the display and workspace you want to edit the settings "
 "for."
 msgstr "Mova este diálogo para a pantalla e o espazo de traballo cuxas 
propiedades desexe editar."
 
 #. Single monitor and single workspace
-#: ../settings/main.c:768
+#: ../settings/main.c:771
 #, c-format
 msgid "Wallpaper for my desktop"
 msgstr "Fondo do meu escritorio"
 
 #. Single monitor and per workspace wallpaper
-#: ../settings/main.c:774
+#: ../settings/main.c:777
 #, c-format
 msgid "Wallpaper for %s"
 msgstr "Fondo de escritorio para %s"
 
-#: ../settings/main.c:779
+#: ../settings/main.c:782
 msgid "Move this dialog to the workspace you want to edit the settings for."
 msgstr "Mova este diálogo para o espazo de traballo cuxas propiedades desexe 
editar."
 
-#: ../settings/main.c:1199
+#: ../settings/main.c:1202
 msgid "Image selection is unavailable while the image style is set to None."
 msgstr "A selección de imaxes non está dispoñíbel mentres o estilo de imaxe 
sexa Ningún."
 
-#: ../settings/main.c:1584 ../settings/main.c:1589
+#: ../settings/main.c:1587 ../settings/main.c:1592
 msgid "Spanning screens"
 msgstr "Atravesando os monitores"
 
-#: ../settings/main.c:1899
+#. TRANSLATORS: Please split the message in half '\n' so the dialog will not

[Xfce4-commits] [panel-plugins/xfce4-battery-plugin] 01/01: I18n: Update translation gl (100%).

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

transifex pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-battery-plugin.

commit ea35f76cff7c268f8a0755e11398b84fb8172df1
Author: Daniel Muñiz Fontoira 
Date:   Thu Jan 31 18:33:35 2019 +0100

I18n: Update translation gl (100%).

42 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/gl.po | 93 
 1 file changed, 47 insertions(+), 46 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index 537ce2c..d718dfd 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,14 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Daniel Muñiz Fontoira , 2019
 # Leandro Regueiro , 2008-2009
 # Xosé, 2015,2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-05-29 12:30+0200\n"
-"PO-Revision-Date: 2018-10-02 10:02+\n"
+"POT-Creation-Date: 2019-01-01 00:31+0100\n"
+"PO-Revision-Date: 2019-01-31 16:31+\n"
 "Last-Translator: Daniel Muñiz Fontoira \n"
 "Language-Team: Galician 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/gl/)\n"
 "MIME-Version: 1.0\n"
@@ -19,179 +20,179 @@ msgstr ""
 "Language: gl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../panel-plugin/battery.c:526
+#: ../panel-plugin/battery.c:346
 msgid "(No battery, AC on-line)"
 msgstr "(Non hai batería, conectado á rede eléctrica)"
 
-#: ../panel-plugin/battery.c:528
+#: ../panel-plugin/battery.c:348
 msgid "(Charging from AC)"
 msgstr "(Cargando da rede eléctrica)"
 
-#: ../panel-plugin/battery.c:528
+#: ../panel-plugin/battery.c:348
 msgid "(AC on-line)"
 msgstr "(Conectado á rede eléctrica)"
 
-#: ../panel-plugin/battery.c:538
+#: ../panel-plugin/battery.c:358
 #, c-format
 msgid "%d%% (%02d:%02d) remaining"
 msgstr "%d%% (%02d:%02d) restante"
 
-#: ../panel-plugin/battery.c:540
+#: ../panel-plugin/battery.c:360
 #, c-format
 msgid "%02d:%02d remaining"
 msgstr "quedan %02d:%02d"
 
-#: ../panel-plugin/battery.c:542
+#: ../panel-plugin/battery.c:362
 #, c-format
 msgid "%d%% remaining"
 msgstr "Quedan %d%%"
 
-#: ../panel-plugin/battery.c:544
+#: ../panel-plugin/battery.c:364
 #, c-format
 msgid "AC off-line"
 msgstr "Desconectado da rede eléctrica"
 
-#: ../panel-plugin/battery.c:624
+#: ../panel-plugin/battery.c:447
 msgid ""
 "WARNING: Your battery has reached critical status. You should plug in or "
 "shutdown your computer now to avoid possible data loss."
 msgstr "ADVERTENCIA: A batería chegou a un estado crítico. Debe enchufala ou 
apagar o ordenador agora para evitar unha posible perda de datos."
 
-#: ../panel-plugin/battery.c:642
+#: ../panel-plugin/battery.c:466
 msgid ""
 "WARNING: Your battery is running low. You should consider plugging in or "
 "shutting down your computer soon to avoid possible data loss."
 msgstr "ADVERTENCIA: A batería estase esgotando. Deberia considerar enchufala 
ou apagar o ordenador pronto para evitar unha posible perda de datos."
 
-#: ../panel-plugin/battery.c:678
+#: ../panel-plugin/battery.c:509
 msgid "Battery"
 msgstr "Batería"
 
-#: ../panel-plugin/battery.c:1173
+#: ../panel-plugin/battery.c:1002
 msgid "Select file"
 msgstr "Seleccione un ficheiro"
 
-#: ../panel-plugin/battery.c:1214
+#: ../panel-plugin/battery.c:1043
 msgid "Select command"
 msgstr "Seleccione unha orde"
 
-#: ../panel-plugin/battery.c:1258
+#: ../panel-plugin/battery.c:1096
 #, c-format
 msgid "Unable to open the following url: %s"
 msgstr "Non foi posible abrir o seguinte url: %s"
 
-#: ../panel-plugin/battery.c:1283 ../panel-plugin/battery.desktop.in.h:1
+#: ../panel-plugin/battery.c:1121 ../panel-plugin/battery.desktop.in.h:1
 msgid "Battery Monitor"
 msgstr "Monitor da Batería"
 
-#: ../panel-plugin/battery.c:1290
+#: ../panel-plugin/battery.c:1128
 msgid "Properties"
 msgstr "Propiedades"
 
-#: ../panel-plugin/battery.c:1316
+#: ../panel-plugin/battery.c:1151
 msgid "On AC:"
 msgstr "Conectado á rede:"
 
-#: ../panel-plugin/battery.c:1329
+#: ../panel-plugin/battery.c:1165
 msgid "Battery high:"
 msgstr "Batería alta:"
 
-#: ../panel-plugin/battery.c:1342
+#: ../panel-plugin/battery.c:1179
 msgid "Battery low:"
 msgstr "Batería baixa:"
 
-#: ../panel-plugin/battery.c:1355
+#: ../panel-plugin/battery.c:1193
 msgid "Battery critical:"
 msgstr "Batería en estado crítico:"
 
-#: ../panel-plugin/battery.c:1365
+#: ../panel-plugin/battery.c:1204
 msgid "Bar _colors"
 msgstr "_Cores da barra"
 
-#: ../panel-plugin/battery.c:1379
+#: ../panel-plugin/battery.c:1218
 msgid "Low percentage:"
 msgstr "Porcentaxe baixa:"
 
-#: ../panel-plugin/battery.c:1392
+#: ../panel-plugin/battery.c:1232
 msgid "Low battery action:"
 msgstr "Acción para cando a batería está baixa:"
 
-#: ../panel-plug

[Xfce4-commits] [panel-plugins/xfce4-mpc-plugin] 01/01: I18n: Update translation gl (100%).

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

transifex pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-mpc-plugin.

commit d283b05a4fe64bdad2aeb2907f535f84c422008b
Author: Daniel Muñiz Fontoira 
Date:   Thu Jan 31 18:34:09 2019 +0100

I18n: Update translation gl (100%).

24 translated messages.

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

diff --git a/po/gl.po b/po/gl.po
index aceebdf..bcd7b32 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Daniel Muñiz Fontoira , 2018
+# Daniel Muñiz Fontoira , 2018-2019
 # Leandro Regueiro , 2008-2009
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-11-24 12:31+0100\n"
-"PO-Revision-Date: 2018-08-04 08:12+\n"
+"POT-Creation-Date: 2018-12-09 00:31+0100\n"
+"PO-Revision-Date: 2019-01-31 16:32+\n"
 "Last-Translator: Daniel Muñiz Fontoira \n"
 "Language-Team: Galician 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/gl/)\n"
 "MIME-Version: 1.0\n"
@@ -19,98 +19,98 @@ msgstr ""
 "Language: gl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:118
-#: ../panel-plugin/xfce4-mpc-plugin.c:194
-#: ../panel-plugin/xfce4-mpc-plugin.c:762
+#: ../panel-plugin/xfce4-mpc-plugin.c:125
+#: ../panel-plugin/xfce4-mpc-plugin.c:201
+#: ../panel-plugin/xfce4-mpc-plugin.c:792
 msgid "Launch"
 msgstr "Iniciar"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:252
+#: ../panel-plugin/xfce4-mpc-plugin.c:259
 msgid "Mpd Client Plugin"
 msgstr "Engadido de cliente de Mpd"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:258
+#: ../panel-plugin/xfce4-mpc-plugin.c:265
 msgid "Properties"
 msgstr "Propiedades"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:273
+#: ../panel-plugin/xfce4-mpc-plugin.c:281
 msgid "Host : "
 msgstr "Máquina: "
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:274
+#: ../panel-plugin/xfce4-mpc-plugin.c:291
 msgid "Port : "
 msgstr "Porto: "
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:275
+#: ../panel-plugin/xfce4-mpc-plugin.c:301
 msgid "Password : "
 msgstr "Contrasinal: "
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:276
+#: ../panel-plugin/xfce4-mpc-plugin.c:311
 msgid "MPD Client : "
 msgstr "Cliente de MPD: "
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:277
+#: ../panel-plugin/xfce4-mpc-plugin.c:320
 msgid "Tooltip Format : "
 msgstr "Formato da notificación: "
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:278
+#: ../panel-plugin/xfce4-mpc-plugin.c:329
 msgid "Playlist Format : "
 msgstr "Formato da lista de reprodución: "
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:279
+#: ../panel-plugin/xfce4-mpc-plugin.c:338
 msgid "Show _frame"
 msgstr "Mostrar o _marco"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:319
+#: ../panel-plugin/xfce4-mpc-plugin.c:350
 msgid "Hostname or IP address"
 msgstr "Nome de máquina ou enderezo IP"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:320
+#: ../panel-plugin/xfce4-mpc-plugin.c:351
 msgid "Graphical MPD Client to launch in plugin context menu"
 msgstr "Cliente gráfico de MPD para iniciar no menú contextual de engadidos"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:321
+#: ../panel-plugin/xfce4-mpc-plugin.c:352
 msgid "Variables : %artist%, %album%, %file%, %track% and %title%"
 msgstr "Variables : %artist%, %album%, %file%, %track% e %title%"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:322
+#: ../panel-plugin/xfce4-mpc-plugin.c:353
 msgid ""
 "Variables : %vol%, %status%, %newline%, %artist%, %album%, %file%, %track% "
 "and %title%"
 msgstr "Variables : %vol%, %status%, %newline%, %artist%, %album%, %file%, 
%track% e %title%"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:444
-#: ../panel-plugin/xfce4-mpc-plugin.c:675
+#: ../panel-plugin/xfce4-mpc-plugin.c:477
+#: ../panel-plugin/xfce4-mpc-plugin.c:708
 msgid " not connected ?"
 msgstr " non conectado?"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:529
+#: ../panel-plugin/xfce4-mpc-plugin.c:562
 msgid "Mpd playlist"
 msgstr "Lista de reprodución de Mpd"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:758
+#: ../panel-plugin/xfce4-mpc-plugin.c:788
 msgid "Random"
 msgstr "Aleatorio"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:760
+#: ../panel-plugin/xfce4-mpc-plugin.c:790
 msgid "Repeat"
 msgstr "Repetir"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:765
+#: ../panel-plugin/xfce4-mpc-plugin.c:795
 msgid "Commands"
 msgstr "Ordes"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:769
+#: ../panel-plugin/xfce4-mpc-plugin.c:799
 msgid "Outputs"
 msgstr "Saídas"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:789
+#: ../panel-plugin/xfce4-mpc-plugin.c:819
 msgid "A simple panel-plugin client for Music Player Daemon"
 msgstr "Un sinxelo 

[Xfce4-commits] [apps/xfce4-screensaver] 01/01: I18n: Update translation pt (83%).

2019-01-31 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 eab29de1799be08579ec954278b7fff88034c47e
Author: Rui 
Date:   Thu Jan 31 18:33:00 2019 +0100

I18n: Update translation pt (83%).

125 translated messages, 25 untranslated messages.

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

diff --git a/po/pt.po b/po/pt.po
index 6d0e368..e1431cd 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -8,6 +8,7 @@
 # Xfce Bot , 2018
 # José Vieira , 2018
 # Nuno Miguel , 2019
+# Rui , 2019
 # 
 #, fuzzy
 msgid ""
@@ -16,7 +17,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-11-20 06:31+0100\n"
 "PO-Revision-Date: 2018-10-16 16:27+\n"
-"Last-Translator: Nuno Miguel , 2019\n"
+"Last-Translator: Rui , 2019\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"
@@ -134,7 +135,7 @@ msgstr ""
 
 #: ../savers/xfce-popsquares.desktop.in.in.h:1
 msgid "Pop art squares"
-msgstr ""
+msgstr "Quadrados Arte pop"
 
 #: ../savers/xfce-popsquares.desktop.in.in.h:2
 msgid "A pop-art-ish grid of pulsing colors."
@@ -369,7 +370,7 @@ msgstr "A proteção de ecrã não está ativa.\n"
 
 #: ../src/xfce4-screensaver-dialog.c:63
 msgid "Show debugging output"
-msgstr ""
+msgstr "Mostrar saída de debugging"
 
 #: ../src/xfce4-screensaver-dialog.c:67
 msgid "Show the logout button"
@@ -377,7 +378,7 @@ msgstr "Mostrar o botão de sair"
 
 #: ../src/xfce4-screensaver-dialog.c:69
 msgid "Command to invoke from the logout button"
-msgstr ""
+msgstr "Comando a invocar do botão de sair"
 
 #: ../src/xfce4-screensaver-dialog.c:71
 msgid "Show the switch user button"
@@ -389,7 +390,7 @@ msgstr "Messagem a mostrar na caixa de diálogo"
 
 #: ../src/xfce4-screensaver-dialog.c:73 ../src/xfce4-screensaver-dialog.c:75
 msgid "MESSAGE"
-msgstr ""
+msgstr "MENSAGEM"
 
 #: ../src/xfce4-screensaver-dialog.c:75
 msgid "Not used"
@@ -526,7 +527,7 @@ msgstr "Definição bloqueada pelo administrador."
 
 #: ../src/xfce4-screensaver-preferences.c:1868
 msgid "Could not load the main interface"
-msgstr ""
+msgstr "Não foi possível carregar a interface principal"
 
 #: ../src/xfce4-screensaver-preferences.c:1870
 msgid "Please make sure that the screensaver is properly installed"
@@ -611,7 +612,7 @@ msgstr "Bloquear ecrã com Protecção de ecrã"
 
 #: ../src/xfce4-screensaver-preferences.ui.h:21
 msgid "Lock the screen after the screensaver is active for:"
-msgstr ""
+msgstr "Bloquear o ecrã após a proteção de ecrã estiver ativa por:"
 
 #: ../src/xfce4-screensaver-preferences.ui.h:22
 msgid "On Screen Keyboard"
@@ -635,7 +636,7 @@ msgstr "Comando de saída:"
 
 #: ../src/xfce4-screensaver-preferences.ui.h:27
 msgid "Enable logout after:"
-msgstr ""
+msgstr "Ativar sair após:"
 
 #: ../src/xfce4-screensaver-preferences.ui.h:28
 msgid "User Switching"

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


[Xfce4-commits] [apps/xfce4-notifyd] branch master updated (bac0ff2 -> 3393784)

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

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

  from  bac0ff2   I18n: Update translation es (97%).
   new  3393784   I18n: Update translation gl (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/gl.po | 58 ++
 1 file changed, 42 insertions(+), 16 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] 01/01: I18n: Update translation gl (100%).

2019-01-31 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 77011a53cda3f740e6f8ff5a6cd3533c57f52098
Author: Daniel Muñiz Fontoira 
Date:   Thu Jan 31 18:32:12 2019 +0100

I18n: Update translation gl (100%).

117 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/gl.po | 133 +--
 1 file changed, 79 insertions(+), 54 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index 66d2600..f3897a6 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -5,16 +5,16 @@
 # 
 # Translators:
 # Xosé, 2018
-# Daniel Muñiz Fontoira , 2018
+# Daniel Muñiz Fontoira , 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-02 07:56-0400\n"
+"POT-Creation-Date: 2019-01-27 21:24-0500\n"
 "PO-Revision-Date: 2018-06-28 22:08+\n"
-"Last-Translator: Daniel Muñiz Fontoira , 2018\n"
+"Last-Translator: Daniel Muñiz Fontoira , 2019\n"
 "Language-Team: Galician (https://www.transifex.com/xfce/teams/16840/gl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,22 +22,22 @@ msgstr ""
 "Language: gl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28
-#: ../catfish/CatfishWindow.py:665
+#: ../org.xfce.Catfish.desktop.in.h:1 ../data/ui/CatfishWindow.ui.h:28
+#: ../catfish/CatfishWindow.py:666
 msgid "Catfish File Search"
 msgstr "Busca de ficheiros Catfish"
 
-#: ../catfish.desktop.in.h:2
+#: ../org.xfce.Catfish.desktop.in.h:2
 msgid "File search"
 msgstr "Busca de ficheiros"
 
-#: ../catfish.desktop.in.h:3
+#: ../org.xfce.Catfish.desktop.in.h:3
 msgid "Search the file system"
 msgstr "Buscar en todo o sistema"
 
 #. TRANSLATORS: Search terms to find this application. Do NOT translate or
 #. localize the semicolons! The list MUST also end with a semicolon!
-#: ../catfish.desktop.in.h:5
+#: ../org.xfce.Catfish.desktop.in.h:5
 msgid "files;find;locate;lookup;search;"
 msgstr "ficheiros;atopar;localizar;consultar;buscar;"
 
@@ -145,7 +145,7 @@ msgstr "A base de datos de buscas ten máis de 7 días. 
Actualizar agora?"
 msgid "File Type"
 msgstr "Tipo de ficheiro"
 
-#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1132
+#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1133
 msgid "Modified"
 msgstr "Modificado"
 
@@ -285,40 +285,40 @@ msgstr ""
 msgid "%s (invalid encoding)"
 msgstr "%s (codificación incorrecta)"
 
-#: ../catfish/CatfishWindow.py:237
+#: ../catfish/CatfishWindow.py:238
 msgid "Unknown"
 msgstr "Descoñecido"
 
-#: ../catfish/CatfishWindow.py:241
+#: ../catfish/CatfishWindow.py:242
 msgid "Never"
 msgstr "Nunca"
 
-#: ../catfish/CatfishWindow.py:633
+#: ../catfish/CatfishWindow.py:634
 msgid "An error occurred while updating the database."
 msgstr "Produciuse un erro ao actualizar a base de datos"
 
-#: ../catfish/CatfishWindow.py:635
+#: ../catfish/CatfishWindow.py:636
 msgid "Authentication failed."
 msgstr "Fallou a autenticació"
 
-#: ../catfish/CatfishWindow.py:641
+#: ../catfish/CatfishWindow.py:642
 msgid "Authentication cancelled."
 msgstr "Cancelouse a autenticación."
 
-#: ../catfish/CatfishWindow.py:647
+#: ../catfish/CatfishWindow.py:648
 msgid "Search database updated successfully."
 msgstr "A base de datos de buscas foi actualizada correctamente."
 
 #. Set the dialog status to running.
-#: ../catfish/CatfishWindow.py:722
+#: ../catfish/CatfishWindow.py:723
 msgid "Updating..."
 msgstr "A actualizar..."
 
-#: ../catfish/CatfishWindow.py:756
+#: ../catfish/CatfishWindow.py:757
 msgid "Stop Search"
 msgstr "Deter a busca"
 
-#: ../catfish/CatfishWindow.py:757
+#: ../catfish/CatfishWindow.py:758
 msgid ""
 "Search is in progress...\n"
 "Press the cancel button or the Escape key to stop."
@@ -326,31 +326,31 @@ msgstr ""
 "A busca está en progreso...\n"
 "Prema o botón de cancelar ou a tecla Escape para detela."
 
-#: ../catfish/CatfishWindow.py:766
+#: ../catfish/CatfishWindow.py:767
 msgid "Begin Search"
 msgstr "Iniciar a busca"
 
-#: ../catfish/CatfishWindow.py:958
+#: ../catfish/CatfishWindow.py:959
 #, python-format
 msgid "\"%s\" could not be opened."
 msgstr "Non foi posíbel abrir «%s»."
 
-#: ../catfish/CatfishWindow.py:1004
+#: ../catfish/CatfishWindow.py:1005
 #, python-format
 msgid "\"%s\" could not be saved."
 msgstr "Non foi posíbel gardar «%s»."
 
-#: ../catfish/CatfishWindow.py:1021
+#: ../catfish/CatfishWindow.py:1022
 #, python-format
 msgid "\"%s\" could not be deleted."
 msgstr "Non foi posíbel eliminar «%s»."
 
-#: ../catfish/CatfishWindow.py:1061
+#: ../catfish/CatfishWindow.py:1062
 #, python-format
 msgid "Save \"%s\" as…"
 msgstr "Gardar «%s» como..."
 
-#: ../catfish/CatfishWindow.py:1096

[Xfce4-commits] [apps/catfish] branch master updated (f0a7f74 -> 77011a5)

2019-01-31 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  f0a7f74   I18n: Update translation da (100%).
   new  77011a5   I18n: Update translation gl (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/gl.po | 133 +--
 1 file changed, 79 insertions(+), 54 deletions(-)

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


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

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

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

commit 9d183c5d8f929b3941acea58aa062eda6c78f5dd
Author: Daniel Muñiz Fontoira 
Date:   Thu Jan 31 18:33:25 2019 +0100

I18n: Update translation gl (100%).

394 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/gl.po | 207 ---
 1 file changed, 104 insertions(+), 103 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index 507d9ce..34310ad 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,15 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Daniel Muñiz Fontoira , 2018
+# Daniel Muñiz Fontoira , 2018-2019
 # nel rues , 2017
 # Leandro Regueiro , 2006,2008-2010
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-06-19 00:31+0200\n"
-"PO-Revision-Date: 2018-10-11 18:35+\n"
+"POT-Creation-Date: 2018-11-26 18:31+0100\n"
+"PO-Revision-Date: 2019-01-31 16:06+\n"
 "Last-Translator: Daniel Muñiz Fontoira \n"
 "Language-Team: Galician 
(http://www.transifex.com/xfce/xfce-apps/language/gl/)\n"
 "MIME-Version: 1.0\n"
@@ -176,12 +176,12 @@ msgstr "Comunique os erros a <%s>."
 msgid "Unable to register terminal service: %s\n"
 msgstr "Non se puido rexistrar o servizo de terminal: %s\n"
 
-#: ../terminal/terminal-app.c:883
+#: ../terminal/terminal-app.c:901
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "A cadea de xeometría \"%s\" é incorrecta\n"
 
-#: ../terminal/terminal-app.c:962
+#: ../terminal/terminal-app.c:980
 #, c-format
 msgid "Failed to connect to session manager: %s\n"
 msgstr "Non se puido conectar co xestor de sesións: %s\n"
@@ -427,7 +427,7 @@ msgid "Terminal"
 msgstr "Terminal"
 
 #: ../terminal/terminal-screen.c:443 ../terminal/terminal-screen.c:817
-#: ../terminal/terminal-screen.c:2155
+#: ../terminal/terminal-screen.c:2161
 msgid "Untitled"
 msgstr "Sen nome"
 
@@ -454,20 +454,20 @@ msgstr "O proceso fillo foi interrompido polo sinal %d."
 msgid "The child process was aborted."
 msgstr "O proceso fillo foi interrompido."
 
-#: ../terminal/terminal-screen.c:1383 ../terminal/terminal-window.c:861
+#: ../terminal/terminal-screen.c:1383 ../terminal/terminal-window.c:890
 msgid "Do _not ask me again"
 msgstr "_Non preguntar de novo"
 
-#: ../terminal/terminal-screen.c:1745 ../terminal/terminal-screen.c:1822
-#: ../terminal/terminal-screen.c:1859
+#: ../terminal/terminal-screen.c:1745 ../terminal/terminal-screen.c:1829
+#: ../terminal/terminal-screen.c:1866
 msgid "Failed to execute child"
 msgstr "Produciuse un erro ao executar o proceso fillo"
 
-#: ../terminal/terminal-screen.c:2500
+#: ../terminal/terminal-screen.c:2506
 msgid "Close this tab"
 msgstr "Pechar esta lapela"
 
-#: ../terminal/terminal-screen.c:2553
+#: ../terminal/terminal-screen.c:2559
 #, c-format
 msgid "Failed to set encoding %s\n"
 msgstr "Non se puido estabelecer a codificación %s\n"
@@ -536,20 +536,20 @@ msgstr "Copiar o enderezo da ligazón"
 msgid "Open Link"
 msgstr "Abrir a ligazón"
 
-#: ../terminal/terminal-widget.c:486
+#: ../terminal/terminal-widget.c:484
 #, c-format
 msgid ""
 "Unable to drop selection of type text/plain to terminal: Wrong format (%d) "
 "or length (%d)\n"
 msgstr "Non se puido arrastrar a selección de tipo texto/plano á terminal: 
Formato incorrecto (%d) ou lonxitude incorrecta (%d)\n"
 
-#: ../terminal/terminal-widget.c:502
+#: ../terminal/terminal-widget.c:500
 #, c-format
 msgid ""
 "Unable to drop Mozilla URL on terminal: Wrong format (%d) or length (%d)\n"
 msgstr "Non se puido arrastrar o URL de Mozilla á terminal: Formato incorrecto 
(%d) ou lonxitude incorrecta (%d)\n"
 
-#: ../terminal/terminal-widget.c:528
+#: ../terminal/terminal-widget.c:527
 #, c-format
 msgid "Unable to drop URI list on terminal: Wrong format (%d) or length (%d)\n"
 msgstr "Non se puido arrastrar a lista de URIs á terminal: Formato incorrecto 
(%d) ou lonxitude incorrecta (%d)\n"
@@ -577,361 +577,361 @@ msgstr "Terminal despregábel"
 msgid "Toggle Drop-down Terminal"
 msgstr "Alternar Terminal despregábel"
 
-#: ../terminal/terminal-window.c:318
+#: ../terminal/terminal-window.c:330
 msgid "_File"
 msgstr "_Ficheiro"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:331
 msgid "Open _Tab"
 msgstr "Abrir unha _lapela"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:331
 msgid "Open a new terminal tab"
 msgstr "Abrir unha nova lapela de terminal"
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:332
 msgid "Open T_erminal"
 msgstr "Abrir t_erminal"
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:332
 msgid "Open a new ter

[Xfce4-commits] [apps/xfce4-screenshooter] branch master updated (089c8df -> f748e04)

2019-01-31 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-screenshooter.

  from  089c8df   I18n: Update translation ms (100%).
   new  f748e04   I18n: Update translation gl (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/gl.po | 153 ---
 1 file changed, 57 insertions(+), 96 deletions(-)

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


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

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

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

commit 339378447fbd0cd1f43fbe44858f11d475c23c54
Author: Daniel Muñiz Fontoira 
Date:   Thu Jan 31 18:32:51 2019 +0100

I18n: Update translation gl (100%).

79 translated messages.

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

diff --git a/po/gl.po b/po/gl.po
index 2881d81..15534c8 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,15 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Daniel Muñiz Fontoira , 2018
+# Daniel Muñiz Fontoira , 2018-2019
 # Leandro Regueiro , 2009
 # Xosé, 2018
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-18 00:31+0100\n"
-"PO-Revision-Date: 2018-11-14 15:16+\n"
+"POT-Creation-Date: 2018-11-21 00:31+0100\n"
+"PO-Revision-Date: 2019-01-31 16:13+\n"
 "Last-Translator: Daniel Muñiz Fontoira \n"
 "Language-Team: Galician 
(http://www.transifex.com/xfce/xfce-apps/language/gl/)\n"
 "MIME-Version: 1.0\n"
@@ -32,7 +32,7 @@ msgstr "Limpar o rexistro de notificacións"
 msgid "Cancel"
 msgstr "Cancelar"
 
-#: ../common/xfce-notify-log.c:351 ../xfce4-notifyd-config/main.c:953
+#: ../common/xfce-notify-log.c:351 ../xfce4-notifyd-config/main.c:954
 msgid "Clear"
 msgstr "Limpar"
 
@@ -131,59 +131,85 @@ msgstr "Botón"
 msgid "Notification preview failed"
 msgstr "Produciuse un erro ao previsualizar a notificación"
 
+#: ../xfce4-notifyd-config/main.c:505
+#, c-format
+msgid ""
+"Currently only urgent notifications are shown.\n"
+"Notification logging is %s."
+msgstr "Actualmente só se amosan as notificacións urxentes.\nO rexistro 
de notificacións é %s"
+
+#: ../xfce4-notifyd-config/main.c:512
+msgid "enabled"
+msgstr "activado"
+
+#: ../xfce4-notifyd-config/main.c:512
+msgid "disabled"
+msgstr "desactivado"
+
+#: ../xfce4-notifyd-config/main.c:589
+msgid "Yesterday and before"
+msgstr "Onte e antes"
+
 #: ../xfce4-notifyd-config/main.c:807
 msgid "Settings daemon is unavailable"
 msgstr "O servizo de configuración non está dispoñíbel"
 
-#: ../xfce4-notifyd-config/main.c:934
+#: ../xfce4-notifyd-config/main.c:893
+msgid ""
+"Currently there are no known applications.\n"
+"As soon as an application sends a notification\n"
+"it will appear in this list."
+msgstr "Actualmente non hai aplicativos coñecidos.\n Unha 
vez que un aplicativo envíe unha notificación\n aparecerá nesta lista."
+
+#: ../xfce4-notifyd-config/main.c:935
 msgid ""
 "Empty log\n"
 "No notifications have been logged yet."
 msgstr "Rexistro baleiro\nAínda non se rexistrou ningunha 
notificación"
 
-#: ../xfce4-notifyd-config/main.c:941
+#: ../xfce4-notifyd-config/main.c:942
 msgid "Refresh"
 msgstr "Actualizar"
 
-#: ../xfce4-notifyd-config/main.c:942
+#: ../xfce4-notifyd-config/main.c:943
 msgid "Refresh the notification log"
 msgstr "Actualizar o rexistro de notificacións"
 
-#: ../xfce4-notifyd-config/main.c:947
+#: ../xfce4-notifyd-config/main.c:948
 msgid "Open"
 msgstr "Abrir"
 
-#: ../xfce4-notifyd-config/main.c:948
+#: ../xfce4-notifyd-config/main.c:949
 msgid "Open the notification log in an external editor"
 msgstr "Abrir o rexistro de notificacións nun editor externo"
 
-#: ../xfce4-notifyd-config/main.c:954
+#: ../xfce4-notifyd-config/main.c:955
 msgid "Clear the notification log"
 msgstr "Limpar o rexistro de notificacións"
 
-#: ../xfce4-notifyd-config/main.c:976
+#: ../xfce4-notifyd-config/main.c:977
 msgid "Display version information"
 msgstr "Mostrar a información da versión"
 
-#: ../xfce4-notifyd-config/main.c:977
+#: ../xfce4-notifyd-config/main.c:978
 msgid "Settings manager socket"
 msgstr "Socket do xestor de configuración"
 
-#: ../xfce4-notifyd-config/main.c:977
+#: ../xfce4-notifyd-config/main.c:978
 msgid "SOCKET_ID"
 msgstr "ID_SOCKET"
 
-#: ../xfce4-notifyd-config/main.c:987
+#: ../xfce4-notifyd-config/main.c:988
 #, c-format
 msgid "Type '%s --help' for usage."
 msgstr "Escriba '%s --help' para ver o modo de uso."
 
-#: ../xfce4-notifyd-config/main.c:1002
+#: ../xfce4-notifyd-config/main.c:1003
 #, c-format
 msgid "Released under the terms of the GNU General Public License, version 2\n"
 msgstr "Publicado baixo os termos da Licenza Pública Xeral de GNU, versión 2\n"
 
-#: ../xfce4-notifyd-config/main.c:1003
+#: ../xfce4-notifyd-config/main.c:1004
 #, c-format
 msgid "Please report bugs to %s.\n"
 msgstr "Por favor, comuníquelle os erros a %s.\n"

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

[Xfce4-commits] [apps/xfce4-terminal] branch master updated (bcb4a38 -> 9d183c5)

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

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

  from  bcb4a38   I18n: Update translation es (99%).
   new  9d183c5   I18n: Update translation gl (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/gl.po | 207 ---
 1 file changed, 104 insertions(+), 103 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-screenshooter] 01/01: I18n: Update translation gl (100%).

2019-01-31 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-screenshooter.

commit f748e0486581123b744e3cee1e19ceb8901dc378
Author: Daniel Muñiz Fontoira 
Date:   Thu Jan 31 18:33:12 2019 +0100

I18n: Update translation gl (100%).

56 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/gl.po | 153 ---
 1 file changed, 57 insertions(+), 96 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index e2904a4..df5da42 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Daniel Muñiz Fontoira , 2018
+# Daniel Muñiz Fontoira , 2018-2019
 # Leandro Regueiro , 2008-2009
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-19 00:32+0200\n"
-"PO-Revision-Date: 2018-08-01 22:30+\n"
+"POT-Creation-Date: 2019-01-10 06:31+0100\n"
+"PO-Revision-Date: 2019-01-31 16:16+\n"
 "Last-Translator: Daniel Muñiz Fontoira \n"
 "Language-Team: Galician 
(http://www.transifex.com/xfce/xfce-apps/language/gl/)\n"
 "MIME-Version: 1.0\n"
@@ -19,64 +19,65 @@ msgstr ""
 "Language: gl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../lib/screenshooter-dialogs.c:458
+#: ../lib/screenshooter-dialogs.c:455
 #, c-format
 msgid "%.2fKb of %.2fKb"
 msgstr "%.2fKb de %.2fKb"
 
-#: ../lib/screenshooter-dialogs.c:544
+#: ../lib/screenshooter-dialogs.c:541
 msgid "Transfer"
 msgstr "Transferir"
 
-#: ../lib/screenshooter-dialogs.c:565
+#: ../lib/screenshooter-dialogs.c:562
 msgid ""
 "The screenshot is being "
 "transferred to:"
 msgstr "Vaise transferir a 
captura de pantalla a:"
 
-#: ../lib/screenshooter-dialogs.c:688 ../lib/screenshooter-dialogs.c:704
-#: ../lib/screenshooter-dialogs.c:927 ../lib/screenshooter-utils.c:64
-#: ../lib/screenshooter-utils.c:96
+#. Setup window
+#: ../lib/screenshooter-dialogs.c:661 ../lib/screenshooter-dialogs.c:677
+#: ../lib/screenshooter-dialogs.c:897 ../lib/screenshooter-utils.c:64
+#: ../lib/screenshooter-utils.c:96 ../lib/screenshooter-imgur-dialog.c:128
 #: ../src/xfce4-screenshooter.desktop.in.in.h:1
 #: ../panel-plugin/screenshooter.desktop.in.h:1
 msgid "Screenshot"
 msgstr "Captura de pantalla"
 
-#: ../lib/screenshooter-dialogs.c:699
+#: ../lib/screenshooter-dialogs.c:672
 msgid "Take a screenshot"
 msgstr "Facer unha captura de pantalla"
 
-#: ../lib/screenshooter-dialogs.c:714
+#: ../lib/screenshooter-dialogs.c:687
 msgid "Preferences"
 msgstr "Preferencias"
 
-#: ../lib/screenshooter-dialogs.c:751
+#: ../lib/screenshooter-dialogs.c:724
 msgid "Region to capture"
 msgstr "Zona a capturar"
 
-#: ../lib/screenshooter-dialogs.c:778
+#: ../lib/screenshooter-dialogs.c:751
 msgid "Entire screen"
 msgstr "Toda a pantalla"
 
-#: ../lib/screenshooter-dialogs.c:785 ../src/main.c:59
+#: ../lib/screenshooter-dialogs.c:758 ../src/main.c:59
 #: ../panel-plugin/screenshooter-plugin.c:330
 msgid "Take a screenshot of the entire screen"
 msgstr "Facer a captura de pantalla de toda a pantalla"
 
-#: ../lib/screenshooter-dialogs.c:793
+#: ../lib/screenshooter-dialogs.c:766
 msgid "Active window"
 msgstr "Xanela activa"
 
-#: ../lib/screenshooter-dialogs.c:800 ../src/main.c:96
+#: ../lib/screenshooter-dialogs.c:773 ../src/main.c:96
 #: ../panel-plugin/screenshooter-plugin.c:335
 msgid "Take a screenshot of the active window"
 msgstr "Facer unha captura de pantalla da xanela activa"
 
-#: ../lib/screenshooter-dialogs.c:808
+#: ../lib/screenshooter-dialogs.c:781
 msgid "Select a region"
 msgstr "Seleccionar unha zona"
 
-#: ../lib/screenshooter-dialogs.c:813 ../src/main.c:74
+#: ../lib/screenshooter-dialogs.c:786 ../src/main.c:74
 #: ../panel-plugin/screenshooter-plugin.c:340
 msgid ""
 "Select a region to be captured by clicking a point of the screen without "
@@ -84,188 +85,153 @@ msgid ""
 "region, and releasing the mouse button."
 msgstr "Seleccione unha zona para capturar premendo nun punto da pantalla sen 
soltar o botón do rato, arrastrando o rato á esquina oposta da zona, e soltando 
o botón do rato."
 
-#: ../lib/screenshooter-dialogs.c:823
+#: ../lib/screenshooter-dialogs.c:796
 msgid "Capture the mouse pointer"
 msgstr "Capturar o punteiro do rato"
 
-#: ../lib/screenshooter-dialogs.c:828
+#: ../lib/screenshooter-dialogs.c:801
 msgid "Display the mouse pointer on the screenshot"
 msgstr "Mostrar o punteiro do rato na captura de pantalla"
 
-#: ../lib/screenshooter-dialogs.c:844
+#: ../lib/screenshooter-dialogs.c:817
 msgid "Delay before 
capturing"
 msgstr "Demora antes da 
captura"
 
-#: ../lib/screenshooter-dialogs.c:873
+#: ../lib/screenshooter-dialogs.c:845
 msgid "Delay in seconds before the screenshot is taken"
 msgstr "Demora en

[Xfce4-commits] [apps/xfce4-screensaver] branch master updated (452f0f8 -> eab29de)

2019-01-31 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  452f0f8   I18n: Update translation es (62%).
   new  eab29de   I18n: Update translation pt (83%).

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 | 17 +
 1 file changed, 9 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/xfce4-panel] branch xfce-4.12 updated (b6a56ab -> 23050c3)

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

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

  from  b6a56ab   I18n: Update translation sr (100%).
   new  23050c3   I18n: Update translation gl (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/gl.po | 8 ++--
 1 file changed, 6 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-appfinder] 01/02: I18n: Update translation gl (100%).

2019-01-31 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-appfinder.

commit e0dfcf3723b9286e10e90f1d9c35805b5033fb34
Author: Daniel Muñiz Fontoira 
Date:   Thu Jan 31 18:31:22 2019 +0100

I18n: Update translation gl (100%).

81 translated messages.

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

diff --git a/po/gl.po b/po/gl.po
index 2f6d6f4..6bef0bd 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,16 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Daniel Muñiz Fontoira , 2018
+# Daniel Muñiz Fontoira , 2018-2019
 # Leandro Regueiro , 2006,2008-2009
 # Xosé, 2015,2018
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-appfinder\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-08-24 06:30+0200\n"
-"PO-Revision-Date: 2018-09-14 00:17+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2018-11-25 00:30+0100\n"
+"PO-Revision-Date: 2019-01-31 16:51+\n"
+"Last-Translator: Daniel Muñiz Fontoira \n"
 "Language-Team: Galician 
(http://www.transifex.com/xfce/xfce4-appfinder/language/gl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -49,35 +49,39 @@ msgstr "Categorías"
 msgid "Filename"
 msgstr "Nome de ficheiro"
 
-#: ../src/appfinder-model.c:2097
+#: ../src/appfinder-model.c:2101
 msgid "Application has no command"
 msgstr "O aplicativo non ten orde"
 
-#: ../src/appfinder-model.c:2517
+#: ../src/appfinder-model.c:2520
 msgid "Commands History"
 msgstr "Historial de ordes"
 
-#: ../src/appfinder-model.c:2541
+#: ../src/appfinder-model.c:2544
 msgid "Bookmarks"
 msgstr "Marcadores"
 
-#: ../src/appfinder-preferences.c:238
+#: ../src/appfinder-preferences.c:258
 msgid "C_lear"
 msgstr "_Limpar"
 
-#: ../src/appfinder-preferences.c:239
+#: ../src/appfinder-preferences.c:259
 msgid "This will permanently clear the custom command history."
 msgstr "Isto limpará permanentemente o historial de ordes personalizado."
 
-#: ../src/appfinder-preferences.c:240
+#: ../src/appfinder-preferences.c:260
 msgid "Are you sure you want to clear the command history?"
 msgstr "Confirma que desexa limpar o historial de ordes?"
 
-#: ../src/appfinder-preferences.c:350
+#: ../src/appfinder-preferences.c:369
+msgid "_Delete"
+msgstr "_Eliminar"
+
+#: ../src/appfinder-preferences.c:370
 msgid "The custom action will be deleted permanently."
 msgstr "A acción personalizada eliminarase permanentemente."
 
-#: ../src/appfinder-preferences.c:351
+#: ../src/appfinder-preferences.c:371
 #, c-format
 msgid "Are you sure you want to delete pattern \"%s\"?"
 msgstr "Confirma que desexa eliminar o patrón «%s»?"
@@ -92,68 +96,68 @@ msgstr "Buscador de aplicativos"
 msgid "Toggle view mode"
 msgstr "Cambiar de modo de visualización"
 
-#: ../src/appfinder-window.c:352
+#: ../src/appfinder-window.c:355
 msgid "_Preferences"
 msgstr "_Preferencias"
 
-#: ../src/appfinder-window.c:369
+#: ../src/appfinder-window.c:372
 msgid "Close"
 msgstr "Pechar"
 
-#: ../src/appfinder-window.c:379 ../src/appfinder-window.c:1072
+#: ../src/appfinder-window.c:382 ../src/appfinder-window.c:1075
 msgid "La_unch"
 msgstr "_Iniciar"
 
-#: ../src/appfinder-window.c:886
+#: ../src/appfinder-window.c:889
 msgid "Failed to launch desktop item editor"
 msgstr "Produciuse un erro ao iniciar o editor de elemento de escritorio"
 
-#: ../src/appfinder-window.c:912
+#: ../src/appfinder-window.c:915
 msgid ""
 "This will permanently remove the custom desktop file from your home "
 "directory."
 msgstr "Así vai retirar permanentemente o ficheiro de escritorio personalizado 
do seu directorio persoal."
 
-#: ../src/appfinder-window.c:913
+#: ../src/appfinder-window.c:916
 #, c-format
 msgid "Are you sure you want to revert \"%s\"?"
 msgstr "Confirma que desexa reverter «%s»?"
 
-#: ../src/appfinder-window.c:923
+#: ../src/appfinder-window.c:926
 msgid "Failed to remove desktop file"
 msgstr "Produciuse un erro ao retirar o ficheiro de escritorio"
 
 #. I18N: the first %s will be replace with users' applications directory, the
 #. * second with Hidden=true
-#: ../src/appfinder-window.c:956
+#: ../src/appfinder-window.c:959
 #, c-format
 msgid ""
 "To unhide the item you have to manually remove the desktop file from \"%s\" "
 "or open the file in the same directory and remove the line \"%s\"."
 msgstr "Para mostrar de novo o elemento ten que retirar manualmente o ficheiro 
do escritorio de «%s» ou abrir o ficheiro no mesmo directorio e retirar a liña 
«%s»."
 
-#: ../src/appfinder-window.c:961 ../src/appfinder-window.c:1109
+#: ../src/appfinder-window.c:964 ../src/appfinder-window.c:1112
 msgid "_Hide"
 msgstr "_Ocultar"
 
-#:

[Xfce4-commits] [xfce/xfce4-panel] branch master updated (da58ec8 -> 749345e)

2019-01-31 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  da58ec8   I18n: Update translation eu (100%).
   new  749345e   I18n: Update translation gl (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/gl.po | 531 +++
 1 file changed, 258 insertions(+), 273 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 gl (100%).

2019-01-31 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 749345e7135a5a2561ad3ea9fecb23f91e572c5c
Author: Daniel Muñiz Fontoira 
Date:   Thu Jan 31 18:31:32 2019 +0100

I18n: Update translation gl (100%).

412 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/gl.po | 531 +++
 1 file changed, 258 insertions(+), 273 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index c987b20..6d834d3 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Daniel Muñiz Fontoira , 2018
+# Daniel Muñiz Fontoira , 2018-2019
 # Leandro Regueiro , 2008-2010
 # Ricardo Domínguez Rouco , 2006
 # Xosé, 2015,2017-2018
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-10-18 06:31+0200\n"
-"PO-Revision-Date: 2018-10-18 10:57+\n"
+"POT-Creation-Date: 2018-12-03 22:34+0100\n"
+"PO-Revision-Date: 2019-01-31 16:48+\n"
 "Last-Translator: Daniel Muñiz Fontoira \n"
 "Language-Team: Galician 
(http://www.transifex.com/xfce/xfce4-panel/language/gl/)\n"
 "MIME-Version: 1.0\n"
@@ -32,8 +32,7 @@ msgid ""
 msgstr "Engadir un novo iniciador ao panel baseándose na información deste 
ficheiro desktop"
 
 #: ../panel-preferences.desktop.in.h:1
-#: ../panel/panel-preferences-dialog.glade.h:10 ../panel/panel-window.c:2667
-#: ../migrate/main.c:117
+#: ../panel/panel-preferences-dialog.glade.h:10 ../panel/panel-window.c:2692
 msgid "Panel"
 msgstr "Panel"
 
@@ -42,79 +41,77 @@ msgid "Customize the panel"
 msgstr "Personalizar o panel"
 
 #. I18N: %s is the name of the plugin
-#: ../libxfce4panel/xfce-panel-plugin.c:1050
-#: ../panel/panel-preferences-dialog.c:1174
+#: ../libxfce4panel/xfce-panel-plugin.c:1079
+#: ../panel/panel-preferences-dialog.c:1308
 #, c-format
 msgid "Are you sure that you want to remove \"%s\"?"
 msgstr "Confirma que desexa eliminar «%s»?"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1055
-#: ../panel/panel-preferences-dialog.c:1177
+#: ../libxfce4panel/xfce-panel-plugin.c:1084
+#: ../panel/panel-preferences-dialog.c:1311
 msgid "If you remove the item from the panel, it is permanently lost."
 msgstr "Se elimina o elemento do panel, perderase permanentemente."
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1056 ../panel/panel-dialogs.c:163
-#: ../panel/panel-preferences-dialog.c:1179
-#: ../plugins/applicationsmenu/applicationsmenu.c:538
-#: ../plugins/directorymenu/directorymenu.c:394
+#: ../libxfce4panel/xfce-panel-plugin.c:1085 ../panel/panel-dialogs.c:163
+#: ../panel/panel-preferences-dialog.c:1313
 msgid "Cancel"
 msgstr "Cancelar"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1057
-#: ../panel/panel-plugin-external.c:436
-#: ../panel/panel-preferences-dialog.c:897
-#: ../panel/panel-preferences-dialog.c:1180
-#: ../plugins/launcher/launcher-dialog.c:854
+#: ../libxfce4panel/xfce-panel-plugin.c:1086
+#: ../panel/panel-plugin-external.c:439
+#: ../panel/panel-preferences-dialog.c:956
+#: ../panel/panel-preferences-dialog.c:1314
+#: ../plugins/launcher/launcher-dialog.c:855
 msgid "Remove"
 msgstr "Retirar"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1198
+#: ../libxfce4panel/xfce-panel-plugin.c:1227
 msgid "_Properties"
 msgstr "_Propiedades"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1213 ../panel/panel-window.c:2755
+#: ../libxfce4panel/xfce-panel-plugin.c:1242 ../panel/panel-window.c:2780
 msgid "_About"
 msgstr "_Sobre"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1228
+#: ../libxfce4panel/xfce-panel-plugin.c:1257
 msgid "_Move"
 msgstr "_Mover"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1252
+#: ../libxfce4panel/xfce-panel-plugin.c:1281
 msgid "_Remove"
 msgstr "_Retirar"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1273
+#: ../libxfce4panel/xfce-panel-plugin.c:1302
 msgid "Pane_l"
 msgstr "Pane_l"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1282 ../panel/panel-window.c:2680
+#: ../libxfce4panel/xfce-panel-plugin.c:1311 ../panel/panel-window.c:2705
 msgid "Add _New Items..."
 msgstr "Engadir _novos elementos..."
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1297 ../panel/panel-window.c:2695
+#: ../libxfce4panel/xfce-panel-plugin.c:1326 ../panel/panel-window.c:2720
 msgid "Panel Pr_eferences..."
 msgstr "Pr_eferencias do panel..."
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1318 ../panel/panel-window.c:2727
+#: ../libxfce4panel/xfce-panel-plugin.c:1347 ../panel/panel-window.c:2752
 msgid "Log _Out"
 msgstr "Saír da _sesión"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1338
-#: ../panel/panel-preferences-dialog.glade.h:12 ../panel/panel-window.c:2746
+#: ../libxfce4panel/xfce-panel-plugin.c:1367 ../panel/panel-item-dialog.c:208
+#: ../

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

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

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

commit 23050c33f013d03bff691d696c45343469af30ff
Author: Daniel Muñiz Fontoira 
Date:   Thu Jan 31 18:31:45 2019 +0100

I18n: Update translation gl (100%).

396 translated messages.

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

diff --git a/po/gl.po b/po/gl.po
index 3acf34d..224c9b0 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR , YEAR.
 # 
+# Translators:
+# Xfce Bot , 2017
+# Daniel Muñiz Fontoira , 2018
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-10-10 00:31+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2017-09-09 15:44+\n"
 "Last-Translator: Daniel Muñiz Fontoira , 2018\n"
 "Language-Team: Galician (https://www.transifex.com/xfce/teams/16840/gl/)\n"
 "MIME-Version: 1.0\n"
@@ -590,7 +594,7 @@ msgstr "Opacidade"
 msgid ""
 "Enable compositing in the window manager for opacity settings in the panel."
 msgstr ""
-"Activar a composición no xestor de xanelas para as opcións de opacidade do "
+"Activar a composición no xestor de xanelas para as opcións de opacidade no "
 "panel."
 
 #: ../panel/panel-preferences-dialog.glade.h:49

-- 
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-appfinder] 02/02: I18n: Update translation sq (82%).

2019-01-31 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-appfinder.

commit 64a2311681b0cbff82840c603350db9b08b7f486
Author: Arianit Kukaj 
Date:   Thu Jan 31 18:31:22 2019 +0100

I18n: Update translation sq (82%).

67 translated messages, 14 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/sq.po | 439 ---
 1 file changed, 252 insertions(+), 187 deletions(-)

diff --git a/po/sq.po b/po/sq.po
index dc9dd2b..45d767c 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -1,306 +1,371 @@
-# Albanian translations for xfce4-appfinder package
-# Copyright (C) 2004-2005 Eduard Roccatello.
-# This file is distributed under the same license as the xfce4-appfinder 
package.
-# Besnik Bleta , 2008-2009.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Arianit Kukaj , 2019
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-appfinder 4.4.0\n"
+"Project-Id-Version: Xfce4-appfinder\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-09-21 20:43+0200\n"
-"PO-Revision-Date: 2009-09-25 16:58+0200\n"
-"Last-Translator: Besnik Bleta \n"
-"Language-Team: Albanian \n"
-"Language: sq\n"
+"POT-Creation-Date: 2018-11-25 00:30+0100\n"
+"PO-Revision-Date: 2019-01-31 13:51+\n"
+"Last-Translator: Arianit Kukaj \n"
+"Language-Team: Albanian 
(http://www.transifex.com/xfce/xfce4-appfinder/language/sq/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: sq\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. close all windows and quit
+#: ../src/appfinder-gdbus.c:84
+msgid "Forced to quit"
+msgstr "U anulua me forcë"
 
-#: ../src/appfinder-category-model.c:108
-#, fuzzy
+#: ../src/appfinder-category-model.c:147
 msgid "All Applications"
-msgstr "Gjetës Zbatimesh"
+msgstr "Të gjitha aplikacionet"
 
-#: ../src/appfinder-model.c:422
+#: ../src/appfinder-model.c:576
 msgid "Name"
-msgstr ""
+msgstr "Emër"
 
-#: ../src/appfinder-model.c:423
+#: ../src/appfinder-model.c:577
+msgid "Comment"
+msgstr "Komenti"
+
+#: ../src/appfinder-model.c:578
 msgid "Command"
-msgstr ""
+msgstr "Urdhër"
 
-#: ../src/appfinder-model.c:424
+#: ../src/appfinder-model.c:579
 msgid "Categories"
 msgstr "Kategori"
 
-#: ../src/appfinder-model.c:425
-#, fuzzy
+#: ../src/appfinder-model.c:580
 msgid "Filename"
-msgstr "Përgjegjës kartelash"
+msgstr "Emëri i skedës "
 
-#: ../src/appfinder-model.c:1317
-#, fuzzy
+#: ../src/appfinder-model.c:2101
 msgid "Application has no command"
-msgstr "Gjetës Zbatimesh"
+msgstr "Aplikacionit nuk i aplikohet ndonjë komandë"
 
-#: ../src/appfinder-model.c:1634
+#: ../src/appfinder-model.c:2520
 msgid "Commands History"
-msgstr ""
+msgstr "Historiku i komandave"
+
+#: ../src/appfinder-model.c:2544
+msgid "Bookmarks"
+msgstr "Fletëshenuesi"
 
-#: ../src/appfinder-preferences.c:175
+#: ../src/appfinder-preferences.c:258
 msgid "C_lear"
 msgstr ""
 
-#: ../src/appfinder-preferences.c:176
+#: ../src/appfinder-preferences.c:259
 msgid "This will permanently clear the custom command history."
-msgstr ""
+msgstr "Kjo do të pastrojë përgjithmonë historinë e komandës me porosi."
 
-#: ../src/appfinder-preferences.c:177
+#: ../src/appfinder-preferences.c:260
 msgid "Are you sure you want to clear the command history?"
-msgstr ""
+msgstr "A jeni të sigurtë që dëshironi të pastroni historinë e komandave?"
 
-#: ../src/appfinder-preferences.c:287
+#: ../src/appfinder-preferences.c:369
+msgid "_Delete"
+msgstr "_Fshije"
+
+#: ../src/appfinder-preferences.c:370
 msgid "The custom action will be deleted permanently."
-msgstr ""
+msgstr "Aksioni i parazgjedhur do të pësojë fshirje permanente."
 
-#: ../src/appfinder-preferences.c:288
+#: ../src/appfinder-preferences.c:371
 #, c-format
 msgid "Are you sure you want to delete pattern \"%s\"?"
-msgstr ""
+msgstr "A jeni i sigurtë që dëshironi të fshini strukturën \"1%s\"?"
 
-#: ../src/appfinder-window.c:183 ../src/main.c:344
-#: ../src/appfinder-preferences.glade.h:3
+#: ../src/appfinder-window.c:228 ../src/appfinder-preferences.glade.h:10
 #: ../data/xfce4-appfinder.desktop.in.h:1
+#: ../data/org.xfce.xfce4-appfinder.appdata.xml.in.h:1
 msgid "Application Finder"
 msgstr "Gjetës Zbatimesh"
 
-#: ../src/appfinder-window.c:224
+#: ../src/appfinder-window.c:276
 msgid "Toggle view mode"
-msgstr ""
+msgstr "Ndrysho modelin e pamjes"
 
-#: ../src/main.c:70
-msgid "Start in collapsed mode"
+#: ../src/appfinder-window.c:355
+msgid "_Preferences"
 msgstr ""
 
-#: ../src/main.c:71
-#, fuzzy
-msgid "Print version information and exit"
-msgstr "Të Dhëna versioni"
+#: ../src/appfinder-window.c:372
+msg

[Xfce4-commits] [xfce/thunar] branch xfce-4.14 updated (85fee40 -> b561337)

2019-01-31 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/thunar.

  from  85fee40   I18n: Update translation da (100%).
   new  f4b408e   I18n: Update translation gl (100%).
   new  251225e   I18n: Update translation pt (100%).
   new  b561337   I18n: Update translation sq (100%).

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


Summary of changes:
 po/gl.po | 205 +--
 po/pt.po | 200 +++--
 po/sq.po | 200 +++--
 3 files changed, 313 insertions(+), 292 deletions(-)

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


[Xfce4-commits] [xfce/thunar] 02/03: I18n: Update translation pt (100%).

2019-01-31 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/thunar.

commit 251225ed4369a52764184442c08a7451568aca1f
Author: Rui 
Date:   Thu Jan 31 18:31:06 2019 +0100

I18n: Update translation pt (100%).

763 translated messages.

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

diff --git a/po/pt.po b/po/pt.po
index 6c37a11..8dba5ed 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -7,15 +7,16 @@
 # Xfce Bot , 2018
 # José Vieira , 2018
 # Nuno Miguel , 2018
+# Rui , 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-27 06:31+0200\n"
+"POT-Creation-Date: 2019-01-28 00:30+0100\n"
 "PO-Revision-Date: 2018-08-19 09:02+\n"
-"Last-Translator: Nuno Miguel , 2018\n"
+"Last-Translator: Rui , 2019\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"
@@ -112,41 +113,46 @@ msgstr "Termina uma instância do Thunar em execução"
 msgid "Print version information and exit"
 msgstr "Mostra informação da versão e sai"
 
-#: ../thunar/thunar-application.c:291
+#: ../thunar/thunar-application.c:295
 #, c-format
 msgid "Acquired the session message bus '%s'\n"
 msgstr "Adquirido o bus de sessão de mensagens '%s'\n"
 
-#: ../thunar/thunar-application.c:301
+#: ../thunar/thunar-application.c:305
 #, c-format
 msgid "Acquired the name '%s' on the session message bus\n"
 msgstr "Foi adquirido o nome  '%s' no bus de sessão de mensagens\n"
 
-#: ../thunar/thunar-application.c:312
+#: ../thunar/thunar-application.c:316
 #, c-format
 msgid "Name '%s' lost on the message dbus, exiting."
 msgstr "O nome '%s' foi perdido na mensagem do dbus, a sair."
 
-#: ../thunar/thunar-application.c:469
+#: ../thunar/thunar-application.c:327
+#, c-format
+msgid "Name '%s' lost on the message dbus."
+msgstr "O nome '%s' foi perdido na mensagem do dbus."
+
+#: ../thunar/thunar-application.c:492
 msgid "The Thunar development team. All rights reserved."
 msgstr "A equipa de desenvolvimento do Thunar. Todos os direitos reservados."
 
-#: ../thunar/thunar-application.c:470
+#: ../thunar/thunar-application.c:493
 msgid "Written by Benedikt Meurer ."
 msgstr "Desenvolvido por Benedikt Meurer ."
 
-#: ../thunar/thunar-application.c:471
+#: ../thunar/thunar-application.c:494
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Por favor reporte os problemas em <%s>."
 
 #. display an error message to the user
-#: ../thunar/thunar-application.c:743
+#: ../thunar/thunar-application.c:766
 msgid "Failed to launch operation"
 msgstr "Ocorreu um erro ao iniciar a operação"
 
 #. tell the user that we were unable to launch the file specified
-#: ../thunar/thunar-application.c:1469 ../thunar/thunar-application.c:1601
+#: ../thunar/thunar-application.c:1519 ../thunar/thunar-application.c:1651
 #: ../thunar/thunar-launcher.c:1216 ../thunar/thunar-location-entry.c:356
 #: ../thunar/thunar-location-entry.c:384
 #: ../thunar/thunar-shortcuts-view.c:1680
@@ -155,65 +161,65 @@ msgstr "Ocorreu um erro ao iniciar a operação"
 msgid "Failed to open \"%s\""
 msgstr "Ocorreu um erro ao abrir \"%s\""
 
-#: ../thunar/thunar-application.c:1605
+#: ../thunar/thunar-application.c:1655
 #, c-format
 msgid "Failed to open \"%s\": %s"
 msgstr "Ocorreu um erro ao abrir \"%s\": %s"
 
 #. display an error message
-#: ../thunar/thunar-application.c:1660
+#: ../thunar/thunar-application.c:1710
 #: ../thunar/thunar-properties-dialog.c:731
-#: ../thunar/thunar-standard-view.c:2834 ../thunar/thunar-tree-view.c:1959
+#: ../thunar/thunar-standard-view.c:2834 ../thunar/thunar-tree-view.c:1897
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "Ocorreu um erro ao renomear \"%s\""
 
-#: ../thunar/thunar-application.c:1762
+#: ../thunar/thunar-application.c:1812
 #: ../thunar/thunar-location-buttons.c:1347
-#: ../thunar/thunar-standard-view.c:2359 ../thunar/thunar-tree-view.c:1821
+#: ../thunar/thunar-standard-view.c:2359 ../thunar/thunar-tree-view.c:1759
 msgid "New Folder"
 msgstr "Nova pasta"
 
-#: ../thunar/thunar-application.c:1763
+#: ../thunar/thunar-application.c:1813
 #: ../thunar/thunar-location-buttons.c:1348
-#: ../thunar/thunar-standard-view.c:2360 ../thunar/thunar-tree-view.c:1822
+#: ../thunar/thunar-standard-view.c:2360 ../thunar/thunar-tree-view.c:1760
 msgid "Create New Folder"
 msgstr "Criar nova pasta"
 
-#: ../thunar/thunar-application.c:1767
+#: ../thunar/thunar-application.c:1817
 msgid "New File"
 msgstr "Novo ficheiro"
 
-#: ../thunar/thunar-application.c:1768
+#: ../thunar/thunar-application.c:1818
 msgid "Create New Fil

[Xfce4-commits] [xfce/xfce4-appfinder] branch master updated (85bf0bf -> 64a2311)

2019-01-31 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-appfinder.

  from  85bf0bf   I18n: Update translation es (100%).
   new  e0dfcf3   I18n: Update translation gl (100%).
   new  64a2311   I18n: Update translation sq (82%).

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


Summary of changes:
 po/gl.po |  90 +++--
 po/sq.po | 439 ---
 2 files changed, 303 insertions(+), 226 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] 03/03: I18n: Update translation sq (100%).

2019-01-31 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/thunar.

commit b561337576d39477928377f371502d6388d2337f
Author: Arianit Kukaj 
Date:   Thu Jan 31 18:31:06 2019 +0100

I18n: Update translation sq (100%).

763 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/sq.po | 200 ---
 1 file changed, 103 insertions(+), 97 deletions(-)

diff --git a/po/sq.po b/po/sq.po
index a7d128d..b459431 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -6,15 +6,16 @@
 # Translators:
 # Xfce Bot , 2018
 # Besnik , 2018
+# Arianit Kukaj , 2019
 # 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-27 06:31+0200\n"
+"POT-Creation-Date: 2019-01-28 00:30+0100\n"
 "PO-Revision-Date: 2018-08-19 09:02+\n"
-"Last-Translator: Besnik , 2018\n"
+"Last-Translator: Arianit Kukaj , 2019\n"
 "Language-Team: Albanian (https://www.transifex.com/xfce/teams/16840/sq/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -111,41 +112,46 @@ msgstr "Dil nga një instancë e Thunar-it që është duke 
xhiruar"
 msgid "Print version information and exit"
 msgstr "Shtyp të dhëna versioni dhe dil"
 
-#: ../thunar/thunar-application.c:291
+#: ../thunar/thunar-application.c:295
 #, c-format
 msgid "Acquired the session message bus '%s'\n"
 msgstr "U mor busi i mesazheve të sistemit '%s'\n"
 
-#: ../thunar/thunar-application.c:301
+#: ../thunar/thunar-application.c:305
 #, c-format
 msgid "Acquired the name '%s' on the session message bus\n"
 msgstr "U mor emri '%s' te dbus mesazhesh sistemi\n"
 
-#: ../thunar/thunar-application.c:312
+#: ../thunar/thunar-application.c:316
 #, c-format
 msgid "Name '%s' lost on the message dbus, exiting."
 msgstr "Emri '%s' humbi në dbus mesazhi, po dilet."
 
-#: ../thunar/thunar-application.c:469
+#: ../thunar/thunar-application.c:327
+#, c-format
+msgid "Name '%s' lost on the message dbus."
+msgstr "Emertimi '1%s' humbi në lajmërimin nga dbus."
+
+#: ../thunar/thunar-application.c:492
 msgid "The Thunar development team. All rights reserved."
 msgstr "Ekipi i zhvillimit të Thunar-it. Tërë të drejtat të rezervuara."
 
-#: ../thunar/thunar-application.c:470
+#: ../thunar/thunar-application.c:493
 msgid "Written by Benedikt Meurer ."
 msgstr "Shkruar nga Benedikt Meurer ."
 
-#: ../thunar/thunar-application.c:471
+#: ../thunar/thunar-application.c:494
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Ju lutemi, njoftoni të meta te <%s>."
 
 #. display an error message to the user
-#: ../thunar/thunar-application.c:743
+#: ../thunar/thunar-application.c:766
 msgid "Failed to launch operation"
 msgstr "Dështoi në nisjen e operacionit"
 
 #. tell the user that we were unable to launch the file specified
-#: ../thunar/thunar-application.c:1469 ../thunar/thunar-application.c:1601
+#: ../thunar/thunar-application.c:1519 ../thunar/thunar-application.c:1651
 #: ../thunar/thunar-launcher.c:1216 ../thunar/thunar-location-entry.c:356
 #: ../thunar/thunar-location-entry.c:384
 #: ../thunar/thunar-shortcuts-view.c:1680
@@ -154,65 +160,65 @@ msgstr "Dështoi në nisjen e operacionit"
 msgid "Failed to open \"%s\""
 msgstr "Dështoi në hapjen e \"%s\""
 
-#: ../thunar/thunar-application.c:1605
+#: ../thunar/thunar-application.c:1655
 #, c-format
 msgid "Failed to open \"%s\": %s"
 msgstr "Dështoi në hapjen e \"%s\": %s"
 
 #. display an error message
-#: ../thunar/thunar-application.c:1660
+#: ../thunar/thunar-application.c:1710
 #: ../thunar/thunar-properties-dialog.c:731
-#: ../thunar/thunar-standard-view.c:2834 ../thunar/thunar-tree-view.c:1959
+#: ../thunar/thunar-standard-view.c:2834 ../thunar/thunar-tree-view.c:1897
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "Dështoi në riemërtimin e \"%s\""
 
-#: ../thunar/thunar-application.c:1762
+#: ../thunar/thunar-application.c:1812
 #: ../thunar/thunar-location-buttons.c:1347
-#: ../thunar/thunar-standard-view.c:2359 ../thunar/thunar-tree-view.c:1821
+#: ../thunar/thunar-standard-view.c:2359 ../thunar/thunar-tree-view.c:1759
 msgid "New Folder"
 msgstr "Dosje e Re"
 
-#: ../thunar/thunar-application.c:1763
+#: ../thunar/thunar-application.c:1813
 #: ../thunar/thunar-location-buttons.c:1348
-#: ../thunar/thunar-standard-view.c:2360 ../thunar/thunar-tree-view.c:1822
+#: ../thunar/thunar-standard-view.c:2360 ../thunar/thunar-tree-view.c:1760
 msgid "Create New Folder"
 msgstr "Krijo Dosje të Re"
 
-#: ../thunar/thunar-application.c:1767
+#: ../thunar/thunar-application.c:1817
 msgid "New File"
 msgstr "Kartelë e Re"
 
-#: ../thunar/thunar-application.c:1768
+#: ../thunar/thunar-application.c:1818
 msgid "Create New File"
 msgstr "Krijo Kartelë të Re"
 
 #. genera

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

2019-01-31 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/thunar.

commit f4b408ee5abffe75e40411247252a687ee42635f
Author: Daniel Muñiz Fontoira 
Date:   Thu Jan 31 18:31:05 2019 +0100

I18n: Update translation gl (100%).

763 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/gl.po | 205 +--
 1 file changed, 107 insertions(+), 98 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index ab179c3..1a88c4b 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,14 +3,18 @@
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR , YEAR.
 # 
+# Translators:
+# Xfce Bot , 2018
+# Daniel Muñiz Fontoira , 2019
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-27 06:31+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Daniel Muñiz Fontoira , 2018\n"
+"POT-Creation-Date: 2019-01-28 00:30+0100\n"
+"PO-Revision-Date: 2018-08-19 09:02+\n"
+"Last-Translator: Daniel Muñiz Fontoira , 2019\n"
 "Language-Team: Galician (https://www.transifex.com/xfce/teams/16840/gl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -106,41 +110,46 @@ msgstr "Saír dunha instancia en execución de Thunar"
 msgid "Print version information and exit"
 msgstr "Mostrar información sobre a versión e saír"
 
-#: ../thunar/thunar-application.c:291
+#: ../thunar/thunar-application.c:295
 #, c-format
 msgid "Acquired the session message bus '%s'\n"
 msgstr "Adquiriuse o bus de mensaxes da sesión '%s'\n"
 
-#: ../thunar/thunar-application.c:301
+#: ../thunar/thunar-application.c:305
 #, c-format
 msgid "Acquired the name '%s' on the session message bus\n"
 msgstr "Adquiriuse o nome '%s' no bus de mensaxes da sesión\n"
 
-#: ../thunar/thunar-application.c:312
+#: ../thunar/thunar-application.c:316
 #, c-format
 msgid "Name '%s' lost on the message dbus, exiting."
 msgstr "O nome '%s' perdeuse no bus de mensaxes, saíndo"
 
-#: ../thunar/thunar-application.c:469
+#: ../thunar/thunar-application.c:327
+#, c-format
+msgid "Name '%s' lost on the message dbus."
+msgstr "O nome «%s» perdeuse na mensaxe do dbus."
+
+#: ../thunar/thunar-application.c:492
 msgid "The Thunar development team. All rights reserved."
 msgstr "O equipo de desenvolvemento do Thunar. Todos os dereitos reservados."
 
-#: ../thunar/thunar-application.c:470
+#: ../thunar/thunar-application.c:493
 msgid "Written by Benedikt Meurer ."
 msgstr "Escrito por Benedikt Meurer ."
 
-#: ../thunar/thunar-application.c:471
+#: ../thunar/thunar-application.c:494
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Por favor, comunique os erros a <%s>."
 
 #. display an error message to the user
-#: ../thunar/thunar-application.c:743
+#: ../thunar/thunar-application.c:766
 msgid "Failed to launch operation"
 msgstr "Non foi posíbel iniciar a operación"
 
 #. tell the user that we were unable to launch the file specified
-#: ../thunar/thunar-application.c:1469 ../thunar/thunar-application.c:1601
+#: ../thunar/thunar-application.c:1519 ../thunar/thunar-application.c:1651
 #: ../thunar/thunar-launcher.c:1216 ../thunar/thunar-location-entry.c:356
 #: ../thunar/thunar-location-entry.c:384
 #: ../thunar/thunar-shortcuts-view.c:1680
@@ -149,65 +158,65 @@ msgstr "Non foi posíbel iniciar a operación"
 msgid "Failed to open \"%s\""
 msgstr "Non foi posíbel abrir «%s»"
 
-#: ../thunar/thunar-application.c:1605
+#: ../thunar/thunar-application.c:1655
 #, c-format
 msgid "Failed to open \"%s\": %s"
 msgstr "Non foi posíbel abrir «%s»: %s"
 
 #. display an error message
-#: ../thunar/thunar-application.c:1660
+#: ../thunar/thunar-application.c:1710
 #: ../thunar/thunar-properties-dialog.c:731
-#: ../thunar/thunar-standard-view.c:2834 ../thunar/thunar-tree-view.c:1959
+#: ../thunar/thunar-standard-view.c:2834 ../thunar/thunar-tree-view.c:1897
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "Non foi posíbel renomear «%s»"
 
-#: ../thunar/thunar-application.c:1762
+#: ../thunar/thunar-application.c:1812
 #: ../thunar/thunar-location-buttons.c:1347
-#: ../thunar/thunar-standard-view.c:2359 ../thunar/thunar-tree-view.c:1821
+#: ../thunar/thunar-standard-view.c:2359 ../thunar/thunar-tree-view.c:1759
 msgid "New Folder"
 msgstr "Novo cartafol"
 
-#: ../thunar/thunar-application.c:1763
+#: ../thunar/thunar-application.c:1813
 #: ../thunar/thunar-location-buttons.c:1348
-#: ../thunar/thunar-standard-view.c:2360 ../thunar/thunar-tree-view.c:1822
+#: ../thunar/thunar-standard-view.c:2360 ../thunar/thunar-tree-view.c:1760
 msgid "Create New Folder"
 msgstr "Crear un novo cartafol"
 
-#: ../thunar/thunar-application.c:1767
+#: ../thunar/thunar-appli

[Xfce4-commits] [xfce/thunar] 02/03: I18n: Update translation pt (100%).

2019-01-31 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 5b0a49dac4679bd2067366728d9a9ad832973d5b
Author: Rui 
Date:   Thu Jan 31 18:30:22 2019 +0100

I18n: Update translation pt (100%).

764 translated messages.

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

diff --git a/po/pt.po b/po/pt.po
index 469ef4d..5f2014d 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -11,9 +11,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-11-19 00:30+0100\n"
-"PO-Revision-Date: 2019-01-26 12:51+\n"
-"Last-Translator: Nuno Miguel \n"
+"POT-Creation-Date: 2019-01-28 00:30+0100\n"
+"PO-Revision-Date: 2019-01-31 12:15+\n"
+"Last-Translator: Rui \n"
 "Language-Team: Portuguese 
(http://www.transifex.com/xfce/thunar/language/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -104,41 +104,46 @@ msgstr "Termina uma instância do Thunar em execução"
 msgid "Print version information and exit"
 msgstr "Mostra informação da versão e sai"
 
-#: ../thunar/thunar-application.c:291
+#: ../thunar/thunar-application.c:295
 #, c-format
 msgid "Acquired the session message bus '%s'\n"
 msgstr "Adquirido o bus de sessão de mensagens '%s'\n"
 
-#: ../thunar/thunar-application.c:301
+#: ../thunar/thunar-application.c:305
 #, c-format
 msgid "Acquired the name '%s' on the session message bus\n"
 msgstr "Foi adquirido o nome  '%s' no bus de sessão de mensagens\n"
 
-#: ../thunar/thunar-application.c:312
+#: ../thunar/thunar-application.c:316
 #, c-format
 msgid "Name '%s' lost on the message dbus, exiting."
 msgstr "O nome '%s' foi perdido na mensagem do dbus, a sair."
 
-#: ../thunar/thunar-application.c:469
+#: ../thunar/thunar-application.c:327
+#, c-format
+msgid "Name '%s' lost on the message dbus."
+msgstr "O nome '%s' foi perdido na mensagem do dbus."
+
+#: ../thunar/thunar-application.c:492
 msgid "The Thunar development team. All rights reserved."
 msgstr "A equipa de desenvolvimento do Thunar. Todos os direitos reservados."
 
-#: ../thunar/thunar-application.c:470
+#: ../thunar/thunar-application.c:493
 msgid "Written by Benedikt Meurer ."
 msgstr "Desenvolvido por Benedikt Meurer ."
 
-#: ../thunar/thunar-application.c:471
+#: ../thunar/thunar-application.c:494
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Por favor reporte os problemas em <%s>."
 
 #. display an error message to the user
-#: ../thunar/thunar-application.c:743
+#: ../thunar/thunar-application.c:766
 msgid "Failed to launch operation"
 msgstr "Ocorreu um erro ao iniciar a operação"
 
 #. tell the user that we were unable to launch the file specified
-#: ../thunar/thunar-application.c:1469 ../thunar/thunar-application.c:1601
+#: ../thunar/thunar-application.c:1519 ../thunar/thunar-application.c:1651
 #: ../thunar/thunar-launcher.c:1216 ../thunar/thunar-location-entry.c:356
 #: ../thunar/thunar-location-entry.c:384
 #: ../thunar/thunar-shortcuts-view.c:1680
@@ -147,72 +152,72 @@ msgstr "Ocorreu um erro ao iniciar a operação"
 msgid "Failed to open \"%s\""
 msgstr "Ocorreu um erro ao abrir \"%s\""
 
-#: ../thunar/thunar-application.c:1605
+#: ../thunar/thunar-application.c:1655
 #, c-format
 msgid "Failed to open \"%s\": %s"
 msgstr "Ocorreu um erro ao abrir \"%s\": %s"
 
 #. display an error message
-#: ../thunar/thunar-application.c:1660
+#: ../thunar/thunar-application.c:1710
 #: ../thunar/thunar-properties-dialog.c:731
-#: ../thunar/thunar-standard-view.c:2864 ../thunar/thunar-tree-view.c:1964
+#: ../thunar/thunar-standard-view.c:2864 ../thunar/thunar-tree-view.c:1897
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "Ocorreu um erro ao renomear \"%s\""
 
-#: ../thunar/thunar-application.c:1762
+#: ../thunar/thunar-application.c:1812
 #: ../thunar/thunar-location-buttons.c:1347
-#: ../thunar/thunar-standard-view.c:2389 ../thunar/thunar-tree-view.c:1826
+#: ../thunar/thunar-standard-view.c:2389 ../thunar/thunar-tree-view.c:1759
 msgid "New Folder"
 msgstr "Nova pasta"
 
-#: ../thunar/thunar-application.c:1763
+#: ../thunar/thunar-application.c:1813
 #: ../thunar/thunar-location-buttons.c:1348
-#: ../thunar/thunar-standard-view.c:2390 ../thunar/thunar-tree-view.c:1827
+#: ../thunar/thunar-standard-view.c:2390 ../thunar/thunar-tree-view.c:1760
 msgid "Create New Folder"
 msgstr "Criar nova pasta"
 
-#: ../thunar/thunar-application.c:1767
+#: ../thunar/thunar-application.c:1817
 msgid "New File"
 msgstr "Novo ficheiro"
 
-#: ../thunar/thunar-application.c:1768
+#: ../thunar/thunar-application.c:1818
 msgid "Create New File"
 msgstr "Criar novo ficheiro"
 
 #. generate a title for the create dialo

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

2019-01-31 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 97e06c9bafce4e75270d1515419bf66dfbc021a6
Author: Arianit Kukaj 
Date:   Thu Jan 31 18:30:22 2019 +0100

I18n: Update translation sq (100%).

764 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/sq.po | 202 ---
 1 file changed, 104 insertions(+), 98 deletions(-)

diff --git a/po/sq.po b/po/sq.po
index d14ef48..961a495 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -4,15 +4,16 @@
 # 
 # Translators:
 # Ardit Dani , 2014
+# Arianit Kukaj , 2019
 # Besnik , 2018
 # Erlin Hysenbelliu , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-11-19 00:30+0100\n"
-"PO-Revision-Date: 2018-11-19 10:06+\n"
-"Last-Translator: Besnik \n"
+"POT-Creation-Date: 2019-01-28 00:30+0100\n"
+"PO-Revision-Date: 2019-01-31 12:05+\n"
+"Last-Translator: Arianit Kukaj \n"
 "Language-Team: Albanian (http://www.transifex.com/xfce/thunar/language/sq/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -103,41 +104,46 @@ msgstr "Dil nga një instancë e Thunar-it që është duke 
xhiruar"
 msgid "Print version information and exit"
 msgstr "Shtyp të dhëna versioni dhe dil"
 
-#: ../thunar/thunar-application.c:291
+#: ../thunar/thunar-application.c:295
 #, c-format
 msgid "Acquired the session message bus '%s'\n"
 msgstr "U mor busi i mesazheve të sistemit '%s'\n"
 
-#: ../thunar/thunar-application.c:301
+#: ../thunar/thunar-application.c:305
 #, c-format
 msgid "Acquired the name '%s' on the session message bus\n"
 msgstr "U mor emri '%s' te dbus mesazhesh sistemi\n"
 
-#: ../thunar/thunar-application.c:312
+#: ../thunar/thunar-application.c:316
 #, c-format
 msgid "Name '%s' lost on the message dbus, exiting."
 msgstr "Emri '%s' humbi në dbus mesazhi, po dilet."
 
-#: ../thunar/thunar-application.c:469
+#: ../thunar/thunar-application.c:327
+#, c-format
+msgid "Name '%s' lost on the message dbus."
+msgstr "Emertimi '1%s' humbi në lajmërimin nga dbus."
+
+#: ../thunar/thunar-application.c:492
 msgid "The Thunar development team. All rights reserved."
 msgstr "Ekipi i zhvillimit të Thunar-it. Tërë të drejtat të rezervuara."
 
-#: ../thunar/thunar-application.c:470
+#: ../thunar/thunar-application.c:493
 msgid "Written by Benedikt Meurer ."
 msgstr "Shkruar nga Benedikt Meurer ."
 
-#: ../thunar/thunar-application.c:471
+#: ../thunar/thunar-application.c:494
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Ju lutemi, njoftoni të meta te <%s>."
 
 #. display an error message to the user
-#: ../thunar/thunar-application.c:743
+#: ../thunar/thunar-application.c:766
 msgid "Failed to launch operation"
 msgstr "Dështoi në nisjen e operacionit"
 
 #. tell the user that we were unable to launch the file specified
-#: ../thunar/thunar-application.c:1469 ../thunar/thunar-application.c:1601
+#: ../thunar/thunar-application.c:1519 ../thunar/thunar-application.c:1651
 #: ../thunar/thunar-launcher.c:1216 ../thunar/thunar-location-entry.c:356
 #: ../thunar/thunar-location-entry.c:384
 #: ../thunar/thunar-shortcuts-view.c:1680
@@ -146,72 +152,72 @@ msgstr "Dështoi në nisjen e operacionit"
 msgid "Failed to open \"%s\""
 msgstr "Dështoi në hapjen e \"%s\""
 
-#: ../thunar/thunar-application.c:1605
+#: ../thunar/thunar-application.c:1655
 #, c-format
 msgid "Failed to open \"%s\": %s"
 msgstr "Dështoi në hapjen e \"%s\": %s"
 
 #. display an error message
-#: ../thunar/thunar-application.c:1660
+#: ../thunar/thunar-application.c:1710
 #: ../thunar/thunar-properties-dialog.c:731
-#: ../thunar/thunar-standard-view.c:2864 ../thunar/thunar-tree-view.c:1964
+#: ../thunar/thunar-standard-view.c:2864 ../thunar/thunar-tree-view.c:1897
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "Dështoi në riemërtimin e \"%s\""
 
-#: ../thunar/thunar-application.c:1762
+#: ../thunar/thunar-application.c:1812
 #: ../thunar/thunar-location-buttons.c:1347
-#: ../thunar/thunar-standard-view.c:2389 ../thunar/thunar-tree-view.c:1826
+#: ../thunar/thunar-standard-view.c:2389 ../thunar/thunar-tree-view.c:1759
 msgid "New Folder"
 msgstr "Dosje e Re"
 
-#: ../thunar/thunar-application.c:1763
+#: ../thunar/thunar-application.c:1813
 #: ../thunar/thunar-location-buttons.c:1348
-#: ../thunar/thunar-standard-view.c:2390 ../thunar/thunar-tree-view.c:1827
+#: ../thunar/thunar-standard-view.c:2390 ../thunar/thunar-tree-view.c:1760
 msgid "Create New Folder"
 msgstr "Krijo Dosje të Re"
 
-#: ../thunar/thunar-application.c:1767
+#: ../thunar/thunar-application.c:1817
 msgid "New File"
 msgstr "Kartelë e Re"
 
-#: ../thunar/thunar-application.c:1768
+#: ../thunar/thunar-application.c:1818
 msgid "Create New File"
 msgstr

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

2019-01-31 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 6962362619f57b6f631e852c3e62dc1e1a087570
Author: Daniel Muñiz Fontoira 
Date:   Thu Jan 31 18:30:22 2019 +0100

I18n: Update translation gl (100%).

764 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/gl.po | 256 ---
 1 file changed, 130 insertions(+), 126 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index bff8de6..d64c230 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Daniel Muñiz Fontoira , 2017-2018
+# Daniel Muñiz Fontoira , 2017-2019
 # Daniel Muñiz Fontoira , 2015
 # Iván Seoane Pardo , 2006
 # Leandro Regueiro , 2008-2009,2013
@@ -12,8 +12,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-27 06:30+0200\n"
-"PO-Revision-Date: 2018-10-02 11:27+\n"
+"POT-Creation-Date: 2019-01-28 00:30+0100\n"
+"PO-Revision-Date: 2019-01-31 15:46+\n"
 "Last-Translator: Daniel Muñiz Fontoira \n"
 "Language-Team: Galician (http://www.transifex.com/xfce/thunar/language/gl/)\n"
 "MIME-Version: 1.0\n"
@@ -105,41 +105,46 @@ msgstr "Saír dunha instancia en execución de Thunar"
 msgid "Print version information and exit"
 msgstr "Mostrar información sobre a versión e saír"
 
-#: ../thunar/thunar-application.c:291
+#: ../thunar/thunar-application.c:295
 #, c-format
 msgid "Acquired the session message bus '%s'\n"
 msgstr "Adquiriuse o bus de mensaxes da sesión '%s'\n"
 
-#: ../thunar/thunar-application.c:301
+#: ../thunar/thunar-application.c:305
 #, c-format
 msgid "Acquired the name '%s' on the session message bus\n"
 msgstr "Adquiriuse o nome '%s' no bus de mensaxes da sesión\n"
 
-#: ../thunar/thunar-application.c:312
+#: ../thunar/thunar-application.c:316
 #, c-format
 msgid "Name '%s' lost on the message dbus, exiting."
 msgstr "O nome '%s' perdeuse no bus de mensaxes, saíndo"
 
-#: ../thunar/thunar-application.c:469
+#: ../thunar/thunar-application.c:327
+#, c-format
+msgid "Name '%s' lost on the message dbus."
+msgstr "O nome «%s» perdeuse na mensaxe do dbus."
+
+#: ../thunar/thunar-application.c:492
 msgid "The Thunar development team. All rights reserved."
 msgstr "O equipo de desenvolvemento do Thunar. Todos os dereitos reservados."
 
-#: ../thunar/thunar-application.c:470
+#: ../thunar/thunar-application.c:493
 msgid "Written by Benedikt Meurer ."
 msgstr "Escrito por Benedikt Meurer ."
 
-#: ../thunar/thunar-application.c:471
+#: ../thunar/thunar-application.c:494
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Por favor, comunique os erros a <%s>."
 
 #. display an error message to the user
-#: ../thunar/thunar-application.c:743
+#: ../thunar/thunar-application.c:766
 msgid "Failed to launch operation"
 msgstr "Non foi posíbel iniciar a operación"
 
 #. tell the user that we were unable to launch the file specified
-#: ../thunar/thunar-application.c:1469 ../thunar/thunar-application.c:1601
+#: ../thunar/thunar-application.c:1519 ../thunar/thunar-application.c:1651
 #: ../thunar/thunar-launcher.c:1216 ../thunar/thunar-location-entry.c:356
 #: ../thunar/thunar-location-entry.c:384
 #: ../thunar/thunar-shortcuts-view.c:1680
@@ -148,72 +153,72 @@ msgstr "Non foi posíbel iniciar a operación"
 msgid "Failed to open \"%s\""
 msgstr "Non foi posíbel abrir «%s»"
 
-#: ../thunar/thunar-application.c:1605
+#: ../thunar/thunar-application.c:1655
 #, c-format
 msgid "Failed to open \"%s\": %s"
 msgstr "Non foi posíbel abrir «%s»: %s"
 
 #. display an error message
-#: ../thunar/thunar-application.c:1660
+#: ../thunar/thunar-application.c:1710
 #: ../thunar/thunar-properties-dialog.c:731
-#: ../thunar/thunar-standard-view.c:2864 ../thunar/thunar-tree-view.c:1959
+#: ../thunar/thunar-standard-view.c:2864 ../thunar/thunar-tree-view.c:1897
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "Non foi posíbel renomear «%s»"
 
-#: ../thunar/thunar-application.c:1762
+#: ../thunar/thunar-application.c:1812
 #: ../thunar/thunar-location-buttons.c:1347
-#: ../thunar/thunar-standard-view.c:2389 ../thunar/thunar-tree-view.c:1821
+#: ../thunar/thunar-standard-view.c:2389 ../thunar/thunar-tree-view.c:1759
 msgid "New Folder"
 msgstr "Novo cartafol"
 
-#: ../thunar/thunar-application.c:1763
+#: ../thunar/thunar-application.c:1813
 #: ../thunar/thunar-location-buttons.c:1348
-#: ../thunar/thunar-standard-view.c:2390 ../thunar/thunar-tree-view.c:1822
+#: ../thunar/thunar-standard-view.c:2390 ../thunar/thunar-tree-view.c:1760
 msgid "Create New Folder"
 msgstr "Crear un novo cartafol"
 
-#: ../thunar/thunar-application.c:1767
+#: ../thunar/thunar-application.c:1817
 msgid "

[Xfce4-commits] [xfce/thunar] branch master updated (85f5475 -> 97e06c9)

2019-01-31 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  85f5475   I18n: Update translation da (100%).
   new  6962362   I18n: Update translation gl (100%).
   new  5b0a49d   I18n: Update translation pt (100%).
   new  97e06c9   I18n: Update translation sq (100%).

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


Summary of changes:
 po/gl.po | 256 ---
 po/pt.po | 201 +
 po/sq.po | 202 +
 3 files changed, 337 insertions(+), 322 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