[Xfce4-commits] [apps/xfdashboard] 02/02: Remove redundant code by deriving XfdashboardLiveWindow from newly created XfdashboardLiveWindowSimple and add controls, title and icon to it

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

nomad pushed a commit to branch master
in repository apps/xfdashboard.

commit 86727ab4d86f9af52733b799b8eb8909d0d698c9
Author: Stephan Haller 
Date:   Fri Jan 20 08:26:04 2017 +0100

Remove redundant code by deriving XfdashboardLiveWindow from newly created 
XfdashboardLiveWindowSimple and add controls, title and icon to it
---
 libxfdashboard/live-window-simple.c |  39 
 libxfdashboard/live-window-simple.h |   1 -
 libxfdashboard/live-window.c| 348 +---
 libxfdashboard/live-window.h|  15 +-
 libxfdashboard/windows-view.c   |  39 ++--
 libxfdashboard/workspace-selector.c |   2 +-
 6 files changed, 75 insertions(+), 369 deletions(-)

diff --git a/libxfdashboard/live-window-simple.c 
b/libxfdashboard/live-window-simple.c
index 311e5c2..7a08881 100644
--- a/libxfdashboard/live-window-simple.c
+++ b/libxfdashboard/live-window-simple.c
@@ -73,8 +73,6 @@ static GParamSpec* 
XfdashboardLiveWindowSimpleProperties[PROP_LAST]={ 0, };
 /* Signals */
 enum
 {
-   SIGNAL_CLICKED,
-
SIGNAL_GEOMETRY_CHANGED,
SIGNAL_VISIBILITY_CHANGED,
SIGNAL_WORKSPACE_CHANGED,
@@ -102,26 +100,6 @@ static gboolean 
_xfdashboard_live_window_simple_is_visible_window(XfdashboardLiv
return(TRUE);
 }
 
-/* This actor was clicked */
-static void 
_xfdashboard_live_window_simple_on_clicked(XfdashboardLiveWindowSimple *self,
-   
ClutterActor *inActor,
-   
gpointer inUserData)
-{
-   XfdashboardClickAction  *action;
-
-   g_return_if_fail(XFDASHBOARD_IS_LIVE_WINDOW_SIMPLE(self));
-   g_return_if_fail(CLUTTER_IS_ACTOR(inActor));
-   g_return_if_fail(XFDASHBOARD_IS_CLICK_ACTION(inUserData));
-
-   action=XFDASHBOARD_CLICK_ACTION(inUserData);
-
-   /* Only emit any of these signals if click was perform with left button 
*/
-   
if(xfdashboard_click_action_get_button(action)!=XFDASHBOARD_CLICK_ACTION_LEFT_BUTTON)
 return;
-
-   /* Emit "clicked" signal */
-   g_signal_emit(self, XfdashboardLiveWindowSimpleSignals[SIGNAL_CLICKED], 
0);
-}
-
 /* Position and/or size of window has changed */
 static void 
_xfdashboard_live_window_simple_on_geometry_changed(XfdashboardLiveWindowSimple 
*self,

XfdashboardWindowTrackerWindow 
*inWindow,
@@ -415,18 +393,6 @@ static void 
xfdashboard_live_window_simple_class_init(XfdashboardLiveWindowSimpl
g_object_class_install_properties(gobjectClass, PROP_LAST, 
XfdashboardLiveWindowSimpleProperties);
 
/* Define signals */
-   XfdashboardLiveWindowSimpleSignals[SIGNAL_CLICKED]=
-   g_signal_new("clicked",
-   G_TYPE_FROM_CLASS(klass),
-   G_SIGNAL_RUN_LAST,
-   
G_STRUCT_OFFSET(XfdashboardLiveWindowSimpleClass, clicked),
-   NULL,
-   NULL,
-   g_cclosure_marshal_VOID__VOID,
-   G_TYPE_NONE,
-   0);
-
-
XfdashboardLiveWindowSimpleSignals[SIGNAL_GEOMETRY_CHANGED]=
g_signal_new("geometry-changed",
G_TYPE_FROM_CLASS(klass),
@@ -468,7 +434,6 @@ static void 
xfdashboard_live_window_simple_class_init(XfdashboardLiveWindowSimpl
 static void xfdashboard_live_window_simple_init(XfdashboardLiveWindowSimple 
*self)
 {
XfdashboardLiveWindowSimplePrivate  *priv;
-   ClutterAction   *action;
 
priv=self->priv=XFDASHBOARD_LIVE_WINDOW_SIMPLE_GET_PRIVATE(self);
 
@@ -485,10 +450,6 @@ static void 
xfdashboard_live_window_simple_init(XfdashboardLiveWindowSimple *sel
clutter_actor_add_child(CLUTTER_ACTOR(self), priv->actorWindow);
 
/* Connect signals */
-   action=xfdashboard_click_action_new();
-   clutter_actor_add_action(CLUTTER_ACTOR(self), action);
-   g_signal_connect_swapped(action, "clicked", 
G_CALLBACK(_xfdashboard_live_window_simple_on_clicked), self);
-
g_signal_connect_swapped(priv->windowTracker, 
"window-geometry-changed", 
G_CALLBACK(_xfdashboard_live_window_simple_on_geometry_changed), self);
g_signal_connect_swapped(priv->windowTracker, "window-state-changed", 
G_CALLBACK(_xfdashboard_live_window_simple_on_state_changed), self);
g_signal_connect_swapped(priv->windowTracker, 
"window-workspace-changed"

[Xfce4-commits] [apps/xfdashboard] branch master updated (d7cc6c2 -> 86727ab)

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

nomad pushed a change to branch master
in repository apps/xfdashboard.

  from  d7cc6c2   Add missing header files in libxfdashboard.h
   new  8d6a0f3   Remove TODO marked code lines
   new  86727ab   Remove redundant code by deriving XfdashboardLiveWindow 
from newly created XfdashboardLiveWindowSimple and add controls, title and icon 
to it

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:
 libxfdashboard/live-window-simple.c |  46 -
 libxfdashboard/live-window-simple.h |   1 -
 libxfdashboard/live-window.c| 348 +---
 libxfdashboard/live-window.h|  15 +-
 libxfdashboard/windows-view.c   |  39 ++--
 libxfdashboard/workspace-selector.c |   2 +-
 6 files changed, 75 insertions(+), 376 deletions(-)

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


[Xfce4-commits] [apps/xfdashboard] 01/02: Remove TODO marked code lines

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

nomad pushed a commit to branch master
in repository apps/xfdashboard.

commit 8d6a0f3c50a095765e0cdb8ffdb6a581badc8918
Author: Stephan Haller 
Date:   Fri Jan 20 07:25:41 2017 +0100

Remove TODO marked code lines
---
 libxfdashboard/live-window-simple.c | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/libxfdashboard/live-window-simple.c 
b/libxfdashboard/live-window-simple.c
index 4e79ba6..311e5c2 100644
--- a/libxfdashboard/live-window-simple.c
+++ b/libxfdashboard/live-window-simple.c
@@ -29,16 +29,9 @@
 #include 
 
 #include 
-// TODO: #include 
-// TODO: #include 
-// TODO: #include 
-// TODO: #include 
 
-// TODO: #include 
-// TODO: #include 
 #include 
 #include 
-// TODO: #include 
 #include 
 #include 
 

-- 
To stop receiving notification emails like this one, please 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 (bc30a9d -> 65a1376)

2017-01-19 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  bc30a9d   I18n: Update translation pl (100%).
   new  65a1376   I18n: Update translation zh_TW (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/zh_TW.po | 45 +
 1 file changed, 25 insertions(+), 20 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 zh_TW (100%).

2017-01-19 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 65a1376f3e2dbe2aa4c16edbb2853af105bea1d2
Author: Jeff Huang 
Date:   Fri Jan 20 06:30:55 2017 +0100

I18n: Update translation zh_TW (100%).

333 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/zh_TW.po | 45 +
 1 file changed, 25 insertions(+), 20 deletions(-)

diff --git a/po/zh_TW.po b/po/zh_TW.po
index e66bcd8..fbd1a59 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-01-13 18:30+0100\n"
-"PO-Revision-Date: 2017-01-14 09:49+\n"
+"POT-Creation-Date: 2017-01-18 18:31+0100\n"
+"PO-Revision-Date: 2017-01-20 01:52+\n"
 "Last-Translator: Jeff Huang \n"
 "Language-Team: Chinese (Taiwan) 
(http://www.transifex.com/xfce/xfce-apps/language/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -1385,63 +1385,68 @@ msgstr "相容性(_M)"
 
 #: ../terminal/terminal-preferences.glade.h:146
 msgid ""
-"Consider the following characters part of a _word\n"
+"Consider the following\n"
+"characters part of a _word\n"
 "when double clicking:"
-msgstr "雙擊時將下列字元視為一個單詞的一部分(_W)"
-
-#: ../terminal/terminal-preferences.glade.h:148
-msgid "Rese_t double click options to defaults"
-msgstr "將雙擊選項重設回預設值(_T)"
+msgstr "當點兩下時\n考慮下述的\n字母為單字的一部份:(_W)"
 
 #: ../terminal/terminal-preferences.glade.h:149
+msgid "Rese_t"
+msgstr "重設(_T)"
+
+#: ../terminal/terminal-preferences.glade.h:150
+msgid "Reset double click options to defaults"
+msgstr "將點兩下的選項重設為預設值"
+
+#: ../terminal/terminal-preferences.glade.h:151
 msgid "Double Click"
 msgstr "雙擊"
 
-#: ../terminal/terminal-preferences.glade.h:150
+#: ../terminal/terminal-preferences.glade.h:152
 msgid "Default character e_ncoding:"
 msgstr "預設字元編碼(_N):"
 
-#: ../terminal/terminal-preferences.glade.h:151
+#: ../terminal/terminal-preferences.glade.h:153
 msgid "Encoding"
 msgstr "編碼"
 
-#: ../terminal/terminal-preferences.glade.h:152
+#: ../terminal/terminal-preferences.glade.h:154
 msgid "Disable all me_nu access keys (such as Alt+f)"
 msgstr "停用所有選單列存取按鍵(像是 Alt+f)(_N)"
 
-#: ../terminal/terminal-preferences.glade.h:153
+#: ../terminal/terminal-preferences.glade.h:155
 msgid "Disable m_enu shortcut key (F10 by default)"
 msgstr "停用選單快捷鍵(預設為 F10)(_E)"
 
-#: ../terminal/terminal-preferences.glade.h:154
+#: ../terminal/terminal-preferences.glade.h:156
 msgid "Disable _help window shortcut key (F1 by default)"
 msgstr "停用說明視窗快捷鍵(預設為 F1)(_H)"
 
-#: ../terminal/terminal-preferences.glade.h:155
+#: ../terminal/terminal-preferences.glade.h:157
 msgid "Shortcuts"
 msgstr "快捷鍵"
 
-#: ../terminal/terminal-preferences.glade.h:156
+#: ../terminal/terminal-preferences.glade.h:158
 msgid "Use _middle mouse click to close tabs"
 msgstr "使用滑鼠中鍵點選以關閉分頁(_M)"
 
-#: ../terminal/terminal-preferences.glade.h:157
+#: ../terminal/terminal-preferences.glade.h:159
 msgid "Auto-hi_de mouse pointer"
 msgstr "自動隱藏滑鼠游標(_D)"
 
-#: ../terminal/terminal-preferences.glade.h:158
+#: ../terminal/terminal-preferences.glade.h:160
 msgid "Re_wrap terminal contents on resize"
 msgstr "在調整大小時重新換行終端機內容(_W)"
 
-#: ../terminal/terminal-preferences.glade.h:159
+#: ../terminal/terminal-preferences.glade.h:161
 msgid "Automatically _copy selection to clipboard"
 msgstr "自動複製選取的部份到剪貼簿中(_C)"
 
-#: ../terminal/terminal-preferences.glade.h:160
+#: ../terminal/terminal-preferences.glade.h:162
 msgid "Misc"
 msgstr "雜項"
 
-#: ../terminal/terminal-preferences.glade.h:161
+#: ../terminal/terminal-preferences.glade.h:163
 msgid "Ad_vanced"
 msgstr "進階(_V)"
 

-- 
To stop receiving notification emails like this one, please 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] 03/03: I18n: Update translation pl (100%).

2017-01-19 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 bc30a9fccda45710d91041f5ec3f3cb47b57
Author: m4sk1n 
Date:   Fri Jan 20 00:31:08 2017 +0100

I18n: Update translation pl (100%).

333 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/pl.po | 45 +
 1 file changed, 25 insertions(+), 20 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 7c46899..9300ecc 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -15,8 +15,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-01-13 18:30+0100\n"
-"PO-Revision-Date: 2017-01-18 15:13+\n"
+"POT-Creation-Date: 2017-01-18 18:31+0100\n"
+"PO-Revision-Date: 2017-01-19 19:20+\n"
 "Last-Translator: m4sk1n \n"
 "Language-Team: Polish 
(http://www.transifex.com/xfce/xfce-apps/language/pl/)\n"
 "MIME-Version: 1.0\n"
@@ -1389,63 +1389,68 @@ msgstr "_Kompatybilność"
 
 #: ../terminal/terminal-preferences.glade.h:146
 msgid ""
-"Consider the following characters part of a _word\n"
+"Consider the following\n"
+"characters part of a _word\n"
 "when double clicking:"
-msgstr "Zestaw znaków rozpoznawanych jako _słowo podczas zaznaczania:"
-
-#: ../terminal/terminal-preferences.glade.h:148
-msgid "Rese_t double click options to defaults"
-msgstr "Przywróć _domyślne"
+msgstr "Zesta_w znaków\nrozpoznawanych jako\nsłowo podczas zaznaczania:"
 
 #: ../terminal/terminal-preferences.glade.h:149
+msgid "Rese_t"
+msgstr "Rese_tuj"
+
+#: ../terminal/terminal-preferences.glade.h:150
+msgid "Reset double click options to defaults"
+msgstr "Przywróć domyślne ustawienia dwukliku"
+
+#: ../terminal/terminal-preferences.glade.h:151
 msgid "Double Click"
 msgstr "Dwukrotne kliknięcie"
 
-#: ../terminal/terminal-preferences.glade.h:150
+#: ../terminal/terminal-preferences.glade.h:152
 msgid "Default character e_ncoding:"
 msgstr "Domyślne _kodowanie znaków:"
 
-#: ../terminal/terminal-preferences.glade.h:151
+#: ../terminal/terminal-preferences.glade.h:153
 msgid "Encoding"
 msgstr "Kodowanie"
 
-#: ../terminal/terminal-preferences.glade.h:152
+#: ../terminal/terminal-preferences.glade.h:154
 msgid "Disable all me_nu access keys (such as Alt+f)"
 msgstr "Wyłączenie skrótów _menu (np. Alt+f)"
 
-#: ../terminal/terminal-preferences.glade.h:153
+#: ../terminal/terminal-preferences.glade.h:155
 msgid "Disable m_enu shortcut key (F10 by default)"
 msgstr "Wyłącz klawisz m_enu (domyślnie F10)"
 
-#: ../terminal/terminal-preferences.glade.h:154
+#: ../terminal/terminal-preferences.glade.h:156
 msgid "Disable _help window shortcut key (F1 by default)"
 msgstr "Wyłącz skrót pomo_cy (domyślnie F1)"
 
-#: ../terminal/terminal-preferences.glade.h:155
+#: ../terminal/terminal-preferences.glade.h:157
 msgid "Shortcuts"
 msgstr "Skróty"
 
-#: ../terminal/terminal-preferences.glade.h:156
+#: ../terminal/terminal-preferences.glade.h:158
 msgid "Use _middle mouse click to close tabs"
 msgstr "Użyj środkowego przycisku _myszy aby zamknąć zakładki"
 
-#: ../terminal/terminal-preferences.glade.h:157
+#: ../terminal/terminal-preferences.glade.h:159
 msgid "Auto-hi_de mouse pointer"
 msgstr "Automatycznie ukrywaj wska_źnik myszy"
 
-#: ../terminal/terminal-preferences.glade.h:158
+#: ../terminal/terminal-preferences.glade.h:160
 msgid "Re_wrap terminal contents on resize"
 msgstr "Przewijaj zawartość terminala przy zmianie rozmiaru"
 
-#: ../terminal/terminal-preferences.glade.h:159
+#: ../terminal/terminal-preferences.glade.h:161
 msgid "Automatically _copy selection to clipboard"
 msgstr "Automaty_cznie kopiuj zaznaczenie do schowka"
 
-#: ../terminal/terminal-preferences.glade.h:160
+#: ../terminal/terminal-preferences.glade.h:162
 msgid "Misc"
 msgstr "Różne"
 
-#: ../terminal/terminal-preferences.glade.h:161
+#: ../terminal/terminal-preferences.glade.h:163
 msgid "Ad_vanced"
 msgstr "_Zaawansowane"
 

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


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

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

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

commit 328e17c92d47f4bfe1f2ed11c3d8141ea15884b1
Author: m4sk1n 
Date:   Fri Jan 20 00:30:49 2017 +0100

I18n: Update translation pl (100%).

306 translated messages.

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

diff --git a/po/pl.po b/po/pl.po
index dea9632..87e267c 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -5,18 +5,19 @@
 # Translators:
 # ised, 2014
 # ised, 2014
+# m4sk1n , 2017
 # Nick Schermer , 2014
 # Nick Schermer , 2014
-# Piotr Sokół , 2012,2014
+# Piotr Sokół , 2012,2014
 # Piotr Strębski , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-07-15 06:30+0200\n"
-"PO-Revision-Date: 2014-10-20 07:47+\n"
-"Last-Translator: Piotr Sokół \n"
-"Language-Team: Polish 
(http://www.transifex.com/projects/p/xfce-apps/language/pl/)\n"
+"PO-Revision-Date: 2017-01-19 19:25+\n"
+"Last-Translator: m4sk1n \n"
+"Language-Team: Polish 
(http://www.transifex.com/xfce/xfce-apps/language/pl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -408,7 +409,7 @@ msgstr "Białe znaki"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:21
 msgid "Display line endings"
-msgstr "Zakończenia wierszy"
+msgstr "Wyświetlaj końce linii"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:22
 msgid "Long line margin at column:"
@@ -416,15 +417,15 @@ msgstr "Kolumna marginesu długich wierszy:"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:23
 msgid "Highlight current line"
-msgstr "Wyróżnianie bieżącego wiersza"
+msgstr "Podświetlaj obecną linię"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:24
 msgid "Highlight matching brackets"
-msgstr "Wyróżnianie pasujących nawiasów"
+msgstr "Podświetlaj pasujące nawiasy"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:25
 msgid "Wrap long lines"
-msgstr "Zawijanie tekstu"
+msgstr "Zawijaj długie wiersze"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:26
 msgid "Display"
@@ -432,7 +433,7 @@ msgstr "Widok"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:27
 msgid "Use system monospace font"
-msgstr "Używanie systemowej czcionki o stałej szerokości"
+msgstr "Użyj systemowej czcionki o stałej szerokości"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:28
 msgid "Font"

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


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

2017-01-19 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 f667080e8592db9153937701b28e37f11876d4c7
Author: Kiril Kirilov 
Date:   Fri Jan 20 00:31:08 2017 +0100

I18n: Update translation bg (100%).

333 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/bg.po | 365 ---
 1 file changed, 187 insertions(+), 178 deletions(-)

diff --git a/po/bg.po b/po/bg.po
index 659ff67..f3f9773 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -4,15 +4,15 @@
 # 
 # Translators:
 # Georgi Georgiev , 2016
-# Kiril Kirilov , 2013,2016
+# Kiril Kirilov , 2013,2016-2017
 # Любомир Василев, 2015
 # Милен Милев , 2011
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-12-18 18:30+0100\n"
-"PO-Revision-Date: 2016-12-21 21:26+\n"
+"POT-Creation-Date: 2017-01-18 18:31+0100\n"
+"PO-Revision-Date: 2017-01-19 17:41+\n"
 "Last-Translator: Kiril Kirilov \n"
 "Language-Team: Bulgarian 
(http://www.transifex.com/xfce/xfce-apps/language/bg/)\n"
 "MIME-Version: 1.0\n"
@@ -164,7 +164,7 @@ msgstr "Докладвайте за грешки на <%s>."
 msgid "Unable to register terminal service: %s\n"
 msgstr "Не може да се регистрира терминала: %s\n"
 
-#: ../terminal/terminal-app.c:870
+#: ../terminal/terminal-app.c:875
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "Невалидна геометрична поредица „%s“\n"
@@ -364,19 +364,19 @@ msgstr "Опцията \"--zoom\" изисква задаване размер 
 msgid "Unknown option \"%s\""
 msgstr "Непозната опция „%s“"
 
-#: ../terminal/terminal-preferences-dialog.c:355
+#: ../terminal/terminal-preferences-dialog.c:358
 msgid "All Files"
 msgstr "Всички файлове"
 
-#: ../terminal/terminal-preferences-dialog.c:361
+#: ../terminal/terminal-preferences-dialog.c:364
 msgid "Image Files"
 msgstr "Файлове с изображения"
 
-#: ../terminal/terminal-preferences-dialog.c:786
+#: ../terminal/terminal-preferences-dialog.c:789
 msgid "Load Presets..."
 msgstr "Зареждане на готовите комплекти..."
 
-#: ../terminal/terminal-preferences.c:1029
+#: ../terminal/terminal-preferences.c:1051
 msgid "Terminal"
 msgstr "Терминал"
 
@@ -402,7 +402,7 @@ msgstr "Затваряне този подпрозорец"
 msgid "Find"
 msgstr "Намиране"
 
-#: ../terminal/terminal-search-dialog.c:93 ../terminal/terminal-window.c:1864
+#: ../terminal/terminal-search-dialog.c:93 ../terminal/terminal-window.c:1928
 msgid "_Close"
 msgstr "Затваряне"
 
@@ -490,299 +490,299 @@ msgstr "Получени са невалидни данни за цвета: Л
 msgid "Failed to open the URL '%s'"
 msgstr "Неуспешно отваряне на URL '%s'"
 
-#: ../terminal/terminal-window-dropdown.c:257
+#: ../terminal/terminal-window-dropdown.c:262
 msgid "Keep window open when it loses focus"
 msgstr "Запазване на прозореца отворен, когато изгуби фокус"
 
-#: ../terminal/terminal-window-dropdown.c:348
+#: ../terminal/terminal-window-dropdown.c:353
 msgid "Drop-down Terminal"
 msgstr "Падащ терминал"
 
-#: ../terminal/terminal-window-dropdown.c:349
+#: ../terminal/terminal-window-dropdown.c:354
 msgid "Toggle Drop-down Terminal"
 msgstr "Превключване на терминал с падащо меню"
 
-#: ../terminal/terminal-window.c:281
+#: ../terminal/terminal-window.c:313
 msgid "_File"
 msgstr "Файл"
 
-#: ../terminal/terminal-window.c:282
+#: ../terminal/terminal-window.c:314
 msgid "Open _Tab"
 msgstr "Отваряне подпорозорец"
 
-#: ../terminal/terminal-window.c:282
+#: ../terminal/terminal-window.c:314
 msgid "Open a new terminal tab"
 msgstr "Отваряне на нов подпрозорец"
 
-#: ../terminal/terminal-window.c:283
+#: ../terminal/terminal-window.c:315
 msgid "Open T_erminal"
 msgstr "Отваряне на нов терминал"
 
-#: ../terminal/terminal-window.c:283
+#: ../terminal/terminal-window.c:315
 msgid "Open a new terminal window"
 msgstr "Отваряне на нов прозорец"
 
-#: ../terminal/terminal-window.c:284
+#: ../terminal/terminal-window.c:316
 msgid "_Undo Close Tab"
 msgstr "_Отмени затварянето на раздела"
 
-#: ../terminal/terminal-window.c:285
+#: ../terminal/terminal-window.c:317
 msgid "_Detach Tab"
 msgstr "Откачване на подпрозореца"
 
-#: ../terminal/terminal-window.c:286 ../terminal/terminal-window.c:648
+#: ../terminal/terminal-window.c:318 ../terminal/terminal-window.c:710
 msgid "Close T_ab"
 msgstr "Затваряне на раздела"
 
-#: ../terminal/terminal-window.c:287
+#: ../terminal/terminal-window.c:319
 msgid "Close Other Ta_bs"
 msgstr "Затвори другите раздели"
 
-#: ../terminal/terminal-window.c:288 ../terminal/terminal-window.c:651
+#: ../terminal/terminal-window.c:320 ../terminal/terminal-window.c:713
 msgid "Close _Window"
 msgstr "Затваряне на прозореца"
 
-#: ../terminal/terminal-window.c:289
+#: ../terminal/terminal-window.c:321
 msgid "_Edit"
 msgstr "Редактиране"
 
-#: ../terminal/terminal-window.c:290
+#: ../terminal/terminal-window.c:322
 msgid "_Copy"
 msgstr "Копиране"
 
-#: ../terminal/term

[Xfce4-commits] [apps/mousepad] branch master updated (deb4780 -> 328e17c)

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

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

  from  deb4780   I18n: Update translation da (100%).
   new  328e17c   I18n: Update translation pl (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/pl.po | 19 ++-
 1 file changed, 10 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] [apps/xfce4-terminal] branch master updated (4d50000 -> bc30a9d)

2017-01-19 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  4d5   Do not force show drop-down window on screen size change
   new  f667080   I18n: Update translation bg (100%).
   new  fcdec29   I18n: Update translation da (100%).
   new  bc30a9d   I18n: Update translation pl (100%).

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


Summary of changes:
 po/bg.po | 365 ---
 po/da.po |  10 +-
 po/pl.po |  45 
 3 files changed, 217 insertions(+), 203 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] 02/03: I18n: Update translation da (100%).

2017-01-19 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 fcdec2993ad68fb5cce7ec22bd1695a4137e6926
Author: Anonymous 
Date:   Fri Jan 20 00:31:08 2017 +0100

I18n: Update translation da (100%).

333 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 5330ade..9e5c23f 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-19 10:01+\n"
+"PO-Revision-Date: 2017-01-19 18:04+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -1370,7 +1370,7 @@ msgstr "_Delete-tasten generer:"
 
 #: ../terminal/terminal-preferences.glade.h:142
 msgid "_Reset compatibility options to defaults"
-msgstr "_Nulstil kompatibilitetsindstillinger til standardindstillinger"
+msgstr "_Nulstil kompatibilitetsindstillinger til standard"
 
 #: ../terminal/terminal-preferences.glade.h:143
 msgid "_Ambiguous-width characters:"
@@ -1389,15 +1389,15 @@ msgid ""
 "Consider the following\n"
 "characters part of a _word\n"
 "when double clicking:"
-msgstr ""
+msgstr "Betragt følgende\ntegn som del af et _ord\nved dobbeltklik:"
 
 #: ../terminal/terminal-preferences.glade.h:149
 msgid "Rese_t"
-msgstr ""
+msgstr "_Nulstil"
 
 #: ../terminal/terminal-preferences.glade.h:150
 msgid "Reset double click options to defaults"
-msgstr ""
+msgstr "Nulstil dobbeltklikindstillinger til standard"
 
 #: ../terminal/terminal-preferences.glade.h:151
 msgid "Double Click"

-- 
To stop receiving notification emails like this one, please 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 (2f47d3e -> 8bcc6fe)

2017-01-19 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  2f47d3e   I18n: Update translation da (100%).
   new  8bcc6fe   I18n: Update translation pl (92%).

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

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


[Xfce4-commits] [thunar-plugins/thunar-vcs-plugin] 01/01: I18n: Update translation pl (92%).

2017-01-19 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 8bcc6fe4a98c4329444756269e02eb8b138d1ad6
Author: m4sk1n 
Date:   Fri Jan 20 00:30:21 2017 +0100

I18n: Update translation pl (92%).

296 translated messages, 24 untranslated messages.

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

diff --git a/po/pl.po b/po/pl.po
index 4d04dd9..e8fb672 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,8 @@
 # elzear , 2014
 # Dawid, 2014
 # Kamil "elder" P. , 2016
-# Marcin XD , 2016
+# m4sk1n , 2017
+# m4sk1n , 2016
 # Paweł Klimek , 2014
 #  , 2009
 # Piotr Strębski , 2014-2015
@@ -16,8 +17,8 @@ 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: 2016-09-22 13:03+\n"
-"Last-Translator: Kamil \"elder\" P. \n"
+"PO-Revision-Date: 2017-01-19 19:16+\n"
+"Last-Translator: m4sk1n \n"
 "Language-Team: Polish 
(http://www.transifex.com/xfce/thunar-plugins/language/pl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -520,11 +521,11 @@ msgstr "Dodaj"
 
 #: ../tvp-git-helper/main.c:93 ../tvp-svn-helper/main.c:122
 msgid "Execute blame action"
-msgstr ""
+msgstr "Pokaż adnotacje"
 
 #: ../tvp-git-helper/main.c:99
 msgid "Execute branch action"
-msgstr ""
+msgstr "Rozgałęźnij"
 
 #: ../tvp-git-helper/main.c:105
 msgid "Execute clean action"
@@ -548,11 +549,11 @@ msgstr "Resetuj"
 
 #: ../tvp-git-helper/main.c:135
 msgid "Execute stash action"
-msgstr ""
+msgstr "Dodaj do schowka"
 
 #: ../tvp-git-helper/main.c:141 ../tvp-svn-helper/main.c:224
 msgid "Execute status action"
-msgstr ""
+msgstr "Stan"
 
 #: ../tvp-git-helper/main.c:153 ../tvp-svn-helper/main.c:259
 msgid "Add Related Options:"
@@ -560,11 +561,11 @@ msgstr "Opcje związane z dodawaniem:"
 
 #: ../tvp-git-helper/main.c:157 ../tvp-svn-helper/main.c:263
 msgid "Blame Related Options:"
-msgstr ""
+msgstr "Opcje związane z adnotacjami:"
 
 #: ../tvp-git-helper/main.c:161
 msgid "Branch Related Options:"
-msgstr ""
+msgstr "Opcje związane z rozgałęźnianiem:"
 
 #: ../tvp-git-helper/main.c:165 ../tvp-git-helper/main.c:169
 msgid "Clone Related Options:"
@@ -584,7 +585,7 @@ msgstr "Opcje związane z resetowaniem:"
 
 #: ../tvp-git-helper/main.c:185
 msgid "Stash Related Options:"
-msgstr ""
+msgstr "Opcje związane z przechowalnią:"
 
 #: ../tvp-git-helper/main.c:189 ../tvp-svn-helper/main.c:331
 msgid "Status Related Options:"
@@ -892,7 +893,7 @@ msgstr "Opcje związane z usuwaniem:"
 
 #: ../tvp-svn-helper/main.c:291
 msgid "Diff Related Options:"
-msgstr ""
+msgstr "Opcje związane z porównaniem różnic:"
 
 #: ../tvp-svn-helper/main.c:295
 msgid "Export Related Options:"
@@ -947,7 +948,7 @@ msgstr "Nie wprowadzono wystarczającej liczby warunków"
 
 #: ../tvp-svn-helper/tsh-blame.c:82
 msgid "Blame failed"
-msgstr ""
+msgstr "Funkcja 'blame' nie powiodła się"
 
 #: ../tvp-svn-helper/tsh-cleanup.c:68
 msgid "Cleanup failed"
@@ -1293,7 +1294,7 @@ msgstr "Usuń komentarz"
 
 #: ../tvp-svn-helper/tsh-diff.c:190
 msgid "Diff failed"
-msgstr ""
+msgstr "Diff nie powiódł się"
 
 #. Translators: svn recursion selection
 #. * Self means only this file/direcotry is shown

-- 
To stop receiving notification emails like this one, please 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: Do not force show drop-down window on screen size change

2017-01-19 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 4d5be7f24d637be70fbea6725f713afa10ad
Author: Igor 
Date:   Thu Jan 19 15:32:38 2017 +0300

Do not force show drop-down window on screen size change

Also do not force window focus.
Fixes https://bugzilla.xfce.org/show_bug.cgi?id=13295
---
 terminal/terminal-window-dropdown.c | 22 +-
 1 file changed, 13 insertions(+), 9 deletions(-)

diff --git a/terminal/terminal-window-dropdown.c 
b/terminal/terminal-window-dropdown.c
index 7861138..2fd51e8 100644
--- a/terminal/terminal-window-dropdown.c
+++ b/terminal/terminal-window-dropdown.c
@@ -80,7 +80,8 @@ static void 
terminal_window_dropdown_status_icon_popup_menu  (GtkStatusIcon
   
TerminalWindowDropdown *dropdown);
 static void terminal_window_dropdown_hide
(TerminalWindowDropdown *dropdown);
 static void terminal_window_dropdown_show
(TerminalWindowDropdown *dropdown,
-  guint32  
   timestamp);
+  guint32  
   timestamp,
+  gboolean 
   activate);
 static void terminal_window_dropdown_toggle_real 
(TerminalWindowDropdown *dropdown,
   guint32  
   timestamp,
   gboolean 
   force_show);
@@ -390,7 +391,7 @@ terminal_window_dropdown_set_property (GObject  *object,
 }
 
   if (gtk_widget_get_visible (GTK_WIDGET (dropdown)))
-terminal_window_dropdown_show (dropdown, 0);
+terminal_window_dropdown_show (dropdown, 0, TRUE);
 }
 
 
@@ -520,7 +521,7 @@ terminal_window_dropdown_status_icon_press_event 
(GtkStatusIcon  *status
   if (gdk_window_is_visible (gtk_widget_get_window (GTK_WIDGET (dropdown
 terminal_window_dropdown_hide (dropdown);
   else
-terminal_window_dropdown_show (dropdown, event->time);
+terminal_window_dropdown_show (dropdown, event->time, TRUE);
 
   return TRUE;
 }
@@ -710,7 +711,8 @@ terminal_window_dropdown_hide (TerminalWindowDropdown 
*dropdown)
 
 static void
 terminal_window_dropdown_show (TerminalWindowDropdown *dropdown,
-   guint32 timestamp)
+   guint32 timestamp,
+   gbooleanactivate)
 {
   TerminalWindow*window = TERMINAL_WINDOW (dropdown);
   gint   w, h;
@@ -826,7 +828,8 @@ terminal_window_dropdown_show (TerminalWindowDropdown 
*dropdown,
 gtk_window_move (GTK_WINDOW (dropdown), x_dest, y_dest);
 
   /* force focus to the window */
-  terminal_util_activate_window (GTK_WINDOW (dropdown));
+  if (activate)
+terminal_util_activate_window (GTK_WINDOW (dropdown));
 
   if (dropdown->animation_time > 0
   && vbox_h < h)
@@ -878,13 +881,13 @@ terminal_window_dropdown_toggle_real 
(TerminalWindowDropdown *dropdown,
 }
   else
 {
-  terminal_window_dropdown_show (dropdown, timestamp);
+  terminal_window_dropdown_show (dropdown, timestamp, TRUE);
 }
 }
   else
 {
   /* popup */
-  terminal_window_dropdown_show (dropdown, timestamp);
+  terminal_window_dropdown_show (dropdown, timestamp, TRUE);
 }
 }
 
@@ -924,7 +927,8 @@ terminal_dropdown_window_screen_size_changed (GdkScreen 
 *screen,
   TerminalWindowDropdown *dropdown)
 {
   /* resize/move terminal window due to a screen size change */
-  terminal_window_dropdown_show (dropdown, 0);
+  if (gtk_widget_get_visible (GTK_WIDGET (dropdown)))
+terminal_window_dropdown_show (dropdown, 0, FALSE);
 }
 
 
@@ -1062,5 +1066,5 @@ terminal_window_dropdown_update_geometry 
(TerminalWindowDropdown *dropdown)
   /* update geometry if toolbar or menu is shown */
   if (gtk_widget_get_visible (GTK_WIDGET (dropdown))
   && dropdown->animation_dir == ANIMATION_DIR_NONE)
-terminal_window_dropdown_show (dropdown, 0);
+terminal_window_dropdown_show (dropdown, 0, 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-terminal] branch master updated (bb1a45d -> 4d50000)

2017-01-19 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  bb1a45d   I18n: Update translation ru (100%).
   new  4d5   Do not force show drop-down window on screen size change

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-window-dropdown.c | 22 +-
 1 file changed, 13 insertions(+), 9 deletions(-)

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


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

2017-01-19 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 bb1a45d6286c08db89f6cea18918bbcd5080c2d6
Author: Igor 
Date:   Thu Jan 19 12:32:00 2017 +0100

I18n: Update translation ru (100%).

333 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/ru.po | 45 +
 1 file changed, 25 insertions(+), 20 deletions(-)

diff --git a/po/ru.po b/po/ru.po
index 4fa7455..4b9ab17 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -14,8 +14,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-01-13 18:30+0100\n"
-"PO-Revision-Date: 2017-01-14 07:50+\n"
+"POT-Creation-Date: 2017-01-18 18:31+0100\n"
+"PO-Revision-Date: 2017-01-19 06:25+\n"
 "Last-Translator: Igor \n"
 "Language-Team: Russian 
(http://www.transifex.com/xfce/xfce-apps/language/ru/)\n"
 "MIME-Version: 1.0\n"
@@ -1388,63 +1388,68 @@ msgstr "Со_вместимость"
 
 #: ../terminal/terminal-preferences.glade.h:146
 msgid ""
-"Consider the following characters part of a _word\n"
+"Consider the following\n"
+"characters part of a _word\n"
 "when double clicking:"
-msgstr "Считать следующие символы _частью слова\nпри двойном щелчке:"
-
-#: ../terminal/terminal-preferences.glade.h:148
-msgid "Rese_t double click options to defaults"
-msgstr "_Сбросить настройки двойного щелчка мыши"
+msgstr "Считать следующие\nсимволы _частью слова\nпри двойном щелчке:"
 
 #: ../terminal/terminal-preferences.glade.h:149
+msgid "Rese_t"
+msgstr "_Сброс"
+
+#: ../terminal/terminal-preferences.glade.h:150
+msgid "Reset double click options to defaults"
+msgstr "Сбросить настройки двойного щелчка мыши"
+
+#: ../terminal/terminal-preferences.glade.h:151
 msgid "Double Click"
 msgstr "Двойной щелчок"
 
-#: ../terminal/terminal-preferences.glade.h:150
+#: ../terminal/terminal-preferences.glade.h:152
 msgid "Default character e_ncoding:"
 msgstr "_Кодировка по умолчанию:"
 
-#: ../terminal/terminal-preferences.glade.h:151
+#: ../terminal/terminal-preferences.glade.h:153
 msgid "Encoding"
 msgstr "Кодировка"
 
-#: ../terminal/terminal-preferences.glade.h:152
+#: ../terminal/terminal-preferences.glade.h:154
 msgid "Disable all me_nu access keys (such as Alt+f)"
 msgstr "Отключить _все клавиши доступа к меню (например, Alt+f)"
 
-#: ../terminal/terminal-preferences.glade.h:153
+#: ../terminal/terminal-preferences.glade.h:155
 msgid "Disable m_enu shortcut key (F10 by default)"
 msgstr "Отключить быструю клавишу показа _меню (по умолчанию F10)"
 
-#: ../terminal/terminal-preferences.glade.h:154
+#: ../terminal/terminal-preferences.glade.h:156
 msgid "Disable _help window shortcut key (F1 by default)"
 msgstr "Отключить быструю клавишу показа _справки (по умолчанию F1)"
 
-#: ../terminal/terminal-preferences.glade.h:155
+#: ../terminal/terminal-preferences.glade.h:157
 msgid "Shortcuts"
 msgstr "Быстрые клавиши"
 
-#: ../terminal/terminal-preferences.glade.h:156
+#: ../terminal/terminal-preferences.glade.h:158
 msgid "Use _middle mouse click to close tabs"
 msgstr "Закрывать вкладки по щелчку с_редней кнопки мыши"
 
-#: ../terminal/terminal-preferences.glade.h:157
+#: ../terminal/terminal-preferences.glade.h:159
 msgid "Auto-hi_de mouse pointer"
 msgstr "Пр_ятать курсор мыши"
 
-#: ../terminal/terminal-preferences.glade.h:158
+#: ../terminal/terminal-preferences.glade.h:160
 msgid "Re_wrap terminal contents on resize"
 msgstr "_Переносить содержимое терминала при изменении размера"
 
-#: ../terminal/terminal-preferences.glade.h:159
+#: ../terminal/terminal-preferences.glade.h:161
 msgid "Automatically _copy selection to clipboard"
 msgstr "Автоматически копировать выделение в бу_фер обмена"
 
-#: ../terminal/terminal-preferences.glade.h:160
+#: ../terminal/terminal-preferences.glade.h:162
 msgid "Misc"
 msgstr "Разное"
 
-#: ../terminal/terminal-preferences.glade.h:161
+#: ../terminal/terminal-preferences.glade.h:163
 msgid "Ad_vanced"
 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] [panel-plugins/xfce4-weather-plugin] 01/01: I18n: Update translation da (82%).

2017-01-19 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 ff6122c5c0ea6e09e50ec163d61b86ebe75feb09
Author: Anonymous 
Date:   Thu Jan 19 12:32:36 2017 +0100

I18n: Update translation da (82%).

273 translated messages, 57 untranslated 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 44a17de..55d564a 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-18 14:37+\n"
+"PO-Revision-Date: 2017-01-19 10:07+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -530,7 +530,7 @@ msgstr "Hectopascal (hPa)"
 
 #: ../panel-plugin/weather-config.c:980
 msgid "Inches of mercury (inHg)"
-msgstr "Tommer af kviksølv (tom. Hg)"
+msgstr "Tommer af kviksølv (tommmer Hg)"
 
 #: ../panel-plugin/weather-config.c:982
 msgid "Pound-force per square inch (psi)"

-- 
To stop receiving notification emails like this one, please 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 (8d49849 -> af76c7f)

2017-01-19 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  8d49849   I18n: Update translation da (100%).
   new  af76c7f   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/01: I18n: Update translation da (100%).

2017-01-19 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 af76c7fb9cf81b8ead89719d4aa26150f2f73909
Author: Anonymous 
Date:   Thu Jan 19 12:32:45 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 801fd2e..b5db7af 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-17 13:23+\n"
+"PO-Revision-Date: 2017-01-19 10:04+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfdesktop/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -261,7 +261,7 @@ msgstr "Anvend på alle _arbejdsområder"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:23
 msgid "Change the _background "
-msgstr "Udskift _baggrunden"
+msgstr "Udskift _baggrunden "
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:24
 msgid ""
@@ -850,7 +850,7 @@ msgstr "De valgte filer kunne ikke slettes"
 
 #: ../src/xfdesktop-file-utils.c:881
 msgid "The selected files could not be moved to the trash"
-msgstr "De valgte filer kunne ikke flyttes til papirkurven."
+msgstr "De valgte filer kunne ikke flyttes til papirkurven"
 
 #: ../src/xfdesktop-file-utils.c:882 ../src/xfdesktop-file-utils.c:919
 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/xfce4-terminal] branch master updated (78570a7 -> bb1a45d)

2017-01-19 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  78570a7   I18n: Update translation pl (100%).
   new  b6536b9   I18n: Update translation da (99%).
   new  ad9890f   I18n: Update translation fr (100%).
   new  460b159   I18n: Update translation kk (100%).
   new  bb1a45d   I18n: Update translation ru (100%).

The 4 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 |  47 
 po/fr.po |  45 
 po/kk.po | 365 ---
 po/ru.po |  45 
 4 files changed, 263 insertions(+), 239 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] 02/04: I18n: Update translation fr (100%).

2017-01-19 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 ad9890ffb69e8f592fb5cb65d44a454d9c288f02
Author: Yannick Le Guen 
Date:   Thu Jan 19 12:32:00 2017 +0100

I18n: Update translation fr (100%).

333 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/fr.po | 45 +
 1 file changed, 25 insertions(+), 20 deletions(-)

diff --git a/po/fr.po b/po/fr.po
index 0a2b07f..9f2aed8 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -18,8 +18,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-01-13 18:30+0100\n"
-"PO-Revision-Date: 2017-01-14 08:51+\n"
+"POT-Creation-Date: 2017-01-18 18:31+0100\n"
+"PO-Revision-Date: 2017-01-19 10:13+\n"
 "Last-Translator: Yannick Le Guen \n"
 "Language-Team: French 
(http://www.transifex.com/xfce/xfce-apps/language/fr/)\n"
 "MIME-Version: 1.0\n"
@@ -1392,63 +1392,68 @@ msgstr "Co_mpatibilité"
 
 #: ../terminal/terminal-preferences.glade.h:146
 msgid ""
-"Consider the following characters part of a _word\n"
+"Consider the following\n"
+"characters part of a _word\n"
 "when double clicking:"
-msgstr "Lors d'un doucle-clic, considérer que les caractères\nsuivants font 
partie d'un _mot :"
-
-#: ../terminal/terminal-preferences.glade.h:148
-msgid "Rese_t double click options to defaults"
-msgstr "_Réinitialiser les options de double clic aux valeurs par défaut"
+msgstr "Considérer les caractères suivants\ncomme faisant partie d’un 
_mot\nlors d’un double clic"
 
 #: ../terminal/terminal-preferences.glade.h:149
+msgid "Rese_t"
+msgstr "Réini_tialiser"
+
+#: ../terminal/terminal-preferences.glade.h:150
+msgid "Reset double click options to defaults"
+msgstr "Réinitialiser les options de double clic aux valeurs par défaut"
+
+#: ../terminal/terminal-preferences.glade.h:151
 msgid "Double Click"
 msgstr "Double clic"
 
-#: ../terminal/terminal-preferences.glade.h:150
+#: ../terminal/terminal-preferences.glade.h:152
 msgid "Default character e_ncoding:"
 msgstr "Encodage des caractères par défaut :"
 
-#: ../terminal/terminal-preferences.glade.h:151
+#: ../terminal/terminal-preferences.glade.h:153
 msgid "Encoding"
 msgstr "Encodage"
 
-#: ../terminal/terminal-preferences.glade.h:152
+#: ../terminal/terminal-preferences.glade.h:154
 msgid "Disable all me_nu access keys (such as Alt+f)"
 msgstr "Désactiver les touches d'accès des me_nus (comme Alt+f)"
 
-#: ../terminal/terminal-preferences.glade.h:153
+#: ../terminal/terminal-preferences.glade.h:155
 msgid "Disable m_enu shortcut key (F10 by default)"
 msgstr "Désactiver le raccourci clavier du m_enu (F10 par défaut)"
 
-#: ../terminal/terminal-preferences.glade.h:154
+#: ../terminal/terminal-preferences.glade.h:156
 msgid "Disable _help window shortcut key (F1 by default)"
 msgstr "Désactiver le raccourci clavier de la fenêtre d'_aide (F1 par défaut)"
 
-#: ../terminal/terminal-preferences.glade.h:155
+#: ../terminal/terminal-preferences.glade.h:157
 msgid "Shortcuts"
 msgstr "Raccourcis"
 
-#: ../terminal/terminal-preferences.glade.h:156
+#: ../terminal/terminal-preferences.glade.h:158
 msgid "Use _middle mouse click to close tabs"
 msgstr "Utiliser le clic _molette pour fermer les onglets"
 
-#: ../terminal/terminal-preferences.glade.h:157
+#: ../terminal/terminal-preferences.glade.h:159
 msgid "Auto-hi_de mouse pointer"
 msgstr "Mas_quer automatiquement le pointeur de la souris"
 
-#: ../terminal/terminal-preferences.glade.h:158
+#: ../terminal/terminal-preferences.glade.h:160
 msgid "Re_wrap terminal contents on resize"
 msgstr "Réarran_ger le contenu du terminal lors d’un redimensionnement"
 
-#: ../terminal/terminal-preferences.glade.h:159
+#: ../terminal/terminal-preferences.glade.h:161
 msgid "Automatically _copy selection to clipboard"
 msgstr "_Copier automatiquement la sélection vers le presse-papiers"
 
-#: ../terminal/terminal-preferences.glade.h:160
+#: ../terminal/terminal-preferences.glade.h:162
 msgid "Misc"
 msgstr "Divers"
 
-#: ../terminal/terminal-preferences.glade.h:161
+#: ../terminal/terminal-preferences.glade.h:163
 msgid "Ad_vanced"
 msgstr "A_vancé"
 

-- 
To stop receiving notification emails like this one, please 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 (8286118 -> ff6122c)

2017-01-19 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  8286118   I18n: Update translation da (82%).
   new  ff6122c   I18n: Update translation da (82%).

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

2017-01-19 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 b6536b93e2a0363f15c8c350e4ab885895abd54d
Author: Anonymous 
Date:   Thu Jan 19 12:32:00 2017 +0100

I18n: Update translation da (99%).

330 translated messages, 3 untranslated messages.

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

diff --git a/po/da.po b/po/da.po
index 29c062f..5330ade 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,8 +12,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-01-13 18:30+0100\n"
-"PO-Revision-Date: 2017-01-17 11:40+\n"
+"POT-Creation-Date: 2017-01-18 18:31+0100\n"
+"PO-Revision-Date: 2017-01-19 10:01+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -729,7 +729,7 @@ msgstr "_Skrivebeskyttet"
 
 #: ../terminal/terminal-window.c:356
 msgid "Toggle read-only mode"
-msgstr "Skrivebeskyttet-tilstand (til/fra)"
+msgstr "Skrivebeskyttet-tilstand til/fra"
 
 #. create encoding action
 #: ../terminal/terminal-window.c:510
@@ -1386,63 +1386,68 @@ msgstr "Ko_mpatibilitet"
 
 #: ../terminal/terminal-preferences.glade.h:146
 msgid ""
-"Consider the following characters part of a _word\n"
+"Consider the following\n"
+"characters part of a _word\n"
 "when double clicking:"
-msgstr "Betragt følgende tegn som del af et _ord\nved dobbeltklik:"
-
-#: ../terminal/terminal-preferences.glade.h:148
-msgid "Rese_t double click options to defaults"
-msgstr "_Stil dobbeltklik indstillingerne tilbage til standard"
+msgstr ""
 
 #: ../terminal/terminal-preferences.glade.h:149
+msgid "Rese_t"
+msgstr ""
+
+#: ../terminal/terminal-preferences.glade.h:150
+msgid "Reset double click options to defaults"
+msgstr ""
+
+#: ../terminal/terminal-preferences.glade.h:151
 msgid "Double Click"
 msgstr "Dobbeltklik"
 
-#: ../terminal/terminal-preferences.glade.h:150
+#: ../terminal/terminal-preferences.glade.h:152
 msgid "Default character e_ncoding:"
 msgstr "Standard tekst_kodning:"
 
-#: ../terminal/terminal-preferences.glade.h:151
+#: ../terminal/terminal-preferences.glade.h:153
 msgid "Encoding"
 msgstr "Indkodning"
 
-#: ../terminal/terminal-preferences.glade.h:152
+#: ../terminal/terminal-preferences.glade.h:154
 msgid "Disable all me_nu access keys (such as Alt+f)"
 msgstr "Deaktivér alle me_nuaktiveringstaster (såsom Alt-f)"
 
-#: ../terminal/terminal-preferences.glade.h:153
+#: ../terminal/terminal-preferences.glade.h:155
 msgid "Disable m_enu shortcut key (F10 by default)"
 msgstr "Deaktivér genvejstast for m_enu (F10 som standard)"
 
-#: ../terminal/terminal-preferences.glade.h:154
+#: ../terminal/terminal-preferences.glade.h:156
 msgid "Disable _help window shortcut key (F1 by default)"
 msgstr "Deaktivér genvejstast for _hjælp-vindue (F1 som standard)"
 
-#: ../terminal/terminal-preferences.glade.h:155
+#: ../terminal/terminal-preferences.glade.h:157
 msgid "Shortcuts"
 msgstr "Genveje"
 
-#: ../terminal/terminal-preferences.glade.h:156
+#: ../terminal/terminal-preferences.glade.h:158
 msgid "Use _middle mouse click to close tabs"
 msgstr "Brug _mellem museklik for at lukke faneblade"
 
-#: ../terminal/terminal-preferences.glade.h:157
+#: ../terminal/terminal-preferences.glade.h:159
 msgid "Auto-hi_de mouse pointer"
 msgstr "Skjul automatisk musens _markør"
 
-#: ../terminal/terminal-preferences.glade.h:158
+#: ../terminal/terminal-preferences.glade.h:160
 msgid "Re_wrap terminal contents on resize"
 msgstr "_Genombryd terminalens indhold ved ændring af størrelse"
 
-#: ../terminal/terminal-preferences.glade.h:159
+#: ../terminal/terminal-preferences.glade.h:161
 msgid "Automatically _copy selection to clipboard"
 msgstr "_Kopiér automatisk markering til udklipsholder"
 
-#: ../terminal/terminal-preferences.glade.h:160
+#: ../terminal/terminal-preferences.glade.h:162
 msgid "Misc"
 msgstr "Diverse"
 
-#: ../terminal/terminal-preferences.glade.h:161
+#: ../terminal/terminal-preferences.glade.h:163
 msgid "Ad_vanced"
 msgstr "A_vanceret"
 

-- 
To stop receiving notification emails like this one, please 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] 03/04: I18n: Update translation kk (100%).

2017-01-19 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 460b159bc74b1a6a9d48d1c39ceda91e404c684b
Author: Baurzhan Muftakhidinov 
Date:   Thu Jan 19 12:32:00 2017 +0100

I18n: Update translation kk (100%).

333 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/kk.po | 365 ---
 1 file changed, 187 insertions(+), 178 deletions(-)

diff --git a/po/kk.po b/po/kk.po
index 86b7436..0c16ba2 100644
--- a/po/kk.po
+++ b/po/kk.po
@@ -3,13 +3,13 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Baurzhan Muftakhidinov , 2009,2013-2014,2016
+# Baurzhan Muftakhidinov , 2009,2013-2014,2016-2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-12-18 18:30+0100\n"
-"PO-Revision-Date: 2016-12-23 05:12+\n"
+"POT-Creation-Date: 2017-01-18 18:31+0100\n"
+"PO-Revision-Date: 2017-01-19 06:43+\n"
 "Last-Translator: Baurzhan Muftakhidinov \n"
 "Language-Team: Kazakh 
(http://www.transifex.com/xfce/xfce-apps/language/kk/)\n"
 "MIME-Version: 1.0\n"
@@ -161,7 +161,7 @@ msgstr "Ақаулықтар жөнінде хабарлаңыз: <%s>."
 msgid "Unable to register terminal service: %s\n"
 msgstr "Терминал қызметін тіркеу мүмкін емес: %s\n"
 
-#: ../terminal/terminal-app.c:870
+#: ../terminal/terminal-app.c:875
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "Қате geometry жолы \"%s\"\n"
@@ -361,19 +361,19 @@ msgstr "\"--zoom\" опциясы масштабтың (%d .. %d) парамет
 msgid "Unknown option \"%s\""
 msgstr "Белгісіз опция \"%s\""
 
-#: ../terminal/terminal-preferences-dialog.c:355
+#: ../terminal/terminal-preferences-dialog.c:358
 msgid "All Files"
 msgstr "Барлығы"
 
-#: ../terminal/terminal-preferences-dialog.c:361
+#: ../terminal/terminal-preferences-dialog.c:364
 msgid "Image Files"
 msgstr "Сурет файлдары"
 
-#: ../terminal/terminal-preferences-dialog.c:786
+#: ../terminal/terminal-preferences-dialog.c:789
 msgid "Load Presets..."
 msgstr "Сақталған баптауларды жүктеу..."
 
-#: ../terminal/terminal-preferences.c:1029
+#: ../terminal/terminal-preferences.c:1051
 msgid "Terminal"
 msgstr "Терминал"
 
@@ -399,7 +399,7 @@ msgstr "Бұл бетті жабу"
 msgid "Find"
 msgstr "Табу"
 
-#: ../terminal/terminal-search-dialog.c:93 ../terminal/terminal-window.c:1864
+#: ../terminal/terminal-search-dialog.c:93 ../terminal/terminal-window.c:1928
 msgid "_Close"
 msgstr "_Жабу"
 
@@ -487,299 +487,299 @@ msgstr "Қате түс туралы ақпараты алынды:  Қате п
 msgid "Failed to open the URL '%s'"
 msgstr "'%s' URL-ын ашу сәтсіз аяқталды"
 
-#: ../terminal/terminal-window-dropdown.c:257
+#: ../terminal/terminal-window-dropdown.c:262
 msgid "Keep window open when it loses focus"
 msgstr "Терезе фокус жоғалтқан кезде оны ашық түрінде ұстау"
 
-#: ../terminal/terminal-window-dropdown.c:348
+#: ../terminal/terminal-window-dropdown.c:353
 msgid "Drop-down Terminal"
 msgstr "Түспелі терминал"
 
-#: ../terminal/terminal-window-dropdown.c:349
+#: ../terminal/terminal-window-dropdown.c:354
 msgid "Toggle Drop-down Terminal"
 msgstr "Түспелі терминалды іске қосу/сөндіру"
 
-#: ../terminal/terminal-window.c:281
+#: ../terminal/terminal-window.c:313
 msgid "_File"
 msgstr "_Файл"
 
-#: ../terminal/terminal-window.c:282
+#: ../terminal/terminal-window.c:314
 msgid "Open _Tab"
 msgstr "_Бетті ашу"
 
-#: ../terminal/terminal-window.c:282
+#: ../terminal/terminal-window.c:314
 msgid "Open a new terminal tab"
 msgstr "Жаңа терминал бетін ашады"
 
-#: ../terminal/terminal-window.c:283
+#: ../terminal/terminal-window.c:315
 msgid "Open T_erminal"
 msgstr "Т_ерминалды ашу"
 
-#: ../terminal/terminal-window.c:283
+#: ../terminal/terminal-window.c:315
 msgid "Open a new terminal window"
 msgstr "Жаңа терминал терезесін ашады"
 
-#: ../terminal/terminal-window.c:284
+#: ../terminal/terminal-window.c:316
 msgid "_Undo Close Tab"
 msgstr "Жабылған бетті қа_йтару"
 
-#: ../terminal/terminal-window.c:285
+#: ../terminal/terminal-window.c:317
 msgid "_Detach Tab"
 msgstr "Бетті бө_ліп жіберу"
 
-#: ../terminal/terminal-window.c:286 ../terminal/terminal-window.c:648
+#: ../terminal/terminal-window.c:318 ../terminal/terminal-window.c:710
 msgid "Close T_ab"
 msgstr "Бет_ті жабу"
 
-#: ../terminal/terminal-window.c:287
+#: ../terminal/terminal-window.c:319
 msgid "Close Other Ta_bs"
 msgstr "Басқа бет_терді жабу"
 
-#: ../terminal/terminal-window.c:288 ../terminal/terminal-window.c:651
+#: ../terminal/terminal-window.c:320 ../terminal/terminal-window.c:713
 msgid "Close _Window"
 msgstr "Тере_зені жабу"
 
-#: ../terminal/terminal-window.c:289
+#: ../terminal/terminal-window.c:321
 msgid "_Edit"
 msgstr "Түз_ету"
 
-#: ../terminal/terminal-window.c:290
+#: ../terminal/terminal-window.c:322
 msgid "_Copy"
 msgstr "_Көшіру"
 
-#: ../terminal/terminal-window.c:290
+#: ../termina

[Xfce4-commits] [apps/squeeze] branch master updated (5cbaaf1 -> 29ffb60)

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

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

  from  5cbaaf1   I18n: Update translation da (100%).
   new  29ffb60   I18n: Update translation da (100%).

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


Summary of changes:
 po/da.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


[Xfce4-commits] [apps/ristretto] branch master updated (2192e1c -> c02ec59)

2017-01-19 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  2192e1c   I18n: Update translation da (100%).
   new  c02ec59   I18n: Update translation da (100%).

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


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

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


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

2017-01-19 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 c02ec59bd1adb86b7f4515e908bd94240c8d6250
Author: Anonymous 
Date:   Thu Jan 19 12:31:40 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 b65bca3..4a17392 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-17 12:24+\n"
+"PO-Revision-Date: 2017-01-19 09:56+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -731,7 +731,7 @@ msgstr "Ur"
 msgid ""
 "Show an analog clock that displays the current time when the window is "
 "fullscreen"
-msgstr "Miniaturebjælken kan skjules automatisk \nnår billedviseren er i 
fuldskærmtilstand."
+msgstr "Miniaturebjælken kan skjules automatisk \nnår billedviseren er i 
fuldskærmtilstand"
 
 #: ../src/preferences_dialog.c:358
 msgid "Show Fullscreen Clock"

-- 
To stop receiving notification emails like this one, please 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-19 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 5162a8d36dff175724a3ed44c6991d9148daadc7
Author: Anonymous 
Date:   Thu Jan 19 12:31:20 2017 +0100

I18n: Update translation da (100%).

175 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 0fed374..349d0b6 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-17 13:18+\n"
+"PO-Revision-Date: 2017-01-19 10:37+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-session/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -445,7 +445,7 @@ msgstr "Vælg den session du vil genskabe. Du kan 
dobbeltklikke på sessionsnavn
 #. "Logout" button
 #: ../xfce4-session/xfsm-chooser.c:201
 msgid "Log out"
-msgstr "Logud"
+msgstr "Log ud"
 
 #: ../xfce4-session/xfsm-chooser.c:203
 msgid "Cancel the login attempt and return to the login screen."
@@ -559,14 +559,14 @@ msgstr "Sessionhåndtering skal være ledig, når der 
anmodes om at lukke ned"
 #: ../xfce4-session/xfsm-logout-dialog.c:182
 #, c-format
 msgid "Log out %s"
-msgstr "Logud %s"
+msgstr "Log ud %s"
 
 #. *
 #. * Logout
 #. *
 #: ../xfce4-session/xfsm-logout-dialog.c:224
 msgid "_Log Out"
-msgstr "_Logud"
+msgstr "_Log ud"
 
 #: ../xfce4-session/xfsm-logout-dialog.c:244
 msgid "_Restart"
@@ -727,31 +727,31 @@ msgstr "Ukendt luk ned metode %d"
 
 #: ../xfce4-session-logout/main.c:68
 msgid "Log out without displaying the logout dialog"
-msgstr "Logud uden at vise dialogen logud"
+msgstr "Log ud uden at vise dialogen log ud"
 
 #: ../xfce4-session-logout/main.c:72
 msgid "Halt without displaying the logout dialog"
-msgstr "Luk ned uden at vise dialogen logud"
+msgstr "Luk ned uden at vise dialogen log ud"
 
 #: ../xfce4-session-logout/main.c:76
 msgid "Reboot without displaying the logout dialog"
-msgstr "Genstart uden at vise dialogen logud"
+msgstr "Genstart uden at vise dialogen log ud"
 
 #: ../xfce4-session-logout/main.c:80
 msgid "Suspend without displaying the logout dialog"
-msgstr "Til hviletilstand uden at vise dialogen logud"
+msgstr "Til hviletilstand uden at vise dialogen log ud"
 
 #: ../xfce4-session-logout/main.c:84
 msgid "Hibernate without displaying the logout dialog"
-msgstr "Til dvaletilstand uden at vise dialogen logud"
+msgstr "Til dvaletilstand uden at vise dialogen log ud"
 
 #: ../xfce4-session-logout/main.c:88
 msgid "Switch user without displaying the logout dialog"
-msgstr "Skift bruger uden at vise dialogen logud"
+msgstr "Skift bruger uden at vise dialogen log ud"
 
 #: ../xfce4-session-logout/main.c:92
 msgid "Log out quickly; don't save the session"
-msgstr "Logud hurtigt; undlad at gemme sessionen"
+msgstr "Log ud hurtigt; undlad at gemme sessionen"
 
 #: ../xfce4-session-logout/main.c:115
 msgid "Unknown error"
@@ -767,7 +767,7 @@ msgstr "og Brian Tarricone ."
 
 #: ../xfce4-session-logout/main.c:162 ../xfce4-session-logout/main.c:262
 msgid "Received error while trying to log out"
-msgstr "Modtog fejl under forsøg på logud"
+msgstr "Modtog fejl under forsøg på log ud"
 
 #: ../xfce4-session-logout/main.c:229
 #, c-format
@@ -776,7 +776,7 @@ msgstr "Der opstod en fejl, da du forsøgte at logge ud. 
Fejlen var %s"
 
 #: ../xfce4-session-logout/xfce4-session-logout.desktop.in.h:1
 msgid "Log Out"
-msgstr "Logud"
+msgstr "Log ud"
 
 #: ../xfce4-session-logout/xfce4-session-logout.desktop.in.h:2
 msgid "Log out of the Xfce Desktop"

-- 
To stop receiving notification emails like this one, please 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/squeeze] 01/01: I18n: Update translation da (100%).

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

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

commit 29ffb60fb171ada1b820b0d784dd5f7f9285b890
Author: Anonymous 
Date:   Thu Jan 19 12:31:46 2017 +0100

I18n: Update translation da (100%).

93 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 0beff0d..231995e 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: 2014-10-31 18:30+0100\n"
-"PO-Revision-Date: 2017-01-17 12:24+\n"
+"PO-Revision-Date: 2017-01-19 09:58+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"

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


[Xfce4-commits] [xfce/xfce4-appfinder] branch master updated (40ce9ff -> b201546)

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

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

  from  40ce9ff   I18n: Update translation da (100%).
   new  b201546   I18n: Update translation da (100%).

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


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

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


[Xfce4-commits] [xfce/tumbler] branch master updated (2b7a84a -> 3d59033)

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

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

  from  2b7a84a   I18n: Update translation da (100%).
   new  3d59033   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/xfce4-session] branch master updated (f2d8603 -> 5162a8d)

2017-01-19 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  f2d8603   I18n: Update translation da (100%).
   new  5162a8d   I18n: Update translation da (100%).

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


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

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


[Xfce4-commits] [apps/mousepad] branch master updated (e960d22 -> deb4780)

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

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

  from  e960d22   I18n: Update translation da (100%).
   new  deb4780   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/mousepad] 01/01: I18n: Update translation da (100%).

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

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

commit deb47809d644ff24c01a1f6c751eacdd0d00c336
Author: Anonymous 
Date:   Thu Jan 19 12:31:32 2017 +0100

I18n: Update translation da (100%).

306 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 23e8ddd..9302639 100644
--- a/po/da.po
+++ b/po/da.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-07-15 06:30+0200\n"
-"PO-Revision-Date: 2017-01-16 11:10+\n"
+"PO-Revision-Date: 2017-01-19 10:01+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -693,7 +693,7 @@ msgstr "Filtype: Ingen"
 
 #: ../mousepad/mousepad-statusbar.c:165
 msgid "Toggle the overwrite mode"
-msgstr "Overskrivningstilstand (til/fra)"
+msgstr "Overskrivningstilstand til/fra"
 
 #. overwrite label
 #: ../mousepad/mousepad-statusbar.c:170
@@ -1178,7 +1178,7 @@ msgstr "Ombryd _ord"
 
 #: ../mousepad/mousepad-window.c:478
 msgid "Toggle breaking lines in between words"
-msgstr "Bryder linjer mellem ord (til/fra)"
+msgstr "Bryder linjer mellem ord til/fra"
 
 #: ../mousepad/mousepad-window.c:479
 msgid "Write Unicode _BOM"

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


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

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

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

commit b201546b1849d956da1820089df260f010bbe410
Author: Anonymous 
Date:   Thu Jan 19 12:30:59 2017 +0100

I18n: Update translation da (100%).

71 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 1da8937..7b11f9b 100644
--- a/po/da.po
+++ b/po/da.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-appfinder\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-02-28 18:30+0100\n"
-"PO-Revision-Date: 2017-01-17 13:26+\n"
+"PO-Revision-Date: 2017-01-19 10:31+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-appfinder/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -330,4 +330,4 @@ msgid ""
 "on your system and the quickly execute commands. It can also be used to "
 "quickly add launchers to the Xfce Panel by dragging an item from the view "
 "and drop it on the panel."
-msgstr "Programfinderen er et redskab til hurtigt at finde of starte 
installerede programmer på systemet og nemt afvikle kommandoer. Den kan også 
bruges til hurtigt at tilføje programstartere til Xfce-panelet ved at trække et 
element fra oversigten og sætte det på panelet."
+msgstr "Programfinderen er et redskab til hurtigt at finde og starte 
installerede programmer på systemet og nemt afvikle kommandoer. Den kan også 
bruges til hurtigt at tilføje programstartere til Xfce-panelet ved at trække et 
element fra oversigten og sætte det på panelet."

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


[Xfce4-commits] [xfce/thunar-volman] branch master updated (687449e -> 6af3640)

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

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

  from  687449e   I18n: Update translation da (100%).
   new  6af3640   I18n: Update translation da (100%).

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


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

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


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

2017-01-19 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 139a0949ea0ffb7efdb121fb4e159718548cdeb2
Author: Anonymous 
Date:   Thu Jan 19 12:31:07 2017 +0100

I18n: Update translation da (100%).

395 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 58bbe43..42bcd8e 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-16 13:07+\n"
+"PO-Revision-Date: 2017-01-19 10:34+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-panel/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -77,7 +77,7 @@ msgstr "Paneli_ndstillinger..."
 #. logout item
 #: ../libxfce4panel/xfce-panel-plugin.c:1267 ../panel/panel-window.c:2666
 msgid "Log _Out"
-msgstr "_Logud"
+msgstr "_Log ud"
 
 #: ../panel/main.c:80
 msgid "Show the 'Panel Preferences' dialog"
@@ -182,7 +182,7 @@ msgstr "Kunne ikke sende D-bus-besked"
 msgid ""
 "Do you want to start the panel? If you do, make sure you save the session on"
 " logout, so the panel is automatically started the next time you login."
-msgstr "Ønsker du at starte panelet? Hvis du vil det skal du huske at gemme 
sessionen ved logud. Det vil sikre dig at panelet vil blive startet automatisk 
næste gang ved logind."
+msgstr "Ønsker du at starte panelet? Hvis du gør det skal du huske at gemme 
sessionen når du logger ud, så panelet startes automatisk næste gang du logger 
ind."
 
 #: ../panel/main.c:407 ../panel/main.c:421
 #, c-format
@@ -714,11 +714,11 @@ msgstr "Sessionsmenu"
 
 #: ../plugins/actions/actions.c:151
 msgid "Log Out"
-msgstr "Logud"
+msgstr "Log ud"
 
 #: ../plugins/actions/actions.c:152
 msgid "_Log Out"
-msgstr "_Logud"
+msgstr "_Log ud"
 
 #: ../plugins/actions/actions.c:153
 msgid "Are you sure you want to log out?"
@@ -731,11 +731,11 @@ msgstr "Logger ud om %d sekunder."
 
 #: ../plugins/actions/actions.c:159
 msgid "Log Out..."
-msgstr "Logud..."
+msgstr "Log ud..."
 
 #: ../plugins/actions/actions.c:160
 msgid "Log _Out..."
-msgstr "_Logud..."
+msgstr "_Log ud..."
 
 #: ../plugins/actions/actions.c:166
 msgid "Switch User"

-- 
To stop receiving notification emails like this one, please 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 (8f23da7 -> 139a094)

2017-01-19 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  8f23da7   I18n: Update translation da (100%).
   new  139a094   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] [thunar-plugins/thunar-archive-plugin] branch master updated (c00b1e8 -> c561e68)

2017-01-19 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-archive-plugin.

  from  c00b1e8   I18n: Update translation ca (100%).
   new  c561e68   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 | 45 +
 1 file changed, 21 insertions(+), 24 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 da (100%).

2017-01-19 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 85925aa150adca7aae2302b7488dfec3e8271910
Author: Anonymous 
Date:   Thu Jan 19 12:30:17 2017 +0100

I18n: Update translation da (100%).

174 translated messages.

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

diff --git a/po/da.po b/po/da.po
index a3ef363..72897be 100644
--- a/po/da.po
+++ b/po/da.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Libxfce4ui\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-06-09 00:30+0200\n"
-"PO-Revision-Date: 2017-01-17 13:03+\n"
+"PO-Revision-Date: 2017-01-19 10:21+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/libxfce4ui/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -98,7 +98,7 @@ msgstr "Slå sessionshåndtering fra"
 
 #: ../libxfce4ui/xfce-sm-client.c:1435
 msgid "Session management options"
-msgstr "Tilvalg for sessionshåndtering:"
+msgstr "Tilvalg for sessionshåndtering"
 
 #: ../libxfce4ui/xfce-sm-client.c:1436
 msgid "Show session management options"
@@ -269,11 +269,11 @@ msgstr "Luk vindue"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:47
 msgid "Maximize window horizontally"
-msgstr "Maksimer vindue horisontalt"
+msgstr "Maksimer vindue vandret"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:48
 msgid "Maximize window vertically"
-msgstr "Maksimer vindue vertikalt"
+msgstr "Maksimer vindue lodret"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:49
 msgid "Maximize window"
@@ -317,11 +317,11 @@ msgstr "Udfyld vindue"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:59
 msgid "Fill window horizontally"
-msgstr "Udfyld vinduet horisontalt"
+msgstr "Udfyld vinduet vandret"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:60
 msgid "Fill window vertically"
-msgstr "Fyld vinduet vertikalt"
+msgstr "Fyld vinduet lodret"
 
 #: ../libxfce4kbd-private/xfce-shortcuts-xfwm4.c:61
 msgid "Toggle above"
@@ -599,7 +599,7 @@ msgstr "Systemindstilling"
 msgid ""
 "Configuration system to control various aspects of the desktop like "
 "appearance, display, keyboard and mouse settings."
-msgstr "Instillingssystem for at håndtere forskellige dele af skrivebordet som 
fremkost-, visning-, tastatur- og museindstillinger."
+msgstr "Indstillingssystem for at håndtere forskellige dele af skrivebordet 
som fremkost-, visning-, tastatur- og museindstillinger."
 
 #: ../xfce4-about/main.c:99
 msgid "Application Finder"
@@ -739,7 +739,7 @@ msgstr "Servere vedligeholdes af"
 
 #: ../xfce4-about/contributors.h:137
 msgid "Goodies supervision"
-msgstr "Goodies vedledning"
+msgstr "Goodies vejledning"
 
 #: ../xfce4-about/contributors.h:140
 msgid "Translations supervision"
@@ -798,7 +798,7 @@ msgstr "Licens"
 msgid ""
 "A file named \"%s\" already exists in this directory, the file hasn't been "
 "added."
-msgstr "En fil ved navn \\\"%s\\\" findes allerede i denne mappe. Filen er 
ikke blevet tilføjet."
+msgstr "En fil ved navn \"%s\" findes allerede i denne mappe. Filen er ikke 
blevet tilføjet."
 
 #: ../tests/test-ui.c:149
 msgid "Failed to migrate the old panel configuration"

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


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

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

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

commit 6af36405fff6e6e6f4a69e15e4133990cc64de84
Author: Anonymous 
Date:   Thu Jan 19 12:30:42 2017 +0100

I18n: Update translation da (100%).

112 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 c086b37..9ed091b 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Thunar-volman\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-02-26 18:30+0100\n"
-"PO-Revision-Date: 2017-01-14 10:10+\n"
+"PO-Revision-Date: 2017-01-19 10:27+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/thunar-volman/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -471,11 +471,11 @@ msgstr "Palm™"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:458
 msgid "Sync _Palm™ devices when connected"
-msgstr "Synkronisér_Palm™-enheder ved tilslutning"
+msgstr "Synkronisér _Palm™-enheder ved tilslutning"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:480
 msgid "Pocket PCs"
-msgstr "Lomme-PCere"
+msgstr "Lomme-PCer"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:497
 msgid "Sync Pocket P_C devices when connected"

-- 
To stop receiving notification emails like this one, please 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-archive-plugin] 01/01: I18n: Update translation da (100%).

2017-01-19 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-archive-plugin.

commit c561e6883d2bf9d478daf36264eded959c69e1e8
Author: Anonymous 
Date:   Thu Jan 19 12:30:33 2017 +0100

I18n: Update translation da (100%).

13 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 389c278..989cacb 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,42 +1,39 @@
-# French translation of the thunar-archive-plugin package.
-# Copyright (C) 2006-2007 Benedikt Meurer 
-# This file is distributed under the same license as the thunar-archive-plugin 
package.
-# Per Kongstad , 2008.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Per Kongstad , 2008
+# scootergrisen, 2017
 msgid ""
 msgstr ""
-"Project-Id-Version: thunar-archive-plugin 0.2.5\n"
+"Project-Id-Version: Thunar Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-23 17:57+0100\n"
-"PO-Revision-Date: 2008-09-29 12:48+0100\n"
-"Last-Translator: Per Kongstad \n"
-"Language-Team: Danish \n"
-"Language: da\n"
+"POT-Creation-Date: 2013-07-03 20:07+0200\n"
+"PO-Revision-Date: 2017-01-19 10:24+\n"
+"Last-Translator: scootergrisen\n"
+"Language-Team: Danish 
(http://www.transifex.com/xfce/thunar-plugins/language/da/)\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-Language: Danish\n"
-"X-Poedit-Country: DENMARK\n"
-"X-Poedit-SourceCharset: utf-8\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"Language: da\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. prepare the dialog to query the preferred archiver for the user
-#: ../thunar-archive-plugin/tap-backend.c:85
+#: ../thunar-archive-plugin/tap-backend.c:81
 msgid "Select an archive manager"
 msgstr "Vælg en arkivhåndtering"
 
 #. add the header label
-#: ../thunar-archive-plugin/tap-backend.c:109
+#: ../thunar-archive-plugin/tap-backend.c:105
 msgid ""
 "Please select your preferred archive manager\n"
 "from the list of available applications below:"
-msgstr ""
-"Vælg venligst din favorit arkivhåndtering\n"
-"fra listen af tilgængelige programmer herunder:"
+msgstr "Vælg venligst din favorit arkivhåndtering\nfra listen af tilgængelige 
programmer herunder:"
 
 #. tell the user that we cannot handle the specified mime types
-#: ../thunar-archive-plugin/tap-backend.c:284
-#: ../thunar-archive-plugin/tap-backend.c:431
+#: ../thunar-archive-plugin/tap-backend.c:280
+#: ../thunar-archive-plugin/tap-backend.c:427
 #, c-format
 msgid "No suitable archive manager found"
 msgstr "Ingen anvendelig arkivhåndtering fundet"
@@ -45,7 +42,7 @@ msgstr "Ingen anvendelig arkivhåndtering fundet"
 #: ../thunar-archive-plugin/tap-provider.c:336
 #: ../thunar-archive-plugin/tap-provider.c:375
 msgid "Failed to extract files"
-msgstr "Kunne udpakke filer"
+msgstr "Kunne ikke udpakke filer"
 
 #. execute the action
 #: ../thunar-archive-plugin/tap-provider.c:413

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


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

2017-01-19 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 85f358c067c2f5b4b36635f33c228c56f815adee
Author: Anonymous 
Date:   Thu Jan 19 12:30:09 2017 +0100

I18n: Update translation da (100%).

36 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 f9809fa..c3b7d2f 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Garcon\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-06-20 18:30+0200\n"
-"PO-Revision-Date: 2017-01-14 09:34+\n"
+"PO-Revision-Date: 2017-01-19 10:16+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/garcon/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -42,7 +42,7 @@ msgstr "Uddannelse"
 
 #: ../data/xfce/xfce-education.directory.in.h:2
 msgid "Educational software"
-msgstr "Peogrammer til uddannelse"
+msgstr "Programmer til uddannelse"
 
 #: ../data/xfce/xfce-games.directory.in.h:1
 msgid "Games"
@@ -74,7 +74,7 @@ msgstr "Multimedie"
 
 #: ../data/xfce/xfce-multimedia.directory.in.h:2
 msgid "Audio and video players and editors"
-msgstr "Lyd-, videoafpillere samt -editorer"
+msgstr "Lyd-, videoafspillere samt -editorer"
 
 #: ../data/xfce/xfce-network.directory.in.h:1
 msgid "Internet"

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


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

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

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

commit 3d5903326852db3eb2414e62cf2e6a3101f22568
Author: Anonymous 
Date:   Thu Jan 19 12:30:53 2017 +0100

I18n: Update translation da (100%).

44 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 e7e9be2..3a076a7 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Tumbler\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 22:38+0200\n"
-"PO-Revision-Date: 2017-01-14 10:12+\n"
+"PO-Revision-Date: 2017-01-19 10:31+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/tumbler/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgstr ""
 #: ../tumblerd/tumbler-cache-service.c:413
 #, c-format
 msgid "Another thumbnail cache service is already running"
-msgstr "En anden tjeneste til cache af miniaturer kører allerede"
+msgstr "En anden tjeneste til mellemlagring af miniaturer kører allerede"
 
 #: ../tumblerd/tumbler-group-scheduler.c:486
 #: ../tumblerd/tumbler-lifo-scheduler.c:422
@@ -33,7 +33,7 @@ msgstr "Ingen miniaturetjeneste tilgængelig for \"%s\""
 
 #: ../tumblerd/tumbler-lifecycle-manager.c:208
 msgid "The thumbnailer service is shutting down"
-msgstr "Tjenesten thumbnailer lukker ned"
+msgstr "Tjenesten til miniaturer lukker ned"
 
 #: ../tumblerd/tumbler-service.c:758
 #, c-format
@@ -94,7 +94,7 @@ msgstr "Kunne ikke ændre processens venlighedsværdi."
 #. set the application name. Translators: Don't translate "Tumbler".
 #: ../tumblerd/main.c:258
 msgid "Tumbler Thumbnailing Service"
-msgstr "Tumbler Thumbnailing tjeneste"
+msgstr "Tumbler tjeneste til miniaturer"
 
 #: ../tumblerd/main.c:280
 #, c-format
@@ -109,7 +109,7 @@ msgstr "Kunne ikke indlæse specialiserede miniaturer ind i 
registret: %s"
 #: ../tumblerd/main.c:375
 #, c-format
 msgid "Failed to start the thumbnail cache service: %s"
-msgstr "Kunne ikke starte tjenesten thumbnail cache: %s"
+msgstr "Kunne ikke starte tjeneste til mellemlagring af miniaturer: %s"
 
 #: ../tumblerd/main.c:385
 #, c-format
@@ -243,7 +243,7 @@ msgstr "Dokumentet er tomt"
 
 #: ../plugins/poppler-thumbnailer/poppler-thumbnailer.c:329
 msgid "First page of the document could not be read"
-msgstr "Første sideaf dokumentet kunne ikke læses"
+msgstr "Første side af dokumentet kunne ikke læses"
 
 #: ../plugins/raw-thumbnailer/raw-thumbnailer.c:191
 msgid "Only local files are supported"

-- 
To stop receiving notification emails like this one, please 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 (31afd7b -> b556c01)

2017-01-19 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  31afd7b   I18n: Update translation da (100%).
   new  b556c01   I18n: Update translation da (100%).

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


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

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


[Xfce4-commits] [xfce/libxfce4ui] branch master updated (069bbf2 -> 85925aa)

2017-01-19 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  069bbf2   I18n: Update translation da (100%).
   new  85925aa   I18n: Update translation da (100%).

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


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

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


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

2017-01-19 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 b556c01e27cf73a7649a47945b409acecd98b035
Author: Anonymous 
Date:   Thu Jan 19 12:30:27 2017 +0100

I18n: Update translation da (100%).

738 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 7f81367..e6f4cd9 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-17 13:21+\n"
+"PO-Revision-Date: 2017-01-19 09:52+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish (http://www.transifex.com/xfce/thunar/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -2371,7 +2371,7 @@ msgstr "Fejl opstod under kopiering til \"%s\": der 
kræves %s ekstra plads for
 #: ../thunar/thunar-transfer-job.c:751
 #, c-format
 msgid "Error while copying to \"%s\": The destination is read-only"
-msgstr "Fejl opstod under kopiering til \"%s\": Målet er kun til læsnning."
+msgstr "Fejl opstod under kopiering til \"%s\": Målet er kun til læsning"
 
 #: ../thunar/thunar-transfer-job.c:794
 msgid "Collecting files..."
@@ -3410,7 +3410,7 @@ msgstr "_Ikon:"
 #: ../plugins/thunar-uca/thunar-uca-editor.c:219
 #: ../plugins/thunar-uca/thunar-uca-editor.c:684
 msgid "No icon"
-msgstr "Intet Ikon"
+msgstr "Intet ikon"
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:220
 msgid ""
@@ -3440,7 +3440,7 @@ msgstr "mappe indeholdende fil som er givet i %f"
 #: ../plugins/thunar-uca/thunar-uca-editor.c:325
 #, c-format
 msgid "directories containing the files that are passed in %F"
-msgstr "mapper indeholdende filer som er givet i %f"
+msgstr "mapper indeholdende filer som er givet i %F"
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:337
 msgid "the first selected filename (without path)"

-- 
To stop receiving notification emails like this one, please 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 (f35b32e -> 85f358c)

2017-01-19 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  f35b32e   I18n: Update translation da (100%).
   new  85f358c   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/xfdashboard] 02/02: Add missing header files in libxfdashboard.h

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

nomad pushed a commit to branch master
in repository apps/xfdashboard.

commit d7cc6c2732a8dbb562e7cc07954f2e9843982e33
Author: Stephan Haller 
Date:   Thu Jan 19 11:33:35 2017 +0100

Add missing header files in libxfdashboard.h
---
 libxfdashboard/libxfdashboard.h | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/libxfdashboard/libxfdashboard.h b/libxfdashboard/libxfdashboard.h
index 8b6a4f4..89e4f76 100644
--- a/libxfdashboard/libxfdashboard.h
+++ b/libxfdashboard/libxfdashboard.h
@@ -52,10 +52,16 @@
 #include 
 #include 
 #include 
-#include 
+#include 
 #include 
+#include 
 #include 
+#include 
 #include 
+#include 
+#include 
+#include 
+#include 
 #include 
 #include 
 #include 

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


[Xfce4-commits] [apps/xfdashboard] 01/02: Create simpler version of XfdashboardLiveWindow as new class XfdashboardLiveWindowSimple which just shows the preview of a window but without controls or titl

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

nomad pushed a commit to branch master
in repository apps/xfdashboard.

commit 173ec3c77210b3ff2fad3440c1cb7b325e42ab38
Author: Stephan Haller 
Date:   Thu Jan 19 11:30:42 2017 +0100

Create simpler version of XfdashboardLiveWindow as new class 
XfdashboardLiveWindowSimple which just shows the preview of a window but 
without controls or title actors
---
 libxfdashboard/Makefile.am  |   2 +
 libxfdashboard/live-window-simple.c | 567 
 libxfdashboard/live-window-simple.h |  86 ++
 3 files changed, 655 insertions(+)

diff --git a/libxfdashboard/Makefile.am b/libxfdashboard/Makefile.am
index 3fa5375..be3cca6 100644
--- a/libxfdashboard/Makefile.am
+++ b/libxfdashboard/Makefile.am
@@ -51,6 +51,7 @@ libxfdashboard_la_headers = \
image-content.h \
label.h \
live-window.h \
+   live-window-simple.h \
live-workspace.h \
model.h \
outline-effect.h \
@@ -123,6 +124,7 @@ libxfdashboard_la_SOURCES = \
image-content.c \
label.c \
live-window.c \
+   live-window-simple.c \
live-workspace.c \
model.c \
outline-effect.c \
diff --git a/libxfdashboard/live-window-simple.c 
b/libxfdashboard/live-window-simple.c
new file mode 100644
index 000..4e79ba6
--- /dev/null
+++ b/libxfdashboard/live-window-simple.c
@@ -0,0 +1,567 @@
+/*
+ * live-window-simple: An actor showing the content of a window which will
+ * be updated if changed and visible on active workspace.
+ * 
+ * Copyright 2012-2017 Stephan Haller 
+ * 
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ * 
+ * 
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include 
+
+#include 
+// TODO: #include 
+// TODO: #include 
+// TODO: #include 
+// TODO: #include 
+
+// TODO: #include 
+// TODO: #include 
+#include 
+#include 
+// TODO: #include 
+#include 
+#include 
+
+
+/* Define this class in GObject system */
+G_DEFINE_TYPE(XfdashboardLiveWindowSimple,
+   xfdashboard_live_window_simple,
+   XFDASHBOARD_TYPE_BACKGROUND)
+
+/* Private structure - access only by public API if needed */
+#define XFDASHBOARD_LIVE_WINDOW_SIMPLE_GET_PRIVATE(obj)
\
+   (G_TYPE_INSTANCE_GET_PRIVATE((obj), 
XFDASHBOARD_TYPE_LIVE_WINDOW_SIMPLE, XfdashboardLiveWindowSimplePrivate))
+
+struct _XfdashboardLiveWindowSimplePrivate
+{
+   /* Properties related */
+   XfdashboardWindowTrackerWindow  *window;
+
+   /* Instance related */
+   XfdashboardWindowTracker*windowTracker;
+
+   gboolean
isVisible;
+
+   ClutterActor*actorWindow;
+};
+
+/* Properties */
+enum
+{
+   PROP_0,
+
+   PROP_WINDOW,
+
+   PROP_LAST
+};
+
+static GParamSpec* XfdashboardLiveWindowSimpleProperties[PROP_LAST]={ 0, };
+
+/* Signals */
+enum
+{
+   SIGNAL_CLICKED,
+
+   SIGNAL_GEOMETRY_CHANGED,
+   SIGNAL_VISIBILITY_CHANGED,
+   SIGNAL_WORKSPACE_CHANGED,
+
+   SIGNAL_LAST
+};
+
+static guint XfdashboardLiveWindowSimpleSignals[SIGNAL_LAST]={ 0, };
+
+/* IMPLEMENTATION: Private variables and methods */
+
+/* Check if window should be shown */
+static gboolean 
_xfdashboard_live_window_simple_is_visible_window(XfdashboardLiveWindowSimple 
*self, XfdashboardWindowTrackerWindow *inWindow)
+{
+   g_return_val_if_fail(XFDASHBOARD_IS_WINDOW_TRACKER_WINDOW(inWindow), 
FALSE);
+
+   /* Determine if windows should be shown depending on its state */
+   if(xfdashboard_window_tracker_window_is_skip_pager(inWindow) ||
+   xfdashboard_window_tracker_window_is_skip_tasklist(inWindow))
+   {
+   return(FALSE);
+   }
+
+   /* If we get here the window should be shown */
+   return(TRUE);
+}
+
+/* This actor was clicked */
+static void 
_xfdashboard_live_window_simple_on_clicked(XfdashboardLiveWindowSimple *self,
+   
ClutterActor *inActor,
+ 

[Xfce4-commits] [apps/xfdashboard] branch master updated (aca83c5 -> d7cc6c2)

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

nomad pushed a change to branch master
in repository apps/xfdashboard.

  from  aca83c5   Add function to XfdashboardWindowTrackerWindow to get the 
parent window of a window if there is any.
   new  173ec3c   Create simpler version of XfdashboardLiveWindow   as new 
class XfdashboardLiveWindowSimple which just shows the preview of a window but 
without controls or title actors
   new  d7cc6c2   Add missing header files in libxfdashboard.h

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:
 libxfdashboard/Makefile.am  |   2 +
 libxfdashboard/libxfdashboard.h |   8 +-
 libxfdashboard/live-window-simple.c | 567 
 libxfdashboard/live-window-simple.h |  86 ++
 4 files changed, 662 insertions(+), 1 deletion(-)
 create mode 100644 libxfdashboard/live-window-simple.c
 create mode 100644 libxfdashboard/live-window-simple.h

-- 
To stop receiving notification emails like this one, please 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/xfwm4] 03/05: display: get screen from the output window

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

olivier pushed a commit to branch master
in repository xfce/xfwm4.

commit b9a64020b7d7b5616e282ea8186b3e69035d9bc9
Author: Olivier Fourdan 
Date:   Wed Jan 18 15:34:37 2017 +0100

display: get screen from the output window

Add an API to retrieve the screen from the output window.

Signed-off-by: Olivier Fourdan 
---
 src/display.c | 21 +
 src/display.h |  2 ++
 2 files changed, 23 insertions(+)

diff --git a/src/display.c b/src/display.c
index ed9b502..adc961d 100644
--- a/src/display.c
+++ b/src/display.c
@@ -600,6 +600,27 @@ myDisplayGetScreenFromRoot (DisplayInfo *display, Window 
root)
 }
 
 ScreenInfo *
+myDisplayGetScreenFromOutput (DisplayInfo *display, Window output)
+{
+GSList *list;
+
+g_return_val_if_fail (display != NULL, NULL);
+
+for (list = display->screens; list; list = g_slist_next (list))
+{
+ScreenInfo *screen = (ScreenInfo *) list->data;
+if (screen->output == output)
+{
+return screen;
+}
+}
+TRACE ("myDisplayGetScreenFromOutput: no screen found for output window 
%p", output);
+
+return NULL;
+}
+
+
+ScreenInfo *
 myDisplayGetScreenFromNum (DisplayInfo *display, int num)
 {
 GSList *list;
diff --git a/src/display.h b/src/display.h
index 8c21f28..c1a8adb 100644
--- a/src/display.h
+++ b/src/display.h
@@ -389,6 +389,8 @@ void myDisplayRemoveScreen  
(DisplayInfo *,
  ScreenInfo *);
 ScreenInfo  *myDisplayGetScreenFromRoot (DisplayInfo *,
  Window);
+ScreenInfo  *myDisplayGetScreenFromOutput   (DisplayInfo *,
+ Window);
 ScreenInfo  *myDisplayGetScreenFromNum  (DisplayInfo *,
  int);
 Window   myDisplayGetRootFromWindow (DisplayInfo *,

-- 
To stop receiving notification emails like this one, please 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/xfwm4] 01/05: display: Add default display

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

olivier pushed a commit to branch master
in repository xfce/xfwm4.

commit b0de84c82dbd43a11a2c34875885f0fd507f9225
Author: Olivier Fourdan 
Date:   Wed Jan 18 08:12:04 2017 +0100

display: Add default display

Store the default display and add an API to retrieve it.

Signed-off-by: Olivier Fourdan 
---
 src/display.c | 26 ++
 src/display.h |  1 +
 2 files changed, 23 insertions(+), 4 deletions(-)

diff --git a/src/display.c b/src/display.c
index 55319e7..ed9b502 100644
--- a/src/display.c
+++ b/src/display.c
@@ -57,6 +57,8 @@
 #define CURSOR_MOVE XC_fleur
 #endif
 
+static DisplayInfo *default_display;
+
 static int
 handleXError (Display * dpy, XErrorEvent * err)
 {
@@ -208,6 +210,11 @@ myDisplayInit (GdkDisplay *gdisplay)
 
 display = g_new0 (DisplayInfo, 1);
 
+if (!default_display)
+{
+  default_display = display;
+}
+
 display->gdisplay = gdisplay;
 display->dpy = (Display *) gdk_x11_display_get_xdisplay (gdisplay);
 
@@ -254,8 +261,8 @@ myDisplayInit (GdkDisplay *gdisplay)
 minor = SYNC_MINOR_VERSION;
 
 if (XSyncQueryExtension (display->dpy,
-  &display->xsync_event_base,
-  &display->xsync_error_base)
+ &display->xsync_event_base,
+ &display->xsync_error_base)
  && XSyncInitialize (display->dpy,
  &major,
  &minor))
@@ -291,8 +298,8 @@ myDisplayInit (GdkDisplay *gdisplay)
 
 #ifdef HAVE_RANDR
 if (XRRQueryExtension (display->dpy,
-&display->xrandr_event_base,
-&display->xrandr_error_base))
+   &display->xrandr_event_base,
+   &display->xrandr_error_base))
 {
 display->have_xrandr = TRUE;
 }
@@ -343,6 +350,11 @@ myDisplayClose (DisplayInfo *display)
 XDestroyWindow (display->dpy, display->timestamp_win);
 display->timestamp_win = None;
 
+if (default_display == display)
+{
+  default_display = NULL;
+}
+
 if (display->hostname)
 {
 g_free (display->hostname);
@@ -358,6 +370,12 @@ myDisplayClose (DisplayInfo *display)
 return display;
 }
 
+DisplayInfo *
+myDisplayGetDefault (void)
+{
+return default_display;
+}
+
 gboolean
 myDisplayHaveShape (DisplayInfo *display)
 {
diff --git a/src/display.h b/src/display.h
index 44c4ade..8c21f28 100644
--- a/src/display.h
+++ b/src/display.h
@@ -363,6 +363,7 @@ struct _DisplayInfo
 
 DisplayInfo *myDisplayInit  (GdkDisplay *);
 DisplayInfo *myDisplayClose (DisplayInfo 
*);
+DisplayInfo *myDisplayGetDefault(void);
 gboolean myDisplayHaveShape (DisplayInfo 
*);
 gboolean myDisplayHaveShapeInput(DisplayInfo 
*);
 gboolean myDisplayHaveRender(DisplayInfo 
*);

-- 
To stop receiving notification emails like this one, please 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/xfwm4] 02/05: main: Use default display API.

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

olivier pushed a commit to branch master
in repository xfce/xfwm4.

commit 48553a0916e1b5898667e9f042bbbaeff904dcd4
Author: Olivier Fourdan 
Date:   Wed Jan 18 08:20:28 2017 +0100

main: Use default display API.

Signed-off-by: Olivier Fourdan 
---
 src/main.c | 73 +-
 1 file changed, 39 insertions(+), 34 deletions(-)

diff --git a/src/main.c b/src/main.c
index 2798c18..99fd8a3 100644
--- a/src/main.c
+++ b/src/main.c
@@ -88,14 +88,13 @@ enum {
 COMPOSITOR_MODE_MANUAL
 };
 
+static gint compositor = COMPOSITOR_MODE_MANUAL;
+
 #ifndef DEBUG
 /* For what, IEEE Std 1003.1-2001, Section 12.2, Utility Syntax Guidelines.*/
 static char revision[]="@(#)$ " PACKAGE " version " VERSION " revision " 
REVISION " $";
 #endif
 
-static DisplayInfo *main_display_info = NULL;
-static gint compositor = COMPOSITOR_MODE_MANUAL;
-
 #ifdef DEBUG
 static gboolean
 setupLog (void)
@@ -140,7 +139,10 @@ setupLog (void)
 static void
 handleSignal (int sig)
 {
-if (main_display_info)
+DisplayInfo *display_info;
+
+display_info = myDisplayGetDefault ();
+if (display_info)
 {
 switch (sig)
 {
@@ -148,12 +150,12 @@ handleSignal (int sig)
 /* Walk thru */
 case SIGTERM:
 gtk_main_quit ();
-main_display_info->quit = TRUE;
+display_info->quit = TRUE;
 break;
 case SIGHUP:
 /* Walk thru */
 case SIGUSR1:
-main_display_info->reload = TRUE;
+display_info->reload = TRUE;
 break;
 default:
 break;
@@ -183,15 +185,17 @@ static void
 cleanUp (void)
 {
 GSList *screens;
+DisplayInfo *display_info;
 
 TRACE ("entering cleanUp");
 
 setupHandler (FALSE);
 
-g_return_if_fail (main_display_info);
+display_info = myDisplayGetDefault ();
+g_return_if_fail (display_info);
 
-eventFilterClose (main_display_info->xfilter);
-for (screens = main_display_info->screens; screens; screens = g_slist_next 
(screens))
+eventFilterClose (display_info->xfilter);
+for (screens = display_info->screens; screens; screens = g_slist_next 
(screens))
 {
 ScreenInfo *screen_info_n = (ScreenInfo *) screens->data;
 myScreenClose (screen_info_n);
@@ -200,9 +204,9 @@ cleanUp (void)
 sn_close_display ();
 sessionFreeWindowStates ();
 
-myDisplayClose (main_display_info);
-g_free (main_display_info);
-main_display_info = NULL;
+myDisplayClose (display_info);
+g_free (display_info);
+
 xfconf_shutdown();
 }
 
@@ -476,6 +480,7 @@ daemon_callback (const gchar  *name,
 static int
 initialize (gint compositor_mode, gboolean replace_wm)
 {
+DisplayInfo *display_info;
 gint i, nscreens;
 
 TRACE ("entering initialize");
@@ -487,36 +492,36 @@ initialize (gint compositor_mode, gboolean replace_wm)
 
 initMenuEventWin ();
 clientClearFocus (NULL);
-main_display_info = myDisplayInit (gdk_display_get_default ());
+display_info = myDisplayInit (gdk_display_get_default ());
 
 #ifdef HAVE_COMPOSITOR
 if (compositor_mode < COMPOSITOR_MODE_OFF)
 {
-compositor_mode = get_default_compositor (main_display_info);
+compositor_mode = get_default_compositor (display_info);
 }
 
 /* Disabling compositor from command line */
 if (!compositor_mode)
 {
-main_display_info->enable_compositor = FALSE;
+display_info->enable_compositor = FALSE;
 }
-compositorSetCompositeMode (main_display_info, (compositor_mode == 
COMPOSITOR_MODE_MANUAL));
+compositorSetCompositeMode (display_info, (compositor_mode == 
COMPOSITOR_MODE_MANUAL));
 #else /* HAVE_COMPOSITOR */
-main_display_info->enable_compositor = FALSE;
+display_info->enable_compositor = FALSE;
 #endif /* HAVE_COMPOSITOR */
 
-initModifiers (main_display_info->dpy);
+initModifiers (display_info->dpy);
 
 setupHandler (TRUE);
 
-nscreens = gdk_display_get_n_screens (main_display_info->gdisplay);
+nscreens = gdk_display_get_n_screens (display_info->gdisplay);
 for(i = 0; i < nscreens; i++)
 {
 ScreenInfo *screen_info;
 GdkScreen *gscr;
 
-gscr = gdk_display_get_screen (main_display_info->gdisplay, i);
-screen_info = myScreenInit (main_display_info, gscr, MAIN_EVENT_MASK, 
replace_wm);
+gscr = gdk_display_get_screen (display_info->gdisplay, i);
+screen_info = myScreenInit (display_info, gscr, MAIN_EVENT_MASK, 
replace_wm);
 
 if (!screen_info)
 {
@@ -554,39 +559,39 @@ initialize (gint compositor_mode, gboolean replace_wm)
compositing manager (used by WM tweaks to determine whether 
or not
show the "compositor" tab.
  */
-setA

[Xfce4-commits] [xfce/xfwm4] 05/05: compositor: warn if XPresent requested but unusable

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

olivier pushed a commit to branch master
in repository xfce/xfwm4.

commit 0a27a43cefe9b6f1672a814065d312feb7e74bcd
Author: Olivier Fourdan 
Date:   Wed Jan 18 15:00:42 2017 +0100

compositor: warn if XPresent requested but unusable

Signed-off-by: Olivier Fourdan 
---
 src/compositor.c | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/compositor.c b/src/compositor.c
index cf67264..aa658d6 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -4262,6 +4262,7 @@ compositorManageScreen (ScreenInfo *screen_info)
 gushort buffer;
 #ifdef HAVE_PRESENT_EXTENSION
 const gchar *use_present_env;
+gboolean present_requested;
 #endif /* HAVE_PRESENT_EXTENSION */
 
 g_return_val_if_fail (screen_info != NULL, FALSE);
@@ -4386,7 +4387,8 @@ compositorManageScreen (ScreenInfo *screen_info)
 screen_info->texture_filter = GL_LINEAR;
 #ifdef HAVE_PRESENT_EXTENSION
 use_present_env = g_getenv ("XFWM4_USE_PRESENT");
-if (g_strcmp0 (use_present_env, "1") == 0)
+present_requested = (g_strcmp0 (use_present_env, "1") == 0);
+if (present_requested)
 {
 screen_info->use_glx = FALSE;
 }
@@ -4409,6 +4411,10 @@ compositorManageScreen (ScreenInfo *screen_info)
  screen_info->output,
  PresentCompleteNotifyMask);
 }
+else if (present_requested)
+{
+g_warning ("XPresent requested but unavailable");
+}
 #else /* HAVE_PRESENT_EXTENSION */
 screen_info->use_present = FALSE;
 #endif /* HAVE_PRESENT_EXTENSION */

-- 
To stop receiving notification emails like this one, please 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/xfwm4] 04/05: compositor: Disable XPresent in case of error

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

olivier pushed a commit to branch master
in repository xfce/xfwm4.

commit 222e2c8af29b69fbdddf6d400aaa45acb4c6a850
Author: Olivier Fourdan 
Date:   Wed Jan 11 09:31:01 2017 +0100

compositor: Disable XPresent in case of error

Bug: 13257

If for some reason XPresentPixmap() fails, we might end up waiting
forever for a present complete notification that will never arrive.

Check for possible errors after XPresentPixmap() and disable XPresent in
case of error.

Signed-off-by: Olivier Fourdan 
---
 src/compositor.c | 37 -
 1 file changed, 36 insertions(+), 1 deletion(-)

diff --git a/src/compositor.c b/src/compositor.c
index 015030f..cf67264 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -99,6 +99,10 @@
 #define MONITOR_ROOT_PIXMAP   1
 #endif /* MONITOR_ROOT_PIXMAP */
 
+#ifdef HAVE_PRESENT_EXTENSION
+static int (*default_error_handler) (Display *, XErrorEvent *);
+#endif /* HAVE_PRESENT_EXTENSION */
+
 typedef struct _CWindow CWindow;
 struct _CWindow
 {
@@ -1615,6 +1619,37 @@ redraw_glx_texture (ScreenInfo *screen_info)
 #endif /* HAVE_EPOXY */
 
 #ifdef HAVE_PRESENT_EXTENSION
+static int
+present_error_handler (Display * dpy, XErrorEvent * err)
+{
+DisplayInfo *display_info;
+
+display_info = myDisplayGetDefault ();
+g_return_val_if_fail (display_info, 0);
+
+/* XPresentPixmap() can trigger a BadWindow rather than a BadMatch */
+if (err->request_code == display_info->present_opcode && err->error_code 
== BadWindow)
+{
+ScreenInfo *screen_info;
+screen_info = myDisplayGetScreenFromOutput (display_info, 
err->resourceid);
+
+if (screen_info != NULL)
+{
+g_warning ("Disabling XPresent, error %d on window 0x%lx for 
request %d",
+   err->error_code, err->resourceid, err->request_code);
+screen_info->present_pending = FALSE;
+screen_info->use_present = FALSE;
+}
+}
+
+/* Chain with our default error handler if available */
+if (default_error_handler)
+{
+return (default_error_handler (dpy, err));
+}
+return 0;
+}
+
 static void
 present_flip (ScreenInfo *screen_info, XserverRegion region, Pixmap pixmap)
 {
@@ -4167,7 +4202,7 @@ compositorInitDisplay (DisplayInfo *display_info)
 else
 {
 display_info->have_present = TRUE;
-
+default_error_handler = XSetErrorHandler (present_error_handler);
 DBG ("present opcode:  %i", display_info->present_opcode);
 DBG ("present event base: %i", display_info->present_event_base);
 DBG ("present error base: %i", display_info->present_error_base);

-- 
To stop receiving notification emails like this one, please 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/xfwm4] branch master updated (0194ab3 -> 0a27a43)

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

olivier pushed a change to branch master
in repository xfce/xfwm4.

  from  0194ab3   I18n: Update translation da (100%).
   new  b0de84c   display: Add default display
   new  48553a0   main: Use default display API.
   new  b9a6402   display: get screen from the output window
   new  222e2c8   compositor: Disable XPresent in case of error
   new  0a27a43   compositor: warn if XPresent requested but unusable

The 5 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/compositor.c | 45 --
 src/display.c| 47 
 src/display.h|  3 +++
 src/main.c   | 73 ++--
 4 files changed, 128 insertions(+), 40 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