[Xfce4-commits] [apps/xfce4-taskmanager] 02/03: Add delete and shift/delete shortcuts to the treeview

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

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

commit 58daa93aaa53e11dafced1e310c68a2ba38a774c
Author: Simon Steinbeiß 
Date:   Thu Jan 19 00:34:44 2017 +0100

Add delete and shift/delete shortcuts to the treeview
---
 src/process-tree-view.c | 42 --
 1 file changed, 28 insertions(+), 14 deletions(-)

diff --git a/src/process-tree-view.c b/src/process-tree-view.c
index 6ab63b3..eb7007d 100644
--- a/src/process-tree-view.c
+++ b/src/process-tree-view.c
@@ -557,25 +557,40 @@ treeview_key_pressed (XtmProcessTreeView *treeview, 
GdkEventKey *event)
 {
guint pid;
 
-   if (event->keyval != GDK_KEY_Menu)
-   return FALSE;
+   GtkTreeModel *model;
+   GtkTreeSelection *selection;
+   GtkTreeIter iter;
+   GdkModifierType modifiers;
 
-   {
-   GtkTreeModel *model;
-   GtkTreeSelection *selection;
-   GtkTreeIter iter;
+   modifiers = gtk_accelerator_get_default_mod_mask ();
 
-   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW 
(treeview));
+   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (treeview));
 
-   if (!gtk_tree_selection_get_selected (selection, , ))
-   return FALSE;
+   if (!gtk_tree_selection_get_selected (selection, , ))
+   return FALSE;
 
-   gtk_tree_model_get (model, , XTM_PTV_COLUMN_PID, , -1);
-   }
+   gtk_tree_model_get (model, , XTM_PTV_COLUMN_PID, , -1);
 
-   popup_menu (treeview, pid, event->time, FALSE);
+   if (event->keyval == GDK_KEY_Menu)
+   {
+   popup_menu (treeview, pid, event->time, FALSE);
+   return TRUE;
+   }
+   else if (event->keyval == GDK_KEY_Delete)
+   {
+   /* Fake menuitem for the cb_send_signal callback */
+   GtkWidget *mi;
+   mi = gtk_menu_item_new_with_label (_("Stop"));
+   g_object_set_data (G_OBJECT (mi), "pid", GUINT_TO_POINTER 
(pid));
+   if ((event->state & modifiers) == GDK_SHIFT_MASK)
+   cb_send_signal (GTK_MENU_ITEM (mi), GINT_TO_POINTER 
(XTM_SIGNAL_KILL));
+   else
+   cb_send_signal (GTK_MENU_ITEM (mi), GINT_TO_POINTER 
(XTM_SIGNAL_TERMINATE));
+   return TRUE;
+   }
 
-   return TRUE;
+   else
+   return FALSE;
 }
 
 static void
@@ -754,4 +769,3 @@ xtm_process_tree_view_get_model (XtmProcessTreeView 
*treeview)
 {
return GTK_TREE_MODEL (treeview->model);
 }
-

-- 
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-taskmanager] branch master updated (f1f6d71 -> ee36cdc)

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

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

  from  f1f6d71   I18n: Update translation da (100%).
   new  ca68d61   Improve kill and terminate dialog wording
   new  58daa93   Add delete and shift/delete shortcuts to the treeview
   new  ee36cdc   Add Ctrl+q to close taskmanager

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


Summary of changes:
 src/process-tree-view.c | 45 ++---
 src/process-window.c|  3 ++-
 2 files changed, 32 insertions(+), 16 deletions(-)

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


[Xfce4-commits] [apps/xfce4-taskmanager] 03/03: Add Ctrl+q to close taskmanager

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

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

commit ee36cdcb233a5eda683edd3d2d07ceb00160be76
Author: Simon Steinbeiß 
Date:   Thu Jan 19 01:35:04 2017 +0100

Add Ctrl+q to close taskmanager
---
 src/process-window.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/process-window.c b/src/process-window.c
index 86f84db..81246a6 100644
--- a/src/process-window.c
+++ b/src/process-window.c
@@ -281,7 +281,8 @@ xtm_process_window_key_pressed (XtmProcessWindow *window, 
GdkEventKey *event)
 {
gboolean ret = FALSE;
 
-   if (event->keyval == GDK_KEY_Escape) {
+   if (event->keyval == GDK_KEY_Escape ||
+   event->keyval == GDK_KEY_q && (event->state & 
GDK_CONTROL_MASK)) {
emit_delete_event_signal (window, (GdkEvent*) event);
ret = TRUE;
}

-- 
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-taskmanager] 01/03: Improve kill and terminate dialog wording

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

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

commit ca68d61f05b696d938d1f72d1e86426d4402a389
Author: Simon Steinbeiß 
Date:   Thu Jan 19 00:32:53 2017 +0100

Improve kill and terminate dialog wording
---
 src/process-tree-view.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/process-tree-view.c b/src/process-tree-view.c
index dcbfd6d..6ab63b3 100644
--- a/src/process-tree-view.c
+++ b/src/process-tree-view.c
@@ -368,7 +368,8 @@ cb_send_signal (GtkMenuItem *mi, gpointer user_data)
dialog = gtk_message_dialog_new (NULL, 0, GTK_MESSAGE_QUESTION, 
GTK_BUTTONS_YES_NO,
(xtm_signal == XTM_SIGNAL_TERMINATE) ? _("Terminate 
task") : _("Kill task"));
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG 
(dialog),
-   _("Are you sure you want to send a signal to the PID 
%d?"), pid);
+   _("Are you sure you want to send the %s signal to the 
PID %d?"),
+   (xtm_signal == XTM_SIGNAL_TERMINATE) ? _("terminate") : 
_("kill"), pid);
gtk_window_set_title (GTK_WINDOW (dialog), _("Task Manager"));
gtk_window_set_position (GTK_WINDOW (dialog), 
GTK_WIN_POS_MOUSE);
res = gtk_dialog_run (GTK_DIALOG (dialog));

-- 
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 (55bc32a -> 0c1b206)

2017-01-22 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  55bc32a   I18n: Update translation da (100%).
   new  0c1b206   I18n: Update translation am (54%).

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/am.po | 28 ++--
 1 file changed, 14 insertions(+), 14 deletions(-)

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


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

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

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

commit 3453195bab101c6e1a109a92397caafad140283d
Author: samson 
Date:   Mon Jan 23 06:30:40 2017 +0100

I18n: Update translation am (59%).

235 translated messages, 160 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/am.po | 976 +++
 1 file changed, 413 insertions(+), 563 deletions(-)

diff --git a/po/am.po b/po/am.po
index 9b60390..5a2a5f8 100644
--- a/po/am.po
+++ b/po/am.po
@@ -1,110 +1,103 @@
-# Amharic translation to xfce4-panel.
-# Copyright (C) 2002-2007 The Xfce development team.
-# This file is distributed under the same license as the xfce4-panel package.
-# Tegegne Tefera , 2007.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# samson , 2016-2017
+# Tegegne Tefera , 2007
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-panel 4.7.0\n"
+"Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-05-16 21:39+0100\n"
-"PO-Revision-Date: 2008-01-06 18:39+0100\n"
-"Last-Translator: Tegegne Tefera \n"
-"Language-Team: Amharic \n"
-"Language: am\n"
+"POT-Creation-Date: 2015-09-27 18:30+0200\n"
+"PO-Revision-Date: 2017-01-23 02:51+\n"
+"Last-Translator: samson \n"
+"Language-Team: Amharic 
(http://www.transifex.com/xfce/xfce4-panel/language/am/)\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Bookmarks: 105,-1,159,-1,-1,-1,-1,-1,-1,-1\n"
+"Language: am\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
 #: ../panel-desktop-handler.desktop.in.h:1
-#, fuzzy
 msgid "Create Launcher on the panel"
-msgstr "ስለ ሸፍሲ ፓነል"
+msgstr "በ ክፍል ላይ ማስጀመሪያ መፍጠሪያ"
 
 #: ../panel-desktop-handler.desktop.in.h:2
 msgid ""
-"Add a new launcher to the panel based on the information of this desktop file"
+"Add a new launcher to the panel based on the information of this desktop "
+"file"
 msgstr ""
 
 #: ../panel-preferences.desktop.in.h:1
-#: ../panel/panel-preferences-dialog.glade.h:7 ../panel/panel-window.c:2353
+#: ../panel/panel-preferences-dialog.glade.h:10 ../panel/panel-window.c:2615
 #: ../migrate/main.c:117
-#, fuzzy
 msgid "Panel"
-msgstr "ፓነል %d"
+msgstr "ክፍል"
 
 #: ../panel-preferences.desktop.in.h:2
-#, fuzzy
 msgid "Customize the panel"
-msgstr "ስለ ሸፍሲ ፓነል"
+msgstr "ክፍል ማስተካከያ"
 
 #. I18N: %s is the name of the plugin
 #: ../libxfce4panel/xfce-panel-plugin.c:1032
-#: ../panel/panel-preferences-dialog.c:1123
-#, fuzzy, c-format
+#: ../panel/panel-preferences-dialog.c:1190
+#, c-format
 msgid "Are you sure that you want to remove \"%s\"?"
-msgstr "የስራ ገበታ '%s'ን ለመሰረዝ እንደሚፈልጉ እርግጠኛ ነዎት?"
+msgstr "በ እርግጥ ማስወገድ ይፈልጋሉ \"%s\"?"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1037
-#: ../panel/panel-preferences-dialog.c:1126
+#: ../panel/panel-preferences-dialog.c:1193
 msgid "If you remove the item from the panel, it is permanently lost."
 msgstr ""
 
 #. move item
 #: ../libxfce4panel/xfce-panel-plugin.c:1197
-#, fuzzy
 msgid "_Move"
-msgstr "ውሰድ"
+msgstr "_ማንቀሳቀሻ "
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1231
-#, fuzzy
 msgid "Pane_l"
-msgstr "ፓነል %d"
+msgstr "ክፍ_ል"
 
 #. add new items
-#: ../libxfce4panel/xfce-panel-plugin.c:1239 ../panel/panel-window.c:2365
-#, fuzzy
+#: ../libxfce4panel/xfce-panel-plugin.c:1239 ../panel/panel-window.c:2627
 msgid "Add _New Items..."
-msgstr "አዲስ ዕቃ ጨምር"
+msgstr "_አዲስ እቃ መጨመሪያ..."
 
 #. customize panel
-#: ../libxfce4panel/xfce-panel-plugin.c:1250 ../panel/panel-window.c:2376
+#: ../libxfce4panel/xfce-panel-plugin.c:1250 ../panel/panel-window.c:2638
 msgid "Panel Pr_eferences..."
-msgstr ""
+msgstr "የ ክፍል ምር_ጫዎች..."
 
 #. logout item
-#: ../libxfce4panel/xfce-panel-plugin.c:1267 ../panel/panel-window.c:2404
+#: ../libxfce4panel/xfce-panel-plugin.c:1267 ../panel/panel-window.c:2666
 msgid "Log _Out"
-msgstr ""
+msgstr "መው_ጫ"
 
 #: ../panel/main.c:80
-#, fuzzy
 msgid "Show the 'Panel Preferences' dialog"
-msgstr "ፓነሉን አመቻች"
+msgstr ""
 
 #: ../panel/main.c:80 ../panel/main.c:81
 msgid "PANEL-NUMBER"
-msgstr ""
+msgstr "የ ክፍል-ቁጥር"
 
 #: ../panel/main.c:81
-#, fuzzy
 msgid "Show the 'Add New Items' dialog"
-msgstr "አዲስ ዕቃ ጨምር"
+msgstr "የ አዲስ እቃ መጨመሪያ ንግግር ማሳያ"
 
 #: ../panel/main.c:82
-#, fuzzy
 msgid "Save the panel configuration"
-msgstr "የማሳወቂያ መለዮን አሳይ"
+msgstr "የ ክፍል ማሰናጃ ማስቀመጫ"
 
 #: ../panel/main.c:83
-#, fuzzy
 msgid "Add a new plugin to the panel"
-msgstr "እቃዎችን ፓነል ላይ ጨምር"
+msgstr "አዲስ ተሰኪ ወደ ክፍል መጨመሪያ"
 
 #: ../panel/main.c:83
 msgid "PLUGIN-NAME"
-msgstr ""
+msgstr "የ ተሰኪ-ስም"
 
 #: 

[Xfce4-commits] [xfce/xfce4-panel] branch master updated (82bb84c -> 3453195)

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

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

  from  82bb84c   I18n: Update translation da (100%).
   new  3453195   I18n: Update translation am (59%).

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/am.po | 976 +++
 1 file changed, 413 insertions(+), 563 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/libxfce4ui] branch master updated (bc5d14e -> 5de8a06)

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

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

  from  bc5d14e   I18n: Update translation da (100%).
   new  5de8a06   I18n: Update translation ko (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/ko.po | 30 +++---
 1 file changed, 15 insertions(+), 15 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/libxfce4ui] 01/01: I18n: Update translation ko (100%).

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

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

commit 5de8a06f0bbdfbe0a7e11f58b19c2689a14a029b
Author: Seong-ho Cho 
Date:   Mon Jan 23 06:30:13 2017 +0100

I18n: Update translation ko (100%).

174 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/ko.po | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index 47d5e31..9b77134 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,13 +3,13 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Seong-ho Cho , 2013-2016
+# Seong-ho Cho , 2013-2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Libxfce4ui\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-06-09 00:30+0200\n"
-"PO-Revision-Date: 2016-07-02 12:45+\n"
+"PO-Revision-Date: 2017-01-23 00:55+\n"
 "Last-Translator: Seong-ho Cho \n"
 "Language-Team: Korean 
(http://www.transifex.com/xfce/libxfce4ui/language/ko/)\n"
 "MIME-Version: 1.0\n"
@@ -107,7 +107,7 @@ msgstr "세션 관리자로 연결하는데 실패했습니다: %s"
 #: ../libxfce4ui/xfce-sm-client.c:1617
 #, c-format
 msgid "Session manager did not return a valid client id"
-msgstr "세션 관리자가 유효한 클라이언트 ID를 반환하지 않았습니다"
+msgstr "세션 관리자에서 올바른 클라이언트 ID를 반환하지 않았습니다"
 
 #. print warning for user
 #: ../libxfce4ui/xfce-spawn.c:409
@@ -153,7 +153,7 @@ msgstr "이 바로 가기는 이미 명령 '%s'에서 사용하고 있습니다.
 msgid ""
 "This shortcut is already being used by the action '%s'. Which action do you "
 "want to use?"
-msgstr "이 바로 가기는 이미 '%s' 동작이 사용하고 있습니다. 어떤 동작을 사용하시렵니까?"
+msgstr "이 바로 가기는 이미 '%s' 동작에서 사용하고 있습니다. 어떤 동작을 사용하시렵니까?"
 
 #. This shortcut already exists in the provider, we don't want it twice
 #. Warn the user
@@ -356,47 +356,47 @@ msgstr "작업 공간 1로 창 이동"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:70
 msgid "Move window to workspace 2"
-msgstr "워크스페이스 2로 창 이동"
+msgstr "작업 공간 2로 창 이동"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:71
 msgid "Move window to workspace 3"
-msgstr "워크스페이스 3으로 창 이동"
+msgstr "작업 공간 3으로 창 이동"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:72
 msgid "Move window to workspace 4"
-msgstr "워크스페이스 4로 창 이동"
+msgstr "작업 공간 4로 창 이동"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:73
 msgid "Move window to workspace 5"
-msgstr "워크스페이스 5로 창 이동"
+msgstr "작업 공간 5로 창 이동"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:74
 msgid "Move window to workspace 6"
-msgstr "워크스페이스 6으로 창 이동"
+msgstr "작업 공간 6으로 창 이동"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:75
 msgid "Move window to workspace 7"
-msgstr "워크스페이스 7로 창 이동"
+msgstr "작업 공간 7로 창 이동"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:76
 msgid "Move window to workspace 8"
-msgstr "워크스페이스 8로 창 이동"
+msgstr "작업 공간 8로 창 이동"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:77
 msgid "Move window to workspace 9"
-msgstr "워크스페이스 9로 창 이동"
+msgstr "작업 공간 9로 창 이동"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:78
 msgid "Move window to workspace 10"
-msgstr "워크스페이스 10으로 창 이동"
+msgstr "작업 공간 10으로 창 이동"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:79
 msgid "Move window to workspace 11"
-msgstr "워크스페이스 11로 창 이동"
+msgstr "작업 공간 11로 창 이동"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:80
 msgid "Move window to workspace 12"
-msgstr "워크스페이스 12로 창 이동"
+msgstr "작업 공간 12로 창 이동"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:81
 msgid "Tile window to the top"

-- 
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 am (54%).

2017-01-22 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 0c1b2061a27c5e32dd0bdc168cd9a672318a0800
Author: samson 
Date:   Mon Jan 23 06:30:22 2017 +0100

I18n: Update translation am (54%).

400 translated messages, 338 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/am.po | 28 ++--
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/po/am.po b/po/am.po
index 3cbc86e..a04266f 100644
--- a/po/am.po
+++ b/po/am.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-02-19 18:30+0100\n"
-"PO-Revision-Date: 2017-01-22 23:30+\n"
+"PO-Revision-Date: 2017-01-22 23:36+\n"
 "Last-Translator: samson \n"
 "Language-Team: Amharic (http://www.transifex.com/xfce/thunar/language/am/)\n"
 "MIME-Version: 1.0\n"
@@ -2262,12 +2262,12 @@ msgstr "_ሰነድ መፍጠሪያ"
 
 #: ../thunar/thunar-standard-view.c:1632
 msgid "Loading folder contents..."
-msgstr ""
+msgstr "የ ፎልደር ይዞታ በ መጫን ላይ..."
 
 #. display an error to the user
 #: ../thunar/thunar-standard-view.c:2200 ../thunar/thunar-window.c:2788
 msgid "Failed to open the home folder"
-msgstr ""
+msgstr "የ ቤት ፎልደር መክፈት አልተቻለም"
 
 #: ../thunar/thunar-standard-view.c:2253
 msgid "New Empty File"
@@ -2373,7 +2373,7 @@ msgstr ""
 
 #: ../thunar/thunar-transfer-job.c:794
 msgid "Collecting files..."
-msgstr ""
+msgstr "ፋይሎች በ መሰብሰብ ላይ..."
 
 #. update progress information
 #: ../thunar/thunar-transfer-job.c:826
@@ -2456,12 +2456,12 @@ msgstr "ባ_ህሪዎች..."
 #: ../thunar/thunar-util.c:280
 #, c-format
 msgid "Invalid path"
-msgstr ""
+msgstr "ዋጋ የሌለው መንገድ"
 
 #: ../thunar/thunar-util.c:314
 #, c-format
 msgid "Unknown user \"%s\""
-msgstr ""
+msgstr "ያልታወቀ ተጠቃሚ \"%s\""
 
 #. TRANSLATORS: file was modified less than one day ago
 #: ../thunar/thunar-util.c:403
@@ -2535,11 +2535,11 @@ msgstr ""
 
 #: ../thunar/thunar-window.c:354
 msgid "Close this folder"
-msgstr ""
+msgstr "ይህን ፎልደር መዝጊያ"
 
 #: ../thunar/thunar-window.c:355
 msgid "_Close Window"
-msgstr ""
+msgstr "መስኮት _መዝጊያ"
 
 #: ../thunar/thunar-window.c:355
 msgid "Close this window"
@@ -2563,7 +2563,7 @@ msgstr "_መመልከቻ"
 
 #: ../thunar/thunar-window.c:359
 msgid "_Reload"
-msgstr ""
+msgstr "_እንደገና መጫኛ"
 
 #: ../thunar/thunar-window.c:360
 msgid "_Location Selector"
@@ -2711,7 +2711,7 @@ msgstr ""
 
 #: ../thunar/thunar-window.c:385
 msgid "St_atusbar"
-msgstr ""
+msgstr "ሁኔ_ታዎች መደርደሪያ"
 
 #: ../thunar/thunar-window.c:385
 msgid "Change the visibility of this window's statusbar"
@@ -2719,7 +2719,7 @@ msgstr ""
 
 #: ../thunar/thunar-window.c:386
 msgid "_Menubar"
-msgstr ""
+msgstr "_ዝርዝር መደርደሪያ"
 
 #: ../thunar/thunar-window.c:386
 msgid "Change the visibility of this window's menubar"
@@ -2991,7 +2991,7 @@ msgstr "ሶፍትዌር:"
 
 #: ../plugins/thunar-apr/thunar-apr-image-page.c:114
 msgid "Image"
-msgstr ""
+msgstr "ምስል"
 
 #: ../plugins/thunar-apr/thunar-apr-image-page.c:129
 msgid "Image Type:"
@@ -3002,8 +3002,8 @@ msgstr "የ ምስል አይነት:"
 #, c-format
 msgid "%dx%d pixel"
 msgid_plural "%dx%d pixels"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "%dx%d ፒክስል"
+msgstr[1] "%dx%d ፒክስል"
 
 #: ../plugins/thunar-sbr/thunar-sbr-case-renamer.c:117
 msgid "Con_vert to:"

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


[Xfce4-commits] [xfce/xfdesktop] branch xfce-4.10 updated (b2a38fd -> a8702a4)

2017-01-22 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/xfdesktop.

  from  b2a38fd   I18n: Update translation da (100%).
   new  a8702a4   I18n: Update translation da (100%).

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


Summary of changes:
 po/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

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

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

commit 7a97b2cb2f2ea17dc04bb6a7b30f9359e10dea7b
Author: samson 
Date:   Mon Jan 23 00:34:13 2017 +0100

I18n: Update translation am (84%).

189 translated messages, 34 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/am.po | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/po/am.po b/po/am.po
index 3cc2567..1722729 100644
--- a/po/am.po
+++ b/po/am.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# samson , 2016
+# samson , 2016-2017
 # Tegegne Tefera , 2007
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-08-15 18:31+0200\n"
-"PO-Revision-Date: 2016-12-28 22:36+\n"
+"PO-Revision-Date: 2017-01-22 23:03+\n"
 "Last-Translator: samson \n"
 "Language-Team: Amharic 
(http://www.transifex.com/xfce/xfdesktop/language/am/)\n"
 "MIME-Version: 1.0\n"
@@ -105,11 +105,11 @@ msgstr "ይህን ንግግር ማንቀሳቀሻ እርስዎ ማሳየት ወ
 
 #: ../settings/main.c:1194
 msgid "Image selection is unavailable while the image style is set to None."
-msgstr ""
+msgstr "የ ምስል ምርጫ ዝግጁ አይደለም የ ምስል ዘዴ ሲሰናዳ  ወደ ምንም "
 
 #: ../settings/main.c:1544
 msgid "Spanning screens"
-msgstr ""
+msgstr "መመልከቻ ማስፊያ"
 
 #: ../settings/main.c:1858
 msgid "Image files"
@@ -189,7 +189,7 @@ msgstr "_ፎልደር:"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:6
 msgid "Choose the folder to select wallpapers from."
-msgstr ""
+msgstr "ፎልደር ይምረጡ የ ግድግዳ ወረቀት ለ መምረጥ ከ:"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:7
 msgid "St_yle:"
@@ -226,7 +226,7 @@ msgstr "ማሳያ"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:15
 msgid "Spanning Screens"
-msgstr ""
+msgstr "መመልከቻ ማስፊያ"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:16
 msgid "C_olor:"

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


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

2017-01-22 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/xfdesktop.

commit a8702a4380e49522c3dfcbd24a2af9a6a2158e0e
Author: Anonymous 
Date:   Mon Jan 23 00:34:19 2017 +0100

I18n: Update translation da (100%).

213 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 4d1cf90..3d89961 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 23:19+0200\n"
-"PO-Revision-Date: 2017-01-21 19:48+\n"
+"PO-Revision-Date: 2017-01-22 17:42+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfdesktop/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -907,7 +907,7 @@ msgstr "Skriver data til enhed"
 msgid ""
 "There is data that needs to be written to the device \"%s\" before it can be"
 " removed. Please do not remove the media or disconnect the drive"
-msgstr "Der findes data som skal skrives til enheden \"%s\" før den kan 
fjernes. Undlad venligst at fjerne mediet eller afbryde drevet"
+msgstr "Der er data som skal skrives til enheden \"%s\" før den kan fjernes. 
Undlad venligst at fjerne mediet eller afbryde drevet"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../src/xfdesktop-notify.c:253
@@ -988,7 +988,7 @@ msgstr "Kunne ikke montere \"%s\""
 
 #: ../src/xfdesktop-volume-icon.c:562
 msgid "Mount Failed"
-msgstr "Monteringsfejl"
+msgstr "Montering fejlede"
 
 #: ../src/xfdesktop-volume-icon.c:707 ../src/xfdesktop-volume-icon.c:710
 msgid "E_ject Volume"

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


[Xfce4-commits] [xfce/xfdesktop] branch master updated (a62a1ab -> 9c4ee59)

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

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

  from  a62a1ab   I18n: Update translation da (100%).
   new  7a97b2c   I18n: Update translation am (84%).
   new  9c4ee59   I18n: Update translation da (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/am.po | 12 ++--
 po/da.po |  6 +++---
 2 files 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] [panel-plugins/xfce4-xkb-plugin] 01/01: I18n: Update translation da (100%).

2017-01-22 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 fe76aa8bf81251dd4d891bb8a854de417d1943d2
Author: Anonymous 
Date:   Mon Jan 23 00:34:05 2017 +0100

I18n: Update translation da (100%).

15 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 38614e6..9bb3b03 100644
--- a/po/da.po
+++ b/po/da.po
@@ -7,13 +7,14 @@
 # Jannich Brendle , 2008
 # Morten Juhl-Johansen Zölde-Fejér , 2016
 # Per Kongstad , 2008
+# scootergrisen, 2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-07-01 00:31+0200\n"
-"PO-Revision-Date: 2016-06-23 19:33+\n"
-"Last-Translator: Morten Juhl-Johansen Zölde-Fejér 
\n"
+"PO-Revision-Date: 2017-01-22 17:36+\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"
@@ -75,7 +76,7 @@ msgstr "Tillader dig at indstille og bruge flere 
tastaturlayouts."
 
 #: ../panel-plugin/xkb-settings-dialog.c:219
 msgid "Other plugins available here"
-msgstr "Andre plugins er tilgængelige her"
+msgstr "Andre udvidelsesmoduler som er tilgængelige her"
 
 #: ../panel-plugin/xfce4-xkb-plugin.c:131
 msgid "Keyboard settings"

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


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

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

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

commit 9c4ee59ff473ebf2b4a07996cf05adc9cecc36b9
Author: Anonymous 
Date:   Mon Jan 23 00:34:13 2017 +0100

I18n: Update translation da (100%).

223 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 455003b..6416913 100644
--- a/po/da.po
+++ b/po/da.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-08-15 18:31+0200\n"
-"PO-Revision-Date: 2017-01-21 19:48+\n"
+"PO-Revision-Date: 2017-01-22 17:42+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfdesktop/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -933,7 +933,7 @@ msgstr "Skriver data til enhed"
 msgid ""
 "There is data that needs to be written to the device \"%s\" before it can be"
 " removed. Please do not remove the media or disconnect the drive"
-msgstr "Der findes data som skal skrives til enheden \"%s\" før den kan 
fjernes. Undlad venligst at fjerne mediet eller afbryde drevet"
+msgstr "Der er data som skal skrives til enheden \"%s\" før den kan fjernes. 
Undlad venligst at fjerne mediet eller afbryde drevet"
 
 #: ../src/xfdesktop-notify.c:221
 msgid "Unmount Finished"
@@ -1027,7 +1027,7 @@ msgstr "Kunne ikke montere \"%s\""
 
 #: ../src/xfdesktop-volume-icon.c:603
 msgid "Mount Failed"
-msgstr "Monteringsfejl"
+msgstr "Montering fejlede"
 
 #: ../src/xfdesktop-volume-icon.c:828
 msgid "E_ject Volume"

-- 
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 (96af8fe -> 3c98c66)

2017-01-22 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  96af8fe   I18n: Update translation da (100%).
   new  3c98c66   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-weather-plugin] 01/01: I18n: Update translation da (85%).

2017-01-22 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 c8bc84b2e79c9933703dbbc5dbb38450693f5811
Author: Anonymous 
Date:   Mon Jan 23 00:33:57 2017 +0100

I18n: Update translation da (85%).

282 translated messages, 48 untranslated messages.

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

diff --git a/po/da.po b/po/da.po
index d288027..9537798 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-01-21 17:43+\n"
+"PO-Revision-Date: 2017-01-22 22:02+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -118,7 +118,7 @@ msgstr "Fejl ved skrivning af mellemlagringsfilen %s!"
 #: ../panel-plugin/weather.c:1609
 #, c-format
 msgid "Unable to open the following url: %s"
-msgstr "Kunne ikke åbne følgende url: %s"
+msgstr "Kunne ikke åbne den følgende url: %s"
 
 #: ../panel-plugin/weather.c:1640 ../panel-plugin/weather.desktop.in.h:1
 msgid "Weather Update"
@@ -183,7 +183,7 @@ msgstr "Kan ikke opdatere vejrdata"
 
 #: ../panel-plugin/weather.c:1884
 msgid "No default icon theme? This should not happen, plugin will crash!"
-msgstr "Intet standard-ikon-tema? Dette bør ikke ske, plugin vil holde op med 
at virke!"
+msgstr "Intet standard-ikon-tema? Dette bør ikke ske, udvidelsesmodul vil 
holde op med at virke!"
 
 #. add refresh button to right click menu, for people who missed
 #. the middle mouse click feature
@@ -554,11 +554,11 @@ msgstr "Mil pr. time (mph)"
 
 #: ../panel-plugin/weather-config.c:996
 msgid "Meters per second (m/s)"
-msgstr "Meter per sekund (m/s)"
+msgstr "Meter pr. sekund (m/s)"
 
 #: ../panel-plugin/weather-config.c:998
 msgid "Feet per second (ft/s)"
-msgstr "Fod per sekund (f/s)"
+msgstr "Fod pr. sekund (f/s)"
 
 #: ../panel-plugin/weather-config.c:1000
 msgid "Knots (kt)"
@@ -1645,7 +1645,7 @@ msgstr "Vejrrapport"
 
 #: ../panel-plugin/weather-summary.c:1173
 msgid "Please set a location in the plugin settings."
-msgstr "Sæt venligst en placering i pluginets indstillinger."
+msgstr "Sæt venligst en placering i udvidelsesmodulindstillingerne."
 
 #: ../panel-plugin/weather-summary.c:1175
 msgid "Currently no data available."

-- 
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 (a02e9d9 -> c8bc84b)

2017-01-22 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  a02e9d9   I18n: Update translation da (85%).
   new  c8bc84b   I18n: Update translation da (85%).

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 | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-radio-plugin] branch master updated (a8237ae -> 46268a8)

2017-01-22 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-radio-plugin.

  from  a8237ae   I18n: Update translation da (100%).
   new  46268a8   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-xkb-plugin] branch master updated (6841afb -> fe76aa8)

2017-01-22 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  6841afb   I18n: Update translation oc (100%).
   new  fe76aa8   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-mount-plugin] branch master updated (58f2137 -> 71ddef6)

2017-01-22 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  58f2137   I18n: Update translation da (100%).
   new  71ddef6   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] 01/01: I18n: Update translation da (100%).

2017-01-22 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 3c98c66ec03a9264c72b86253885800a1d503f62
Author: Anonymous 
Date:   Mon Jan 23 00:33:31 2017 +0100

I18n: Update translation da (100%).

45 translated messages.

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

diff --git a/po/da.po b/po/da.po
index b0b5dbd..44370d3 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-01-21 19:39+\n"
+"PO-Revision-Date: 2017-01-22 17:40+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -93,7 +93,7 @@ msgstr "Afmonterer enhed"
 msgid ""
 "The device \"%s\" is being unmounted by the system. Please do not remove the"
 " media or disconnect the drive"
-msgstr "Enheden \"%s\" bliver afmonteret af systemet. Undlad at fjerne eller 
afbryde drevet"
+msgstr "Enheden \\\"%s\\\" bliver afmonteret af systemet. Undlad venligst at 
fjerne mediet eller afbryde drevet"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../panel-plugin/model_volumes_notify.c:138
@@ -108,7 +108,7 @@ msgstr "Skriver data til enhed"
 msgid ""
 "There is data that needs to be written to the device \"%s\" before it can be"
 " removed. Please do not remove the media or disconnect the drive"
-msgstr "Der er data som skal skrives til enheden \"%s\" før denne kan fjernes. 
Undlad at fjerne eller afbryde drevet"
+msgstr "Der er data som skal skrives til enheden \"%s\" før den kan fjernes. 
Undlad venligst at fjerne mediet eller afbryde drevet"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../panel-plugin/model_volumes_notify.c:253

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

2017-01-22 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-radio-plugin.

commit 46268a87cf93b862609aa986da00c376cb93ce12
Author: Anonymous 
Date:   Mon Jan 23 00:33:38 2017 +0100

I18n: Update translation da (100%).

34 translated messages.

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

diff --git a/po/da.po b/po/da.po
index f7050e7..f6e9603 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: 2011-05-21 03:11+0200\n"
-"PO-Revision-Date: 2017-01-21 19:38+\n"
+"PO-Revision-Date: 2017-01-22 21: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"
@@ -110,7 +110,7 @@ msgstr "Vis signalstyrkeindikatoren"
 
 #: ../panel-plugin/xfce4-radio.c:1207
 msgid "Use graphics instead of text labels and progress bars"
-msgstr "Vis grafik fremfor tekstetiketter og fremgangssøjler"
+msgstr "Vis grafik fremfor tekstetiketter og fremgangsbjælker"
 
 #. - Current station
 #: ../panel-plugin/xfce4-radio.c:1212

-- 
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-01-22 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 71ddef6bbae033c55447714f4d5f017c62cbb9f6
Author: Anonymous 
Date:   Mon Jan 23 00:33:13 2017 +0100

I18n: Update translation da (100%).

56 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 08a16f0..b25df0b 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-01-21 17:56+\n"
+"PO-Revision-Date: 2017-01-22 17:59+\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 "ikke monteret\n"
 #: ../panel-plugin/devices.c:379 ../panel-plugin/devices.c:390
 #: ../panel-plugin/devices.c:400 ../panel-plugin/devices.c:487
 msgid "Xfce 4 Mount Plugin"
-msgstr "Xfce 4 Mount-plugin"
+msgstr "Xfce 4 Mount-udvidelsesmodul"
 
 #: ../panel-plugin/devices.c:295
 msgid "Failed to mount device:"

-- 
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-01-22 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 fe4178a5e5942ad5daa9c82ecdde3a3d6e3760dc
Author: Anonymous 
Date:   Mon Jan 23 00:33:06 2017 +0100

I18n: Update translation da (100%).

112 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 7d8f788..d6e8ecd 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-01-21 19:41+\n"
+"PO-Revision-Date: 2017-01-22 17:51+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -495,7 +495,7 @@ msgstr "Online-dokumentation"
 
 #: ../panel-plugin/mailwatch-plugin.c:977
 msgid "Do you want to read the manual online?"
-msgstr "Vil du at læse manualen online?"
+msgstr "Vil du læse manualen online?"
 
 #: ../panel-plugin/mailwatch-plugin.c:978
 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-sensors-plugin] 01/01: I18n: Update translation da (100%).

2017-01-22 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 7b6295c29d5b03e48410118b4caded17317a7baf
Author: Anonymous 
Date:   Mon Jan 23 00:33:44 2017 +0100

I18n: Update translation da (100%).

74 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 3ff292b..ef409ca 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-05-22 00:31+0200\n"
-"PO-Revision-Date: 2017-01-21 19:38+\n"
+"PO-Revision-Date: 2017-01-22 21:39+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -52,7 +52,7 @@ msgstr "_tekst"
 
 #: ../panel-plugin/sensors-plugin.c:1712
 msgid "_progress bars"
-msgstr "_fremgangsstatus"
+msgstr "_fremgangsbjælker"
 
 #: ../panel-plugin/sensors-plugin.c:1714
 msgid "_tachos"
@@ -126,7 +126,7 @@ msgstr "Kø_r ved dobbeltklik:"
 
 #: ../panel-plugin/sensors-plugin.c:2081
 msgid "_View"
-msgstr "_Vis"
+msgstr "_Visning"
 
 #: ../panel-plugin/sensors-plugin.c:2115
 msgid "_Miscellaneous"
@@ -145,7 +145,7 @@ msgid ""
 "You can change a feature's properties such as name, colours, min/max value "
 "by double-clicking the entry, editing the content, and pressing \"Return\" "
 "or selecting a different field."
-msgstr "Du kan ændre en funktions egenskaber såsom navn, farver, 
minimum-/maksimumværdier ved at dobbeltklikke elementet, redigering af indhold 
og trykke \"Return\" eller vælge et andet felt."
+msgstr "Du kan ændre en funktions egenskaber såsom navn, farver, 
minimum-/maksimumværdier ved at dobbeltklikke elementet, redigere indholdet og 
trykke på \"Retur\" eller vælge et andet felt."
 
 #. only use this if no hddtemp sensor
 #. or do only use this , if it is an lmsensors device. whatever.
@@ -239,7 +239,7 @@ msgstr "Det lader til, at der var et problem med at læse en 
sensors funktionsv
 
 #: ../lib/sensors-interface.c:172
 msgid "Sensors t_ype:"
-msgstr "Sensor_typer:"
+msgstr "Sensor_type:"
 
 #: ../lib/sensors-interface.c:198
 msgid "Description:"

-- 
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-01-22 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 3422aea7f0e23c69064d06b2d27d418c9875b77e
Author: Anonymous 
Date:   Mon Jan 23 00:33:25 2017 +0100

I18n: Update translation da (100%).

57 translated messages.

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

diff --git a/po/da.po b/po/da.po
index e6711a2..ecdea97 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-01-20 19:53+\n"
+"PO-Revision-Date: 2017-01-22 17: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"
@@ -91,7 +91,7 @@ msgstr "Det ugyldige tegn er: %s"
 
 #: ../lib/application.vala:720
 msgid "Unable to open the settings dialog"
-msgstr "Kan ikke åbne indstillingsdialogen"
+msgstr "Kunne ikke åbne indstillingsdialogen"
 
 #: ../lib/application.vala:767
 msgid "translator-credits"

-- 
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 (8bb7dca -> 3422aea)

2017-01-22 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  8bb7dca   I18n: Update translation da (100%).
   new  3422aea   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-netload-plugin] 01/01: I18n: Update translation da (100%).

2017-01-22 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 85668834b70105c9f64f90dfb1eab8f5e13ea47c
Author: Anonymous 
Date:   Mon Jan 23 00:33:20 2017 +0100

I18n: Update translation da (100%).

34 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 6b745b7..b14fe91 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-05-14 18:31+0200\n"
-"PO-Revision-Date: 2017-01-16 12:27+\n"
+"PO-Revision-Date: 2017-01-22 17:58+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -22,7 +22,7 @@ msgstr ""
 
 #: ../panel-plugin/netload.c:61
 msgid "Xfce4-Netload-Plugin"
-msgstr "Xfce4-Netload-plugin"
+msgstr "Xfce4-Netload-udvidelsesmodul"
 
 #: ../panel-plugin/netload.c:64
 msgid "Unknown error."

-- 
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 (43717ce -> 7b6295c)

2017-01-22 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  43717ce   I18n: Update translation da (100%).
   new  7b6295c   I18n: Update translation da (100%).

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


Summary of changes:
 po/da.po | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-netload-plugin] branch master updated (a05d44b -> 8566883)

2017-01-22 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  a05d44b   I18n: Update translation da (100%).
   new  8566883   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-mailwatch-plugin] branch master updated (2c463cc -> fe4178a)

2017-01-22 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  2c463cc   I18n: Update translation da (100%).
   new  fe4178a   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-01-22 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 9f01edc7851eb9ec8c94f459950cbc5c14fc1566
Author: Anonymous 
Date:   Mon Jan 23 00:32:59 2017 +0100

I18n: Update translation da (100%).

38 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 7b92023..01ca67c 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-11-29 00:31+0100\n"
-"PO-Revision-Date: 2017-01-21 19:42+\n"
+"PO-Revision-Date: 2017-01-22 17:58+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -22,7 +22,7 @@ msgstr ""
 
 #: ../panel-plugin/indicator.desktop.in.in.h:1
 msgid "Indicator Plugin"
-msgstr "Indikator-plugin"
+msgstr "Indikator-udvidelsesmodul"
 
 #: ../panel-plugin/indicator.desktop.in.in.h:2 ../panel-plugin/indicator.c:181
 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-fsguard-plugin] branch master updated (c66a321 -> 14cc1ee)

2017-01-22 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  c66a321   I18n: Update translation da (100%).
   new  14cc1ee   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] branch master updated (dcf4671 -> 9f01edc)

2017-01-22 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  dcf4671   I18n: Update translation da (100%).
   new  9f01edc   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-fsguard-plugin] 01/01: I18n: Update translation da (100%).

2017-01-22 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-fsguard-plugin.

commit 14cc1ee0761d42a5e5b3ac655178a10a24d222b5
Author: Anonymous 
Date:   Mon Jan 23 00:32:53 2017 +0100

I18n: Update translation da (100%).

19 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 778d89d..d1d742f 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:00+0200\n"
-"PO-Revision-Date: 2017-01-16 10:37+\n"
+"PO-Revision-Date: 2017-01-22 21:51+\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 "Fri diskpladstjekker"
 
 #: ../panel-plugin/fsguard.c:646
 msgid "Configuration"
-msgstr "Opsætning"
+msgstr "Konfiguration"
 
 #: ../panel-plugin/fsguard.c:653
 msgid "Mount point"

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


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

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

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

commit 5bb6e7904c74f737f5895035f6f2935c755eebbf
Author: Anonymous 
Date:   Mon Jan 23 00:32:44 2017 +0100

I18n: Update translation da (100%).

19 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 8b3a613..08d57b6 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,30 +1,31 @@
-# Danish (da.po) translation for xfce4-datetime-plugin
-# Copyright (C) 2007 THE xfce4-datetime-plugin'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the xfce4-datetime-plugin 
package.
-# Jens Hyllegaard , 2007.
-# Claus Futtrup , 2008.
-# Per Kongstad , 2009.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Claus Futtrup , 2008
+# Jens Hyllegaard , 2007
+# Per Kongstad , 2009
+# scootergrisen, 2017
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-datetime-plugin 0.6.1\n"
+"Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-07-31 13:39-0500\n"
-"PO-Revision-Date: 2009-08-22 17:14+0100\n"
-"Last-Translator: Per Kongstad \n"
-"Language-Team: Danish \n"
+"POT-Creation-Date: 2013-07-03 20:55+0200\n"
+"PO-Revision-Date: 2017-01-22 21:11+\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"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: da\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Poedit-Language: Danish\n"
-"X-Poedit-Country: DENMARK\n"
-"X-Poedit-SourceCharset: utf-8\n"
 
-#: ../panel-plugin/datetime.c:82
+#: ../panel-plugin/datetime.c:87
 msgid "Invalid format"
 msgstr "Ugyldigt format"
 
-#: ../panel-plugin/datetime.c:87
+#: ../panel-plugin/datetime.c:92
 msgid "Error"
 msgstr "Fejl"
 
@@ -34,7 +35,7 @@ msgstr "Dato, derefter tid"
 
 #: ../panel-plugin/datetime-dialog.c:43
 msgid "Time, then date"
-msgstr "Tid, derefter dato"
+msgstr "Klokkeslæt, derefter dato"
 
 #: ../panel-plugin/datetime-dialog.c:44
 msgid "Date only"
@@ -42,11 +43,10 @@ msgstr "Kun dato"
 
 #: ../panel-plugin/datetime-dialog.c:45
 msgid "Time only"
-msgstr "Kun tid"
+msgstr "Kun klokkeslæt"
 
 #. placeholder
-#: ../panel-plugin/datetime-dialog.c:85
-#: ../panel-plugin/datetime-dialog.c:96
+#: ../panel-plugin/datetime-dialog.c:85 ../panel-plugin/datetime-dialog.c:96
 msgid "Custom..."
 msgstr "Tilpasset..."
 
@@ -54,66 +54,54 @@ msgstr "Tilpasset..."
 msgid "Select font"
 msgstr "Vælg skrifttype"
 
-#: ../panel-plugin/datetime-dialog.c:332
+#: ../panel-plugin/datetime-dialog.c:313
 #, c-format
 msgid "Unable to open the following url: %s"
-msgstr "Kan ikke åbne den følgende url: %s"
+msgstr "Kunne ikke åbne den følgende url: %s"
 
-#: ../panel-plugin/datetime-dialog.c:371
+#: ../panel-plugin/datetime-dialog.c:352
 msgid "Datetime"
-msgstr "Dato/tid"
+msgstr "Dato og klokkeslæt"
 
-#.
 #. * layout frame
-#.
-#: ../panel-plugin/datetime-dialog.c:391
+#: ../panel-plugin/datetime-dialog.c:372
 msgid "Layout"
 msgstr "Layout"
 
 #. Format label
 #. format label
-#: ../panel-plugin/datetime-dialog.c:405
-#: ../panel-plugin/datetime-dialog.c:467
-#: ../panel-plugin/datetime-dialog.c:570
+#: ../panel-plugin/datetime-dialog.c:386 ../panel-plugin/datetime-dialog.c:446
+#: ../panel-plugin/datetime-dialog.c:547
 msgid "Format:"
 msgstr "Format:"
 
-#.
 #. * Date frame
-#.
-#: ../panel-plugin/datetime-dialog.c:425
+#: ../panel-plugin/datetime-dialog.c:406
 msgid "Date"
 msgstr "Dato"
 
-#: ../panel-plugin/datetime-dialog.c:437
+#: ../panel-plugin/datetime-dialog.c:417
 msgid "The date will appear in a tooltip."
 msgstr "Datoen vil fremkomme i et værktøjstip."
 
 #. font label
-#: ../panel-plugin/datetime-dialog.c:450
-#: ../panel-plugin/datetime-dialog.c:553
+#: ../panel-plugin/datetime-dialog.c:429 ../panel-plugin/datetime-dialog.c:530
 msgid "Font:"
 msgstr "Skrifttype:"
 
-#.
 #. * time frame
-#.
-#: ../panel-plugin/datetime-dialog.c:528
+#: ../panel-plugin/datetime-dialog.c:507
 msgid "Time"
-msgstr "Tid"
+msgstr "Klokkeslæt"
 
-#: ../panel-plugin/datetime-dialog.c:540
+#: ../panel-plugin/datetime-dialog.c:518
 msgid "The time will appear in a tooltip."
-msgstr "Tiden vil fremkomme i et værktøjstip."
-
-#: ../panel-plugin/datetime.desktop.in.in.h:1
-msgid "Date and Time plugin with a simple calendar"
-msgstr "Dato- og tid-udvidelsesmodul med simpel 

[Xfce4-commits] [panel-plugins/xfce4-datetime-plugin] branch master updated (901246c -> 5bb6e79)

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

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

  from  901246c   I18n: Update translation ko (100%).
   new  5bb6e79   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 | 90 
 1 file changed, 39 insertions(+), 51 deletions(-)

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


[Xfce4-commits] [apps/xfce4-dict] branch master updated (8541b98 -> 2f88ef1)

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

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

  from  8541b98   I18n: Update translation da (100%).
   new  2f88ef1   I18n: Update translation da (100%).

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


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

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


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

2017-01-22 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 18aec3ca5f81e3f259248a80aee52ddd88cc4e94
Author: Anonymous 
Date:   Mon Jan 23 00:32:17 2017 +0100

I18n: Update translation da (100%).

333 translated messages.

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

diff --git a/po/da.po b/po/da.po
index df78e90..7146d36 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-01-18 18:31+0100\n"
-"PO-Revision-Date: 2017-01-21 18:38+\n"
+"PO-Revision-Date: 2017-01-22 17:54+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -256,7 +256,7 @@ msgstr "Unicode"
 
 #: ../terminal/terminal-encoding-action.c:89
 msgid "Other"
-msgstr "Andet"
+msgstr "Andre"
 
 #. action to reset to the default
 #: ../terminal/terminal-encoding-action.c:267

-- 
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-cpugraph-plugin] branch master updated (27e0cfd -> 3f93aae)

2017-01-22 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-cpugraph-plugin.

  from  27e0cfd   I18n: Update translation da (100%).
   new  3f93aae   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-cpugraph-plugin] 01/01: I18n: Update translation da (100%).

2017-01-22 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-cpugraph-plugin.

commit 3f93aae30cb7fe66ab258ca9d00052f3cb20b5d5
Author: Anonymous 
Date:   Mon Jan 23 00:32:38 2017 +0100

I18n: Update translation da (100%).

37 translated messages.

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

diff --git a/po/da.po b/po/da.po
index b291e02..373af9c 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-07-03 20:54+0200\n"
-"PO-Revision-Date: 2017-01-14 14:24+\n"
+"PO-Revision-Date: 2017-01-22 17:49+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -61,7 +61,7 @@ msgstr "Kør i terminal"
 
 #: ../panel-plugin/properties.c:104
 msgid "Use startup notification"
-msgstr "Brug opstartspåmindelser"
+msgstr "Brug opstartspåmindelse"
 
 #: ../panel-plugin/properties.c:107
 msgid "Color 1:"

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


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

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

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

commit 2f88ef15dc5dda6cf22a0716c425546e76e08e46
Author: Anonymous 
Date:   Mon Jan 23 00:32:07 2017 +0100

I18n: Update translation da (100%).

119 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 3082097..05bb832 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-11-01 06:30+0100\n"
-"PO-Revision-Date: 2017-01-20 13:14+\n"
+"PO-Revision-Date: 2017-01-22 22:01+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -195,7 +195,7 @@ msgstr "Dette er et nemt værktøj til læsehastighedsmåling 
for at hjælpe dig
 
 #: ../lib/speedreader.c:598
 msgid "_Words per Minute:"
-msgstr "_Ord per minut:"
+msgstr "_Ord pr. minut:"
 
 #: ../lib/speedreader.c:605
 msgid "_Mark Paragraphs"

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

2017-01-22 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-cddrive-plugin.

commit 8c6ddeebd3dc507dac387dd780f61aaf8ffe3459
Author: Anonymous 
Date:   Mon Jan 23 00:32:26 2017 +0100

I18n: Update translation da (100%).

84 translated messages.

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

diff --git a/po/da.po b/po/da.po
index b5efd07..c940c9b 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: 2007-06-29 12:12+0200\n"
-"PO-Revision-Date: 2017-01-21 17:52+\n"
+"PO-Revision-Date: 2017-01-22 17:43+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -192,11 +192,11 @@ msgstr "Kunne ikke lukke"
 
 #: ../panel-plugin/cddrive-error.c:45
 msgid "Mount failed"
-msgstr "Kunne ikke montere"
+msgstr "Montering fejlede"
 
 #: ../panel-plugin/cddrive-error.c:46
 msgid "Unmount failed"
-msgstr "Kunne ikke afmontere"
+msgstr "Afmontering fejlede"
 
 #: ../panel-plugin/cddrive-error.c:47
 msgid "Busy disc"

-- 
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 (dc4dc94 -> 18aec3c)

2017-01-22 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  dc4dc94   Further improve image loading by scaling it when reading 
from file
   new  18aec3c   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-clipman-plugin] branch master updated (85f1488 -> 9778d2b)

2017-01-22 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  85f1488   I18n: Update translation da (100%).
   new  9778d2b   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-cddrive-plugin] branch master updated (a9d5340 -> 8c6ddee)

2017-01-22 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-cddrive-plugin.

  from  a9d5340   I18n: Update translation da (100%).
   new  8c6ddee   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-clipman-plugin] 01/01: I18n: Update translation da (100%).

2017-01-22 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 9778d2b3515b5b56eb5421b5f511d128289484ee
Author: Anonymous 
Date:   Mon Jan 23 00:32:31 2017 +0100

I18n: Update translation da (100%).

72 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 9ff9e49..b0c5568 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-01-21 19:41+\n"
+"PO-Revision-Date: 2017-01-22 17: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"
@@ -347,4 +347,4 @@ msgstr "Jens Hyllegaard\nPer Kongstad\n\nDansk-gruppen 
\
 
 #: ../panel-plugin/plugin.c:343
 msgid "Unable to open the settings dialog"
-msgstr "Kan ikke åbne indstillingsdialogen"
+msgstr "Kunne ikke åbne indstillingsdialogen"

-- 
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 (8a415dd -> c80f1fd)

2017-01-22 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  8a415dd   I18n: Update translation da (100%).
   new  c80f1fd   I18n: Update translation da (100%).

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


Summary of changes:
 po/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [xfce/xfce4-session] branch master updated (29f8393 -> 11cde6d)

2017-01-22 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  29f8393   I18n: Update translation da (100%).
   new  f1ab0a5   I18n: Update translation am (71%).
   new  11cde6d   I18n: Update translation da (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/am.po | 486 ---
 po/da.po |   4 +-
 2 files changed, 184 insertions(+), 306 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-01-22 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 568628306a418ccd166ca4271d4eacb7ddae13fb
Author: Anonymous 
Date:   Mon Jan 23 00:31:19 2017 +0100

I18n: Update translation da (100%).

202 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 852856b..7d63710 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: 2016-02-26 18:30+0100\n"
-"PO-Revision-Date: 2017-01-21 17:57+\n"
+"PO-Revision-Date: 2017-01-22 21:06+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-power-manager/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -924,11 +924,11 @@ msgstr "Præsentations_tilstand"
 #. Power manager settings
 #: ../panel-plugins/power-manager-plugin/power-manager-button.c:1595
 msgid "_Power manager settings..."
-msgstr "_Strømstyringsindstillinger ..."
+msgstr "_Strømstyringsindstillinger..."
 
 #: 
../panel-plugins/power-manager-plugin/xfce/power-manager-plugin.desktop.in.in.h:1
 msgid "Power Manager Plugin"
-msgstr "Modul til strømstyring"
+msgstr "Strømstyringsudvidelsesmodul"
 
 #: 
../panel-plugins/power-manager-plugin/xfce/power-manager-plugin.desktop.in.in.h:2
 msgid ""
@@ -966,7 +966,7 @@ msgid ""
 " icon-themes by reducing the device icons and using standard names for them."
 " It also features updated translations. The panel plugin has been renamed to"
 " Power Manager Plugin."
-msgstr "Denne udviklingsudgivelse rummer hovedsageligt fejlrettelser, og 
introducerer bedre understøttelse af ikontemaer gennem reduktion af 
enhedsikoner og brug af standardiserede navne for disse. Den indeholder også 
opdaterede oversættelser. Panelmodulet er blevet omdøbt til Modul til 
strømstyring."
+msgstr "Denne udviklingsudgivelse rummer hovedsageligt fejlrettelser, og 
introducerer bedre understøttelse af ikontemaer gennem reduktion af 
enhedsikoner og brug af standardiserede navne for disse. Den indeholder også 
opdaterede oversættelser. Panelmodulet er blevet omdøbt til 
Strømstyringsudvidelsesmodul."
 
 #: ../data/appdata/xfce4-power-manager.appdata.xml.in.h:5
 msgid ""
@@ -975,7 +975,7 @@ msgid ""
 "dropped) brightness panel-plugin. A new popup notification was added to "
 "account for keyboard brightness changes and the Power Manager now also "
 "controls the X11 blank times."
-msgstr "Denne udgivelse løser problemer med hvile- og dvaletilstanden. Den 
forbedrer også panel-plugin'et ved at indbygge (det ikke længere vedligeholdte) 
lysstyrke-plugin. En ny popup er tilføjet til at redegøre for ændringer i 
lysstyrke på oplyste tastaturer, og Power Manager styrer nu også, hvornår X11 
laver blank skærm."
+msgstr "Denne udgivelse løser problemer med hvile- og dvaletilstanden. Den 
forbedrer også panel-udvidelsesmodulet ved at indbygge (det ikke længere 
vedligeholdte) lysstyrke-udvidelsesmodul. En ny popup er tilføjet til at 
redegøre for ændringer i lysstyrke på oplyste tastaturer, og Power Manager 
styrer nu også, hvornår X11 laver blank skærm."
 
 #: ../data/appdata/xfce4-power-manager.appdata.xml.in.h:6
 msgid ""
@@ -985,7 +985,7 @@ msgid ""
 "battery and device charge levels replaces the trayicon. The settings dialog "
 "has been completely restructured for better oversight and many open bugs "
 "have been fixed and translations have been updated."
-msgstr "Denne udgivelse introducerer en række nye funktioner, deriblandt 
hvile/dvale uden systemd og UPower>=0.99. Dette giver mulighed for individuel 
kontrol over systemd-inhibition, et nyt panelplugin til at overvåge batteriets 
og enhedernes strømniveau erstatter panelikonet. Dialogen for Indstillinger er 
blevet omstruktureret totalt for bedre overblik, mange fejl er blevet rettet og 
oversættelser er blevet opdateret."
+msgstr "Denne udgivelse introducerer en række nye funktioner, deriblandt 
hvile/dvale uden systemd og UPower>=0.99. Dette giver mulighed for individuel 
kontrol over systemd-inhibition, et nyt panel-udvidelsesmodul til at overvåge 
batteriets og enhedernes strømniveau erstatter panelikonet. Dialogen for 
Indstillinger er blevet omstruktureret totalt for bedre overblik, mange fejl er 
blevet rettet og oversættelser er blevet opdateret."
 
 #: ../data/appdata/xfce4-power-manager.appdata.xml.in.h:7
 msgid ""

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


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

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

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

commit 6e341eb66039c3bd90cdccd9cb22cdaf04a23b00
Author: samson 
Date:   Mon Jan 23 00:31:45 2017 +0100

I18n: Update translation am (58%).

605 translated messages, 425 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/am.po | 142 +++
 1 file changed, 71 insertions(+), 71 deletions(-)

diff --git a/po/am.po b/po/am.po
index 3ecd5f5..9b6943f 100644
--- a/po/am.po
+++ b/po/am.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# samson , 2016
+# samson , 2016-2017
 # Tegegne Tefera , 2007
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-09-23 12:30+0200\n"
-"PO-Revision-Date: 2016-02-26 13:12+\n"
+"PO-Revision-Date: 2017-01-22 22:08+\n"
 "Last-Translator: samson \n"
 "Language-Team: Amharic 
(http://www.transifex.com/xfce/xfce-apps/language/am/)\n"
 "MIME-Version: 1.0\n"
@@ -33,7 +33,7 @@ msgstr "ድርብ"
 
 #: ../globaltime/globaltime.c:58
 msgid "low"
-msgstr ""
+msgstr "አነስተኛ"
 
 #: ../globaltime/globaltime.c:100
 msgid "Raising GlobalTime window..."
@@ -53,7 +53,7 @@ msgstr "%s\nይጫኑ ሰአት ለማስተካከል"
 
 #: ../globaltime/globaltime.c:386
 msgid "Localtime"
-msgstr ""
+msgstr "የ አካባቢ ሰአት"
 
 #: ../globaltime/globaltime.c:464
 msgid ""
@@ -63,7 +63,7 @@ msgstr ""
 
 #: ../globaltime/globaltime.c:480
 msgid "adjust to change hour"
-msgstr ""
+msgstr "ሰአት ለማስተካከል መቀየሪያ"
 
 #: ../globaltime/globaltime.c:496
 msgid ""
@@ -72,7 +72,7 @@ msgstr ""
 
 #: ../globaltime/globaltime.c:548
 msgid "Global Time"
-msgstr ""
+msgstr "አለም አቀፍ ሰአት"
 
 #: ../globaltime/gt_prefs.c:265 ../globaltime/gt_prefs.c:266
 msgid "NEW"
@@ -88,11 +88,11 @@ msgstr ""
 
 #: ../globaltime/gt_prefs.c:516
 msgid "update this clock"
-msgstr ""
+msgstr "ይህን ሰአት ማስተካከያ"
 
 #: ../globaltime/gt_prefs.c:521 ../globaltime/gt_prefs.c:1034
 msgid "add new empty clock"
-msgstr ""
+msgstr "አዲስ ባዶ ሰአት መጨመሪያ"
 
 #: ../globaltime/gt_prefs.c:526
 msgid "add new clock using this clock as model"
@@ -100,23 +100,23 @@ msgstr ""
 
 #: ../globaltime/gt_prefs.c:531
 msgid "delete this clock"
-msgstr ""
+msgstr "ይህን ሰአት ማጥፊያ"
 
 #: ../globaltime/gt_prefs.c:539
 msgid "move this clock first"
-msgstr ""
+msgstr "ይህን ሰአት ማንቀሳቀሻ"
 
 #: ../globaltime/gt_prefs.c:544
 msgid "move this clock left"
-msgstr ""
+msgstr "ይህን ሰአት ወደ ግራ ማንቀሳቀሻ"
 
 #: ../globaltime/gt_prefs.c:549
 msgid "move this clock right"
-msgstr ""
+msgstr "ይህን ሰአት ወደ ቀኝ ማንቀሳቀሻ"
 
 #: ../globaltime/gt_prefs.c:554
 msgid "move this clock last"
-msgstr ""
+msgstr "ይህን ሰአት በ መጨረሻ ማንቀሳቀሻ"
 
 #: ../globaltime/gt_prefs.c:562
 msgid "set the timezone of this clock to be local timezone"
@@ -124,41 +124,41 @@ msgstr ""
 
 #: ../globaltime/gt_prefs.c:568 ../globaltime/gt_prefs.c:1042
 msgid "close window and exit"
-msgstr ""
+msgstr "መስኮቱን መዝጊያ እና መውጫ"
 
 #: ../globaltime/gt_prefs.c:590
 msgid "Globaltime preferences "
-msgstr ""
+msgstr "የ አለም አቀፍ ሰአት ምርጫዎች"
 
 #. ---HEADING---
 #: ../globaltime/gt_prefs.c:603
 msgid "Clock Parameters"
-msgstr ""
+msgstr "የ ሰአት ደንብ"
 
 #: ../globaltime/gt_prefs.c:607
 msgid "Name of the clock:"
-msgstr ""
+msgstr "የ ሰአት ስም:"
 
 #: ../globaltime/gt_prefs.c:613
 msgid "enter name of clock"
-msgstr ""
+msgstr "የ ሰአት ስም ያስገቡ:"
 
 #: ../globaltime/gt_prefs.c:616
 msgid "Timezone of the clock:"
-msgstr ""
+msgstr "የ ሰአት ክልል ለ ሰአቱ:"
 
 #: ../globaltime/gt_prefs.c:643
 msgid "Text Formatting"
-msgstr ""
+msgstr "የ ጽሁፍ አቀራረብ"
 
 #. background-
 #: ../globaltime/gt_prefs.c:649 ../globaltime/gt_prefs.c:856
 msgid "Background color:"
-msgstr ""
+msgstr "የ መደብ ቀለም:"
 
 #: ../globaltime/gt_prefs.c:656
 msgid "Click to change background colour for clock"
-msgstr ""
+msgstr "ይጫኑ የ ሰአት መደብ ቀለም ለ መቀየር"
 
 #: ../globaltime/gt_prefs.c:665 ../globaltime/gt_prefs.c:697
 #: ../globaltime/gt_prefs.c:729 ../globaltime/gt_prefs.c:762
@@ -166,7 +166,7 @@ msgstr ""
 #: ../globaltime/gt_prefs.c:872 ../globaltime/gt_prefs.c:905
 #: ../globaltime/gt_prefs.c:938 ../globaltime/gt_prefs.c:972
 msgid "Use default"
-msgstr ""
+msgstr "ነባር መጠቀሚያ"
 
 #: ../globaltime/gt_prefs.c:670 ../globaltime/gt_prefs.c:702
 #: ../globaltime/gt_prefs.c:735 ../globaltime/gt_prefs.c:768
@@ -177,43 +177,43 @@ msgstr ""
 #. foreground-
 #: ../globaltime/gt_prefs.c:681 ../globaltime/gt_prefs.c:889
 msgid "Foreground (=text) color:"
-msgstr ""
+msgstr "የ ፊት ለ ፊት (=ጽሁፍ) ቀለም:"
 
 #: ../globaltime/gt_prefs.c:688
 msgid "Click to change foreground colour for clock"
-msgstr ""
+msgstr "ይጫኑ የ ሰአት መደብ ቀለም ለ መቀየር"
 
 #. 

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

2017-01-22 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-panel.

commit 5b5d82ed30917397842f4ef0d99cd33fd444e5ad
Author: Anonymous 
Date:   Mon Jan 23 00:31:11 2017 +0100

I18n: Update translation da (100%).

387 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 10db840..e1da33e 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 23:10+0200\n"
-"PO-Revision-Date: 2017-01-21 19:56+\n"
+"PO-Revision-Date: 2017-01-22 21:58+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-panel/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -662,7 +662,7 @@ msgstr "Panelindstilling er blevet opdateret."
 #: ../plugins/actions/actions-dialog.glade.h:1
 #: ../plugins/actions/actions.desktop.in.h:1
 msgid "Action Buttons"
-msgstr "Hændelsesknapper"
+msgstr "Handlingsknapper"
 
 #: ../plugins/actions/actions-dialog.glade.h:2
 msgid "Appeara_nce:"
@@ -674,7 +674,7 @@ msgstr "Vend knappernes _retning"
 
 #: ../plugins/actions/actions-dialog.glade.h:4
 msgid "_Show confirmation dialog"
-msgstr "_Vis confirmationsdialog"
+msgstr "_Vis bekræftelsesdialog"
 
 #: ../plugins/actions/actions-dialog.glade.h:5
 msgid ""
@@ -687,7 +687,7 @@ msgstr "Synligt"
 
 #: ../plugins/actions/actions-dialog.glade.h:8
 msgid "Action"
-msgstr "Hændelse"
+msgstr "Handling"
 
 #: ../plugins/actions/actions-dialog.glade.h:9
 msgid "_Actions"
@@ -1749,7 +1749,7 @@ msgstr "Knaplayout:"
 
 #: ../plugins/windowmenu/windowmenu-dialog.glade.h:3
 msgid "Show workspace a_ctions"
-msgstr "Vis arb_ejdsområdehændelser"
+msgstr "Vis arb_ejdsområdehandlinger"
 
 #: ../plugins/windowmenu/windowmenu-dialog.glade.h:4
 msgid "Show workspace _names"

-- 
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-01-22 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 c80f1fd030c4ed80f2e115376ea24fd2e00fa5e7
Author: Anonymous 
Date:   Mon Jan 23 00:31:33 2017 +0100

I18n: Update translation da (100%).

208 translated messages.

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

diff --git a/po/da.po b/po/da.po
index ec6af21..13cacec 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-01-21 19:46+\n"
+"PO-Revision-Date: 2017-01-22 21:45+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-session/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -419,7 +419,7 @@ msgstr "Logud"
 
 #: ../xfce4-session/xfsm-chooser.c:200
 msgid "Cancel the login attempt and return to the login screen."
-msgstr "Afbryd loginforsøget og returnér til logindskærmen."
+msgstr "Afbryd loginforsøget og vend tilbage til login-skærmen."
 
 #. "New" button
 #: ../xfce4-session/xfsm-chooser.c:207
@@ -772,7 +772,7 @@ msgstr "Tilpas skrivebordsopstart- og opstartsbilled-skærm"
 
 #: ../settings/xfce4-session-settings.glade.h:3
 msgid "_Display chooser on login"
-msgstr "Vis _vælger ved logind"
+msgstr "Vis _vælger ved login"
 
 #: ../settings/xfce4-session-settings.glade.h:4
 msgid "Display the session chooser every time Xfce starts"

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


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

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

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

commit fab9e558c488db03e152f2851b7f679e39aa7a0e
Author: Anonymous 
Date:   Mon Jan 23 00:32:00 2017 +0100

I18n: Update translation da (100%).

302 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 8f4d44b..7f1ef2c 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-07-20 06:30+0200\n"
-"PO-Revision-Date: 2017-01-21 18:03+\n"
+"PO-Revision-Date: 2017-01-22 17:46+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -879,11 +879,11 @@ msgstr "Endnu et grafisk miljø til cd-brænding"
 
 #: ../xfburn/xfburn-notebook-tab.c:108
 msgid "Label"
-msgstr "Mærkat"
+msgstr "Etiket"
 
 #: ../xfburn/xfburn-notebook-tab.c:108
 msgid "The text of the label"
-msgstr "Mærkatets tekst"
+msgstr "Etikettens tekst"
 
 #: ../xfburn/xfburn-notebook-tab.c:111
 msgid "Show close button"

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


[Xfce4-commits] [apps/xfburn] branch master updated (0ecb54c -> fab9e55)

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

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

  from  0ecb54c   I18n: Update translation da (100%).
   new  fab9e55   I18n: Update translation da (100%).

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


Summary of changes:
 po/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [apps/orage] branch master updated (c167a49 -> 6e341eb)

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

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

  from  c167a49   I18n: Update translation da (100%).
   new  6e341eb   I18n: Update translation am (58%).

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/am.po | 142 +++
 1 file changed, 71 insertions(+), 71 deletions(-)

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


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

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

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

commit 2cfba35696ceb6f59cc2f4cf64397a6ca391fb48
Author: Anonymous 
Date:   Mon Jan 23 00:31:53 2017 +0100

I18n: Update translation da (100%).

195 translated messages.

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

diff --git a/po/da.po b/po/da.po
index e0961ed..6cfbc6d 100644
--- a/po/da.po
+++ b/po/da.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
 "POT-Creation-Date: 2016-10-07 18:30+0200\n"
-"PO-Revision-Date: 2017-01-21 18:37+\n"
+"PO-Revision-Date: 2017-01-22 17:35+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -621,7 +621,7 @@ msgstr "Vis tekst"
 
 #: ../src/icon_bar.c:415 ../src/icon_bar.c:416
 msgid "Active item fill color"
-msgstr "Fyldfarve for aktive element"
+msgstr "Udfyldningsfarve for aktive element"
 
 #: ../src/icon_bar.c:422 ../src/icon_bar.c:423
 msgid "Active item border color"

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

2017-01-22 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 f1ab0a5147e6803681e45ee4ecf5654bb66f1dea
Author: samson 
Date:   Mon Jan 23 00:31:26 2017 +0100

I18n: Update translation am (71%).

125 translated messages, 50 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/am.po | 486 ---
 1 file changed, 182 insertions(+), 304 deletions(-)

diff --git a/po/am.po b/po/am.po
index b1c9bcf..3cd769b 100644
--- a/po/am.po
+++ b/po/am.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# samson , 2016
+# samson , 2016-2017
 # Tegegne Tefera , 2007
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-session\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-08-28 18:30+0200\n"
-"PO-Revision-Date: 2016-02-26 17:03+\n"
+"POT-Creation-Date: 2016-06-28 18:30+0200\n"
+"PO-Revision-Date: 2017-01-22 21:03+\n"
 "Last-Translator: samson \n"
 "Language-Team: Amharic 
(http://www.transifex.com/xfce/xfce4-session/language/am/)\n"
 "MIME-Version: 1.0\n"
@@ -35,6 +35,17 @@ msgstr "ምንም መግለጫ አልተሰጠም"
 msgid "Choose theme file to install..."
 msgstr "ለመትከል የጭብጥ ፋይልን ምረጥ..."
 
+#: ../engines/balou/config.c:327 ../engines/balou/config.c:495
+#: ../settings/session-editor.c:173 ../settings/session-editor.c:257
+#: ../xfce4-session/xfsm-logout-dialog.c:209
+#: ../xfce4-session/xfsm-splash-screen.c:213
+msgid "_Cancel"
+msgstr "_መሰረዣ"
+
+#: ../engines/balou/config.c:328
+msgid "_Open"
+msgstr "_መክፈቻ"
+
 #: ../engines/balou/config.c:336
 #, c-format
 msgid "Unable to install splash theme from file \"%s\""
@@ -48,96 +59,106 @@ msgstr ""
 msgid "Please check that the file is a valid splash theme archive."
 msgstr ""
 
-#: ../engines/balou/config.c:402
+#: ../engines/balou/config.c:344 ../engines/balou/config.c:949
+#: ../engines/simple/simple.c:338 ../settings/session-editor.c:132
+#: ../settings/session-editor.c:289 ../xfce4-session/xfsm-manager.c:1223
+msgid "_Close"
+msgstr "_መዝጊያ"
+
+#: ../engines/balou/config.c:403
 #, c-format
 msgid "Unable to remove splash theme \"%s\" from directory %s."
 msgstr "የርችት ጭብጥ \"%s\"ን ከ %s ዶሴ መሰረዝ አልተቻለም።"
 
-#: ../engines/balou/config.c:491
+#: ../engines/balou/config.c:492
 msgid "Choose theme filename..."
 msgstr "የጭብጥ ፋይልን ምረጥ..."
 
+#: ../engines/balou/config.c:496
+msgid "_Save"
+msgstr "_ማስቀመጫ"
+
 #: ../engines/balou/config.c:624
 msgid "_Install new theme"
 msgstr "አዲስ ጭብጥ ምረጥ _I"
 
-#: ../engines/balou/config.c:633
+#: ../engines/balou/config.c:631
 msgid "_Remove theme"
 msgstr "ጭብጥን ሰርዝ _R"
 
-#: ../engines/balou/config.c:650
+#: ../engines/balou/config.c:646
 msgid "_Export theme"
 msgstr "ጭብጥን ላክ _E"
 
-#: ../engines/balou/config.c:866
+#: ../engines/balou/config.c:860
 msgid "Balou theme"
 msgstr "ባለው ጭብ"
 
-#: ../engines/balou/config.c:951
+#: ../engines/balou/config.c:945
 msgid "Configure Balou..."
 msgstr "ባለውን አሰናዳ"
 
-#: ../engines/balou/config.c:994
+#: ../engines/balou/config.c:987
 msgid "Balou"
 msgstr "ባለው"
 
-#: ../engines/balou/config.c:995
+#: ../engines/balou/config.c:988
 msgid "Balou Splash Engine"
 msgstr "ባለው የርጫታ ሞተር"
 
-#: ../engines/mice/mice.c:373
+#: ../engines/mice/mice.c:385
 msgid "Mice"
 msgstr "አይጥ"
 
-#: ../engines/mice/mice.c:374
+#: ../engines/mice/mice.c:386
 msgid "Mice Splash Engine"
 msgstr "አይጥ የርጫታ ሞተር"
 
-#: ../engines/simple/simple.c:346
+#: ../engines/simple/simple.c:334
 msgid "Configure Simple..."
 msgstr "ቀላልን አሰናዳ..."
 
-#: ../engines/simple/simple.c:357
+#: ../engines/simple/simple.c:344
 msgid "Font"
 msgstr "የፊደል ቅርጽ"
 
-#: ../engines/simple/simple.c:367
+#: ../engines/simple/simple.c:354
 msgid "Colors"
 msgstr "ቀለሞች"
 
-#: ../engines/simple/simple.c:375
+#: ../engines/simple/simple.c:362
 msgid "Background color:"
 msgstr "የ መደብ ቀለም:"
 
-#: ../engines/simple/simple.c:388
+#: ../engines/simple/simple.c:373
 msgid "Text color:"
 msgstr "የ ጽሁፍ ቀለም:"
 
-#: ../engines/simple/simple.c:401
+#: ../engines/simple/simple.c:385
 msgid "Image"
 msgstr "ምስል"
 
-#: ../engines/simple/simple.c:409
+#: ../engines/simple/simple.c:393
 msgid "Use custom image"
 msgstr "የ ምስል ማስተካከያ ይጠቀሙ"
 
-#: ../engines/simple/simple.c:413
+#: ../engines/simple/simple.c:397
 msgid "Choose image..."
 msgstr "ምስል ይምረጡ..."
 
-#: ../engines/simple/simple.c:419
+#: ../engines/simple/simple.c:403
 msgid "Images"
 msgstr "ምስሎች"
 
-#: ../engines/simple/simple.c:425
+#: ../engines/simple/simple.c:409
 msgid "All files"
 msgstr "ሁሉንም ፋይሎች"
 
-#: ../engines/simple/simple.c:497
+#: ../engines/simple/simple.c:480
 msgid "Simple"
 msgstr "ቀላል"
 
-#: ../engines/simple/simple.c:498
+#: ../engines/simple/simple.c:481
 msgid "Simple Splash Engine"
 msgstr "ቀላል የርችት ሞተር"
 
@@ -149,49 +170,49 @@ msgstr "መመልከቻ ማዳኛ"

[Xfce4-commits] [apps/ristretto] branch master updated (73026fa -> 2cfba35)

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

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

  from  73026fa   I18n: Update translation da (100%).
   new  2cfba35   I18n: Update translation da (100%).

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


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

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


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

2017-01-22 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 11cde6d9648a33589de8200acc2b7c9eee05478b
Author: Anonymous 
Date:   Mon Jan 23 00:31:26 2017 +0100

I18n: Update translation da (100%).

175 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 9be8cac..2e9692e 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: 2016-06-28 18:30+0200\n"
-"PO-Revision-Date: 2017-01-21 19:46+\n"
+"PO-Revision-Date: 2017-01-22 21:45+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-session/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -449,7 +449,7 @@ msgstr "Log ud"
 
 #: ../xfce4-session/xfsm-chooser.c:203
 msgid "Cancel the login attempt and return to the login screen."
-msgstr "Afbryd loginforsøget og returnér til logindskærmen."
+msgstr "Afbryd loginforsøget og vend tilbage til login-skærmen."
 
 #. "New" button
 #: ../xfce4-session/xfsm-chooser.c:210

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


[Xfce4-commits] [xfce/xfce4-panel] branch xfce-4.10 updated (cc4f189 -> 5b5d82e)

2017-01-22 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-panel.

  from  cc4f189   I18n: Update translation da (100%).
   new  5b5d82e   I18n: Update translation da (100%).

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


Summary of changes:
 po/da.po | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

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


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

2017-01-22 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  ce064b3   I18n: Update translation da (100%).
   new  5686283   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 | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

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


[Xfce4-commits] [xfce/garcon] branch master updated (9ff7a32 -> 3635481)

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

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

  from  9ff7a32   I18n: Update translation ro (100%).
   new  3635481   I18n: Update translation am (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/am.po | 26 ++
 1 file changed, 18 insertions(+), 8 deletions(-)

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


[Xfce4-commits] [xfce/exo] branch master updated (fbf03b0 -> c5af7ca)

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

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

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

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

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

commit 8409994ae1766084be17322a348aa570b81ef26c
Author: Anonymous 
Date:   Mon Jan 23 00:30:45 2017 +0100

I18n: Update translation da (100%).

320 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 0b24f47..d81e96c 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Thunar Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-02-17 00:30+0100\n"
-"PO-Revision-Date: 2017-01-21 18:24+\n"
+"PO-Revision-Date: 2017-01-22 18:03+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/thunar-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -652,7 +652,7 @@ msgstr "Kloning afsluttet"
 
 #: ../tvp-git-helper/tgh-clone.c:126
 msgid "Cloning ..."
-msgstr "Kloning ..."
+msgstr "Kloning..."
 
 #: ../tvp-git-helper/tgh-common.c:82 ../tvp-svn-helper/tsh-add.c:76
 #: ../tvp-svn-helper/tsh-add.c:94 ../tvp-svn-helper/tsh-checkout.c:73
@@ -728,7 +728,7 @@ msgstr "Flyt til"
 
 #: ../tvp-git-helper/tgh-move.c:162
 msgid "Move ..."
-msgstr "Flyt ..."
+msgstr "Flyt..."
 
 #: ../tvp-git-helper/tgh-notify-dialog.c:86
 #: ../tvp-svn-helper/tsh-log-dialog.c:184
@@ -746,7 +746,7 @@ msgstr "Nulstil afsluttet"
 
 #: ../tvp-git-helper/tgh-reset.c:154
 msgid "Reset ..."
-msgstr "Nulstil ..."
+msgstr "Nulstil..."
 
 #: ../tvp-git-helper/tgh-stash-dialog.c:173
 msgid "Description"
@@ -955,7 +955,7 @@ msgstr "Oprydning afsluttet"
 
 #: ../tvp-svn-helper/tsh-cleanup.c:97
 msgid "Cleaning up ..."
-msgstr "Rydder op ..."
+msgstr "Rydder op..."
 
 #: ../tvp-svn-helper/tsh-commit.c:211 ../tvp-svn-helper/tsh-common.c:823
 #: ../tvp-svn-helper/tsh-common.c:1089 ../tvp-svn-helper/tsh-copy.c:107
@@ -1344,7 +1344,7 @@ msgstr "Vis kopier som tilføjelser"
 
 #: ../tvp-svn-helper/tsh-diff-dialog.c:369
 msgid "Loading..."
-msgstr "Indlæser ..."
+msgstr "Indlæser..."
 
 #: ../tvp-svn-helper/tsh-file-dialog.c:59
 msgid "_Certificate:"
@@ -1431,7 +1431,7 @@ msgstr "Adresseskift afsluttet"
 
 #: ../tvp-svn-helper/tsh-relocate.c:139
 msgid "Relocating ..."
-msgstr "Skifter adresse ..."
+msgstr "Skifter adresse..."
 
 #: ../tvp-svn-helper/tsh-relocate-dialog.c:87
 msgid "_From:"

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


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

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

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

commit c5af7caaaf1fee1c43d1b0c28644725fa010615f
Author: Anonymous 
Date:   Mon Jan 23 00:30:02 2017 +0100

I18n: Update translation da (100%).

292 translated messages.

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

diff --git a/po/da.po b/po/da.po
index be1ba3c..7bc8552 100644
--- a/po/da.po
+++ b/po/da.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Exo\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-07-12 06:30+0200\n"
-"PO-Revision-Date: 2017-01-21 19:29+\n"
+"PO-Revision-Date: 2017-01-22 21:31+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/exo/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -99,7 +99,7 @@ msgstr "Modelkolonne som bliver brugt til at hente teksten 
fra"
 
 #: ../exo/exo-icon-bar.c:323
 msgid "Icon Bar Model"
-msgstr "Model for ikonbjælke"
+msgstr "Ikonbjælkemodel"
 
 #: ../exo/exo-icon-bar.c:324
 msgid "Model for the icon bar"
@@ -215,7 +215,7 @@ msgstr "Vælg _ikon fra:"
 #. search filter
 #: ../exo/exo-icon-chooser-dialog.c:246
 msgid "_Search icon:"
-msgstr "_Søgeikon:"
+msgstr "_Søg efter ikon:"
 
 #: ../exo/exo-icon-chooser-dialog.c:266
 msgid "Clear search field"

-- 
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-01-22 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 2e08787ddb1c112405514a20d254cdb02283d950
Author: Anonymous 
Date:   Mon Jan 23 00:30:53 2017 +0100

I18n: Update translation da (100%).

681 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 84d56b1..3b1c717 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-01-21 19:57+\n"
+"PO-Revision-Date: 2017-01-22 21:50+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/thunar/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -1252,7 +1252,7 @@ msgstr "Skriver data til enhed"
 msgid ""
 "There is data that needs to be written to the device \"%s\" before it can be"
 " removed. Please do not remove the media or disconnect the drive"
-msgstr "Der er data som skal skrives til enheden \"%s\" før det kan fjernes. 
Venligst undlad at fjerne mediet eller afbryde drevet"
+msgstr "Der er data som skal skrives til enheden \"%s\" før den kan fjernes. 
Undlad venligst at fjerne mediet eller afbryde drevet"
 
 #: ../thunar/thunar-notify.c:242
 msgid "Ejecting device"
@@ -2029,7 +2029,7 @@ msgstr "Vælg alle filer der passer til mønster"
 
 #: ../thunar/thunar-standard-view.c:368
 msgid "Du_plicate"
-msgstr "Du_plikat"
+msgstr "Du_plikér"
 
 #: ../thunar/thunar-standard-view.c:369 ../thunar/thunar-standard-view.c:3737
 msgid "Ma_ke Link"
@@ -2421,7 +2421,7 @@ msgstr "Moderne tilgang med knapper for mapper"
 
 #: ../thunar/thunar-window.c:331
 msgid "_Toolbar Style"
-msgstr "_Værktøjslinjestil"
+msgstr "_Værktøjsbjælkestil"
 
 #: ../thunar/thunar-window.c:331
 msgid "Traditional approach with location bar and navigation buttons"
@@ -3282,7 +3282,7 @@ msgstr "Eksempel på en tilpasset handling"
 
 #: ../plugins/thunar-wallpaper/twp-provider.c:173
 msgid "Set as wallpaper"
-msgstr "Sæt som tapet"
+msgstr "Brug som skrivebordstapet"
 
 #: ../Thunar.desktop.in.in.h:1
 msgid "Thunar File Manager"

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


[Xfce4-commits] [thunar-plugins/thunar-vcs-plugin] branch master updated (0dad429 -> 8409994)

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

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

  from  0dad429   I18n: Update translation da (100%).
   new  8409994   I18n: Update translation da (100%).

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


Summary of changes:
 po/da.po | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

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


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

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

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

commit 82bb84cf29100c96f88927063cb33c3d9e45d556
Author: Anonymous 
Date:   Mon Jan 23 00:31:03 2017 +0100

I18n: Update translation da (100%).

395 translated messages.

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

diff --git a/po/da.po b/po/da.po
index da5f27f..9a0502e 100644
--- a/po/da.po
+++ b/po/da.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-09-27 18:30+0200\n"
-"PO-Revision-Date: 2017-01-21 19:55+\n"
+"PO-Revision-Date: 2017-01-22 21:58+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-panel/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -677,7 +677,7 @@ msgstr "Panelindstilling er blevet opdateret."
 #: ../plugins/actions/actions-dialog.glade.h:1
 #: ../plugins/actions/actions.desktop.in.in.h:1
 msgid "Action Buttons"
-msgstr "Hændelsesknapper"
+msgstr "Handlingsknapper"
 
 #: ../plugins/actions/actions-dialog.glade.h:2
 msgid "Appeara_nce:"
@@ -689,7 +689,7 @@ msgstr "Vend knappernes _retning"
 
 #: ../plugins/actions/actions-dialog.glade.h:4
 msgid "_Show confirmation dialog"
-msgstr "_Vis confirmationsdialog"
+msgstr "_Vis bekræftelsesdialog"
 
 #: ../plugins/actions/actions-dialog.glade.h:5
 msgid ""
@@ -702,7 +702,7 @@ msgstr "Synligt"
 
 #: ../plugins/actions/actions-dialog.glade.h:8
 msgid "Action"
-msgstr "Hændelse"
+msgstr "Handling"
 
 #: ../plugins/actions/actions-dialog.glade.h:9
 msgid "_Actions"
@@ -1783,7 +1783,7 @@ msgstr "Knaplayout:"
 
 #: ../plugins/windowmenu/windowmenu-dialog.glade.h:3
 msgid "Show workspace a_ctions"
-msgstr "Vis arb_ejdsområdehændelser"
+msgstr "Vis arb_ejdsområdehandlinger"
 
 #: ../plugins/windowmenu/windowmenu-dialog.glade.h:4
 msgid "Show workspace _names"

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


[Xfce4-commits] [xfce/exo] branch xfce-4.10 updated (d255b73 -> beb75dd)

2017-01-22 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/exo.

  from  d255b73   I18n: Update translation da (100%).
   new  beb75dd   I18n: Update translation da (100%).

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


Summary of changes:
 po/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [xfce/thunar] branch xfce-4.10 updated (b5e444e -> 2e08787)

2017-01-22 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  b5e444e   I18n: Update translation da (100%).
   new  2e08787   I18n: Update translation da (100%).

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


Summary of changes:
 po/da.po | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

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


[Xfce4-commits] [xfce/xfce4-panel] branch master updated (971ea51 -> 82bb84c)

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

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

  from  971ea51   I18n: Update translation da (100%).
   new  82bb84c   I18n: Update translation da (100%).

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


Summary of changes:
 po/da.po | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

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


[Xfce4-commits] [xfce/thunar] branch master updated (f09e5c4 -> 55bc32a)

2017-01-22 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  f09e5c4   I18n: Add new translation fa_IR (55%).
   new  b0e2e80   I18n: Update translation am (52%).
   new  55bc32a   I18n: Update translation da (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/am.po | 1939 +++---
 po/da.po |   10 +-
 2 files changed, 975 insertions(+), 974 deletions(-)

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


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

2017-01-22 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 55bc32aa242a036295cd7442f46ee38c908fcc0d
Author: Anonymous 
Date:   Mon Jan 23 00:30:35 2017 +0100

I18n: Update translation da (100%).

738 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 2fdc33c..5caace8 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: 2015-02-19 18:30+0100\n"
-"PO-Revision-Date: 2017-01-21 19:57+\n"
+"PO-Revision-Date: 2017-01-22 21:50+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/thunar/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -1362,7 +1362,7 @@ msgstr "Skriver data til enhed"
 msgid ""
 "There is data that needs to be written to the device \"%s\" before it can be"
 " removed. Please do not remove the media or disconnect the drive"
-msgstr "Der er data som skal skrives til enheden \"%s\" før det kan fjernes. 
Undlad venligst at fjerne mediet eller afbryde drevet"
+msgstr "Der er data som skal skrives til enheden \"%s\" før den kan fjernes. 
Undlad venligst at fjerne mediet eller afbryde drevet"
 
 #: ../thunar/thunar-notify.c:208
 msgid "Ejecting device"
@@ -2240,7 +2240,7 @@ msgstr "Vælg alle de elementer som ikke er valgte"
 
 #: ../thunar/thunar-standard-view.c:407
 msgid "Du_plicate"
-msgstr "Du_plikat"
+msgstr "Du_plikér"
 
 #: ../thunar/thunar-standard-view.c:408 ../thunar/thunar-standard-view.c:4360
 msgid "Ma_ke Link"
@@ -2689,7 +2689,7 @@ msgstr "Moderne tilgang med knapper for mapper"
 
 #: ../thunar/thunar-window.c:382
 msgid "_Toolbar Style"
-msgstr "_Værktøjslinjestil"
+msgstr "_Værktøjsbjælkestil"
 
 #: ../thunar/thunar-window.c:382
 msgid "Traditional approach with location bar and navigation buttons"
@@ -3557,7 +3557,7 @@ msgstr "Eksempel på en tilpasset handling"
 
 #: ../plugins/thunar-wallpaper/twp-provider.c:169
 msgid "Set as wallpaper"
-msgstr "Sæt som tapet"
+msgstr "Brug som skrivebordstapet"
 
 #: ../Thunar.desktop.in.in.h:1
 msgid "Thunar File Manager"

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


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

2017-01-22 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/exo.

commit beb75dd37a2ea349b29a85123835dbfe7dd7020e
Author: Anonymous 
Date:   Mon Jan 23 00:30:13 2017 +0100

I18n: Update translation da (100%).

275 translated messages.

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

diff --git a/po/da.po b/po/da.po
index b063486..a4a46b8 100644
--- a/po/da.po
+++ b/po/da.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Exo\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 22:55+0200\n"
-"PO-Revision-Date: 2017-01-21 19:29+\n"
+"PO-Revision-Date: 2017-01-22 21:31+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/exo/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -98,7 +98,7 @@ msgstr "Modelkolonne som bliver brugt til at hente teksten 
fra"
 
 #: ../exo/exo-icon-bar.c:323
 msgid "Icon Bar Model"
-msgstr "Model for ikonbjælke"
+msgstr "Ikonbjælkemodel"
 
 #: ../exo/exo-icon-bar.c:324
 msgid "Model for the icon bar"
@@ -214,7 +214,7 @@ msgstr "Vælg _ikon fra:"
 #. search filter
 #: ../exo/exo-icon-chooser-dialog.c:225
 msgid "_Search icon:"
-msgstr "_Søgeikon:"
+msgstr "_Søg efter ikon:"
 
 #: ../exo/exo-icon-chooser-dialog.c:236
 msgid "Clear search field"

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


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

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

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

commit 36354817976eb442d624185c129e13f0e1391dbf
Author: samson 
Date:   Mon Jan 23 00:30:22 2017 +0100

I18n: Update translation am (100%).

36 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/am.po | 26 ++
 1 file changed, 18 insertions(+), 8 deletions(-)

diff --git a/po/am.po b/po/am.po
index 1b3bb8d..2de39f0 100644
--- a/po/am.po
+++ b/po/am.po
@@ -3,13 +3,13 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# samson , 2016
+# samson , 2016-2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Garcon\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-08-03 00:30+0200\n"
-"PO-Revision-Date: 2016-02-25 02:36+\n"
+"POT-Creation-Date: 2016-06-20 18:30+0200\n"
+"PO-Revision-Date: 2017-01-22 20:46+\n"
 "Last-Translator: samson \n"
 "Language-Team: Amharic (http://www.transifex.com/xfce/garcon/language/am/)\n"
 "MIME-Version: 1.0\n"
@@ -145,15 +145,25 @@ msgstr "የ ዝርዝር ፋይል ዳታ መጫን አልተቻለም %s: %s"
 msgid "Could not load menu file data from %s"
 msgstr "የ ዝርዝር ፋይል ዳታ መጫን አልተቻለም ከ %s"
 
-#: ../garcon-gtk/garcon-gtk-menu.c:389
+#: ../garcon-gtk/garcon-gtk-menu.c:446
 #, c-format
 msgid "Failed to execute command \"%s\"."
 msgstr "ትእዛዝ መፈጸም አልተቻለም \"%s\"."
 
-#: ../garcon-gtk/garcon-gtk-menu.c:652
-msgid "No applications found"
-msgstr "ምንም መተግበሪያ አልተገኘም"
+#: ../garcon-gtk/garcon-gtk-menu.c:472
+msgid "Launch Error"
+msgstr "ስህተት ማስነሻ"
 
-#: ../garcon-gtk/garcon-gtk-menu.c:664
+#: ../garcon-gtk/garcon-gtk-menu.c:474
+msgid ""
+"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
+"edit menu items."
+msgstr "\"exo-desktop-item-edit\"ን ማስነሳት አልተቻለም: ይህ አካል አስነሺዎችን ለ መፍጠር እና ለማረም 
እና ከ ዴስክቶፕ ጋር ለማገናኘት ያስፈልጋል"
+
+#: ../garcon-gtk/garcon-gtk-menu.c:476
+msgid "_Close"
+msgstr "_መዝጊያ"
+
+#: ../garcon-gtk/garcon-gtk-menu.c:988
 msgid "Failed to load the applications menu"
 msgstr "የ መተግበሪያ ዝርዝር መጫን አልተቻለም"

-- 
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/gigolo] branch master updated (3cf4803 -> d44cc93)

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

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

  from  3cf4803   I18n: Update translation da (100%).
   new  d44cc93   I18n: Update translation da (100%).

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


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

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


[Xfce4-commits] [apps/xfce4-terminal] branch master updated (37a2ded -> dc4dc94)

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

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

  from  37a2ded   I18n: Update translation uk (100%).
   new  dc4dc94   Further improve image loading by scaling it when reading 
from file

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:
 terminal/terminal-image-loader.c | 35 +++
 1 file changed, 7 insertions(+), 28 deletions(-)

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


[Xfce4-commits] [apps/xfce4-terminal] 01/01: Further improve image loading by scaling it when reading from file

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

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

commit dc4dc9465d778fbcdfae4581810c9e688d6d6878
Author: Igor 
Date:   Sun Jan 22 18:15:48 2017 +0300

Further improve image loading by scaling it when reading from file
---
 terminal/terminal-image-loader.c | 35 +++
 1 file changed, 7 insertions(+), 28 deletions(-)

diff --git a/terminal/terminal-image-loader.c b/terminal/terminal-image-loader.c
index b9fbbc2..c33fa09 100644
--- a/terminal/terminal-image-loader.c
+++ b/terminal/terminal-image-loader.c
@@ -119,12 +119,9 @@ terminal_image_loader_check (TerminalImageLoader *loader)
 {
   TerminalBackgroundStyle selected_style;
   GdkRGBA selected_color;
-  GdkPixbuf  *tmp;
   gbooleaninvalidate = FALSE;
   gchar  *selected_color_spec;
   gchar  *selected_path;
-  gintwidth;
-  gintheight;
 
   terminal_return_if_fail (TERMINAL_IS_IMAGE_LOADER (loader));
 
@@ -136,39 +133,21 @@ terminal_image_loader_check (TerminalImageLoader *loader)
 
   if (g_strcmp0 (selected_path, loader->path) != 0)
 {
+  gint width, height;
+
   g_free (loader->path);
   loader->path = g_strdup (selected_path);
 
   if (GDK_IS_PIXBUF (loader->pixbuf))
 g_object_unref (G_OBJECT (loader->pixbuf));
 
-  tmp = gdk_pixbuf_new_from_file (loader->path, NULL);
-  width = gdk_pixbuf_get_width (tmp);
-  height = gdk_pixbuf_get_height (tmp);
-
+  gdk_pixbuf_get_file_info (loader->path, , );
   if (width <= MAX_IMAGE_WIDTH && height <= MAX_IMAGE_HEIGHT)
-loader->pixbuf = tmp;
+loader->pixbuf = gdk_pixbuf_new_from_file (loader->path, NULL);
   else
-{
-  /* scale image resolution down to 8K */
-  gdouble xscale = (gdouble) MAX_IMAGE_WIDTH / width;
-  gdouble yscale = (gdouble) MAX_IMAGE_HEIGHT / height;
-
-  if (xscale < yscale)
-yscale = xscale;
-  else
-xscale = yscale;
-  width = (gint) (width * xscale);
-  height = (gint) (height * yscale);
-
-  loader->pixbuf = gdk_pixbuf_new (gdk_pixbuf_get_colorspace (tmp),
-   gdk_pixbuf_get_has_alpha (tmp),
-   gdk_pixbuf_get_bits_per_sample 
(tmp),
-   width, height);
-  gdk_pixbuf_composite (tmp, loader->pixbuf, 0, 0, width, height,
-0, 0, xscale, yscale, GDK_INTERP_BILINEAR, 
255);
-  g_object_unref (G_OBJECT (tmp));
-}
+loader->pixbuf = gdk_pixbuf_new_from_file_at_size (loader->path,
+   MAX_IMAGE_WIDTH, 
MAX_IMAGE_WIDTH,
+   NULL);
 
   invalidate = TRUE;
 }

-- 
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: Add new translation fa_IR (55%).

2017-01-22 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 f09e5c48609a61d0b38f476cbb30fe66c5811df1
Author: Arash Kadkhodaei 
Date:   Sun Jan 22 12:30:29 2017 +0100

I18n: Add new translation fa_IR (55%).

408 translated messages, 330 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/fa_IR.po | 3559 +++
 1 file changed, 3559 insertions(+)

diff --git a/po/fa_IR.po b/po/fa_IR.po
new file mode 100644
index 000..1daa858
--- /dev/null
+++ b/po/fa_IR.po
@@ -0,0 +1,3559 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Ali Vakilzade , 2015-2016
+# Arash Kadkhodaei , 2017
+msgid ""
+msgstr ""
+"Project-Id-Version: Thunar\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-02-19 18:30+0100\n"
+"PO-Revision-Date: 2017-01-22 08:24+\n"
+"Last-Translator: Arash Kadkhodaei \n"
+"Language-Team: Persian (Iran) 
(http://www.transifex.com/xfce/thunar/language/fa_IR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: fa_IR\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: ../thunar/main.c:62
+msgid "Open the bulk rename dialog"
+msgstr "باز کردن پنجره تغییر نام دسته‌ای"
+
+#: ../thunar/main.c:64
+msgid "Run in daemon mode"
+msgstr "اجرا در وضعیت دیمِن"
+
+#: ../thunar/main.c:66
+msgid "Run in daemon mode (not supported)"
+msgstr "اجرا در وضعیت دیمِن (پشتیبانی نمی‌شود)"
+
+#: ../thunar/main.c:70
+msgid "Quit a running Thunar instance"
+msgstr "ترک یک نمونه‌ی تونار در حال اجرا"
+
+#: ../thunar/main.c:72
+msgid "Quit a running Thunar instance (not supported)"
+msgstr "ترک یک نمونه‌ی تونار در حال اجرا (پشتیبانی نمی‌شود)"
+
+#: ../thunar/main.c:74
+msgid "Print version information and exit"
+msgstr "نمایش اطلاعات شماره نسخه برنامه و خروج"
+
+#. setup application name
+#: ../thunar/main.c:128
+msgid "Thunar"
+msgstr "تونار"
+
+#. initialize Gtk+
+#: ../thunar/main.c:147
+msgid "[FILES...]"
+msgstr "[پرونده‌ها...]"
+
+#: ../thunar/main.c:154
+#, c-format
+msgid "Thunar: Failed to open display: %s\n"
+msgstr "تونار: بازکردن نمایشگر %s با شکست مواجه شد\n"
+
+#. yep, there's an error, so print it
+#: ../thunar/main.c:159
+#, c-format
+msgid "Thunar: %s\n"
+msgstr "تونار: %s\n"
+
+#: ../thunar/main.c:170
+msgid "The Thunar development team. All rights reserved."
+msgstr "تیم توسعه تونار. تمامی حقوق محفوظ است."
+
+#: ../thunar/main.c:171
+msgid "Written by Benedikt Meurer ."
+msgstr "توسط Benedikt Meurer . نوشته شده."
+
+#: ../thunar/main.c:172
+#, c-format
+msgid "Please report bugs to <%s>."
+msgstr "لطفا خطاها را در <%s> گزارش کنید."
+
+#: ../thunar/thunar-abstract-icon-view.c:117
+msgid "Arran_ge Items"
+msgstr "چیدن موارد"
+
+#: ../thunar/thunar-abstract-icon-view.c:122
+msgid "Sort By _Name"
+msgstr "مرتب سازی بر اساس نام"
+
+#: ../thunar/thunar-abstract-icon-view.c:122
+msgid "Keep items sorted by their name"
+msgstr "همیشه براساس نام مرتب کن"
+
+#: ../thunar/thunar-abstract-icon-view.c:123
+msgid "Sort By _Size"
+msgstr "مرتب سازی براساس اندازه"
+
+#: ../thunar/thunar-abstract-icon-view.c:123
+msgid "Keep items sorted by their size"
+msgstr "همیشه براساس اندازه مرتب کن"
+
+#: ../thunar/thunar-abstract-icon-view.c:124
+msgid "Sort By _Type"
+msgstr "مرتب سازی براساس نوع"
+
+#: ../thunar/thunar-abstract-icon-view.c:124
+msgid "Keep items sorted by their type"
+msgstr "همیشه براساس اندازه مرتب کن"
+
+#: ../thunar/thunar-abstract-icon-view.c:125
+msgid "Sort By Modification _Date"
+msgstr "مرتب سازی براساس زمان آخرین تغییرات"
+
+#: ../thunar/thunar-abstract-icon-view.c:125
+msgid "Keep items sorted by their modification date"
+msgstr "همیشه براساس تاریخ آخرین تغیبرات مرتب کن"
+
+#: ../thunar/thunar-abstract-icon-view.c:130
+msgid "_Ascending"
+msgstr "صعودی"
+
+#: ../thunar/thunar-abstract-icon-view.c:130
+msgid "Sort items in ascending order"
+msgstr "موارد را به صورت صعودی مرتب کن"
+
+#: ../thunar/thunar-abstract-icon-view.c:131
+msgid "_Descending"
+msgstr "نزولی"
+
+#: ../thunar/thunar-abstract-icon-view.c:131
+msgid "Sort items in descending order"
+msgstr "موارد را به صورت نزولی مرتب کن"
+
+#. display an error message to the user
+#: ../thunar/thunar-application.c:451
+msgid "Failed to launch operation"
+msgstr "راه‌اندازی عملیات شکست مواجه شد"
+
+#. tell the user that we were unable to launch the file specified
+#: ../thunar/thunar-application.c:1168 ../thunar/thunar-application.c:1294
+#: ../thunar/thunar-launcher.c:1222 ../thunar/thunar-location-entry.c:395
+#: ../thunar/thunar-location-entry.c:423
+#: ../thunar/thunar-shortcuts-view.c:1635
+#: 

[Xfce4-commits] [xfce/thunar] branch master updated (a1031c0 -> f09e5c4)

2017-01-22 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  a1031c0   I18n: Update translation da (100%).
   new  f09e5c4   I18n: Add new translation fa_IR (55%).

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/{eo.po => fa_IR.po} | 1393 +++-
 1 file changed, 674 insertions(+), 719 deletions(-)
 copy po/{eo.po => fa_IR.po} (74%)

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


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

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

gottcode pushed a commit to branch master
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit 2a1e44084014121721d376fe7b3ca4c0591e7727
Author: Graeme Gott 
Date:   Sun Jan 22 05:14:30 2017 -0500

I18n: Update translation es (100%).
---
 po/es.po | 15 +++
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/po/es.po b/po/es.po
index fa18f35..dea7697 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1,5 +1,5 @@
 # Spanish translation of xfce4-whiskermenu-plugin.
-# Copyright (C) 2016 Graeme Gott
+# Copyright (C) 2017 Graeme Gott
 # This file is distributed under the same license as the 
xfce4-whiskermenu-plugin package.
 #
 # Translators:
@@ -10,13 +10,14 @@
 # Inti Alonso , 2013
 # Noe Moreno , 2016
 # Pablo Roberto “Jristz” Lezaeta Reyes , 2013-2015
+# Pablo Roberto “Jristz” Lezaeta Reyes , 2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-01-13 22:55+\n"
-"PO-Revision-Date: 2016-12-02 00:15+\n"
-"Last-Translator: Noe Moreno \n"
+"PO-Revision-Date: 2017-01-22 04:34+\n"
+"Last-Translator: Pablo Roberto “Jristz” Lezaeta Reyes \n"
 "Language-Team: Spanish (http://www.transifex.com/gottcode/xfce4-whiskermenu-;
 "plugin/language/es/)\n"
 "Language: es\n"
@@ -83,7 +84,7 @@ msgstr "Limpiar elementos recientes"
 
 #: ../panel-plugin/plugin.cpp:412
 msgid "Copyright © 2013-2017 Graeme Gott"
-msgstr "© 2013–2017 Graeme Gott"
+msgstr "Derechos de autor © 2013-2017 Graeme Gott"
 
 #: ../panel-plugin/configuration-dialog.cpp:844
 msgid "Details"
@@ -98,9 +99,8 @@ msgid "Display by _default"
 msgstr "Mostrar de forma predetermina_da"
 
 #: ../panel-plugin/page.cpp:268
-#, fuzzy
 msgid "Edit Application..."
-msgstr "_Editar aplicaciones"
+msgstr "Editar aplicación..."
 
 #: ../panel-plugin/settings.cpp:124
 msgid "Edit _Profile"
@@ -324,9 +324,8 @@ msgid "Unable to add launcher to panel."
 msgstr "No se pudo añadir el lanzador al panel."
 
 #: ../panel-plugin/page.cpp:447
-#, fuzzy
 msgid "Unable to edit launcher."
-msgstr "No se pudo añadir el lanzador al panel."
+msgstr "No se pudo editar el lanzador."
 
 #: ../panel-plugin/configuration-dialog.cpp:492
 #, 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-whiskermenu-plugin] 01/02: I18n: Update translation el (100%).

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

gottcode pushed a commit to branch master
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit adb6aadd530cb4d46d4112d4701d93eb25edf695
Author: Graeme Gott 
Date:   Sun Jan 22 05:12:59 2017 -0500

I18n: Update translation el (100%).
---
 po/el.po | 13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/po/el.po b/po/el.po
index 7a486fc..3756145 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,10 +1,11 @@
 # Greek translation of xfce4-whiskermenu-plugin.
-# Copyright (C) 2016 Graeme Gott
+# Copyright (C) 2017 Graeme Gott
 # This file is distributed under the same license as the 
xfce4-whiskermenu-plugin package.
 #
 # Translators:
 # angel_solomos, 2013
 # Ioannis LM, 2016
+# Thanos Apostolou , 2017
 # gapan , 2014
 # Γιάννης Ανθυμίδης, 2013
 # Πέτρος Σαμαράς , 2016
@@ -13,8 +14,8 @@ msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-01-13 22:55+\n"
-"PO-Revision-Date: 2016-12-15 16:24+\n"
-"Last-Translator: Ioannis LM\n"
+"PO-Revision-Date: 2017-01-21 13:31+\n"
+"Last-Translator: Thanos Apostolou \n"
 "Language-Team: Greek (http://www.transifex.com/gottcode/xfce4-whiskermenu-;
 "plugin/language/el/)\n"
 "Language: el\n"
@@ -96,9 +97,8 @@ msgid "Display by _default"
 msgstr "Προεπιλεγμένη ε_μφάνιση"
 
 #: ../panel-plugin/page.cpp:268
-#, fuzzy
 msgid "Edit Application..."
-msgstr "Ε_πεξεργασία εφαρμογών"
+msgstr "Επεξεργασία Εφαρμογής..."
 
 #: ../panel-plugin/settings.cpp:124
 msgid "Edit _Profile"
@@ -322,9 +322,8 @@ msgid "Unable to add launcher to panel."
 msgstr "Απέτυχε η προσθήκη εκκινητή στο ταμπλό."
 
 #: ../panel-plugin/page.cpp:447
-#, fuzzy
 msgid "Unable to edit launcher."
-msgstr "Απέτυχε η προσθήκη εκκινητή στο ταμπλό."
+msgstr "Απέτυχε η επεξεργασία εκκινητή."
 
 #: ../panel-plugin/configuration-dialog.cpp:492
 #, 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-whiskermenu-plugin] branch master updated (8a56b4f -> 2a1e440)

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

gottcode pushed a change to branch master
in repository panel-plugins/xfce4-whiskermenu-plugin.

  from  8a56b4f   I18n: Update translation tr (100%).
   new  adb6aad   I18n: Update translation el (100%).
   new  2a1e440   I18n: Update translation es (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/el.po | 13 ++---
 po/es.po | 15 +++
 2 files changed, 13 insertions(+), 15 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