[Xfce4-commits] [xfce/thunar] 01/01: Handle cases when file watch is not supported (Bug #13881)

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

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

commit ab50af40ef2d02f49e7f54a35ab41d4c0d80fbff
Author: Andre Miranda 
Date:   Fri Nov 3 22:41:19 2017 -0300

Handle cases when file watch is not supported (Bug #13881)

When a remote folder is accessed, this error is printed:
(thunar:9378): thunar-CRITICAL **: thunar_file_watch: assertion '...

Upon leaving that folder, Thunar crashes:
ERROR:thunar-file.c:3929:thunar_file_unwatch: code should not be reached

I found out that a call to g_file_monitor in thunar_file_watch has no
error handling, and in the case of remote folders this error happens:
Failed to create file monitor: Operation not supported by backend

So when ThunarFolder is finalized and calls thunar_file_unwatch, its
file_watch will be NULL and _thunar_assert_not_reached kills Thunar.
---
 thunar/thunar-file.c | 21 ++---
 1 file changed, 18 insertions(+), 3 deletions(-)

diff --git a/thunar/thunar-file.c b/thunar/thunar-file.c
index 5eac91d..46d0dc7 100644
--- a/thunar/thunar-file.c
+++ b/thunar/thunar-file.c
@@ -181,6 +181,9 @@ struct _ThunarFile
 
   /* flags for thumbnail state etc */
   ThunarFileFlags   flags;
+  
+  /* tells whether the file watch is not set */
+  gboolean  no_file_watch;
 };
 
 typedef struct
@@ -3875,6 +3878,7 @@ void
 thunar_file_watch (ThunarFile *file)
 {
   ThunarFileWatch *file_watch;
+  GError  *error = NULL;
 
   _thunar_return_if_fail (THUNAR_IS_FILE (file));
 
@@ -3885,8 +3889,14 @@ thunar_file_watch (ThunarFile *file)
   file_watch->watch_count = 1;
 
   /* create a file or directory monitor */
-  file_watch->monitor = g_file_monitor (file->gfile, 
G_FILE_MONITOR_WATCH_MOUNTS | G_FILE_MONITOR_SEND_MOVED, NULL, NULL);
-  if (G_LIKELY (file_watch->monitor != NULL))
+  file_watch->monitor = g_file_monitor (file->gfile, 
G_FILE_MONITOR_WATCH_MOUNTS | G_FILE_MONITOR_SEND_MOVED, NULL, );
+  if (G_UNLIKELY (file_watch->monitor == NULL))
+{
+  g_debug ("Failed to create file monitor: %s", error->message);
+  g_error_free (error);
+  file->no_file_watch = TRUE;
+}
+  else
 {
   /* watch monitor for file changes */
   g_signal_connect (file_watch->monitor, "changed", G_CALLBACK 
(thunar_file_monitor), file);
@@ -3895,7 +3905,7 @@ thunar_file_watch (ThunarFile *file)
   /* attach to file */
   g_object_set_qdata_full (G_OBJECT (file), thunar_file_watch_quark, 
file_watch, thunar_file_watch_destroyed);
 }
-  else
+  else if (G_LIKELY (!file->no_file_watch))
 {
   /* increase watch count */
   _thunar_return_if_fail (G_IS_FILE_MONITOR (file_watch->monitor));
@@ -3919,6 +3929,11 @@ thunar_file_unwatch (ThunarFile *file)
 
   _thunar_return_if_fail (THUNAR_IS_FILE (file));
 
+  if (G_UNLIKELY (file->no_file_watch))
+{
+  return;
+}
+
   file_watch = g_object_get_qdata (G_OBJECT (file), thunar_file_watch_quark);
   if (file_watch != 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/thunar] branch xfce-4.12 updated (7792a3f -> ab50af4)

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

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

  from  7792a3f   I18n: Update translation da (100%).
   new  ab50af4   Handle cases when file watch is not supported (Bug #13881)

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:
 thunar/thunar-file.c | 21 ++---
 1 file changed, 18 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/02: Add missing '; ' to thunarx-menu-item.h

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

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

commit 7cca9b2704e029ef59bbc1f885768bde7773986e
Author: Andre Miranda 
Date:   Fri Nov 3 22:40:59 2017 -0300

Add missing ';' to thunarx-menu-item.h
---
 thunarx/thunarx-menu-item.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/thunarx/thunarx-menu-item.h b/thunarx/thunarx-menu-item.h
index 6a64ab9..3eaed6b 100644
--- a/thunarx/thunarx-menu-item.h
+++ b/thunarx/thunarx-menu-item.h
@@ -61,7 +61,7 @@ void  thunarx_menu_item_activate  
(ThunarxMenuItem *item);
 
 gboolean  thunarx_menu_item_get_sensitive (ThunarxMenuItem *item);
 void  thunarx_menu_item_set_sensitive (ThunarxMenuItem *item,
-   gboolean sensitive)
+   gboolean sensitive);
 
 G_END_DECLS;
 

-- 
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: Handle cases when file watch is not supported (Bug #13881)

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

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

commit a7355a59e2eb5af635f109852216f7d6064ffb70
Author: Andre Miranda 
Date:   Fri Nov 3 22:41:19 2017 -0300

Handle cases when file watch is not supported (Bug #13881)

When a remote folder is accessed, this error is printed:
(thunar:9378): thunar-CRITICAL **: thunar_file_watch: assertion '...

Upon leaving that folder, Thunar crashes:
ERROR:thunar-file.c:3929:thunar_file_unwatch: code should not be reached

I found out that a call to g_file_monitor in thunar_file_watch has no
error handling, and in the case of remote folders this error happens:
Failed to create file monitor: Operation not supported by backend

So when ThunarFolder is finalized and calls thunar_file_unwatch, its
file_watch will be NULL and _thunar_assert_not_reached kills Thunar.
---
 thunar/thunar-file.c | 21 ++---
 1 file changed, 18 insertions(+), 3 deletions(-)

diff --git a/thunar/thunar-file.c b/thunar/thunar-file.c
index 0e058e2..2333d90 100644
--- a/thunar/thunar-file.c
+++ b/thunar/thunar-file.c
@@ -181,6 +181,9 @@ struct _ThunarFile
 
   /* flags for thumbnail state etc */
   ThunarFileFlags   flags;
+  
+  /* tells whether the file watch is not set */
+  gboolean  no_file_watch;
 };
 
 typedef struct
@@ -3875,6 +3878,7 @@ void
 thunar_file_watch (ThunarFile *file)
 {
   ThunarFileWatch *file_watch;
+  GError  *error = NULL;
 
   _thunar_return_if_fail (THUNAR_IS_FILE (file));
 
@@ -3885,8 +3889,14 @@ thunar_file_watch (ThunarFile *file)
   file_watch->watch_count = 1;
 
   /* create a file or directory monitor */
-  file_watch->monitor = g_file_monitor (file->gfile, 
G_FILE_MONITOR_WATCH_MOUNTS | G_FILE_MONITOR_SEND_MOVED, NULL, NULL);
-  if (G_LIKELY (file_watch->monitor != NULL))
+  file_watch->monitor = g_file_monitor (file->gfile, 
G_FILE_MONITOR_WATCH_MOUNTS | G_FILE_MONITOR_SEND_MOVED, NULL, );
+  if (G_UNLIKELY (file_watch->monitor == NULL))
+{
+  g_debug ("Failed to create file monitor: %s", error->message);
+  g_error_free (error);
+  file->no_file_watch = TRUE;
+}
+  else
 {
   /* watch monitor for file changes */
   g_signal_connect (file_watch->monitor, "changed", G_CALLBACK 
(thunar_file_monitor), file);
@@ -3895,7 +3905,7 @@ thunar_file_watch (ThunarFile *file)
   /* attach to file */
   g_object_set_qdata_full (G_OBJECT (file), thunar_file_watch_quark, 
file_watch, thunar_file_watch_destroyed);
 }
-  else
+  else if (G_LIKELY (!file->no_file_watch))
 {
   /* increase watch count */
   _thunar_return_if_fail (G_IS_FILE_MONITOR (file_watch->monitor));
@@ -3919,6 +3929,11 @@ thunar_file_unwatch (ThunarFile *file)
 
   _thunar_return_if_fail (THUNAR_IS_FILE (file));
 
+  if (G_UNLIKELY (file->no_file_watch))
+{
+  return;
+}
+
   file_watch = g_object_get_qdata (G_OBJECT (file), thunar_file_watch_quark);
   if (file_watch != 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/thunar] branch master updated (c12465f -> a7355a5)

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

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

  from  c12465f   I18n: Update translation da (100%).
   new  7cca9b2   Add missing ';' to thunarx-menu-item.h
   new  a7355a5   Handle cases when file watch is not supported (Bug #13881)

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


Summary of changes:
 thunar/thunar-file.c| 21 ++---
 thunarx/thunarx-menu-item.h |  2 +-
 2 files changed, 19 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/xfdesktop] 01/01: Use the new Thunarx-3 API

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

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

commit 4c77522252500818869654832594a2d38c3dc291
Author: Andre Miranda 
Date:   Fri Nov 3 15:39:17 2017 +0300

Use the new Thunarx-3 API

Signed-off-by: Eric Koegel 
---
 src/xfdesktop-file-icon-manager.c | 80 ---
 1 file changed, 58 insertions(+), 22 deletions(-)

diff --git a/src/xfdesktop-file-icon-manager.c 
b/src/xfdesktop-file-icon-manager.c
index fa8cbe3..48045c1 100644
--- a/src/xfdesktop-file-icon-manager.c
+++ b/src/xfdesktop-file-icon-manager.c
@@ -1269,19 +1269,55 @@ xfdesktop_file_icon_menu_fill_template_menu(GtkWidget 
*menu,
 }
 
 #ifdef HAVE_THUNARX
+static void
+thunarx_action_callback (GtkAction *action,
+ gpointer callback_data)
+{
+thunarx_menu_item_activate (THUNARX_MENU_ITEM (callback_data));
+}
+
+
+
+static GtkWidget*
+xfdesktop_menu_create_menu_item_from_thunarx_menu_item (GObject *item)
+{
+gchar *label, *icon_name;
+GtkWidget *mi, *img;
+
+g_return_val_if_fail (THUNARX_IS_MENU_ITEM (item), NULL);
+
+g_object_get (G_OBJECT (item),
+  "label", ,
+  "icon", _name,
+  NULL);
+
+img = gtk_image_new_from_icon_name(icon_name, GTK_ICON_SIZE_MENU);
+mi = xfdesktop_menu_create_menu_item_with_mnemonic (label, img);
+
+g_signal_connect_data (mi, "activate",
+   G_CALLBACK (thunarx_action_callback),
+   g_object_ref (item),
+   (GClosureNotify) g_object_unref, 0);
+
+g_free (label);
+g_free (icon_name);
+
+return mi;
+}
+
+
+
 static inline void
-xfdesktop_menu_shell_append_action_list(GtkMenuShell *menu_shell,
-GList *actions)
+xfdesktop_menu_shell_append_thunarx_menu_item_list(GtkMenuShell *menu_shell,
+   GList *items)
 {
 GList *l;
-GtkAction *action;
 GtkWidget *mi;
-
-for(l = actions; l; l = l->next) {
-action = GTK_ACTION(l->data);
-mi = gtk_action_create_menu_item(action);
+
+for(l = items; l; l = l->next) {
+mi = xfdesktop_menu_create_menu_item_from_thunarx_menu_item (l->data);
 gtk_widget_show(mi);
-gtk_menu_shell_append(menu_shell, mi);
+gtk_menu_shell_append(menu_shell, mi);
 }
 }
 #endif
@@ -1751,35 +1787,35 @@ 
xfdesktop_file_icon_manager_populate_context_menu(XfceDesktop *desktop,
 
 #ifdef HAVE_THUNARX
 if(!multi_sel_special && fmanager->priv->thunarx_menu_providers) {
-GList *menu_actions = NULL;
+GList *menu_items = NULL;
 ThunarxMenuProvider *provider;
 
 if(selected->data == fmanager->priv->desktop_icon) {
 /* click on the desktop itself, only show folder actions */
 for(l = fmanager->priv->thunarx_menu_providers; l; l = 
l->next) {
 provider = THUNARX_MENU_PROVIDER(l->data);
-menu_actions = g_list_concat(menu_actions,
- 
thunarx_menu_provider_get_folder_actions(provider,
-   
   toplevel,
-   
   THUNARX_FILE_INFO(file_icon)));
+menu_items = g_list_concat(menu_items,
+ 
thunarx_menu_provider_get_folder_menu_items(provider,
+   
  toplevel,
+   
  THUNARX_FILE_INFO(file_icon)));
 }
 } else {
 /* thunar file specific actions (allows them to operate on 
folders
  * that are on the desktop as well) */
 for(l = fmanager->priv->thunarx_menu_providers; l; l = 
l->next) {
 provider = THUNARX_MENU_PROVIDER(l->data);
-menu_actions = g_list_concat(menu_actions,
- 
thunarx_menu_provider_get_file_actions(provider,
-   
 toplevel,
-   
 selected));
+menu_items = g_list_concat(menu_items,
+ 
thunarx_menu_provider_get_file_menu_items(provider,
+   
   

[Xfce4-commits] [xfce/xfdesktop] branch master updated (795eec8 -> 4c77522)

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

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

  from  795eec8   I18n: Update translation zh_TW (100%).
   new  4c77522   Use the new Thunarx-3 API

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:
 src/xfdesktop-file-icon-manager.c | 80 ---
 1 file changed, 58 insertions(+), 22 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-verve-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-verve-plugin.

commit b17ce9bec531132890b247642c055693796b832f
Author: Anonymous 
Date:   Sat Nov 4 00:34:09 2017 +0100

I18n: Update translation da (100%).

25 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 ba46af2..5e290f2 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-04-17 06:31+0200\n"
-"PO-Revision-Date: 2017-11-03 11:13+\n"
+"PO-Revision-Date: 2017-11-03 18:08+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -23,12 +23,12 @@ msgstr ""
 #: ../panel-plugin/verve.c:98
 #, c-format
 msgid "Could not execute command (exit status %d)"
-msgstr "Kunne ikke eksekvere kommando (afslutningsstatus %d)"
+msgstr "Kunne ikke udføre kommando (afslutningsstatus %d)"
 
 #. Generate error message
 #: ../panel-plugin/verve-plugin.c:409
 msgid "Could not execute command:"
-msgstr "Kunne ikke eksekvere kommandoen:"
+msgstr "Kunne ikke udføre kommandoen:"
 
 #. Create properties dialog
 #: ../panel-plugin/verve-plugin.c:1031
@@ -116,7 +116,7 @@ msgstr "Bug smart bogmærke-URL"
 #. Executable command radio button (smart bookmark off)
 #: ../panel-plugin/verve-plugin.c:1256
 msgid "Run as executable command"
-msgstr "Kør som eksekverbar kommando"
+msgstr "Kør som eksekverbar-kommando"
 
 #: ../panel-plugin/verve-plugin.c:1268
 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] [panel-plugins/xfce4-verve-plugin] branch master updated (21e1786 -> b17ce9b)

2017-11-03 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-verve-plugin.

  from  21e1786   I18n: Update translation da (100%).
   new  b17ce9b   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] [panel-plugins/xfce4-timer-plugin] branch master updated (599a0fc -> 8855010)

2017-11-03 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-timer-plugin.

  from  599a0fc   I18n: Update translation da (100%).
   new  8855010   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] [panel-plugins/xfce4-stopwatch-plugin] branch master updated (eab9957 -> 398a398)

2017-11-03 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-stopwatch-plugin.

  from  eab9957   I18n: Update translation ug (100%).
   new  398a398   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 | 7 ---
 1 file changed, 4 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-sensors-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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 bb4aaf03205db6eea020aeaa9fbd23ef44b5c44e
Author: Anonymous 
Date:   Sat Nov 4 00:33:37 2017 +0100

I18n: Update translation da (100%).

75 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 6c6b2f7..e551282 100644
--- a/po/da.po
+++ b/po/da.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-03-19 18:31+0100\n"
-"PO-Revision-Date: 2017-11-03 11:13+\n"
+"PO-Revision-Date: 2017-11-03 18:00+\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 "Små vandrette _mellemrum"
 
 #: ../panel-plugin/sensors-plugin.c:2267
 msgid "Suppress messages"
-msgstr "Undertryk beskeder"
+msgstr "Undertryk meddelelser"
 
 #: ../panel-plugin/sensors-plugin.c:2287
 msgid "Suppress tooltip"
@@ -201,7 +201,7 @@ msgstr "\"hddtemp\" blev ikke kørt korrekt, selvom denne er 
kørselbar. Dette s
 
 #: ../lib/hddtemp.c:585 ../lib/hddtemp.c:608
 msgid "Suppress this message in future"
-msgstr "Undertryk denne besked for fremtiden"
+msgstr "Undertryk denne meddelelse for fremtiden"
 
 #: ../lib/hddtemp.c:603
 #, 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-timer-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-timer-plugin.

commit 8855010df6772e02e111336c6708e76d543b693b
Author: Anonymous 
Date:   Sat Nov 4 00:34:01 2017 +0100

I18n: Update translation da (100%).

42 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 0b8bac9..29efd08 100644
--- a/po/da.po
+++ b/po/da.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-06-05 06:31+0200\n"
-"PO-Revision-Date: 2017-11-03 11:14+\n"
+"PO-Revision-Date: 2017-11-03 18:05+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -133,7 +133,7 @@ msgstr "Tilføj ny alarm"
 
 #: ../src/xfcetimer.c:924
 msgid "Edit alarm"
-msgstr "Redigér alarm"
+msgstr "Rediger alarm"
 
 #: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
 msgid "Xfce4 Timer Options"

-- 
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-mount-plugin] branch master updated (1c411f1 -> 7621666)

2017-11-03 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-mount-plugin.

  from  1c411f1   I18n: Update translation da (100%).
   new  7621666   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] [panel-plugins/xfce4-pulseaudio-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-pulseaudio-plugin.

commit 26409f5190999aab5206015b1a4e7a75c7b2f522
Author: Anonymous 
Date:   Sat Nov 4 00:33:28 2017 +0100

I18n: Update translation da (100%).

27 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 5ea22d9..eb9b981 100644
--- a/po/da.po
+++ b/po/da.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-09-24 00:46+0200\n"
-"PO-Revision-Date: 2017-11-03 14:19+\n"
+"PO-Revision-Date: 2017-11-03 18:07+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -62,7 +62,7 @@ msgstr "Lyd_mikser"
 msgid ""
 "Audio mixer command that can be executed from the context menu, e.g. "
 "\"pavucontrol\", \"unity-control-center sound\"."
-msgstr "Lydmikser-kommando som kan eksekveres fra genvejsmenuen, f.eks. 
\"pavucontrol\", \"unity-control-center sound\"."
+msgstr "Lydmikser-kommando som kan udføres fra genvejsmenuen, f.eks. 
\"pavucontrol\", \"unity-control-center sound\"."
 
 #: ../panel-plugin/pulseaudio-dialog.glade.h:9
 msgid "_Run Audio Mixer..."
@@ -91,7 +91,7 @@ msgid ""
 "Failed to execute command \"%s\".\n"
 "\n"
 "%s"
-msgstr "Kunne ikke eksekvere kommandoen \"%s\".\n\n%s"
+msgstr "Kunne ikke udføre kommandoen \"%s\".\n\n%s"
 
 #: ../panel-plugin/pulseaudio-dialog.c:138
 #: ../panel-plugin/pulseaudio-menu.c:261

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

2017-11-03 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-stopwatch-plugin.

commit 398a398b299b39e8d73bcdc777ab263c01a0a5de
Author: Anonymous 
Date:   Sat Nov 4 00:33:48 2017 +0100

I18n: Update translation da (100%).

2 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 1daf501..3bbdc43 100644
--- a/po/da.po
+++ b/po/da.po
@@ -4,13 +4,14 @@
 # 
 # Translators:
 # Per Kongstad , 2010
+# scootergrisen, 2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 21:19+0200\n"
-"PO-Revision-Date: 2017-09-19 18:06+\n"
-"Last-Translator: Nick Schermer \n"
+"PO-Revision-Date: 2017-11-03 18:04+\n"
+"Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -24,4 +25,4 @@ msgstr "Stopur"
 
 #: ../panel-plugin/xfce4-stopwatch-plugin.desktop.in.in.h:2
 msgid "Time yourself"
-msgstr "Tidstag dig selv"
+msgstr "Mål din egen tid"

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

2017-11-03 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-mount-plugin.

commit 7621666fba53bc866ffacd7752980d92a2cd6fde
Author: Anonymous 
Date:   Sat Nov 4 00:33:10 2017 +0100

I18n: Update translation da (100%).

56 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 270c0a6..7dd01e2 100644
--- a/po/da.po
+++ b/po/da.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-06-08 00:31+0200\n"
-"PO-Revision-Date: 2017-11-03 11:13+\n"
+"PO-Revision-Date: 2017-11-03 18:00+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -152,7 +152,7 @@ msgstr "Dette er kun anvendeligt og anbefalelsesværdigt, 
hvis du specificerer \
 
 #: ../panel-plugin/mount-plugin.c:747
 msgid "Show _message after unmount"
-msgstr "Vis _besked efter afmontering"
+msgstr "Vis _meddelelse efter afmontering"
 
 #: ../panel-plugin/mount-plugin.c:759
 msgid "You can specify a distinct icon to be displayed in the panel."

-- 
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-pulseaudio-plugin] branch master updated (ff0b402 -> 26409f5)

2017-11-03 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-pulseaudio-plugin.

  from  ff0b402   I18n: Update translation da (100%).
   new  26409f5   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-sensors-plugin] branch master updated (89f876a -> bb4aaf0)

2017-11-03 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  89f876a   I18n: Update translation da (100%).
   new  bb4aaf0   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-mailwatch-plugin] branch master updated (7a6dc17 -> 0bc0b00)

2017-11-03 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-mailwatch-plugin.

  from  7a6dc17   I18n: Update translation da (100%).
   new  0bc0b00   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] [panel-plugins/xfce4-mailwatch-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-mailwatch-plugin.

commit 0bc0b000418f24a07e3efe2da9583542d31244db
Author: Anonymous 
Date:   Sat Nov 4 00:33:00 2017 +0100

I18n: Update translation da (100%).

112 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 f8c3606..a5a6a70 100644
--- a/po/da.po
+++ b/po/da.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-07-05 18:31+0200\n"
-"PO-Revision-Date: 2017-11-03 11:57+\n"
+"PO-Revision-Date: 2017-11-03 18:06+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -42,7 +42,7 @@ msgid ""
 "Received HTTP response code %d, which should be 200.  There may be a problem"
 " with GMail's servers, or they have incompatibly changed their "
 "authentication method or location of the new messages feed."
-msgstr "Modtog HTTP-svarkode %d, som skulle være 200.  Der er muligvis et 
problem med Gmail's servere, eller de har ændret deres godkendelsesmetode på en 
ikke kompatibel måde eller placering af deres nye beskedstrøm."
+msgstr "Modtog HTTP-svarkode %d, som skulle være 200.  Der er muligvis et 
problem med Gmail's servere, eller de har ændret deres godkendelsesmetode på en 
ikke kompatibel måde eller placering af deres nye meddelelsesstrøm."
 
 #: ../libmailwatch-core/mailwatch-mailbox-gmail.c:394
 #: ../libmailwatch-core/mailwatch-mailbox-imap.c:735
@@ -88,7 +88,7 @@ msgstr "Ekstern Gmail-postkasse"
 msgid ""
 "The GMail plugin can connect to Google's mail service and securely retrieve "
 "the number of new messages."
-msgstr "Gmail-pluginet kan oprette forbindelse til Google's posttjeneste og 
sikkert hente antallet af nye beskeder."
+msgstr "Gmail-pluginet kan oprette forbindelse til Google's posttjeneste og 
sikkert hente antallet af nye meddelelser."
 
 #: ../libmailwatch-core/mailwatch-mailbox-imap.c:286
 msgid ""
@@ -400,7 +400,7 @@ msgstr "Indtast venligst et navn til postkassen."
 #: ../libmailwatch-core/mailwatch.c:712
 #, c-format
 msgid "Edit Mailbox: %s"
-msgstr "Redigér postkasse: %s"
+msgstr "Rediger postkasse: %s"
 
 #: ../libmailwatch-core/mailwatch.c:771
 msgid "Select Mailbox Type"

-- 
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-indicator-plugin] branch master updated (73d6f83 -> 484fe9d)

2017-11-03 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-indicator-plugin.

  from  73d6f83   I18n: Update translation da (100%).
   new  484fe9d   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] [panel-plugins/xfce4-indicator-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-indicator-plugin.

commit 484fe9dc26607ef20d8cc7998c97c19253691cbd
Author: Anonymous 
Date:   Sat Nov 4 00:32:52 2017 +0100

I18n: Update translation da (100%).

40 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 8110d3a..a1380cd 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-07-16 18:31+0200\n"
-"PO-Revision-Date: 2017-11-03 11:13+\n"
+"PO-Revision-Date: 2017-11-03 18:00+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -66,7 +66,7 @@ msgstr "Sessionshåndtering"
 
 #: ../panel-plugin/indicator-dialog.c:66 ../panel-plugin/indicator-dialog.c:67
 msgid "Messaging Menu"
-msgstr "Beskedmenu"
+msgstr "Meddelelsesmenu"
 
 #: ../panel-plugin/indicator-dialog.c:68 ../panel-plugin/indicator-dialog.c:69
 msgid "Date and Time"

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

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

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

commit 7742f7c96749a62bd54a88ed5f01278e0ac17501
Author: Anonymous 
Date:   Sat Nov 4 00:32:22 2017 +0100

I18n: Update translation da (100%).

70 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 7bb6889..a885943 100644
--- a/po/da.po
+++ b/po/da.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-10-23 17:29+0200\n"
-"PO-Revision-Date: 2017-10-31 21:37+\n"
+"PO-Revision-Date: 2017-11-03 18:31+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -65,7 +65,7 @@ msgstr "Genopfrisk database"
 
 #: ../src/extended-interface.c:926
 msgid "Context Menu"
-msgstr "Kontekstmenu"
+msgstr "Genvejsmenu"
 
 #: ../src/extended-interface.c:969
 msgid "Current 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-clipman-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-clipman-plugin.

commit fbe195a1ac1209b89edc7cbc74446a600903d7e8
Author: Anonymous 
Date:   Sat Nov 4 00:32:31 2017 +0100

I18n: Update translation da (100%).

72 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 eed6548..3f4e11a 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-09-15 18:31+0200\n"
-"PO-Revision-Date: 2017-11-03 11:12+\n"
+"PO-Revision-Date: 2017-11-03 18:08+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -49,7 +49,7 @@ msgstr "Billede"
 
 #: ../panel-plugin/xfce4-clipman-actions.xml.in.h:2
 msgid "Edit with Gimp"
-msgstr "Redigér med Gimp"
+msgstr "Rediger med Gimp"
 
 #: ../panel-plugin/xfce4-clipman-actions.xml.in.h:3
 msgid "View with Ristretto"
@@ -100,7 +100,7 @@ msgstr "Er du sikker på, at du vil nulstille handlingerne 
til systemets standar
 
 #: ../panel-plugin/settings-dialog.ui.h:1
 msgid "Edit Action"
-msgstr "Redigér handling"
+msgstr "Rediger handling"
 
 #: ../panel-plugin/settings-dialog.ui.h:2
 msgid ""
@@ -222,7 +222,7 @@ msgstr "Tilføj handling"
 
 #: ../panel-plugin/settings-dialog.ui.h:29
 msgid "Edit action"
-msgstr "Redigér handling"
+msgstr "Rediger handling"
 
 #: ../panel-plugin/settings-dialog.ui.h:30
 msgid "Delete action"
@@ -310,7 +310,7 @@ msgid ""
 "Unable to execute the command \"%s\"\n"
 "\n"
 "%s"
-msgstr "Kan ikke eksekvere kommandoen \"%s\"\n\n%s"
+msgstr "Kan ikke udføre kommandoen \"%s\"\n\n%s"
 
 #: ../panel-plugin/menu.c:234
 msgid "Are you sure you want to clear the history?"

-- 
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-clipman-plugin] branch master updated (9f665db -> fbe195a)

2017-11-03 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-clipman-plugin.

  from  9f665db   I18n: Update translation da (100%).
   new  fbe195a   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/xfmpc] branch master updated (f0df58a -> 7742f7c)

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

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

  from  f0df58a   I18n: Update translation da (100%).
   new  7742f7c   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] 01/01: I18n: Update translation da (100%).

2017-11-03 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 7792a3fbba7f21fd9b226116c85d8b4d1785165f
Author: scootergrisen 
Date:   Sat Nov 4 00:31:01 2017 +0100

I18n: Update translation da (100%).

739 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 50689f6..21d7ecc 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1982,7 +1982,7 @@ msgstr "_Send til"
 
 #: ../thunar/thunar-renamer-dialog.c:192 ../thunar/thunar-standard-view.c:403
 msgid "File Context Menu"
-msgstr "Kontekstmenu for fil"
+msgstr "Genvejsmenu for fil"
 
 #: ../thunar/thunar-renamer-dialog.c:193
 msgid "_Add Files..."
@@ -2267,7 +2267,7 @@ msgstr "Rettighed nægtet"
 
 #: ../thunar/thunar-standard-view.c:404
 msgid "Folder Context Menu"
-msgstr "Mappe kontekstmenu"
+msgstr "Genvejsmenu for mappe"
 
 #: ../thunar/thunar-standard-view.c:405
 msgid "Create an empty folder within the current folder"
@@ -3441,7 +3441,7 @@ msgid ""
 "file managers context menus for certain kinds of files."
 msgstr ""
 "Du kan indstille tilpassede handlinger som vil fremgå af\n"
-"kontekstmenu for filhåndtering for specielle typer af filer."
+"genvejsmenu for filhåndtering for specielle typer af filer."
 
 #: ../plugins/thunar-uca/thunar-uca-chooser.c:173
 msgid "Add a new custom action."
@@ -3493,7 +3493,7 @@ msgstr "Grundlæggende"
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:137
 msgid "The name of the action that will be displayed in the context menu."
-msgstr "Handlingsnavnet som vil fremgå af kontekstmenuen."
+msgstr "Handlingsnavnet som vil fremgå af genvejsmenuen."
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:150
 msgid "_Description:"
@@ -3505,7 +3505,7 @@ msgid ""
 "statusbar when selecting the item from the context menu."
 msgstr ""
 "Beskrivelsen af handlingen vil blive vist som værktøjstips i statuslinjen, "
-"når dette element bliver valgt fra kontekstmenuen."
+"når dette element bliver valgt fra genvejsmenuen."
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:168
 msgid "_Command:"
@@ -3562,7 +3562,7 @@ msgid ""
 "Click this button to select an icon file that will be displayed in the "
 "context menu in addition to the action name chosen above."
 msgstr ""
-"Klik denne knap for at vælge ikonfil som vil blive vist i kontekstmenuen "
+"Klik denne knap for at vælge ikonfil som vil blive vist i genvejsmenuen "
 "sammen med handlingsnavnet valgt foroven."
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:251
@@ -3660,11 +3660,11 @@ msgid ""
 "files."
 msgstr ""
 "Denne side lister betingelser for hvilke\n"
-"handlinger, der vil blive vist i filhåndteringskontekst-\n"
-"menuer. Filmønstre er specificeret som en liste\n"
-"af simple filmønstre adskilt af semikolonner\n"
+"handlinger, der vil blive vist i filhåndteringernes\n"
+"genvejsmenuer. Filmønstre er specificeret som en\n"
+"liste af simple filmønstre adskilt af semikolonner\n"
 "(eks. *.txt;*.doc). For at en handling vises i\n"
-"kontekstmenu for fil eller mappe, skal mindst et\n"
+"genvejsmenu for fil eller mappe, skal mindst et\n"
 "mønster stemme overens med fil- eller mappe-\n"
 "navn. Du kan ekstra definere at handlingen kun vises\n"
 "for specielle filtyper."
@@ -3702,8 +3702,8 @@ msgstr "Indstil _tilpassede handlinger..."
 msgid ""
 "Setup custom actions that will appear in the file managers context menus"
 msgstr ""
-"Definer tilpassede handlinger, som vil blive vist i kontekstmenuer for "
-"filhåndtering"
+"Definer tilpassede handlinger, som vil blive vist i filhåndteringernes "
+"genvejsmenuer"
 
 #: ../plugins/thunar-uca/thunar-uca-provider.c:417
 #, 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/thunar] branch xfce-4.12 updated (0bcaa12 -> 7792a3f)

2017-11-03 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  0bcaa12   I18n: Update translation sv (100%).
   new  7792a3f   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 | 24 
 1 file changed, 12 insertions(+), 12 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%).

2017-11-03 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 6bae7a2a70e5293b033892e4fa2da792642e5a45
Author: Anonymous 
Date:   Sat Nov 4 00:31:36 2017 +0100

I18n: Update translation da (100%).

207 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 7ca0fec..7752654 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: 2017-10-30 00:31+0100\n"
-"PO-Revision-Date: 2017-11-01 07:41+\n"
+"PO-Revision-Date: 2017-11-03 18:34+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-power-manager/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -976,7 +976,7 @@ msgid ""
 "interface which allows applications to prevent automatic sleep actions via "
 "the power manager; as an example, the operating system’s package manager "
 "should make use of this interface while it is performing update operations."
-msgstr "I tillæg tilbyder Xfce-strømstyringen et sæt af freedesktop-kompatible 
DBus-grænseflader, der informerer andre programmer om det nuværende 
strømstyrkeniveau, så de kan tilpasse deres strømforbrug, samtidig som det 
tilbyder inhibit-grænsefladen, der gør det muligt for programmer, at forhindre 
automatiske hvilehandlinger via strømhåndteringen; som eksempel bør 
operativsystemets pakkehåndtering gøre brug denne grænseflade, mens den udfører 
opdateringshandlinger."
+msgstr "I tillæg tilbyder Xfce-strømstyringen et sæt af freedesktop-kompatible 
DBus-grænseflader, der informerer andre programmer om det nuværende 
strømstyrkeniveau, så de kan tilpasse deres strømforbrug, samtidig som det 
tilbyder inhibit-grænsefladen, der gør det muligt for programmer, at forhindre 
automatiske hvilehandlinger via strømstyring; som eksempel bør 
operativsystemets pakkehåndtering gøre brug denne grænseflade, mens den udfører 
opdateringshandlinger."
 
 #: ../data/appdata/xfce4-power-manager.appdata.xml.in.h:3
 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/tumbler] 01/01: I18n: Update translation da (100%).

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

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

commit 369bcdf241e2c425ebb9942f3c74e68b28fc0fd8
Author: Anonymous 
Date:   Sat Nov 4 00:31:11 2017 +0100

I18n: Update translation da (100%).

39 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 cc5af32..db91c26 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Tumbler\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-05-28 12:30+0200\n"
-"PO-Revision-Date: 2017-09-30 12:41+\n"
+"PO-Revision-Date: 2017-11-03 18:20+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/tumbler/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -53,14 +53,14 @@ msgstr "Kunne ikke indlæse filen \"%s\": %s"
 #: ../tumblerd/tumbler-manager.c:594
 #, c-format
 msgid "Malformed section \"%s\" in file \"%s\": %s"
-msgstr "Misdannet sektion \"%s\" i filen \"%s\": %s"
+msgstr "Forkert udformet sektion \"%s\" i filen \"%s\": %s"
 
 #: ../tumblerd/tumbler-manager.c:607
 #, c-format
 msgid ""
 "Malformed section \"%s\" in file \"%s\": Mismatch between section name and "
 "UriScheme/MimeType"
-msgstr "Misdannet sektion \"%s\" i filen \"%s\": Der er forskel mellem 
sektionsnavn og Uri-skema/MIME-type"
+msgstr "Forkert udformet sektion \"%s\" i filen \"%s\": Der er forskel mellem 
sektionsnavn og Uri-skema/MIME-type"
 
 #: ../tumblerd/tumbler-manager.c:967 ../tumblerd/tumbler-manager.c:981
 #: ../tumblerd/tumbler-manager.c:995
@@ -68,7 +68,7 @@ msgstr "Misdannet sektion \"%s\" i filen \"%s\": Der er 
forskel mellem sektionsn
 #: ../plugins/desktop-thumbnailer/desktop-thumbnailer-provider.c:147
 #, c-format
 msgid "Malformed file \"%s\": %s"
-msgstr "Misdannet fil \"%s\": %s"
+msgstr "Forkert udformet fil \"%s\": %s"
 
 #: ../tumblerd/tumbler-manager.c:1021
 #, 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-power-manager] branch master updated (7b8e203 -> 6bae7a2)

2017-11-03 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  7b8e203   I18n: Update translation sv (95%).
   new  6bae7a2   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/tumbler] branch master updated (34afa6d -> 369bcdf)

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

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

  from  34afa6d   I18n: Update translation hr (100%).
   new  369bcdf   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/thunar] branch xfce-4.10 updated (fc14581 -> bb1b192)

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

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

  from  fc14581   I18n: Update translation da (100%).
   new  bb1b192   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/thunar] 01/01: I18n: Update translation da (100%).

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

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

commit bb1b19285bdb5116e2f0ed5c7b1aa7d57b5aaf4f
Author: Anonymous 
Date:   Sat Nov 4 00:30:48 2017 +0100

I18n: Update translation da (100%).

681 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 322aa68..510de9d 100644
--- a/po/da.po
+++ b/po/da.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 23:03+0200\n"
-"PO-Revision-Date: 2017-09-30 19:30+\n"
+"PO-Revision-Date: 2017-11-03 18:31+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/thunar/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -1756,7 +1756,7 @@ msgstr "_Send til"
 
 #: ../thunar/thunar-renamer-dialog.c:181 ../thunar/thunar-standard-view.c:357
 msgid "File Context Menu"
-msgstr "Kontekstmenu for fil"
+msgstr "Genvejsmenu for fil"
 
 #: ../thunar/thunar-renamer-dialog.c:182
 msgid "_Add Files..."
@@ -1976,7 +1976,7 @@ msgstr[1] "%u elementer, total %s"
 
 #: ../thunar/thunar-standard-view.c:358
 msgid "Folder Context Menu"
-msgstr "Mappe kontekstmenu"
+msgstr "Genvejsmenu for mappe"
 
 #: ../thunar/thunar-standard-view.c:359
 msgid "Create an empty folder within the current folder"
@@ -3029,7 +3029,7 @@ msgstr "Tilpassede handlinger"
 msgid ""
 "You can configure custom actions that will appear in the\n"
 "file managers context menus for certain kinds of files."
-msgstr "Du kan indstille tilpassede handlinger som vil fremgå af\nkontekstmenu 
for filhåndtering for specielle typer af filer."
+msgstr "Du kan indstille tilpassede handlinger som vil fremgå af\ngenvejsmenu 
for filhåndtering for specielle typer af filer."
 
 #: ../plugins/thunar-uca/thunar-uca-chooser.c:173
 msgid "Add a new custom action."
@@ -3085,7 +3085,7 @@ msgstr "_Navn:"
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:136
 msgid "The name of the action that will be displayed in the context menu."
-msgstr "Handlingsnavnet som vil fremgå af kontekstmenuen."
+msgstr "Handlingsnavnet som vil fremgå af genvejsmenuen."
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:149
 msgid "_Description:"
@@ -3095,7 +3095,7 @@ msgstr "_Beskrivelse:"
 msgid ""
 "The description of the action that will be displayed as tooltip in the "
 "statusbar when selecting the item from the context menu."
-msgstr "Beskrivelsen af handlingen vil blive vist som værktøjstips i 
statuslinjen, når dette element bliver valgt fra kontekstmenuen."
+msgstr "Beskrivelsen af handlingen vil blive vist som værktøjstips i 
statuslinjen, når dette element bliver valgt fra genvejsmenuen."
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:167
 msgid "_Command:"
@@ -3141,7 +3141,7 @@ msgstr "Intet Ikon"
 msgid ""
 "Click this button to select an icon file that will be displayed in the "
 "context menu in addition to the action name chosen above."
-msgstr "Klik denne knap for at vælge ikonfil som vil blive vist i 
kontekstmenuen sammen med handlingsnavnet valgt foroven."
+msgstr "Klik denne knap for at vælge ikonfil som vil blive vist i 
genvejsmenuen sammen med handlingsnavnet valgt foroven."
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:250
 msgid ""
@@ -3231,7 +3231,7 @@ msgid ""
 "or folder. Additionally, you can specify that the\n"
 "action should only appear for certain kinds of\n"
 "files."
-msgstr "Denne side lister betingelser for hvilke\nhandlinger, der vil blive 
vist i filhåndteringskontekst-\nmenuer. Filmønstre er specificeret som en 
liste\naf simple filmønstre adskilt af semikolonner\n(eks. *.txt;*.doc). For at 
en handling vises i\nkontekstmenu for fil eller mappe, skal mindst et\nmønster 
stemme overens med fil- eller mappe-\nnavn. Du kan ekstra definere at 
handlingen kun vises\nfor specielle filtyper."
+msgstr "Denne side lister betingelser for hvilke\nhandlinger, der vil blive 
vist i filhåndteringernes\ngenvejsmenuer. Filmønstre er specificeret som\nen 
liste af simple filmønstre adskilt af semikolonner\n(eks. *.txt;*.doc). For at 
en handling vises i\ngenvejsmenuen for fil eller mappe, skal mindst et\nmønster 
stemme overens med fil- eller mappe-\nnavn. Du kan ekstra definere at 
handlingen kun vises\nfor specielle filtyper."
 
 #: ../plugins/thunar-uca/thunar-uca-model.c:770
 #, c-format
@@ -3265,7 +3265,7 @@ msgstr "Indstil _tilpassede handlinger..."
 #: ../plugins/thunar-uca/thunar-uca-provider.c:178
 msgid ""
 "Setup custom actions that will appear in the file managers context menus"
-msgstr "Definer tilpassede handlinger, som vil blive vist i kontekstmenuer for 
filhåndtering"
+msgstr "Definer tilpassede handlinger, som 

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

2017-11-03 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 c12465f57a3fe4f162316e8ee79df55a926e282a
Author: Anonymous 
Date:   Sat Nov 4 00:30:24 2017 +0100

I18n: Update translation da (100%).

737 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 e433da4..27d6742 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-10-10 06:30+0200\n"
-"PO-Revision-Date: 2017-10-11 14:42+\n"
+"PO-Revision-Date: 2017-11-03 18:30+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/thunar/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -1950,7 +1950,7 @@ msgstr "_Send til"
 
 #: ../thunar/thunar-renamer-dialog.c:192 ../thunar/thunar-standard-view.c:403
 msgid "File Context Menu"
-msgstr "Kontekstmenu for fil"
+msgstr "Genvejsmenu for fil"
 
 #: ../thunar/thunar-renamer-dialog.c:193
 msgid "_Add Files..."
@@ -2226,7 +2226,7 @@ msgstr "Rettighed nægtet"
 
 #: ../thunar/thunar-standard-view.c:404
 msgid "Folder Context Menu"
-msgstr "Mappe kontekstmenu"
+msgstr "Genvejsmenu for mappe"
 
 #: ../thunar/thunar-standard-view.c:405
 msgid "Create an empty folder within the current folder"
@@ -3407,7 +3407,7 @@ msgstr "Indstil _tilpassede handlinger..."
 #: ../plugins/thunar-uca/thunar-uca-provider.c:182
 msgid ""
 "Setup custom actions that will appear in the file managers context menus"
-msgstr "Definer tilpassede handlinger, som vil blive vist i kontekstmenuer for 
filhåndtering"
+msgstr "Definer tilpassede handlinger, som vil blive vist i filhåndteringernes 
genvejsmenuer"
 
 #: ../plugins/thunar-uca/thunar-uca-provider.c:421
 #, c-format
@@ -3424,7 +3424,7 @@ msgstr "Eksempel på en tilpasset handling"
 
 #: ../plugins/thunar-uca/thunar-uca-editor.ui.h:3
 msgid "The name of the action that will be displayed in the context menu."
-msgstr "Handlingsnavnet som vil fremgå af kontekstmenuen."
+msgstr "Handlingsnavnet som vil fremgå af genvejsmenuen."
 
 #: ../plugins/thunar-uca/thunar-uca-editor.ui.h:4
 msgid "_Description:"
@@ -3434,7 +3434,7 @@ msgstr "_Beskrivelse:"
 msgid ""
 "The description of the action that will be displayed as tooltip in the "
 "statusbar when selecting the item from the context menu."
-msgstr "Beskrivelsen af handlingen vil blive vist som værktøjstips i 
statuslinjen, når dette element bliver valgt fra kontekstmenuen."
+msgstr "Beskrivelsen af handlingen vil blive vist som værktøjstips i 
statuslinjen, når dette element bliver valgt fra genvejsmenuen."
 
 #: ../plugins/thunar-uca/thunar-uca-editor.ui.h:6
 msgid "_Command:"
@@ -3475,7 +3475,7 @@ msgstr "_Ikon:"
 msgid ""
 "Click this button to select an icon file that will be displayed in the "
 "context menu in addition to the action name chosen above."
-msgstr "Klik denne knap for at vælge ikonfil som vil blive vist i 
kontekstmenuen sammen med handlingsnavnet valgt foroven."
+msgstr "Klik denne knap for at vælge ikonfil som vil blive vist i 
genvejsmenuen sammen med handlingsnavnet valgt foroven."
 
 #: ../plugins/thunar-uca/thunar-uca-editor.ui.h:15
 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/thunar] branch master updated (787617c -> c12465f)

2017-11-03 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  787617c   I18n: Update translation sv (100%).
   new  c12465f   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] [panel-plugins/xfce4-weather-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-weather-plugin.

commit 1a7fb1e47759b5aa544e02f34e23228c4859c099
Author: Anonymous 
Date:   Fri Nov 3 18:34:29 2017 +0100

I18n: Update translation da (100%).

330 translated messages.

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

diff --git a/po/da.po b/po/da.po
index cfcda11..e548f7f 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-10-24 18:31+0200\n"
-"PO-Revision-Date: 2017-09-30 18:33+\n"
+"PO-Revision-Date: 2017-11-03 14:33+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -91,7 +91,7 @@ msgstr "Fejl ved fortolkning af astronomiske data!"
 msgid ""
 "Download of astronomical data failed with HTTP Status Code %d, Reason "
 "phrase: %s"
-msgstr "Download af astronomiske data fejlede med HTTP-status-kode %d, 
årsagsfrase: %s"
+msgstr "Download af astronomiske data fejlede med HTTP-statuskode %d, 
årsagsfrase: %s"
 
 #: ../panel-plugin/weather.c:558
 msgid "Error parsing weather data!"
@@ -101,7 +101,7 @@ msgstr "Fejl ved parsing af vejrdata!"
 #, c-format
 msgid ""
 "Download of weather data failed with HTTP Status Code %d, Reason phrase: %s"
-msgstr "Download af vejr-data fejlede med HTTP-status-kode %d, årsagsfrase: %s"
+msgstr "Download af vejr-data fejlede med HTTP-statuskode %d, årsagsfrase: %s"
 
 #. start receive thread
 #: ../panel-plugin/weather.c:635 ../panel-plugin/weather.c:654
@@ -526,7 +526,7 @@ msgstr "Barometrisk _tryk:"
 
 #: ../panel-plugin/weather-config.c:978
 msgid "Hectopascals (hPa)"
-msgstr "Hectopascal (hPa)"
+msgstr "Hektopascal (hPa)"
 
 #: ../panel-plugin/weather-config.c:980
 msgid "Inches of mercury (inHg)"
@@ -1356,7 +1356,7 @@ msgstr "Umiddelbar temperatur"
 msgid ""
 "\n"
 "Wind\n"
-msgstr "\nBlæst\n"
+msgstr "\nVind\n"
 
 #: ../panel-plugin/weather-summary.c:502
 #, c-format
@@ -1458,7 +1458,7 @@ msgstr "\n\tVejr- og astronomiske data fra\n\t\t"
 
 #: ../panel-plugin/weather-summary.c:556
 msgid "The Norwegian Meteorological Institute"
-msgstr "Den norske meteorologiske institut"
+msgstr "Det norske meteorologiske institut"
 
 #: ../panel-plugin/weather-summary.c:608
 #, c-format
@@ -1476,7 +1476,7 @@ msgstr "I morgen"
 #. that looks much better and saves space.
 #: ../panel-plugin/weather-summary.c:630
 msgid "Times used for calculations\n"
-msgstr "Tider brug for udregninger\n"
+msgstr "Tider brugt til udregninger\n"
 
 #: ../panel-plugin/weather-summary.c:632
 #, c-format
@@ -1577,11 +1577,11 @@ msgstr "%s\n"
 
 #: ../panel-plugin/weather-summary.c:722
 msgid "Sunrise: The sun never rises this day.\n"
-msgstr "Solopgang: solen står aldrig op denne dag.\n"
+msgstr "Solopgang: solen står aldrig op på denne 
dag.\n"
 
 #: ../panel-plugin/weather-summary.c:726
 msgid "Sunset: The sun never sets this day.\n"
-msgstr "Solnedgang: solen går aldrig ned denne dag.\n"
+msgstr "Solnedgang: solen går aldrig ned på denne 
dag.\n"
 
 #: ../panel-plugin/weather-summary.c:731
 #, c-format
@@ -1606,11 +1606,11 @@ msgstr "Månefase: ukendt\n"
 
 #: ../panel-plugin/weather-summary.c:754
 msgid "Moonrise: The moon never rises this day.\n"
-msgstr "Måneopgang: månen står aldrig op i dag.\n"
+msgstr "Måneopgang: månen står aldrig op på denne 
dag.\n"
 
 #: ../panel-plugin/weather-summary.c:759
 msgid "Moonset: The moon never sets this day.\n"
-msgstr "Månenedgang: månen går aldrig ned i dag.\n"
+msgstr "Månenedgang: månen går aldrig ned på denne 
dag.\n"
 
 #: ../panel-plugin/weather-summary.c:764
 #, c-format
@@ -1711,7 +1711,7 @@ msgstr "Aftagende halv"
 #: ../panel-plugin/weather-translate.c:69
 #: ../panel-plugin/weather-translate.c:122
 msgid "Sunny"
-msgstr "Solrigt"
+msgstr "Solskin"
 
 #: ../panel-plugin/weather-translate.c:69
 #: ../panel-plugin/weather-translate.c:122
@@ -1820,4 +1820,4 @@ msgstr "Slud med torden"
 
 #: ../panel-plugin/weather.desktop.in.h:2
 msgid "Show current weather conditions"
-msgstr "Vis nuværende vejrtilstande"
+msgstr "Vis nuværende vejrforhold"

-- 
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-weather-plugin] branch master updated (16d1d08 -> 1a7fb1e)

2017-11-03 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-weather-plugin.

  from  16d1d08   I18n: Update translation lt (100%).
   new  1a7fb1e   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 | 26 +-
 1 file changed, 13 insertions(+), 13 deletions(-)

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


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

2017-11-03 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-smartbookmark-plugin.

commit dea138150479fde7c5649dc9d0d7069460f3418e
Author: Anonymous 
Date:   Fri Nov 3 18:34:10 2017 +0100

I18n: Update translation da (100%).

9 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 cc1fd56..c3eefaf 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 21:17+0200\n"
-"PO-Revision-Date: 2017-09-19 18:06+\n"
+"PO-Revision-Date: 2017-11-03 14:44+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -60,4 +60,4 @@ msgstr "Smart-bogmærke"
 
 #: ../src/smartbookmark.desktop.in.h:2
 msgid "Query websites from the Xfce panel"
-msgstr "Spørg websteder fra Xfce-panelet"
+msgstr "Forespørg websteder fra Xfce-panelet"

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

2017-11-03 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-pulseaudio-plugin.

commit ff0b402e247a514d7f64b4ee887f1e1f1cb471c1
Author: Anonymous 
Date:   Fri Nov 3 18:33:57 2017 +0100

I18n: Update translation da (100%).

27 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 7a860cf..5ea22d9 100644
--- a/po/da.po
+++ b/po/da.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-09-24 00:46+0200\n"
-"PO-Revision-Date: 2017-11-03 11:14+\n"
+"PO-Revision-Date: 2017-11-03 14:19+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -107,7 +107,7 @@ msgstr "Ikke forbundet til PulseAudio-serveren"
 #: ../panel-plugin/pulseaudio-button.c:311
 #, c-format
 msgid "Volume %d%% (muted)"
-msgstr "Lydstyrke %d%% (slået fra)"
+msgstr "Lydstyrke %d%% (lydløs)"
 
 #: ../panel-plugin/pulseaudio-button.c:313
 #, c-format
@@ -130,7 +130,7 @@ msgstr "_Lydmikser..."
 #: ../panel-plugin/pulseaudio-notify.c:198
 #, c-format
 msgid "Volume %d%c (muted)"
-msgstr "Lydstyrke %d%c (slået fra)"
+msgstr "Lydstyrke %d%c (lydløs)"
 
 #: ../panel-plugin/pulseaudio-notify.c:200
 #, 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-pulseaudio-plugin] branch master updated (86fbf4c -> ff0b402)

2017-11-03 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-pulseaudio-plugin.

  from  86fbf4c   I18n: Update translation uk (100%).
   new  ff0b402   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-smartbookmark-plugin] branch master updated (a034040 -> dea1381)

2017-11-03 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-smartbookmark-plugin.

  from  a034040   I18n: Update translation ug (100%).
   new  dea1381   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] [panel-plugins/xfce4-places-plugin] branch master updated (46b5fca -> 1d4fd18)

2017-11-03 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  46b5fca   I18n: Update translation da (100%).
   new  1d4fd18   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%).

2017-11-03 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 1d4fd18669412faa39444d5c09038338443c877c
Author: Anonymous 
Date:   Fri Nov 3 18:33:50 2017 +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 2c57d2d..169247e 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ 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 11:12+\n"
+"PO-Revision-Date: 2017-11-03 14:01+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -184,7 +184,7 @@ msgstr "Vis seneste _dokumenter"
 #. RECENT DOCUMENTS: Show clear option
 #: ../panel-plugin/cfg.c:559
 msgid "Show cl_ear option"
-msgstr "Vis sl_ettefunktion"
+msgstr "Vis _ryd-valgmuligheden"
 
 #: ../panel-plugin/cfg.c:571
 msgid "_Number to display"
@@ -208,7 +208,7 @@ msgstr "Åbn terminal her"
 
 #: ../panel-plugin/xfce4-popup-places.sh:28
 msgid "Usage:"
-msgstr "Brug:"
+msgstr "Anvendelse:"
 
 #: ../panel-plugin/xfce4-popup-places.sh:29
 msgid "OPTION"

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

2017-11-03 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-mailwatch-plugin.

commit 7a6dc17deb753a247d9d70eda70d37eb1af480e9
Author: Anonymous 
Date:   Fri Nov 3 18:33:35 2017 +0100

I18n: Update translation da (100%).

112 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 94ee1ed..f8c3606 100644
--- a/po/da.po
+++ b/po/da.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-07-05 18:31+0200\n"
-"PO-Revision-Date: 2017-11-03 11:14+\n"
+"PO-Revision-Date: 2017-11-03 11:57+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [apps/xfce4-terminal] 02/02: I18n: Update translation sv (100%).

2017-11-03 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 ff768c5395a149c1400729d24301880489a7af9a
Author: Påvel Nicklasson 
Date:   Fri Nov 3 18:32:54 2017 +0100

I18n: Update translation sv (100%).

370 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/sv.po | 338 ---
 1 file changed, 174 insertions(+), 164 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index d7750fb..ecdec2d 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-10-05 00:31+0200\n"
-"PO-Revision-Date: 2017-10-08 15:48+\n"
+"POT-Creation-Date: 2017-10-12 00:31+0200\n"
+"PO-Revision-Date: 2017-11-03 13:11+\n"
 "Last-Translator: Påvel Nicklasson \n"
 "Language-Team: Swedish 
(http://www.transifex.com/xfce/xfce-apps/language/sv/)\n"
 "MIME-Version: 1.0\n"
@@ -393,24 +393,24 @@ msgstr "Alternativet \"--zoom\" kräver specificering av 
zoom (%d .. %d) som des
 msgid "Unknown option \"%s\""
 msgstr "Okänd flagga \"%s\""
 
-#: ../terminal/terminal-preferences-dialog.c:395
+#: ../terminal/terminal-preferences-dialog.c:403
 msgid "All Files"
 msgstr "Alla filer"
 
-#: ../terminal/terminal-preferences-dialog.c:401
+#: ../terminal/terminal-preferences-dialog.c:409
 msgid "Image Files"
 msgstr "Bildfiler"
 
-#: ../terminal/terminal-preferences-dialog.c:857
+#: ../terminal/terminal-preferences-dialog.c:865
 msgid "Load Presets..."
 msgstr "Läs in förinställningar..."
 
-#: ../terminal/terminal-preferences.c:1106
+#: ../terminal/terminal-preferences.c:1117
 msgid "Terminal"
 msgstr "Terminal"
 
 #: ../terminal/terminal-screen.c:421 ../terminal/terminal-screen.c:789
-#: ../terminal/terminal-screen.c:1993
+#: ../terminal/terminal-screen.c:2006
 msgid "Untitled"
 msgstr "Namnlös"
 
@@ -419,38 +419,38 @@ msgstr "Namnlös"
 msgid "Unable to determine your login shell."
 msgstr "Det gick inte att bestämma ditt inloggningsskal."
 
-#: ../terminal/terminal-screen.c:1251
+#: ../terminal/terminal-screen.c:1259
 msgid "Child process exited"
 msgstr "Barnprocess avslutad"
 
-#: ../terminal/terminal-screen.c:1254
+#: ../terminal/terminal-screen.c:1262
 msgid "_Relaunch"
 msgstr "Sta_rta om"
 
-#: ../terminal/terminal-screen.c:1260
+#: ../terminal/terminal-screen.c:1268
 #, c-format
 msgid "The child process exited normally with status %d."
 msgstr "Barnprocessen avslutades normalt med status %d."
 
-#: ../terminal/terminal-screen.c:1262
+#: ../terminal/terminal-screen.c:1270
 #, c-format
 msgid "The child process was aborted by signal %d."
 msgstr "Barnprocessen avbröts av signal %d."
 
-#: ../terminal/terminal-screen.c:1264
+#: ../terminal/terminal-screen.c:1272
 #, c-format
 msgid "The child process was aborted."
 msgstr "Barnprocessen avbröts."
 
-#: ../terminal/terminal-screen.c:1674 ../terminal/terminal-screen.c:1700
+#: ../terminal/terminal-screen.c:1685 ../terminal/terminal-screen.c:1711
 msgid "Failed to execute child"
 msgstr "Misslyckades att köra barnprocess"
 
-#: ../terminal/terminal-screen.c:2323
+#: ../terminal/terminal-screen.c:2344
 msgid "Close this tab"
 msgstr "Stäng denna flik"
 
-#: ../terminal/terminal-screen.c:2376
+#: ../terminal/terminal-screen.c:2397
 #, c-format
 msgid "Failed to set encoding %s\n"
 msgstr "Misslyckades ställa in kodning %s\n"
@@ -813,7 +813,7 @@ msgstr "Ställ in _kodning"
 msgid "Warning"
 msgstr "Varning"
 
-#: ../terminal/terminal-window.c:785 ../terminal/terminal-window.c:2274
+#: ../terminal/terminal-window.c:785 ../terminal/terminal-window.c:2280
 msgid "_Cancel"
 msgstr "_Avbryt"
 
@@ -862,35 +862,35 @@ msgstr "Stäng fönster?"
 msgid "Do _not ask me again"
 msgstr "Fråga mig _inte igen"
 
-#: ../terminal/terminal-window.c:2118
+#: ../terminal/terminal-window.c:2124
 msgid "_Title:"
 msgstr "_Namn:"
 
-#: ../terminal/terminal-window.c:2131
+#: ../terminal/terminal-window.c:2137
 msgid "Enter the title for the current terminal tab"
 msgstr "Ange namn för den aktiva terminalfliken"
 
-#: ../terminal/terminal-window.c:2139
+#: ../terminal/terminal-window.c:2145
 msgid "Help"
 msgstr "Hjälp"
 
-#: ../terminal/terminal-window.c:2145
+#: ../terminal/terminal-window.c:2151
 msgid "Close"
 msgstr "Stäng"
 
-#: ../terminal/terminal-window.c:2191
+#: ../terminal/terminal-window.c:2197
 msgid "Failed to create the regular expression"
 msgstr "Det gick inte att skapa det reguljära uttrycket"
 
-#: ../terminal/terminal-window.c:2271
+#: ../terminal/terminal-window.c:2277
 msgid "Save contents..."
 msgstr "Spara innehåll..."
 
-#: ../terminal/terminal-window.c:2275
+#: ../terminal/terminal-window.c:2281
 msgid "_Save"
 msgstr "_Spara"
 
-#: 

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

2017-11-03 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 1459deb6103a6b7e0c81eeabcbef5e22f60f9805
Author: Anonymous 
Date:   Fri Nov 3 18:32:54 2017 +0100

I18n: Update translation da (100%).

370 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 570..d6ad658 100644
--- a/po/da.po
+++ b/po/da.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-10-12 00:31+0200\n"
-"PO-Revision-Date: 2017-11-01 07:42+\n"
+"PO-Revision-Date: 2017-11-03 14:04+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -179,7 +179,7 @@ msgstr "Ugyldig geometri-streng \"%s\"\n"
 #: ../terminal/terminal-app.c:951
 #, c-format
 msgid "Failed to connect to session manager: %s\n"
-msgstr "Kunne ikke oprette forbindelse til sessionhåndtering: %s\n"
+msgstr "Kunne ikke oprette forbindelse til sessionshåndtering: %s\n"
 
 #: ../terminal/terminal-encoding-action.c:68
 msgid "Western European"

-- 
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-mailwatch-plugin] branch master updated (e0f847b -> 7a6dc17)

2017-11-03 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-mailwatch-plugin.

  from  e0f847b   I18n: Update translation da (100%).
   new  7a6dc17   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] [apps/xfce4-terminal] branch master updated (665a707 -> ff768c5)

2017-11-03 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  665a707   I18n: Update translation hu (78%).
   new  1459deb   I18n: Update translation da (100%).
   new  ff768c5   I18n: Update translation sv (100%).

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 |   4 +-
 po/sv.po | 338 ---
 2 files changed, 176 insertions(+), 166 deletions(-)

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


[Xfce4-commits] [xfce/xfce4-session] branch xfce-4.10 updated (f5d23ec -> d2d951f)

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

transifex pushed a 
change to branch 
xfce-4.10
in repository xfce/xfce4-session.

  from  f5d23ec   I18n: Update translation da (100%).
   new  d2d951f   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-session] 01/01: I18n: Update translation da (100%).

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

transifex pushed a 
commit to branch 
xfce-4.10
in repository xfce/xfce4-session.

commit d2d951f51c0126e590ee38eb55db69799695b3a3
Author: Anonymous 
Date:   Fri Nov 3 18:32:14 2017 +0100

I18n: Update translation da (100%).

208 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 63af477..538d905 100644
--- a/po/da.po
+++ b/po/da.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-session\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 23:14+0200\n"
-"PO-Revision-Date: 2017-11-01 07:53+\n"
+"PO-Revision-Date: 2017-11-03 14:07+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-session/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -243,7 +243,7 @@ msgstr "Alle Xfce's cachefiler kunne ikke ryddes"
 #: ../settings/session-editor.c:249
 #, c-format
 msgid "Are you sure you want to terminate \"%s\"?"
-msgstr "Er du sikker på, at du vil afbryde \"%s\"?"
+msgstr "Er du sikker på, at du vil afslutte \"%s\"?"
 
 #: ../settings/session-editor.c:252 ../settings/session-editor.c:280
 msgid "Terminate Program"
@@ -262,7 +262,7 @@ msgstr "_Afslut program"
 
 #: ../settings/session-editor.c:281
 msgid "Unable to terminate program."
-msgstr "Kunne ikke afbryde program."
+msgstr "Kan ikke afslutte program."
 
 #: ../settings/session-editor.c:459
 msgid "(Unknown program)"
@@ -510,17 +510,17 @@ msgstr "Kunne ikke bringe session i dvaletilstand"
 #: ../xfce4-session/xfsm-manager.c:1405
 #, c-format
 msgid "Can only terminate clients when in the idle state"
-msgstr "Kan kun afbryde klienter når de befinder sig i tomgang"
+msgstr "Kan kun afslutte klienter når de er i den inaktive tilstand"
 
 #: ../xfce4-session/xfsm-manager.c:1969
 #, c-format
 msgid "Session manager must be in idle state when requesting a checkpoint"
-msgstr "Sessionhåndtering skal befinde sig i tomgang, når der anmodes om et 
tjekpunkt"
+msgstr "Sessionshåndtering skal være i inaktiv tilstand, når der anmodes om et 
tjekpunkt"
 
 #: ../xfce4-session/xfsm-manager.c:2010
 #, c-format
 msgid "Session manager must be in idle state when requesting a shutdown"
-msgstr "Sessionhåndtering skal befinde sig i tomgang, når der anmodes om at 
lukke ned"
+msgstr "Sessionshåndtering skal være i inaktiv tilstand, når der anmodes om en 
nedlukning"
 
 #: ../xfce4-session/xfsm-logout-dialog.c:188
 #, c-format
@@ -642,7 +642,7 @@ msgstr "Starter VI Improved-tekstredigeringen"
 
 #: ../xfce4-session/xfsm-startup.c:383
 msgid "Starting the Session Management Proxy"
-msgstr "Starter proxy'en til sessionshåndtering"
+msgstr "Starter proxyen til sessionshåndtering"
 
 #: ../xfce4-session/xfsm-startup.c:385
 msgid "Starting the X-Chat IRC Client"

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


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

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

transifex pushed a 
commit to branch 
master
in repository xfce/xfce4-session.

commit f132d8252acc7c5b555d7291231117d78e4d45cc
Author: Anonymous 
Date:   Fri Nov 3 18:32:02 2017 +0100

I18n: Update translation da (100%).

178 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 5f3f495..9474964 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-session\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-06-11 12:30+0200\n"
-"PO-Revision-Date: 2017-11-01 07:53+\n"
+"PO-Revision-Date: 2017-11-03 14:07+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-session/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -265,7 +265,7 @@ msgstr "Alle Xfce's cachefiler kunne ikke ryddes"
 #: ../settings/session-editor.c:251
 #, c-format
 msgid "Are you sure you want to terminate \"%s\"?"
-msgstr "Er du sikker på, at du vil afbryde \"%s\"?"
+msgstr "Er du sikker på, at du vil afslutte \"%s\"?"
 
 #: ../settings/session-editor.c:254 ../settings/session-editor.c:286
 msgid "Terminate Program"
@@ -283,7 +283,7 @@ msgstr "_Afslut program"
 
 #: ../settings/session-editor.c:287
 msgid "Unable to terminate program."
-msgstr "Kunne ikke afbryde program."
+msgstr "Kan ikke afslutte program."
 
 #: ../settings/session-editor.c:509
 msgid "(Unknown program)"
@@ -546,19 +546,19 @@ msgstr "Kunne ikke skifte bruger"
 #: ../xfce4-session/xfsm-manager.c:1530
 #, c-format
 msgid "Can only terminate clients when in the idle state"
-msgstr "Kan kun afbryde klienter når de befinder sig i tomgang"
+msgstr "Kan kun afslutte klienter når de er i den inaktive tilstand"
 
 #: ../xfce4-session/xfsm-manager.c:2187
 msgid "Session manager must be in idle state when requesting a checkpoint"
-msgstr "Sessionhåndtering skal befinde sig i tomgang, når der anmodes om et 
tjekpunkt"
+msgstr "Sessionshåndtering skal være i inaktiv tilstand, når der anmodes om et 
tjekpunkt"
 
 #: ../xfce4-session/xfsm-manager.c:2257 ../xfce4-session/xfsm-manager.c:2277
 msgid "Session manager must be in idle state when requesting a shutdown"
-msgstr "Sessionhåndtering skal befinde sig i tomgang, når der anmodes om at 
lukke ned"
+msgstr "Sessionshåndtering skal være i inaktiv tilstand, når der anmodes om en 
nedlukning"
 
 #: ../xfce4-session/xfsm-manager.c:2322
 msgid "Session manager must be in idle state when requesting a restart"
-msgstr "Sessionhåndtering skal være ledig, når der anmodes om at lukke ned"
+msgstr "Sessionshåndtering skal være i inaktiv tilstand, når der anmodes om en 
genstart"
 
 #: ../xfce4-session/xfsm-logout-dialog.c:184
 #, c-format
@@ -682,7 +682,7 @@ msgstr "Starter VI Improved-tekstredigeringen"
 
 #: ../xfce4-session/xfsm-startup.c:433
 msgid "Starting the Session Management Proxy"
-msgstr "Starter proxy'en til sessionshåndtering"
+msgstr "Starter proxyen til sessionshåndtering"
 
 #: ../xfce4-session/xfsm-startup.c:435
 msgid "Starting the X-Chat IRC Client"
@@ -784,7 +784,7 @@ msgstr "Modtog fejl under forsøg på log ud"
 #: ../xfce4-session-logout/main.c:244
 #, c-format
 msgid "Received error while trying to log out, error was %s"
-msgstr "Der opstod en fejl, da du forsøgte at logge ud. Fejlen var %s"
+msgstr "Modtog fejl ved forsøg på at logge ud. Fejlen var %s"
 
 #: ../xfce4-session-logout/xfce4-session-logout.desktop.in.h:1
 msgid "Log Out"

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


[Xfce4-commits] [xfce/xfce4-session] branch master updated (7f2cdc1 -> f132d82)

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

transifex pushed a 
change to branch 
master
in repository xfce/xfce4-session.

  from  7f2cdc1   I18n: Update translation uk (100%).
   new  f132d82   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-power-manager] 01/01: I18n: Update translation sv (95%).

2017-11-03 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 7b8e203586bbfe0d5eb7e8e53fbbd6e8b60ad972
Author: Påvel Nicklasson 
Date:   Fri Nov 3 18:31:53 2017 +0100

I18n: Update translation sv (95%).

197 translated messages, 10 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/sv.po | 175 ---
 1 file changed, 100 insertions(+), 75 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index 4c52a79..5fe8fef 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -11,9 +11,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-power-manager\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-02-26 18:30+0100\n"
-"PO-Revision-Date: 2017-09-23 19:02+\n"
-"Last-Translator: Arve Eriksson <031299...@telia.com>\n"
+"POT-Creation-Date: 2017-10-30 00:31+0100\n"
+"PO-Revision-Date: 2017-11-03 13:12+\n"
+"Last-Translator: Påvel Nicklasson \n"
 "Language-Team: Swedish 
(http://www.transifex.com/xfce/xfce4-power-manager/language/sv/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -50,7 +50,7 @@ msgstr "Inställningar för strömhanterare"
 
 #. help dialog
 #: ../data/interfaces/xfpm-settings.ui.h:7
-#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1141
+#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1170
 msgid "_Help"
 msgstr "_Hjälp"
 
@@ -204,8 +204,9 @@ msgid "One minute"
 msgstr "En minut"
 
 #: ../settings/xfpm-settings.c:614 ../settings/xfpm-settings.c:626
+#: ../settings/xfpm-settings.c:637 ../settings/xfpm-settings.c:641
 #: ../settings/xfpm-settings.c:1510
-msgid "Minutes"
+msgid "minutes"
 msgstr "minuter"
 
 #: ../settings/xfpm-settings.c:628 ../settings/xfpm-settings.c:635
@@ -217,18 +218,14 @@ msgstr "En timme"
 msgid "one minute"
 msgstr "en minut"
 
-#: ../settings/xfpm-settings.c:637 ../settings/xfpm-settings.c:641
-msgid "minutes"
-msgstr "minuter"
-
 #: ../settings/xfpm-settings.c:639 ../settings/xfpm-settings.c:640
 #: ../settings/xfpm-settings.c:641
 msgid "hours"
 msgstr "timmar"
 
 #: ../settings/xfpm-settings.c:653 ../settings/xfpm-settings.c:1503
-msgid "Seconds"
-msgstr "sekunder"
+msgid "seconds"
+msgstr ""
 
 #: ../settings/xfpm-settings.c:659
 msgid "%"
@@ -238,7 +235,7 @@ msgstr "%"
 #: ../settings/xfpm-settings.c:986 ../settings/xfpm-settings.c:1071
 #: ../settings/xfpm-settings.c:1163 ../settings/xfpm-settings.c:1270
 #: ../settings/xfpm-settings.c:1327 ../settings/xfpm-settings.c:1379
-#: ../src/xfpm-power.c:714
+#: ../src/xfpm-power.c:707
 msgid "Suspend"
 msgstr "Vänteläge"
 
@@ -254,7 +251,7 @@ msgstr "Väntelägesåtgärden stöds inte"
 #: ../settings/xfpm-settings.c:992 ../settings/xfpm-settings.c:1085
 #: ../settings/xfpm-settings.c:1169 ../settings/xfpm-settings.c:1276
 #: ../settings/xfpm-settings.c:1333 ../settings/xfpm-settings.c:1385
-#: ../src/xfpm-power.c:703
+#: ../src/xfpm-power.c:696
 msgid "Hibernate"
 msgstr "Viloläge"
 
@@ -267,12 +264,12 @@ msgid "Hibernate operation not supported"
 msgstr "Viloläge stöds inte"
 
 #: ../settings/xfpm-settings.c:897 ../settings/xfpm-settings.c:1123
-#: ../settings/xfpm-settings.c:1459 ../settings/xfpm-settings.c:1583
+#: ../settings/xfpm-settings.c:1459 ../settings/xfpm-settings.c:1584
 msgid "Hibernate and suspend operations not supported"
 msgstr "Viloläge och vänteläge stöds inte"
 
 #: ../settings/xfpm-settings.c:902 ../settings/xfpm-settings.c:1128
-#: ../settings/xfpm-settings.c:1464 ../settings/xfpm-settings.c:1588
+#: ../settings/xfpm-settings.c:1464 ../settings/xfpm-settings.c:1589
 msgid "Hibernate and suspend operations not permitted"
 msgstr "Vilo- och vänteläge är inte tillåtna"
 
@@ -282,7 +279,7 @@ msgid "Do nothing"
 msgstr "Gör ingenting"
 
 #: ../settings/xfpm-settings.c:936 ../settings/xfpm-settings.c:1282
-#: ../src/xfpm-power.c:725
+#: ../src/xfpm-power.c:718
 msgid "Shutdown"
 msgstr "Stäng av"
 
@@ -303,82 +300,84 @@ msgstr "Lås skärmen"
 msgid "When all the power sources of the computer reach this charge level"
 msgstr "När alla strömkällor för datorn når denna laddningsnivå"
 
-#: ../settings/xfpm-settings.c:1505
-msgid "One Minute"
-msgstr "En minut"
+#: ../settings/xfpm-settings.c:1508 ../common/xfpm-power-common.c:139
+msgid "minute"
+msgid_plural "minutes"
+msgstr[0] "minut"
+msgstr[1] "minuter"
 
-#: ../settings/xfpm-settings.c:1844
+#: ../settings/xfpm-settings.c:1845
 msgid "Device"
 msgstr "Enhet"
 
-#: ../settings/xfpm-settings.c:1866
+#: ../settings/xfpm-settings.c:1867
 msgid "Type"
 msgstr "Typ"
 
-#: ../settings/xfpm-settings.c:1871
+#: ../settings/xfpm-settings.c:1872
 msgid "PowerSupply"
 msgstr "Strömkälla"
 
-#: ../settings/xfpm-settings.c:1872 ../src/xfpm-main.c:77
+#: 

[Xfce4-commits] [xfce/xfce4-panel] branch xfce-4.12 updated (8aefef5 -> 15784ad)

2017-11-03 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  8aefef5   I18n: Update translation uk (100%).
   new  15784ad   I18n: Update translation sv (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/sv.po | 50 +++---
 1 file changed, 27 insertions(+), 23 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 sv (100%).

2017-11-03 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 0bcaa1256a8ce539f609c1c9853447653079d7f0
Author: Påvel Nicklasson 
Date:   Fri Nov 3 18:31:03 2017 +0100

I18n: Update translation sv (100%).

739 translated messages.

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

diff --git a/po/sv.po b/po/sv.po
index 640245b..7171fe1 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-04 23:34+0200\n"
+"POT-Creation-Date: 2017-10-10 06:30+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Xfce Bot , 2017\n"
+"Last-Translator: Påvel Nicklasson , 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/xfce/teams/16840/sv/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -825,48 +825,53 @@ msgstr "Filnamn"
 msgid "File System"
 msgstr "Filsystem"
 
-#: ../thunar/thunar-file.c:1513
+#: ../thunar/thunar-file.c:1075 ../thunar/thunar-gio-extensions.c:242
+#: ../thunar/thunar-shortcuts-model.c:1039
+msgid "Trash"
+msgstr "Papperskorg"
+
+#: ../thunar/thunar-file.c:1515
 #, c-format
 msgid "The root folder has no parent"
 msgstr "Rotmappen har ingen förälder"
 
-#: ../thunar/thunar-file.c:1601 ../thunar/thunar-file.c:1897
+#: ../thunar/thunar-file.c:1603 ../thunar/thunar-file.c:1899
 #, c-format
 msgid "Failed to parse the desktop file: %s"
 msgstr "Misslyckades med att tolka skrivbordsfilen: %s"
 
 #. if the .desktop file is not secure, ask user what to do
-#: ../thunar/thunar-file.c:1613
+#: ../thunar/thunar-file.c:1615
 msgid "Untrusted application launcher"
 msgstr "Otillförlitlig programstartare"
 
-#: ../thunar/thunar-file.c:1638
+#: ../thunar/thunar-file.c:1640
 #, c-format
 msgid "No Exec field specified"
 msgstr "Inget \"Exec\"-fält angett"
 
 #. if the .desktop file is not secure, ask user what to do
-#: ../thunar/thunar-file.c:1647
+#: ../thunar/thunar-file.c:1649
 msgid "Untrusted link launcher"
 msgstr "Otillförlitlig länkstartare"
 
-#: ../thunar/thunar-file.c:1663
+#: ../thunar/thunar-file.c:1665
 #, c-format
 msgid "No URL field specified"
 msgstr "Inget \"URL\"-fält angett"
 
-#: ../thunar/thunar-file.c:1668
+#: ../thunar/thunar-file.c:1670
 msgid "Invalid desktop file"
 msgstr "Ogiltig skrivbordsfil"
 
 #. TRANSLATORS: this will result in " on "
-#: ../thunar/thunar-gio-extensions.c:322
+#: ../thunar/thunar-gio-extensions.c:327
 #, c-format
 msgid "%s on %s"
 msgstr "%s på %s"
 
 #. free disk space string
-#: ../thunar/thunar-gio-extensions.c:433
+#: ../thunar/thunar-gio-extensions.c:438
 #, c-format
 msgid "%s of %s free (%d%% used)"
 msgstr "%s av %s tillgängligt (%d%% använt)"

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

2017-11-03 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 15784ad5ab74b798db69a792adc3f4485c25c91b
Author: Påvel Nicklasson 
Date:   Fri Nov 3 18:31:42 2017 +0100

I18n: Update translation sv (100%).

396 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/sv.po | 50 +++---
 1 file changed, 27 insertions(+), 23 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index fc9d761..78f382f 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-09-09 18:31+0200\n"
+"POT-Creation-Date: 2017-10-10 00:31+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Xfce Bot , 2017\n"
+"Last-Translator: Påvel Nicklasson , 2017\n"
 "Language-Team: Swedish (https://www.transifex.com/xfce/teams/16840/sv/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,7 +31,7 @@ msgstr ""
 "denna skrivbordsfil"
 
 #: ../panel-preferences.desktop.in.h:1
-#: ../panel/panel-preferences-dialog.glade.h:10 ../panel/panel-window.c:2615
+#: ../panel/panel-preferences-dialog.glade.h:10 ../panel/panel-window.c:2623
 #: ../migrate/main.c:117
 msgid "Panel"
 msgstr "Panel"
@@ -42,13 +42,13 @@ msgstr "Anpassa panelen"
 
 #. I18N: %s is the name of the plugin
 #: ../libxfce4panel/xfce-panel-plugin.c:1032
-#: ../panel/panel-preferences-dialog.c:1190
+#: ../panel/panel-preferences-dialog.c:1199
 #, c-format
 msgid "Are you sure that you want to remove \"%s\"?"
 msgstr "Är du säker på att du vill ta bort \"%s\"?"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1037
-#: ../panel/panel-preferences-dialog.c:1193
+#: ../panel/panel-preferences-dialog.c:1202
 msgid "If you remove the item from the panel, it is permanently lost."
 msgstr "Om du tar bort objektet från panelen så kan du inte ångra det."
 
@@ -62,17 +62,17 @@ msgid "Pane_l"
 msgstr "Pane_l"
 
 #. add new items
-#: ../libxfce4panel/xfce-panel-plugin.c:1239 ../panel/panel-window.c:2627
+#: ../libxfce4panel/xfce-panel-plugin.c:1239 ../panel/panel-window.c:2635
 msgid "Add _New Items..."
 msgstr "Lägg till _nya objekt..."
 
 #. customize panel
-#: ../libxfce4panel/xfce-panel-plugin.c:1250 ../panel/panel-window.c:2638
+#: ../libxfce4panel/xfce-panel-plugin.c:1250 ../panel/panel-window.c:2646
 msgid "Panel Pr_eferences..."
 msgstr "Panelinstä_llningar..."
 
 #. logout item
-#: ../libxfce4panel/xfce-panel-plugin.c:1267 ../panel/panel-window.c:2666
+#: ../libxfce4panel/xfce-panel-plugin.c:1267 ../panel/panel-window.c:2674
 msgid "Log _Out"
 msgstr "Logga _ut"
 
@@ -282,7 +282,7 @@ msgstr "Lägg till nytt objekt"
 msgid "Please choose a panel for the new plugin:"
 msgstr "Välj en panel för den nya insticksmodulen:"
 
-#: ../panel/panel-dialogs.c:192 ../panel/panel-preferences-dialog.c:853
+#: ../panel/panel-dialogs.c:192 ../panel/panel-preferences-dialog.c:862
 #, c-format
 msgid "Panel %d"
 msgstr "Panel %d"
@@ -336,37 +336,41 @@ msgstr ""
 msgid "Automatic"
 msgstr "Automatiskt"
 
+#: ../panel/panel-preferences-dialog.c:500
+msgid "Primary"
+msgstr "Primär"
+
 #. I18N: screen name in the output selector
-#: ../panel/panel-preferences-dialog.c:511
+#: ../panel/panel-preferences-dialog.c:520
 #, c-format
 msgid "Screen %d"
 msgstr "Skärm %d"
 
 #. I18N: monitor name in the output selector
-#: ../panel/panel-preferences-dialog.c:537
+#: ../panel/panel-preferences-dialog.c:546
 #, c-format
 msgid "Monitor %d"
 msgstr "Skärm %d"
 
-#: ../panel/panel-preferences-dialog.c:919
+#: ../panel/panel-preferences-dialog.c:928
 msgid "The panel and plugin configurations will be permanently removed"
 msgstr "Panelen och instickskonfigurationerna kommer att permanent tas bort"
 
-#: ../panel/panel-preferences-dialog.c:920
+#: ../panel/panel-preferences-dialog.c:929
 #, c-format
 msgid "Are you sure you want to remove panel %d?"
 msgstr "Är du säker på att du vill ta bort panel %d?"
 
 #. I18N: append (external) in the preferences dialog if the plugin
 #. * runs external
-#: ../panel/panel-preferences-dialog.c:1032
+#: ../panel/panel-preferences-dialog.c:1041
 #, c-format
 msgid "%s (external)"
 msgstr "%s (extern)"
 
 #. I18N: tooltip in preferences dialog when hovering an item in the list
 #. * for external plugins
-#: ../panel/panel-preferences-dialog.c:1037
+#: ../panel/panel-preferences-dialog.c:1046
 #, c-format
 msgid ""
 "Internal name: %s-%d\n"
@@ -377,7 +381,7 @@ msgstr ""
 
 #. I18N: tooltip in preferences dialog when hovering an item in the list
 #. * for internal plugins
-#: ../panel/panel-preferences-dialog.c:1049
+#: ../panel/panel-preferences-dialog.c:1058
 #, c-format
 msgid 

[Xfce4-commits] [xfce/xfce4-power-manager] branch master updated (f5e65fb -> 7b8e203)

2017-11-03 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  f5e65fb   I18n: Update translation he (100%).
   new  7b8e203   I18n: Update translation sv (95%).

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/sv.po | 175 ---
 1 file changed, 100 insertions(+), 75 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 (0d0b90c -> 0bcaa12)

2017-11-03 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  0d0b90c   I18n: Update translation uk (100%).
   new  0bcaa12   I18n: Update translation sv (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/sv.po | 27 ---
 1 file changed, 16 insertions(+), 11 deletions(-)

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


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

2017-11-03 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 787617c8efab892e8347d5b12929971be81f88ee
Author: Påvel Nicklasson 
Date:   Fri Nov 3 18:30:24 2017 +0100

I18n: Update translation sv (100%).

737 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/sv.po | 724 ---
 1 file changed, 365 insertions(+), 359 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index d794bca..ac8031c 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,13 +7,14 @@
 # Daniel Nylander , 2006,2008
 # Fredrik Nyqvist , 2013
 # Fredrik Nyqvist , 2013,2015
+# Påvel Nicklasson , 2017
 # Påvel Nicklasson, 2015
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-08-26 06:30+0200\n"
-"PO-Revision-Date: 2017-09-19 18:01+\n"
+"POT-Creation-Date: 2017-10-10 06:30+0200\n"
+"PO-Revision-Date: 2017-11-03 13:08+\n"
 "Last-Translator: Påvel Nicklasson \n"
 "Language-Team: Swedish (http://www.transifex.com/xfce/thunar/language/sv/)\n"
 "MIME-Version: 1.0\n"
@@ -95,115 +96,115 @@ msgstr "Avsluta en körande instans av Thunar"
 msgid "Print version information and exit"
 msgstr "Visa versionsinformation och avsluta"
 
-#: ../thunar/thunar-application.c:290
+#: ../thunar/thunar-application.c:291
 #, c-format
 msgid "Acquired the session message bus '%s'\n"
 msgstr "Fick sessionsmeddelande-bus '%s'\n"
 
-#: ../thunar/thunar-application.c:300
+#: ../thunar/thunar-application.c:301
 #, c-format
 msgid "Acquired the name '%s' on the session message bus\n"
 msgstr "Fick namnet '%s' på sessionsmeddelande-bus\n"
 
-#: ../thunar/thunar-application.c:311
+#: ../thunar/thunar-application.c:312
 #, c-format
 msgid "Name '%s' lost on the message dbus, exiting."
 msgstr "Namn '%s' förlorades på meddelande-dbus, avslutar."
 
-#: ../thunar/thunar-application.c:462
+#: ../thunar/thunar-application.c:465
 msgid "The Thunar development team. All rights reserved."
 msgstr "Thunars utvecklingsteam. Alla rätter reserverade."
 
-#: ../thunar/thunar-application.c:463
+#: ../thunar/thunar-application.c:466
 msgid "Written by Benedikt Meurer ."
 msgstr "Skrivet av Benedikt Meurer ."
 
-#: ../thunar/thunar-application.c:464
+#: ../thunar/thunar-application.c:467
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Rapportera fel till <%s>."
 
 #. display an error message to the user
-#: ../thunar/thunar-application.c:711
+#: ../thunar/thunar-application.c:735
 msgid "Failed to launch operation"
 msgstr "Misslyckades med att starta operation"
 
 #. tell the user that we were unable to launch the file specified
-#: ../thunar/thunar-application.c:1414 ../thunar/thunar-application.c:1546
+#: ../thunar/thunar-application.c:1438 ../thunar/thunar-application.c:1570
 #: ../thunar/thunar-launcher.c:1222 ../thunar/thunar-location-entry.c:356
 #: ../thunar/thunar-location-entry.c:384
-#: ../thunar/thunar-shortcuts-view.c:1656
-#: ../thunar/thunar-shortcuts-view.c:1684 ../thunar/thunar-window.c:2266
+#: ../thunar/thunar-shortcuts-view.c:1660
+#: ../thunar/thunar-shortcuts-view.c:1688 ../thunar/thunar-window.c:2278
 #, c-format
 msgid "Failed to open \"%s\""
 msgstr "Misslyckades med att öppna \"%s\""
 
-#: ../thunar/thunar-application.c:1550
+#: ../thunar/thunar-application.c:1574
 #, c-format
 msgid "Failed to open \"%s\": %s"
 msgstr "Misslyckades med att öppna \"%s\": %s"
 
 #. display an error message
-#: ../thunar/thunar-application.c:1605
-#: ../thunar/thunar-properties-dialog.c:716
-#: ../thunar/thunar-standard-view.c:2796 ../thunar/thunar-tree-view.c:1937
+#: ../thunar/thunar-application.c:1629
+#: ../thunar/thunar-properties-dialog.c:731
+#: ../thunar/thunar-standard-view.c:2787 ../thunar/thunar-tree-view.c:1937
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "Misslyckades med att byta namn på \"%s\""
 
-#: ../thunar/thunar-application.c:1707
-#: ../thunar/thunar-location-buttons.c:1323
-#: ../thunar/thunar-standard-view.c:2347 ../thunar/thunar-tree-view.c:1799
+#: ../thunar/thunar-application.c:1731
+#: ../thunar/thunar-location-buttons.c:1331
+#: ../thunar/thunar-standard-view.c:2338 ../thunar/thunar-tree-view.c:1799
 msgid "New Folder"
 msgstr "Ny mapp"
 
-#: ../thunar/thunar-application.c:1708
-#: ../thunar/thunar-location-buttons.c:1324
-#: ../thunar/thunar-standard-view.c:2348 ../thunar/thunar-tree-view.c:1800
+#: ../thunar/thunar-application.c:1732
+#: ../thunar/thunar-location-buttons.c:1332
+#: ../thunar/thunar-standard-view.c:2339 ../thunar/thunar-tree-view.c:1800
 msgid "Create New Folder"
 msgstr "Skapa ny mapp"
 

[Xfce4-commits] [xfce/thunar] branch master updated (8cccd6a -> 787617c)

2017-11-03 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  8cccd6a   Simplify icon handling of ThunarxMenuItem
   new  787617c   I18n: Update translation sv (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/sv.po | 724 ---
 1 file changed, 365 insertions(+), 359 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-xkb-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-xkb-plugin.

commit d677157a6ec9141e2b1d3d05b0ad0f38a3b1919d
Author: Anonymous 
Date:   Fri Nov 3 12:35:27 2017 +0100

I18n: Update translation da (100%).

22 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 7e3834e..203aecc 100644
--- a/po/da.po
+++ b/po/da.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-07-27 00:32+0200\n"
-"PO-Revision-Date: 2017-11-01 16:43+\n"
+"PO-Revision-Date: 2017-11-03 11:13+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-wmdock-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-wmdock-plugin.

commit 185995295104c95f98bf8ab54e81d0c27ceccc7d
Author: Anonymous 
Date:   Fri Nov 3 12:35:19 2017 +0100

I18n: Update translation da (100%).

28 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 34d7606..18d69be 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-11-05 12:31+0100\n"
-"PO-Revision-Date: 2017-11-01 18:10+\n"
+"PO-Revision-Date: 2017-11-03 11:14+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-xkb-plugin] branch master updated (99ae5e8 -> d677157)

2017-11-03 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-xkb-plugin.

  from  99ae5e8   I18n: Update translation da (100%).
   new  d677157   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] [panel-plugins/xfce4-timer-plugin] branch master updated (9f48249 -> 599a0fc)

2017-11-03 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-timer-plugin.

  from  9f48249   I18n: Update translation da (100%).
   new  599a0fc   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] [panel-plugins/xfce4-wmdock-plugin] branch master updated (454eacf -> 1859952)

2017-11-03 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-wmdock-plugin.

  from  454eacf   I18n: Update translation da (100%).
   new  1859952   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] [panel-plugins/xfce4-timer-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-timer-plugin.

commit 599a0fced8919c1934c7fcd6b4d945ec61ca58fc
Author: Anonymous 
Date:   Fri Nov 3 12:34:51 2017 +0100

I18n: Update translation da (100%).

42 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 81179c0..0b8bac9 100644
--- a/po/da.po
+++ b/po/da.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-06-05 06:31+0200\n"
-"PO-Revision-Date: 2017-11-01 18:12+\n"
+"PO-Revision-Date: 2017-11-03 11:14+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-wavelan-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-wavelan-plugin.

commit 23f1ba43614fc19a359e4e21956ea98aeda3265e
Author: Anonymous 
Date:   Fri Nov 3 12:35:09 2017 +0100

I18n: Update translation da (100%).

18 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 bb7293e..2fe341c 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-03-05 00:32+0100\n"
-"PO-Revision-Date: 2017-11-01 17:59+\n"
+"PO-Revision-Date: 2017-11-03 11:13+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-wavelan-plugin] branch master updated (db81c5d -> 23f1ba4)

2017-11-03 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-wavelan-plugin.

  from  db81c5d   I18n: Update translation da (100%).
   new  23f1ba4   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] [panel-plugins/xfce4-time-out-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-time-out-plugin.

commit 28f4975f286344dd1542fd3f175ef279f1942652
Author: Anonymous 
Date:   Fri Nov 3 12:34:44 2017 +0100

I18n: Update translation da (100%).

33 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 2f1ac8b..0dba178 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-08-30 18:31+0200\n"
-"PO-Revision-Date: 2017-11-01 17:57+\n"
+"PO-Revision-Date: 2017-11-03 11:13+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-verve-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-verve-plugin.

commit 21e1786b39990aa2c32b9c81492078746d17c01e
Author: Anonymous 
Date:   Fri Nov 3 12:34:59 2017 +0100

I18n: Update translation da (100%).

25 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 53bd3dd..ba46af2 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-04-17 06:31+0200\n"
-"PO-Revision-Date: 2017-11-01 17:56+\n"
+"PO-Revision-Date: 2017-11-03 11:13+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-sensors-plugin] branch master updated (6e501d2 -> 89f876a)

2017-11-03 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  6e501d2   I18n: Update translation da (100%).
   new  89f876a   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] [panel-plugins/xfce4-verve-plugin] branch master updated (8075188 -> 21e1786)

2017-11-03 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-verve-plugin.

  from  8075188   I18n: Update translation da (100%).
   new  21e1786   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] [panel-plugins/xfce4-systemload-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-systemload-plugin.

commit 2958e6431a9c6b46b0417a2d2f17403cf5a07439
Author: Anonymous 
Date:   Fri Nov 3 12:34:37 2017 +0100

I18n: Update translation da (100%).

22 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 c404b2f..f252eef 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-02-10 00:31+0100\n"
-"PO-Revision-Date: 2017-11-01 17:37+\n"
+"PO-Revision-Date: 2017-11-03 11:13+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-time-out-plugin] branch master updated (0d54a01 -> 28f4975)

2017-11-03 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-time-out-plugin.

  from  0d54a01   I18n: Update translation da (100%).
   new  28f4975   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] [panel-plugins/xfce4-pulseaudio-plugin] 02/02: I18n: Update translation uk (100%).

2017-11-03 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-pulseaudio-plugin.

commit 86fbf4cc254bc662084af40e2dee6cc992acf30d
Author: Yarema aka Knedlyk 
Date:   Fri Nov 3 12:34:12 2017 +0100

I18n: Update translation uk (100%).

27 translated messages.

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

diff --git a/po/uk.po b/po/uk.po
index f1fd208..80643be 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-09-24 00:46+0200\n"
-"PO-Revision-Date: 2017-11-01 13:46+\n"
+"PO-Revision-Date: 2017-11-03 11:10+\n"
 "Last-Translator: Yarema aka Knedlyk \n"
 "Language-Team: Ukrainian 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/uk/)\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] [panel-plugins/xfce4-systemload-plugin] branch master updated (778cf45 -> 2958e64)

2017-11-03 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-systemload-plugin.

  from  778cf45   I18n: Update translation da (100%).
   new  2958e64   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] [panel-plugins/xfce4-sensors-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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 89f876a7e32942d6a0879242e2662bd6fca9ae39
Author: Anonymous 
Date:   Fri Nov 3 12:34:21 2017 +0100

I18n: Update translation da (100%).

75 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 66b87a5..6c6b2f7 100644
--- a/po/da.po
+++ b/po/da.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-03-19 18:31+0100\n"
-"PO-Revision-Date: 2017-11-01 16:47+\n"
+"PO-Revision-Date: 2017-11-03 11:13+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-pulseaudio-plugin] branch master updated (311b0a4 -> 86fbf4c)

2017-11-03 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-pulseaudio-plugin.

  from  311b0a4   I18n: Update translation da (100%).
   new  99f6344   I18n: Update translation da (100%).
   new  86fbf4c   I18n: Update translation uk (100%).

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 | 2 +-
 po/uk.po | 2 +-
 2 files 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-places-plugin] branch master updated (04c411f -> 46b5fca)

2017-11-03 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  04c411f   I18n: Update translation da (100%).
   new  46b5fca   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] [panel-plugins/xfce4-netload-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-netload-plugin.

commit 01acf40ee4a64f8cf3259bbbadb74c58bd518566
Author: Anonymous 
Date:   Fri Nov 3 12:33:46 2017 +0100

I18n: Update translation da (100%).

35 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 71eafe8..e442273 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-06-09 12:31+0200\n"
-"PO-Revision-Date: 2017-11-01 18:20+\n"
+"PO-Revision-Date: 2017-11-03 11:14+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-places-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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 46b5fcabb87c3c00aa4603397766c9127f803e1c
Author: Anonymous 
Date:   Fri Nov 3 12:34:01 2017 +0100

I18n: Update translation da (100%).

45 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 e907527..2c57d2d 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ 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-01 15:08+\n"
+"PO-Revision-Date: 2017-11-03 11:12+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-notes-plugin] branch master updated (54b7d20 -> 33593e0)

2017-11-03 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-notes-plugin.

  from  54b7d20   I18n: Update translation da (100%).
   new  33593e0   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] [panel-plugins/xfce4-pulseaudio-plugin] 01/02: I18n: Update translation da (100%).

2017-11-03 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-pulseaudio-plugin.

commit 99f6344742f27dc604b7520c802c2a8b3039bbea
Author: Anonymous 
Date:   Fri Nov 3 12:34:12 2017 +0100

I18n: Update translation da (100%).

27 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 dd294f0..7a860cf 100644
--- a/po/da.po
+++ b/po/da.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-09-24 00:46+0200\n"
-"PO-Revision-Date: 2017-11-01 18:23+\n"
+"PO-Revision-Date: 2017-11-03 11:14+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-notes-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-notes-plugin.

commit 33593e0609e5d466700083b0affe11a3b644e662
Author: Anonymous 
Date:   Fri Nov 3 12:33:53 2017 +0100

I18n: Update translation da (100%).

57 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 b40f5f4..6bf5b41 100644
--- a/po/da.po
+++ b/po/da.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 21:09+0200\n"
-"PO-Revision-Date: 2017-11-01 16:34+\n"
+"PO-Revision-Date: 2017-11-03 11:13+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-indicator-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-indicator-plugin.

commit 73d6f83fe4429c03004c91d0a3dc2fb3665992e7
Author: Anonymous 
Date:   Fri Nov 3 12:33:17 2017 +0100

I18n: Update translation da (100%).

40 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 8b0161e..8110d3a 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-07-16 18:31+0200\n"
-"PO-Revision-Date: 2017-11-01 17:29+\n"
+"PO-Revision-Date: 2017-11-03 11:13+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-mpc-plugin] branch master updated (07436aa -> 94a58ef)

2017-11-03 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  07436aa   I18n: Update translation da (100%).
   new  94a58ef   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] [panel-plugins/xfce4-netload-plugin] branch master updated (3906655 -> 01acf40)

2017-11-03 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-netload-plugin.

  from  3906655   Fix Pre-defined Compiler Macros
   new  01acf40   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] [panel-plugins/xfce4-mpc-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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 94a58efb5de5af8db419b1db3ab3b48f0c00c140
Author: Anonymous 
Date:   Fri Nov 3 12:33:39 2017 +0100

I18n: Update translation da (100%).

24 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 e779c15..c0a67f7 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-11-24 12:31+0100\n"
-"PO-Revision-Date: 2017-11-01 18:15+\n"
+"PO-Revision-Date: 2017-11-03 11:14+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-mount-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-mount-plugin.

commit 1c411f11f9e10cfdfc9529ba378b4a8a6af7d3a0
Author: Anonymous 
Date:   Fri Nov 3 12:33:32 2017 +0100

I18n: Update translation da (100%).

56 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 c311fd3..270c0a6 100644
--- a/po/da.po
+++ b/po/da.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-06-08 00:31+0200\n"
-"PO-Revision-Date: 2017-11-01 16:44+\n"
+"PO-Revision-Date: 2017-11-03 11:13+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-mailwatch-plugin] branch master updated (5b7152f -> e0f847b)

2017-11-03 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-mailwatch-plugin.

  from  5b7152f   I18n: Update translation da (100%).
   new  e0f847b   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] [panel-plugins/xfce4-fsguard-plugin] branch master updated (d3f9728 -> ba4217d)

2017-11-03 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-fsguard-plugin.

  from  d3f9728   I18n: Update translation da (100%).
   new  ba4217d   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] [panel-plugins/xfce4-mount-plugin] branch master updated (6406ddd -> 1c411f1)

2017-11-03 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-mount-plugin.

  from  6406ddd   I18n: Update translation da (100%).
   new  1c411f1   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] [panel-plugins/xfce4-mailwatch-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-mailwatch-plugin.

commit e0f847bd70852bf92d3eb26ed0b28908da289241
Author: Anonymous 
Date:   Fri Nov 3 12:33:25 2017 +0100

I18n: Update translation da (100%).

112 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 8acfa19..94ee1ed 100644
--- a/po/da.po
+++ b/po/da.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-07-05 18:31+0200\n"
-"PO-Revision-Date: 2017-11-02 19:54+\n"
+"PO-Revision-Date: 2017-11-03 11:14+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-diskperf-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-diskperf-plugin.

commit 08855a5268f64d7650ca639d1e5b57f6cc301611
Author: Anonymous 
Date:   Fri Nov 3 12:32:45 2017 +0100

I18n: Update translation da (100%).

37 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 fc49613..6448ff6 100644
--- a/po/da.po
+++ b/po/da.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-04-28 18:31+0200\n"
-"PO-Revision-Date: 2017-11-01 16:57+\n"
+"PO-Revision-Date: 2017-11-03 11:13+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-embed-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-embed-plugin.

commit 23b1918d56565200d731f6e611c46853d41c6037
Author: Anonymous 
Date:   Fri Nov 3 12:32:53 2017 +0100

I18n: Update translation da (100%).

33 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 a074450..e41283d 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 20:58+0200\n"
-"PO-Revision-Date: 2017-11-01 17:08+\n"
+"PO-Revision-Date: 2017-11-03 11:13+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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] [panel-plugins/xfce4-diskperf-plugin] branch master updated (d42de6d -> 08855a5)

2017-11-03 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-diskperf-plugin.

  from  d42de6d   I18n: Update translation da (100%).
   new  08855a5   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] [panel-plugins/xfce4-indicator-plugin] branch master updated (b0c789c -> 73d6f83)

2017-11-03 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-indicator-plugin.

  from  b0c789c   I18n: Update translation da (100%).
   new  73d6f83   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] [panel-plugins/xfce4-genmon-plugin] 01/01: I18n: Update translation da (100%).

2017-11-03 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-genmon-plugin.

commit 8132895ee842765418f9813de6520372edf77270
Author: Anonymous 
Date:   Fri Nov 3 12:33:09 2017 +0100

I18n: Update translation da (100%).

14 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 fc6a0d9..8543d3e 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-06-10 06:31+0200\n"
-"PO-Revision-Date: 2017-11-01 17:16+\n"
+"PO-Revision-Date: 2017-11-03 11:13+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/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


  1   2   >