[Xfce4-commits] [xfce/thunar] 02/02: Add label to cancel button in file operation dialog

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

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

commit 7c89afb55989138d31b74d41d27f1ace13c253e7
Author: Andre Miranda 
Date:   Thu Aug 9 22:31:20 2018 -0300

Add label to cancel button in file operation dialog
---
 thunar/thunar-progress-view.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/thunar/thunar-progress-view.c b/thunar/thunar-progress-view.c
index 839a262..c2b445c 100644
--- a/thunar/thunar-progress-view.c
+++ b/thunar/thunar-progress-view.c
@@ -227,7 +227,8 @@ thunar_progress_view_init (ThunarProgressView *view)
   gtk_box_pack_start (GTK_BOX (vbox3), view->progress_label, FALSE, TRUE, 0);
   gtk_widget_show (view->progress_label);
 
-  button = gtk_button_new ();
+  button = gtk_button_new_from_icon_name ("process-stop", 
GTK_ICON_SIZE_BUTTON);
+  gtk_button_set_label (button, _("Cancel"));
   g_signal_connect_swapped (button, "clicked", G_CALLBACK 
(thunar_progress_view_cancel_job), view);
   gtk_box_pack_start (GTK_BOX (hbox), button, FALSE, TRUE, 0);
   gtk_widget_set_can_focus (button, FALSE);

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


[Xfce4-commits] [xfce/thunar] 02/02: Add label to cancel button in file operation dialog

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

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

commit 781a76fa6fa65410a91b700195b95e124446888d
Author: Andre Miranda 
Date:   Thu Aug 9 22:31:20 2018 -0300

Add label to cancel button in file operation dialog
---
 thunar/thunar-progress-view.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/thunar/thunar-progress-view.c b/thunar/thunar-progress-view.c
index 839a262..c2b445c 100644
--- a/thunar/thunar-progress-view.c
+++ b/thunar/thunar-progress-view.c
@@ -227,7 +227,8 @@ thunar_progress_view_init (ThunarProgressView *view)
   gtk_box_pack_start (GTK_BOX (vbox3), view->progress_label, FALSE, TRUE, 0);
   gtk_widget_show (view->progress_label);
 
-  button = gtk_button_new ();
+  button = gtk_button_new_from_icon_name ("process-stop", 
GTK_ICON_SIZE_BUTTON);
+  gtk_button_set_label (button, _("Cancel"));
   g_signal_connect_swapped (button, "clicked", G_CALLBACK 
(thunar_progress_view_cancel_job), view);
   gtk_box_pack_start (GTK_BOX (hbox), button, FALSE, TRUE, 0);
   gtk_widget_set_can_focus (button, FALSE);

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


[Xfce4-commits] [xfce/thunar] 01/02: Show numeric(%) progress in file operation dialog (Bug #14102)

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

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

commit f61844b6c18e7d9a9c46c4f2ccde68cab7d5ff13
Author: Andre Miranda 
Date:   Thu Aug 9 22:31:15 2018 -0300

Show numeric(%) progress in file operation dialog (Bug #14102)
---
 thunar/thunar-progress-view.c | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/thunar/thunar-progress-view.c b/thunar/thunar-progress-view.c
index 96b7129..839a262 100644
--- a/thunar/thunar-progress-view.c
+++ b/thunar/thunar-progress-view.c
@@ -482,11 +482,12 @@ thunar_progress_view_percent (ThunarProgressView *view,
 
   /* set progress text */
   if (THUNAR_IS_TRANSFER_JOB (job))
-{
-  text = thunar_transfer_job_get_status (THUNAR_TRANSFER_JOB (job));
-  gtk_label_set_text (GTK_LABEL (view->progress_label), text);
-  g_free (text);
-}
+text = thunar_transfer_job_get_status (THUNAR_TRANSFER_JOB (job));
+  else
+text = g_strdup_printf ("%.2f%%", percent);
+
+  gtk_label_set_text (GTK_LABEL (view->progress_label), text);
+  g_free (text);
 }
 
 

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


[Xfce4-commits] [xfce/thunar] branch master updated (d879ae3 -> 781a76f)

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

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

  from  d879ae3   I18n: Update translation it (100%).
   new  f61844b   Show numeric(%) progress in file operation dialog (Bug 
#14102)
   new  781a76f   Add label to cancel button in file operation dialog

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:
 thunar/thunar-progress-view.c | 14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

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


[Xfce4-commits] [xfce/thunar] branch xfce-4.14 updated (e2beb62 -> 7c89afb)

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

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

  from  e2beb62   More options for thumbnail size (Bug #14451) - added 
three additional zoom-levels and icon-sizes (160px, 192px and 256px) - added 
usage of "large" thumbnails (max 256px x 256px) - automatically use large 
thumbnails for icon-size > 128px - renamed zoom-levels, usage of percentage 
values - renamed icon-size values, count in pixels - support for old naming
   new  667e1e1   Show numeric(%) progress in file operation dialog (Bug 
#14102)
   new  7c89afb   Add label to cancel button in file operation dialog

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:
 thunar/thunar-progress-view.c | 14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

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


[Xfce4-commits] [xfce/thunar] 01/02: Show numeric(%) progress in file operation dialog (Bug #14102)

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

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

commit 667e1e10a25bb8a23dea685a89e6e775c7b430c9
Author: Andre Miranda 
Date:   Thu Aug 9 22:31:15 2018 -0300

Show numeric(%) progress in file operation dialog (Bug #14102)
---
 thunar/thunar-progress-view.c | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/thunar/thunar-progress-view.c b/thunar/thunar-progress-view.c
index 96b7129..839a262 100644
--- a/thunar/thunar-progress-view.c
+++ b/thunar/thunar-progress-view.c
@@ -482,11 +482,12 @@ thunar_progress_view_percent (ThunarProgressView *view,
 
   /* set progress text */
   if (THUNAR_IS_TRANSFER_JOB (job))
-{
-  text = thunar_transfer_job_get_status (THUNAR_TRANSFER_JOB (job));
-  gtk_label_set_text (GTK_LABEL (view->progress_label), text);
-  g_free (text);
-}
+text = thunar_transfer_job_get_status (THUNAR_TRANSFER_JOB (job));
+  else
+text = g_strdup_printf ("%.2f%%", percent);
+
+  gtk_label_set_text (GTK_LABEL (view->progress_label), text);
+  g_free (text);
 }
 
 

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


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

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

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

commit e0d722e2de88b4baed83d0355e0da656cd029702
Author: Charles Monzat 
Date:   Fri Aug 10 00:30:04 2018 +0200

I18n: Update translation fr (100%).

299 translated messages.

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

diff --git a/po/fr.po b/po/fr.po
index 9a0a65a..1fd6a06 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -19,7 +19,7 @@ msgstr ""
 "Project-Id-Version: Exo\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-06-07 06:30+0200\n"
-"PO-Revision-Date: 2018-08-07 20:31+\n"
+"PO-Revision-Date: 2018-08-09 20:06+\n"
 "Last-Translator: Charles Monzat \n"
 "Language-Team: French (http://www.transifex.com/xfce/exo/language/fr/)\n"
 "MIME-Version: 1.0\n"

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


[Xfce4-commits] [xfce/exo] branch master updated (1a1f965 -> e0d722e)

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

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

  from  1a1f965   I18n: Update translation fr (100%).
   new  e0d722e   I18n: Update translation fr (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/fr.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


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

2018-08-09 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 a8b9bf23ec16e01d825464bfa54e77b8c0fcf28c
Author: Emanuele Petriglia 
Date:   Thu Aug 9 18:31:26 2018 +0200

I18n: Update translation it (100%).

113 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/it.po | 38 +-
 1 file changed, 25 insertions(+), 13 deletions(-)

diff --git a/po/it.po b/po/it.po
index 28af557..6ba52dd 100644
--- a/po/it.po
+++ b/po/it.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-06-30 21:44-0400\n"
+"POT-Creation-Date: 2018-07-08 18:48-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Emanuele Petriglia , 2018\n"
 "Language-Team: Italian (https://www.transifex.com/xfce/teams/16840/it/)\n"
@@ -260,7 +260,7 @@ msgstr "Includi i file nascosti"
 
 #: ../catfish/__init__.py:57
 msgid "Perform fulltext search"
-msgstr "Esegui una ricerca fulltext"
+msgstr "Esegui una ricerca interna dei file di testo"
 
 #: ../catfish/__init__.py:59
 msgid ""
@@ -493,12 +493,24 @@ msgstr ""
 "capacità organizzative."
 
 #: ../data/metainfo/catfish.appdata.xml.in.h:3
+msgid ""
+"This release features several improvements to thumbnail processing and "
+"numerous bug fixes. Icon previews have been improved and will now match "
+"other applications. Items displayed at the bottom of the results window are "
+"now accessible with all desktop themes."
+msgstr ""
+"Questo rilascio migliora la generazione delle miniature e corregge numerosi "
+"bug. Le icone di anteprima sono state migliorate e da ora si integrano con "
+"le altre applicazioni. Gli elementi visualizzati in basso nella finestra dei"
+" risultati sono ora accessibili da tutti i temi."
+
+#: ../data/metainfo/catfish.appdata.xml.in.h:4
 msgid "This is a minor translations-only release."
 msgstr ""
 "Questa è un rilascio minore che contiene solamente aggiornamenti di "
 "traduzione."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:4
+#: ../data/metainfo/catfish.appdata.xml.in.h:5
 msgid ""
 "This release features several performance improvements and numerous "
 "translation updates."
@@ -506,7 +518,7 @@ msgstr ""
 "Questo rilascio presenta parecchie migliorie di prestazioni e numerosi "
 "aggiornamenti di traduzione."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:5
+#: ../data/metainfo/catfish.appdata.xml.in.h:6
 msgid ""
 "This release now displays all file timestamps according to timezone instead "
 "of Universal Coordinated Time (UTC)."
@@ -514,7 +526,7 @@ msgstr ""
 "Questo rilascio da ora visualizza tutti i timestamp dei file in base al fuso"
 " orario invece che dal Tempo Coordinato Universale (UTC)."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:6
+#: ../data/metainfo/catfish.appdata.xml.in.h:7
 msgid ""
 "This release fixes several bugs related to the results window. Files are "
 "once again removed from the results list when deleted. Middle- and right-"
@@ -527,7 +539,7 @@ msgstr ""
 "ripristinate. I filtri sull'intervallo delle date sono ora applicati in base"
 " al fuso orario invece che dal Tempo Coordinato Universale (UTC)."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:7
+#: ../data/metainfo/catfish.appdata.xml.in.h:8
 msgid ""
 "This release includes a significant interface refresh, improves search "
 "speed, and fixes several bugs. The workflow has been improved, utilizing "
@@ -541,12 +553,12 @@ msgstr ""
 "le barre header opzionali e widget a comparsa. La gestione delle password è "
 "stata migliorata con l'integrazione di PolicyKit se disponibile."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:8
+#: ../data/metainfo/catfish.appdata.xml.in.h:9
 msgid "This release fixes two new bugs and includes updated translations."
 msgstr ""
 "Questo rilascio corregge due nuovi bug ed include traduzioni aggiornate."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:9
+#: ../data/metainfo/catfish.appdata.xml.in.h:10
 msgid ""
 "This release fixes a regression where the application is unable to start on "
 "some systems."
@@ -554,7 +566,7 @@ msgstr ""
 "Questo rilascio corregge una regressione per cui l'applicazione non era in "
 "grado di avviarsi in alcuni sistemi."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:10
+#: ../data/metainfo/catfish.appdata.xml.in.h:11
 msgid ""
 "This release fixes a regression where multiple search terms were no longer "
 "supported. An InfoBar is now displayed when the search database is outdated,"
@@ -565,7 +577,7 @@ msgstr ""
 " di ricerca non è aggiornato, e le finestre di dialogo di aggiornamento "
 "database sono state migliorate."
 
-#: ../data/metainfo/catfish.appdata.xml.in.h:11
+#: ../data/metainfo/catfish.appdata.xml.in.h:12
 msgid ""
 "T

[Xfce4-commits] [apps/catfish] branch master updated (c1b89fe -> a8b9bf2)

2018-08-09 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  c1b89fe   I18n: Update translation ja (92%).
   new  a8b9bf2   I18n: Update translation it (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/it.po | 38 +-
 1 file changed, 25 insertions(+), 13 deletions(-)

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


[Xfce4-commits] [xfce/thunar] branch master updated (d86c5aa -> d879ae3)

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

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

  from  d86c5aa   I18n: Update translation hr (99%).
   new  d879ae3   I18n: Update translation it (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/it.po | 289 +--
 1 file changed, 152 insertions(+), 137 deletions(-)

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


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

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

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

commit d879ae3f8096644e6a6e38e7775c54e4a9f1e3b8
Author: Emanuele Petriglia 
Date:   Thu Aug 9 18:30:24 2018 +0200

I18n: Update translation it (100%).

751 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/it.po | 289 +--
 1 file changed, 152 insertions(+), 137 deletions(-)

diff --git a/po/it.po b/po/it.po
index 43d8c64..5fa644f 100644
--- a/po/it.po
+++ b/po/it.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-19 00:30+0200\n"
-"PO-Revision-Date: 2018-07-19 07:24+\n"
+"POT-Creation-Date: 2018-08-01 00:30+0200\n"
+"PO-Revision-Date: 2018-08-09 12:34+\n"
 "Last-Translator: Emanuele Petriglia \n"
 "Language-Team: Italian (http://www.transifex.com/xfce/thunar/language/it/)\n"
 "MIME-Version: 1.0\n"
@@ -157,20 +157,20 @@ msgstr "Impossibile aprire \"%s\": %s"
 #. display an error message
 #: ../thunar/thunar-application.c:1635
 #: ../thunar/thunar-properties-dialog.c:731
-#: ../thunar/thunar-standard-view.c:2854 ../thunar/thunar-tree-view.c:1959
+#: ../thunar/thunar-standard-view.c:2864 ../thunar/thunar-tree-view.c:1959
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "Impossibile rinominare \"%s\""
 
 #: ../thunar/thunar-application.c:1737
 #: ../thunar/thunar-location-buttons.c:1347
-#: ../thunar/thunar-standard-view.c:2379 ../thunar/thunar-tree-view.c:1821
+#: ../thunar/thunar-standard-view.c:2389 ../thunar/thunar-tree-view.c:1821
 msgid "New Folder"
 msgstr "Nuova cartella"
 
 #: ../thunar/thunar-application.c:1738
 #: ../thunar/thunar-location-buttons.c:1348
-#: ../thunar/thunar-standard-view.c:2380 ../thunar/thunar-tree-view.c:1822
+#: ../thunar/thunar-standard-view.c:2390 ../thunar/thunar-tree-view.c:1822
 msgid "Create New Folder"
 msgstr "Crea una nuova cartella"
 
@@ -183,7 +183,7 @@ msgid "Create New File"
 msgstr "Crea un nuovo file"
 
 #. generate a title for the create dialog
-#: ../thunar/thunar-application.c:1800 ../thunar/thunar-standard-view.c:2426
+#: ../thunar/thunar-application.c:1800 ../thunar/thunar-standard-view.c:2436
 #, c-format
 msgid "Create Document from template \"%s\""
 msgstr "Crea documento dal modello \"%s\""
@@ -242,7 +242,7 @@ msgstr[1] "Cancellare davvero in modo\npermanente i %u file 
selezionati?"
 #: ../thunar/thunar-renamer-dialog.c:1053
 #: ../thunar/thunar-renamer-progress.c:198
 #: ../thunar/thunar-renamer-progress.c:208
-#: ../thunar/thunar-standard-view.c:2685
+#: ../thunar/thunar-standard-view.c:2695
 #: ../plugins/thunar-sendto-email/main.c:198
 #: ../plugins/thunar-sendto-email/main.c:217
 #: ../plugins/thunar-sendto-email/main.c:272
@@ -500,7 +500,7 @@ msgstr "Negli appunti non c'è niente da incollare"
 #. setup the dialog
 #. add a regular close button, the header bar already provides one
 #: ../thunar/thunar-column-editor.c:120 ../thunar/thunar-dialogs.c:747
-#: ../thunar/thunar-preferences-dialog.c:247
+#: ../thunar/thunar-preferences-dialog.c:252
 #: ../thunar/thunar-properties-dialog.c:254
 #: ../thunar/thunar-renamer-dialog.c:355
 #: ../thunar/thunar-renamer-progress.c:215
@@ -514,7 +514,7 @@ msgstr "Configura le colonne della visualizzazione a lista 
dettagliata"
 
 #. add the "Help" button
 #: ../thunar/thunar-column-editor.c:126
-#: ../thunar/thunar-preferences-dialog.c:248
+#: ../thunar/thunar-preferences-dialog.c:253
 #: ../thunar/thunar-properties-dialog.c:253 ../thunar/thunar-window.c:375
 msgid "_Help"
 msgstr "A_iuto"
@@ -805,67 +805,67 @@ msgstr "Crea colle_gamento qui"
 msgid "Failed to execute file \"%s\""
 msgstr "Impossibile eseguire il file \"%s\""
 
-#: ../thunar/thunar-enum-types.c:45
+#: ../thunar/thunar-enum-types.c:49
 msgid "Name only"
 msgstr "Solo nome"
 
-#: ../thunar/thunar-enum-types.c:46
+#: ../thunar/thunar-enum-types.c:50
 msgid "Suffix only"
 msgstr "Solo suffisso"
 
-#: ../thunar/thunar-enum-types.c:47
+#: ../thunar/thunar-enum-types.c:51
 msgid "Name and Suffix"
 msgstr "Nome e suffisso"
 
-#: ../thunar/thunar-enum-types.c:97
+#: ../thunar/thunar-enum-types.c:101
 #: ../plugins/thunar-sbr/thunar-sbr-enum-types.c:136
 msgid "Date Accessed"
 msgstr "Data di accesso"
 
-#: ../thunar/thunar-enum-types.c:98
+#: ../thunar/thunar-enum-types.c:102
 #: ../plugins/thunar-sbr/thunar-sbr-enum-types.c:137
 msgid "Date Modified"
 msgstr "Data di modifica"
 
-#: ../thunar/thunar-enum-types.c:99
+#: ../thunar/thunar-enum-types.c:103
 msgid "Group"
 msgstr "Gruppo"
 
-#: ../thunar/thunar-enum-types.c:100
+#: ../thunar/thunar-enum-types.c:104
 msgid "MIME Type"
 msgstr "Tipo MIME"
 
-#: ../thunar/thunar-enum-types.c:101 ../thunar/thunar-renamer-dialog.c:422
+#: ../thunar/th

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

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

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

commit d86c5aa03dd6ec28c8e6f9ba94d80b545e0900d1
Author: Edin Veskovic 
Date:   Thu Aug 9 12:30:39 2018 +0200

I18n: Update translation hr (99%).

750 translated messages, 1 untranslated message.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/hr.po | 289 +--
 1 file changed, 152 insertions(+), 137 deletions(-)

diff --git a/po/hr.po b/po/hr.po
index ccb820f..121febe 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -16,8 +16,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-07-19 00:30+0200\n"
-"PO-Revision-Date: 2018-07-19 09:08+\n"
+"POT-Creation-Date: 2018-08-01 00:30+0200\n"
+"PO-Revision-Date: 2018-08-09 07:59+\n"
 "Last-Translator: Edin Veskovic \n"
 "Language-Team: Croatian (http://www.transifex.com/xfce/thunar/language/hr/)\n"
 "MIME-Version: 1.0\n"
@@ -160,20 +160,20 @@ msgstr "Neuspješno otvaranje  \"%s\": %s"
 #. display an error message
 #: ../thunar/thunar-application.c:1635
 #: ../thunar/thunar-properties-dialog.c:731
-#: ../thunar/thunar-standard-view.c:2854 ../thunar/thunar-tree-view.c:1959
+#: ../thunar/thunar-standard-view.c:2864 ../thunar/thunar-tree-view.c:1959
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "Neuspješno preimenovanje \"%s\""
 
 #: ../thunar/thunar-application.c:1737
 #: ../thunar/thunar-location-buttons.c:1347
-#: ../thunar/thunar-standard-view.c:2379 ../thunar/thunar-tree-view.c:1821
+#: ../thunar/thunar-standard-view.c:2389 ../thunar/thunar-tree-view.c:1821
 msgid "New Folder"
 msgstr "Nova mapa"
 
 #: ../thunar/thunar-application.c:1738
 #: ../thunar/thunar-location-buttons.c:1348
-#: ../thunar/thunar-standard-view.c:2380 ../thunar/thunar-tree-view.c:1822
+#: ../thunar/thunar-standard-view.c:2390 ../thunar/thunar-tree-view.c:1822
 msgid "Create New Folder"
 msgstr "Napravi novu mapu"
 
@@ -186,7 +186,7 @@ msgid "Create New File"
 msgstr "Napravi novu datoteku"
 
 #. generate a title for the create dialog
-#: ../thunar/thunar-application.c:1800 ../thunar/thunar-standard-view.c:2426
+#: ../thunar/thunar-application.c:1800 ../thunar/thunar-standard-view.c:2436
 #, c-format
 msgid "Create Document from template \"%s\""
 msgstr "Napravite dokument iz predloška \"%s\""
@@ -246,7 +246,7 @@ msgstr[2] ""
 #: ../thunar/thunar-renamer-dialog.c:1053
 #: ../thunar/thunar-renamer-progress.c:198
 #: ../thunar/thunar-renamer-progress.c:208
-#: ../thunar/thunar-standard-view.c:2685
+#: ../thunar/thunar-standard-view.c:2695
 #: ../plugins/thunar-sendto-email/main.c:198
 #: ../plugins/thunar-sendto-email/main.c:217
 #: ../plugins/thunar-sendto-email/main.c:272
@@ -504,7 +504,7 @@ msgstr "Nema ničega iz međuspremnika za zalijepiti"
 #. setup the dialog
 #. add a regular close button, the header bar already provides one
 #: ../thunar/thunar-column-editor.c:120 ../thunar/thunar-dialogs.c:747
-#: ../thunar/thunar-preferences-dialog.c:247
+#: ../thunar/thunar-preferences-dialog.c:252
 #: ../thunar/thunar-properties-dialog.c:254
 #: ../thunar/thunar-renamer-dialog.c:355
 #: ../thunar/thunar-renamer-progress.c:215
@@ -518,7 +518,7 @@ msgstr "Postavi stupce u listu detaljnog prikaza"
 
 #. add the "Help" button
 #: ../thunar/thunar-column-editor.c:126
-#: ../thunar/thunar-preferences-dialog.c:248
+#: ../thunar/thunar-preferences-dialog.c:253
 #: ../thunar/thunar-properties-dialog.c:253 ../thunar/thunar-window.c:375
 msgid "_Help"
 msgstr "_Pomoć"
@@ -809,67 +809,67 @@ msgstr "_Poveznica ovdje"
 msgid "Failed to execute file \"%s\""
 msgstr "Nisam uspio izvršiti datoteku \"%s\""
 
-#: ../thunar/thunar-enum-types.c:45
+#: ../thunar/thunar-enum-types.c:49
 msgid "Name only"
 msgstr "Samo ime"
 
-#: ../thunar/thunar-enum-types.c:46
+#: ../thunar/thunar-enum-types.c:50
 msgid "Suffix only"
 msgstr "Samo sufiks"
 
-#: ../thunar/thunar-enum-types.c:47
+#: ../thunar/thunar-enum-types.c:51
 msgid "Name and Suffix"
 msgstr "Ime i sufiks"
 
-#: ../thunar/thunar-enum-types.c:97
+#: ../thunar/thunar-enum-types.c:101
 #: ../plugins/thunar-sbr/thunar-sbr-enum-types.c:136
 msgid "Date Accessed"
 msgstr "Datum pristupa"
 
-#: ../thunar/thunar-enum-types.c:98
+#: ../thunar/thunar-enum-types.c:102
 #: ../plugins/thunar-sbr/thunar-sbr-enum-types.c:137
 msgid "Date Modified"
 msgstr "Datum izmjene"
 
-#: ../thunar/thunar-enum-types.c:99
+#: ../thunar/thunar-enum-types.c:103
 msgid "Group"
 msgstr "Grupa"
 
-#: ../thunar/thunar-enum-types.c:100
+#: ../thunar/thunar-enum-types.c:104
 msgid "MIME Type"
 msgstr "MIME Tip"
 
-#: ../thunar/thunar-enum-types.c:101 ../thunar/thunar-renamer-dialog.c:422
+#: ../thunar/thunar-enum-types.c:105 ../thunar/thunar-renamer-dialog.c:422
 #: ../thunarx/thunarx-re

[Xfce4-commits] [xfce/thunar] branch master updated (8499058 -> d86c5aa)

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

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

  from  8499058   I18n: Update translation sq (99%).
   new  d86c5aa   I18n: Update translation hr (99%).

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


Summary of changes:
 po/hr.po | 289 +--
 1 file changed, 152 insertions(+), 137 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/xfdashboard] annotated tag 0.7.5 created (now 6ec0694)

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

nomad pushed a 
change to annotated 
tag 0.7.5
in repository apps/xfdashboard.

at  6ec0694   (tag)
   tagging  42291830e32441591bf1ee9055c8f91e37fa8fbe (commit)
  replaces  0.7.4
 tagged by  Stephan Haller
on  Wed Aug 8 12:34:18 2018 +0200

- Log -
0.7.5
-BEGIN PGP SIGNATURE-

iG8EABECAC8WIQQbjOcbFTVKm5x0EE9pBUmlRG5FdAUCW2rHLhEcbm9tYWRAZnJv
ZXZlbC5kZQAKCRBpBUmlRG5FdGFbAKCGG29EysUHf/G8A2kv4asta1F3BQCdFHx3
OwvkunQ68wococeOTtCnyJI=
=xCqf
-END PGP SIGNATURE-
---

This annotated tag includes the following new commits:

   new  4229183   Bump version to 0.7.5

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.


-- 
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/xfdashboard] 01/01: Bump version to 0.7.5

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

nomad pushed a 
commit to annotated 
tag 0.7.5
in repository apps/xfdashboard.

commit 42291830e32441591bf1ee9055c8f91e37fa8fbe
Author: Stephan Haller 
Date:   Wed Aug 8 12:34:09 2018 +0200

Bump version to 0.7.5
---
 configure.ac.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac.in b/configure.ac.in
index 7ce9e74..376faba 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -11,7 +11,7 @@ m4_define([xfdashboard_version_major], [0])
 m4_define([xfdashboard_version_minor], [7])
 m4_define([xfdashboard_version_micro], [5])
 m4_define([xfdashboard_version_build], [@REVISION@])
-m4_define([xfdashboard_version_tag],   [git])
+m4_define([xfdashboard_version_tag],   [])
 m4_define([xfdashboard_version], 
[xfdashboard_version_major().xfdashboard_version_minor().xfdashboard_version_micro()ifelse(xfdashboard_version_tag(),
 [git], [xfdashboard_version_tag().xfdashboard_version_build()], 
[xfdashboard_version_tag()])])
 
 dnl **

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