[Xfce4-commits] [apps/xfce4-terminal] branch master updated (cc18e2a -> 432ed2a)

2016-09-21 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  cc18e2a   Refine previous commit
   new  432ed2a   Fix memory leak when showing preferences dialog

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-preferences-dialog.c | 6 +-
 1 file changed, 5 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] 01/01: Fix memory leak when showing preferences dialog

2016-09-21 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 432ed2aa3e2645b814de6ca3a030cd7620a9032a
Author: Igor 
Date:   Wed Sep 21 13:37:12 2016 +0300

Fix memory leak when showing preferences dialog
---
 terminal/terminal-preferences-dialog.c | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/terminal/terminal-preferences-dialog.c 
b/terminal/terminal-preferences-dialog.c
index 80b5cdf..8b0e868 100644
--- a/terminal/terminal-preferences-dialog.c
+++ b/terminal/terminal-preferences-dialog.c
@@ -132,6 +132,7 @@ terminal_preferences_dialog_init (TerminalPreferencesDialog 
*dialog)
   gchar palette_name[16];
   GtkFileFilter*filter;
   gchar*file;
+  guint res;
   GBinding *binding;
   GtkTreeModel *model;
   gchar*current;
@@ -180,7 +181,10 @@ terminal_preferences_dialog_init 
(TerminalPreferencesDialog *dialog)
 }
 
   /* load the builder data into the object */
-  if (gtk_builder_add_from_file (GTK_BUILDER (dialog), file, ) == 0)
+  res = gtk_builder_add_from_file (GTK_BUILDER (dialog), file, );
+  g_free (file);
+
+  if (res == 0)
 {
 error:
   g_critical ("Failed to load ui file: %s.", error->message);

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

2016-09-21 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  432ed2a   Fix memory leak when showing preferences dialog
   new  fdfec0f   Do not set DISPLAY variable in non-X11 environments (e.g. 
Wayland)

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-screen.c | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

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


[Xfce4-commits] [apps/xfce4-terminal] 01/01: Do not set DISPLAY variable in non-X11 environments (e.g. Wayland)

2016-09-21 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 fdfec0f99efd3d4eb064e3a01dd57cb374544489
Author: Igor 
Date:   Wed Sep 21 16:08:15 2016 +0300

Do not set DISPLAY variable in non-X11 environments (e.g. Wayland)

Fixes https://bugzilla.xfce.org/show_bug.cgi?id=12867
---
 terminal/terminal-screen.c | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/terminal/terminal-screen.c b/terminal/terminal-screen.c
index 1c22b84..c49bf09 100644
--- a/terminal/terminal-screen.c
+++ b/terminal/terminal-screen.c
@@ -781,20 +781,19 @@ terminal_screen_get_child_environment (TerminalScreen 
*screen)
 
   result[n++] = g_strdup_printf ("COLORTERM=%s", PACKAGE_NAME);
 
+#ifdef GDK_WINDOWING_X11
   /* determine the toplevel widget */
   toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
-  if (toplevel != NULL && gtk_widget_get_realized (toplevel))
+  if (toplevel != NULL && gtk_widget_get_realized (toplevel) && 
GDK_IS_X11_WINDOW (gtk_widget_get_window (toplevel)))
 {
-#ifdef GDK_WINDOWING_X11
-  if (GDK_IS_X11_WINDOW (gtk_widget_get_window (toplevel)))
-result[n++] = g_strdup_printf ("WINDOWID=%ld", (glong) 
gdk_x11_window_get_xid (gtk_widget_get_window (toplevel)));
-#endif
+  result[n++] = g_strdup_printf ("WINDOWID=%ld", (glong) 
gdk_x11_window_get_xid (gtk_widget_get_window (toplevel)));
 
   /* determine the DISPLAY value for the command */
   display_name = gdk_screen_make_display_name (gtk_widget_get_screen 
(toplevel));
   result[n++] = g_strdup_printf ("DISPLAY=%s", display_name);
   g_free (display_name);
 }
+#endif
 
   result[n] = NULL;
 

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


[Xfce4-commits] [panel-plugins/xfce4-clipman-plugin] branch master updated (fa6a3d7 -> afa41f8)

2016-09-21 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  fa6a3d7   I18n: Update translation pl (100%).
   new  afa41f8   I18n: Update translation es (100%).

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


Summary of changes:
 po/es.po | 23 ---
 1 file changed, 12 insertions(+), 11 deletions(-)

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


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

2016-09-21 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit afa41f8007b0b7542da14b75103c5cbbb0bde144
Author: Manolo Díaz 
Date:   Wed Sep 21 18:31:05 2016 +0200

I18n: Update translation es (100%).

72 translated messages.

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

diff --git a/po/es.po b/po/es.po
index 9609517..5c9c3c7 100644
--- a/po/es.po
+++ b/po/es.po
@@ -4,8 +4,9 @@
 # 
 # Translators:
 # Abel Martín , 2009
+# Adolfo Jayme-Barrientos, 2014
 # Adolfo Jayme Barrientos, 2014
-# Fitoschido, 2014
+# Adolfo Jayme-Barrientos, 2014
 # Fitoschido, 2014
 # gabrieltandil , 2016
 # gabrieltandil , 2016
@@ -15,8 +16,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-06-02 00:31+0200\n"
-"PO-Revision-Date: 2016-06-14 14:41+\n"
+"POT-Creation-Date: 2016-09-15 18:31+0200\n"
+"PO-Revision-Date: 2016-09-21 15:58+\n"
 "Last-Translator: Manolo Díaz \n"
 "Language-Team: Spanish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/es/)\n"
 "MIME-Version: 1.0\n"
@@ -37,7 +38,7 @@ msgstr "El Gestor del portapapeles provee un complemento para 
el panel de Xfce y
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.h:1
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:1
 #: ../panel-plugin/main-panel-plugin.c:73
-#: ../panel-plugin/main-status-icon.c:62 ../panel-plugin/plugin.c:318
+#: ../panel-plugin/main-status-icon.c:62 ../panel-plugin/plugin.c:319
 msgid "Clipman"
 msgstr "portapapeles"
 
@@ -164,9 +165,9 @@ msgstr "Mostrar código _QR"
 
 #: ../panel-plugin/settings-dialog.ui.h:14
 msgid ""
-"If checked, the menu shows a QR-Code of the corrently selected clipboard "
+"If checked, the menu shows a QR-Code of the currently selected clipboard "
 "entry"
-msgstr "Si está marcado, El menú mostrará el código QR para la entrada del 
portapapeles seleccionada"
+msgstr "Si está marcado, el menú muestra el código QR de la la entrada 
seleccionada del portapapeles"
 
 #: ../panel-plugin/settings-dialog.ui.h:15
 msgid "Behavior"
@@ -308,7 +309,7 @@ msgstr "Expresión regular"
 msgid "_Disable"
 msgstr "_Desactivar"
 
-#: ../panel-plugin/actions.c:369
+#: ../panel-plugin/actions.c:370
 #, c-format
 msgid ""
 "Unable to execute the command \"%s\"\n"
@@ -337,18 +338,18 @@ msgstr "El portapapeles está vacío"
 msgid "_Clear history"
 msgstr "_Limpiar historial"
 
-#: ../panel-plugin/plugin.c:306
+#: ../panel-plugin/plugin.c:307
 msgid "Contributors:"
 msgstr "Colaboradores:"
 
-#: ../panel-plugin/plugin.c:320
+#: ../panel-plugin/plugin.c:321
 msgid "Clipboard Manager for Xfce"
 msgstr "Gestor del portapapeles para Xfce"
 
-#: ../panel-plugin/plugin.c:328
+#: ../panel-plugin/plugin.c:329
 msgid "translator-credits"
 msgstr "Roberto , 2008\nAbel Martín 
, 2009\nElega \nSergio 
, 2012\nPablo Roberto Francisco Lezaeta Reyes 
, 2013-2015\nAdolfo Jayme Barrientos 
, 2014"
 
-#: ../panel-plugin/plugin.c:342
+#: ../panel-plugin/plugin.c:343
 msgid "Unable to open the settings dialog"
 msgstr "No se puede abrir el diálogo de configuración"

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] branch master updated (9613ee0 -> d7fe465)

2016-09-21 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  9613ee0   I18n: Update translation tr (100%).
   new  302248b   I18n: Add translation ca@valencia (100%).
   new  24f7c01   I18n: Update translation kk (100%).
   new  c637068   I18n: Update translation lt (100%).
   new  9cf65ac   I18n: Update translation ast (98%).
   new  a9b31a7   I18n: Update translation zh_CN (92%).
   new  d7fe465   I18n: Update translation eu (44%).

The 6 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/whiskermenu.desktop |  2 ++
 po/ast.po| 29 -
 po/{ca.po => c...@valencia.po} | 69 
+++-
 po/eu.po | 57 +
 po/kk.po | 15 -
 po/lt.po | 12 +++
 po/zh_CN.po  | 11 +++
 7 files changed, 95 insertions(+), 100 deletions(-)
 copy po/{ca.po => c...@valencia.po} (85%)

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 01/06: I18n: Add translation ca@valencia (100%).

2016-09-21 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 302248beb6e1b94a6400747bf2d29dd308886317
Author: Graeme Gott 
Date:   Wed Sep 21 12:04:06 2016 -0400

I18n: Add translation ca@valencia (100%).
---
 panel-plugin/whiskermenu.desktop |   2 +
 po/c...@valencia.po| 404 
+++
 2 files changed, 406 insertions(+)

diff --git a/panel-plugin/whiskermenu.desktop b/panel-plugin/whiskermenu.desktop
index 666340f..fff68a1 100644
--- a/panel-plugin/whiskermenu.desktop
+++ b/panel-plugin/whiskermenu.desktop
@@ -7,6 +7,7 @@ Name[ar]=قائمة Whisker
 Name[ast]=Menú Whisker
 Name[bg]=Whisker Меню
 Name[ca]=Menú Whisker
+Name[ca@valencia]=Menú Whisker
 Name[cs]=Nabídka Whisker
 Name[da]=Whisker Menu
 Name[de]=Whisker-Menü
@@ -55,6 +56,7 @@ Comment[ar]=إظهار قائمة لولوج إلى التطبيقات المث
 Comment[ast]=Amuesa un menú p'acceder cenciellamente a les aplicaciones 
instalaes
 Comment[bg]=Показване на меню за лесен достъп до инсталираните приложения
 Comment[ca]=Mostra un menú per accedir fàcilment a les aplicacions instal·lades
+Comment[ca@valencia]=Mostra un menú per a accedir fàcilment a les aplicacions 
instal·lades
 Comment[cs]=Zobrazit nabídku snadný přístup k nainstalovaným aplikacím
 Comment[da]=Vis en menu for hurtig adgang til applikationer
 Comment[de]=Zeigt ein Menü, um einfach auf installierte Anwendungen zuzugreifen
diff --git a/po/c...@valencia.po b/po/c...@valencia.po
new file mode 100644
index 000..b5734c2
--- /dev/null
+++ b/po/c...@valencia.po
@@ -0,0 +1,404 @@
+# (Valencian) translation of xfce4-whiskermenu-plugin.
+# Copyright (C) 2016 Graeme Gott
+# This file is distributed under the same license as the 
xfce4-whiskermenu-plugin package.
+#
+# Translators:
+# Pilar Embid Giner , 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Whisker Menu\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-08-13 17:21+\n"
+"PO-Revision-Date: 2016-09-19 07:48+\n"
+"Last-Translator: Jose Alfredo Murcia Andrés \n"
+"Language-Team: Catalan (Valencian) (http://www.transifex.com/gottcode/xfce4-;
+"whiskermenu-plugin/language/ca@valencia/)\n"
+"Language: ca@valencia\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../panel-plugin/configuration-dialog.cpp:795
+msgid "Add action"
+msgstr "Afig una acció"
+
+#: ../panel-plugin/page.cpp:216
+msgid "Add to Desktop"
+msgstr "Afig a l’escriptori"
+
+#: ../panel-plugin/page.cpp:200
+msgid "Add to Favorites"
+msgstr "Afig als preferits"
+
+#: ../panel-plugin/page.cpp:220
+msgid "Add to Panel"
+msgstr "Afig al quadre"
+
+#: ../panel-plugin/category.cpp:61
+msgid "All"
+msgstr "Totes"
+
+#: ../panel-plugin/settings.cpp:118
+msgid "All _Settings"
+msgstr "Tots els paràmetres_s"
+
+#: ../panel-plugin/plugin.cpp:407
+msgid "Alternate application launcher for Xfce"
+msgstr "Accés directe a aplicacions alternatiu per a l'Xfce"
+
+#: ../panel-plugin/configuration-dialog.cpp:696
+msgid "Amount of _items:"
+msgstr "Nombre d’e_lements:"
+
+#: ../panel-plugin/plugin.cpp:239
+msgid "Applications"
+msgstr "Aplicacions"
+
+#: ../panel-plugin/configuration-dialog.cpp:631
+msgid "Background opacit_y:"
+msgstr "Opacitat del _fons:"
+
+#: ../panel-plugin/command-edit.cpp:49
+msgid "Browse the file system to choose a custom command."
+msgstr "Navegueu pel sistema de fitxers per a triar una ordre personalitzada."
+
+#: ../panel-plugin/configuration-dialog.cpp:853
+msgid "C_ommand:"
+msgstr "_Ordre:"
+
+#: ../panel-plugin/configuration-dialog.cpp:616
+msgid "Categ_ory icon size:"
+msgstr "Mida de les icones de les categ_ories:"
+
+#: ../panel-plugin/recent-page.cpp:173
+msgid "Clear Recently Used"
+msgstr "Neteja els elements recents"
+
+#: ../panel-plugin/plugin.cpp:408
+msgid "Copyright © 2013-2016 Graeme Gott"
+msgstr "Copyright © 2013-2016 Graeme Gott"
+
+#: ../panel-plugin/configuration-dialog.cpp:823
+msgid "Details"
+msgstr "Detalls"
+
+#: ../panel-plugin/configuration-dialog.cpp:518
+msgid "Di_splay:"
+msgstr "Mo_stra:"
+
+#: ../panel-plugin/configuration-dialog.cpp:713
+msgid "Display by _default"
+msgstr "Mostra-ho per _defecte"
+
+#: ../panel-plugin/settings.cpp:123
+msgid "Edit _Profile"
+msgstr "Edita el _perfil"
+
+#: ../panel-plugin/settings.cpp:123
+msgid "Failed to edit profile."
+msgstr "Ha fallat l'edició del perfil."
+
+#: ../panel-plugin/launcher.cpp:274 ../panel-plugin/run-action.cpp:41
+#: ../panel-plugin/search-action.cpp:188
+#, c-format
+msgid "Failed to execute command \"%s\"."
+msgstr "Ha fallat l'execució de l'ordre «%s»."
+
+#: ../panel-plugin/settings.cpp:122
+msgid "Failed to launch menu editor."
+msgstr "Ha fallat l'execució de l'editor dels menús."
+
+#: ../panel-plugin/settings.cpp:119
+msgid "Failed to lock screen."

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

2016-09-21 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit c6370689dc5d995828c8b9751d2ed19e1b3712bf
Author: Graeme Gott 
Date:   Wed Sep 21 12:12:24 2016 -0400

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

diff --git a/po/lt.po b/po/lt.po
index 1e8a88a..48a88d6 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-08-13 17:21+\n"
-"PO-Revision-Date: 2016-08-13 19:39+\n"
+"PO-Revision-Date: 2016-09-13 19:53+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian (http://www.transifex.com/gottcode/xfce4-;
 "whiskermenu-plugin/language/lt/)\n"
@@ -94,11 +94,11 @@ msgstr "Rodyti pagal _numatymą"
 
 #: ../panel-plugin/settings.cpp:123
 msgid "Edit _Profile"
-msgstr "Keisti pr_ofilį"
+msgstr "Redaguoti pr_ofilį"
 
 #: ../panel-plugin/settings.cpp:123
 msgid "Failed to edit profile."
-msgstr "Nepavyko keisti profilio."
+msgstr "Nepavyko redaguoti profilį."
 
 #: ../panel-plugin/launcher.cpp:274 ../panel-plugin/run-action.cpp:41
 #: ../panel-plugin/search-action.cpp:188
@@ -124,7 +124,7 @@ msgstr "Nepavyko atverti nustatymų tvarkytuvės."
 
 #: ../panel-plugin/settings.cpp:120
 msgid "Failed to switch users."
-msgstr "Nepavyko keisti naudotojo."
+msgstr "Nepavyko perjungti naudotojo."
 
 #: ../panel-plugin/window.cpp:161
 msgid "Favorites"
@@ -291,7 +291,7 @@ msgstr "Kei_sti naudotojus"
 
 #: ../panel-plugin/configuration-dialog.cpp:661
 msgid "Switch categories by _hovering"
-msgstr "_Keisti kategorijas, užvedant pelės rodyklę"
+msgstr "_Perjungti kategorijas, užvedant pelės rodyklę"
 
 #: ../panel-plugin/configuration-dialog.cpp:416
 msgid "The action will be deleted permanently."
@@ -366,7 +366,7 @@ msgstr "_Ištrinti"
 
 #: ../panel-plugin/settings.cpp:122
 msgid "_Edit Applications"
-msgstr "Keisti p_rogramas"
+msgstr "Taisyti p_rogramas"
 
 #: ../panel-plugin/configuration-dialog.cpp:73
 msgid "_Help"

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


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

2016-09-21 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 24f7c01392dfce48ae184ebe9537a34a8c5502e8
Author: Graeme Gott 
Date:   Wed Sep 21 12:07:16 2016 -0400

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

diff --git a/po/kk.po b/po/kk.po
index 6f51478..83e10b2 100644
--- a/po/kk.po
+++ b/po/kk.po
@@ -1,15 +1,15 @@
 # Kazakh translation for xfce4-whiskermenu-plugin.
-# Copyright (C) 2015 Graeme Gott
+# Copyright (C) 2016 Graeme Gott
 # This file is distributed under the same license as the 
xfce4-whiskermenu-plugin package.
 #
 # Translators:
-# Baurzhan Muftakhidinov , 2013-2015
+# Baurzhan Muftakhidinov , 2013-2016
 msgid ""
 msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-08-13 17:21+\n"
-"PO-Revision-Date: 2015-02-23 04:52+\n"
+"PO-Revision-Date: 2016-09-20 09:00+\n"
 "Last-Translator: Baurzhan Muftakhidinov \n"
 "Language-Team: Kazakh (http://www.transifex.com/gottcode/xfce4-whiskermenu-;
 "plugin/language/kk/)\n"
@@ -257,9 +257,8 @@ msgid "Show application _descriptions"
 msgstr "Қолданбалар с_ипаттамаларын көрсету"
 
 #: ../panel-plugin/configuration-dialog.cpp:588
-#, fuzzy
 msgid "Show application too_ltips"
-msgstr "Қолданбалар с_ипаттамаларын көрсету"
+msgstr "Қолданбалар қ_алқымалы кеңестерін көрсету"
 
 #: ../panel-plugin/configuration-dialog.cpp:576
 msgid "Show generic application _names"
@@ -328,7 +327,7 @@ msgstr "Өте кішкентай"
 
 #: ../panel-plugin/settings.cpp:126
 msgid "Web Search"
-msgstr ""
+msgstr "Веб іздеуі"
 
 #: ../panel-plugin/configuration-dialog.cpp:70
 #: ../panel-plugin/whiskermenu.desktop.in.h:1
@@ -370,7 +369,7 @@ msgstr "Қолданбаларды түз_ету"
 
 #: ../panel-plugin/configuration-dialog.cpp:73
 msgid "_Help"
-msgstr "Кө_мек"
+msgstr "_Көмек"
 
 #: ../panel-plugin/configuration-dialog.cpp:544
 msgid "_Icon:"
@@ -383,7 +382,7 @@ msgstr "Экранды б_локтау"
 #: ../panel-plugin/command-edit.cpp:68
 #: ../panel-plugin/configuration-dialog.cpp:122
 msgid "_OK"
-msgstr "О_К"
+msgstr "_ОК"
 
 #: ../panel-plugin/configuration-dialog.cpp:841
 msgid "_Pattern:"

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 04/06: I18n: Update translation ast (98%).

2016-09-21 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 9cf65ac3fd86617b61467d127ef0619aea16f3e8
Author: Graeme Gott 
Date:   Wed Sep 21 12:15:56 2016 -0400

I18n: Update translation ast (98%).
---
 po/ast.po | 29 ++---
 1 file changed, 14 insertions(+), 15 deletions(-)

diff --git a/po/ast.po b/po/ast.po
index 18be973..00b40f5 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -1,9 +1,9 @@
 # Asturian translation of xfce4-whiskermenu-plugin.
-# Copyright (C) 2015 Graeme Gott
+# Copyright (C) 2016 Graeme Gott
 # This file is distributed under the same license as the 
xfce4-whiskermenu-plugin package.
 #
 # Translators:
-# enolp , 2015
+# enolp , 2015-2016
 # Ḷḷumex03 , 2013-2014
 # Ḷḷumex03 , 2014
 msgid ""
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-08-13 17:21+\n"
-"PO-Revision-Date: 2015-03-26 16:14+\n"
+"PO-Revision-Date: 2016-09-20 23:37+\n"
 "Last-Translator: enolp \n"
 "Language-Team: Asturian (http://www.transifex.com/gottcode/xfce4-whiskermenu-;
 "plugin/language/ast/)\n"
@@ -75,7 +75,7 @@ msgstr "Tamañ_u d'iconu d'estaya:"
 
 #: ../panel-plugin/recent-page.cpp:173
 msgid "Clear Recently Used"
-msgstr "Llimpiar Usáu apocayá"
+msgstr "Llimpiar Usáo apocayá"
 
 #: ../panel-plugin/plugin.cpp:408
 msgid "Copyright © 2013-2016 Graeme Gott"
@@ -91,7 +91,7 @@ msgstr "Pa_ntalla:"
 
 #: ../panel-plugin/configuration-dialog.cpp:713
 msgid "Display by _default"
-msgstr ""
+msgstr "Amosar por _defeutu"
 
 #: ../panel-plugin/settings.cpp:123
 msgid "Edit _Profile"
@@ -178,7 +178,7 @@ msgstr "Nome"
 
 #: ../panel-plugin/icon-size.cpp:49
 msgid "None"
-msgstr "Un res"
+msgstr "Nada"
 
 #: ../panel-plugin/icon-size.cpp:53
 msgid "Normal"
@@ -259,9 +259,8 @@ msgid "Show application _descriptions"
 msgstr "Amosar descripciones _d'aplicaciones"
 
 #: ../panel-plugin/configuration-dialog.cpp:588
-#, fuzzy
 msgid "Show application too_ltips"
-msgstr "Amosar descripciones _d'aplicaciones"
+msgstr "_Amodsar conseyos emerxentes d'aplicaciones"
 
 #: ../panel-plugin/configuration-dialog.cpp:576
 msgid "Show generic application _names"
@@ -318,7 +317,7 @@ msgstr "Nun pue abrise la URL siguiente: %s"
 
 #: ../panel-plugin/configuration-dialog.cpp:558
 msgid "Use a single _panel row"
-msgstr ""
+msgstr "Usar panel d'una _filera"
 
 #: ../panel-plugin/icon-size.cpp:56
 msgid "Very Large"
@@ -330,7 +329,7 @@ msgstr "Perpequeñu"
 
 #: ../panel-plugin/settings.cpp:126
 msgid "Web Search"
-msgstr ""
+msgstr "Gueta web"
 
 #: ../panel-plugin/configuration-dialog.cpp:70
 #: ../panel-plugin/whiskermenu.desktop.in.h:1
@@ -352,11 +351,11 @@ msgstr "_Comportamientu"
 #: ../panel-plugin/command-edit.cpp:67
 #: ../panel-plugin/configuration-dialog.cpp:121
 msgid "_Cancel"
-msgstr ""
+msgstr "_Encaboxar"
 
 #: ../panel-plugin/configuration-dialog.cpp:74
 msgid "_Close"
-msgstr ""
+msgstr "_Zarrar"
 
 #: ../panel-plugin/configuration-dialog.cpp:85
 msgid "_Commands"
@@ -364,7 +363,7 @@ msgstr "_Comandos"
 
 #: ../panel-plugin/configuration-dialog.cpp:415
 msgid "_Delete"
-msgstr ""
+msgstr "_Desaniciar"
 
 #: ../panel-plugin/settings.cpp:122
 msgid "_Edit Applications"
@@ -372,7 +371,7 @@ msgstr "_Editar aplicaciones"
 
 #: ../panel-plugin/configuration-dialog.cpp:73
 msgid "_Help"
-msgstr ""
+msgstr "_Ayuda"
 
 #: ../panel-plugin/configuration-dialog.cpp:544
 msgid "_Icon:"
@@ -385,7 +384,7 @@ msgstr "_Bloquiar pantalla"
 #: ../panel-plugin/command-edit.cpp:68
 #: ../panel-plugin/configuration-dialog.cpp:122
 msgid "_OK"
-msgstr ""
+msgstr "_Aceutar"
 
 #: ../panel-plugin/configuration-dialog.cpp:841
 msgid "_Pattern:"

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 06/06: I18n: Update translation eu (44%).

2016-09-21 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit d7fe4658a5d8bc60640df48185e2e813688331ea
Author: Graeme Gott 
Date:   Wed Sep 21 12:23:34 2016 -0400

I18n: Update translation eu (44%).
---
 po/eu.po | 57 +
 1 file changed, 29 insertions(+), 28 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index 68be88f..019c61f 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -1,16 +1,17 @@
 # Basque translation of xfce4-whiskermenu-plugin.
-# Copyright (C) 2015 Graeme Gott
+# Copyright (C) 2016 Graeme Gott
 # This file is distributed under the same license as the 
xfce4-whiskermenu-plugin package.
 #
 # Translators:
-# aboutafteragain , 2014,2016
+# John Smith , 2014,2016
+# John Smith , 2016
 msgid ""
 msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-08-13 17:21+\n"
-"PO-Revision-Date: 2016-01-24 23:56+\n"
-"Last-Translator: aboutafteragain \n"
+"PO-Revision-Date: 2016-09-16 02:21+\n"
+"Last-Translator: John Smith \n"
 "Language-Team: Basque (http://www.transifex.com/gottcode/xfce4-whiskermenu-;
 "plugin/language/eu/)\n"
 "Language: eu\n"
@@ -45,7 +46,7 @@ msgstr "Ezarpen_guztiak"
 
 #: ../panel-plugin/plugin.cpp:407
 msgid "Alternate application launcher for Xfce"
-msgstr ""
+msgstr "XFCErentzako ordezko aplikazio abiarazlea"
 
 #: ../panel-plugin/configuration-dialog.cpp:696
 msgid "Amount of _items:"
@@ -53,7 +54,7 @@ msgstr ""
 
 #: ../panel-plugin/plugin.cpp:239
 msgid "Applications"
-msgstr ""
+msgstr "Aplikazioak"
 
 #: ../panel-plugin/configuration-dialog.cpp:631
 msgid "Background opacit_y:"
@@ -81,7 +82,7 @@ msgstr ""
 
 #: ../panel-plugin/configuration-dialog.cpp:823
 msgid "Details"
-msgstr ""
+msgstr "Xehetasunak"
 
 #: ../panel-plugin/configuration-dialog.cpp:518
 msgid "Di_splay:"
@@ -127,15 +128,15 @@ msgstr ""
 
 #: ../panel-plugin/window.cpp:161
 msgid "Favorites"
-msgstr ""
+msgstr "Gogokoenak"
 
 #: ../panel-plugin/configuration-dialog.cpp:523
 msgid "Icon"
-msgstr ""
+msgstr "Ikonoa"
 
 #: ../panel-plugin/configuration-dialog.cpp:525
 msgid "Icon and title"
-msgstr ""
+msgstr "Ikono eta izenburua"
 
 #: ../panel-plugin/configuration-dialog.cpp:707
 msgid "Ignore _favorites"
@@ -147,11 +148,11 @@ msgstr ""
 
 #: ../panel-plugin/icon-size.cpp:54
 msgid "Large"
-msgstr ""
+msgstr "Handia"
 
 #: ../panel-plugin/icon-size.cpp:55
 msgid "Larger"
-msgstr ""
+msgstr "Handiagoa"
 
 #: ../panel-plugin/settings.cpp:121
 msgid "Log _Out"
@@ -176,11 +177,11 @@ msgstr "Izena"
 
 #: ../panel-plugin/icon-size.cpp:49
 msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
 
 #: ../panel-plugin/icon-size.cpp:53
 msgid "Normal"
-msgstr ""
+msgstr "Normala"
 
 #: ../panel-plugin/settings.cpp:129
 msgid "Open URI"
@@ -230,7 +231,7 @@ msgstr ""
 
 #: ../panel-plugin/settings.cpp:128
 msgid "Run in Terminal"
-msgstr ""
+msgstr "Terminalean abiarazi"
 
 #: ../panel-plugin/configuration-dialog.cpp:86
 msgid "Search Actio_ns"
@@ -242,7 +243,7 @@ msgstr ""
 
 #: ../panel-plugin/configuration-dialog.cpp:119
 msgid "Select An Icon"
-msgstr ""
+msgstr "Ikono bat aukeratu"
 
 #: ../panel-plugin/command-edit.cpp:64
 msgid "Select Command"
@@ -270,19 +271,19 @@ msgstr ""
 
 #: ../panel-plugin/icon-size.cpp:52
 msgid "Small"
-msgstr ""
+msgstr "Txikia"
 
 #: ../panel-plugin/icon-size.cpp:51
 msgid "Smaller"
-msgstr ""
+msgstr "Txikiagoa"
 
 #: ../panel-plugin/favorites-page.cpp:147
 msgid "Sort Alphabetically A-Z"
-msgstr ""
+msgstr "Alfabetikoki Sailkatu A-Z"
 
 #: ../panel-plugin/favorites-page.cpp:153
 msgid "Sort Alphabetically Z-A"
-msgstr ""
+msgstr "Alfabetikoki Sailkatu Z-A"
 
 #: ../panel-plugin/settings.cpp:120
 msgid "Switch _Users"
@@ -298,7 +299,7 @@ msgstr ""
 
 #: ../panel-plugin/configuration-dialog.cpp:524
 msgid "Title"
-msgstr ""
+msgstr "Izenburua"
 
 #: ../panel-plugin/page.cpp:319
 msgid "Unable to add launcher to desktop."
@@ -327,7 +328,7 @@ msgstr "Oso Txikia"
 
 #: ../panel-plugin/settings.cpp:126
 msgid "Web Search"
-msgstr ""
+msgstr "Web-an Bilatu"
 
 #: ../panel-plugin/configuration-dialog.cpp:70
 #: ../panel-plugin/whiskermenu.desktop.in.h:1
@@ -340,20 +341,20 @@ msgstr "Wikipedia"
 
 #: ../panel-plugin/configuration-dialog.cpp:83
 msgid "_Appearance"
-msgstr ""
+msgstr "_Itxura"
 
 #: ../panel-plugin/configuration-dialog.cpp:84
 msgid "_Behavior"
-msgstr ""
+msgstr "_Portaera"
 
 #: ../panel-plugin/command-edit.cpp:67
 #: ../panel-plugin/configuration-dialog.cpp:121
 msgid "_Cancel"
-msgstr "_Utzi"
+msgstr "_Ezeztatu"
 
 #: ../panel-plugin/configuration-dialog.cpp:74
 msgid "_Close"
-msgstr "It_xi"
+msgstr "_Itxi"
 
 #: ../panel-plugin/configuration-dialog.cpp:85
 msgid "_Commands"
@@ -361,11 +362,11 @@ msgstr ""
 
 #: 

[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 05/06: I18n: Update translation zh_CN (92%).

2016-09-21 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit a9b31a7cccbcb16ffef748e288670b3638bb7935
Author: Graeme Gott 
Date:   Wed Sep 21 12:19:36 2016 -0400

I18n: Update translation zh_CN (92%).
---
 po/zh_CN.po | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/po/zh_CN.po b/po/zh_CN.po
index 78f6270..a684123 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -1,17 +1,17 @@
 # Chinese (China) translation of xfce4-whiskermenu-plugin.
-# Copyright (C) 2015 Graeme Gott
+# Copyright (C) 2016 Graeme Gott
 # This file is distributed under the same license as the 
xfce4-whiskermenu-plugin package.
 #
 # Translators:
-# 白铭骢 , 2014
+# Mingcong Bai , 2014
 # Tao Lin , 2015
-# 玉堂白鹤 , 2015
+# 玉堂白鹤 , 2015-2016
 msgid ""
 msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-08-13 17:21+\n"
-"PO-Revision-Date: 2015-10-10 05:18+\n"
+"PO-Revision-Date: 2016-09-20 07:45+\n"
 "Last-Translator: 玉堂白鹤 \n"
 "Language-Team: Chinese (China) (http://www.transifex.com/gottcode/xfce4-;
 "whiskermenu-plugin/language/zh_CN/)\n"
@@ -259,9 +259,8 @@ msgid "Show application _descriptions"
 msgstr "显示应用程序描述 (_D)"
 
 #: ../panel-plugin/configuration-dialog.cpp:588
-#, fuzzy
 msgid "Show application too_ltips"
-msgstr "显示应用程序描述 (_D)"
+msgstr ""
 
 #: ../panel-plugin/configuration-dialog.cpp:576
 msgid "Show generic application _names"

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