[Xfce4-commits] [xfce/xfwm4] branch master updated (4fe25fc -> 4a189e8)

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

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

  from  4fe25fc   I18n: Update translation ar (100%).
   new  4a189e8   I18n: Update translation lt (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/lt.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/xfwm4] 01/01: I18n: Update translation lt (100%).

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

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

commit 4a189e8b2cc428a90d67837264fea65fbd82664b
Author: Anonymous 
Date:   Fri Jul 21 00:31:58 2017 +0200

I18n: Update translation lt (100%).

172 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index bec9aab..230ed37 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfwm4\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-05-15 12:31+0200\n"
-"PO-Revision-Date: 2017-07-06 22:53+\n"
+"PO-Revision-Date: 2017-07-20 21:15+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfwm4/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -315,7 +315,7 @@ msgstr "Iš_plėstiniai"
 
 #: ../settings-dialogs/xfwm4-settings.c:220
 msgid "Shade window"
-msgstr "Uždengti langą"
+msgstr "Pridengti langą"
 
 #: ../settings-dialogs/xfwm4-settings.c:221
 msgid "Hide window"

-- 
To stop receiving notification emails like this one, please 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: windowmenu: Fix icon size in menu

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

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

commit a0e7da104248593003c9842fb90c03105779fa58
Author: Simon Steinbeiss 
Date:   Thu Jul 20 23:00:57 2017 +0200

windowmenu: Fix icon size in menu
---
 plugins/windowmenu/windowmenu.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/plugins/windowmenu/windowmenu.c b/plugins/windowmenu/windowmenu.c
index 1b51481..f47e993 100644
--- a/plugins/windowmenu/windowmenu.c
+++ b/plugins/windowmenu/windowmenu.c
@@ -1168,7 +1168,8 @@ window_menu_plugin_menu_new (WindowMenuPlugin *plugin)
   italic = pango_font_description_from_string ("italic");
   bold = pango_font_description_from_string ("bold");
 
-  w = h = GTK_ICON_SIZE_MENU;
+  if (!gtk_icon_size_lookup (GTK_ICON_SIZE_MENU, , ))
+w = h = 16;
 
   menu = gtk_menu_new ();
   g_signal_connect (G_OBJECT (menu), "key-press-event",

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

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

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

  from  4cfb1f8   Prevent panel crash on unsupported GValues in PluginEvents
   new  a0e7da1   windowmenu: Fix icon size in menu

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:
 plugins/windowmenu/windowmenu.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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


[Xfce4-commits] [panel-plugins/xfce4-hardware-monitor-plugin] 01/01: Fix C++ standard library compilation issue with old GCC

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

omegaphil pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-hardware-monitor-plugin.

commit 98b1bedd98903d69f108f70620f675b651c0d89e
Author: OmegaPhil 
Date:   Thu Jul 20 21:23:21 2017 +0100

Fix C++ standard library compilation issue with old GCC

Library dependencies are now causing breakage for GCC 5 and below
as they now require C++11, which with old GCC versions requires
explicit declaration as a GCC flag

Reported by Martin DiViaio

Fixes https://bugzilla.xfce.org/show_bug.cgi?id=13717
---
 src/Makefile.am | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/Makefile.am b/src/Makefile.am
index 9650750..f6fd604 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -52,7 +52,13 @@ libhardwaremonitor_la_LIBADD = \
 $(DEPS_LIBS) $(SENSORS_LIBS)
 
 
-AM_CXXFLAGS = $(DEPS_CFLAGS) $(SENSORS_CFLAGS)
+# Recently (>=2017) dependent libraries seem to require building with
+# the C++11 standard (see https://bugzilla.xfce.org/show_bug.cgi?id=13717)
+# - this results in errors with GCC 5 and below when building with
+# default configuration - 4.9.2 is bundled with Debian Jessie (2015),
+# presumably when 2020 comes around I can consider addition of the std
+# flag deprecated
+AM_CXXFLAGS = $(DEPS_CFLAGS) $(SENSORS_CFLAGS) --std=c++11
 
 glade_DATA = ui.glade
 gladedir = $(datadir)/$(PACKAGE_NAME)/glade

-- 
To stop receiving notification emails like this one, please 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-hardware-monitor-plugin] branch master updated (c989a74 -> 98b1bed)

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

omegaphil pushed a 
change to branch 
master
in repository panel-plugins/xfce4-hardware-monitor-plugin.

  from  c989a74   Update yet another copyright notice
   new  98b1bed   Fix C++ standard library compilation issue with old GCC

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


Summary of changes:
 src/Makefile.am | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

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


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

2017-07-20 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 cfbc543370d03faeec6e4d294730258ad062ff13
Author: Anonymous 
Date:   Thu Jul 20 18:31:09 2017 +0200

I18n: Update translation lt (100%).

348 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/lt.po | 410 +--
 1 file changed, 215 insertions(+), 195 deletions(-)

diff --git a/po/lt.po b/po/lt.po
index cd0b5c1..5dab159 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-07-06 06:31+0200\n"
-"PO-Revision-Date: 2017-07-06 12:13+\n"
+"POT-Creation-Date: 2017-07-20 00:31+0200\n"
+"PO-Revision-Date: 2017-07-20 13:45+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -169,12 +169,12 @@ msgstr "Apie klaidas pranešti <%s>."
 msgid "Unable to register terminal service: %s\n"
 msgstr "Nepavyko priregistruoti terminalo tarnybos: %s\n"
 
-#: ../terminal/terminal-app.c:851
+#: ../terminal/terminal-app.c:848
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "Neteisingas geometrijos apibrėžimas „%s“\n"
 
-#: ../terminal/terminal-app.c:940
+#: ../terminal/terminal-app.c:937
 #, c-format
 msgid "Failed to connect to session manager: %s\n"
 msgstr "Nepavyko prisijungti prie seansų tvarkytuvės: %s\n"
@@ -393,41 +393,41 @@ msgstr "Parametras \"--zoom\" kaip savo parametrą 
reikalauja nurodyti mastelį
 msgid "Unknown option \"%s\""
 msgstr "Nežinoma parametras „%s“"
 
-#: ../terminal/terminal-preferences-dialog.c:379
+#: ../terminal/terminal-preferences-dialog.c:385
 msgid "All Files"
 msgstr "Visi failai"
 
-#: ../terminal/terminal-preferences-dialog.c:385
+#: ../terminal/terminal-preferences-dialog.c:391
 msgid "Image Files"
 msgstr "Paveikslų failai"
 
-#: ../terminal/terminal-preferences-dialog.c:818
+#: ../terminal/terminal-preferences-dialog.c:847
 msgid "Load Presets..."
 msgstr "Įkelti išankstines parinktis..."
 
-#: ../terminal/terminal-preferences.c:1073
+#: ../terminal/terminal-preferences.c:1084
 msgid "Terminal"
 msgstr "Terminalas"
 
-#: ../terminal/terminal-screen.c:403 ../terminal/terminal-screen.c:771
-#: ../terminal/terminal-screen.c:1936
+#: ../terminal/terminal-screen.c:404 ../terminal/terminal-screen.c:772
+#: ../terminal/terminal-screen.c:1938
 msgid "Untitled"
 msgstr "Be pavadinimo"
 
-#: ../terminal/terminal-screen.c:672
+#: ../terminal/terminal-screen.c:673
 #, c-format
 msgid "Unable to determine your login shell."
 msgstr "Nepavyko aptikti jūsų prisijungimo apvalkalo."
 
-#: ../terminal/terminal-screen.c:1620 ../terminal/terminal-screen.c:1646
+#: ../terminal/terminal-screen.c:1622 ../terminal/terminal-screen.c:1648
 msgid "Failed to execute child"
 msgstr "Nepavyko paleisti antrinio proceso"
 
-#: ../terminal/terminal-screen.c:2236
+#: ../terminal/terminal-screen.c:2238
 msgid "Close this tab"
 msgstr "Užverti šią kortelę"
 
-#: ../terminal/terminal-screen.c:2290
+#: ../terminal/terminal-screen.c:2292
 #, c-format
 msgid "Failed to set encoding %s\n"
 msgstr "Nepavyko nustatyti koduotės %s\n"
@@ -525,303 +525,311 @@ msgstr "Gauti netinkami spalvos duomenys: Netinkamas 
formatas (%d) arba ilgis (%
 msgid "Failed to open the URL '%s'"
 msgstr "Nepavyko atverti URL \"%s\""
 
-#: ../terminal/terminal-window-dropdown.c:274
+#: ../terminal/terminal-window-dropdown.c:283
 msgid "Keep window open when it loses focus"
 msgstr "Palikti langą atvertą, kai jis praranda fokusą"
 
-#: ../terminal/terminal-window-dropdown.c:395
+#: ../terminal/terminal-window-dropdown.c:408
 msgid "Drop-down Terminal"
 msgstr "Išskleidžiamas terminalas"
 
-#: ../terminal/terminal-window-dropdown.c:396
+#: ../terminal/terminal-window-dropdown.c:409
 msgid "Toggle Drop-down Terminal"
 msgstr "Perjungti išskleidžiamąjį terminalą"
 
-#: ../terminal/terminal-window.c:310
+#: ../terminal/terminal-window.c:316
 msgid "_File"
 msgstr "_Failas"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open _Tab"
 msgstr "Atverti _kortelę"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open a new terminal tab"
 msgstr "Atverti terminalą naujoje kortelėje"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open T_erminal"
 msgstr "Atverti _terminalą"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open a new terminal window"
 msgstr "Atverti naują terminalo langą"
 
-#: ../terminal/terminal-window.c:313
+#: ../terminal/terminal-window.c:319
 msgid "_Undo Close Tab"
 msgstr 

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

2017-07-20 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 b2ae17e30417b18f3abea7214ad83c9a7e6f988d
Author: Igor 
Date:   Thu Jul 20 18:31:09 2017 +0200

I18n: Update translation ru (100%).

348 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/ru.po | 176 +--
 1 file changed, 92 insertions(+), 84 deletions(-)

diff --git a/po/ru.po b/po/ru.po
index 84f3d2a..6d05a7c 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-07-19 00:31+0200\n"
-"PO-Revision-Date: 2017-07-19 13:03+\n"
+"POT-Creation-Date: 2017-07-20 00:31+0200\n"
+"PO-Revision-Date: 2017-07-20 13:54+\n"
 "Last-Translator: Igor \n"
 "Language-Team: Russian 
(http://www.transifex.com/xfce/xfce-apps/language/ru/)\n"
 "MIME-Version: 1.0\n"
@@ -82,7 +82,7 @@ msgstr "каталог"
 
 #: ../terminal/main.c:117
 msgid "Window or Tab Separators"
-msgstr "Окно или вкладки"
+msgstr "Разделители окон или вкладок"
 
 #: ../terminal/main.c:123
 msgid "Tab Options"
@@ -166,19 +166,19 @@ msgstr "и Igor Zakharov ."
 #: ../terminal/main.c:210
 #, c-format
 msgid "Please report bugs to <%s>."
-msgstr "Сообщить об ошибке: <%s>."
+msgstr "Сообщайте об ошибках на <%s>."
 
 #: ../terminal/main.c:317
 #, c-format
 msgid "Unable to register terminal service: %s\n"
 msgstr "Невозможно запустить службу терминала: %s\n"
 
-#: ../terminal/terminal-app.c:851
+#: ../terminal/terminal-app.c:848
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "Неверная строка геометрии: \"%s\"\n"
 
-#: ../terminal/terminal-app.c:940
+#: ../terminal/terminal-app.c:937
 #, c-format
 msgid "Failed to connect to session manager: %s\n"
 msgstr "Не удалось подключиться к менеджеру сессий: %s\n"
@@ -413,25 +413,25 @@ msgstr "Загрузить предустановки"
 msgid "Terminal"
 msgstr "Терминал"
 
-#: ../terminal/terminal-screen.c:403 ../terminal/terminal-screen.c:771
-#: ../terminal/terminal-screen.c:1936
+#: ../terminal/terminal-screen.c:404 ../terminal/terminal-screen.c:772
+#: ../terminal/terminal-screen.c:1938
 msgid "Untitled"
 msgstr "Без названия"
 
-#: ../terminal/terminal-screen.c:672
+#: ../terminal/terminal-screen.c:673
 #, c-format
 msgid "Unable to determine your login shell."
 msgstr "Невозможно определить оболочку входа в систему."
 
-#: ../terminal/terminal-screen.c:1620 ../terminal/terminal-screen.c:1646
+#: ../terminal/terminal-screen.c:1622 ../terminal/terminal-screen.c:1648
 msgid "Failed to execute child"
 msgstr "Ошибка выполнения дочернего процесса"
 
-#: ../terminal/terminal-screen.c:2236
+#: ../terminal/terminal-screen.c:2238
 msgid "Close this tab"
 msgstr "Закрыть эту вкладку"
 
-#: ../terminal/terminal-screen.c:2290
+#: ../terminal/terminal-screen.c:2292
 #, c-format
 msgid "Failed to set encoding %s\n"
 msgstr "Не удалось задать кодировку %s\n"
@@ -541,291 +541,299 @@ msgstr "Выпадающий терминал"
 msgid "Toggle Drop-down Terminal"
 msgstr "Включает выпадающее окно терминала"
 
-#: ../terminal/terminal-window.c:310
+#: ../terminal/terminal-window.c:316
 msgid "_File"
 msgstr "_Файл"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open _Tab"
 msgstr "Открыть _вкладку"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open a new terminal tab"
 msgstr "Открыть новую вкладку терминала"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open T_erminal"
 msgstr "Открыть _терминал"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open a new terminal window"
 msgstr "Открыть новое окно терминала"
 
-#: ../terminal/terminal-window.c:313
+#: ../terminal/terminal-window.c:319
 msgid "_Undo Close Tab"
 msgstr "Восстановить закр_ытую вкладку"
 
-#: ../terminal/terminal-window.c:314
+#: ../terminal/terminal-window.c:320
 msgid "_Detach Tab"
 msgstr "_Отделить вкладку"
 
-#: ../terminal/terminal-window.c:315 ../terminal/terminal-window.c:736
+#: ../terminal/terminal-window.c:321 ../terminal/terminal-window.c:751
 msgid "Close T_ab"
 msgstr "Закрыть _вкладку"
 
-#: ../terminal/terminal-window.c:316
+#: ../terminal/terminal-window.c:322
 msgid "Close Other Ta_bs"
 msgstr "Закрыть все остальные вкла_дки"
 
-#: ../terminal/terminal-window.c:317 ../terminal/terminal-window.c:739
+#: ../terminal/terminal-window.c:323 ../terminal/terminal-window.c:754
 msgid "Close _Window"
 msgstr "Закрыть _окно"
 
-#: ../terminal/terminal-window.c:318
+#: ../terminal/terminal-window.c:324
 msgid "_Edit"
 msgstr "_Правка"
 
-#: ../terminal/terminal-window.c:319
+#: 

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

2017-07-20 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 cf95f7815ce524517bc3ce0c438fc8e98693755b
Author: Edin Veskovic 
Date:   Thu Jul 20 18:31:09 2017 +0200

I18n: Update translation hr (100%).

348 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/hr.po | 170 +--
 1 file changed, 89 insertions(+), 81 deletions(-)

diff --git a/po/hr.po b/po/hr.po
index 5541d05..3bf8f4b 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -12,8 +12,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-07-19 00:31+0200\n"
-"PO-Revision-Date: 2017-07-19 06:08+\n"
+"POT-Creation-Date: 2017-07-20 00:31+0200\n"
+"PO-Revision-Date: 2017-07-20 12:52+\n"
 "Last-Translator: Edin Veskovic \n"
 "Language-Team: Croatian 
(http://www.transifex.com/xfce/xfce-apps/language/hr/)\n"
 "MIME-Version: 1.0\n"
@@ -171,12 +171,12 @@ msgstr "Molim,prijavite probleme na <%s>."
 msgid "Unable to register terminal service: %s\n"
 msgstr "Ne mogu registrirati terminalni servis: %s\n"
 
-#: ../terminal/terminal-app.c:851
+#: ../terminal/terminal-app.c:848
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "Nevaljan znakovni niz \"%s\" za geometriju\n"
 
-#: ../terminal/terminal-app.c:940
+#: ../terminal/terminal-app.c:937
 #, c-format
 msgid "Failed to connect to session manager: %s\n"
 msgstr "Neuspješno spajanje na upravitelja sesijom: %s\n"
@@ -411,25 +411,25 @@ msgstr "Učitaj spremljene..."
 msgid "Terminal"
 msgstr "Terminal"
 
-#: ../terminal/terminal-screen.c:403 ../terminal/terminal-screen.c:771
-#: ../terminal/terminal-screen.c:1936
+#: ../terminal/terminal-screen.c:404 ../terminal/terminal-screen.c:772
+#: ../terminal/terminal-screen.c:1938
 msgid "Untitled"
 msgstr "Nenaslovljeno"
 
-#: ../terminal/terminal-screen.c:672
+#: ../terminal/terminal-screen.c:673
 #, c-format
 msgid "Unable to determine your login shell."
 msgstr "Ne mogu odrediti vaš ljusku za prijavu."
 
-#: ../terminal/terminal-screen.c:1620 ../terminal/terminal-screen.c:1646
+#: ../terminal/terminal-screen.c:1622 ../terminal/terminal-screen.c:1648
 msgid "Failed to execute child"
 msgstr "Neuspjelo izvršavanje djeteta"
 
-#: ../terminal/terminal-screen.c:2236
+#: ../terminal/terminal-screen.c:2238
 msgid "Close this tab"
 msgstr "Zatvori ovu karticu"
 
-#: ../terminal/terminal-screen.c:2290
+#: ../terminal/terminal-screen.c:2292
 #, c-format
 msgid "Failed to set encoding %s\n"
 msgstr "Neuspješno postavljanje znakovnog kodiranja %s\n"
@@ -539,291 +539,299 @@ msgstr "Padajući terminal"
 msgid "Toggle Drop-down Terminal"
 msgstr "Upali/ugasi padajući terminal"
 
-#: ../terminal/terminal-window.c:310
+#: ../terminal/terminal-window.c:316
 msgid "_File"
 msgstr "_Datoteka"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open _Tab"
 msgstr "Otvori _karticu"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open a new terminal tab"
 msgstr "Otvori novu terminalnu karticu"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open T_erminal"
 msgstr "Otvori T_erminal"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open a new terminal window"
 msgstr "Otvori novi terminalni prozor"
 
-#: ../terminal/terminal-window.c:313
+#: ../terminal/terminal-window.c:319
 msgid "_Undo Close Tab"
 msgstr "_Poništi zatvori karticu"
 
-#: ../terminal/terminal-window.c:314
+#: ../terminal/terminal-window.c:320
 msgid "_Detach Tab"
 msgstr "_Odspoji karticu"
 
-#: ../terminal/terminal-window.c:315 ../terminal/terminal-window.c:736
+#: ../terminal/terminal-window.c:321 ../terminal/terminal-window.c:751
 msgid "Close T_ab"
 msgstr "Zatvori k_articu"
 
-#: ../terminal/terminal-window.c:316
+#: ../terminal/terminal-window.c:322
 msgid "Close Other Ta_bs"
 msgstr "Zatvori druge ka_rtice"
 
-#: ../terminal/terminal-window.c:317 ../terminal/terminal-window.c:739
+#: ../terminal/terminal-window.c:323 ../terminal/terminal-window.c:754
 msgid "Close _Window"
 msgstr "Zatvori _prozor"
 
-#: ../terminal/terminal-window.c:318
+#: ../terminal/terminal-window.c:324
 msgid "_Edit"
 msgstr "_Uredi"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:325
 msgid "_Copy"
 msgstr "_Kopiraj"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:325
 msgid "Copy to clipboard"
 msgstr "Kopiraj u međuspremnik"
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:326
 msgid "_Paste"
 msgstr "_Zalijepi"
 
-#: ../terminal/terminal-window.c:320
+#: 

[Xfce4-commits] [apps/xfce4-terminal] branch master updated (5758699 -> b2ae17e)

2017-07-20 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  5758699   I18n: Update translation nb (100%).
   new  cf95f78   I18n: Update translation hr (100%).
   new  cfbc543   I18n: Update translation lt (100%).
   new  b2ae17e   I18n: Update translation ru (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/hr.po | 170 +-
 po/lt.po | 410 +--
 po/ru.po | 176 ++-
 3 files changed, 396 insertions(+), 360 deletions(-)

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


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

2017-07-20 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 0e5a87126453ff5f52d9960649307e39464c8392
Author: Kiril Kirilov 
Date:   Thu Jul 20 12:31:11 2017 +0200

I18n: Update translation bg (100%).

348 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/bg.po | 170 +--
 1 file changed, 89 insertions(+), 81 deletions(-)

diff --git a/po/bg.po b/po/bg.po
index 44a6a1c..ef4dc72 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-07-19 00:31+0200\n"
-"PO-Revision-Date: 2017-07-19 05:52+\n"
+"POT-Creation-Date: 2017-07-20 00:31+0200\n"
+"PO-Revision-Date: 2017-07-20 06:07+\n"
 "Last-Translator: Kiril Kirilov \n"
 "Language-Team: Bulgarian 
(http://www.transifex.com/xfce/xfce-apps/language/bg/)\n"
 "MIME-Version: 1.0\n"
@@ -170,12 +170,12 @@ msgstr "Докладвайте за грешки на <%s>."
 msgid "Unable to register terminal service: %s\n"
 msgstr "Не може да се регистрира терминала: %s\n"
 
-#: ../terminal/terminal-app.c:851
+#: ../terminal/terminal-app.c:848
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "Невалидна геометрична поредица „%s“\n"
 
-#: ../terminal/terminal-app.c:940
+#: ../terminal/terminal-app.c:937
 #, c-format
 msgid "Failed to connect to session manager: %s\n"
 msgstr "Неуспешен опит за свързване с мениджъра на сесията: %s\n"
@@ -410,25 +410,25 @@ msgstr "Зареждане на готовите комплекти..."
 msgid "Terminal"
 msgstr "Терминал"
 
-#: ../terminal/terminal-screen.c:403 ../terminal/terminal-screen.c:771
-#: ../terminal/terminal-screen.c:1936
+#: ../terminal/terminal-screen.c:404 ../terminal/terminal-screen.c:772
+#: ../terminal/terminal-screen.c:1938
 msgid "Untitled"
 msgstr "Без име"
 
-#: ../terminal/terminal-screen.c:672
+#: ../terminal/terminal-screen.c:673
 #, c-format
 msgid "Unable to determine your login shell."
 msgstr "Не може да се определи средата за вход."
 
-#: ../terminal/terminal-screen.c:1620 ../terminal/terminal-screen.c:1646
+#: ../terminal/terminal-screen.c:1622 ../terminal/terminal-screen.c:1648
 msgid "Failed to execute child"
 msgstr "Не може да се изпълни дъщерен процес"
 
-#: ../terminal/terminal-screen.c:2236
+#: ../terminal/terminal-screen.c:2238
 msgid "Close this tab"
 msgstr "Затваряне този подпрозорец"
 
-#: ../terminal/terminal-screen.c:2290
+#: ../terminal/terminal-screen.c:2292
 #, c-format
 msgid "Failed to set encoding %s\n"
 msgstr "Неуспех при задаване на кодировка %s\n"
@@ -538,291 +538,299 @@ msgstr "Падащ терминал"
 msgid "Toggle Drop-down Terminal"
 msgstr "Превключване на терминал с падащо меню"
 
-#: ../terminal/terminal-window.c:310
+#: ../terminal/terminal-window.c:316
 msgid "_File"
 msgstr "Файл"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open _Tab"
 msgstr "Отваряне подпорозорец"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open a new terminal tab"
 msgstr "Отваряне на нов подпрозорец"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open T_erminal"
 msgstr "Отваряне на нов терминал"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open a new terminal window"
 msgstr "Отваряне на нов прозорец"
 
-#: ../terminal/terminal-window.c:313
+#: ../terminal/terminal-window.c:319
 msgid "_Undo Close Tab"
 msgstr "_Отмени затварянето на раздела"
 
-#: ../terminal/terminal-window.c:314
+#: ../terminal/terminal-window.c:320
 msgid "_Detach Tab"
 msgstr "Откачване на подпрозореца"
 
-#: ../terminal/terminal-window.c:315 ../terminal/terminal-window.c:736
+#: ../terminal/terminal-window.c:321 ../terminal/terminal-window.c:751
 msgid "Close T_ab"
 msgstr "Затваряне на раздела"
 
-#: ../terminal/terminal-window.c:316
+#: ../terminal/terminal-window.c:322
 msgid "Close Other Ta_bs"
 msgstr "Затвори другите раздели"
 
-#: ../terminal/terminal-window.c:317 ../terminal/terminal-window.c:739
+#: ../terminal/terminal-window.c:323 ../terminal/terminal-window.c:754
 msgid "Close _Window"
 msgstr "Затваряне на прозореца"
 
-#: ../terminal/terminal-window.c:318
+#: ../terminal/terminal-window.c:324
 msgid "_Edit"
 msgstr "Редактиране"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:325
 msgid "_Copy"
 msgstr "Копиране"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:325
 msgid "Copy to clipboard"
 msgstr "Копиране в системния буфер"
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:326
 msgid "_Paste"
 msgstr "Поставяне"
 
-#: 

[Xfce4-commits] [apps/xfce4-terminal] branch master updated (3aff5db -> 5758699)

2017-07-20 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  3aff5db   I18n: Update translation da (100%).
   new  0e5a871   I18n: Update translation bg (100%).
   new  cc231a0   I18n: Update translation ca (100%).
   new  3a99b25   I18n: Update translation cs (100%).
   new  5758699   I18n: Update translation nb (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/bg.po | 170 +--
 po/ca.po | 170 +--
 po/cs.po | 170 +--
 po/nb.po | 170 +--
 4 files changed, 356 insertions(+), 324 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 nb (100%).

2017-07-20 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 57586996fdcf3693ad4b40aaf8eb2a440a8664ce
Author: Allan Nordhøy 
Date:   Thu Jul 20 12:31:11 2017 +0200

I18n: Update translation nb (100%).

348 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/nb.po | 170 +--
 1 file changed, 89 insertions(+), 81 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index e72690f..68d610c 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-07-19 00:31+0200\n"
-"PO-Revision-Date: 2017-07-19 16:00+\n"
+"POT-Creation-Date: 2017-07-20 00:31+0200\n"
+"PO-Revision-Date: 2017-07-20 05:03+\n"
 "Last-Translator: Allan Nordhøy \n"
 "Language-Team: Norwegian Bokmål 
(http://www.transifex.com/xfce/xfce-apps/language/nb/)\n"
 "MIME-Version: 1.0\n"
@@ -170,12 +170,12 @@ msgstr "Meld inn feil til <%s>."
 msgid "Unable to register terminal service: %s\n"
 msgstr "Klarte ikke registerer terminaltjeneste: %s\n"
 
-#: ../terminal/terminal-app.c:851
+#: ../terminal/terminal-app.c:848
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "Ugyldig geomtriangivelse «%s»\n"
 
-#: ../terminal/terminal-app.c:940
+#: ../terminal/terminal-app.c:937
 #, c-format
 msgid "Failed to connect to session manager: %s\n"
 msgstr "Klarte ikke å koble til øktbehandler: %s\n"
@@ -410,25 +410,25 @@ msgstr "Last inn forvalg…"
 msgid "Terminal"
 msgstr "Terminal"
 
-#: ../terminal/terminal-screen.c:403 ../terminal/terminal-screen.c:771
-#: ../terminal/terminal-screen.c:1936
+#: ../terminal/terminal-screen.c:404 ../terminal/terminal-screen.c:772
+#: ../terminal/terminal-screen.c:1938
 msgid "Untitled"
 msgstr "Uten tittel"
 
-#: ../terminal/terminal-screen.c:672
+#: ../terminal/terminal-screen.c:673
 #, c-format
 msgid "Unable to determine your login shell."
 msgstr "Klarte ikke bestemme innloggingsskallet ditt."
 
-#: ../terminal/terminal-screen.c:1620 ../terminal/terminal-screen.c:1646
+#: ../terminal/terminal-screen.c:1622 ../terminal/terminal-screen.c:1648
 msgid "Failed to execute child"
 msgstr "Klarte ikke kjøre underprosess"
 
-#: ../terminal/terminal-screen.c:2236
+#: ../terminal/terminal-screen.c:2238
 msgid "Close this tab"
 msgstr "Lukke denne fanen"
 
-#: ../terminal/terminal-screen.c:2290
+#: ../terminal/terminal-screen.c:2292
 #, c-format
 msgid "Failed to set encoding %s\n"
 msgstr "Klarte ikke å sette kodingen %s\n"
@@ -538,291 +538,299 @@ msgstr "Nedfellbar Terminal"
 msgid "Toggle Drop-down Terminal"
 msgstr "Veksle rullegardin-terminal"
 
-#: ../terminal/terminal-window.c:310
+#: ../terminal/terminal-window.c:316
 msgid "_File"
 msgstr "_Fil"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open _Tab"
 msgstr "Ny _fane"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open a new terminal tab"
 msgstr "Åpne ny terminalfane"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open T_erminal"
 msgstr "Ny t_erminal"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open a new terminal window"
 msgstr "Åpne nytt terminalvindu"
 
-#: ../terminal/terminal-window.c:313
+#: ../terminal/terminal-window.c:319
 msgid "_Undo Close Tab"
 msgstr "_Angre lukking av fane"
 
-#: ../terminal/terminal-window.c:314
+#: ../terminal/terminal-window.c:320
 msgid "_Detach Tab"
 msgstr "Lø_sne fane"
 
-#: ../terminal/terminal-window.c:315 ../terminal/terminal-window.c:736
+#: ../terminal/terminal-window.c:321 ../terminal/terminal-window.c:751
 msgid "Close T_ab"
 msgstr "Lukk fane"
 
-#: ../terminal/terminal-window.c:316
+#: ../terminal/terminal-window.c:322
 msgid "Close Other Ta_bs"
 msgstr "Lukk _andre faner"
 
-#: ../terminal/terminal-window.c:317 ../terminal/terminal-window.c:739
+#: ../terminal/terminal-window.c:323 ../terminal/terminal-window.c:754
 msgid "Close _Window"
 msgstr "Lukk vindu"
 
-#: ../terminal/terminal-window.c:318
+#: ../terminal/terminal-window.c:324
 msgid "_Edit"
 msgstr "_Rediger"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:325
 msgid "_Copy"
 msgstr "Ko_pier"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:325
 msgid "Copy to clipboard"
 msgstr "Kopier til utklippstavlen"
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:326
 msgid "_Paste"
 msgstr "_Lim inn"
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:326
 msgid "Paste from clipboard"
 msgstr "Lim inn fra utklippstavlen"
 
-#: 

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

2017-07-20 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 3a99b2581ba03d2eaf9046ddd7cb0b70a604c642
Author: Michal Várady 
Date:   Thu Jul 20 12:31:11 2017 +0200

I18n: Update translation cs (100%).

348 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/cs.po | 170 +--
 1 file changed, 89 insertions(+), 81 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index 718e39c..e8cce26 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-07-19 00:31+0200\n"
-"PO-Revision-Date: 2017-07-19 05:20+\n"
+"POT-Creation-Date: 2017-07-20 00:31+0200\n"
+"PO-Revision-Date: 2017-07-20 08:44+\n"
 "Last-Translator: Michal Várady \n"
 "Language-Team: Czech (http://www.transifex.com/xfce/xfce-apps/language/cs/)\n"
 "MIME-Version: 1.0\n"
@@ -170,12 +170,12 @@ msgstr "Hlášení o chybách posílejte na adresu <%s>."
 msgid "Unable to register terminal service: %s\n"
 msgstr "Nelze registrovat službu terminálu: %s\n"
 
-#: ../terminal/terminal-app.c:851
+#: ../terminal/terminal-app.c:848
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "Neplatný řetězec geometrie \"%s\"\n"
 
-#: ../terminal/terminal-app.c:940
+#: ../terminal/terminal-app.c:937
 #, c-format
 msgid "Failed to connect to session manager: %s\n"
 msgstr "Připojení ke správci relací se nezdařilo: %s\n"
@@ -410,25 +410,25 @@ msgstr "Načíst přednastavení..."
 msgid "Terminal"
 msgstr "Terminal"
 
-#: ../terminal/terminal-screen.c:403 ../terminal/terminal-screen.c:771
-#: ../terminal/terminal-screen.c:1936
+#: ../terminal/terminal-screen.c:404 ../terminal/terminal-screen.c:772
+#: ../terminal/terminal-screen.c:1938
 msgid "Untitled"
 msgstr "Bez názvu"
 
-#: ../terminal/terminal-screen.c:672
+#: ../terminal/terminal-screen.c:673
 #, c-format
 msgid "Unable to determine your login shell."
 msgstr "Nelze zjistit vaše uživatelské jméno."
 
-#: ../terminal/terminal-screen.c:1620 ../terminal/terminal-screen.c:1646
+#: ../terminal/terminal-screen.c:1622 ../terminal/terminal-screen.c:1648
 msgid "Failed to execute child"
 msgstr "Spuštění procesu potomka se nezdařilo"
 
-#: ../terminal/terminal-screen.c:2236
+#: ../terminal/terminal-screen.c:2238
 msgid "Close this tab"
 msgstr "Zavřít tuto kartu"
 
-#: ../terminal/terminal-screen.c:2290
+#: ../terminal/terminal-screen.c:2292
 #, c-format
 msgid "Failed to set encoding %s\n"
 msgstr "Nastavení kódování %s se nezdařilo\n"
@@ -538,291 +538,299 @@ msgstr "Otevřít T_erminál"
 msgid "Toggle Drop-down Terminal"
 msgstr "Přepnout drop-down terminál"
 
-#: ../terminal/terminal-window.c:310
+#: ../terminal/terminal-window.c:316
 msgid "_File"
 msgstr "_Soubor"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open _Tab"
 msgstr "Otevří_t kartu"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open a new terminal tab"
 msgstr "Otevře novou kartu terminálu"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open T_erminal"
 msgstr "Otevřít T_erminál"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open a new terminal window"
 msgstr "Otevře nové okno terminálu"
 
-#: ../terminal/terminal-window.c:313
+#: ../terminal/terminal-window.c:319
 msgid "_Undo Close Tab"
 msgstr "_Vrátit zavření karty"
 
-#: ../terminal/terminal-window.c:314
+#: ../terminal/terminal-window.c:320
 msgid "_Detach Tab"
 msgstr "O_dpojit kartu"
 
-#: ../terminal/terminal-window.c:315 ../terminal/terminal-window.c:736
+#: ../terminal/terminal-window.c:321 ../terminal/terminal-window.c:751
 msgid "Close T_ab"
 msgstr "Zavřít _kartu"
 
-#: ../terminal/terminal-window.c:316
+#: ../terminal/terminal-window.c:322
 msgid "Close Other Ta_bs"
 msgstr "Zavřít _ostatní karty"
 
-#: ../terminal/terminal-window.c:317 ../terminal/terminal-window.c:739
+#: ../terminal/terminal-window.c:323 ../terminal/terminal-window.c:754
 msgid "Close _Window"
 msgstr "Zavřít _okno"
 
-#: ../terminal/terminal-window.c:318
+#: ../terminal/terminal-window.c:324
 msgid "_Edit"
 msgstr "Ú_pravy"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:325
 msgid "_Copy"
 msgstr "_Kopírovat"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:325
 msgid "Copy to clipboard"
 msgstr "Zkopírovat do schránky."
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:326
 msgid "_Paste"
 msgstr "Vlož_it"
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:326
 msgid "Paste from clipboard"
 

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

2017-07-20 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 cc231a0e52a2baee090ac7c2257a9cc90142d316
Author: Robert Antoni Buj Gelonch 
Date:   Thu Jul 20 12:31:11 2017 +0200

I18n: Update translation ca (100%).

348 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/ca.po | 170 +--
 1 file changed, 89 insertions(+), 81 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 209861b..f245975 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-07-19 00:31+0200\n"
-"PO-Revision-Date: 2017-07-19 07:19+\n"
+"POT-Creation-Date: 2017-07-20 00:31+0200\n"
+"PO-Revision-Date: 2017-07-20 08:05+\n"
 "Last-Translator: Robert Antoni Buj Gelonch \n"
 "Language-Team: Catalan 
(http://www.transifex.com/xfce/xfce-apps/language/ca/)\n"
 "MIME-Version: 1.0\n"
@@ -169,12 +169,12 @@ msgstr "Si us plau, notifiqueu els errors a <%s>."
 msgid "Unable to register terminal service: %s\n"
 msgstr "No es pot registrar el servei de terminal: %s\n"
 
-#: ../terminal/terminal-app.c:851
+#: ../terminal/terminal-app.c:848
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "Cadena de geometria invàlida «%s»\n"
 
-#: ../terminal/terminal-app.c:940
+#: ../terminal/terminal-app.c:937
 #, c-format
 msgid "Failed to connect to session manager: %s\n"
 msgstr "No s'ha pogut connectar al gestor sessions: %s\n"
@@ -409,25 +409,25 @@ msgstr "Carrega els valors predefinits..."
 msgid "Terminal"
 msgstr "Terminal"
 
-#: ../terminal/terminal-screen.c:403 ../terminal/terminal-screen.c:771
-#: ../terminal/terminal-screen.c:1936
+#: ../terminal/terminal-screen.c:404 ../terminal/terminal-screen.c:772
+#: ../terminal/terminal-screen.c:1938
 msgid "Untitled"
 msgstr "Sense títol"
 
-#: ../terminal/terminal-screen.c:672
+#: ../terminal/terminal-screen.c:673
 #, c-format
 msgid "Unable to determine your login shell."
 msgstr "No s'ha pogut determinar el vostre shell d'inici de sessió."
 
-#: ../terminal/terminal-screen.c:1620 ../terminal/terminal-screen.c:1646
+#: ../terminal/terminal-screen.c:1622 ../terminal/terminal-screen.c:1648
 msgid "Failed to execute child"
 msgstr "Ha fallat l'execució del fill"
 
-#: ../terminal/terminal-screen.c:2236
+#: ../terminal/terminal-screen.c:2238
 msgid "Close this tab"
 msgstr "Tanca aquesta pestanya"
 
-#: ../terminal/terminal-screen.c:2290
+#: ../terminal/terminal-screen.c:2292
 #, c-format
 msgid "Failed to set encoding %s\n"
 msgstr "No s'ha pogut establir la codificació %s\n"
@@ -537,291 +537,299 @@ msgstr "Terminal desplegable"
 msgid "Toggle Drop-down Terminal"
 msgstr "Commuta a terminal desplegable"
 
-#: ../terminal/terminal-window.c:310
+#: ../terminal/terminal-window.c:316
 msgid "_File"
 msgstr "_Fitxer"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open _Tab"
 msgstr "Obre una _pestanya"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open a new terminal tab"
 msgstr "Obre una pestanya nova de terminal"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open T_erminal"
 msgstr "Obre un t_erminal"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open a new terminal window"
 msgstr "Obre una finestra nova de terminal"
 
-#: ../terminal/terminal-window.c:313
+#: ../terminal/terminal-window.c:319
 msgid "_Undo Close Tab"
 msgstr "_Desfés Tanca la pestanya"
 
-#: ../terminal/terminal-window.c:314
+#: ../terminal/terminal-window.c:320
 msgid "_Detach Tab"
 msgstr "_Separa la pestanya"
 
-#: ../terminal/terminal-window.c:315 ../terminal/terminal-window.c:736
+#: ../terminal/terminal-window.c:321 ../terminal/terminal-window.c:751
 msgid "Close T_ab"
 msgstr "Tanca la _pestanya"
 
-#: ../terminal/terminal-window.c:316
+#: ../terminal/terminal-window.c:322
 msgid "Close Other Ta_bs"
 msgstr "Tanca les _altres pestanyes"
 
-#: ../terminal/terminal-window.c:317 ../terminal/terminal-window.c:739
+#: ../terminal/terminal-window.c:323 ../terminal/terminal-window.c:754
 msgid "Close _Window"
 msgstr "_Tanca la finestra"
 
-#: ../terminal/terminal-window.c:318
+#: ../terminal/terminal-window.c:324
 msgid "_Edit"
 msgstr "_Edita"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:325
 msgid "_Copy"
 msgstr "_Copia"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:325
 msgid "Copy to clipboard"
 msgstr "Copia al porta-retalls"
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:326
 msgid "_Paste"
 msgstr 

[Xfce4-commits] [xfce/xfconf] 02/03: Update documentation api

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

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

commit 295daf5d500bf1b6eebfe8b88a2901b4a3eafd4a
Author: Romain B 
Date:   Fri Jun 23 15:40:44 2017 +0200

Update documentation api

- Re-add correct sections / headers to generate a nice documentation
- More modern way to handle documentation with gtk-doc (no more sgml
templates).

Signed-off-by: Ali Abdallah 
---
 common/xfconf-errors.c   | 18 +++---
 common/xfconf-types.c|  8 
 xfconf/xfconf-binding.c  | 19 +++
 xfconf/xfconf-channel.c  | 11 +++
 xfconf/xfconf-errors.h   | 16 
 xfconf/xfconf.c  | 13 +
 xfconfd/xfconf-backend.c | 26 ++
 7 files changed, 104 insertions(+), 7 deletions(-)

diff --git a/common/xfconf-errors.c b/common/xfconf-errors.c
index a565018..8f261e6 100644
--- a/common/xfconf-errors.c
+++ b/common/xfconf-errors.c
@@ -27,6 +27,15 @@
 #include "xfconf/xfconf-errors.h"
 #include "xfconf-alias.h"
 
+/**
+ * SECTION:xfconf-errors
+ * @title: Error Reporting
+ * @short_description: Xfconf library and daemon error descriptions
+ *
+ * Both the Xfconf daemon and library provide error information via the use of 
#GError
+ **/
+
+
 static const GDBusErrorEntry xfconf_daemon_dbus_error_entries[] = 
 {
 { XFCONF_ERROR_UNKNOWN, "org.xfce.Xfconf.Error.Unknown" },
@@ -56,13 +65,6 @@ static const GDBusErrorEntry 
xfconf_daemon_dbus_error_entries[] =
  **/
 
 
-/**
- * XfconfError:
- *
- * An enumeration listing the different kinds of errors under the
- * XFCONF_ERROR domain.
- **/
-
 GQuark
 xfconf_get_error_quark(void)
 {
@@ -79,6 +81,8 @@ xfconf_get_error_quark(void)
 /* unfortunately glib-mkenums can't generate types that are compatible with
  * dbus error names -- the 'nick' value is used, which can have dashes in it,
  * which dbus doesn't like. */
+
+
 GType
 xfconf_error_get_type(void)
 {
diff --git a/common/xfconf-types.c b/common/xfconf-types.c
index 24d115d..9a3fb4d 100644
--- a/common/xfconf-types.c
+++ b/common/xfconf-types.c
@@ -31,6 +31,14 @@
 
 #include 
 
+/**
+ * SECTION:xfconf-types
+ * @title: Xfconf Types
+ * @short_description: GObject types used by the Xfconf daemon and library
+ *
+ *  libgobject lacks GObject fundamental types for 16-bit signed and unsigned 
integers, which may be useful to use in an Xfconf store. GObject types for 
these primitive types are provided here.
+ **/
+
 
 /**
  * XFCONF_TYPE_UINT16:
diff --git a/xfconf/xfconf-binding.c b/xfconf/xfconf-binding.c
index a5df2c7..22db0f4 100644
--- a/xfconf/xfconf-binding.c
+++ b/xfconf/xfconf-binding.c
@@ -33,6 +33,22 @@
 #include "common/xfconf-common-private.h"
 
 
+/**
+ * SECTION:xfconf-binding
+ * @title: Xfconf-GObject Binding
+ * @short_description: Functions to bind Xfconf properties to GObject 
properties
+ *
+ * Often it may be useful to bind an Xfconf property to a GObject property.
+ * Settings dialogs often display the current value of an Xfconf property,
+ * and a user may edit the value to change the value in the Xfconf store.
+ * If the Xfconf property changes outside the settings dialog, the user will
+ * usually want to see the settings dialog automatically update to reflect
+ * the new value.
+ *
+ * With a single line of code, Xfconf's binding functionality can automate
+ * all this.
+ **/
+
 typedef struct
 {
 XfconfChannel *channel;
@@ -516,6 +532,7 @@ xfconf_g_property_bind(XfconfChannel *channel,
  *
  * Returns: an ID number that can be used to later remove the
  *  binding.
+ *
  **/
 gulong
 xfconf_g_property_bind_gdkcolor(XfconfChannel *channel,
@@ -577,6 +594,8 @@ xfconf_g_property_bind_gdkcolor(XfconfChannel *channel,
  *
  * Returns: an ID number that can be used to later remove the
  *  binding.
+ *
+ * Since: 4.12.1
  **/
 gulong
 xfconf_g_property_bind_gdkrgba(XfconfChannel *channel,
diff --git a/xfconf/xfconf-channel.c b/xfconf/xfconf-channel.c
index 5741664..1dbdfdc 100644
--- a/xfconf/xfconf-channel.c
+++ b/xfconf/xfconf-channel.c
@@ -48,6 +48,17 @@
: (gchar *)(property) )
 
 /**
+ * SECTION:xfconf-channel
+ * @title: XfconfChannel
+ * @short_description: An application-defined domain for storing configuration 
settings
+ *
+ * An XfconfChannel is a representation of a restricted domain or
+ * namespace that an application can define to store configuration
+ * settings.  This is to ensure that different applications do not store
+ * configuration keys with the same names.
+ **/
+
+/**
  * XfconfChannel:
  *
  * An opaque structure that holds state about a channel.
diff --git a/xfconf/xfconf-errors.h b/xfconf/xfconf-errors.h
index 4b489fd..b80af64 100644
--- a/xfconf/xfconf-errors.h
+++ 

[Xfce4-commits] [xfce/xfconf] 01/03: Add missing API indicies, bump documentation dates and credits

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

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

commit c8f02eb3fcbf1f0b5d214b0c09319b16507f167f
Author: Romain B 
Date:   Fri Jun 23 15:56:29 2017 +0200

Add missing API indicies, bump documentation dates and credits

Signed-off-by: Ali Abdallah 
---
 docs/reference/setup-build.stamp |  0
 docs/reference/xfconf-docs.xml   | 50 ++--
 docs/reference/xfconf-undeclared.txt |  0
 3 files changed, 48 insertions(+), 2 deletions(-)

diff --git a/docs/reference/setup-build.stamp b/docs/reference/setup-build.stamp
deleted file mode 100644
index e69de29..000
diff --git a/docs/reference/xfconf-docs.xml b/docs/reference/xfconf-docs.xml
index 24be72f..bcecd23 100644
--- a/docs/reference/xfconf-docs.xml
+++ b/docs/reference/xfconf-docs.xml
@@ -1,9 +1,31 @@
 
 http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd;>
-http://www.w3.org/2003/XInclude;>
+   "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd;
+[
+  http://www.w3.org/2003/XInclude'">
+]>
+
+
   
 Xfconf Reference Manual
+Version 
+2017
+
+
+  2017
+  The Xfce Development Team
+
+
+
+  
+Permission is granted to copy, distribute and/or modify this document
+under the terms of the GNU Free Documentation License, Version 1.1 or
+any later version published by the Free Software Foundation; with no
+Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+Texts. The complete license text is available from the http://www.gnu.org/;>Free Software Foundation.
+  
+
   
 
   
@@ -23,4 +45,28 @@
 
 
   
+
+
+API Index
+
+
+  All symbols
+  
+
+
+
+  Added in 4.5.91
+  
+
+
+
+  Added in 4.5.92
+  
+
+
+
+  Added in 4.12.1
+  
+
+  
 
diff --git a/docs/reference/xfconf-undeclared.txt 
b/docs/reference/xfconf-undeclared.txt
deleted file mode 100644
index e69de29..000

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


[Xfce4-commits] [xfce/xfconf] branch master updated (548b590 -> 71e7326)

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

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

  from  548b590   I18n: Update translation de (100%).
   new  c8f02eb   Add missing API indicies, bump documentation dates and 
credits
   new  295daf5   Update documentation api
   new  71e7326   Add missing functions to gtk-²doc

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:
 common/xfconf-errors.c   | 18 -
 common/xfconf-types.c|  8 ++
 docs/reference/setup-build.stamp |  0
 docs/reference/xfconf-docs.xml   | 50 ++--
 docs/reference/xfconf-sections.txt   |  3 +++
 docs/reference/xfconf-undeclared.txt |  0
 xfconf/xfconf-binding.c  | 19 ++
 xfconf/xfconf-channel.c  | 11 
 xfconf/xfconf-errors.h   | 16 
 xfconf/xfconf.c  | 13 ++
 xfconfd/xfconf-backend.c | 28 +++-
 11 files changed, 156 insertions(+), 10 deletions(-)
 delete mode 100644 docs/reference/setup-build.stamp
 delete mode 100644 docs/reference/xfconf-undeclared.txt

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


[Xfce4-commits] [xfce/xfconf] 03/03: Add missing functions to gtk-²doc

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

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

commit 71e732650168f994f616c6bca7b36d936cff4203
Author: Romain B 
Date:   Fri Jun 23 16:13:01 2017 +0200

Add missing functions to gtk-²doc

- Also uniformize titles names in docs

Signed-off-by: Ali Abdallah 
---
 docs/reference/xfconf-sections.txt | 3 +++
 xfconf/xfconf-channel.c| 2 +-
 xfconfd/xfconf-backend.c   | 4 ++--
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/docs/reference/xfconf-sections.txt 
b/docs/reference/xfconf-sections.txt
index 7690b77..66181b3 100644
--- a/docs/reference/xfconf-sections.txt
+++ b/docs/reference/xfconf-sections.txt
@@ -53,6 +53,8 @@ XFCONF_CHANNEL_GET_CLASS
 XfconfBackendInterface
 XfconfBackend
 xfconf_backend_initialize
+xfconf_backend_is_property_locked
+xfconf_backend_list_channels
 xfconf_backend_set
 xfconf_backend_get
 xfconf_backend_get_all
@@ -60,6 +62,7 @@ xfconf_backend_exists
 xfconf_backend_reset
 xfconf_backend_flush
 xfconf_backend_register_property_changed_func
+xfconf_backend_return_val_if_fail
 
 XFCONF_BACKEND
 XFCONF_IS_BACKEND
diff --git a/xfconf/xfconf-channel.c b/xfconf/xfconf-channel.c
index 1dbdfdc..7b3a7a6 100644
--- a/xfconf/xfconf-channel.c
+++ b/xfconf/xfconf-channel.c
@@ -49,7 +49,7 @@
 
 /**
  * SECTION:xfconf-channel
- * @title: XfconfChannel
+ * @title: Xfconf Channel
  * @short_description: An application-defined domain for storing configuration 
settings
  *
  * An XfconfChannel is a representation of a restricted domain or
diff --git a/xfconfd/xfconf-backend.c b/xfconfd/xfconf-backend.c
index f85836e..c4aec38 100644
--- a/xfconfd/xfconf-backend.c
+++ b/xfconfd/xfconf-backend.c
@@ -33,7 +33,7 @@ static gboolean xfconf_channel_is_valid(const gchar *channel,
 
 /**
  * SECTION:xfconf-backend
- * @title: XfconfBackend
+ * @title: Xfconf Backend
  * @short_description: Interface for configuration store backends
  *
  *  XfconfBackend is an abstract interface that allows the Xfconf Daemon
@@ -522,7 +522,7 @@ xfconf_backend_flush(XfconfBackend *backend,
 /**
  * xfconf_backend_register_property_changed_func:
  * @backend: The #XfconfBackend.
- * @func: A function of type #XfconfPropertyChangeFunc.
+ * @func: A function of type #XfconfPropertyChangedFunc.
  * @user_data: Arbitrary caller-supplied data.
  *
  * Registers a function to be called when a property changes.  The

-- 
To stop receiving notification emails like this one, please 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-statusnotifier-plugin] branch master updated (b4bf838 -> 21760d0)

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

ninetls pushed a 
change to branch 
master
in repository panel-plugins/xfce4-statusnotifier-plugin.

  from  b4bf838   Back to development
   new  21760d0   Always use preferred icon size for GtkIconTheme

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:
 panel-plugin/sn-icon-box.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-statusnotifier-plugin] 01/01: Always use preferred icon size for GtkIconTheme

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

ninetls pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-statusnotifier-plugin.

commit 21760d00c8e255f4bf83ddce1f387b1c034599f4
Author: Viktor Odintsev 
Date:   Thu Jul 20 02:20:00 2017 +0300

Always use preferred icon size for GtkIconTheme
---
 panel-plugin/sn-icon-box.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/panel-plugin/sn-icon-box.c b/panel-plugin/sn-icon-box.c
index 8326f91..2ea64b1 100644
--- a/panel-plugin/sn-icon-box.c
+++ b/panel-plugin/sn-icon-box.c
@@ -270,14 +270,14 @@ sn_icon_box_apply_icon (GtkWidget*image,
 {
   work_pixbuf = gtk_icon_theme_load_icon (icon_theme_from_path,
   sn_preferred_name (),
-  -1, 0, NULL);
+  icon_size, 0, NULL);
 }
 
   if (work_pixbuf == NULL)
 {
   icon_info = gtk_icon_theme_lookup_icon (icon_theme,
   sn_preferred_name (),
-  16, 0);
+  icon_size, 0);
   if (icon_info != NULL)
 {
   gtk_image_set_from_icon_name (GTK_IMAGE (image),

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