[Xfce4-commits] [xfce/tumbler] 02/02: Add Fujifilm RAF support (Bug #14522)

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

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

commit e84cfe8ac9a154e5948b29cc6aebe42c5906fcf8
Author: ToZ 
Date:   Thu Mar 7 20:45:40 2019 -0300

Add Fujifilm RAF support (Bug #14522)
---
 plugins/raw-thumbnailer/raw-thumbnailer-provider.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/plugins/raw-thumbnailer/raw-thumbnailer-provider.c 
b/plugins/raw-thumbnailer/raw-thumbnailer-provider.c
index 6468b93..1e48a81 100644
--- a/plugins/raw-thumbnailer/raw-thumbnailer-provider.c
+++ b/plugins/raw-thumbnailer/raw-thumbnailer-provider.c
@@ -117,6 +117,7 @@ raw_thumbnailer_provider_get_thumbnailers 
(TumblerThumbnailerProvider *provider)
 "image/x-pentax-pef",
 "image/x-sony-arw",
 "image/x-minolta-mrw",
+"image/x-fuji-raf",
 NULL
   };
 

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


[Xfce4-commits] [xfce/tumbler] 01/02: Add more media types for audio cover thumbnails (Bug #12041)

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

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

commit 4a5191bb18d7d3ee3c39ac0a95da2f43e1e14b2d
Author: ToZ 
Date:   Thu Mar 7 20:55:09 2019 -0300

Add more media types for audio cover thumbnails (Bug #12041)
---
 plugins/gst-thumbnailer/gst-thumbnailer-provider.c | 49 ++
 plugins/gst-thumbnailer/gst-thumbnailer.c  | 18 
 2 files changed, 58 insertions(+), 9 deletions(-)

diff --git a/plugins/gst-thumbnailer/gst-thumbnailer-provider.c 
b/plugins/gst-thumbnailer/gst-thumbnailer-provider.c
index 9e077c7..f658110 100644
--- a/plugins/gst-thumbnailer/gst-thumbnailer-provider.c
+++ b/plugins/gst-thumbnailer/gst-thumbnailer-provider.c
@@ -126,6 +126,55 @@ gst_thumbnailer_provider_get_thumbnailers 
(TumblerThumbnailerProvider *provider)
 "application/x-shorten",
 "application/x-smil",
 "application/xspf+xml",
+"audio/3gpp",
+"audio/ac3",
+"audio/AMR",
+"audio/AMR-WB",
+"audio/basic",
+"audio/flac",
+"audio/midi",
+"audio/mp2",
+"audio/mp4",
+"audio/mpeg",
+"audio/mpegurl",
+"audio/ogg",
+"audio/prs.sid",
+"audio/vnd.rn-realaudio",
+"audio/x-aiff",
+"audio/x-ape",
+"audio/x-flac",
+"audio/x-gsm",
+"audio/x-it",
+"audio/x-m4a",
+"audio/x-matroska",
+"audio/x-mod",
+"audio/x-mp3",
+"audio/x-mpeg",
+"audio/x-mpegurl",
+"audio/x-ms-asf",
+"audio/x-ms-asx",
+"audio/x-ms-wax",
+"audio/x-ms-wma",
+"audio/x-musepack",
+"audio/x-pn-aiff",
+"audio/x-pn-au",
+"audio/x-pn-realaudio",
+"audio/x-pn-realaudio-plugin",
+"audio/x-pn-wav",
+"audio/x-pn-windows-acm",
+"audio/x-realaudio",
+"audio/x-real-audio",
+"audio/x-s3m",
+"audio/x-sbc",
+"audio/x-scpls",
+"audio/x-speex",
+"audio/x-stm",
+"audio/x-tta",
+"audio/x-wav",
+"audio/x-wavpack",
+"audio/x-vorbis",
+"audio/x-vorbis+ogg",
+"audio/x-xm",
 "image/vnd.rn-realpix",
 "image/x-pict",
 "misc/ultravox",
diff --git a/plugins/gst-thumbnailer/gst-thumbnailer.c 
b/plugins/gst-thumbnailer/gst-thumbnailer.c
index 73f884b..d080403 100644
--- a/plugins/gst-thumbnailer/gst-thumbnailer.c
+++ b/plugins/gst-thumbnailer/gst-thumbnailer.c
@@ -138,15 +138,16 @@ gst_thumbnailer_cover_from_tags (GstTagList   *tags,
 {
   GstSample  *cover = NULL;
   guint   i;
-  GstSample  *sample;
   GstCaps*caps;
   const GstStructure *caps_struct;
-  ginttype;
+  ginttype = GST_TAG_IMAGE_TYPE_UNDEFINED;
   GstBuffer  *buffer;
   GdkPixbuf  *pixbuf = NULL;
 
   for (i = 0; ; i++)
 {
+  GstSample*sample;
+
   if (g_cancellable_is_cancelled (cancellable))
 break;
 
@@ -161,14 +162,13 @@ gst_thumbnailer_cover_from_tags (GstTagList   *tags,
   GST_TYPE_TAG_IMAGE_TYPE,
   );
 
-  if (type == GST_TAG_IMAGE_TYPE_FRONT_COVER)
-{
-  /* found the cover */
-  cover = sample;
-  break;
-}
+  if (cover != NULL)
+   gst_sample_unref (cover);
+  cover = sample;
 
-  gst_sample_unref (sample);
+  /* prefer the from cover image if specified */
+ if (type == GST_TAG_IMAGE_TYPE_FRONT_COVER)
+   break;
 }
 
   if (cover == NULL

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


[Xfce4-commits] [xfce/tumbler] branch master updated (39f7a7f -> e84cfe8)

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

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

  from  39f7a7f   I18n: Update translation pt_BR (100%).
   new  4a5191b   Add more media types for audio cover thumbnails (Bug 
#12041)
   new  e84cfe8   Add Fujifilm RAF support (Bug #14522)

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:
 plugins/gst-thumbnailer/gst-thumbnailer-provider.c | 49 ++
 plugins/gst-thumbnailer/gst-thumbnailer.c  | 18 
 plugins/raw-thumbnailer/raw-thumbnailer-provider.c |  1 +
 3 files changed, 59 insertions(+), 9 deletions(-)

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


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

2019-03-07 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 8209dc73be2fd1089380fa79b0c73144b13429f0
Author: Anonymous 
Date:   Thu Mar 7 18:35:00 2019 +0100

I18n: Update translation da (100%).

243 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 6fdb090..a5d0bcd 100644
--- a/po/da.po
+++ b/po/da.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-12-31 00:31+0100\n"
-"PO-Revision-Date: 2019-03-07 11:11+\n"
+"PO-Revision-Date: 2019-03-07 13:48+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfdesktop/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -185,7 +185,7 @@ msgstr "Versionsinformation"
 
 #: ../settings/main.c:2147 ../src/xfdesktop-application.c:836
 msgid "Enable debug messages"
-msgstr "Aktivér fejlsøgningsbeskeder"
+msgstr "Aktivér fejlsøgningsmeddelelser"
 
 #: ../settings/main.c:2175
 #, c-format
@@ -652,7 +652,7 @@ msgstr "Opstil automatisk alle ikoner på skrivebordet"
 
 #: ../src/xfdesktop-application.c:837
 msgid "Disable debug messages"
-msgstr "Deaktivér fejlsøgningsbeskeder"
+msgstr "Deaktivér fejlsøgningsmeddelelser"
 
 #: ../src/xfdesktop-application.c:838
 msgid "Do not wait for a window manager on startup"

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


[Xfce4-commits] [xfce/xfdesktop] 02/02: I18n: Update translation fa_IR (93%).

2019-03-07 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 eb2c7013317e2aeb3f3d180f2472ff3bb136a268
Author: Ali Molaei 
Date:   Thu Mar 7 18:35:00 2019 +0100

I18n: Update translation fa_IR (93%).

227 translated messages, 16 untranslated messages.

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

diff --git a/po/fa_IR.po b/po/fa_IR.po
index 731c8a4..117a1e4 100644
--- a/po/fa_IR.po
+++ b/po/fa_IR.po
@@ -12,9 +12,9 @@ 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-03-07 12:15+\n"
+"Last-Translator: Ali Molaei \n"
 "Language-Team: Persian (Iran) 
(http://www.transifex.com/xfce/xfdesktop/language/fa_IR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -22,37 +22,37 @@ msgstr ""
 "Language: fa_IR\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 "خانه"
 
-#: ../settings/main.c:419
+#: ../settings/main.c:421
 msgid "Filesystem"
 msgstr "سیستم پرونده‌ها"
 
-#: ../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 "سطل زباله‌دان"
 
-#: ../settings/main.c:423
+#: ../settings/main.c:425
 msgid "Removable Devices"
 msgstr "ابزارهای قابل حمل"
 
-#: ../settings/main.c:425
+#: ../settings/main.c:427
 msgid "Network Shares"
 msgstr "به اشترا گذاری شبکه"
 
-#: ../settings/main.c:427
+#: ../settings/main.c:429
 msgid "Disks and Drives"
 msgstr "دیسک ها و درایو ها"
 
-#: ../settings/main.c:429
+#: ../settings/main.c:431
 msgid "Other Devices"
 msgstr "دستگاه‌های دیگر"
 
 #. 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"
@@ -60,117 +60,165 @@ msgid ""
 "Size: %s"
 msgstr "%s\nنوع: %s\nحجم: %s"
 
-#: ../settings/main.c:733
+#: ../settings/main.c:736
 #, c-format
 msgid "Wallpaper for Monitor %d (%s)"
 msgstr "کاغذ دیواری برای صفحه نمایش %d (%s)"
 
-#: ../settings/main.c:736
+#: ../settings/main.c:739
 #, c-format
 msgid "Wallpaper for Monitor %d"
 msgstr "کاغذ دیواری برای %d"
 
-#: ../settings/main.c:742
+#: ../settings/main.c:745
 msgid "Move this dialog to the display you want to edit the settings for."
 msgstr "این پیغام را به نمایشگری که قصد ویرایش تنظیمات آن را دارید انتقال 
دهید."
 
-#: ../settings/main.c:749
+#: ../settings/main.c:752
 #, c-format
 msgid "Wallpaper for %s on Monitor %d (%s)"
 msgstr "کاغذدیواری برای %s در صفحه نمایش %d (%s)"
 
-#: ../settings/main.c:753
+#: ../settings/main.c:756
 #, c-format
 msgid "Wallpaper for %s on Monitor %d"
 msgstr "کاغذدیواری برای %s در صفحه نمایش %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 "این پیغام را به فضای کاری و نمایشگری که قصد ویرایش تنظیمات آن را دارید 
انتقال دهید."
 
 #. Single monitor and single workspace
-#: ../settings/main.c:768
+#: ../settings/main.c:771
 #, c-format
 msgid "Wallpaper for my desktop"
 msgstr "کاغذ دیواری برای میزکار"
 
 #. Single monitor and per workspace wallpaper
-#: ../settings/main.c:774
+#: ../settings/main.c:777
 #, c-format
 msgid "Wallpaper for %s"
 msgstr "کاغذ دیواری برای %s"
 
-#: ../settings/main.c:779
+#: ../settings/main.c:782
 msgid "Move this dialog to the workspace you want to edit the settings for."
 msgstr "این پیغام را به فضای کاری که قصد ویرایش تنظیمات آن را دارید انتقال 
دهید."
 
-#: ../settings/main.c:1199
+#: ../settings/main.c:1202
 msgid "Image selection is unavailable while the image style is set to None."
 msgstr "انتخاب تصویر در زمانی که سبک تصاویر بر روی هیچکدام انتخاب شده باشد 
امکان پذیر نیست"
 
-#: ../settings/main.c:1584 ../settings/main.c:1589
+#: ../settings/main.c:1587 ../settings/main.c:1592
 msgid "Spanning screens"
 msgstr "محدوده صفحه نمایش"
 
-#: ../settings/main.c:1899
+#. TRANSLATORS: Please split the message in half '\n' so the dialog will not
+#. be too wide.
+#: ../settings/main.c:1760
+msgid ""
+"Would you like to arrange all existing\n"
+"icons according to the selected orientation?"
+msgstr ""
+
+#: ../settings/main.c:1766
+msgid "Arrange icons"
+msgstr ""
+
+#. printf is to be translator-friendly
+#: ../settings/main.c:1774 

[Xfce4-commits] [www/www.xfce.org] branch master updated (dea1dd3 -> 87ff898)

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

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

  from  dea1dd3   Add Galician (gl) to the list of supported languages. 
(Bug #15118)
   new  87ff898   I18n: Update translation da (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:
 lib/po/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [xfce/xfdesktop] branch master updated (aa20e2c -> eb2c701)

2019-03-07 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  aa20e2c   I18n: Update translation da (100%).
   new  8209dc7   I18n: Update translation da (100%).
   new  eb2c701   I18n: Update translation fa_IR (93%).

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/da.po|   6 +-
 po/fa_IR.po | 341 ++--
 2 files changed, 198 insertions(+), 149 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] [www/www.xfce.org] 01/01: I18n: Update translation da (100%).

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

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

commit 87ff89899dde0218dc82d7247a754f73a90b4e2a
Author: Anonymous 
Date:   Thu Mar 7 18:34:51 2019 +0100

I18n: Update translation da (100%).

680 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 lib/po/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/po/da.po b/lib/po/da.po
index 1227977..6dc824c 100644
--- a/lib/po/da.po
+++ b/lib/po/da.po
@@ -7,13 +7,13 @@
 # Chris Darnell , 2013,2016
 # Linuxbruger , 2018
 # scootergrisen, 2016
-# scootergrisen, 2016-2018
+# scootergrisen, 2016-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Websites\n"
 "Report-Msgid-Bugs-To: https://bugzilla.xfce.org\n;
 "POT-Creation-Date: 2017-05-24 12:49+0200\n"
-"PO-Revision-Date: 2018-11-27 21:23+\n"
+"PO-Revision-Date: 2019-03-07 12:48+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/xfce-www/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -463,7 +463,7 @@ msgstr "Organisering af udgivelsescyklus"
 msgid ""
 "Announce deadlines to developers and translators (repeatedly and early "
 "enough)"
-msgstr "Annoncer deadlines til udviklere og oversættere\n(gentaget og tidligt 
nok)"
+msgstr "Annoncer deadlines til udviklere og oversættere (gentaget og tidligt 
nok)"
 
 #: about/releasemodel.php:102
 msgid "Overseeing of maintainance and development releases"

-- 
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-sensors-plugin] 01/01: I18n: Update translation da (100%).

2019-03-07 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-sensors-plugin.

commit d1283de13cb875d1d4dff60acb48a2dc71cd4cfc
Author: Anonymous 
Date:   Thu Mar 7 18:34:31 2019 +0100

I18n: Update translation da (100%).

85 translated messages.

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

diff --git a/po/da.po b/po/da.po
index c390baa..6c382b8 100644
--- a/po/da.po
+++ b/po/da.po
@@ -7,13 +7,13 @@
 # Chris Darnell , 2013
 # Jens Hyllegaard , 2007
 # Per Kongstad , 2008
-# scootergrisen, 2017-2018
+# scootergrisen, 2017-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-11-02 00:32+0100\n"
-"PO-Revision-Date: 2018-11-02 23:21+\n"
+"PO-Revision-Date: 2019-03-07 14:27+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -80,7 +80,7 @@ msgstr "_Dæk alle panelrækker/-kolonner"
 
 #: ../panel-plugin/sensors-plugin.c:2211
 msgid "F_ont size:"
-msgstr "_Skrifttypestørrelse:"
+msgstr "_Størrelse på skrifttype:"
 
 #: ../panel-plugin/sensors-plugin.c:2217
 msgid "x-small"
@@ -204,7 +204,7 @@ msgstr "Strøm"
 
 #: ../lib/acpi.c:741
 msgid "Voltage"
-msgstr "Volt"
+msgstr "Spænding"
 
 #: ../lib/acpi.c:801 ../lib/acpi.c:813
 msgid "ACPI"
@@ -394,7 +394,7 @@ msgid ""
 "  -V, --version Print version information.\n"
 "\n"
 "This program is published under the GPL v2.\n"
-msgstr "Xfce4-sensorere %s\nViser information om dine hardwaresensorere, 
ACPI-status, harddisk-temperaturere og Nvidia GPU'ers 
temperature.\nOpsummering: \n  xfce4-sensors [tilvalg]\nhvor [tilvalg] er en af 
de følgende:\n  -h, --helpPrint denne hjælp-dialog.\n  -l, --license Print 
licensinformation.\n  -V, --version Print versionsinformation.\n\nDette program 
er udgivet under GPL v2.\n"
+msgstr "Xfce4-sensorere %s\nViser information om dine hardwaresensorere, 
ACPI-status, harddisk-temperaturere og Nvidia GPU'ers 
temperature.\nOpsummering: \n  xfce4-sensors [tilvalg]\nhvor [tilvalg] er en af 
de følgende:\n  -h, --helpUdskriv denne hjælp-dialog.\n  -l, --license 
Udskriv licensinformation.\n  -V, --version Udskriv 
versionsinformation.\n\nDette program er udgivet under GPL v2.\n"
 
 #: ../src/main.c:100
 #, c-format

-- 
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-sensors-plugin] branch master updated (6c0e4d3 -> d1283de)

2019-03-07 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-sensors-plugin.

  from  6c0e4d3   I18n: Update translation pt_BR (100%).
   new  d1283de   I18n: Update translation da (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/da.po | 10 +-
 1 file changed, 5 insertions(+), 5 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] 01/01: I18n: Update translation da (100%).

2019-03-07 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 dc129137d3512566ca34e18ebb75d13eed630317
Author: Anonymous 
Date:   Thu Mar 7 18:34:14 2019 +0100

I18n: Update translation da (100%).

24 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 185c22e..3a27f8a 100644
--- a/po/da.po
+++ b/po/da.po
@@ -6,13 +6,13 @@
 # Aputsiak Niels Janussen (Skjalden) , 2013
 # Jens Hyllegaard , 2007
 # Morten Juhl-Johansen Zölde-Fejér , 2016
-# scootergrisen, 2016-2018
+# scootergrisen, 2016-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-12-09 00:31+0100\n"
-"PO-Revision-Date: 2018-12-11 06:53+\n"
+"PO-Revision-Date: 2019-03-07 14:32+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -84,7 +84,7 @@ msgstr "Variabler : %vol%, %status%, %newline%, %artist%, 
%album%, %file%, %trac
 #: ../panel-plugin/xfce4-mpc-plugin.c:477
 #: ../panel-plugin/xfce4-mpc-plugin.c:708
 msgid " not connected ?"
-msgstr " ikke tilsluttet ?"
+msgstr " ikke tilsluttet?"
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:562
 msgid "Mpd playlist"

-- 
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 (555053c -> dc12913)

2019-03-07 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  555053c   I18n: Update translation th (100%).
   new  dc12913   I18n: Update translation da (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/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-battery-plugin] branch master updated (de7ae43 -> 91f12b6)

2019-03-07 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  de7ae43   I18n: Update translation uk (100%).
   new  91f12b6   I18n: Update translation es (100%).

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


Summary of changes:
 po/es.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


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

2019-03-07 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 d2e1c30313972bb9e93ecab4ea76775242d22865
Author: Javier F. Serrador 
Date:   Thu Mar 7 18:33:53 2019 +0100

I18n: Update translation es (100%).

15 translated messages.

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

diff --git a/po/es.po b/po/es.po
index f1aed7a..52da77e 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,8 +7,8 @@
 # Nick Schermer , 2019
 # Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] , 2019
 # gabrieltandil , 2019
-# Adolfo Jayme Barrientos, 2019
-# Jaime Marquínez Ferrándiz, 2019
+# Adolfo Jayme-Barrientos, 2019
+# Javier F. Serrador , 2019
 # 
 #, fuzzy
 msgid ""
@@ -17,7 +17,7 @@ msgstr ""
 "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: Jaime Marquínez Ferrándiz, 2019\n"
+"Last-Translator: Javier F. Serrador , 2019\n"
 "Language-Team: Spanish (https://www.transifex.com/xfce/teams/16840/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -32,7 +32,7 @@ msgstr "Error de la calculadora: %s"
 
 #: ../panel-plugin/calculator.c:227
 msgid " Calc:"
-msgstr "Cálculo:"
+msgstr "Cálc:"
 
 #: ../panel-plugin/calculator.c:399
 msgid "Calculator Plugin"
@@ -64,7 +64,7 @@ msgstr "Calculadora para el panel de Xfce"
 
 #: ../panel-plugin/calculator.c:476
 msgid "Copyright (c) 2003-2019\n"
-msgstr "Derechos de autor © 2003-2019\n"
+msgstr "© 2003-2019\n"
 
 #: ../panel-plugin/calculator.c:526
 msgid "Trigonometrics use degrees"

-- 
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] 01/01: I18n: Update translation es (100%).

2019-03-07 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 91f12b674365d4e06a6e10106d1e306076bf354a
Author: Javier F. Serrador 
Date:   Thu Mar 7 18:33:45 2019 +0100

I18n: Update translation es (100%).

42 translated messages.

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

diff --git a/po/es.po b/po/es.po
index 927e396..7ea50bc 100644
--- a/po/es.po
+++ b/po/es.po
@@ -14,8 +14,8 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-01-01 00:31+0100\n"
-"PO-Revision-Date: 2019-01-14 15:13+\n"
-"Last-Translator: Adolfo Jayme-Barrientos\n"
+"PO-Revision-Date: 2019-03-07 15:52+\n"
+"Last-Translator: Javier F. Serrador \n"
 "Language-Team: Spanish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\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] [panel-plugins/xfce4-calculator-plugin] branch master updated (c03fd67 -> d2e1c30)

2019-03-07 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  c03fd67   I18n: Update translation ja (100%).
   new  d2e1c30   I18n: Update translation es (100%).

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


Summary of changes:
 po/es.po | 10 +-
 1 file changed, 5 insertions(+), 5 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 da (100%).

2019-03-07 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 9b1fd1566246b20b5a8b5f9dc683a91f28b4c21d
Author: Anonymous 
Date:   Thu Mar 7 18:33:35 2019 +0100

I18n: Update translation da (100%).

400 translated messages.

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

diff --git a/po/da.po b/po/da.po
index a6248bd..8260a97 100644
--- a/po/da.po
+++ b/po/da.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-03-05 00:31+0100\n"
-"PO-Revision-Date: 2019-03-07 11:15+\n"
+"PO-Revision-Date: 2019-03-07 13:35+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -1440,7 +1440,7 @@ msgstr "Brug brugerdefineret udseende til at gøre 
faneblade _smalle (kræver ge
 
 #: ../terminal/terminal-preferences.glade.h:116
 msgid "Tabs"
-msgstr "Tabulatorer"
+msgstr "Faneblade"
 
 #: ../terminal/terminal-preferences.glade.h:117
 msgid "_Appearance"

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


[Xfce4-commits] [apps/xfce4-terminal] branch master updated (24d9b1f -> 9b1fd15)

2019-03-07 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  24d9b1f   I18n: Update translation da (100%).
   new  9b1fd15   I18n: Update translation da (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/da.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


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

2019-03-07 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 69f8eff8fd29f3d2b376ec1e20918085337e2c5e
Author: Anonymous 
Date:   Thu Mar 7 18:33:24 2019 +0100

I18n: Update translation da (100%).

56 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 043447c..d37fbb9 100644
--- a/po/da.po
+++ b/po/da.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-01-10 06:31+0100\n"
-"PO-Revision-Date: 2019-01-12 23:33+\n"
+"PO-Revision-Date: 2019-03-07 12:45+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgstr "Titel:"
 msgid ""
 "The title of the screenshot, it will be used when displaying the screenshot "
 "on the image hosting service"
-msgstr "Titlen på skærmbilledet. Det bruges når skærmbilledet vises på 
billedhosting-tjenesten."
+msgstr "Titlen på skærmbilledet, der bruges når skærmbilledet vises på 
billedhosting-tjenesten"
 
 #. Create the comment label
 #: ../lib/screenshooter-job-callbacks.c:256
@@ -234,7 +234,7 @@ msgstr "Kommentar:"
 msgid ""
 "A comment on the screenshot, it will be used when displaying the screenshot "
 "on the image hosting service"
-msgstr "En kommentar på skærmbilledet. Det bruges når skærmbilledet vises på 
billedhosting-tjenesten."
+msgstr "En kommentar på skærmbilledet, der bruges når skærmbilledet vises på 
billedhosting-tjenesten"
 
 #: ../src/main.c:49
 msgid "Copy the screenshot to the clipboard"

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


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

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

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

commit 81d7aba7653393405495f4bf088543a9cc4401d2
Author: Anonymous 
Date:   Thu Mar 7 18:32:59 2019 +0100

I18n: Update translation da (100%).

306 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 7049017..36ae67a 100644
--- a/po/da.po
+++ b/po/da.po
@@ -6,13 +6,13 @@
 # Aputsiak Niels Janussen (Skjalden) , 2014
 # Aputsiak Niels Janussen (Skjalden) , 2014
 # Chris Darnell , 2013
-# scootergrisen, 2016-2018
+# scootergrisen, 2016-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-09-24 00:31+0200\n"
-"PO-Revision-Date: 2018-09-27 22:36+\n"
+"PO-Revision-Date: 2019-03-07 14:30+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -523,7 +523,7 @@ msgid ""
 "You are about to add your home directory to the composition. This is likely 
to take a very long time, and also to be too big to fit on one disc.\n"
 "\n"
 "Are you sure you want to proceed?"
-msgstr "Du er ved at tilføje din hjemmemappe til projektet. Dette vil højst 
sandsynligt tage lang tid og vil også være for stor til at kunne være på én 
disk. \n\nEr du sikker på. at du vil fortsætte?"
+msgstr "Du er ved at tilføje din hjemmemappe til projektet. Dette vil højst 
sandsynligt tage lang tid og vil også være for stor til at kunne være på én 
disk. \n\nEr du sikker på, at du vil fortsætte?"
 
 #: ../xfburn/xfburn-data-composition.c:1542
 #, c-format
@@ -592,7 +592,7 @@ msgstr "Er kombinationen af hardware og disk gyldig for at 
brænde projektet?"
 
 #: ../xfburn/xfburn-device-box.c:186
 msgid "The blank mode shows different disc status messages than regular mode"
-msgstr "Sletningstilstanden viser nogle andre diskstatusbeskeder end normal 
tilstand"
+msgstr "Sletningstilstanden viser nogle andre diskstatusmeddelelser end normal 
tilstand"
 
 #: ../xfburn/xfburn-device-box.c:239
 msgid "_Speed:"
@@ -619,7 +619,7 @@ msgstr "Er ikke i stand til at læse hastighedslisten for 
drevet.\n\nDett
 
 #: ../xfburn/xfburn-device-box.c:395
 msgid "Continue to _show this notice"
-msgstr "Fortsæt med at _vise denne besked"
+msgstr "Fortsæt med at _vise denne meddelelse"
 
 #: ../xfburn/xfburn-device-box.c:442
 msgid "default"

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


[Xfce4-commits] [apps/xfce4-dict] branch master updated (242deb7 -> e010f70)

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

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

  from  242deb7   I18n: Update translation nl (100%).
   new  e010f70   I18n: Update translation da (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/da.po | 8 
 1 file changed, 4 insertions(+), 4 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] branch master updated (187d4ec -> 69f8eff)

2019-03-07 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  187d4ec   React to core X input events when XInput is not available 
(Bug #15166)
   new  69f8eff   I18n: Update translation da (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/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

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

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

commit e010f70b5da6e2dd48d0b745e3a3ee8b401087e9
Author: Anonymous 
Date:   Thu Mar 7 18:33:09 2019 +0100

I18n: Update translation da (100%).

119 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 422d31e..87e890d 100644
--- a/po/da.po
+++ b/po/da.po
@@ -6,14 +6,14 @@
 # Aputsiak Niels Janussen (Skjalden) , 2013
 # Aputsiak Niels Janussen (Skjalden) , 2013
 # Jens Hyllegaard , 2007
-# scootergrisen, 2016-2018
+# scootergrisen, 2016-2019
 # Søren Waaben Hansen , 2008
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-05-07 00:31+0200\n"
-"PO-Revision-Date: 2018-09-14 00:15+\n"
+"PO-Revision-Date: 2019-03-07 13:36+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -215,7 +215,7 @@ msgid ""
 "Enter some text here you would like to read.\n"
 "\n"
 "Be relaxed and make yourself comfortable, then press Start to begin speed 
reading."
-msgstr "Indtast en tekst som du ønsker at læse.\n\nVær afslappet og have det 
komfortabelt, før du trykker Begynd for at starte læsehastighedsmåling."
+msgstr "Indtast en tekst som du ønsker at læse.\n\nVær afslappet og have det 
komfortabelt, før du trykker Start for at starte læsehastighedsmåling."
 
 #: ../lib/speedreader.c:677
 msgid "Load the contents of a file"
@@ -232,7 +232,7 @@ msgstr "Ryd indholdet af tekstfeltet"
 
 #: ../lib/speedreader.c:698
 msgid "_Start"
-msgstr "_Begynd"
+msgstr "_Start"
 
 #: ../lib/common.c:186
 msgid "The search URL is empty. Please check your preferences."

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


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

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

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

commit 218d91e4130cb44ca6bb684d5655e27e17e212b9
Author: Anonymous 
Date:   Thu Mar 7 18:32:49 2019 +0100

I18n: Update translation da (100%).

198 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 4edb22c..8ee553a 100644
--- a/po/da.po
+++ b/po/da.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
 "POT-Creation-Date: 2017-01-26 18:30+0100\n"
-"PO-Revision-Date: 2019-03-07 11:16+\n"
+"PO-Revision-Date: 2019-03-07 13:49+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -855,7 +855,7 @@ msgstr "Tjenesten til miniaturer kan ikke kontaktes,\nog 
derfor kan miniaturer i
 
 #: ../src/thumbnailer.c:476
 msgid "Do _not show this message again"
-msgstr "Undla_d at vise denne besked igen"
+msgstr "Undla_d at vise denne meddelelse igen"
 
 #: ../src/xfce_wallpaper_manager.c:378 ../src/gnome_wallpaper_manager.c:223
 msgid "Style:"

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


[Xfce4-commits] [apps/ristretto] branch master updated (d18acac -> 218d91e)

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

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

  from  d18acac   I18n: Update translation da (100%).
   new  218d91e   I18n: Update translation da (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/da.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


[Xfce4-commits] [apps/catfish] branch master updated (5f60358 -> f162714)

2019-03-07 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  5f60358   I18n: Update translation da (99%).
   new  2f12d61   I18n: Update translation da (100%).
   new  f162714   I18n: Update translation eu (97%).

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/da.po |  6 +++---
 po/eu.po | 50 --
 2 files changed, 51 insertions(+), 5 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/xfburn] branch master updated (a01073a -> 81d7aba)

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

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

  from  a01073a   I18n: Update translation es (100%).
   new  81d7aba   I18n: Update translation da (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/da.po | 10 +-
 1 file changed, 5 insertions(+), 5 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/02: I18n: Update translation da (100%).

2019-03-07 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 2f12d616dbe7765a3f20422e93b6948dabe2aefc
Author: Anonymous 
Date:   Thu Mar 7 18:32:17 2019 +0100

I18n: Update translation da (100%).

118 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 1a5cf5c..1395567 100644
--- a/po/da.po
+++ b/po/da.po
@@ -176,7 +176,7 @@ msgstr "Vælg en mappe"
 
 #: ../data/ui/CatfishWindow.ui.h:33
 msgid "Search for files"
-msgstr ""
+msgstr "Søg efter filer"
 
 #: ../data/ui/CatfishWindow.ui.h:34
 msgid "Compact List"
@@ -536,8 +536,8 @@ msgid ""
 msgstr ""
 "Denne udgivelse byder på adskillige forbedringer til behandling af miniature"
 " og mange fejlrettelser. Forhåndsvisning af ikoner er blevet forbedret og "
-"matcher nu andre programmer.  Punkter som vises nederst i resultatsvinduet "
-"og kan nu tilgås med alle skrivebordstemaer."
+"matcher nu andre programmer. Punkter som vises nederst i resultatsvinduet og"
+" kan nu tilgås med alle skrivebordstemaer."
 
 #: ../data/metainfo/catfish.appdata.xml.in.h:7
 msgid "This is a minor translations-only release."

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


[Xfce4-commits] [apps/parole] branch master updated (250750b -> fc34a42)

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

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

  from  250750b   I18n: Update translation da (100%).
   new  fc34a42   I18n: Update translation da (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/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

2019-03-07 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-settings.

commit 16614d4305b786ca68ad5065aba9e314d5981624
Author: Anonymous 
Date:   Thu Mar 7 18:31:58 2019 +0100

I18n: Update translation da (100%).

402 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 9ad8be0..c54524b 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-11-12 00:30+0100\n"
-"PO-Revision-Date: 2019-03-07 11:05+\n"
+"PO-Revision-Date: 2019-03-07 14:31+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-settings/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -911,7 +911,7 @@ msgstr "OK"
 
 #: ../dialogs/keyboard-settings/command-dialog.c:137
 msgid "Enter the command you want to trigger with a shortcut."
-msgstr "Angiv den kommando som du ønsker at udløse med en genvej."
+msgstr "Angiv den kommando som du vil udløse med en genvej."
 
 #. We are editing an existing shortcut
 #: ../dialogs/keyboard-settings/command-dialog.c:155
@@ -969,7 +969,7 @@ msgstr "Ruby-scripter"
 #: ../dialogs/keyboard-settings/command-dialog.c:302
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:427
 msgid "Shell Scripts"
-msgstr "Skalscripter"
+msgstr "Skal-scripter"
 
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:1
 msgid "Keyboard layout selection"
@@ -1273,7 +1273,7 @@ msgstr "Kunne ikke angive program \"%s\" for MIME-type 
\"%s\"."
 #: ../dialogs/mime-settings/xfce-mime-window.c:899
 #, c-format
 msgid "Are you sure you want to reset content type \"%s\" to its default 
value?"
-msgstr "Er du sikker på, at du ønsker at nulstille indholdstypen \"%s\" til 
dens standardværdi?"
+msgstr "Er du sikker på, at du vil nulstille indholdstypen \"%s\" til dens 
standardværdi?"
 
 #: ../dialogs/mime-settings/xfce-mime-window.c:906
 msgid ""

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


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

2019-03-07 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-settings.

commit 9e6fc7141be8fd8176a3312005b9f76ecc6c66c0
Author: Anonymous 
Date:   Thu Mar 7 18:32:09 2019 +0100

I18n: Update translation da (100%).

359 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 58a69b4..5efe1d7 100644
--- a/po/da.po
+++ b/po/da.po
@@ -819,7 +819,7 @@ msgstr "Genvejskommando"
 
 #: ../dialogs/keyboard-settings/command-dialog.c:147
 msgid "Enter the command you want to trigger with a shortcut."
-msgstr "Angiv den kommando som du ønsker at udløse med en genvej."
+msgstr "Angiv den kommando som du vil udløse med en genvej."
 
 #. We are editing an existing shortcut
 #: ../dialogs/keyboard-settings/command-dialog.c:165
@@ -870,7 +870,7 @@ msgstr "Ruby-scripter"
 #: ../dialogs/keyboard-settings/command-dialog.c:309
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:426
 msgid "Shell Scripts"
-msgstr "Skalscripter"
+msgstr "Skal-scripter"
 
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:1
 msgid "Keyboard layout selection"
@@ -1173,7 +1173,7 @@ msgstr "Kunne ikke angive program \"%s\" for MIME-type 
\"%s\"."
 #, c-format
 msgid "Are you sure you want to reset content type \"%s\" to its default 
value?"
 msgstr ""
-"Er du sikker på, at du ønsker at nulstille indholdstypen \"%s\" til dens "
+"Er du sikker på, at du vil nulstille indholdstypen \"%s\" til dens "
 "standardværdi?"
 
 #: ../dialogs/mime-settings/xfce-mime-window.c:915

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


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

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

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

commit fc34a42746cb3591d9d30036a92399669232d6fb
Author: Anonymous 
Date:   Thu Mar 7 18:32:41 2019 +0100

I18n: Update translation da (100%).

301 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 716ffaa..f928b72 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-08-25 12:31+0200\n"
-"PO-Revision-Date: 2019-03-07 11:29+\n"
+"PO-Revision-Date: 2019-03-07 13:49+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -678,7 +678,7 @@ msgstr "Denne udgivelse byder på den komplette overgang til 
Gtk+3-værktøjskit
 
 #: ../src/common/parole-common.c:83
 msgid "Message"
-msgstr "Besked"
+msgstr "Meddelelse"
 
 #: ../src/common/parole-common.c:87
 msgid "Error"
@@ -1052,7 +1052,7 @@ msgstr "Gå venligst til 
https://docs.xfce.org/apps/parole/bugs for at rapporter
 
 #: ../src/parole-player.c:2815
 msgid "Go"
-msgstr "Start"
+msgstr "Gå"
 
 #: ../src/parole-player.c:2828
 msgid "Position:"

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


[Xfce4-commits] [xfce/xfce4-settings] branch xfce-4.12 updated (90b8da6 -> 9e6fc71)

2019-03-07 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-settings.

  from  90b8da6   I18n: Update translation da (100%).
   new  9e6fc71   I18n: Update translation da (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/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [apps/orage] branch master updated (1136cf2 -> 9652a39)

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

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

  from  1136cf2   I18n: Update translation pt (100%).
   new  9652a39   I18n: Update translation da (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/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

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

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

commit 9652a39ce55b6f1f5dc010340166027248c31cdc
Author: Anonymous 
Date:   Thu Mar 7 18:32:32 2019 +0100

I18n: Update translation da (100%).

1030 translated messages.

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

diff --git a/po/da.po b/po/da.po
index eeb8f11..085d300 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,13 +8,13 @@
 # Aputsiak Niels Janussen (Skjalden) , 2013
 # Morten Juhl-Johansen Zölde-Fejér , 2014
 # scootergrisen, 2016
-# scootergrisen, 2016-2018
+# scootergrisen, 2016-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-09-23 12:30+0200\n"
-"PO-Revision-Date: 2018-09-27 22:32+\n"
+"PO-Revision-Date: 2019-03-07 13:49+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -1200,7 +1200,7 @@ msgstr "_Vis"
 #. * Go menu   *
 #: ../src/day-view.c:303 ../src/event-list.c:1123
 msgid "_Go"
-msgstr "_Gå til"
+msgstr "_Gå"
 
 #: ../src/day-view.c:377 ../src/event-list.c:1169
 msgid "New"

-- 
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] 02/02: I18n: Update translation eu (97%).

2019-03-07 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 f16271419862739b27cc0346eb168b0d30390a05
Author: beriain 
Date:   Thu Mar 7 18:32:17 2019 +0100

I18n: Update translation eu (97%).

115 translated messages, 3 untranslated messages.

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

diff --git a/po/eu.po b/po/eu.po
index d0c2348..64b2891 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -282,6 +282,8 @@ msgid ""
 "If path and query are provided, start searching when the application is "
 "displayed."
 msgstr ""
+"Bidea eta kontsulta ematen badira, bilatzen hasi aplikazioa bistaratu eta "
+"berehala."
 
 #. Translators: this text is displayed next to
 #. a filename that is not utf-8 encoded.
@@ -328,6 +330,8 @@ msgid ""
 "Search is in progress...\n"
 "Press the cancel button or the Escape key to stop."
 msgstr ""
+"Bilaketa martxan da...\n"
+"Sakatu utzi botoia edo Esc tekla gelditzeko."
 
 #: ../catfish/CatfishWindow.py:767
 msgid "Begin Search"
@@ -358,7 +362,7 @@ msgstr "Gorde \"%s\" honela…"
 msgid ""
 "Are you sure that you want to \n"
 "permanently delete \"%s\"?"
-msgstr ""
+msgstr "\"%s\" betiko ezabatu nahi duzu?"
 
 #: ../catfish/CatfishWindow.py:1101
 #, python-format
@@ -366,6 +370,8 @@ msgid ""
 "Are you sure that you want to \n"
 "permanently delete the %i selected files?"
 msgstr ""
+"Hautatutako %i fitxategiak betiko\n"
+"ezabatu nahi dituzu?"
 
 #: ../catfish/CatfishWindow.py:1104
 msgid "If you delete a file, it is permanently lost."
@@ -408,6 +414,8 @@ msgid ""
 "Try making your search less specific\n"
 "or try another directory."
 msgstr ""
+"Saiatu bilaketa ez hain zehatza egiten\n"
+"edo saiatu beste karpeta batean bilatzen."
 
 #: ../catfish/CatfishWindow.py:1465
 msgid "1 file found."
@@ -475,6 +483,8 @@ msgid ""
 "The application '%s' lets you\n"
 "modify essential parts of your system."
 msgstr ""
+"'%s' aplikazioak zure sistemaren\n"
+"oinarrizko zatiak aldatzea baimentzen du."
 
 #: ../data/metainfo/catfish.appdata.xml.in.h:1
 msgid "Versatile file searching tool"
@@ -488,16 +498,24 @@ msgid ""
 "modification date, file type, and file contents, users will no longer be "
 "dependent on the file manager or organization skills."
 msgstr ""
+"Catfish fitxategiak bilaketzeko tresna txikia, bizkorra eta ahaltsua da. "
+"Interfaze minimoarekin eta emaitzetan enfasia jarriz, erabiltzaileak behar "
+"dituen fitxategiak aurkitzen laguntzen du fitxategi kudeatzaile bat erabili "
+"gabe. Aldatze data, fitxategi mota eta fitxategien edukiak bezalako iragazki"
+" ahaltsuekin, erabiltzaileak ez dira gehiago fitxategi kudeatzaileen edo "
+"antolaketa trebetasunaren menpekoak izango."
 
 #: ../data/metainfo/catfish.appdata.xml.in.h:3
 msgid "The main Catfish window displaying image search results"
-msgstr ""
+msgstr "Catfishen leiho nagusia irudi bilaketa emaitzak erakusten"
 
 #: ../data/metainfo/catfish.appdata.xml.in.h:4
 msgid ""
 "The main Catfish window displaying available filters and filtered search "
 "results"
 msgstr ""
+"Catfishen leiho nagusia iragazki erabilgarriak eta iragazitako bilaketa "
+"emaitzak erakusten "
 
 #: ../data/metainfo/catfish.appdata.xml.in.h:5
 msgid ""
@@ -506,6 +524,10 @@ msgid ""
 "processed. Files can be dragged into other applications. Thumbnails are only"
 " generated when requested by the user."
 msgstr ""
+"Bertsio honek errendimendua hobetzen du, mahaigaineko integrazio hobea dakar"
+" eta arazo zahar ugari konpontzen ditu. Aipatutako bilaketa terminoak ondo "
+"prozesatzen dira orain. Fitxategiak beste aplikazioetara arrastatu daitezke."
+" Iruditxoak soilik erabiltzaileak zehaztutakoan sortzen dira."
 
 #: ../data/metainfo/catfish.appdata.xml.in.h:6
 msgid ""
@@ -524,12 +546,16 @@ msgid ""
 "This release features several performance improvements and numerous "
 "translation updates."
 msgstr ""
+"Bertsio honek errendimendu hobekuntza eta itzulpen eguneraketa ugari "
+"dakartza."
 
 #: ../data/metainfo/catfish.appdata.xml.in.h:9
 msgid ""
 "This release now displays all file timestamps according to timezone instead "
 "of Universal Coordinated Time (UTC)."
 msgstr ""
+"Bertsio honek fitxategi denborak ordu eremuaren arabera erakusten ditu eta "
+"ez Universal Coordinated Time (UTC)ren arabera."
 
 #: ../data/metainfo/catfish.appdata.xml.in.h:10
 msgid ""
@@ -551,12 +577,16 @@ msgstr ""
 #: ../data/metainfo/catfish.appdata.xml.in.h:12
 msgid "This release fixes two new bugs and includes updated translations."
 msgstr ""
+"Bertsio honek bi akats berri konpontzen ditu eta itzulpen eguneratuak "
+"sartzen ditu."
 
 #: ../data/metainfo/catfish.appdata.xml.in.h:13
 msgid ""
 "This release fixes a 

[Xfce4-commits] [xfce/xfce4-settings] branch master updated (2193f85 -> 16614d4)

2019-03-07 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-settings.

  from  2193f85   I18n: Update translation da (100%).
   new  16614d4   I18n: Update translation da (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/da.po | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

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


[Xfce4-commits] [xfce/xfce4-power-manager] branch master updated (61d7f20 -> 159c86c)

2019-03-07 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-power-manager.

  from  61d7f20   I18n: Update translation pt (100%).
   new  159c86c   I18n: Update translation da (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/da.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


[Xfce4-commits] [xfce/xfce4-power-manager] 01/01: I18n: Update translation da (100%).

2019-03-07 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-power-manager.

commit 159c86cc51f07e200502eecf15ec1901452c1050
Author: Anonymous 
Date:   Thu Mar 7 18:31:46 2019 +0100

I18n: Update translation da (100%).

209 translated messages.

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

diff --git a/po/da.po b/po/da.po
index d22abc6..574d72c 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-power-manager\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-02-16 06:31+0100\n"
-"PO-Revision-Date: 2019-02-22 10:41+\n"
+"PO-Revision-Date: 2019-03-07 13:48+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-power-manager/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -864,7 +864,7 @@ msgstr "Skriv \"%s --help\" for anvendelse."
 
 #: ../src/xfpm-main.c:343
 msgid "Unable to get connection to the message bus session"
-msgstr "Kunne ikke forbinde til beskedsbussessionen"
+msgstr "Kunne ikke forbinde til meddelelsesbussessionen"
 
 #: ../src/xfpm-main.c:351
 #, c-format

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

2019-03-07 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 176a762f4af5c3d4278916c6cc0827580cde1281
Author: Anonymous 
Date:   Thu Mar 7 18:31:36 2019 +0100

I18n: Update translation da (100%).

396 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 6b1087c..8c4940d 100644
--- a/po/da.po
+++ b/po/da.po
@@ -177,7 +177,7 @@ msgstr "Kunne ikke afslutte panelet"
 
 #: ../panel/main.c:393
 msgid "Failed to send D-Bus message"
-msgstr "Kunne ikke sende D-bus-besked"
+msgstr "Kunne ikke sende D-bus-meddelelse"
 
 #: ../panel/main.c:404
 msgid ""

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


[Xfce4-commits] [xfce/xfce4-panel] branch master updated (efc1d70 -> 485f072)

2019-03-07 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  efc1d70   I18n: Update translation da (100%).
   new  485f072   I18n: Update translation da (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/da.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


[Xfce4-commits] [xfce/xfce4-panel] branch xfce-4.12 updated (665efff -> 176a762)

2019-03-07 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  665efff   I18n: Update translation da (100%).
   new  176a762   I18n: Update translation da (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/da.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


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

2019-03-07 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 7d315ce2cd3a1c256585399ad6623df6d431c5b4
Author: Anonymous 
Date:   Thu Mar 7 18:31:11 2019 +0100

I18n: Update translation da (100%).

763 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 22c0554..4ad67f1 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3050,14 +3050,13 @@ msgid ""
 "\n"
 "You can then select the entry from the \"Create Document\" menu and a copy of 
the document will be created in the directory you are viewing."
 msgstr ""
-"Hvis du ofte opretter dokumenter samme type , så lav en kopi af en af disse 
og gem i denne mappe, som du befinder dig i. Thunar vil tilføje dette dokument 
til\n"
-" \"Opret dokument\" menuen.\n"
+"Hvis du ofte opretter dokumenter samme type , så lav en kopi af en af disse 
og gem i denne mappe, som du befinder dig i. Thunar vil tilføje dette dokument 
til \"Opret dokument\" menuen.\n"
 "\n"
 "Du kan vælge dette fra \"Opret dokument\" menuen, og en kopi af dette 
dokument vil blive oprettet i denne mappe, som du befinder dig i."
 
 #: ../thunar/thunar-window.c:3117
 msgid "Do _not display this message again"
-msgstr "Vis _ikke denne besked igen"
+msgstr "Vis _ikke denne meddelelse igen"
 
 #. display an error to the user
 #: ../thunar/thunar-window.c:3147

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

2019-03-07 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 485f0727c63d2966998f41fe9193ea170603b1ba
Author: Anonymous 
Date:   Thu Mar 7 18:31:26 2019 +0100

I18n: Update translation da (100%).

412 translated messages.

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

diff --git a/po/da.po b/po/da.po
index be6a860..71b2ac3 100644
--- a/po/da.po
+++ b/po/da.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-12-03 22:34+0100\n"
-"PO-Revision-Date: 2019-03-07 11:12+\n"
+"PO-Revision-Date: 2019-03-07 13:47+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-panel/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -219,7 +219,7 @@ msgstr "Kunne ikke afslutte panelet"
 
 #: ../panel/main.c:425
 msgid "Failed to send D-Bus message"
-msgstr "Kunne ikke sende D-bus-besked"
+msgstr "Kunne ikke sende D-bus-meddelelse"
 
 #: ../panel/main.c:435 ../panel/panel-plugin-external.c:438
 msgid "Execute"

-- 
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 (cf90c0e -> 4c07555)

2019-03-07 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  cf90c0e   I18n: Update translation fa_IR (85%).
   new  4c07555   I18n: Update translation da (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/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

2019-03-07 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/thunar.

commit 666d1158ac266150b5d7029161016d64109007a0
Author: Anonymous 
Date:   Thu Mar 7 18:30:58 2019 +0100

I18n: Update translation da (100%).

739 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 11c537c..03bb773 100644
--- a/po/da.po
+++ b/po/da.po
@@ -2905,7 +2905,7 @@ msgstr ""
 
 #: ../thunar/thunar-window.c:3063
 msgid "Do _not display this message again"
-msgstr "Vis _ikke denne besked igen"
+msgstr "Vis _ikke denne meddelelse igen"
 
 #. display an error to the user
 #: ../thunar/thunar-window.c:3093

-- 
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 (7507843 -> 7d315ce)

2019-03-07 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  7507843   I18n: Update translation fa_IR (81%).
   new  7d315ce   I18n: Update translation da (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/da.po | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [xfce/thunar] branch xfce-4.12 updated (62a7adb -> 666d115)

2019-03-07 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/thunar.

  from  62a7adb   I18n: Update translation da (100%).
   new  666d115   I18n: Update translation da (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/da.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] [thunar-plugins/thunar-vcs-plugin] 01/01: I18n: Update translation da (100%).

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

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

commit 54dad64d9313108d51282bb5171dffb93c73ff5a
Author: Anonymous 
Date:   Thu Mar 7 18:30:47 2019 +0100

I18n: Update translation da (100%).

307 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/da.po | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/po/da.po b/po/da.po
index 6b25249..90742a8 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,13 +8,13 @@
 # Chris Darnell , 2013
 # Jens Hyllegaard , 2007
 # scootergrisen, 2017
-# scootergrisen, 2017-2018
+# scootergrisen, 2017-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-06-27 06:30+0200\n"
-"PO-Revision-Date: 2018-07-03 17:06+\n"
+"PO-Revision-Date: 2019-03-07 13:46+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/thunar-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -689,7 +689,7 @@ msgstr "IntegrationsDato"
 #: ../tvp-git-helper/tgh-log-dialog.c:166
 #: ../tvp-svn-helper/tsh-log-dialog.c:146
 msgid "Message"
-msgstr "Besked"
+msgstr "Meddelelse"
 
 #: ../tvp-git-helper/tgh-log-dialog.c:216
 #: ../tvp-git-helper/tgh-stash-dialog.c:196
@@ -988,7 +988,7 @@ msgstr "Fuldført"
 
 #: ../tvp-svn-helper/tsh-commit.c:292
 msgid "Commit Message"
-msgstr "Integrérbesked"
+msgstr "Integrérmeddelelse"
 
 #: ../tvp-svn-helper/tsh-common.c:296
 msgid "Store password a plaintext?"
@@ -1295,7 +1295,7 @@ msgstr "Lokal sletning"
 
 #: ../tvp-svn-helper/tsh-delete.c:163
 msgid "Delete Message"
-msgstr "Slettebesked"
+msgstr "Slettemeddelelse"
 
 #: ../tvp-svn-helper/tsh-diff.c:207
 msgid "Diff failed"
@@ -1376,7 +1376,7 @@ msgstr "Certifikat"
 
 #: ../tvp-svn-helper/tsh-import.c:149
 msgid "Import Message"
-msgstr "Importbesked"
+msgstr "Importmeddelelse"
 
 #: ../tvp-svn-helper/tsh-log.c:128
 msgid "Log failed"
@@ -1404,7 +1404,7 @@ msgstr "Log ind"
 
 #: ../tvp-svn-helper/tsh-log-message-dialog.c:116
 msgid "Log Message"
-msgstr "Logbesked"
+msgstr "Logmeddelelse"
 
 #: ../tvp-svn-helper/tsh-move.c:112
 msgid "Local move"

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


[Xfce4-commits] [thunar-plugins/thunar-vcs-plugin] branch master updated (b420aed -> 54dad64)

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

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

  from  b420aed   I18n: Update translation es (95%).
   new  54dad64   I18n: Update translation da (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/da.po | 14 +++---
 1 file changed, 7 insertions(+), 7 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 da (100%).

2019-03-07 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 4c0755516183053f5aa23c90f6e3f133a5e49f0b
Author: Anonymous 
Date:   Thu Mar 7 18:30:33 2019 +0100

I18n: Update translation da (100%).

764 translated messages.

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

diff --git a/po/da.po b/po/da.po
index cd596d1..536810f 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-01-28 00:30+0100\n"
-"PO-Revision-Date: 2019-03-07 11:27+\n"
+"PO-Revision-Date: 2019-03-07 13:59+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/thunar/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -2923,11 +2923,11 @@ msgid ""
 "If you frequently create certain kinds  of documents, make a copy of one and 
put it in this folder. Thunar will add an entry for this document in the 
\"Create Document\" menu.\n"
 "\n"
 "You can then select the entry from the \"Create Document\" menu and a copy of 
the document will be created in the directory you are viewing."
-msgstr "Hvis du ofte opretter dokumenter samme type , så lav en kopi af en af 
disse og gem i denne mappe, som du befinder dig i. Thunar vil tilføje dette 
dokument til\n \"Opret dokument\" menuen.\n\nDu kan vælge dette fra \"Opret 
dokument\" menuen, og en kopi af dette dokument vil blive oprettet i denne 
mappe, som du befinder dig i."
+msgstr "Hvis du ofte opretter dokumenter samme type , så lav en kopi af en af 
disse og gem i denne mappe, som du befinder dig i. Thunar vil tilføje dette 
dokument til \"Opret dokument\" menuen.\n\nDu kan vælge dette fra \"Opret 
dokument\" menuen, og en kopi af dette dokument vil blive oprettet i denne 
mappe, som du befinder dig i."
 
 #: ../thunar/thunar-window.c:3117
 msgid "Do _not display this message again"
-msgstr "Vis _ikke denne besked igen"
+msgstr "Vis _ikke denne meddelelse igen"
 
 #. display an error to the user
 #: ../thunar/thunar-window.c:3147

-- 
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/libxfce4ui] 01/01: I18n: Update translation da (100%).

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

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

commit c49b863ce7740fac6510aaa568c959a2b8060ce0
Author: Anonymous 
Date:   Thu Mar 7 18:30:22 2019 +0100

I18n: Update translation da (100%).

175 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 2c8331e..5e1814c 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,13 +11,13 @@
 # olegb , 2008
 # olegb , 2008
 # Per Kongstad , 2009
-# scootergrisen, 2016-2018
+# scootergrisen, 2016-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Libxfce4ui\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-06-30 06:30+0200\n"
-"PO-Revision-Date: 2018-09-14 00:15+\n"
+"PO-Revision-Date: 2019-03-07 13:41+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/libxfce4ui/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -328,15 +328,15 @@ msgstr "Udfyld vinduet vandret"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:60
 msgid "Fill window vertically"
-msgstr "Fyld vinduet lodret"
+msgstr "Udfyld vinduet lodret"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:61
 msgid "Toggle above"
-msgstr "Aktivér over"
+msgstr "Øverst til/fra"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:62
 msgid "Toggle fullscreen"
-msgstr "Aktivér fuldskærm"
+msgstr "Fuldskærm til/fra"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:63
 msgid "Move window to upper workspace"

-- 
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/libxfce4ui] branch master updated (efeaf4c -> c49b863)

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

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

  from  efeaf4c   I18n: Update translation be (100%).
   new  c49b863   I18n: Update translation da (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/da.po | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

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


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

2019-03-07 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 e628d6e1497eb18718c0bb1834ae242d48a3be64
Author: Anonymous 
Date:   Thu Mar 7 18:30:04 2019 +0100

I18n: Update translation da (100%).

299 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 0a5f3db..6181c02 100644
--- a/po/da.po
+++ b/po/da.po
@@ -6,13 +6,13 @@
 # Aputsiak Niels Janussen (Skjalden) , 2013,2015
 # Aputsiak Niels Janussen (Skjalden) , 2013,2015
 # Linuxbruger , 2018
-# scootergrisen, 2016-2018
+# scootergrisen, 2016-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Exo\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-09-02 00:30+0200\n"
-"PO-Revision-Date: 2019-03-07 11:06+\n"
+"PO-Revision-Date: 2019-03-07 14:28+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/exo/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -486,7 +486,7 @@ msgstr "   %s [tilvalg] --build-list [[navnefil]...]\n"
 #: ../exo-csource/main.c:306
 #, c-format
 msgid "  -h, --helpPrint this help message and exit\n"
-msgstr "  -h, --helpUdskriv denne hjælpbesked og afslut\n"
+msgstr "  -h, --helpUdskriv denne hjælpemeddelelse og afslut\n"
 
 #: ../exo-csource/main.c:307
 #, c-format
@@ -1110,7 +1110,7 @@ msgid ""
 "Built with Gtk+-%d.%d.%d, running Gtk+-%d.%d.%d.\n"
 "\n"
 "Please report bugs to <%s>.\n"
-msgstr "%s (Xfce %s)\n\nOphavsret (c) 2003-2006\nos-cillation e.K. 
Alle rettigheder forbeholdes.\n\nSkrevet af Benedikt Meurer 
.\n\nKompileret med  Gtk+-%d.%d.%d, kørende 
Gtk+-%d.%d.%d.\n\nRapportér venligst fejl til <%s>.\n"
+msgstr "%s (Xfce %s)\n\nOphavsret (c) 2003-2006\nos-cillation e.K. 
Alle rettigheder forbeholdes.\n\nSkrevet af Benedikt Meurer 
.\n\nKompileret med Gtk+-%d.%d.%d, kørende 
Gtk+-%d.%d.%d.\n\nRapportér venligst fejl til <%s>.\n"
 
 #: ../exo-helper/main.c:251
 #, c-format
@@ -1339,7 +1339,7 @@ msgstr "   exo-open --launch TYPE [PARAMETRE...]"
 
 #: ../exo-open/main.c:112
 msgid "  -?, --help  Print this help message and exit"
-msgstr "  -?, --help  Udskriv denne hjælpbesked og 
afslut"
+msgstr "  -?, --help  Udskriv denne hjælpemeddelelse 
og afslut"
 
 #: ../exo-open/main.c:113
 msgid ""

-- 
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 (1b9a552 -> e628d6e)

2019-03-07 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  1b9a552   I18n: Update translation da (100%).
   new  e628d6e   I18n: Update translation da (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/da.po | 10 +-
 1 file changed, 5 insertions(+), 5 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/xfconf] 01/01: I18n: Update translation da (100%).

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

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

commit 177c82a37af5127e5a2f875d3e5cad5e8904e1d4
Author: Anonymous 
Date:   Thu Mar 7 12:34:30 2019 +0100

I18n: Update translation da (100%).

68 translated messages.

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

diff --git a/po/da.po b/po/da.po
index e7d00a4..c58c9ef 100644
--- a/po/da.po
+++ b/po/da.po
@@ -6,13 +6,13 @@
 # Aputsiak Niels Janussen (Skjalden) , 2014
 # Aputsiak Niels Janussen (Skjalden) , 2014
 # scootergrisen, 2017
-# scootergrisen, 2017-2018
+# scootergrisen, 2017-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfconf\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-06-01 18:31+0200\n"
-"PO-Revision-Date: 2018-11-28 09:12+\n"
+"PO-Revision-Date: 2019-03-07 11:30+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/xfconf/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -95,7 +95,7 @@ msgstr "Egenskabsnavne skal begynde med et '/'-tegn"
 #: ../xfconfd/xfconf-backend.c:110
 #, c-format
 msgid "The root element ('/') is not a valid property name"
-msgstr "Rodelementet ('/') er ikke et gyldigt egenskabnavn"
+msgstr "Rodelementet ('/') er ikke et gyldigt egenskabsnavn"
 
 #: ../xfconfd/xfconf-backend.c:125
 #, c-format

-- 
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 (3a33cf7 -> aa20e2c)

2019-03-07 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  3a33cf7   I18n: Update translation sv (100%).
   new  aa20e2c   I18n: Update translation da (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/da.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


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

2019-03-07 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 aa20e2c248d0024fe49b36a6a77f2bb8de8b24d1
Author: Anonymous 
Date:   Thu Mar 7 12:34:38 2019 +0100

I18n: Update translation da (100%).

243 translated messages.

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

diff --git a/po/da.po b/po/da.po
index ab63bd6..6fdb090 100644
--- a/po/da.po
+++ b/po/da.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-12-31 00:31+0100\n"
-"PO-Revision-Date: 2019-01-01 17:21+\n"
+"PO-Revision-Date: 2019-03-07 11:11+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfdesktop/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -1044,7 +1044,7 @@ msgstr "Skubber enheden ud"
 #: ../src/xfdesktop-notify.c:316
 #, c-format
 msgid "The device \"%s\" is being ejected. This may take some time"
-msgstr "Enheden \"%s\" skubbes ud. Dette kan tage lidt tid"
+msgstr "Enheden \"%s\" skubbes ud. Det kan tage lidt tid"
 
 #: ../src/xfdesktop-notify.c:406
 msgid "Eject Finished"

-- 
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/xfconf] branch master updated (3e464e7 -> 177c82a)

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

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

  from  3e464e7   I18n: Update translation pt_BR (100%).
   new  177c82a   I18n: Update translation da (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/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

2019-03-07 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-places-plugin.

commit 126df13ebcdc040ea16c38fb2dd631b5f558405c
Author: Anonymous 
Date:   Thu Mar 7 12:34:05 2019 +0100

I18n: Update translation da (100%).

45 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 169247e..e24f380 100644
--- a/po/da.po
+++ b/po/da.po
@@ -6,13 +6,13 @@
 # Chris Darnell , 2013
 # Jens Hyllegaard , 2007
 # Per Kongstad , 2008
-# scootergrisen, 2017
+# scootergrisen, 2017,2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-11-10 18:31+0100\n"
-"PO-Revision-Date: 2017-11-03 14:01+\n"
+"PO-Revision-Date: 2019-03-07 11:10+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -119,7 +119,7 @@ msgstr "Skubber enheden ud"
 #: ../panel-plugin/model_volumes_notify.c:256
 #, c-format
 msgid "The device \"%s\" is being ejected. This may take some time"
-msgstr "Enheden \"%s\" bliver skubbet ud. Det kan tage lidt tid"
+msgstr "Enheden \"%s\" skubbes ud. Det kan tage lidt tid"
 
 #: ../panel-plugin/view.c:637
 msgid "Search for Files"

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

2019-03-07 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 24d9b1f6ef2483394d67fb4082a16a79553e8834
Author: Anonymous 
Date:   Thu Mar 7 12:33:29 2019 +0100

I18n: Update translation da (100%).

400 translated messages.

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

diff --git a/po/da.po b/po/da.po
index ad7ecd6..a6248bd 100644
--- a/po/da.po
+++ b/po/da.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-03-05 00:31+0100\n"
-"PO-Revision-Date: 2019-03-04 23:40+\n"
+"PO-Revision-Date: 2019-03-07 11:15+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -432,7 +432,7 @@ msgstr "Terminal"
 #: ../terminal/terminal-screen.c:449 ../terminal/terminal-screen.c:833
 #: ../terminal/terminal-screen.c:2286
 msgid "Untitled"
-msgstr "Uden titel"
+msgstr "Unavngivet"
 
 #: ../terminal/terminal-screen.c:734
 #, c-format

-- 
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-datetime-plugin] 01/01: I18n: Update translation da (100%).

2019-03-07 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-datetime-plugin.

commit 2c276e1e9e4ff32ec5644944eb67966e0cc9bfe5
Author: Anonymous 
Date:   Thu Mar 7 12:33:46 2019 +0100

I18n: Update translation da (100%).

19 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 3cee371..f3eea1e 100644
--- a/po/da.po
+++ b/po/da.po
@@ -6,13 +6,13 @@
 # Claus Futtrup , 2008
 # Jens Hyllegaard , 2007
 # Per Kongstad , 2009
-# scootergrisen, 2017
+# scootergrisen, 2017,2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 20:55+0200\n"
-"PO-Revision-Date: 2017-11-03 11:13+\n"
+"PO-Revision-Date: 2019-03-07 11:15+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -48,7 +48,7 @@ msgstr "Kun klokkeslæt"
 #. placeholder
 #: ../panel-plugin/datetime-dialog.c:85 ../panel-plugin/datetime-dialog.c:96
 msgid "Custom..."
-msgstr "Tilpas..."
+msgstr "Tilpasset..."
 
 #: ../panel-plugin/datetime-dialog.c:131
 msgid "Select font"

-- 
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-datetime-plugin] branch master updated (8068f18 -> 2c276e1)

2019-03-07 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-datetime-plugin.

  from  8068f18   I18n: Update translation cs (100%).
   new  2c276e1   I18n: Update translation da (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/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-places-plugin] branch master updated (e2f7973 -> 126df13)

2019-03-07 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-places-plugin.

  from  e2f7973   I18n: Update translation be (100%).
   new  126df13   I18n: Update translation da (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/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [apps/xfce4-terminal] branch master updated (5881655 -> 24d9b1f)

2019-03-07 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  5881655   Unsafe Paste: Set focus to the "Paste" button
   new  24d9b1f   I18n: Update translation da (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/da.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


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

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

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

commit d18acac3ab22461b9d97eb5b148a7871a93849aa
Author: Anonymous 
Date:   Thu Mar 7 12:33:01 2019 +0100

I18n: Update translation da (100%).

198 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 5acdc6a..4edb22c 100644
--- a/po/da.po
+++ b/po/da.po
@@ -4,13 +4,13 @@
 # 
 # Translators:
 # Per Kongstad , 2008-2009
-# scootergrisen, 2016-2018
+# scootergrisen, 2016-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
 "POT-Creation-Date: 2017-01-26 18:30+0100\n"
-"PO-Revision-Date: 2018-09-14 00:15+\n"
+"PO-Revision-Date: 2019-03-07 11:16+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -234,12 +234,12 @@ msgstr "_Rotering"
 #. Icon-name
 #: ../src/main_window.c:498
 msgid "Rotate _Right"
-msgstr "Rotér til høj_re"
+msgstr "Drej til høj_re"
 
 #. Icon-name
 #: ../src/main_window.c:504
 msgid "Rotate _Left"
-msgstr "Rotér til _venstre"
+msgstr "Drej til _venstre"
 
 #: ../src/main_window.c:511
 msgid "_Flip"

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


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

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

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

commit 250750b58fdb0616ee093213be932aa16d1357e7
Author: Anonymous 
Date:   Thu Mar 7 12:32:53 2019 +0100

I18n: Update translation da (100%).

301 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 62b42d9..716ffaa 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-08-25 12:31+0200\n"
-"PO-Revision-Date: 2019-01-30 00:44+\n"
+"PO-Revision-Date: 2019-03-07 11:29+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -617,7 +617,7 @@ msgstr "Parole byder på afspilning af lokale mediefiler, 
inklusive videoer som
 
 #: ../data/appdata/parole.appdata.xml.in.h:3
 msgid "This is a minor translations-only release."
-msgstr "Dette er en mindre udgivelse som kun påvirker oversættelser."
+msgstr "Dette er en mindre udgivelse som kun har med oversættelser at gøre."
 
 #: ../data/appdata/parole.appdata.xml.in.h:4
 msgid ""

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


[Xfce4-commits] [apps/catfish] branch master updated (0ce9546 -> 5f60358)

2019-03-07 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  0ce9546   I18n: Update translation zh_TW (100%).
   new  91653a8   I18n: Update translation ca (100%).
   new  5f60358   I18n: Update translation da (99%).

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/ca.po | 32 ++--
 po/da.po | 36 
 2 files changed, 38 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] [xfce/xfce4-settings] branch xfce-4.12 updated (e1a523e -> 90b8da6)

2019-03-07 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-settings.

  from  e1a523e   I18n: Update translation zh_CN (100%).
   new  90b8da6   I18n: Update translation da (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/da.po | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

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


[Xfce4-commits] [apps/ristretto] branch master updated (1fe0e2a -> d18acac)

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

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

  from  1fe0e2a   I18n: Update translation ca (100%).
   new  d18acac   I18n: Update translation da (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/da.po | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

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


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

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

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

commit 283ea495ac1274815b5585c211f0b801b4514704
Author: Anonymous 
Date:   Thu Mar 7 12:32:40 2019 +0100

I18n: Update translation da (100%).

308 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 58173d0..63635f4 100644
--- a/po/da.po
+++ b/po/da.po
@@ -9,13 +9,13 @@
 # Chris Darnell , 2013,2016
 # Per Kongstad , 2012
 # scootergrisen, 2016
-# scootergrisen, 2016-2018
+# scootergrisen, 2016-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-06-05 06:31+0200\n"
-"PO-Revision-Date: 2018-09-14 00:16+\n"
+"PO-Revision-Date: 2019-03-07 11:15+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -151,7 +151,7 @@ msgstr "Luk dette faneblad"
 #. create an unique untitled document name
 #: ../mousepad/mousepad-document.c:532
 msgid "Untitled"
-msgstr "Uden titel"
+msgstr "Unavngivet"
 
 #. create the header
 #: ../mousepad/mousepad-encoding-dialog.c:126

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


[Xfce4-commits] [apps/mousepad] branch master updated (3038f02 -> 283ea49)

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

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

  from  3038f02   I18n: Update translation pt (100%).
   new  283ea49   I18n: Update translation da (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/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [apps/catfish] 02/02: I18n: Update translation da (99%).

2019-03-07 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 5f603586faf8943e4c2d0fb1d7ab70c9131b872c
Author: Anonymous 
Date:   Thu Mar 7 12:32:31 2019 +0100

I18n: Update translation da (99%).

117 translated messages, 1 untranslated message.

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

diff --git a/po/da.po b/po/da.po
index 814c087..1a5cf5c 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-27 21:24-0500\n"
+"POT-Creation-Date: 2019-03-05 20:20-0500\n"
 "PO-Revision-Date: 2018-06-28 22:08+\n"
 "Last-Translator: scootergrisen, 2019\n"
 "Language-Team: Danish (https://www.transifex.com/xfce/teams/16840/da/)\n"
@@ -175,58 +175,62 @@ msgid "Select a Directory"
 msgstr "Vælg en mappe"
 
 #: ../data/ui/CatfishWindow.ui.h:33
+msgid "Search for files"
+msgstr ""
+
+#: ../data/ui/CatfishWindow.ui.h:34
 msgid "Compact List"
 msgstr "Kompakt liste"
 
-#: ../data/ui/CatfishWindow.ui.h:34
+#: ../data/ui/CatfishWindow.ui.h:35
 msgid "Thumbnails"
 msgstr "Miniaturer"
 
-#: ../data/ui/CatfishWindow.ui.h:35
+#: ../data/ui/CatfishWindow.ui.h:36
 msgid "Show _Hidden Files"
 msgstr "Vis _skjulte filer"
 
-#: ../data/ui/CatfishWindow.ui.h:36
+#: ../data/ui/CatfishWindow.ui.h:37
 msgid "Search File _Contents"
 msgstr "Søg i fil_indehold"
 
-#: ../data/ui/CatfishWindow.ui.h:37
+#: ../data/ui/CatfishWindow.ui.h:38
 msgid "_Exact Match"
 msgstr "_Præcist match"
 
-#: ../data/ui/CatfishWindow.ui.h:38
+#: ../data/ui/CatfishWindow.ui.h:39
 msgid "Show _Sidebar"
 msgstr "Vis _sidebjælke"
 
-#: ../data/ui/CatfishWindow.ui.h:39
+#: ../data/ui/CatfishWindow.ui.h:40
 msgid "_Update Search Index…"
 msgstr "_Opdater søgeindeks…"
 
-#: ../data/ui/CatfishWindow.ui.h:40
+#: ../data/ui/CatfishWindow.ui.h:41
 msgid "_About"
 msgstr "_Om"
 
-#: ../data/ui/CatfishWindow.ui.h:41
+#: ../data/ui/CatfishWindow.ui.h:42
 msgid "Update Search Database"
 msgstr "Opdater søgedatabase"
 
-#: ../data/ui/CatfishWindow.ui.h:42
+#: ../data/ui/CatfishWindow.ui.h:43
 msgid "Unlock"
 msgstr "Lås op"
 
-#: ../data/ui/CatfishWindow.ui.h:43
+#: ../data/ui/CatfishWindow.ui.h:44
 msgid "Database:"
 msgstr "Database:"
 
-#: ../data/ui/CatfishWindow.ui.h:44
+#: ../data/ui/CatfishWindow.ui.h:45
 msgid "Updated:"
 msgstr "Opdateret:"
 
-#: ../data/ui/CatfishWindow.ui.h:45
+#: ../data/ui/CatfishWindow.ui.h:46
 msgid "Update Search Database"
 msgstr "Opdater søgedatabase"
 
-#: ../data/ui/CatfishWindow.ui.h:46
+#: ../data/ui/CatfishWindow.ui.h:47
 msgid ""
 "For faster search results, the search database needs to be refreshed.\n"
 "This action requires administrative rights."
@@ -370,7 +374,7 @@ msgstr ""
 
 #: ../catfish/CatfishWindow.py:1104
 msgid "If you delete a file, it is permanently lost."
-msgstr "Hvis du sletter en fil er den tabt permanent."
+msgstr "Hvis du sletter en fil, er denne tabt permanent."
 
 #: ../catfish/CatfishWindow.py:1127
 msgid "Filename"
@@ -537,7 +541,7 @@ msgstr ""
 
 #: ../data/metainfo/catfish.appdata.xml.in.h:7
 msgid "This is a minor translations-only release."
-msgstr "Dette er en mindre udgivelse kun med oversættelser."
+msgstr "Dette er en mindre udgivelse som kun har med oversættelser at gøre."
 
 #: ../data/metainfo/catfish.appdata.xml.in.h:8
 msgid ""

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


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

2019-03-07 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-settings.

commit 2193f85fe132400e937cf1b3ac8c9696e0f36516
Author: Anonymous 
Date:   Thu Mar 7 12:32:11 2019 +0100

I18n: Update translation da (100%).

402 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/da.po | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/po/da.po b/po/da.po
index be6bedd..9ad8be0 100644
--- a/po/da.po
+++ b/po/da.po
@@ -6,13 +6,13 @@
 # Aputsiak Niels Janussen (Skjalden) , 2013-2014
 # Chris Darnell , 2013
 # Per Kongstad , 2015
-# scootergrisen, 2016-2018
+# scootergrisen, 2016-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-11-12 00:30+0100\n"
-"PO-Revision-Date: 2018-11-28 09:11+\n"
+"PO-Revision-Date: 2019-03-07 11:05+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-settings/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -145,7 +145,7 @@ msgstr "Tastatu_r"
 msgid ""
 "When enabled, the mouse pointer can be controlled using the keyboard number "
 "pad."
-msgstr "Når denne er aktiveret, så kan musemarkøren styres med tastaturets 
numeriske taster"
+msgstr "Når denne er aktiveret, så kan musemarkøren styres med tastaturets 
numeriske taster."
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:28
 msgid "_Use mouse emulation"
@@ -954,22 +954,22 @@ msgstr "Kørbare filer"
 #: ../dialogs/keyboard-settings/command-dialog.c:284
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:409
 msgid "Perl Scripts"
-msgstr "Perl-skripter"
+msgstr "Perl-scripter"
 
 #: ../dialogs/keyboard-settings/command-dialog.c:290
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:415
 msgid "Python Scripts"
-msgstr "Python-skripter"
+msgstr "Python-scripter"
 
 #: ../dialogs/keyboard-settings/command-dialog.c:296
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:421
 msgid "Ruby Scripts"
-msgstr "Ruby-skripter"
+msgstr "Ruby-scripter"
 
 #: ../dialogs/keyboard-settings/command-dialog.c:302
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:427
 msgid "Shell Scripts"
-msgstr "Skalskripter"
+msgstr "Skalscripter"
 
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:1
 msgid "Keyboard layout selection"

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

2019-03-07 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 efc1d70457500cbbed2cdac03cd621e7a2313476
Author: Anonymous 
Date:   Thu Mar 7 12:31:40 2019 +0100

I18n: Update translation da (100%).

412 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 4f9226d..be6a860 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,13 +8,13 @@
 # Kris Thomsen , 2013
 # Lars Nielsen , 2008
 # Morten Juhl-Johansen Zölde-Fejér , 2015
-# scootergrisen, 2016-2018
+# scootergrisen, 2016-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-12-03 22:34+0100\n"
-"PO-Revision-Date: 2018-12-04 09:28+\n"
+"PO-Revision-Date: 2019-03-07 11:12+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-panel/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -465,7 +465,7 @@ msgstr "Tilføj et nyt panel"
 
 #: ../panel/panel-preferences-dialog.glade.h:14
 msgid "Remove the currently selected panel"
-msgstr "Fjern det nuværende valgte panel"
+msgstr "Fjern det valgte panel"
 
 #: ../panel/panel-preferences-dialog.glade.h:15
 msgid "Backup and restore"
@@ -626,13 +626,13 @@ msgstr "_Udseende"
 #: ../plugins/launcher/launcher-dialog.glade.h:18
 #: ../plugins/systray/systray-dialog.glade.h:8
 msgid "Move currently selected item up by one row"
-msgstr "Flyt det nuværende valgte element en række op"
+msgstr "Flyt det valgte element en række op"
 
 #: ../panel/panel-preferences-dialog.glade.h:56
 #: ../plugins/launcher/launcher-dialog.glade.h:19
 #: ../plugins/systray/systray-dialog.glade.h:9
 msgid "Move currently selected item down by one row"
-msgstr "Flyt det nuværende valgte element en række ned"
+msgstr "Flyt det valgte element en række ned"
 
 #: ../panel/panel-preferences-dialog.glade.h:57
 msgid "Add new item to this panel"
@@ -640,16 +640,16 @@ msgstr "Tilføj nye elementer til dette panel"
 
 #: ../panel/panel-preferences-dialog.glade.h:58
 msgid "Remove currently selected item"
-msgstr "Fjern det nuværende valgte element"
+msgstr "Fjern det valgte element"
 
 #: ../panel/panel-preferences-dialog.glade.h:59
 #: ../plugins/launcher/launcher-dialog.glade.h:20
 msgid "Edit the currently selected item"
-msgstr "Rediger det nuværende valgte element"
+msgstr "Rediger det valgte element"
 
 #: ../panel/panel-preferences-dialog.glade.h:60
 msgid "Show about information of the currently selected item"
-msgstr "Vis om information af det nuværende valgte element"
+msgstr "Vis om information af det valgte element"
 
 #: ../panel/panel-preferences-dialog.glade.h:61
 msgid "Ite_ms"
@@ -1540,7 +1540,7 @@ msgstr "Starter"
 
 #: ../plugins/launcher/launcher-dialog.glade.h:21
 msgid "Delete the currently selected item"
-msgstr "Fjern det nuværende valgte element"
+msgstr "Fjern det valgte element"
 
 #: ../plugins/launcher/launcher-dialog.glade.h:22
 msgid "Add a new empty item"

-- 
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/02: I18n: Update translation ca (100%).

2019-03-07 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 91653a8883f10af6c3e44e3fac9912b7ae045ac4
Author: Robert Antoni Buj Gelonch 
Date:   Thu Mar 7 12:32:31 2019 +0100

I18n: Update translation ca (100%).

118 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/ca.po | 32 ++--
 1 file changed, 18 insertions(+), 14 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 8d68864..afdb084 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-27 21:24-0500\n"
+"POT-Creation-Date: 2019-03-05 20:20-0500\n"
 "PO-Revision-Date: 2018-06-28 22:08+\n"
 "Last-Translator: Robert Antoni Buj Gelonch , 2019\n"
 "Language-Team: Catalan (https://www.transifex.com/xfce/teams/16840/ca/)\n"
@@ -175,58 +175,62 @@ msgid "Select a Directory"
 msgstr "Selecciona una carpeta"
 
 #: ../data/ui/CatfishWindow.ui.h:33
+msgid "Search for files"
+msgstr "Cerca de fitxers"
+
+#: ../data/ui/CatfishWindow.ui.h:34
 msgid "Compact List"
 msgstr "Llista compacta"
 
-#: ../data/ui/CatfishWindow.ui.h:34
+#: ../data/ui/CatfishWindow.ui.h:35
 msgid "Thumbnails"
 msgstr "Miniatures"
 
-#: ../data/ui/CatfishWindow.ui.h:35
+#: ../data/ui/CatfishWindow.ui.h:36
 msgid "Show _Hidden Files"
 msgstr "Mostra els fitxers _ocults"
 
-#: ../data/ui/CatfishWindow.ui.h:36
+#: ../data/ui/CatfishWindow.ui.h:37
 msgid "Search File _Contents"
 msgstr "Cerca al _contingut dels fitxers"
 
-#: ../data/ui/CatfishWindow.ui.h:37
+#: ../data/ui/CatfishWindow.ui.h:38
 msgid "_Exact Match"
 msgstr "Coincidència _exacta"
 
-#: ../data/ui/CatfishWindow.ui.h:38
+#: ../data/ui/CatfishWindow.ui.h:39
 msgid "Show _Sidebar"
 msgstr "Mostra la barra _lateral"
 
-#: ../data/ui/CatfishWindow.ui.h:39
+#: ../data/ui/CatfishWindow.ui.h:40
 msgid "_Update Search Index…"
 msgstr "_Actualitza la base de dades de cerques..."
 
-#: ../data/ui/CatfishWindow.ui.h:40
+#: ../data/ui/CatfishWindow.ui.h:41
 msgid "_About"
 msgstr "_Quant a"
 
-#: ../data/ui/CatfishWindow.ui.h:41
+#: ../data/ui/CatfishWindow.ui.h:42
 msgid "Update Search Database"
 msgstr "Actualitza l'índex de cerca"
 
-#: ../data/ui/CatfishWindow.ui.h:42
+#: ../data/ui/CatfishWindow.ui.h:43
 msgid "Unlock"
 msgstr "Desbloqueja"
 
-#: ../data/ui/CatfishWindow.ui.h:43
+#: ../data/ui/CatfishWindow.ui.h:44
 msgid "Database:"
 msgstr "Índex de cerca:"
 
-#: ../data/ui/CatfishWindow.ui.h:44
+#: ../data/ui/CatfishWindow.ui.h:45
 msgid "Updated:"
 msgstr "Actualització:"
 
-#: ../data/ui/CatfishWindow.ui.h:45
+#: ../data/ui/CatfishWindow.ui.h:46
 msgid "Update Search Database"
 msgstr "Actualització de l'índex de cerca"
 
-#: ../data/ui/CatfishWindow.ui.h:46
+#: ../data/ui/CatfishWindow.ui.h:47
 msgid ""
 "For faster search results, the search database needs to be refreshed.\n"
 "This action requires administrative rights."

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


[Xfce4-commits] [apps/parole] branch master updated (44987f8 -> 250750b)

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

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

  from  44987f8   I18n: Update translation pt (100%).
   new  250750b   I18n: Update translation da (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/da.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


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

2019-03-07 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-settings.

commit 90b8da6b644ed4652d0587ea5dda011825107e69
Author: Anonymous 
Date:   Thu Mar 7 12:32:20 2019 +0100

I18n: Update translation da (100%).

359 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 35320dc..58a69b4 100644
--- a/po/da.po
+++ b/po/da.po
@@ -855,22 +855,22 @@ msgstr "Kørbare filer"
 #: ../dialogs/keyboard-settings/command-dialog.c:291
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:408
 msgid "Perl Scripts"
-msgstr "Perl-skripter"
+msgstr "Perl-scripter"
 
 #: ../dialogs/keyboard-settings/command-dialog.c:297
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:414
 msgid "Python Scripts"
-msgstr "Python-skripter"
+msgstr "Python-scripter"
 
 #: ../dialogs/keyboard-settings/command-dialog.c:303
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:420
 msgid "Ruby Scripts"
-msgstr "Ruby-skripter"
+msgstr "Ruby-scripter"
 
 #: ../dialogs/keyboard-settings/command-dialog.c:309
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:426
 msgid "Shell Scripts"
-msgstr "Skalskripter"
+msgstr "Skalscripter"
 
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:1
 msgid "Keyboard layout selection"

-- 
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: I18n: Update translation da (100%).

2019-03-07 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 1c8f66cec63dd6b40e558adee092eb87b550f659
Author: Anonymous 
Date:   Thu Mar 7 12:31:16 2019 +0100

I18n: Update translation da (100%).

763 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 90b6728..22c0554 100644
--- a/po/da.po
+++ b/po/da.po
@@ -402,7 +402,7 @@ msgstr "Kunne ikke tilføje nyt program \"%s\""
 #: ../thunar/thunar-chooser-dialog.c:494
 #, c-format
 msgid "Failed to execute application \"%s\""
-msgstr "Kunne ikke køre programmet \"%s\""
+msgstr "Kunne ikke udføre programmet \"%s\""
 
 #. append the "Remove Launcher" item
 #: ../thunar/thunar-chooser-dialog.c:563
@@ -843,7 +843,7 @@ msgstr "_Henvis hertil"
 #: ../thunar/thunar-dnd.c:250 ../thunar/thunar-launcher.c:564
 #, c-format
 msgid "Failed to execute file \"%s\""
-msgstr "Kunne ikke køre fil \"%s\""
+msgstr "Kunne ikke udføre fil \"%s\""
 
 #: ../thunar/thunar-enum-types.c:49
 msgid "Name only"
@@ -1207,13 +1207,13 @@ msgstr "Åbn den valgte mappe"
 
 #: ../thunar/thunar-launcher.c:903
 msgid "_Execute"
-msgstr "_Kør"
+msgstr "_Udfør"
 
 #: ../thunar/thunar-launcher.c:905
 msgid "Execute the selected file"
 msgid_plural "Execute the selected files"
-msgstr[0] "Kør den valgte fil"
-msgstr[1] "Kør de valgte filer"
+msgstr[0] "Udfør den valgte fil"
+msgstr[1] "Udfør de valgte filer"
 
 #: ../thunar/thunar-launcher.c:915
 msgid "Open the selected file"
@@ -1484,7 +1484,7 @@ msgstr "Skubber enheden ud"
 #: ../thunar/thunar-notify.c:209
 #, c-format
 msgid "The device \"%s\" is being ejected. This may take some time"
-msgstr "Enheden \"%s\" bliver skubbet ud. Det kan tage lidt tid"
+msgstr "Enheden \"%s\" skubbes ud. Det kan tage lidt tid"
 
 #: ../thunar/thunar-misc-jobs.c:74
 #, c-format
@@ -3143,7 +3143,7 @@ msgstr "Kommando:"
 
 #: ../plugins/thunar-apr/thunar-apr-desktop-page.c:184
 msgid "The program to execute, possibly with arguments."
-msgstr "Program for kørsel med mulige parametre."
+msgstr "Programmet som skal udføres, muligvis med parametre."
 
 #: ../plugins/thunar-apr/thunar-apr-desktop-page.c:200
 msgid "Working Directory:"
@@ -3428,7 +3428,7 @@ msgstr "Fjern tegn"
 
 #: ../plugins/thunar-sbr/thunar-sbr-replace-renamer.c:202
 msgid "_Search For:"
-msgstr "_Søg for:"
+msgstr "_Søg efter:"
 
 #. reset to default tooltip
 #: ../plugins/thunar-sbr/thunar-sbr-replace-renamer.c:210

-- 
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/01: I18n: Update translation da (100%).

2019-03-07 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 9a557de8fec7ce8335e5579b1509135a922639e7
Author: Anonymous 
Date:   Thu Mar 7 12:31:32 2019 +0100

I18n: Update translation da (100%).

81 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 8485c2b..6e6defb 100644
--- a/po/da.po
+++ b/po/da.po
@@ -9,13 +9,13 @@
 # Morten Juhl-Johansen Zölde-Fejér , 2015
 # olegb , 2008
 # Per Kongstad , 2009,2014
-# scootergrisen, 2016-2018
+# scootergrisen, 2016-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-appfinder\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-11-25 00:30+0100\n"
-"PO-Revision-Date: 2018-11-28 09:14+\n"
+"PO-Revision-Date: 2019-03-07 11:13+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-appfinder/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -322,7 +322,7 @@ msgstr "Tilføj en ny tilpasset handling."
 
 #: ../src/appfinder-preferences.glade.h:31
 msgid "Remove the currently selected action."
-msgstr "Fjern den nuværende valgte handling."
+msgstr "Fjern den valgte handling."
 
 #: ../src/appfinder-preferences.glade.h:33
 #, no-c-format

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


[Xfce4-commits] [xfce/xfce4-panel] branch master updated (24df488 -> efc1d70)

2019-03-07 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  24df488   I18n: Update translation sq (98%).
   new  efc1d70   I18n: Update translation da (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/da.po | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

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


[Xfce4-commits] [xfce/xfce4-settings] branch master updated (e48ece4 -> 2193f85)

2019-03-07 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-settings.

  from  e48ece4   I18n: Update translation kk (100%).
   new  2193f85   I18n: Update translation da (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/da.po | 14 +++---
 1 file changed, 7 insertions(+), 7 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 da (100%).

2019-03-07 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 665efff55a8596f587a70a3c2691c8dde487e603
Author: Anonymous 
Date:   Thu Mar 7 12:31:52 2019 +0100

I18n: Update translation da (100%).

396 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/da.po | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/po/da.po b/po/da.po
index 096ff21..6b1087c 100644
--- a/po/da.po
+++ b/po/da.po
@@ -429,7 +429,7 @@ msgstr "Tilføj et nyt panel"
 
 #: ../panel/panel-preferences-dialog.glade.h:12
 msgid "Remove the currently selected panel"
-msgstr "Fjern det nuværende valgte panel"
+msgstr "Fjern det valgte panel"
 
 #: ../panel/panel-preferences-dialog.glade.h:13
 msgid "Switch between panel presets"
@@ -600,12 +600,12 @@ msgstr "Ud_seende"
 #: ../panel/panel-preferences-dialog.glade.h:50
 #: ../plugins/launcher/launcher-dialog.glade.h:13
 msgid "Move currently selected item up by one row"
-msgstr "Flyt det nuværende valgte element en række op"
+msgstr "Flyt det valgte element en række op"
 
 #: ../panel/panel-preferences-dialog.glade.h:51
 #: ../plugins/launcher/launcher-dialog.glade.h:14
 msgid "Move currently selected item down by one row"
-msgstr "Flyt det nuværende valgte element en række ned"
+msgstr "Flyt det valgte element en række ned"
 
 #: ../panel/panel-preferences-dialog.glade.h:52
 msgid "Add new item to this panel"
@@ -613,16 +613,16 @@ msgstr "Tilføj nye elementer til dette panel"
 
 #: ../panel/panel-preferences-dialog.glade.h:53
 msgid "Remove currently selected item"
-msgstr "Fjern det nuværende valgte element"
+msgstr "Fjern det valgte element"
 
 #: ../panel/panel-preferences-dialog.glade.h:54
 #: ../plugins/launcher/launcher-dialog.glade.h:18
 msgid "Edit the currently selected item"
-msgstr "Rediger det nuværende valgte element"
+msgstr "Rediger det valgte element"
 
 #: ../panel/panel-preferences-dialog.glade.h:55
 msgid "Show about information of the currently selected item"
-msgstr "Vis om information af det nuværende valgte element"
+msgstr "Vis om information af det valgte element"
 
 #: ../panel/panel-preferences-dialog.glade.h:56
 msgid "Ite_ms"
@@ -1521,7 +1521,7 @@ msgstr "Tilføj et nyt tomt element"
 
 #: ../plugins/launcher/launcher-dialog.glade.h:17
 msgid "Delete the currently selected item"
-msgstr "Fjern det nuværende valgte element"
+msgstr "Fjern det valgte element"
 
 #: ../plugins/launcher/launcher-dialog.glade.h:20
 msgid "Disable t_ooltips"

-- 
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] branch master updated (3a4726a -> 9a557de)

2019-03-07 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  3a4726a   I18n: Update translation sq (85%).
   new  9a557de   I18n: Update translation da (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/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [xfce/xfce4-panel] branch xfce-4.12 updated (2f8419f -> 665efff)

2019-03-07 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  2f8419f   I18n: Update translation sq (95%).
   new  665efff   I18n: Update translation da (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/da.po | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

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


[Xfce4-commits] [xfce/thunar] 02/02: I18n: Update translation fa_IR (81%).

2019-03-07 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 7507843a6b349d69cdb4790215ed1e8f997b1c92
Author: Ali Molaei 
Date:   Thu Mar 7 12:31:16 2019 +0100

I18n: Update translation fa_IR (81%).

620 translated messages, 143 untranslated messages.

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

diff --git a/po/fa_IR.po b/po/fa_IR.po
index 494b1a9..713a238 100644
--- a/po/fa_IR.po
+++ b/po/fa_IR.po
@@ -3,14 +3,20 @@
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR , YEAR.
 # 
+# Translators:
+# Xfce Bot , 2018
+# Arash Kadkhodaei , 2018
+# iman salmani , 2018
+# Ali Molaei , 2019
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-08-20 18:31+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: iman salmani , 2018\n"
+"POT-Creation-Date: 2019-01-28 00:30+0100\n"
+"PO-Revision-Date: 2018-08-19 09:02+\n"
+"Last-Translator: Ali Molaei , 2019\n"
 "Language-Team: Persian (Iran) 
(https://www.transifex.com/xfce/teams/16840/fa_IR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -101,108 +107,113 @@ msgstr "ترک یک نمونه‌ی تونار در حال اجرا"
 msgid "Print version information and exit"
 msgstr "نمایش اطلاعات شماره نسخه برنامه و خروج"
 
-#: ../thunar/thunar-application.c:291
+#: ../thunar/thunar-application.c:295
 #, c-format
 msgid "Acquired the session message bus '%s'\n"
 msgstr ""
 
-#: ../thunar/thunar-application.c:301
+#: ../thunar/thunar-application.c:305
 #, c-format
 msgid "Acquired the name '%s' on the session message bus\n"
 msgstr ""
 
-#: ../thunar/thunar-application.c:312
+#: ../thunar/thunar-application.c:316
 #, c-format
 msgid "Name '%s' lost on the message dbus, exiting."
 msgstr ""
 
-#: ../thunar/thunar-application.c:469
+#: ../thunar/thunar-application.c:327
+#, c-format
+msgid "Name '%s' lost on the message dbus."
+msgstr ""
+
+#: ../thunar/thunar-application.c:492
 msgid "The Thunar development team. All rights reserved."
 msgstr "تیم توسعه تونار. تمامی حقوق محفوظ است."
 
-#: ../thunar/thunar-application.c:470
+#: ../thunar/thunar-application.c:493
 msgid "Written by Benedikt Meurer ."
 msgstr "توسط Benedikt Meurer . نوشته شده."
 
-#: ../thunar/thunar-application.c:471
+#: ../thunar/thunar-application.c:494
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "لطفا خطاها را در <%s> گزارش کنید."
 
 #. display an error message to the user
-#: ../thunar/thunar-application.c:741
+#: ../thunar/thunar-application.c:766
 msgid "Failed to launch operation"
 msgstr "راه‌اندازی عملیات شکست مواجه شد"
 
 #. tell the user that we were unable to launch the file specified
-#: ../thunar/thunar-application.c:1467 ../thunar/thunar-application.c:1599
+#: ../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
-#: ../thunar/thunar-shortcuts-view.c:1708 ../thunar/thunar-window.c:2316
+#: ../thunar/thunar-shortcuts-view.c:1708 ../thunar/thunar-window.c:2360
 #, c-format
 msgid "Failed to open \"%s\""
 msgstr "باز کردن \"%s\" با شکست مواجه شد"
 
-#: ../thunar/thunar-application.c:1603
+#: ../thunar/thunar-application.c:1655
 #, c-format
 msgid "Failed to open \"%s\": %s"
 msgstr "باز کردن %s با شکست مواجه شد: %s"
 
 #. display an error message
-#: ../thunar/thunar-application.c:1658
+#: ../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 "تغییر نام \"%s\" با شکست مواجه شد"
 
-#: ../thunar/thunar-application.c:1760
+#: ../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 "پوشه جدید"
 
-#: ../thunar/thunar-application.c:1761
+#: ../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 "ساختن پوشه جدید"
 
-#: ../thunar/thunar-application.c:1765
+#: ../thunar/thunar-application.c:1817
 msgid "New File"
 msgstr "پرونده جدید"
 
-#: 

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

2019-03-07 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/thunar.

commit 62a7adb8b393c18d1300404c85038038b2a45adc
Author: Anonymous 
Date:   Thu Mar 7 12:31:03 2019 +0100

I18n: Update translation da (100%).

739 translated messages.

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

diff --git a/po/da.po b/po/da.po
index d63f16b..11c537c 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,13 +3,17 @@
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR , YEAR.
 # 
+# Translators:
+# Xfce Bot , 2017
+# scootergrisen, 2017
+# 
 #, fuzzy
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-10-10 06:30+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"PO-Revision-Date: 2017-09-04 20:27+\n"
 "Last-Translator: scootergrisen, 2017\n"
 "Language-Team: Danish (https://www.transifex.com/xfce/teams/16840/da/)\n"
 "MIME-Version: 1.0\n"
@@ -342,7 +346,7 @@ msgstr "Kunne ikke tilføje nyt program \"%s\""
 #: ../thunar/thunar-chooser-dialog.c:502
 #, c-format
 msgid "Failed to execute application \"%s\""
-msgstr "Kunne ikke køre programmet \"%s\""
+msgstr "Kunne ikke udføre programmet \"%s\""
 
 #. append the "Remove Launcher" item
 #: ../thunar/thunar-chooser-dialog.c:574
@@ -754,7 +758,7 @@ msgstr "_Henvis hertil"
 #: ../thunar/thunar-dnd.c:254 ../thunar/thunar-launcher.c:567
 #, c-format
 msgid "Failed to execute file \"%s\""
-msgstr "Kunne ikke køre fil \"%s\""
+msgstr "Kunne ikke udføre fil \"%s\""
 
 #: ../thunar/thunar-enum-types.c:45
 msgid "Name only"
@@ -1132,13 +1136,13 @@ msgstr[1] "Åbn de valgte filer"
 
 #: ../thunar/thunar-launcher.c:931
 msgid "_Execute"
-msgstr "_Kør"
+msgstr "_Udfør"
 
 #: ../thunar/thunar-launcher.c:933
 msgid "Execute the selected file"
 msgid_plural "Execute the selected files"
-msgstr[0] "Kør den valgte fil"
-msgstr[1] "Kør de valgte filer"
+msgstr[0] "Udfør den valgte fil"
+msgstr[1] "Udfør de valgte filer"
 
 #. turn the "Open" action into "Open With DEFAULT"
 #: ../thunar/thunar-launcher.c:939
@@ -1422,7 +1426,7 @@ msgstr "Skubber enheden ud"
 #: ../thunar/thunar-notify.c:209
 #, c-format
 msgid "The device \"%s\" is being ejected. This may take some time"
-msgstr "Enheden \"%s\" bliver skubbet ud. Det kan tage lidt tid"
+msgstr "Enheden \"%s\" skubbes ud. Det kan tage lidt tid"
 
 #: ../thunar/thunar-misc-jobs.c:74
 #, c-format
@@ -2987,7 +2991,7 @@ msgstr "Kommando:"
 
 #: ../plugins/thunar-apr/thunar-apr-desktop-page.c:182
 msgid "The program to execute, possibly with arguments."
-msgstr "Program for kørsel med mulige parametre."
+msgstr "Programmet som skal udføres, muligvis med parametre."
 
 #: ../plugins/thunar-apr/thunar-apr-desktop-page.c:197
 msgid "Working Directory:"
@@ -3268,7 +3272,7 @@ msgstr "Fjern tegn"
 
 #: ../plugins/thunar-sbr/thunar-sbr-replace-renamer.c:202
 msgid "_Search For:"
-msgstr "_Søg for:"
+msgstr "_Søg efter:"
 
 #. reset to default tooltip
 #: ../plugins/thunar-sbr/thunar-sbr-replace-renamer.c:210

-- 
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 (832d87b -> 7507843)

2019-03-07 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  832d87b   I18n: Update translation eu (100%).
   new  1c8f66c   I18n: Update translation da (100%).
   new  7507843   I18n: Update translation fa_IR (81%).

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/da.po|  16 +-
 po/fa_IR.po | 759 
 2 files changed, 415 insertions(+), 360 deletions(-)

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


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

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

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

commit 7b86d98659313e4d681ee4ce503167ba21a1e3fc
Author: Anonymous 
Date:   Thu Mar 7 12:30:53 2019 +0100

I18n: Update translation da (100%).

120 translated messages.

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

diff --git a/po/da.po b/po/da.po
index e172fb0..9182d83 100644
--- a/po/da.po
+++ b/po/da.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar-volman\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-26 06:30+0200\n"
-"PO-Revision-Date: 2018-09-28 15:20+\n"
+"POT-Creation-Date: 2018-11-27 18:15+0100\n"
+"PO-Revision-Date: 2019-03-07 11:06+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/thunar-volman/language/da/)\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/thunar-volman] branch master updated (5254315 -> 7b86d98)

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

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

  from  5254315   I18n: Update translation pt (100%).
   new  7b86d98   I18n: Update translation da (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/da.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


[Xfce4-commits] [xfce/thunar] branch xfce-4.12 updated (a0fb918 -> 62a7adb)

2019-03-07 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/thunar.

  from  a0fb918   I18n: Update translation eu (100%).
   new  62a7adb   I18n: Update translation da (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/da.po | 22 +-
 1 file changed, 13 insertions(+), 9 deletions(-)

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


[Xfce4-commits] [xfce/thunar] branch master updated (1ee5f91 -> cf90c0e)

2019-03-07 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  1ee5f91   I18n: Update translation eu (100%).
   new  2bb6647   I18n: Update translation da (100%).
   new  cf90c0e   I18n: Update translation fa_IR (85%).

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/da.po|  18 +-
 po/fa_IR.po | 762 
 2 files changed, 414 insertions(+), 366 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: I18n: Update translation da (100%).

2019-03-07 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 2bb6647e5a9b6b6cf1914135498529ae90c60186
Author: Anonymous 
Date:   Thu Mar 7 12:30:30 2019 +0100

I18n: Update translation da (100%).

764 translated messages.

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

diff --git a/po/da.po b/po/da.po
index a8086a8..cd596d1 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-01-28 00:30+0100\n"
-"PO-Revision-Date: 2019-01-30 00:38+\n"
+"PO-Revision-Date: 2019-03-07 11:27+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/thunar/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -382,7 +382,7 @@ msgstr "Kunne ikke tilføje nyt program \"%s\""
 #: ../thunar/thunar-chooser-dialog.c:494
 #, c-format
 msgid "Failed to execute application \"%s\""
-msgstr "Kunne ikke køre programmet \"%s\""
+msgstr "Kunne ikke udføre programmet \"%s\""
 
 #. append the "Remove Launcher" item
 #: ../thunar/thunar-chooser-dialog.c:563
@@ -806,7 +806,7 @@ msgstr "_Henvis hertil"
 #: ../thunar/thunar-dnd.c:250 ../thunar/thunar-launcher.c:564
 #, c-format
 msgid "Failed to execute file \"%s\""
-msgstr "Kunne ikke køre fil \"%s\""
+msgstr "Kunne ikke udføre fil \"%s\""
 
 #: ../thunar/thunar-enum-types.c:49
 msgid "Name only"
@@ -1163,13 +1163,13 @@ msgstr "Åbn den valgte mappe"
 
 #: ../thunar/thunar-launcher.c:903
 msgid "_Execute"
-msgstr "_Kør"
+msgstr "_Udfør"
 
 #: ../thunar/thunar-launcher.c:905
 msgid "Execute the selected file"
 msgid_plural "Execute the selected files"
-msgstr[0] "Kør den valgte fil"
-msgstr[1] "Kør de valgte filer"
+msgstr[0] "Udfør den valgte fil"
+msgstr[1] "Udfør de valgte filer"
 
 #: ../thunar/thunar-launcher.c:915
 msgid "Open the selected file"
@@ -1419,7 +1419,7 @@ msgstr "Skubber enheden ud"
 #: ../thunar/thunar-notify.c:209
 #, c-format
 msgid "The device \"%s\" is being ejected. This may take some time"
-msgstr "Enheden \"%s\" bliver skubbet ud. Det kan tage lidt tid"
+msgstr "Enheden \"%s\" skubbes ud. Det kan tage lidt tid"
 
 #: ../thunar/thunar-misc-jobs.c:74
 #, c-format
@@ -3009,7 +3009,7 @@ msgstr "Kommando:"
 
 #: ../plugins/thunar-apr/thunar-apr-desktop-page.c:184
 msgid "The program to execute, possibly with arguments."
-msgstr "Program for kørsel med mulige parametre."
+msgstr "Programmet som skal udføres, muligvis med parametre."
 
 #: ../plugins/thunar-apr/thunar-apr-desktop-page.c:200
 msgid "Working Directory:"
@@ -3286,7 +3286,7 @@ msgstr "Fjern tegn"
 
 #: ../plugins/thunar-sbr/thunar-sbr-replace-renamer.c:202
 msgid "_Search For:"
-msgstr "_Søg for:"
+msgstr "_Søg efter:"
 
 #. reset to default tooltip
 #: ../plugins/thunar-sbr/thunar-sbr-replace-renamer.c:210

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

2019-03-07 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 1b9a552131fd2ec886362bad15a56e500b2369c7
Author: Anonymous 
Date:   Thu Mar 7 12:30:02 2019 +0100

I18n: Update translation da (100%).

299 translated messages.

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

diff --git a/po/da.po b/po/da.po
index fed1b18..0a5f3db 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Exo\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-09-02 00:30+0200\n"
-"PO-Revision-Date: 2018-09-27 23:44+\n"
+"PO-Revision-Date: 2019-03-07 11:06+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/exo/language/da/)\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/thunar] 02/02: I18n: Update translation fa_IR (85%).

2019-03-07 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 cf90c0efca8473946c9ec6b05af2bba2f1b37941
Author: Ali Molaei 
Date:   Thu Mar 7 12:30:30 2019 +0100

I18n: Update translation fa_IR (85%).

654 translated messages, 110 untranslated messages.

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

diff --git a/po/fa_IR.po b/po/fa_IR.po
index ab719bd..a46223f 100644
--- a/po/fa_IR.po
+++ b/po/fa_IR.po
@@ -10,9 +10,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-08-20 18:30+0200\n"
-"PO-Revision-Date: 2018-08-22 17:06+\n"
-"Last-Translator: iman salmani \n"
+"POT-Creation-Date: 2019-01-28 00:30+0100\n"
+"PO-Revision-Date: 2019-03-07 11:14+\n"
+"Last-Translator: Ali Molaei \n"
 "Language-Team: Persian (Iran) 
(http://www.transifex.com/xfce/thunar/language/fa_IR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -103,115 +103,120 @@ msgstr "ترک یک نمونه‌ی تونار در حال اجرا"
 msgid "Print version information and exit"
 msgstr "نمایش اطلاعات شماره نسخه برنامه و خروج"
 
-#: ../thunar/thunar-application.c:291
+#: ../thunar/thunar-application.c:295
 #, c-format
 msgid "Acquired the session message bus '%s'\n"
 msgstr ""
 
-#: ../thunar/thunar-application.c:301
+#: ../thunar/thunar-application.c:305
 #, c-format
 msgid "Acquired the name '%s' on the session message bus\n"
 msgstr ""
 
-#: ../thunar/thunar-application.c:312
+#: ../thunar/thunar-application.c:316
 #, c-format
 msgid "Name '%s' lost on the message dbus, exiting."
 msgstr ""
 
-#: ../thunar/thunar-application.c:469
+#: ../thunar/thunar-application.c:327
+#, c-format
+msgid "Name '%s' lost on the message dbus."
+msgstr ""
+
+#: ../thunar/thunar-application.c:492
 msgid "The Thunar development team. All rights reserved."
 msgstr "تیم توسعه تونار. تمامی حقوق محفوظ است."
 
-#: ../thunar/thunar-application.c:470
+#: ../thunar/thunar-application.c:493
 msgid "Written by Benedikt Meurer ."
 msgstr "توسط Benedikt Meurer . نوشته شده."
 
-#: ../thunar/thunar-application.c:471
+#: ../thunar/thunar-application.c:494
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "لطفا خطاها را در <%s> گزارش کنید."
 
 #. display an error message to the user
-#: ../thunar/thunar-application.c:741
+#: ../thunar/thunar-application.c:766
 msgid "Failed to launch operation"
 msgstr "راه‌اندازی عملیات شکست مواجه شد"
 
 #. tell the user that we were unable to launch the file specified
-#: ../thunar/thunar-application.c:1467 ../thunar/thunar-application.c:1599
+#: ../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
-#: ../thunar/thunar-shortcuts-view.c:1708 ../thunar/thunar-window.c:2316
+#: ../thunar/thunar-shortcuts-view.c:1708 ../thunar/thunar-window.c:2360
 #, c-format
 msgid "Failed to open \"%s\""
 msgstr "باز کردن \"%s\" با شکست مواجه شد"
 
-#: ../thunar/thunar-application.c:1603
+#: ../thunar/thunar-application.c:1655
 #, c-format
 msgid "Failed to open \"%s\": %s"
 msgstr "باز کردن %s با شکست مواجه شد: %s"
 
 #. display an error message
-#: ../thunar/thunar-application.c:1658
+#: ../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 "تغییر نام \"%s\" با شکست مواجه شد"
 
-#: ../thunar/thunar-application.c:1760
+#: ../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 "پوشه جدید"
 
-#: ../thunar/thunar-application.c:1761
+#: ../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 "ساختن پوشه جدید"
 
-#: ../thunar/thunar-application.c:1765
+#: ../thunar/thunar-application.c:1817
 msgid "New File"
 msgstr "پرونده جدید"
 
-#: ../thunar/thunar-application.c:1766
+#: ../thunar/thunar-application.c:1818
 msgid "Create New File"
 msgstr "ساختن پرونده جدید"
 
 #. generate a title for the create dialog
-#: ../thunar/thunar-application.c:1823 ../thunar/thunar-standard-view.c:2436
+#: 

[Xfce4-commits] [xfce/exo] branch master updated (166cc19 -> 1b9a552)

2019-03-07 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  166cc19   I18n: Update translation fi (100%).
   new  1b9a552   I18n: Update translation da (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/da.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


[Xfce4-commits] [xfce/garcon] branch master updated (4156661 -> fc1d4ad)

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

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

  from  4156661   I18n: Update translation bn (86%).
   new  fc1d4ad   I18n: Update translation da (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/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

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

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

commit fc1d4ad2cf458d10ef9929d951ecb01252048d89
Author: Anonymous 
Date:   Thu Mar 7 12:30:17 2019 +0100

I18n: Update translation da (100%).

36 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 9d03846..2367adc 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,13 +8,13 @@
 # Linuxbruger , 2018
 # Per Kongstad , 2009,2016
 # scootergrisen, 2017
-# scootergrisen, 2017-2018
+# scootergrisen, 2017-2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Garcon\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-06-20 18:30+0200\n"
-"PO-Revision-Date: 2018-09-14 00:23+\n"
+"PO-Revision-Date: 2019-03-07 11:17+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/garcon/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -157,7 +157,7 @@ msgstr "Kunne ikke udføre kommandoen \"%s\"."
 
 #: ../garcon-gtk/garcon-gtk-menu.c:472
 msgid "Launch Error"
-msgstr "Startfejl"
+msgstr "Fejl ved start"
 
 #: ../garcon-gtk/garcon-gtk-menu.c:474
 msgid ""

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