[Xfce4-commits] [xfce/libxfce4ui] 02/03: Add support for GOBJECT-INTROSPECTION (Bug #13461)

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

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

commit 6ff48eb5d2ee27f7dd33ecc28738220f0a2c7fa6
Author: Eric Koegel 
Date:   Sat Jun 10 14:32:31 2017 +0300

Add support for GOBJECT-INTROSPECTION (Bug #13461)

GOjbect Introspection allows various other languages to automatically
generate bindings they can use. For details see:
https://wiki.gnome.org/action/show/Projects/GObjectIntrospection

To support this, we need to add a gobject and introspection
dependency. The introspection one is optional and it is what
determines if the libxfce4ui-2 gir is created.
Only libxfce4ui-2 is created (the Gtk3 version) as it makes little
sense to support new applications in Gtk2.
---
 .gitignore |  5 +
 Makefile.am|  4 +++-
 configure.ac.in|  5 +
 libxfce4ui/Makefile.am | 38 +-
 4 files changed, 50 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index 77e3083..cfc8145 100644
--- a/.gitignore
+++ b/.gitignore
@@ -56,6 +56,7 @@ docs/xml/
 *.la
 *.lo
 *.stamp
+tests/*.o
 libxfce4kbd-private/xfce-shortcuts-marshal.c
 libxfce4kbd-private/xfce-shortcuts-marshal.h
 libxfce4ui/libxfce4ui-alias.h
@@ -66,6 +67,8 @@ libxfce4ui/libxfce4ui-marshal.c
 libxfce4ui/libxfce4ui-marshal.h
 libxfce4ui/stamp-libxfce4ui-enum-types.h
 libxfce4ui/stamp-libxfce4ui-marshal.h
+libxfce4ui/libxfce4ui-2.gir
+libxfce4ui/libxfce4ui-2.typelib
 xfce4-about/about-dialog-ui.h
 xfce4-about/xfce4-about
 xfce4-about/xfce4-about.desktop
@@ -74,4 +77,6 @@ glade/libxfce4ui.xml
 glade/libxfce4ui-2.xml
 libxfce4ui-*.tar.bz2
 tests/test-ui-gtk2
+tests/test_ui_gtk2-test-ui.o
 tests/test-ui-gtk3
+tests/test_ui_gtk3-test-ui.o
diff --git a/Makefile.am b/Makefile.am
index 21de67e..556ec20 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,6 @@
 ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
 
+
 SUBDIRS = \
libxfce4ui \
libxfce4kbd-private \
@@ -37,6 +38,7 @@ DISTCLEANFILES = \
 
 DISTCHECK_CONFIGURE_FLAGS = \
--enable-gtk-doc \
-   --disable-gladeui
+   --disable-gladeui \
+   --enable-introspection
 
 # vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
diff --git a/configure.ac.in b/configure.ac.in
index 51ac35a..2ff8ee5 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -138,6 +138,11 @@ XDT_CHECK_OPTIONAL_PACKAGE([GTK3],
[GTK+ 3 support])
 AM_CONDITIONAL([ENABLE_GTK3_LIBRARY], [test "x$GTK3_FOUND" = "xyes"])
 
+dnl ***
+dnl *** Check for gobject-introspection ***
+dnl ***
+GOBJECT_INTROSPECTION_CHECK([1.30.0])
+
 dnl *
 dnl *** Optional support for startup notification ***
 dnl *
diff --git a/libxfce4ui/Makefile.am b/libxfce4ui/Makefile.am
index 9d861ab..7fee732 100644
--- a/libxfce4ui/Makefile.am
+++ b/libxfce4ui/Makefile.am
@@ -1,3 +1,5 @@
+CLEANFILES =
+
 AM_CPPFLAGS = \
-I$(top_srcdir) \
-DDATADIR=\"$(datadir)\" \
@@ -117,6 +119,40 @@ libxfce4ui_2_la_LIBADD = \
 
 pkgconfig_DATA += libxfce4ui-2.pc
 
+include $(INTROSPECTION_MAKEFILE)
+INTROSPECTION_GIRS =
+INTROSPECTION_SCANNER_ENV = CC="$(CC)"
+INTROSPECTION_SCANNER_ARGS = \
+   --add-include-path=$(srcdir) \
+   --warn-all \
+   --identifier-prefix=xfce \
+   --identifier-prefix=Xfce \
+   --identifier-prefix=libxfce
+INTROSPECTION_COMPILER_ARGS = \
+   --includedir=$(srcdir) \
+   --includedir=.
+
+if HAVE_INTROSPECTION
+introspection_sources = $(filter-out %private.h %.c, 
$(libxfce4ui_2_la_SOURCES))
+
+libxfce4ui-2.gir: libxfce4ui-2.la Makefile
+libxfce4ui_2_gir_INCLUDES = GObject-2.0 GLib-2.0 Gtk-3.0 libxfce4util-1.0
+libxfce4ui_2_gir_CFLAGS = $(AM_CPPFLAGS)
+libxfce4ui_2_gir_LIBS = libxfce4ui-2.la
+libxfce4ui_2_gir_FILES = $(introspection_sources)
+libxfce4ui_2_gir_EXPORT_PACKAGES = libxfce4ui-2
+INTROSPECTION_GIRS += libxfce4ui-2.gir
+
+girdir = $(datadir)/gir-1.0
+gir_DATA = $(INTROSPECTION_GIRS)
+
+typelibdir = $(libdir)/girepository-1.0
+typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
+
+CLEANFILES += $(gir_DATA) $(typelib_DATA)
+endif
+# endif HAVE_INTROSPECTION
+
 endif
 
 ##
@@ -129,7 +165,7 @@ endif
 ## files as part of the dist tarball.
 ##
 if MAINTAINER_MODE
-CLEANFILES = \
+CLEANFILES += \
actual-abi \
expected-abi
 

-- 
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] 03/03: Add GtkDoc checks

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

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

commit a9c88f86e9f8384fb441758c853792a66e5fead1
Author: Eric Koegel 
Date:   Sat Jun 10 15:44:37 2017 +0300

Add GtkDoc checks

We add a documentation check during make check or distcheck to
ensure new functions/objects added are properly added prior to
release. This patch also cleans up all the current warnings.
---
 .gitignore| 11 +++
 docs/Makefile.am  | 14 +-
 docs/libxfce4ui-docs.xml  |  6 ++
 libxfce4ui/libxfce4ui-config.c| 31 ++-
 libxfce4ui/libxfce4ui-config.h.in | 33 +
 libxfce4ui/xfce-dialogs.c | 16 ++--
 libxfce4ui/xfce-dialogs.h | 17 +
 libxfce4ui/xfce-gdk-extensions.c  | 12 +++-
 libxfce4ui/xfce-gtk-extensions.c  | 18 ++
 libxfce4ui/xfce-sm-client.c   |  8 
 libxfce4ui/xfce-sm-client.h   |  2 +-
 libxfce4ui/xfce-spawn.c   | 12 +++-
 libxfce4ui/xfce-titled-dialog.c   | 11 +++
 libxfce4ui/xfce-titled-dialog.h   |  5 +
 14 files changed, 181 insertions(+), 15 deletions(-)

diff --git a/.gitignore b/.gitignore
index cfc8145..a383ecb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -80,3 +80,14 @@ tests/test-ui-gtk2
 tests/test_ui_gtk2-test-ui.o
 tests/test-ui-gtk3
 tests/test_ui_gtk3-test-ui.o
+
+# files generated by make check
+docs/gtkdoc-check.log
+docs/gtkdoc-check.test
+docs/gtkdoc-check.trs
+docs/libxfce4ui-decl-list.txt.bak
+docs/libxfce4ui-decl.txt.bak
+docs/test-suite.log
+libxfce4ui/abicheck.sh.log
+libxfce4ui/abicheck.sh.trs
+libxfce4ui/test-suite.log
diff --git a/docs/Makefile.am b/docs/Makefile.am
index 2453a54..c737565 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -29,7 +29,12 @@ CFILE_GLOB=$(top_srcdir)/libxfce4ui/*.c
 IGNORE_HFILES= \
libxfce4ui.h\
libxfce4ui-private.h\
-   xfce-heading.h
+   xfce-heading.h  \
+   libxfce4ui-enum-types.h \
+   libxfce4ui-alias.h  \
+   stamp-libxfce4ui-marshal.h  \
+   libxfce4ui-marshal.h\
+   libxfce4ui-resources.h
 
 # Extra files to add when scanning (relative to $srcdir)
 EXTRA_HFILES=
@@ -61,6 +66,13 @@ include $(top_srcdir)/gtk-doc.make
 EXTRA_DIST +=  \
version.xml.in
 
+if ENABLE_GTK_DOC
+TESTS_ENVIRONMENT = \
+  DOC_MODULE=$(DOC_MODULE) DOC_MAIN_SGML_FILE=$(DOC_MAIN_SGML_FILE) \
+  SRCDIR=$(abs_srcdir) BUILDDIR=$(abs_builddir)
+TESTS = $(GTKDOC_CHECK)
+endif
+
 # required for gtk-doc
 dist-hook: all
 
diff --git a/docs/libxfce4ui-docs.xml b/docs/libxfce4ui-docs.xml
index 7cc307a..60a2f12 100644
--- a/docs/libxfce4ui-docs.xml
+++ b/docs/libxfce4ui-docs.xml
@@ -8,6 +8,9 @@
 
 
 
+
+
+
 
 
 
@@ -79,6 +82,9 @@
 
   
 Index
+
+
+
   
 
 
diff --git a/libxfce4ui/libxfce4ui-config.c b/libxfce4ui/libxfce4ui-config.c
index 28c9aee..c596a89 100644
--- a/libxfce4ui/libxfce4ui-config.c
+++ b/libxfce4ui/libxfce4ui-config.c
@@ -17,6 +17,16 @@
  * MA 02110-1301 USA
  */
 
+/**
+ * SECTION:libxfce4ui-config
+ * @title: libxfce4ui config
+ * @short_description: libxfce4ui config macros
+ * @stability: Stable
+ * @include: libxfce4ui/libxfce4ui.h
+ *
+ * Variables and functions to check the Libxfce4ui version.
+ **/
+
 #ifdef HAVE_CONFIG_H
 #include 
 #endif
@@ -25,9 +35,28 @@
 #include 
 
 
-
+/**
+ * libxfce4ui_major_version:
+ *
+ * A constat that evaluates to the major version of libxfce4ui.
+ *
+ */
 const guint libxfce4ui_major_version = LIBXFCE4UI_MAJOR_VERSION;
+
+/**
+ * libxfce4ui_minor_version:
+ *
+ * A constat that evaluates to the minor version of libxfce4ui.
+ *
+ */
 const guint libxfce4ui_minor_version = LIBXFCE4UI_MINOR_VERSION;
+
+/**
+ * libxfce4ui_micro_version:
+ *
+ * A constat that evaluates to the micro version of libxfce4ui.
+ *
+ */
 const guint libxfce4ui_micro_version = LIBXFCE4UI_MICRO_VERSION;
 
 
diff --git a/libxfce4ui/libxfce4ui-config.h.in 
b/libxfce4ui/libxfce4ui-config.h.in
index 21359e8..a99bfba 100644
--- a/libxfce4ui/libxfce4ui-config.h.in
+++ b/libxfce4ui/libxfce4ui-config.h.in
@@ -28,10 +28,43 @@
 
 G_BEGIN_DECLS
 
+/**
+ * LIBXFCE4UI_MAJOR_VERSION:
+ *
+ * A macro that evaluates to the major version of libxfce4ui, in a format
+ * that can be used by the C pre-processor.
+ *
+ */
 #define 

[Xfce4-commits] [xfce/libxfce4ui] branch master updated (1feefa9 -> a9c88f8)

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

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

  from  1feefa9   fix: add libxfce4ui_get_resource to abi check symbols 
(Bug #13326)
   new  89fa6ec   Let autotools find and invoke glib-compile-resources (Bug 
#13326)
   new  6ff48eb   Add support for GOBJECT-INTROSPECTION (Bug #13461)
   new  a9c88f8   Add GtkDoc checks

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:
 .gitignore| 16 ++
 Makefile.am   |  4 +++-
 configure.ac.in   |  6 ++
 docs/Makefile.am  | 14 -
 docs/libxfce4ui-docs.xml  |  6 ++
 libxfce4ui/Makefile.am| 44 +++
 libxfce4ui/libxfce4ui-config.c| 31 ++-
 libxfce4ui/libxfce4ui-config.h.in | 33 +
 libxfce4ui/xfce-dialogs.c | 16 --
 libxfce4ui/xfce-dialogs.h | 17 +++
 libxfce4ui/xfce-gdk-extensions.c  | 12 ++-
 libxfce4ui/xfce-gtk-extensions.c  | 18 
 libxfce4ui/xfce-sm-client.c   |  8 +++
 libxfce4ui/xfce-sm-client.h   |  2 +-
 libxfce4ui/xfce-spawn.c   | 12 ++-
 libxfce4ui/xfce-titled-dialog.c   | 11 ++
 libxfce4ui/xfce-titled-dialog.h   |  5 +
 17 files changed, 235 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] [xfce/libxfce4ui] 01/03: Let autotools find and invoke glib-compile-resources (Bug #13326)

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

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

commit 89fa6ec8756e3bb1af923d457fe50511a6c14fa0
Author: Eric Koegel 
Date:   Sat Jun 10 13:45:29 2017 +0300

Let autotools find and invoke glib-compile-resources (Bug #13326)
---
 configure.ac.in| 1 +
 libxfce4ui/Makefile.am | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index 67de570..51ac35a 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -77,6 +77,7 @@ AM_PROG_CC_C_O()
 AC_PROG_INSTALL()
 IT_PROG_INTLTOOL([0.35.0])
 AC_CHECK_PROGS([PERL], [perl5 perl])
+AC_PATH_PROG([GLIB_COMPILE_RESOURCES],[glib-compile-resources])
 
 dnl **
 dnl *** Initialize libtool ***
diff --git a/libxfce4ui/Makefile.am b/libxfce4ui/Makefile.am
index 9644a72..9d861ab 100644
--- a/libxfce4ui/Makefile.am
+++ b/libxfce4ui/Makefile.am
@@ -192,11 +192,11 @@ libxfce4ui_built_sources += \
libxfce4ui-resources.c \
libxfce4ui-resources.h
 
-libxfce4ui-resources.c: libxfce4ui.gresource.xml $(UI_FILES)
-   glib-compile-resources --target=$@ --sourcedir=$(srcdir) 
--generate-source --c-name libxfce4ui $(srcdir)/libxfce4ui.gresource.xml
+libxfce4ui-resources.c: libxfce4ui.gresource.xml
+   $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) 
--generate-source --c-name libxfce4ui $(srcdir)/libxfce4ui.gresource.xml
 
 libxfce4ui-resources.h: libxfce4ui.gresource.xml
-   glib-compile-resources --target=$@ --sourcedir=$(srcdir) 
--generate-header --c-name libxfce4ui $(srcdir)/libxfce4ui.gresource.xml
+   $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) 
--generate-header --c-name libxfce4ui $(srcdir)/libxfce4ui.gresource.xml
 
 endif
 

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


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

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

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

commit 4aaf0fd7e8c2945d8a93b5e1e07681714bc04238
Author: Robert Antoni Buj Gelonch 
Date:   Sun Jun 11 00:31:44 2017 +0200

I18n: Update translation ca (100%).

21 translated messages.

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

diff --git a/po/ca.po b/po/ca.po
index 94fa829..d9e404f 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -6,14 +6,15 @@
 # Carles Muñoz Gorriz , 2012
 # Davidmp , 2016
 # Pau Ruŀlan Ferragut , 2006
-# Robert Antoni Buj i Gelonch , 2016
+# Robert Antoni Buj Gelonch , 2017
+# Robert Antoni Buj Gelonch , 2016
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 00:31+0200\n"
-"PO-Revision-Date: 2016-05-04 07:54+\n"
-"Last-Translator: Robert Antoni Buj i Gelonch \n"
+"POT-Creation-Date: 2017-06-10 15:06+0200\n"
+"PO-Revision-Date: 2017-06-10 16:55+\n"
+"Last-Translator: Robert Antoni Buj Gelonch \n"
 "Language-Team: Catalan 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/ca/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -21,66 +22,86 @@ msgstr ""
 "Language: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../panel-plugin/xkb-settings-dialog.c:120
-#: ../panel-plugin/xkb-plugin.desktop.in.in.h:1
+#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Disposicions de teclats"
 
-#. ***
-#: ../panel-plugin/xkb-settings-dialog.c:130
+#: ../panel-plugin/xkb-dialog.c:95
+msgid "Appearance"
+msgstr "Aparença"
+
+#: ../panel-plugin/xkb-dialog.c:105
 msgid "Show layout as:"
 msgstr "Mostra la disposició com:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:135
+#: ../panel-plugin/xkb-dialog.c:111
 msgid "image"
 msgstr "imatge"
 
-#: ../panel-plugin/xkb-settings-dialog.c:136
+#: ../panel-plugin/xkb-dialog.c:112
 msgid "text"
 msgstr "text"
 
-#. text size option
-#: ../panel-plugin/xkb-settings-dialog.c:141
-msgid "Text size:"
-msgstr "Mida del text:"
+#: ../panel-plugin/xkb-dialog.c:113
+msgid "system"
+msgstr "sistema"
+
+#: ../panel-plugin/xkb-dialog.c:119
+msgid "Layout name:"
+msgstr "Nom de la disposició:"
+
+#: ../panel-plugin/xkb-dialog.c:125
+msgid "country"
+msgstr "país"
+
+#: ../panel-plugin/xkb-dialog.c:126
+msgid "language"
+msgstr "idioma"
+
+#: ../panel-plugin/xkb-dialog.c:132
+msgid "Widget size:"
+msgstr "Mida de l'estri:"
+
+#: ../panel-plugin/xkb-dialog.c:146
+msgid "Tooltip icon:"
+msgstr "Icona de l'indicador de funció:"
 
-#. image size option
-#: ../panel-plugin/xkb-settings-dialog.c:152
-msgid "Image size:"
-msgstr "Mida de la imatge:"
+#: ../panel-plugin/xkb-dialog.c:157
+msgid "Behavior"
+msgstr "Comportament"
 
-#: ../panel-plugin/xkb-settings-dialog.c:162
+#: ../panel-plugin/xkb-dialog.c:167
 msgid "Manage layout:"
 msgstr "Gestiona el tipus:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:173
 msgid "globally"
 msgstr "globalment"
 
-#: ../panel-plugin/xkb-settings-dialog.c:168
+#: ../panel-plugin/xkb-dialog.c:174
 msgid "per window"
 msgstr "per finestra"
 
-#: ../panel-plugin/xkb-settings-dialog.c:169
+#: ../panel-plugin/xkb-dialog.c:175
 msgid "per application"
 msgstr "per aplicació"
 
-#: ../panel-plugin/xkb-settings-dialog.c:205
+#: ../panel-plugin/xkb-dialog.c:228
 msgid "Keyboard Layouts Plugin"
 msgstr "Connector de les disposicions del teclat"
 
-#: ../panel-plugin/xkb-settings-dialog.c:215
+#: ../panel-plugin/xkb-dialog.c:238
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Us permet configurar i utilitzar múltiples disposicions de teclats."
 
-#: ../panel-plugin/xkb-settings-dialog.c:219
+#: ../panel-plugin/xkb-dialog.c:242
 msgid "Other plugins available here"
 msgstr "Altres connectors disponibles"
 
-#: ../panel-plugin/xfce4-xkb-plugin.c:131
+#: ../panel-plugin/xkb-plugin.c:244
 msgid "Keyboard settings"
 msgstr "Ajusts del teclat"
 
-#: ../panel-plugin/xkb-plugin.desktop.in.in.h:2
+#: ../panel-plugin/xkb.desktop.in.h:2
 msgid "Keyboard layouts setup and switch plugin"
 msgstr "Connector de configuració i de canvi de la disposició del teclat"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org

[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] branch master updated (3b02d6e -> c95107d)

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

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

  from  3b02d6e   Fix memory leak caused by previous commit
   new  4aaf0fd   I18n: Update translation ca (100%).
   new  c95107d   I18n: Update translation lt (100%).

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


Summary of changes:
 po/ca.po | 75 +---
 po/lt.po | 72 +++--
 2 files changed, 94 insertions(+), 53 deletions(-)

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


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

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

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

commit c95107d6dbef1e67b871f14c402111210f250d22
Author: Anonymous 
Date:   Sun Jun 11 00:31:44 2017 +0200

I18n: Update translation lt (100%).

21 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index fdbb060..e77e708 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -4,13 +4,13 @@
 # 
 # Translators:
 # Algimantas Margevičius , 2012
-# Moo, 2015-2016
+# Moo, 2015-2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 00:31+0200\n"
-"PO-Revision-Date: 2016-06-24 10:45+\n"
+"POT-Creation-Date: 2017-06-10 15:06+0200\n"
+"PO-Revision-Date: 2017-06-10 21:33+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -19,66 +19,86 @@ msgstr ""
 "Language: lt\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
(n%100<10 || n%100>=20) ? 1 : 2);\n"
 
-#: ../panel-plugin/xkb-settings-dialog.c:120
-#: ../panel-plugin/xkb-plugin.desktop.in.in.h:1
+#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Klaviatūros išdėstymai"
 
-#. ***
-#: ../panel-plugin/xkb-settings-dialog.c:130
+#: ../panel-plugin/xkb-dialog.c:95
+msgid "Appearance"
+msgstr "Išvaizda"
+
+#: ../panel-plugin/xkb-dialog.c:105
 msgid "Show layout as:"
 msgstr "Rodyti išdėstymą kaip:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:135
+#: ../panel-plugin/xkb-dialog.c:111
 msgid "image"
 msgstr "paveikslą"
 
-#: ../panel-plugin/xkb-settings-dialog.c:136
+#: ../panel-plugin/xkb-dialog.c:112
 msgid "text"
 msgstr "tekstą"
 
-#. text size option
-#: ../panel-plugin/xkb-settings-dialog.c:141
-msgid "Text size:"
-msgstr "Teksto dydis:"
+#: ../panel-plugin/xkb-dialog.c:113
+msgid "system"
+msgstr "sistema"
+
+#: ../panel-plugin/xkb-dialog.c:119
+msgid "Layout name:"
+msgstr "Išdėstymo pavadinimas:"
+
+#: ../panel-plugin/xkb-dialog.c:125
+msgid "country"
+msgstr "šalis"
+
+#: ../panel-plugin/xkb-dialog.c:126
+msgid "language"
+msgstr "kalba"
+
+#: ../panel-plugin/xkb-dialog.c:132
+msgid "Widget size:"
+msgstr "Valdiklio dydis:"
+
+#: ../panel-plugin/xkb-dialog.c:146
+msgid "Tooltip icon:"
+msgstr "Paaiškinimo piktograma:"
 
-#. image size option
-#: ../panel-plugin/xkb-settings-dialog.c:152
-msgid "Image size:"
-msgstr "Paveikslo dydis:"
+#: ../panel-plugin/xkb-dialog.c:157
+msgid "Behavior"
+msgstr "Elgsena"
 
-#: ../panel-plugin/xkb-settings-dialog.c:162
+#: ../panel-plugin/xkb-dialog.c:167
 msgid "Manage layout:"
 msgstr "Išdėstymą taikyti:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:173
 msgid "globally"
 msgstr "bendrai"
 
-#: ../panel-plugin/xkb-settings-dialog.c:168
+#: ../panel-plugin/xkb-dialog.c:174
 msgid "per window"
 msgstr "langui"
 
-#: ../panel-plugin/xkb-settings-dialog.c:169
+#: ../panel-plugin/xkb-dialog.c:175
 msgid "per application"
 msgstr "programai"
 
-#: ../panel-plugin/xkb-settings-dialog.c:205
+#: ../panel-plugin/xkb-dialog.c:228
 msgid "Keyboard Layouts Plugin"
 msgstr "Klaviatūros išdėstymų įskiepis"
 
-#: ../panel-plugin/xkb-settings-dialog.c:215
+#: ../panel-plugin/xkb-dialog.c:238
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Leidžia konfigūruoti ir naudoti kelis klaviatūros išdėstymus."
 
-#: ../panel-plugin/xkb-settings-dialog.c:219
+#: ../panel-plugin/xkb-dialog.c:242
 msgid "Other plugins available here"
 msgstr "Kiti įskiepiai prieinami čia"
 
-#: ../panel-plugin/xfce4-xkb-plugin.c:131
+#: ../panel-plugin/xkb-plugin.c:244
 msgid "Keyboard settings"
 msgstr "Klaviatūros nustatymai"
 
-#: ../panel-plugin/xkb-plugin.desktop.in.in.h:2
+#: ../panel-plugin/xkb.desktop.in.h:2
 msgid "Keyboard layouts setup and switch plugin"
 msgstr "Klaviatūros išdėstymų sąrankos ir perjungimo įskiepis"

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] branch master updated (030fed3 -> 3b02d6e)

2017-06-10 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-xkb-plugin.

  from  030fed3   Bug 12550: Keep keyboard configuration between X-config 
callback calls
   new  3b02d6e   Fix memory leak caused by previous commit

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/xkb-keyboard.c | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 01/01: Fix memory leak caused by previous commit

2017-06-10 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-xkb-plugin.

commit 3b02d6e3a6a8146ac4e3b1a387bb1b1dd1a55743
Author: Viktor Odintsev 
Date:   Sun Jun 11 01:21:17 2017 +0300

Fix memory leak caused by previous commit
---
 panel-plugin/xkb-keyboard.c | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/panel-plugin/xkb-keyboard.c b/panel-plugin/xkb-keyboard.c
index 45f1482..f023e68 100644
--- a/panel-plugin/xkb-keyboard.c
+++ b/panel-plugin/xkb-keyboard.c
@@ -302,6 +302,8 @@ xkb_keyboard_initialize_xkb_options (XkbKeyboard *keyboard,
 MODIFY_INDEXES (country_indexes, country_name, country_index);
 MODIFY_INDEXES (language_indexes, language_name, language_index);
 
+#undef MODIFY_INDEXES
+
 imgfilename = xkb_util_get_flag_filename (group_data->country_name);
 handle = rsvg_handle_new_from_file (imgfilename, NULL);
 if (handle)
@@ -433,7 +435,7 @@ xkb_keyboard_set_group_policy (XkbKeyboard *keyboard,
 
 static gboolean
 xkb_keyboard_xkl_config_rec_equals (const XklConfigRec * rec1,
-   const XklConfigRec * rec2)
+const XklConfigRec * rec2)
 {
 gint i = 0;
 
@@ -464,7 +466,6 @@ xkb_keyboard_update_from_xkl (XkbKeyboard *keyboard)
 XklConfigRec *config_rec;
 
 config_rec = xkl_config_rec_new ();
-g_object_ref (config_rec);
 xkl_config_rec_get_from_server (config_rec, keyboard->engine);
 
 if (keyboard->last_config_rec == NULL ||
@@ -481,6 +482,8 @@ xkb_keyboard_update_from_xkl (XkbKeyboard *keyboard)
 }
 else
 {
+g_object_unref (config_rec);
+
 return FALSE;
 }
 }

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 01/01: Bug 12550: Keep keyboard configuration between X-config callback calls

2017-06-10 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-xkb-plugin.

commit 030fed38d640bbcb292dde6c9e054b1b91488e90
Author: Viktor Odintsev 
Date:   Sat Jun 10 21:54:54 2017 +0300

Bug 12550: Keep keyboard configuration between X-config callback calls

libklavier can send weird data on configuration changes
(e.g. when new keyboard connected) which lead to configuration reset.

My approach is creating a timer for each callback call after which
the configuration will be updated. Each callback call will destroy
the running timer and create a new one.
---
 panel-plugin/xkb-keyboard.c | 88 -
 1 file changed, 79 insertions(+), 9 deletions(-)

diff --git a/panel-plugin/xkb-keyboard.c b/panel-plugin/xkb-keyboard.c
index 3a932e7..45f1482 100644
--- a/panel-plugin/xkb-keyboard.c
+++ b/panel-plugin/xkb-keyboard.c
@@ -52,6 +52,9 @@ struct _XkbKeyboard
 GObject __parent__;
 
 XklEngine*engine;
+XklConfigRec *last_config_rec;
+
+guint config_timeout_id;
 
 XkbGroupData *group_data;
 
@@ -85,7 +88,7 @@ static GdkFilterReturn   xkb_keyboard_handle_xevent   
 (GdkXEvent * xev,
 
 static void  xkb_keyboard_free (XkbKeyboard 
*keyboard);
 static void  xkb_keyboard_finalize (GObject 
*object);
-static void  xkb_keyboard_update_from_xkl  (XkbKeyboard 
*keyboard);
+static gboolean  xkb_keyboard_update_from_xkl  (XkbKeyboard 
*keyboard);
 static void  xkb_keyboard_initialize_xkb_options   (XkbKeyboard 
*keyboard,
 const 
XklConfigRec *config_rec);
 
@@ -106,6 +109,10 @@ static void
 xkb_keyboard_init (XkbKeyboard *keyboard)
 {
 keyboard->engine = NULL;
+keyboard->last_config_rec = NULL;
+
+keyboard->config_timeout_id = 0;
+
 keyboard->group_data = NULL;
 keyboard->group_policy = GROUP_POLICY_GLOBAL;
 
@@ -358,6 +365,12 @@ xkb_keyboard_finalize (GObject *object)
 }
 
 xkb_keyboard_free (keyboard);
+
+if (keyboard->last_config_rec != NULL)
+g_object_unref (keyboard->last_config_rec);
+
+if (keyboard->config_timeout_id != 0)
+g_source_remove (keyboard->config_timeout_id);
 
 G_OBJECT_CLASS (xkb_keyboard_parent_class)->finalize (object);
 }
@@ -418,17 +431,58 @@ xkb_keyboard_set_group_policy (XkbKeyboard *keyboard,
 keyboard->group_policy = group_policy;
 }
 
-static void
+static gboolean
+xkb_keyboard_xkl_config_rec_equals (const XklConfigRec * rec1,
+   const XklConfigRec * rec2)
+{
+gint i = 0;
+
+g_return_val_if_fail (XKL_IS_CONFIG_REC (rec1), FALSE);
+g_return_val_if_fail (XKL_IS_CONFIG_REC (rec2), FALSE);
+
+#define STRING_ARRAYS_NOT_EQUAL_RETURN(array1, array2) \
+for (i = 0; array1[i] || array2[i]; i++) \
+{ \
+if (!array1[i] || !array2[i] || \
+g_ascii_strcasecmp (array1[i], array2[i]) != 0) \
+{ \
+return FALSE; \
+} \
+}
+
+STRING_ARRAYS_NOT_EQUAL_RETURN (rec1->layouts, rec2->layouts);
+STRING_ARRAYS_NOT_EQUAL_RETURN (rec1->variants, rec2->variants);
+
+#undef STRING_ARRAYS_NOT_EQUAL_RETURN
+
+return TRUE;
+}
+
+static gboolean
 xkb_keyboard_update_from_xkl (XkbKeyboard *keyboard)
 {
 XklConfigRec *config_rec;
 
 config_rec = xkl_config_rec_new ();
+g_object_ref (config_rec);
 xkl_config_rec_get_from_server (config_rec, keyboard->engine);
 
-xkb_keyboard_initialize_xkb_options (keyboard, config_rec);
+if (keyboard->last_config_rec == NULL ||
+!xkb_keyboard_xkl_config_rec_equals (config_rec, 
keyboard->last_config_rec))
+{
+xkb_keyboard_initialize_xkb_options (keyboard, config_rec);
+
+if (keyboard->last_config_rec != NULL)
+g_object_unref (keyboard->last_config_rec);
 
-g_object_unref (config_rec);
+keyboard->last_config_rec = config_rec;
+
+return TRUE;
+}
+else
+{
+return FALSE;
+}
 }
 
 void
@@ -645,19 +699,35 @@ xkb_keyboard_xkl_state_changed (XklEngine *engine,
 }
 }
 
-static void
-xkb_keyboard_xkl_config_changed (XklEngine *engine,
- gpointer user_data)
+static gboolean
+xkb_keyboard_xkl_config_changed_timeout (gpointer user_data)
 {
 XkbKeyboard *keyboard = user_data;
+gboolean updated;
 
-xkb_keyboard_update_from_xkl (keyboard);
+updated = xkb_keyboard_update_from_xkl (keyboard);
 
-if (keyboard->callback != NULL)
+if (updated && keyboard->callback != NULL)
 {
 

[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] branch master updated (8b865d8 -> 030fed3)

2017-06-10 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-xkb-plugin.

  from  8b865d8   I18n: Update translation zh_TW (100%).
   new  030fed3   Bug 12550: Keep keyboard configuration between X-config 
callback calls

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/xkb-keyboard.c | 88 -
 1 file changed, 79 insertions(+), 9 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 03/05: I18n: Update translation ko (100%).

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

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

commit 5b599d9c06ecc35d29f84638cea7ecdca3827e98
Author: 박정규(Jung-Kyu Park) 
Date:   Sat Jun 10 18:32:22 2017 +0200

I18n: Update translation ko (100%).

21 translated messages.

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

diff --git a/po/ko.po b/po/ko.po
index da19962..b77d959 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -4,81 +4,102 @@
 # 
 # Translators:
 # Seong-ho Cho , 2013
+# 박정규(Jung-Kyu Park) , 2017
 # Seong-ho Cho , 2012,2015
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 00:31+0200\n"
-"PO-Revision-Date: 2015-07-11 05:56+\n"
-"Last-Translator: Seong-ho Cho \n"
-"Language-Team: Korean 
(http://www.transifex.com/p/xfce-panel-plugins/language/ko/)\n"
+"POT-Creation-Date: 2017-06-10 15:06+0200\n"
+"PO-Revision-Date: 2017-06-10 14:47+\n"
+"Last-Translator: 박정규(Jung-Kyu Park) \n"
+"Language-Team: Korean 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ko\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../panel-plugin/xkb-settings-dialog.c:120
-#: ../panel-plugin/xkb-plugin.desktop.in.in.h:1
+#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "키보드 배치"
 
-#. ***
-#: ../panel-plugin/xkb-settings-dialog.c:130
+#: ../panel-plugin/xkb-dialog.c:95
+msgid "Appearance"
+msgstr "꾸미기"
+
+#: ../panel-plugin/xkb-dialog.c:105
 msgid "Show layout as:"
 msgstr "다음 방식으로 배치 보기:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:135
+#: ../panel-plugin/xkb-dialog.c:111
 msgid "image"
 msgstr "그림"
 
-#: ../panel-plugin/xkb-settings-dialog.c:136
+#: ../panel-plugin/xkb-dialog.c:112
 msgid "text"
 msgstr "텍스트"
 
-#. text size option
-#: ../panel-plugin/xkb-settings-dialog.c:141
-msgid "Text size:"
-msgstr "텍스트 크기:"
+#: ../panel-plugin/xkb-dialog.c:113
+msgid "system"
+msgstr "시스템"
+
+#: ../panel-plugin/xkb-dialog.c:119
+msgid "Layout name:"
+msgstr "레이아웃 이름:"
+
+#: ../panel-plugin/xkb-dialog.c:125
+msgid "country"
+msgstr "국가"
+
+#: ../panel-plugin/xkb-dialog.c:126
+msgid "language"
+msgstr "언어"
+
+#: ../panel-plugin/xkb-dialog.c:132
+msgid "Widget size:"
+msgstr "위젯 크기:"
+
+#: ../panel-plugin/xkb-dialog.c:146
+msgid "Tooltip icon:"
+msgstr "툴팁 아이콘:"
 
-#. image size option
-#: ../panel-plugin/xkb-settings-dialog.c:152
-msgid "Image size:"
-msgstr "그림 크기:"
+#: ../panel-plugin/xkb-dialog.c:157
+msgid "Behavior"
+msgstr "움직임"
 
-#: ../panel-plugin/xkb-settings-dialog.c:162
+#: ../panel-plugin/xkb-dialog.c:167
 msgid "Manage layout:"
 msgstr "배치 관리:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:173
 msgid "globally"
 msgstr "전역"
 
-#: ../panel-plugin/xkb-settings-dialog.c:168
+#: ../panel-plugin/xkb-dialog.c:174
 msgid "per window"
 msgstr "창별"
 
-#: ../panel-plugin/xkb-settings-dialog.c:169
+#: ../panel-plugin/xkb-dialog.c:175
 msgid "per application"
 msgstr "프로그램별"
 
-#: ../panel-plugin/xkb-settings-dialog.c:205
+#: ../panel-plugin/xkb-dialog.c:228
 msgid "Keyboard Layouts Plugin"
 msgstr "키보드 배치 플러그인"
 
-#: ../panel-plugin/xkb-settings-dialog.c:215
+#: ../panel-plugin/xkb-dialog.c:238
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "다중 키보드 배치를 설정하고 사용할 수 있게 합니다."
 
-#: ../panel-plugin/xkb-settings-dialog.c:219
+#: ../panel-plugin/xkb-dialog.c:242
 msgid "Other plugins available here"
 msgstr "다른 플러그인은 여기에 있습니다"
 
-#: ../panel-plugin/xfce4-xkb-plugin.c:131
+#: ../panel-plugin/xkb-plugin.c:244
 msgid "Keyboard settings"
 msgstr "키보드 설정"
 
-#: ../panel-plugin/xkb-plugin.desktop.in.in.h:2
+#: ../panel-plugin/xkb.desktop.in.h:2
 msgid "Keyboard layouts setup and switch plugin"
 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 nl (100%).

2017-06-10 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 5ba5c0ab529aa0de26d4aba695aa298269cad029
Author: Pjotr 
Date:   Sat Jun 10 18:32:10 2017 +0200

I18n: Update translation nl (100%).

330 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 7f33226..696d602 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -4,15 +4,15 @@
 # 
 # Translators:
 # Jasper Huijsmans , 2005
-# Pjotr , 2013-2014
+# Pjotr , 2013-2014,2017
 msgid ""
 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: 2014-10-27 10:52+\n"
+"PO-Revision-Date: 2017-06-10 16:28+\n"
 "Last-Translator: Pjotr \n"
-"Language-Team: Dutch 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/nl/)\n"
+"Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -181,7 +181,7 @@ msgstr "Kan weerinformatie niet bijwerken"
 
 #: ../panel-plugin/weather.c:1884
 msgid "No default icon theme? This should not happen, plugin will crash!"
-msgstr "Geen standaardthema voor pictogrammen? Dit zou niet mogen voorkomen: 
de invoegtoepassing zal vastlopen."
+msgstr "Geen standaardthema voor pictogrammen? Dit zou niet mogen voorkomen: 
het invoegsel zal vastlopen."
 
 #. add refresh button to right click menu, for people who missed
 #. the middle mouse click feature
@@ -332,7 +332,7 @@ msgid ""
 "The plugin tries to auto-detect the altitude using the GeoNames webservice, 
but that might not always be correct too, so you can change it here.\n"
 "\n"
 "Altitude is given in meters above sea level, or alternatively in feet by 
changing the unit on the units page. It should match the real value roughly, 
but small differences will have no influence on the weather data. Inside 
Norway, this setting has no effect at all."
-msgstr "Voor locaties buiten Noorwegen is het verheffingsmodel dat de 
webdienst Met. no gebruikt niet erg goed, dus is het gewoonlijk nodig om de 
hoogte als een extra parameter op te geven, anders zullen de gerapporteerde 
waarden niet correct zijn.\n\nDe invoegtoepassing probeert om de hoogte 
automatisch te bespeuren met behulp van de webdienst GeoNames, maar die zou ook 
weleens niet altijd correct kunnen zijn, dus kunt u het hier 
veranderen.\n\nHoogte wordt gegeven in meters boven zeeni [...]
+msgstr "Voor locaties buiten Noorwegen is het verheffingsmodel dat de 
webdienst Met. no gebruikt niet erg goed, dus is het gewoonlijk nodig om de 
hoogte als een extra parameter op te geven, anders zullen de gerapporteerde 
waarden niet correct zijn.\n\nHet invoegsel probeert om de hoogte automatisch 
te bespeuren met behulp van de webdienst GeoNames, maar die zou ook weleens 
niet altijd correct kunnen zijn, dus kunt u het hier veranderen.\n\nHoogte 
wordt gegeven in meters boven zeeniveau,  [...]
 
 #: ../panel-plugin/weather-config.c:587
 msgid "_Timezone:"
@@ -342,7 +342,7 @@ msgstr "Tijdzone:"
 msgid ""
 "If the chosen location is not in your current timezone, then it is necessary 
to put the plugin into that other timezone for the times to be shown 
correctly. The proper timezone will be auto-detected via the GeoNames web 
service, but you might want to correct it if necessary.\n"
 "Leave this field empty to use the timezone set by your system. Invalid 
entries will cause the use of UTC time, but that may also depend on your 
system."
-msgstr "Indien de gekozen locatie zich niet bevindt in uw huidige tijdzone, 
dan is het nodig om de invoegtoepassing in die andere tijdzone te plaatsen om 
de juiste tijden te zien te krijgen. De juiste tijdzone zal vanzelf bespeurd 
worden via de webdienst GeoNames, maar u kunt die desgewenst corrigeren.\nLaat 
dit veld leeg om de tijdzone van uw systeem te gebruiken. Ongeldige invulling 
kan de UTC-tijd oproepen, maar kan ook van uw systeem afhangen."
+msgstr "Indien de gekozen locatie zich niet bevindt in uw huidige tijdzone, 
dan is het nodig om het invoegsel in die andere tijdzone te plaatsen om de 
juiste tijden te zien te krijgen. De juiste tijdzone zal vanzelf bespeurd 
worden via de webdienst GeoNames, maar u kunt die desgewenst corrigeren.\nLaat 
dit veld leeg om de tijdzone van uw systeem te gebruiken. Ongeldige invulling 
kan de UTC-tijd oproepen, maar kan ook van uw systeem afhangen."
 
 #: ../panel-plugin/weather-config.c:620
 msgid ""
@@ -1227,7 

[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] branch master updated (701222e -> 5ba5c0a)

2017-06-10 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  701222e   Fix showing times in UTC instead of local time on FreeBSD 
(bug #13358)
   new  5ba5c0a   I18n: Update translation nl (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/nl.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] [panel-plugins/xfce4-wavelan-plugin] branch master updated (91a9c45 -> fa46063)

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

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

  from  91a9c45   I18n: Update translation id (100%).
   new  fa46063   I18n: Update translation nl (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/nl.po | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

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


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

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

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

commit f7610b2c6a0207b55800d71463dadbc0208a0cff
Author: Anonymous 
Date:   Sat Jun 10 18:32:22 2017 +0200

I18n: Update translation da (100%).

21 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 9bb3b03..d87dafc 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,8 +12,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 00:31+0200\n"
-"PO-Revision-Date: 2017-01-22 17:36+\n"
+"POT-Creation-Date: 2017-06-10 15:06+0200\n"
+"PO-Revision-Date: 2017-06-10 15:05+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -22,66 +22,86 @@ msgstr ""
 "Language: da\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../panel-plugin/xkb-settings-dialog.c:120
-#: ../panel-plugin/xkb-plugin.desktop.in.in.h:1
+#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Tastaturlayouts"
 
-#. ***
-#: ../panel-plugin/xkb-settings-dialog.c:130
+#: ../panel-plugin/xkb-dialog.c:95
+msgid "Appearance"
+msgstr "Udseende"
+
+#: ../panel-plugin/xkb-dialog.c:105
 msgid "Show layout as:"
 msgstr "Vis layout som:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:135
+#: ../panel-plugin/xkb-dialog.c:111
 msgid "image"
 msgstr "billede"
 
-#: ../panel-plugin/xkb-settings-dialog.c:136
+#: ../panel-plugin/xkb-dialog.c:112
 msgid "text"
 msgstr "tekst"
 
-#. text size option
-#: ../panel-plugin/xkb-settings-dialog.c:141
-msgid "Text size:"
-msgstr "Tekst størrelse:"
+#: ../panel-plugin/xkb-dialog.c:113
+msgid "system"
+msgstr "system"
+
+#: ../panel-plugin/xkb-dialog.c:119
+msgid "Layout name:"
+msgstr "Layoutnavn:"
+
+#: ../panel-plugin/xkb-dialog.c:125
+msgid "country"
+msgstr "land"
+
+#: ../panel-plugin/xkb-dialog.c:126
+msgid "language"
+msgstr "sprog"
+
+#: ../panel-plugin/xkb-dialog.c:132
+msgid "Widget size:"
+msgstr "Widget-størrelse:"
+
+#: ../panel-plugin/xkb-dialog.c:146
+msgid "Tooltip icon:"
+msgstr "Ikon for værktøjstip:"
 
-#. image size option
-#: ../panel-plugin/xkb-settings-dialog.c:152
-msgid "Image size:"
-msgstr "Billedstørrelse:"
+#: ../panel-plugin/xkb-dialog.c:157
+msgid "Behavior"
+msgstr "Adfærd"
 
-#: ../panel-plugin/xkb-settings-dialog.c:162
+#: ../panel-plugin/xkb-dialog.c:167
 msgid "Manage layout:"
 msgstr "Håndtér layout:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:173
 msgid "globally"
 msgstr "globalt"
 
-#: ../panel-plugin/xkb-settings-dialog.c:168
+#: ../panel-plugin/xkb-dialog.c:174
 msgid "per window"
 msgstr "hvert vindue"
 
-#: ../panel-plugin/xkb-settings-dialog.c:169
+#: ../panel-plugin/xkb-dialog.c:175
 msgid "per application"
 msgstr "hvert program"
 
-#: ../panel-plugin/xkb-settings-dialog.c:205
+#: ../panel-plugin/xkb-dialog.c:228
 msgid "Keyboard Layouts Plugin"
 msgstr "Udvidelsesmodul til tastaturlayouts"
 
-#: ../panel-plugin/xkb-settings-dialog.c:215
+#: ../panel-plugin/xkb-dialog.c:238
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Tillader dig at indstille og bruge flere tastaturlayouts."
 
-#: ../panel-plugin/xkb-settings-dialog.c:219
+#: ../panel-plugin/xkb-dialog.c:242
 msgid "Other plugins available here"
 msgstr "Andre udvidelsesmoduler som er tilgængelige her"
 
-#: ../panel-plugin/xfce4-xkb-plugin.c:131
+#: ../panel-plugin/xkb-plugin.c:244
 msgid "Keyboard settings"
 msgstr "Tastaturindstillinger"
 
-#: ../panel-plugin/xkb-plugin.desktop.in.in.h:2
+#: ../panel-plugin/xkb.desktop.in.h:2
 msgid "Keyboard layouts setup and switch plugin"
 msgstr "Udvidelsesmodul til indstilling og skift af tastaturlayout"

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


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

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

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

commit fa460634da61cbfb74dcd5842752c89c0f3e7c7f
Author: Pjotr 
Date:   Sat Jun 10 18:32:04 2017 +0200

I18n: Update translation nl (100%).

18 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index a5da634..4f49a55 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,15 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Pjotr , 2014-2015
+# Pjotr , 2014-2015,2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-03-05 00:32+0100\n"
-"PO-Revision-Date: 2015-03-05 13:26+\n"
+"PO-Revision-Date: 2017-06-10 16:21+\n"
 "Last-Translator: Pjotr \n"
-"Language-Team: Dutch 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/nl/)\n"
+"Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -40,7 +40,7 @@ msgstr "Geen apparaat ingesteld"
 
 #: ../panel-plugin/wavelan.c:501
 msgid "Wavelan Plugin Options"
-msgstr "Opties voor Wavelan invoegtoepassing"
+msgstr "Opties voor Wavelan-invoegsel"
 
 #: ../panel-plugin/wavelan.c:516
 msgid "Properties"
@@ -62,7 +62,7 @@ msgstr "Automatisch verbergen indien geen apparatuur aanwezig"
 msgid ""
 "Note: This will make it difficult to remove or configure the plugin if there"
 " is no device detected."
-msgstr "Let op: Dit zal het moeilijk maken om de invoegtoepassing te 
verwijderen of in te stellen wanneer er geen apparaat wordt gevonden."
+msgstr "Let op: dit zal het moeilijk maken om het invoegsel te verwijderen of 
in te stellen wanneer er geen apparaat wordt gevonden."
 
 #: ../panel-plugin/wavelan.c:578
 msgid "Enable sig_nal quality colors"

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


[Xfce4-commits] [panel-plugins/xfce4-wmdock-plugin] branch master updated (d497d9b -> de8a8fe)

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

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

  from  d497d9b   I18n: Update translation hr (100%).
   new  de8a8fe   I18n: Update translation nl (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/nl.po | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

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


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

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

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

commit 10620ad818823a1090378dbd9aa3c72e6703313e
Author: Kiril Kirilov 
Date:   Sat Jun 10 18:32:22 2017 +0200

I18n: Update translation bg (100%).

21 translated messages.

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

diff --git a/po/bg.po b/po/bg.po
index cc73112..91da9be 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -4,82 +4,102 @@
 # 
 # Translators:
 # Alexander Iliev , 2008
-# Kiril Kirilov , 2015
-# Lyubomir Vasilev, 2015
+# Kiril Kirilov , 2015,2017
+# Любомир Василев, 2015
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 00:31+0200\n"
-"PO-Revision-Date: 2015-07-01 11:14+\n"
+"POT-Creation-Date: 2017-06-10 15:06+0200\n"
+"PO-Revision-Date: 2017-06-10 15:13+\n"
 "Last-Translator: Kiril Kirilov \n"
-"Language-Team: Bulgarian 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/bg/)\n"
+"Language-Team: Bulgarian 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/bg/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: bg\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../panel-plugin/xkb-settings-dialog.c:120
-#: ../panel-plugin/xkb-plugin.desktop.in.in.h:1
+#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Клавиатурни подредби"
 
-#. ***
-#: ../panel-plugin/xkb-settings-dialog.c:130
+#: ../panel-plugin/xkb-dialog.c:95
+msgid "Appearance"
+msgstr "Външен вид"
+
+#: ../panel-plugin/xkb-dialog.c:105
 msgid "Show layout as:"
 msgstr "Показване на подредбата като:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:135
+#: ../panel-plugin/xkb-dialog.c:111
 msgid "image"
 msgstr "картинка"
 
-#: ../panel-plugin/xkb-settings-dialog.c:136
+#: ../panel-plugin/xkb-dialog.c:112
 msgid "text"
 msgstr "текст"
 
-#. text size option
-#: ../panel-plugin/xkb-settings-dialog.c:141
-msgid "Text size:"
-msgstr "Размер на текста:"
+#: ../panel-plugin/xkb-dialog.c:113
+msgid "system"
+msgstr "система"
+
+#: ../panel-plugin/xkb-dialog.c:119
+msgid "Layout name:"
+msgstr "Име на подредбата:"
+
+#: ../panel-plugin/xkb-dialog.c:125
+msgid "country"
+msgstr "страна"
+
+#: ../panel-plugin/xkb-dialog.c:126
+msgid "language"
+msgstr "език"
+
+#: ../panel-plugin/xkb-dialog.c:132
+msgid "Widget size:"
+msgstr "Размер на джаджа:"
+
+#: ../panel-plugin/xkb-dialog.c:146
+msgid "Tooltip icon:"
+msgstr "Икона на подсказката:"
 
-#. image size option
-#: ../panel-plugin/xkb-settings-dialog.c:152
-msgid "Image size:"
-msgstr "Размер на изображението:"
+#: ../panel-plugin/xkb-dialog.c:157
+msgid "Behavior"
+msgstr "Поведение"
 
-#: ../panel-plugin/xkb-settings-dialog.c:162
+#: ../panel-plugin/xkb-dialog.c:167
 msgid "Manage layout:"
 msgstr "Управлявай подредбата:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:173
 msgid "globally"
 msgstr "глобално"
 
-#: ../panel-plugin/xkb-settings-dialog.c:168
+#: ../panel-plugin/xkb-dialog.c:174
 msgid "per window"
 msgstr "за всеки прозорец"
 
-#: ../panel-plugin/xkb-settings-dialog.c:169
+#: ../panel-plugin/xkb-dialog.c:175
 msgid "per application"
 msgstr "за всяко приложение"
 
-#: ../panel-plugin/xkb-settings-dialog.c:205
+#: ../panel-plugin/xkb-dialog.c:228
 msgid "Keyboard Layouts Plugin"
 msgstr "Клавиатурна подредба"
 
-#: ../panel-plugin/xkb-settings-dialog.c:215
+#: ../panel-plugin/xkb-dialog.c:238
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Позволява да конфигурирате и използвате повече от една клавиатурна 
подредба."
 
-#: ../panel-plugin/xkb-settings-dialog.c:219
+#: ../panel-plugin/xkb-dialog.c:242
 msgid "Other plugins available here"
 msgstr "Тук ще намерите други добавки"
 
-#: ../panel-plugin/xfce4-xkb-plugin.c:131
+#: ../panel-plugin/xkb-plugin.c:244
 msgid "Keyboard settings"
 msgstr "Настройка на клавиатурата"
 
-#: ../panel-plugin/xkb-plugin.desktop.in.in.h:2
+#: ../panel-plugin/xkb.desktop.in.h:2
 msgid "Keyboard layouts setup and switch plugin"
 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-xkb-plugin] branch master updated (7f74d7e -> 8b865d8)

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

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

  from  7f74d7e   Bug 12884: Load flags from XDG_DATA_HOME if present
   new  10620ad   I18n: Update translation bg (100%).
   new  f7610b2   I18n: Update translation da (100%).
   new  5b599d9   I18n: Update translation ko (100%).
   new  331b6df   I18n: Update translation nl (100%).
   new  8b865d8   I18n: Update translation zh_TW (100%).

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:
 po/bg.po| 76 --
 po/da.po| 70 ++---
 po/ko.po| 75 -
 po/nl.po| 80 ++---
 po/zh_TW.po | 74 +++-
 5 files changed, 238 insertions(+), 137 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 04/05: I18n: Update translation nl (100%).

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

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

commit 331b6df535eab27f348e5e15ace58d6b35e5d63f
Author: Pjotr 
Date:   Sat Jun 10 18:32:22 2017 +0200

I18n: Update translation nl (100%).

21 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index c769484..321888b 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,81 +3,101 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Pjotr , 2015
+# Pjotr , 2015,2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 00:31+0200\n"
-"PO-Revision-Date: 2015-07-01 11:58+\n"
+"POT-Creation-Date: 2017-06-10 15:06+0200\n"
+"PO-Revision-Date: 2017-06-10 16:12+\n"
 "Last-Translator: Pjotr \n"
-"Language-Team: Dutch 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/nl/)\n"
+"Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../panel-plugin/xkb-settings-dialog.c:120
-#: ../panel-plugin/xkb-plugin.desktop.in.in.h:1
+#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Toetsenbordindelingen"
 
-#. ***
-#: ../panel-plugin/xkb-settings-dialog.c:130
+#: ../panel-plugin/xkb-dialog.c:95
+msgid "Appearance"
+msgstr "Uiterlijk"
+
+#: ../panel-plugin/xkb-dialog.c:105
 msgid "Show layout as:"
 msgstr "Toon indeling als:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:135
+#: ../panel-plugin/xkb-dialog.c:111
 msgid "image"
 msgstr "afbeelding"
 
-#: ../panel-plugin/xkb-settings-dialog.c:136
+#: ../panel-plugin/xkb-dialog.c:112
 msgid "text"
 msgstr "tekst"
 
-#. text size option
-#: ../panel-plugin/xkb-settings-dialog.c:141
-msgid "Text size:"
-msgstr "Tekstgrootte:"
+#: ../panel-plugin/xkb-dialog.c:113
+msgid "system"
+msgstr "systeem"
+
+#: ../panel-plugin/xkb-dialog.c:119
+msgid "Layout name:"
+msgstr "Naam van vormgeving:"
+
+#: ../panel-plugin/xkb-dialog.c:125
+msgid "country"
+msgstr "land"
+
+#: ../panel-plugin/xkb-dialog.c:126
+msgid "language"
+msgstr "taal"
+
+#: ../panel-plugin/xkb-dialog.c:132
+msgid "Widget size:"
+msgstr "Naam van minitoepassing:"
+
+#: ../panel-plugin/xkb-dialog.c:146
+msgid "Tooltip icon:"
+msgstr "Pictogram voor gereedschaptip:"
 
-#. image size option
-#: ../panel-plugin/xkb-settings-dialog.c:152
-msgid "Image size:"
-msgstr "Afbeeldinggrootte:"
+#: ../panel-plugin/xkb-dialog.c:157
+msgid "Behavior"
+msgstr "Gedrag"
 
-#: ../panel-plugin/xkb-settings-dialog.c:162
+#: ../panel-plugin/xkb-dialog.c:167
 msgid "Manage layout:"
 msgstr "Indeling beheren:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:173
 msgid "globally"
 msgstr "systeembreed"
 
-#: ../panel-plugin/xkb-settings-dialog.c:168
+#: ../panel-plugin/xkb-dialog.c:174
 msgid "per window"
 msgstr "per venster"
 
-#: ../panel-plugin/xkb-settings-dialog.c:169
+#: ../panel-plugin/xkb-dialog.c:175
 msgid "per application"
 msgstr "per toepassing"
 
-#: ../panel-plugin/xkb-settings-dialog.c:205
+#: ../panel-plugin/xkb-dialog.c:228
 msgid "Keyboard Layouts Plugin"
-msgstr "Toetsenbordindelingen-invoegtoepassing"
+msgstr "Toetsenbordindelingen-invoegsel"
 
-#: ../panel-plugin/xkb-settings-dialog.c:215
+#: ../panel-plugin/xkb-dialog.c:238
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Stelt u in staat om meerdere toetsenbordindelingen in te stellen en te 
gebruiken."
 
-#: ../panel-plugin/xkb-settings-dialog.c:219
+#: ../panel-plugin/xkb-dialog.c:242
 msgid "Other plugins available here"
-msgstr "Andere invoegtoepassingen zijn hier beschikbaar"
+msgstr "Andere invoegsels zijn hier beschikbaar"
 
-#: ../panel-plugin/xfce4-xkb-plugin.c:131
+#: ../panel-plugin/xkb-plugin.c:244
 msgid "Keyboard settings"
 msgstr "Toetsenbordindelingen"
 
-#: ../panel-plugin/xkb-plugin.desktop.in.in.h:2
+#: ../panel-plugin/xkb.desktop.in.h:2
 msgid "Keyboard layouts setup and switch plugin"
-msgstr "Invoegtoepassing voor het instellen en veranderen van 
toetsenbordindelingen"
+msgstr "Invoegsel voor het instellen en veranderen van toetsenbordindelingen"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___

[Xfce4-commits] [panel-plugins/xfce4-verve-plugin] branch master updated (6b8cada -> f0fc9ef)

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

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

  from  6b8cada   I18n: Update translation id (100%).
   new  f0fc9ef   I18n: Update translation nl (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/nl.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 05/05: I18n: Update translation zh_TW (100%).

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

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

commit 8b865d808f5357000f4a0c80a6d149d8de6f0ed5
Author: Jeff Huang 
Date:   Sat Jun 10 18:32:22 2017 +0200

I18n: Update translation zh_TW (100%).

21 translated messages.

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

diff --git a/po/zh_TW.po b/po/zh_TW.po
index 8521617..71962b4 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -4,82 +4,102 @@
 # 
 # Translators:
 # Cosmo Chene , 2006
-# Jeff Huang , 2015
+# Jeff Huang , 2015,2017
 # Walter Cheuk , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-07-01 00:31+0200\n"
-"PO-Revision-Date: 2015-07-01 07:17+\n"
+"POT-Creation-Date: 2017-06-10 15:06+0200\n"
+"PO-Revision-Date: 2017-06-10 13:32+\n"
 "Last-Translator: Jeff Huang \n"
-"Language-Team: Chinese (Taiwan) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/zh_TW/)\n"
+"Language-Team: Chinese (Taiwan) 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/zh_TW/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: zh_TW\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../panel-plugin/xkb-settings-dialog.c:120
-#: ../panel-plugin/xkb-plugin.desktop.in.in.h:1
+#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "鍵盤配置"
 
-#. ***
-#: ../panel-plugin/xkb-settings-dialog.c:130
+#: ../panel-plugin/xkb-dialog.c:95
+msgid "Appearance"
+msgstr "外觀"
+
+#: ../panel-plugin/xkb-dialog.c:105
 msgid "Show layout as:"
 msgstr "顯示配置為:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:135
+#: ../panel-plugin/xkb-dialog.c:111
 msgid "image"
 msgstr "影像"
 
-#: ../panel-plugin/xkb-settings-dialog.c:136
+#: ../panel-plugin/xkb-dialog.c:112
 msgid "text"
 msgstr "文字"
 
-#. text size option
-#: ../panel-plugin/xkb-settings-dialog.c:141
-msgid "Text size:"
-msgstr "文字大小:"
+#: ../panel-plugin/xkb-dialog.c:113
+msgid "system"
+msgstr "系統"
+
+#: ../panel-plugin/xkb-dialog.c:119
+msgid "Layout name:"
+msgstr "佈局名稱:"
+
+#: ../panel-plugin/xkb-dialog.c:125
+msgid "country"
+msgstr "國家"
+
+#: ../panel-plugin/xkb-dialog.c:126
+msgid "language"
+msgstr "語言"
+
+#: ../panel-plugin/xkb-dialog.c:132
+msgid "Widget size:"
+msgstr "小工具大小:"
+
+#: ../panel-plugin/xkb-dialog.c:146
+msgid "Tooltip icon:"
+msgstr "工具提示圖示:"
 
-#. image size option
-#: ../panel-plugin/xkb-settings-dialog.c:152
-msgid "Image size:"
-msgstr "影像大小:"
+#: ../panel-plugin/xkb-dialog.c:157
+msgid "Behavior"
+msgstr "行為"
 
-#: ../panel-plugin/xkb-settings-dialog.c:162
+#: ../panel-plugin/xkb-dialog.c:167
 msgid "Manage layout:"
 msgstr "管理配置:"
 
-#: ../panel-plugin/xkb-settings-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:173
 msgid "globally"
 msgstr "全域"
 
-#: ../panel-plugin/xkb-settings-dialog.c:168
+#: ../panel-plugin/xkb-dialog.c:174
 msgid "per window"
 msgstr "各個視窗獨立"
 
-#: ../panel-plugin/xkb-settings-dialog.c:169
+#: ../panel-plugin/xkb-dialog.c:175
 msgid "per application"
 msgstr "各個程式獨立"
 
-#: ../panel-plugin/xkb-settings-dialog.c:205
+#: ../panel-plugin/xkb-dialog.c:228
 msgid "Keyboard Layouts Plugin"
 msgstr "鍵盤配置插件"
 
-#: ../panel-plugin/xkb-settings-dialog.c:215
+#: ../panel-plugin/xkb-dialog.c:238
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "讓您設定並使用多種鍵盤配置。"
 
-#: ../panel-plugin/xkb-settings-dialog.c:219
+#: ../panel-plugin/xkb-dialog.c:242
 msgid "Other plugins available here"
 msgstr "其他可用的插件"
 
-#: ../panel-plugin/xfce4-xkb-plugin.c:131
+#: ../panel-plugin/xkb-plugin.c:244
 msgid "Keyboard settings"
 msgstr "鍵盤設定"
 
-#: ../panel-plugin/xkb-plugin.desktop.in.in.h:2
+#: ../panel-plugin/xkb.desktop.in.h:2
 msgid "Keyboard layouts setup and switch plugin"
 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-wmdock-plugin] 01/01: I18n: Update translation nl (100%).

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

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

commit de8a8feb83fa2204c9595513afe184f00eecc9c6
Author: Pjotr 
Date:   Sat Jun 10 18:32:16 2017 +0200

I18n: Update translation nl (100%).

28 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 974dc0a..865d3d1 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,15 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Pjotr123 , 2013
+# Pjotr , 2013,2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-11-05 12:31+0100\n"
-"PO-Revision-Date: 2013-11-07 12:20+\n"
-"Last-Translator: Pjotr123 \n"
-"Language-Team: Dutch 
(http://www.transifex.com/projects/p/xfce/language/nl/)\n"
+"PO-Revision-Date: 2017-06-10 16:31+\n"
+"Last-Translator: Pjotr \n"
+"Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -105,7 +105,7 @@ msgstr "Maak vrije plaatsing op het scherm mogelijk voor de 
eerste doktoepassing
 msgid ""
 "Hint: Is the first dockapp covered by a XFCE panel, please try to move the 
plugin\n"
 "to this panel to correct this problem."
-msgstr "Wenk: als de eerste doktoepassing wordt bedekt door een Xfce-werkbalk, 
probeer dan a.u.b.\nom de invoegtoepassing naar deze werkbalk te verplaatsen om 
het probleem op te lossen."
+msgstr "Wenk: als de eerste doktoepassing wordt bedekt door een Xfce-werkbalk, 
probeer dan a.u.b.\nom het invoegsel naar deze werkbalk te verplaatsen om het 
probleem op te lossen."
 
 #: ../panel-plugin/props.c:542
 msgid "Placement:"
@@ -134,4 +134,4 @@ msgstr "Kon '%s' niet starten."
 
 #: ../panel-plugin/wmdock.desktop.in.in.h:2
 msgid "Plugin for WindowMaker dockapps"
-msgstr "Invoegtoepassing voor WindowMaker-doktoepassingen"
+msgstr "Invoegsel voor WindowMaker-doktoepassingen"

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


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

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

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

commit f0fc9efda505f5d539b5bff3e7b79fcc308af84d
Author: Pjotr 
Date:   Sat Jun 10 18:31:58 2017 +0200

I18n: Update translation nl (100%).

25 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index dcfcdce..0e57934 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Pjotr , 2015
+# Pjotr , 2015,2017
 # Stephan Arts , 2006
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-04-17 06:31+0200\n"
-"PO-Revision-Date: 2015-10-07 14:00+\n"
+"PO-Revision-Date: 2017-06-10 16:19+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -142,4 +142,4 @@ msgstr "Kan niet verbinden met de D-BUS sessie bus."
 msgid ""
 "There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) "
 "running."
-msgstr "Er schijnt geen Verve D-BUS leverancier te draaien (zoals de Verve 
werkbalk-invoegtoepassing)."
+msgstr "Er schijnt geen Verve D-BUS leverancier te draaien (zoals het Verve 
werkbalk-invoegsel)."

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


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

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

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

commit 42b5736a4ea6e57952e8de9b40fa4c7f2b2ceb54
Author: Anonymous 
Date:   Sat Jun 10 18:31:30 2017 +0200

I18n: Update translation da (100%).

35 translated messages.

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

diff --git a/po/da.po b/po/da.po
index b14fe91..26e50e1 100644
--- a/po/da.po
+++ b/po/da.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-05-14 18:31+0200\n"
-"PO-Revision-Date: 2017-01-22 17:58+\n"
+"POT-Creation-Date: 2017-06-09 12:31+0200\n"
+"PO-Revision-Date: 2017-06-10 15:04+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -20,6 +20,11 @@ msgstr ""
 "Language: da\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
+#. Defaults
+#: ../panel-plugin/netload.c:42
+msgid "Net"
+msgstr "Net"
+
 #: ../panel-plugin/netload.c:61
 msgid "Xfce4-Netload-Plugin"
 msgstr "Xfce4-Netload-udvidelsesmodul"
@@ -36,12 +41,12 @@ msgstr "Linux proc-enhed '/proc/net/dev' ikke fundet."
 msgid "Interface was not found."
 msgstr "Grænseflade var ikke fundet."
 
-#: ../panel-plugin/netload.c:167
+#: ../panel-plugin/netload.c:168
 #, c-format
 msgid "<< %s >> (Interface down)"
 msgstr "<< %s >> (Grænseflade nede)"
 
-#: ../panel-plugin/netload.c:254
+#: ../panel-plugin/netload.c:255
 #, c-format
 msgid ""
 "<< %s >> (%s)\n"
@@ -52,82 +57,82 @@ msgid ""
 "Total: %s"
 msgstr "<< %s >> (%s)\nGennemsnit af de sidste %d målinger\nmed et interval af 
%.2fs:\nIndkommende: %s\nUdgående: %s\nTotal: %s"
 
-#: ../panel-plugin/netload.c:257
+#: ../panel-plugin/netload.c:258
 msgid "no IP address"
 msgstr "ingen IP-adresse"
 
-#: ../panel-plugin/netload.c:659
+#: ../panel-plugin/netload.c:642
 #, c-format
 msgid ""
 "%s: Error in initializing:\n"
 "%s"
 msgstr "%s: Fejl ved initialisering:\n%s"
 
-#: ../panel-plugin/netload.c:999
+#: ../panel-plugin/netload.c:980
 msgid "Bar color (i_ncoming):"
 msgstr "Bjælkefarve (i_ndkommende):"
 
-#: ../panel-plugin/netload.c:1000
+#: ../panel-plugin/netload.c:981
 msgid "Bar color (_outgoing):"
 msgstr "Bjælkefarve (_udgående):"
 
-#: ../panel-plugin/netload.c:1003
+#: ../panel-plugin/netload.c:984
 msgid "Maximum (inco_ming):"
 msgstr "Maksimum (indk_ommende):"
 
-#: ../panel-plugin/netload.c:1004
+#: ../panel-plugin/netload.c:985
 msgid "Maximum (o_utgoing):"
 msgstr "Maksimum (_udgående):"
 
-#: ../panel-plugin/netload.c:1009 ../panel-plugin/netload.desktop.in.in.h:1
+#: ../panel-plugin/netload.c:990 ../panel-plugin/netload.desktop.in.in.h:1
 msgid "Network Monitor"
 msgstr "Netværksovervågning"
 
-#: ../panel-plugin/netload.c:1038
+#: ../panel-plugin/netload.c:1019
 msgid "_Text to display:"
 msgstr "_Tekst at vise:"
 
-#: ../panel-plugin/netload.c:1069
+#: ../panel-plugin/netload.c:1050
 msgid "Network _device:"
 msgstr "Netværks_enhed:"
 
-#: ../panel-plugin/netload.c:1096
+#: ../panel-plugin/netload.c:1077
 msgid "Update _interval:"
 msgstr "Opdaterings_interval:"
 
-#: ../panel-plugin/netload.c:1109
+#: ../panel-plugin/netload.c:1090
 msgid "s"
 msgstr "s"
 
-#: ../panel-plugin/netload.c:1123
+#: ../panel-plugin/netload.c:1104
 msgid "Show values as _bits"
 msgstr "Vis værdier som _bit"
 
-#: ../panel-plugin/netload.c:1137
+#: ../panel-plugin/netload.c:1118
 msgid "_Automatic maximum"
 msgstr "_Automatisk maksimum"
 
-#: ../panel-plugin/netload.c:1171
+#: ../panel-plugin/netload.c:1152
 msgid "KiB/s"
 msgstr "KiB/s"
 
-#: ../panel-plugin/netload.c:1196
+#: ../panel-plugin/netload.c:1177
 msgid "_Present data as:"
 msgstr "_Præsenter data som:"
 
-#: ../panel-plugin/netload.c:1205
+#: ../panel-plugin/netload.c:1186
 msgid "Bars"
 msgstr "Bjælker"
 
-#: ../panel-plugin/netload.c:1206
+#: ../panel-plugin/netload.c:1187
 msgid "Values"
 msgstr "Værdier"
 
-#: ../panel-plugin/netload.c:1207
+#: ../panel-plugin/netload.c:1188
 msgid "Bars and values"
 msgstr "Bjælker og værdier"
 
-#: ../panel-plugin/netload.c:1249
+#: ../panel-plugin/netload.c:1230
 msgid "_Colorize values"
 msgstr "_Farvelæg værdier"
 

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


[Xfce4-commits] [panel-plugins/xfce4-time-out-plugin] branch master updated (d616708 -> 450e7fb)

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

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

  from  d616708   I18n: Update translation id (100%).
   new  450e7fb   I18n: Update translation nl (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/nl.po | 52 +---
 1 file changed, 29 insertions(+), 23 deletions(-)

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


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

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

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

commit 5dea74a7033d3fda61c7da7f2f93706f8fb79c13
Author: Pjotr 
Date:   Sat Jun 10 18:31:52 2017 +0200

I18n: Update translation nl (100%).

42 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 9c6f644..5caa7be 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,15 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Pjotr , 2013-2014
+# Pjotr , 2013-2014,2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-06-05 06:31+0200\n"
-"PO-Revision-Date: 2014-06-06 09:15+\n"
+"PO-Revision-Date: 2017-06-10 16:17+\n"
 "Last-Translator: Pjotr \n"
-"Language-Team: Dutch 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/nl/)\n"
+"Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -137,7 +137,7 @@ msgstr "Opties voor Xfce4-aftelklok"
 
 #: ../src/xfcetimer.c:1506
 msgid "Xfce 4 Timer Plugin"
-msgstr "Xfce4 invoegtoepassing voor aftelklok"
+msgstr "Xfce4-invoegsel voor aftelklok"
 
 #: ../src/xfcetimer.c:1552
 msgid "Timer name"
@@ -189,7 +189,7 @@ msgstr "Over xfce4-timer-plugin"
 
 #: ../src/xfcetimer.c:1728
 msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Een invoegtoepassing om aftelklokken te bepalen of alarmen, op 
bepaalde tijdstippen."
+msgstr "Een invoegsel om aftelklokken te bepalen of wekkers, op bepaalde 
tijdstippen."
 
 #: ../src/xfcetimer.c:1730
 msgid "Copyright (c) 2005-2013\n"
@@ -201,4 +201,4 @@ msgstr "Xfce4-Tijdmeter"
 
 #: ../src/xfce4-timer.desktop.in.in.h:2
 msgid "Timer plugin for Xfce panel"
-msgstr "Tijdmeter-invoegtoepassing voor Xfce4-werkbalk"
+msgstr "Tijdmeter-invoegsel voor Xfce4-werkbalk"

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


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

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

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

commit 450e7fb1ad851fde9fdbfe0bac98d7821fd9d578
Author: Pjotr 
Date:   Sat Jun 10 18:31:47 2017 +0200

I18n: Update translation nl (100%).

33 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 65aa9d2..b0e0a35 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,12 +3,13 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Pjotr , 2016-2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-03 21:22+0200\n"
-"PO-Revision-Date: 2015-10-07 14:00+\n"
+"POT-Creation-Date: 2016-08-30 18:31+0200\n"
+"PO-Revision-Date: 2017-06-10 16:15+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -18,101 +19,106 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:260
+#: ../panel-plugin/time-out.c:264
 msgid "Take a break"
 msgstr "Neem een pauze"
 
 #. Create menu item for resetting the timer
-#: ../panel-plugin/time-out.c:268
+#: ../panel-plugin/time-out.c:272
 msgid "Reset timer"
 msgstr "Zet tijdmeter terug"
 
 #. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:276
+#: ../panel-plugin/time-out.c:280
 msgid "Enabled"
 msgstr "Ingeschakeld"
 
 #. Update tooltips
-#: ../panel-plugin/time-out.c:340
+#: ../panel-plugin/time-out.c:344
 msgid "Paused"
 msgstr "Gepauzeerd"
 
-#: ../panel-plugin/time-out.c:419
+#: ../panel-plugin/time-out.c:423
 msgid ""
 "Xfce Panel plugin for taking a break from computer work every now and then."
-msgstr "Xfce-werkbalk-invoegtoepassing om zo nu en dan een pauze te nemen 
onder het computerwerk."
+msgstr "Xfce-werkbalk-invoegsel om zo nu en dan een pauze te nemen onder het 
computerwerk."
 
-#: ../panel-plugin/time-out.c:428
+#: ../panel-plugin/time-out.c:432
 msgid "translator-credits"
 msgstr "Pjotr "
 
 #. Create properties dialog
-#: ../panel-plugin/time-out.c:460
+#: ../panel-plugin/time-out.c:464
 #: ../panel-plugin/xfce4-time-out-plugin.desktop.in.h:1
 msgid "Time Out"
 msgstr "Pauze"
 
 #. Create time settings section
-#: ../panel-plugin/time-out.c:477
+#: ../panel-plugin/time-out.c:481
 msgid "Time settings"
 msgstr "Tijdinstellingen"
 
 #. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:490
+#: ../panel-plugin/time-out.c:494
 msgid "Minutes"
 msgstr "Minuten"
 
-#: ../panel-plugin/time-out.c:495
+#: ../panel-plugin/time-out.c:499
 msgid "Seconds"
 msgstr "Seconden"
 
 #. Create break countdown time label
-#: ../panel-plugin/time-out.c:501
+#: ../panel-plugin/time-out.c:505
 msgid "Time between breaks:"
 msgstr "Tijd tussen pauzes:"
 
 #. Create lock countdown time label
-#: ../panel-plugin/time-out.c:525
+#: ../panel-plugin/time-out.c:529
 msgid "Break length:"
 msgstr "Pauzeduur:"
 
 #. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:543
+#: ../panel-plugin/time-out.c:547
 msgid "Postpone length:"
 msgstr "Uitstelduur:"
 
 #. Create behaviour section
-#: ../panel-plugin/time-out.c:561
+#: ../panel-plugin/time-out.c:565
 msgid "Behaviour"
 msgstr "Gedrag"
 
 #. Create postpone check button
-#: ../panel-plugin/time-out.c:572
+#: ../panel-plugin/time-out.c:576
 msgid "Allow postpone"
 msgstr "Sta uitstellen toe"
 
 #. Create resume check button
-#: ../panel-plugin/time-out.c:579
+#: ../panel-plugin/time-out.c:583
 msgid "Resume automatically"
 msgstr "Hervat automatisch"
 
 #. Create appearance section
-#: ../panel-plugin/time-out.c:586
+#: ../panel-plugin/time-out.c:590
 msgid "Appearance"
 msgstr "Uiterlijk"
 
+#. Create display icon check button
+#: ../panel-plugin/time-out.c:606
+msgid "Display icon"
+msgstr "Toon pictogram"
+
 #. Create display time check button
-#: ../panel-plugin/time-out.c:597
+#: ../panel-plugin/time-out.c:613
 msgid "Display remaining time in the panel"
 msgstr "Toon overblijvende tijd in de werkbalk"
 
 #. Create display hours check button
-#: ../panel-plugin/time-out.c:604
+#: ../panel-plugin/time-out.c:620
 msgid "Display hours"
 msgstr "Toon uren"
 
 #. Create display seconds check button
-#: ../panel-plugin/time-out.c:611
+#: ../panel-plugin/time-out.c:627
 msgid "Display seconds"
 msgstr "Toon seconden"
 

-- 
To stop receiving notification emails like this one, please 

[Xfce4-commits] [panel-plugins/xfce4-timer-plugin] branch master updated (7a9bd8c -> 5dea74a)

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

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

  from  7a9bd8c   I18n: Update translation el (100%).
   new  5dea74a   I18n: Update translation nl (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/nl.po | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

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


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

2017-06-10 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-cpufreq-plugin.

commit a8f89da5e26937706dab6596ab7e87186f6ea5bc
Author: Anonymous 
Date:   Sat Jun 10 18:31:12 2017 +0200

I18n: Update translation da (100%).

41 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 27cdea3..ddb7f66 100644
--- a/po/da.po
+++ b/po/da.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-05-17 06:31+0200\n"
-"PO-Revision-Date: 2017-05-17 23:14+\n"
+"POT-Creation-Date: 2017-06-09 06:31+0200\n"
+"PO-Revision-Date: 2017-06-10 15:05+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -36,64 +36,72 @@ msgstr "Højreklik for at vende tilbage til 
standardskriften."
 msgid "Select font"
 msgstr "Vælg skrifttype"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:187
+#: ../panel-plugin/xfce4-cpufreq-configure.c:199
 msgid "Configure CPU Frequency Monitor"
 msgstr "Indstil CPU-frekvensovervågning"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:192
+#: ../panel-plugin/xfce4-cpufreq-configure.c:204
 msgid "Configure the CPU frequency plugin"
 msgstr "Indstil udvidelsesmodulet CPU-frekvens"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:210
+#: ../panel-plugin/xfce4-cpufreq-configure.c:222
 msgid "Monitor"
 msgstr "Overvåg"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:233
+#: ../panel-plugin/xfce4-cpufreq-configure.c:245
 msgid "_Update interval:"
 msgstr "_Opdateringsinterval:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:251
+#: ../panel-plugin/xfce4-cpufreq-configure.c:263
 msgid "Panel"
 msgstr "Panel"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:275
+#: ../panel-plugin/xfce4-cpufreq-configure.c:287
 msgid "_Font:"
 msgstr "_Skrifttype:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:294
+#: ../panel-plugin/xfce4-cpufreq-configure.c:306
+msgid "_Font color:"
+msgstr "_Skriftfarve:"
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:316
+msgid "Select font color"
+msgstr "Vælg skriftfarve"
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:326
 msgid "_Display CPU:"
 msgstr "_Vis CPU:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:310
+#: ../panel-plugin/xfce4-cpufreq-configure.c:342
 msgid "min"
 msgstr "min."
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:311
+#: ../panel-plugin/xfce4-cpufreq-configure.c:343
 msgid "avg"
 msgstr "gns."
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:312
+#: ../panel-plugin/xfce4-cpufreq-configure.c:344
 msgid "max"
 msgstr "maks."
 
 #. check buttons for display widgets in panel
-#: ../panel-plugin/xfce4-cpufreq-configure.c:318
+#: ../panel-plugin/xfce4-cpufreq-configure.c:350
 msgid "_Keep compact"
 msgstr "_Hold kompakt"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:323
+#: ../panel-plugin/xfce4-cpufreq-configure.c:355
 msgid "Show text in a single _line"
 msgstr "Vis tekst i en enkelt _linje"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:328
+#: ../panel-plugin/xfce4-cpufreq-configure.c:360
 msgid "Show CPU _icon"
 msgstr "Vis _ikon for CPU"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:335
+#: ../panel-plugin/xfce4-cpufreq-configure.c:367
 msgid "Show CPU fre_quency"
 msgstr "Vis CPU-fre_kvens"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:340
+#: ../panel-plugin/xfce4-cpufreq-configure.c:372
 msgid "Show CPU _governor"
 msgstr "Vis CPU-_bestyrer"
 
@@ -144,40 +152,40 @@ msgstr "nuværende gns."
 msgid "current max"
 msgstr "nuværende maks."
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:367
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:383
 msgid "No CPU information available."
 msgstr "Ingen CPU-information tilgængelig."
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:373
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:389
 #, c-format
 msgid "%d cpu available"
 msgid_plural "%d cpus available"
 msgstr[0] "%d cpu tilrådighed"
 msgstr[1] "%d cpu'er tilrådighed"
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:380
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:396
 msgid "Frequency: "
 msgstr "Frekvens: "
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:388
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:404
 msgid "Governor: "
 msgstr "Bestyrer: "
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:645
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:669
 #: ../panel-plugin/cpufreq.desktop.in.h:2
 msgid "Show CPU frequencies and governor"
 msgstr "Vis CPU-frekvenser og bestyrer"
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:647
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:671
 

[Xfce4-commits] [panel-plugins/xfce4-cpufreq-plugin] branch master updated (dbfe7b4 -> a8f89da)

2017-06-10 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-cpufreq-plugin.

  from  dbfe7b4   I18n: Update translation nl (100%).
   new  a8f89da   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 | 58 +-
 1 file changed, 33 insertions(+), 25 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-netload-plugin] branch master updated (458391a -> 42b5736)

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

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

  from  458391a   I18n: Update translation nl (100%).
   new  42b5736   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 | 51 ---
 1 file changed, 28 insertions(+), 23 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-sensors-plugin] branch master updated (0170b4b -> 5448142)

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

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

  from  0170b4b   Merge branch 'master' of 
ssh://git.xfce.org/panel-plugins/xfce4-sensors-plugin
   new  5448142   I18n: Update translation nl (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/nl.po | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

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


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

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

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

commit 5448142b1ba453549efc9902c30d4ad75f93b35c
Author: Pjotr 
Date:   Sat Jun 10 15:06:02 2017 +0200

I18n: Update translation nl (100%).

75 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index d09e4fc..3e50a55 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-03-19 18:31+0100\n"
-"PO-Revision-Date: 2017-03-20 10:01+\n"
+"PO-Revision-Date: 2017-06-10 11:07+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr "Sensoren"
 #. widget = sensors->eventbox;
 #: ../panel-plugin/sensors-plugin.c:996
 msgid "No sensors selected!"
-msgstr "Geen sensors geselecteerd!"
+msgstr "Geen sensoren geselecteerd!"
 
 #. FIXME: either print nothing, or undertake appropriate action,
 #. * or pop up a message box.
@@ -37,7 +37,7 @@ msgid ""
 "Sensors Plugin:\n"
 "Seems like there was a problem reading a sensor feature value.\n"
 "Proper proceeding cannot be guaranteed.\n"
-msgstr "Sensors-invoegtoepassing:\nHet lijkt erop dat er een probleem was met 
het lezen van de waarde\nvan een sensorfunctie.\nCorrecte voortgang kan niet 
worden gegarandeerd.\n"
+msgstr "Sensoren-invoegsel:\nHet lijkt erop dat er een probleem was met het 
lezen van de waarde\nvan een sensorfunctie.\nCorrecte voortgang kan niet worden 
gegarandeerd.\n"
 
 #: ../panel-plugin/sensors-plugin.c:1943
 msgid "UI style:"
@@ -136,7 +136,7 @@ msgstr "_Gemengd"
 #: ../panel-plugin/sensors-plugin.c:2469 ../panel-plugin/sensors-plugin.h:31
 #: ../lib/hddtemp.c:167
 msgid "Sensors Plugin"
-msgstr "Sensors-invoegtoepassing"
+msgstr "Sensoren-invoegsel"
 
 #: ../panel-plugin/sensors-plugin.c:2477
 msgid "Properties"
@@ -193,7 +193,7 @@ msgid ""
 "Calling \"%s\" gave the following error:\n"
 "%s\n"
 "with a return value of %d.\n"
-msgstr "'hddtemp' werd niet correct uitgevoerd, hoewel het uitvoerbaar is. Dit 
komt hoogstwaarschijnlijk doordat de schijven rootrechten nodig hebben om hun 
temperaturen te lezen, en doordat 'hddtemp' geen setuid root is.\n\nEen snelle 
maar vuile oplossing is om 'chmod u+s %s' uit te voeren als rootgebruiker en 
deze invoegtoepassing of zijn werkbalk te herstarten.\n\nAanroepen van '%s' gaf 
de volgende fout:\n%s\nmet een terugmeldwaarde van %d.\n"
+msgstr "'hddtemp' werd niet correct uitgevoerd, hoewel het uitvoerbaar is. Dit 
komt hoogstwaarschijnlijk doordat de schijven rootrechten nodig hebben om hun 
temperaturen te lezen, en doordat 'hddtemp' geen setuid root is.\n\nEen snelle 
maar vuile oplossing is om 'chmod u+s %s' uit te voeren als rootgebruiker en 
dit invoegsel of zijn werkbalk te herstarten.\n\nAanroepen van '%s' gaf de 
volgende fout:\n%s\nmet een terugmeldwaarde van %d.\n"
 
 #: ../lib/hddtemp.c:585 ../lib/hddtemp.c:608
 msgid "Suppress this message in future"
@@ -208,16 +208,16 @@ msgstr "Er trad een fout op bij het uitvoeren van 
'%s':\n%s"
 
 #: ../lib/lmsensors.c:97
 msgid "LM Sensors"
-msgstr "LM-Sensors"
+msgstr "LM-Sensoren"
 
 #: ../lib/lmsensors.c:370 ../lib/lmsensors.c:417
 #, c-format
 msgid "Error: Could not connect to sensors!"
-msgstr "Fout: Kon niet verbinden met sensors!"
+msgstr "Fout: Kon niet verbinden met sensoren!"
 
 #: ../lib/sensors-interface.c:91
 msgid "Sensors Plugin Failure"
-msgstr "Sensors-invoegtoepassing mislukking"
+msgstr "Sensoren-invoegsel mislukking"
 
 #: ../lib/sensors-interface.c:92
 msgid ""
@@ -227,7 +227,7 @@ msgstr "Het lijkt erop dat er een probleem was met het 
uitlezen van een\nsensorf
 
 #: ../lib/sensors-interface.c:178
 msgid "Sensors t_ype:"
-msgstr "T_ype sensors:"
+msgstr "T_ype sensoren:"
 
 #: ../lib/sensors-interface.c:204
 msgid "Description:"
@@ -275,11 +275,11 @@ msgstr "_Fahrenheit"
 
 #: ../lib/sensors-interface.c:419
 msgid "_Sensors"
-msgstr "_Sensors"
+msgstr "_Sensoren"
 
 #: ../lib/sensors-interface-common.c:75 ../lib/sensors-interface-common.c:76
 msgid "No sensors found!"
-msgstr "Geen sensors gevonden."
+msgstr "Geen sensoren gevonden."
 
 #: ../lib/sensors-interface-common.c:149
 #, c-format
@@ -321,7 +321,7 @@ msgid ""
 "Xfce4 Sensors %s\n"
 "This program is published under the GPL v2.\n"
 "The license text can be found inside the program's source archive or under 
/usr/share/apps/LICENSES/GPL_V2 or at 
http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt\n;
-msgstr "Xfce4 Sensors %s\nDit programma wordt 

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

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

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

commit 94f19af2ce4718c5d36b47d151cfbd546dd55179
Author: Pjotr 
Date:   Sat Jun 10 15:05:56 2017 +0200

I18n: Update translation nl (100%).

34 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 069596b..a6db2b0 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Pjotr , 2017
 # Stephan Arts , 2007
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-05-21 03:11+0200\n"
-"PO-Revision-Date: 2013-09-19 14:52+\n"
-"Last-Translator: Pjotr123 \n"
-"Language-Team: Dutch 
(http://www.transifex.com/projects/p/xfce/language/nl/)\n"
+"PO-Revision-Date: 2017-06-10 11:03+\n"
+"Last-Translator: Pjotr \n"
+"Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -20,11 +21,11 @@ msgstr ""
 
 #: ../panel-plugin/radio.desktop.in.in.h:1
 msgid "Radio Plugin"
-msgstr "Radio-invoegtoepassing"
+msgstr "Radio-invoegsel"
 
 #: ../panel-plugin/radio.desktop.in.in.h:2
 msgid "V4l radio plugin"
-msgstr "V4l-radio-invoegtoepassing"
+msgstr "V4l-radio-invoegsel"
 
 #: ../panel-plugin/xfce4-radio.c:191
 #, c-format
@@ -83,7 +84,7 @@ msgstr "Radio"
 
 #: ../panel-plugin/xfce4-radio.c:1067
 msgid "Configure the radio plugin"
-msgstr "Configureer de radio-invoegtoepassing"
+msgstr "Configureer het radio-invoegsel"
 
 #: ../panel-plugin/xfce4-radio.c:1161
 msgid "User interface"

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


[Xfce4-commits] [panel-plugins/xfce4-radio-plugin] branch master updated (29efea0 -> 94f19af)

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

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

  from  29efea0   I18n: Update translation lt (100%).
   new  94f19af   I18n: Update translation nl (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/nl.po | 13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

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


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

2017-06-10 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-quicklauncher-plugin.

commit 6e559adc7f9baef8b8a0def546ed3df5ce310151
Author: Pjotr 
Date:   Sat Jun 10 15:05:50 2017 +0200

I18n: Update translation nl (100%).

17 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index c54f2c2..0eaf7db 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,15 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Pjotr , 2014
+# Pjotr , 2014,2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-07-30 00:31+0200\n"
-"PO-Revision-Date: 2014-07-30 10:42+\n"
+"PO-Revision-Date: 2017-06-10 11:03+\n"
 "Last-Translator: Pjotr \n"
-"Language-Team: Dutch 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/nl/)\n"
+"Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -64,7 +64,7 @@ msgstr "Hiermee kunt u makkelijk starters toevoegen en hen 
weergeven op meerdere
 
 #: ../panel-plugin/main.c:169
 msgid "Other plugins available here"
-msgstr "Andere invoegtoepassingen hier verkrijgbaar"
+msgstr "Andere invoegsels hier beschikbaar"
 
 #: ../panel-plugin/main.c:321
 msgid "Lock"

-- 
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-quicklauncher-plugin] branch master updated (5faf380 -> 6e559ad)

2017-06-10 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-quicklauncher-plugin.

  from  5faf380   I18n: Update translation id (100%).
   new  6e559ad   I18n: Update translation nl (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/nl.po | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

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


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

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

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

commit de0a69c813f04651e61f825945c9a9a539145112
Author: Pjotr 
Date:   Sat Jun 10 15:05:44 2017 +0200

I18n: Update translation nl (100%).

25 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index ca865a9..9930210 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-04-15 00:31+0200\n"
-"PO-Revision-Date: 2017-04-17 13:43+\n"
+"POT-Creation-Date: 2017-05-21 18:33+0200\n"
+"PO-Revision-Date: 2017-06-10 11:01+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -20,16 +20,16 @@ msgstr ""
 
 #: ../panel-plugin/pulseaudio.desktop.in.in.h:1
 msgid "PulseAudio Plugin"
-msgstr "Invoegtoepassing voor PulseAudio"
+msgstr "Invoegsel voor PulseAudio"
 
 #: ../panel-plugin/pulseaudio.desktop.in.in.h:2
-#: ../panel-plugin/pulseaudio-plugin.c:212
+#: ../panel-plugin/pulseaudio-plugin.c:219
 msgid "Adjust the audio volume of the PulseAudio sound system"
 msgstr "Stel het geluidsvolume bij van het geluidssysteem van PulseAudio"
 
 #: ../panel-plugin/pulseaudio-dialog.glade.h:1
 msgid "PulseAudio Panel Plugin"
-msgstr "Werkbalk-invoegtoepassing voor PulseAudio"
+msgstr "Werkbalk-invoegsel voor PulseAudio"
 
 #: ../panel-plugin/pulseaudio-dialog.glade.h:2
 msgid "Enable keyboard _shortcuts for volume control"
@@ -72,12 +72,12 @@ msgstr "Geluidmengpaneel draaien"
 msgid "Sound settings"
 msgstr "Geluidinstellingen"
 
-#: ../panel-plugin/pulseaudio-plugin.c:214
-msgid "Copyright © 2014-2017 Andrzej Radecki\n"
-msgstr "Auteursrecht © 2014-2017 Andrzej Radecki\n"
+#: ../panel-plugin/pulseaudio-plugin.c:221
+msgid "Copyright © 2014-2017 Andrzej Radecki et al.\n"
+msgstr "Auteursrecht © 2014-2017 Andrzej Radecki et al.\n"
 
 #: ../panel-plugin/pulseaudio-dialog.c:136
-#: ../panel-plugin/pulseaudio-menu.c:169
+#: ../panel-plugin/pulseaudio-menu.c:237
 #, c-format
 msgid ""
 "Failed to execute command \"%s\".\n"
@@ -86,12 +86,12 @@ msgid ""
 msgstr "Kon opdracht '%s' niet uitvoeren.\n\n%s"
 
 #: ../panel-plugin/pulseaudio-dialog.c:139
-#: ../panel-plugin/pulseaudio-menu.c:172
+#: ../panel-plugin/pulseaudio-menu.c:240
 msgid "Error"
 msgstr "Fout"
 
 #: ../panel-plugin/pulseaudio-button.c:310
-#: ../panel-plugin/pulseaudio-notify.c:174
+#: ../panel-plugin/pulseaudio-notify.c:198
 #, c-format
 msgid "Not connected to the PulseAudio server"
 msgstr "Niet verbonden met de PulseAudio-server"
@@ -106,25 +106,33 @@ msgstr "Volume %d%% (gedempt)"
 msgid "Volume %d%%"
 msgstr "Volume %d%%"
 
-#: ../panel-plugin/pulseaudio-menu.c:244
+#: ../panel-plugin/pulseaudio-menu.c:327
 msgid "Audio output volume"
 msgstr "Geluiduitvoervolume"
 
-#: ../panel-plugin/pulseaudio-menu.c:258
+#: ../panel-plugin/pulseaudio-menu.c:338
 msgid "_Mute audio output"
 msgstr "Geluiduitvoer _dempen"
 
+#: ../panel-plugin/pulseaudio-menu.c:355
+msgid "Audio input volume"
+msgstr "Invoervolume voor geluid"
+
+#: ../panel-plugin/pulseaudio-menu.c:366
+msgid "_Mute audio input"
+msgstr "Geluidinvoer _dempen"
+
 #. Audio mixers
-#: ../panel-plugin/pulseaudio-menu.c:269
+#: ../panel-plugin/pulseaudio-menu.c:377
 msgid "_Audio mixer..."
 msgstr "_Geluidmengpaneel"
 
-#: ../panel-plugin/pulseaudio-notify.c:176
+#: ../panel-plugin/pulseaudio-notify.c:200
 #, c-format
 msgid "Volume %d%c (muted)"
 msgstr "Volume %d%c (gedempt)"
 
-#: ../panel-plugin/pulseaudio-notify.c:178
+#: ../panel-plugin/pulseaudio-notify.c:202
 #, c-format
 msgid "Volume %d%c"
 msgstr "Volume %d%c"

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


[Xfce4-commits] [panel-plugins/xfce4-pulseaudio-plugin] branch master updated (2410e33 -> de0a69c)

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

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

  from  2410e33   I18n: Update translation th (100%).
   new  de0a69c   I18n: Update translation nl (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/nl.po | 40 
 1 file changed, 24 insertions(+), 16 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-mount-plugin] branch master updated (21ff1db -> d6a225c)

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

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

  from  21ff1db   I18n: Update translation sr (100%).
   new  d6a225c   I18n: Update translation nl (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/nl.po | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-notes-plugin] branch master updated (2fa366d -> 0917f3b)

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

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

  from  2fa366d   I18n: Update translation ca (100%).
   new  0917f3b   I18n: Update translation nl (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/nl.po | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-netload-plugin] branch master updated (afd1990 -> 458391a)

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

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

  from  afd1990   I18n: Update translation sk (100%).
   new  458391a   I18n: Update translation nl (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/nl.po | 63 ---
 1 file changed, 32 insertions(+), 31 deletions(-)

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


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

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

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

commit 458391aea25d32cc1ccb3ffec1e5633312848efc
Author: Pjotr 
Date:   Sat Jun 10 15:05:32 2017 +0200

I18n: Update translation nl (100%).

35 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/nl.po | 63 ---
 1 file changed, 32 insertions(+), 31 deletions(-)

diff --git a/po/nl.po b/po/nl.po
index deb74c2..573a262 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,34 +3,39 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Pjotr , 2014
+# Pjotr , 2014,2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-11-16 12:31+0100\n"
-"PO-Revision-Date: 2014-11-20 13:18+\n"
+"POT-Creation-Date: 2017-06-09 12:31+0200\n"
+"PO-Revision-Date: 2017-06-10 10:44+\n"
 "Last-Translator: Pjotr \n"
-"Language-Team: Dutch 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/nl/)\n"
+"Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../panel-plugin/netload.c:62
+#. Defaults
+#: ../panel-plugin/netload.c:42
+msgid "Net"
+msgstr "Net"
+
+#: ../panel-plugin/netload.c:61
 msgid "Xfce4-Netload-Plugin"
-msgstr "Xfce4-netbelasting-invoegtoepassing"
+msgstr "Xfce4-netbelasting-invoegsel"
 
-#: ../panel-plugin/netload.c:65
+#: ../panel-plugin/netload.c:64
 msgid "Unknown error."
 msgstr "Onbekende fout."
 
-#: ../panel-plugin/netload.c:66
+#: ../panel-plugin/netload.c:65
 msgid "Linux proc device '/proc/net/dev' not found."
 msgstr "Linux proc-apparaat '/proc/net/dev' niet gevonden."
 
-#: ../panel-plugin/netload.c:67
+#: ../panel-plugin/netload.c:66
 msgid "Interface was not found."
 msgstr "Netwerkkaart werd niet gevonden."
 
@@ -54,82 +59,78 @@ msgstr "<< %s >> (%s)\nGemiddelde van laatste %d 
metingen\nmet een tussenpoze va
 msgid "no IP address"
 msgstr "Geen IP-adres"
 
-#: ../panel-plugin/netload.c:585
+#: ../panel-plugin/netload.c:642
 #, c-format
 msgid ""
 "%s: Error in initializing:\n"
 "%s"
 msgstr "%s: Fout bij opstarten:\n%s"
 
-#: ../panel-plugin/netload.c:914
-msgid "Select color"
-msgstr "Kies kleur"
-
-#: ../panel-plugin/netload.c:981
+#: ../panel-plugin/netload.c:980
 msgid "Bar color (i_ncoming):"
 msgstr "Balkkleur (bi_nnenkomend):"
 
-#: ../panel-plugin/netload.c:982
+#: ../panel-plugin/netload.c:981
 msgid "Bar color (_outgoing):"
 msgstr "Balkkleur (_uitgaand):"
 
-#: ../panel-plugin/netload.c:985
+#: ../panel-plugin/netload.c:984
 msgid "Maximum (inco_ming):"
 msgstr "Maximum (binnenko_mend):"
 
-#: ../panel-plugin/netload.c:986
+#: ../panel-plugin/netload.c:985
 msgid "Maximum (o_utgoing):"
 msgstr "Maximum (uit_gaand):"
 
-#: ../panel-plugin/netload.c:991 ../panel-plugin/netload.desktop.in.in.h:1
+#: ../panel-plugin/netload.c:990 ../panel-plugin/netload.desktop.in.in.h:1
 msgid "Network Monitor"
 msgstr "Netwerkbewaker"
 
-#: ../panel-plugin/netload.c:1020
+#: ../panel-plugin/netload.c:1019
 msgid "_Text to display:"
 msgstr "_Tekst om weer te geven:"
 
-#: ../panel-plugin/netload.c:1049
+#: ../panel-plugin/netload.c:1050
 msgid "Network _device:"
 msgstr "Netwerk_apparaat:"
 
-#: ../panel-plugin/netload.c:1074
+#: ../panel-plugin/netload.c:1077
 msgid "Update _interval:"
 msgstr "Tussenpoze voor bijwerken:"
 
-#: ../panel-plugin/netload.c:1087
+#: ../panel-plugin/netload.c:1090
 msgid "s"
 msgstr "s"
 
-#: ../panel-plugin/netload.c:1101
+#: ../panel-plugin/netload.c:1104
 msgid "Show values as _bits"
 msgstr "Toon waarden als bits"
 
-#: ../panel-plugin/netload.c:1115
+#: ../panel-plugin/netload.c:1118
 msgid "_Automatic maximum"
 msgstr "_Automatisch maximum"
 
-#: ../panel-plugin/netload.c:1149
+#: ../panel-plugin/netload.c:1152
 msgid "KiB/s"
 msgstr "KiB/s"
 
-#: ../panel-plugin/netload.c:1174
+#: ../panel-plugin/netload.c:1177
 msgid "_Present data as:"
 msgstr "_Presenteer gegevens als:"
 
-#: ../panel-plugin/netload.c:1183
+#: ../panel-plugin/netload.c:1186
 msgid "Bars"
 msgstr "Balken"
 
-#: ../panel-plugin/netload.c:1184
+#: ../panel-plugin/netload.c:1187
 msgid "Values"
 msgstr "Waarden"
 
-#: ../panel-plugin/netload.c:1185
+#: ../panel-plugin/netload.c:1188
 msgid "Bars and values"
 msgstr "Balken en waarden"
 
-#: ../panel-plugin/netload.c:1235
+#: ../panel-plugin/netload.c:1230
 msgid "_Colorize values"
 msgstr "_Kleur de waarden"
 

-- 
To stop 

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

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

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

commit 0917f3b227ae5f9278b9350806269e5274ef24c3
Author: Pjotr 
Date:   Sat Jun 10 15:05:37 2017 +0200

I18n: Update translation nl (100%).

57 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 5d1af12..b84919c 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Pjotr , 2017
 # Stephan Arts , 2007
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 21:09+0200\n"
-"PO-Revision-Date: 2013-09-19 14:51+\n"
-"Last-Translator: Pjotr123 \n"
-"Language-Team: Dutch 
(http://www.transifex.com/projects/p/xfce/language/nl/)\n"
+"PO-Revision-Date: 2017-06-10 11:00+\n"
+"Last-Translator: Pjotr \n"
+"Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -149,7 +150,7 @@ msgstr "Notitienaam wijzigen"
 
 #: ../src/main-settings-dialog.c:115
 msgid "Configure the plugin"
-msgstr "Invoegtoepassing configureren"
+msgstr "Invoegsel instellen"
 
 #: ../src/main-settings-dialog.c:142
 msgid "Global settings"

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


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

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

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

commit 153315bd580477171ecbdd05fdfd860d2c85e6c4
Author: Pjotr 
Date:   Sat Jun 10 15:05:26 2017 +0200

I18n: Update translation nl (100%).

24 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 026289b..6def158 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,13 +3,13 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Pjotr , 2013,2015-2016
+# Pjotr , 2013,2015-2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-11-24 12:31+0100\n"
-"PO-Revision-Date: 2016-11-24 22:57+\n"
+"PO-Revision-Date: 2017-06-10 11:00+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -26,7 +26,7 @@ msgstr "Start"
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:252
 msgid "Mpd Client Plugin"
-msgstr "Invoegtoepassing voor MPD-toepassing"
+msgstr "Invoegsel voor MPD-toepassing"
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:258
 msgid "Properties"
@@ -66,7 +66,7 @@ msgstr "Systeemnaam of IP-adres"
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:320
 msgid "Graphical MPD Client to launch in plugin context menu"
-msgstr "Grafische MPD-toepassing om te starten in het contextmenu van de 
invoegtoepassing"
+msgstr "Grafische MPD-toepassing om te starten in het contextmenu van het 
invoegsel"
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:321
 msgid "Variables : %artist%, %album%, %file%, %track% and %title%"
@@ -105,7 +105,7 @@ msgstr "Uitvoer"
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:789
 msgid "A simple panel-plugin client for Music Player Daemon"
-msgstr "Een eenvoudige werkbalk-invoegtoepassing voor Music Player Daemon"
+msgstr "Een eenvoudig werkbalk-invoegsel voor Music Player Daemon"
 
 #: ../panel-plugin/xfce4-mpc-plugin.c:791
 msgid "Copyright (c) 2006-2016 Landry Breuil\n"
@@ -113,7 +113,7 @@ msgstr "Auteursrecht (c) 2006-2016 Landry Breuil\n"
 
 #: ../panel-plugin/xfce4-mpc-plugin.desktop.in.h:1
 msgid "MPD Client Plugin"
-msgstr "Invoegtoepassing voor MPD"
+msgstr "Invoegsel voor MPD"
 
 #: ../panel-plugin/xfce4-mpc-plugin.desktop.in.h:2
 msgid "A client for MPD, The Music Player Daemon"

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


[Xfce4-commits] [panel-plugins/xfce4-mpc-plugin] branch master updated (05f3807 -> 153315b)

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

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

  from  05f3807   I18n: Update translation th (100%).
   new  153315b   I18n: Update translation nl (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/nl.po | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-modemlights-plugin] branch master updated (daacd13 -> d17a0a7)

2017-06-10 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-modemlights-plugin.

  from  daacd13   I18n: Update translation ca (100%).
   new  d17a0a7   I18n: Update translation nl (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/nl.po | 34 ++
 1 file changed, 14 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] [panel-plugins/xfce4-clipman-plugin] branch master updated (0e391e9 -> 7141b11)

2017-06-10 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  0e391e9   I18n: Update translation id (100%).
   new  7141b11   I18n: Update translation nl (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/nl.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

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

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

commit 632ed264de567ea54e0958fa7ff4b55264c70e87
Author: Pjotr 
Date:   Sat Jun 10 15:04:27 2017 +0200

I18n: Update translation nl (100%).

84 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index cef5c8c..858dca8 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1,27 +1,26 @@
-# Dutch translation of the xfce4-cddrive-plugin package.
-# Copyright (C) The Xfce development team.
-# This file is distributed under the same license as the 
-# xfce4-cddrive-plugin package.
-# Pjotr  , 2011 - 2013.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
 # 
+# Translators:
+# Pjotr , 2017
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-cddrive-plugin\n"
+"Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2007-06-29 12:12+0200\n"
-"PO-Revision-Date: 2011-06-15 17:49+0200\n"
-"Last-Translator: Pjotr pjotrverta...@gmail.com\n"
-"Language-Team: Dutch (Flemish)\n"
+"PO-Revision-Date: 2017-06-10 10:48+\n"
+"Last-Translator: Pjotr \n"
+"Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\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"
-"Language: nl (Dutch)\n"
+"Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: ../panel-plugin/cddrive.c:185
 msgid "Drive status is unavailable... is HAL installed and hald running ?"
-msgstr ""
-"Stationstatus is niet beschikbaar ... is HAL geïnstalleerd en draait hald?"
+msgstr "Stationstatus is niet beschikbaar ... is HAL geïnstalleerd en draait 
hald?"
 
 #: ../panel-plugin/cddrive.c:194
 msgid "Close tray"
@@ -103,7 +102,8 @@ msgstr "Open %s"
 msgid "No disc in %s"
 msgstr "Geen schijf in %s"
 
-#. translation note: "Eject blank  from " (e.g. "Eject 
blank cd-rw from cdrom1")
+#. translation note: "Eject blank  from " (e.g. "Eject
+#. blank cd-rw from cdrom1")
 #: ../panel-plugin/cddrive.c:293
 #, c-format
 msgid "Eject blank %s from %s"
@@ -121,19 +121,22 @@ msgstr "Werp '%s' van %s uit"
 msgid "Eject audio %s from %s"
 msgstr "Werp audio %s van %s uit"
 
-#. translation note: "Eject  from " (e.g. "Eject dvd 
from my-dvd-drive")
+#. translation note: "Eject  from " (e.g. "Eject dvd
+#. from my-dvd-drive")
 #: ../panel-plugin/cddrive.c:304
 #, c-format
 msgid "Eject %s from %s"
 msgstr "Werp %s van %s uit"
 
-#. translation note: "Blank  in " (e.g. "Blank cd-rw in 
cdrom1")
+#. translation note: "Blank  in " (e.g. "Blank cd-rw in
+#. cdrom1")
 #: ../panel-plugin/cddrive.c:311
 #, c-format
 msgid "Blank %s in %s"
 msgstr "Lege %s in %s"
 
-#. translation note: "\"\" in " (e.g. ""Backup #36" in 
cdrom1")
+#. translation note: "\"\" in " (e.g. ""Backup #36" in
+#. cdrom1")
 #: ../panel-plugin/cddrive.c:315
 #, c-format
 msgid "\"%s\" in %s"
@@ -162,7 +165,7 @@ msgstr "Koppel schijf"
 #: ../panel-plugin/cddrive.c:431
 #, c-format
 msgid "Unmount \"%s\""
-msgstr "Ontkoppel \"%s\""
+msgstr "Ontkoppel '%s'"
 
 #: ../panel-plugin/cddrive.c:433
 #, c-format
@@ -212,8 +215,7 @@ msgstr "Aankoppelen"
 
 #: ../panel-plugin/cddrive-dialogs.c:356
 msgid "Enter a command to use if HAL system fails to mount the disc."
-msgstr ""
-"Voer een opdracht in om te gebruiken als HAL-systeem de schijf niet kan 
aankoppelen."
+msgstr "Voer een opdracht in om te gebruiken als HAL-systeem de schijf niet 
kan aankoppelen."
 
 #: ../panel-plugin/cddrive-dialogs.c:363
 msgid "Unmounting"
@@ -221,9 +223,7 @@ msgstr "Aan het ontkoppelen"
 
 #: ../panel-plugin/cddrive-dialogs.c:364
 msgid "Enter a command to use if the HAL system fails to unmount the disc."
-msgstr ""
-"Voer een opdracht in om te gebruiken als het HAL-systeem de schijf niet kan "
-"ontkoppelen."
+msgstr "Voer een opdracht in om te gebruiken als het HAL-systeem de schijf 
niet kan ontkoppelen."
 
 #: ../panel-plugin/cddrive-dialogs.c:382
 #, c-format
@@ -231,10 +231,7 @@ msgid ""
 "You can use \"%d\", \"%m\" and \"%u\" character sequences as arguments for "
 "your command. These will be replaced respectively with the device path, the "
 "disc mount point and the disc UDI."
-msgstr ""
-"U kunt de tekenvolgordes '%d','%m' en '%u' gebruiken als argumenten voor uw "
-"opdracht. Deze zullen respectievelijk worden vervangen door het apparaatpad, "
-"het schijfkoppelpunt 

[Xfce4-commits] [panel-plugins/xfce4-cddrive-plugin] branch master updated (5d1734f -> 632ed26)

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

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

  from  5d1734f   I18n: Update translation lt (100%).
   new  632ed26   I18n: Update translation nl (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/nl.po | 63 ---
 1 file changed, 28 insertions(+), 35 deletions(-)

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


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

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

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

commit d6a225c0e63ccafc1d700de24aa9fa73c7c5b869
Author: Pjotr 
Date:   Sat Jun 10 15:05:20 2017 +0200

I18n: Update translation nl (100%).

56 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 53dcc44..2268d8e 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,13 +3,13 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Pjotr , 2014,2016
+# Pjotr , 2014,2016-2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-06-08 00:31+0200\n"
-"PO-Revision-Date: 2016-06-08 09:09+\n"
+"PO-Revision-Date: 2017-06-10 10:59+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -87,7 +87,7 @@ msgstr "niet aangekoppeld\n"
 #: ../panel-plugin/devices.c:379 ../panel-plugin/devices.c:390
 #: ../panel-plugin/devices.c:400 ../panel-plugin/devices.c:487
 msgid "Xfce 4 Mount Plugin"
-msgstr "Xfce4 invoegtoepassing voor aankoppelen"
+msgstr "Xfce4-invoegsel voor aankoppelen"
 
 #: ../panel-plugin/devices.c:295
 msgid "Failed to mount device:"
@@ -113,7 +113,7 @@ msgstr "Er is een fout opgetreden. Het apparaat kan beter 
niet worden verwijderd
 msgid ""
 "Your /etc/fstab could not be read. This will severely degrade the plugin's "
 "abilities."
-msgstr "Uw /etc/fstab kon niet worden gelezen. Dit zal de bruikbaarheid van de 
invoegtoepassing ernstig verminderen."
+msgstr "Uw /etc/fstab kon niet worden gelezen. Dit zal de bruikbaarheid van 
het invoegsel ernstig verminderen."
 
 #: ../panel-plugin/mount-plugin.c:177
 msgid " -> "
@@ -134,7 +134,7 @@ msgstr "apparaten"
 
 #: ../panel-plugin/mount-plugin.c:707
 msgid "Mount Plugin"
-msgstr "Aankoppel-invoegtoepassing"
+msgstr "Aankoppel-invoegsel"
 
 #: ../panel-plugin/mount-plugin.c:712
 msgid "Properties"

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

2017-06-10 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-modemlights-plugin.

commit d17a0a7dc4f287bc1f3a0b2ceb0a37272623f8d0
Author: Pjotr 
Date:   Sat Jun 10 15:05:15 2017 +0200

I18n: Update translation nl (100%).

16 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 21db171..9a391b4 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1,21 +1,22 @@
-# Dutch translation of the xfce4-modemlights-plugin package.
-# Copyright (C) the author of the xfce4-modemlights-plugin package.
-# This file is distributed under the same license as the 
xfce4-modemlights-plugin package.
-# Jasper Huijsmans , 2005.
-# Pjotr  , 2011 - 2013.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
 # 
+# Translators:
+# Jasper Huijsmans , 2005
+# Pjotr , 2017
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-modemlights-plugin\n"
+"Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2007-11-08 09:45+0100\n"
-"PO-Revision-Date: 2011-09-09 09:50+0200\n"
-"Last-Translator: Pjotr pjotrverta...@gmail.com\n"
-"Language-Team: Dutch (Flemish)\n"
+"PO-Revision-Date: 2017-06-10 10:57+\n"
+"Last-Translator: Pjotr \n"
+"Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: nl (Dutch)\n"
+"Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: ../panel-plugin/panel-plugin.c:183 ../panel-plugin/panel-plugin.c:330
@@ -41,25 +42,18 @@ msgid ""
 "To determine the device name, you can execute the next command before and 
after establishing the connection:\n"
 " cat /proc/net/dev \n"
 "This will show the active devices/interfaces in the first column. The new 
device after establishing the connection is the device/interface name required."
-msgstr "Dit is de apparaatnaam (naam van netwerkkaart) voor de gelegde 
verbinding, zoals:\n"
-" ppp0 \n"
-"Om de naam van het apparaat te bepalen, kunt u de volgende opdracht uitvoeren 
vóór en na vaststelling van de verbinding:\n"
-" cat /proc/net/ dev \n"
-"Dit toont de actieve apparaten/netwerkkaarten in de eerste kolom. Het nieuwe 
apparaat na leggen van de verbinding is de vereiste apparaat- of\n" 
"netwerkkaartnaam."
+msgstr "Dit is de apparaatnaam (naam van netwerkkaart) voor de gelegde 
verbinding, zoals:\n ppp0 \nOm de naam van het apparaat te bepalen, kunt 
u de volgende opdracht uitvoeren vóór en na vaststelling van de verbinding:\n 
cat /proc/net/dev \nDit toont de actieve apparaten/netwerkkaarten in de 
eerste kolom. Het nieuwe apparaat na leggen van de verbinding is de vereiste 
apparaat- of netwerkkaartnaam."
 
 #: ../panel-plugin/panel-plugin.c:592
 msgid "Lockfile:"
-msgstr "Lockbestand:"
+msgstr "Vergrendelingsbestand:"
 
 #: ../panel-plugin/panel-plugin.c:604
 msgid ""
 "This is the name of the lock file created by the connection command, such 
as:\n"
 " /var/lock/LCK..ttyS1 \n"
 "You can frequently find this name by checking the content of /var/lock before 
and after establishing the connection. The absence of that file indicates to 
the plugin that no connection has been established and that no dialing is in 
progress."
-msgstr ""
-"Dit is de naam van het lockbestand gemaakt door de verbindingsopdracht, 
zoals:\n"
-" / var/lock/LCK..ttyS1 \n"
-"U kunt deze naam vaak vinden door het controleren van de inhoud van /var/lock 
vóór en na het leggen van de verbinding. Het ontbreken van dat bestand meldt 
aan de invoegtoepassing, dat er geen verbinding is gemaakt en dat er geen 
inbellen aan de gang is."
+msgstr "Dit is de naam van het vergrendelingsbestand gemaakt door de 
verbindingsopdracht, zoals:\n /var/lock/LCK..ttyS1 \nU kunt deze naam 
vaak vinden door het controleren van de inhoud van /var/lock vóór en na het 
leggen van de verbinding. Het ontbreken van dat bestand meldt aan het 
invoegsel, dat er geen verbinding is gemaakt en dat er geen inbellen aan de 
gang is."
 
 #: ../panel-plugin/panel-plugin.c:641
 msgid "Select icon"

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


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

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

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

commit 4f38248360a046337ce590458c085de1ab6f29ed
Author: Pjotr 
Date:   Sat Jun 10 15:05:08 2017 +0200

I18n: Update translation nl (100%).

112 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index a432804..b09b2f4 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,13 +3,13 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Pjotr , 2013,2015
+# Pjotr , 2013,2015,2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-07-05 18:31+0200\n"
-"PO-Revision-Date: 2015-10-07 14:02+\n"
+"PO-Revision-Date: 2017-06-10 10:56+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -84,7 +84,7 @@ msgstr "GMail postbus-op-afstand"
 msgid ""
 "The GMail plugin can connect to Google's mail service and securely retrieve "
 "the number of new messages."
-msgstr "De GMail-invoegtoepassing kan verbinden met Googles e-maildienst en 
veilig het aantal van de nieuwe berichten ophalen."
+msgstr "Het GMail-invoegsel kan verbinden met Googles e-maildienst en veilig 
het aantal van de nieuwe berichten ophalen."
 
 #: ../libmailwatch-core/mailwatch-mailbox-imap.c:286
 msgid ""
@@ -197,7 +197,7 @@ msgstr "IMAP Postbus-Op-Afstand"
 msgid ""
 "The IMAP plugin can connect to a remote mail server that supports the IMAP "
 "protocol, optionally using SSL for link protection."
-msgstr "De IMAP-invoegtoepassing kan verbinden met een mailserver-op-afstand, 
die het IMAP-protocol ondersteunt, desgewenst met gebruik van SSL voor 
koppelingsbescherming."
+msgstr "Het IMAP-invoegsel kan verbinden met een mailserver-op-afstand, die 
het IMAP-protocol ondersteunt, desgewenst met gebruik van SSL voor 
koppelingsbescherming."
 
 #: ../libmailwatch-core/mailwatch-mailbox-maildir.c:93
 #: ../libmailwatch-core/mailwatch-mailbox-mbox.c:95
@@ -234,7 +234,7 @@ msgstr "Plaatselijke Maildir-spoel"
 msgid ""
 "The Maildir plugin can watch a local maildir-style mail spool for new "
 "messages."
-msgstr "De Maildir-invoegtoepassing kan een plaatselijke postspoel 
(maildir-stijl) bewaken op nieuwe berichten."
+msgstr "Het Maildir-invoegsel kan een plaatselijke postspoel (maildir-stijl) 
bewaken inzake nieuwe berichten."
 
 #: ../libmailwatch-core/mailwatch-mailbox-mbox.c:371
 msgid "Mbox _Filename:"
@@ -250,7 +250,7 @@ msgstr "Plaatselijke Mbox-spoel"
 
 #: ../libmailwatch-core/mailwatch-mailbox-mbox.c:477
 msgid "Mbox plugin watches a local mbox-type mail spool for new messages."
-msgstr "Mbox-invoegtoepassing bewaakt een plaatselijke postspoel (mbox-type) 
op nieuwe berichten."
+msgstr "Mbox-invoegsel bewaakt een plaatselijke postspoel (mbox-type) inzake 
nieuwe berichten."
 
 #: ../libmailwatch-core/mailwatch-mailbox-mh.c:241
 #, c-format
@@ -261,7 +261,7 @@ msgstr "Misvormde regel %s in %s genegeerd."
 msgid ""
 "The configuration of this plugin is read from\n"
 "the default mh maildir profile file ~/.mh_profile"
-msgstr "De configuratie van deze invoegtoepassing wordt gelezen\nvanuit het 
standaard-profielbestand voor mh maildir,\nnamelijk ~/.mh_profile"
+msgstr "De configuratie van dit invoegsel wordt gelezen\nvanuit het 
standaard-profielbestand voor mh maildir,\nnamelijk ~/.mh_profile"
 
 #: ../libmailwatch-core/mailwatch-mailbox-mh.c:683
 msgid "Local MH mail folder"
@@ -269,7 +269,7 @@ msgstr "Plaatselijke MH-postmap"
 
 #: ../libmailwatch-core/mailwatch-mailbox-mh.c:684
 msgid "MH plugin watches local MH folders for new mail"
-msgstr "MH-invoegtoepassing bewaakt plaatselijke MH-mappen op nieuwe post"
+msgstr "MH-invoegsel bewaakt plaatselijke MH-mappen inzake nieuwe post"
 
 #: ../libmailwatch-core/mailwatch-mailbox-pop3.c:746
 msgid "Advanced POP3 Options"
@@ -295,7 +295,7 @@ msgstr "POP3 postbus-op-afstand"
 msgid ""
 "The POP3 plugin can connect to a remote mail server that supports the POP3 "
 "protocol, optionally using SSL for link protection."
-msgstr "De POP3-invoegtoepassing kan verbinden met een mailserver-op-afstand 
die het POP3-protocol ondersteunt, desgewenst met gebruik van SSL voor 
koppelingsbescherming."
+msgstr "Het POP3-invoegsel kan verbinden met een mailserver-op-afstand die het 
POP3-protocol ondersteunt, desgewenst met gebruik van SSL voor 
koppelingsbescherming."
 
 #: ../libmailwatch-core/mailwatch-net-conn.c:222
 #: 

[Xfce4-commits] [panel-plugins/xfce4-mailwatch-plugin] branch master updated (af3afa4 -> 4f38248)

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

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

  from  af3afa4   I18n: Update translation lt (100%).
   new  4f38248   I18n: Update translation nl (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/nl.po | 22 +++---
 1 file changed, 11 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-embed-plugin] 01/01: I18n: Update translation nl (100%).

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

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

commit 49df15f0200a88824c857490261cb9b53dd284a8
Author: Pjotr 
Date:   Sat Jun 10 15:04:52 2017 +0200

I18n: Update translation nl (100%).

33 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 2db644e..c9955b9 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1,21 +1,22 @@
-# Dutch translation of the xfce4-embed-plugin package.
-# Copyright (C) The Xfce development team.
-# This file is distributed under the same license as the 
-# xfce4-embed-plugin package.
-# Pjotr  , 2013.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
 # 
+# Translators:
+# Pjotr , 2017
+# Pjotr , 2013
 msgid ""
 msgstr ""
-"Project-Id-Version: xfswitch-plugin\n"
+"Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-04-27 13:26+0100\n"
-"PO-Revision-Date: 2013-04-27 15:18 +0100\n"
-"Last-Translator: Pjotr pjotrverta...@gmail.com\n"
-"Language-Team: Dutch (Flemish)\n"
+"POT-Creation-Date: 2013-07-03 20:58+0200\n"
+"PO-Revision-Date: 2017-06-10 10:52+\n"
+"Last-Translator: Pjotr \n"
+"Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: nl (Dutch)\n"
+"Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: ../panel-plugin/embed.c:48
@@ -57,7 +58,7 @@ msgstr "Invoer is ongeldig"
 
 #: ../panel-plugin/embed-dialogs.c:329 ../panel-plugin/embed.desktop.in.h:1
 msgid "Embed Plugin"
-msgstr "Inbedden-invoegtoepassing"
+msgstr "Inbedden-invoegsel"
 
 #: ../panel-plugin/embed-dialogs.c:338
 msgid "Application Launching"
@@ -70,21 +71,14 @@ msgid ""
 "optionally be launched. The command can either result in a window\n"
 "that matches the below criteria, or it can use the socket ID passed\n"
 "to it (%s) to embed itself automatically."
-msgstr ""
-"Indien een venster niet wordt gevonden (of indien er geen criteria\n"
-"zijn), kan er een opdracht naar keuze worden gestart. De opdracht\n"
-"kan of resulteren in een venster dat overeenkomt aan de onderstaande\n"
-"criteria, of het kan de socket ID gebruiken die het overhandigd\n"
-"heeft gekregen (%s) om zichzelf automatisch in te bedden."
+msgstr "Indien een venster niet wordt gevonden (of indien er geen 
criteria\nzijn), kan er een opdracht naar keuze worden gestart. De 
opdracht\nkan of resulteren in een venster dat overeenkomt aan de 
onderstaande\ncriteria, of het kan de socket ID gebruiken die het 
overhandigd\nheeft gekregen (%s) om zichzelf automatisch in te bedden."
 
 #: ../panel-plugin/embed-dialogs.c:348
 #, c-format
 msgid ""
 "Leave blank to not launch anything\n"
 "%s expands to the socket ID"
-msgstr ""
-"Laat leeg om niets te starten\n"
-"%s expandeert naar de socket ID"
+msgstr "Laat leeg om niets te starten\n%s expandeert naar de socket ID"
 
 #: ../panel-plugin/embed-dialogs.c:351
 msgid "L_aunch command"
@@ -102,10 +96,7 @@ msgstr "Selectiecriteria"
 msgid ""
 "The window to embed must match all of the non-blank criteria.\n"
 "Leave everything blank to rely on a launch command with socket ID."
-msgstr ""
-"Het in te bedden venster moet overeenkomen met alle niet-lege\n"
-"criteria. Laat alles leeg om te vertrouwen op een startopdracht\n"
-"met socket ID."
+msgstr "Het in te bedden venster moet overeenkomen met alle 
niet-lege\ncriteria. Laat alles leeg om te vertrouwen op een startopdracht\nmet 
socket ID."
 
 #: ../panel-plugin/embed-dialogs.c:366
 msgid "_Process name"
@@ -115,10 +106,7 @@ msgstr "_Procesnaam"
 msgid ""
 "Match the window's application's process name\n"
 "Leave blank if it is not a criterion"
-msgstr ""
-"Overeenkomstig de procesnaam van de toepassing\n"
-"in het venster. Laat leeg indien het geen\n"
-"criterium is"
+msgstr "Overeenkomstig de procesnaam van de toepassing\nin het venster. Laat 
leeg indien het geen criterium is"
 
 #: ../panel-plugin/embed-dialogs.c:373
 msgid "_Window class"
@@ -128,9 +116,7 @@ msgstr "Vensterklasse"
 msgid ""
 "Match the window's class\n"
 "Leave blank if it is not a criterion"
-msgstr ""
-"Overeenkomstig de vensterklasse\n"
-"Laat leeg indien het geen criterium is"
+msgstr "Overeenkomstig de vensterklasse\nLaat leeg indien het geen criterium 
is"
 
 #: ../panel-plugin/embed-dialogs.c:380
 

[Xfce4-commits] [panel-plugins/xfce4-datetime-plugin] branch master updated (ee5f2b0 -> e20b6c4)

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

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

  from  ee5f2b0   I18n: Update translation ca (100%).
   new  e20b6c4   I18n: Update translation nl (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/nl.po | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-indicator-plugin] branch master updated (2c74399 -> 5999578)

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

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

  from  2c74399   Fix IT_PROG_INTLTOOL warning
   new  5999578   I18n: Update translation nl (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/nl.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

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

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

commit 59995784a2982e4449ae6b304d82a3758680e680
Author: Pjotr 
Date:   Sat Jun 10 15:05:01 2017 +0200

I18n: Update translation nl (100%).

38 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index b68b3ab..5974429 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,13 +3,13 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Pjotr , 2013,2016
+# Pjotr , 2013,2016-2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-11-29 00:31+0100\n"
-"PO-Revision-Date: 2016-11-29 11:17+\n"
+"PO-Revision-Date: 2017-06-10 10:54+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -20,7 +20,7 @@ msgstr ""
 
 #: ../panel-plugin/indicator.desktop.in.in.h:1
 msgid "Indicator Plugin"
-msgstr "Aanwijzer-invoegtoepassing"
+msgstr "Aanwijzer-invoegsel"
 
 #: ../panel-plugin/indicator.desktop.in.in.h:2 ../panel-plugin/indicator.c:181
 msgid ""

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


[Xfce4-commits] [panel-plugins/xfce4-embed-plugin] branch master updated (16b938f -> 49df15f)

2017-06-10 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-embed-plugin.

  from  16b938f   I18n: Update translation ca (100%).
   new  49df15f   I18n: Update translation nl (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/nl.po | 67 +---
 1 file changed, 22 insertions(+), 45 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-datetime-plugin] 01/01: I18n: Update translation nl (100%).

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

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

commit e20b6c4cbe90fe9775a8b2d1ec060a93abb3ed04
Author: Pjotr 
Date:   Sat Jun 10 15:04:46 2017 +0200

I18n: Update translation nl (100%).

19 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 4149b9a..da4952d 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,13 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Pjotr , 2017
 # Remco den Breeje , 2006
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 20:55+0200\n"
-"PO-Revision-Date: 2015-10-07 14:02+\n"
+"PO-Revision-Date: 2017-06-10 10:51+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -101,4 +102,4 @@ msgstr "DatumTijd"
 
 #: ../panel-plugin/datetime.desktop.in.h:2
 msgid "Date and Time plugin with a simple calendar"
-msgstr "Datum en tijd-invoegtoepassing met een simpele kalender"
+msgstr "Datum en tijd-invoegsel met een eenvoudige kalender"

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

2017-06-10 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 7141b1189467c6bee6d319d1803bf76b3edd7b86
Author: Pjotr 
Date:   Sat Jun 10 15:04:33 2017 +0200

I18n: Update translation nl (100%).

72 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 47b7967..0bb885c 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,13 +3,13 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Pjotr , 2014,2016
+# Pjotr , 2014,2016-2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-09-15 18:31+0200\n"
-"PO-Revision-Date: 2016-09-16 10:16+\n"
+"PO-Revision-Date: 2017-06-10 10:49+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -24,7 +24,7 @@ msgid ""
 "application running in the notification area. It keeps a history of text and"
 " images of content copied to the clipboard. It also has a feature to execute"
 " actions on specific text selection by matching them against regexes."
-msgstr "Klembordbeheerder als invoegtoepassing voor de werkbalk van Xfce en 
als een op zichzelf staande toepassing die draait in het meldvak. Hij houdt een 
geschiedenis bij van tekst en afbeeldingen die zijn gekopieerd naar het 
klembord. Hij heeft ook een functie waarmee acties kunnen worden uitgevoerd op 
een bepaalde tekstselectie, door deze af te zetten tegen regexes."
+msgstr "Klembordbeheerder als invoegsel voor de werkbalk van Xfce en als een 
op zichzelf staande toepassing die draait in het meldvak. Hij houdt een 
geschiedenis bij van tekst en afbeeldingen die zijn gekopieerd naar het 
klembord. Hij heeft ook een functie waarmee acties kunnen worden uitgevoerd op 
een bepaalde tekstselectie, door deze af te zetten tegen regexes."
 
 #: ../panel-plugin/xfce4-clipman.desktop.in.h:1
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.h:1

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


[Xfce4-commits] [panel-plugins/xfce4-cpufreq-plugin] branch master updated (9b297c9 -> dbfe7b4)

2017-06-10 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-cpufreq-plugin.

  from  9b297c9   I18n: Update translation sk (100%).
   new  dbfe7b4   I18n: Update translation nl (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/nl.po | 64 
 1 file changed, 36 insertions(+), 28 deletions(-)

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


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

2017-06-10 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-cpufreq-plugin.

commit dbfe7b4bde9d23cd1626bf3f0be2f5ad22b868fd
Author: Pjotr 
Date:   Sat Jun 10 15:04:39 2017 +0200

I18n: Update translation nl (100%).

41 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index bf41533..539fb2a 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-05-07 00:31+0200\n"
-"PO-Revision-Date: 2017-05-07 10:11+\n"
+"POT-Creation-Date: 2017-06-09 06:31+0200\n"
+"PO-Revision-Date: 2017-06-10 10:46+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -34,64 +34,72 @@ msgstr "Rechtsklik om terug te zetten op het 
standaardlettertype."
 msgid "Select font"
 msgstr "Kies lettertype"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:187
+#: ../panel-plugin/xfce4-cpufreq-configure.c:199
 msgid "Configure CPU Frequency Monitor"
 msgstr "Monitor voor processorfrequentie instellen"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:192
+#: ../panel-plugin/xfce4-cpufreq-configure.c:204
 msgid "Configure the CPU frequency plugin"
-msgstr "Invoegtoepassing voor processorfrequentie configureren"
+msgstr "Invoegsel voor processorfrequentie instellen"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:210
+#: ../panel-plugin/xfce4-cpufreq-configure.c:222
 msgid "Monitor"
 msgstr "Bewaken"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:233
+#: ../panel-plugin/xfce4-cpufreq-configure.c:245
 msgid "_Update interval:"
 msgstr "Tussenpoze voor bijwerken:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:251
+#: ../panel-plugin/xfce4-cpufreq-configure.c:263
 msgid "Panel"
 msgstr "Werkbalk"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:275
+#: ../panel-plugin/xfce4-cpufreq-configure.c:287
 msgid "_Font:"
 msgstr "Lettertype:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:294
+#: ../panel-plugin/xfce4-cpufreq-configure.c:306
+msgid "_Font color:"
+msgstr "_Lettertypekleur:"
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:316
+msgid "Select font color"
+msgstr "Kies kleur van lettertype"
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:326
 msgid "_Display CPU:"
 msgstr "Toon CPU:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:310
+#: ../panel-plugin/xfce4-cpufreq-configure.c:342
 msgid "min"
 msgstr "min"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:311
+#: ../panel-plugin/xfce4-cpufreq-configure.c:343
 msgid "avg"
 msgstr "gem"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:312
+#: ../panel-plugin/xfce4-cpufreq-configure.c:344
 msgid "max"
 msgstr "max"
 
 #. check buttons for display widgets in panel
-#: ../panel-plugin/xfce4-cpufreq-configure.c:318
+#: ../panel-plugin/xfce4-cpufreq-configure.c:350
 msgid "_Keep compact"
 msgstr "Houd compact"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:323
+#: ../panel-plugin/xfce4-cpufreq-configure.c:355
 msgid "Show text in a single _line"
 msgstr "Toon tekst in een enkele regel"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:328
+#: ../panel-plugin/xfce4-cpufreq-configure.c:360
 msgid "Show CPU _icon"
 msgstr "Toon CPU-pictogram"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:335
+#: ../panel-plugin/xfce4-cpufreq-configure.c:367
 msgid "Show CPU fre_quency"
 msgstr "Toon CPU-frequentie"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:340
+#: ../panel-plugin/xfce4-cpufreq-configure.c:372
 msgid "Show CPU _governor"
 msgstr "Toon CPU-beheerder"
 
@@ -142,40 +150,40 @@ msgstr "huidige gem"
 msgid "current max"
 msgstr "huidige max"
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:367
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:383
 msgid "No CPU information available."
 msgstr "Geen CPU-informatie beschikbaar"
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:373
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:389
 #, c-format
 msgid "%d cpu available"
 msgid_plural "%d cpus available"
 msgstr[0] "%d processor beschikbaar"
 msgstr[1] "%d processoren beschikbaar"
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:380
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:396
 msgid "Frequency: "
 msgstr "Frequentie:"
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:388
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:404
 msgid "Governor: "
 msgstr "Beheerder:"
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:645
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:669
 #: ../panel-plugin/cpufreq.desktop.in.h:2
 msgid "Show CPU frequencies and governor"
 msgstr 

[Xfce4-commits] [xfce/xfce4-power-manager] 01/01: I18n: Update translation nl (100%).

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

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

commit a8f3ddb30dbf98f9839467fc48d8390b3782a4a2
Author: Pjotr 
Date:   Sat Jun 10 15:03:48 2017 +0200

I18n: Update translation nl (100%).

202 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 719a5c4..cf898fd 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-power-manager\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-02-26 18:30+0100\n"
-"PO-Revision-Date: 2017-03-04 09:49+\n"
+"PO-Revision-Date: 2017-06-10 10:42+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce4-power-manager/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -927,7 +927,7 @@ msgstr "Instellingen van energiebeheerder..."
 
 #: 
../panel-plugins/power-manager-plugin/xfce/power-manager-plugin.desktop.in.in.h:1
 msgid "Power Manager Plugin"
-msgstr "Invoegtoepassing voor energiebeheerder"
+msgstr "Energiebeheerder-invoegsel"
 
 #: 
../panel-plugins/power-manager-plugin/xfce/power-manager-plugin.desktop.in.in.h:2
 msgid ""
@@ -957,7 +957,7 @@ msgid ""
 "Xfce power manager also provides a plugin for the Xfce and LXDE panels to "
 "control LCD brightness levels and to monitor battery and device charge "
 "levels."
-msgstr "Xfce-energiebeheerder levert ook een invoegtoepassing voor de 
werkbalken van Xfce en LXDE, om de helderheid van LCD-schermen in te stellen en 
om de ladingsniveaus te bewaken van accu's en apparaten."
+msgstr "Xfce-energiebeheerder levert ook een invoegsel voor de werkbalken van 
Xfce en LXDE, om de helderheid van LCD-schermen in te stellen en om de 
ladingsniveaus te bewaken van accu's en apparaten."
 
 #: ../data/appdata/xfce4-power-manager.appdata.xml.in.h:4
 msgid ""
@@ -965,7 +965,7 @@ msgid ""
 " icon-themes by reducing the device icons and using standard names for them."
 " It also features updated translations. The panel plugin has been renamed to"
 " Power Manager Plugin."
-msgstr "Deze ontwikkelingseditie herstelt voornamelijk fouten en introduceert 
betere ondersteuning voor pictogramthema's, door het aantal 
apparaatpictogrammen te verminderen en er standaardnamen voor te gebruiken. Hij 
bevat ook bijgewerkte vertalingen. De werkbalk-invoegtoepassing is hernoemd 
naar Energiebeheerder-invoegtoepassing."
+msgstr "Deze ontwikkelingseditie herstelt voornamelijk fouten en introduceert 
betere ondersteuning voor pictogramthema's, door het aantal 
apparaatpictogrammen te verminderen en er standaardnamen voor te gebruiken. Hij 
bevat ook bijgewerkte vertalingen. Het werkbalk-invoegsel is hernoemd naar 
Energiebeheerder-invoegsel."
 
 #: ../data/appdata/xfce4-power-manager.appdata.xml.in.h:5
 msgid ""
@@ -974,7 +974,7 @@ msgid ""
 "dropped) brightness panel-plugin. A new popup notification was added to "
 "account for keyboard brightness changes and the Power Manager now also "
 "controls the X11 blank times."
-msgstr "Deze ontwikkelingseditie herstelt fouten met pauzestand en slaapstand. 
Hij verbetert tevens de werkbalk-invoegtoepassing, door er de functionaliteit 
aan toe te voegen van de (nu geschrapte) werkbalk-invoegtoepassing voor 
helderheid. Er is een nieuwe opduikmelding toegevoegd voor 
helderheidveranderingen van het toetsenbord en de Energiebeheerder beheerst nu 
ook de tijdstippen voor 'op zwart gaan' van X11."
+msgstr "Deze ontwikkelingseditie herstelt fouten met pauzestand en slaapstand. 
Hij verbetert tevens het werkbalk-invoegsel, door er de functionaliteit aan toe 
te voegen van het (nu geschrapte) werkbalk-invoegsel voor helderheid. Er is een 
nieuwe opduikmelding toegevoegd voor helderheidveranderingen van het 
toetsenbord en de Energiebeheerder beheerst nu ook de tijdstippen voor 'op 
zwart gaan' van X11."
 
 #: ../data/appdata/xfce4-power-manager.appdata.xml.in.h:6
 msgid ""
@@ -984,7 +984,7 @@ msgid ""
 "battery and device charge levels replaces the trayicon. The settings dialog "
 "has been completely restructured for better oversight and many open bugs "
 "have been fixed and translations have been updated."
-msgstr "Deze ontwikkelversie introduceert vele nieuwe functies, waaronder 
pauzestand/slaapstand zonder systemd en UPower>=0.99. Hij biedt de mogelijkheid 
voor individueel beheersen van systemd-inhibition. Een nieuwe 
werkbalkinvoegtoepassing om de ladingsniveaus van accu en apparaat te bewaken 
vervangt het systeemvakpictogram. De instellingendialoog is volledig 
geherstructureerd voor beter overzicht, vele openstaande fouten zijn hersteld 
en vertalingen zijn bijgewerkt."
+msgstr "Deze 

[Xfce4-commits] [apps/xfce4-terminal] branch master updated (6b98809 -> a57200f)

2017-06-10 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  6b98809   I18n: Update translation id (100%).
   new  a57200f   I18n: Update translation fr (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/fr.po | 442 ++-
 1 file changed, 242 insertions(+), 200 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 fr (100%).

2017-06-10 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 a57200f254eaf276ac30dc4faffc5945cbacf664
Author: Yannick Le Guen 
Date:   Sat Jun 10 15:04:18 2017 +0200

I18n: Update translation fr (100%).

341 translated messages.

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

diff --git a/po/fr.po b/po/fr.po
index 654f31c..e590a51 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -5,7 +5,7 @@
 # Translators:
 # Arnaud LE CAM , 2015
 # Benedikt Meurer , 2004
-# Charles Monzat , 2016
+# Charles Monzat , 2016-2017
 # Guillaume Laville , 2013
 # jc1 , 2013
 # Jérôme Guelfucci , 2009
@@ -18,8 +18,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-01-25 12:30+0100\n"
-"PO-Revision-Date: 2017-02-03 15:40+\n"
+"POT-Creation-Date: 2017-06-08 00:31+0200\n"
+"PO-Revision-Date: 2017-06-10 11:53+\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"
@@ -74,13 +74,13 @@ msgstr "Options générales"
 
 #. parameter of --default-display
 #. parameter of --display
-#: ../terminal/main.c:111 ../terminal/main.c:138
+#: ../terminal/main.c:111 ../terminal/main.c:143
 msgid "display"
 msgstr "affichage"
 
 #. parameter of --default-working-directory
 #. parameter of --working-directory
-#: ../terminal/main.c:113 ../terminal/main.c:128
+#: ../terminal/main.c:113 ../terminal/main.c:133
 msgid "directory"
 msgstr "répertoire"
 
@@ -88,94 +88,105 @@ msgstr "répertoire"
 msgid "Window or Tab Separators"
 msgstr "Séparateurs de fenêtres ou d'onglets"
 
-#: ../terminal/main.c:122
+#: ../terminal/main.c:123
 msgid "Tab Options"
 msgstr "Options des onglets"
 
 #. parameter of --command
-#: ../terminal/main.c:124
+#: ../terminal/main.c:125
 msgid "command"
 msgstr "commande"
 
 #. parameter of --title
-#: ../terminal/main.c:126
+#. parameter of --initial-title
+#: ../terminal/main.c:127 ../terminal/main.c:131
 msgid "title"
 msgstr "titre"
 
-#: ../terminal/main.c:136
+#. parameter of --dynamic-title-mode
+#: ../terminal/main.c:129
+msgid "mode"
+msgstr "mode"
+
+#: ../terminal/main.c:141
 msgid "Window Options"
 msgstr "Options des fenêtres"
 
 #. parameter of --geometry
-#: ../terminal/main.c:140
+#: ../terminal/main.c:145
 msgid "geometry"
 msgstr "géométrie"
 
 #. parameter of --role
-#: ../terminal/main.c:142
+#: ../terminal/main.c:147
 msgid "role"
 msgstr "rôle"
 
 #. parameter of --startup-id
-#: ../terminal/main.c:144
+#: ../terminal/main.c:149
 msgid "string"
 msgstr "chaine de caractères"
 
 #. parameter of --icon
-#: ../terminal/main.c:146
+#: ../terminal/main.c:151
 msgid "icon"
 msgstr "icône"
 
 #. parameter of --font
-#: ../terminal/main.c:148
+#: ../terminal/main.c:153
 msgid "font"
 msgstr "police"
 
 #. parameter of --zoom
-#: ../terminal/main.c:150
+#: ../terminal/main.c:155
 msgid "zoom"
 msgstr "zoom"
 
-#: ../terminal/main.c:152
+#: ../terminal/main.c:157
 #, c-format
 msgid "See the %s man page for full explanation of the options above."
 msgstr "Veuillez consulter la page de manuel %s pour une explication complète 
des options ci-dessus."
 
-#: ../terminal/main.c:185 ../xfce4-terminal.desktop.in.h:1
+#: ../terminal/main.c:190 ../xfce4-terminal.desktop.in.h:1
 msgid "Xfce Terminal"
 msgstr "Terminal Xfce"
 
-#: ../terminal/main.c:201
+#: ../terminal/main.c:206
 msgid "The Xfce development team. All rights reserved."
 msgstr "L’équipe de développement Xfce. Tous droits réservés."
 
-#: ../terminal/main.c:202
+#: ../terminal/main.c:207
 msgid "Written by Benedikt Meurer ,"
 msgstr "Écrit par Benedikt Meurer ,"
 
-#: ../terminal/main.c:203
+#: ../terminal/main.c:208
 msgid "Nick Schermer "
 msgstr "Nick Schermer "
 
-#: ../terminal/main.c:204
+#: ../terminal/main.c:209
 msgid "and Igor Zakharov ."
 msgstr "et Igor Zakharov ."
 
-#: ../terminal/main.c:205
+#: ../terminal/main.c:210
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Merci de signaler les bogues à <%s>."
 
-#: ../terminal/main.c:312
+#: ../terminal/main.c:317
 #, c-format
 msgid "Unable to register terminal service: %s\n"
 msgstr "Impossible d'enregistrer le service terminal : %s\n"
 
-#: ../terminal/terminal-app.c:875
+#: ../terminal/terminal-app.c:851
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr 

[Xfce4-commits] [xfce/xfce4-power-manager] branch master updated (755a515 -> a8f3ddb)

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

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

  from  755a515   I18n: Update translation kk (100%).
   new  a8f3ddb   I18n: Update translation nl (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/nl.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-panel] branch master updated (5217d06 -> 92fb7e3)

2017-06-10 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  5217d06   I18n: Update translation ja (100%).
   new  92fb7e3   I18n: Update translation nl (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/nl.po | 24 
 1 file changed, 12 insertions(+), 12 deletions(-)

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


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

2017-06-10 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 92fb7e3aab9e6fc047b420ffc36331405cd95a23
Author: Pjotr 
Date:   Sat Jun 10 15:03:36 2017 +0200

I18n: Update translation nl (100%).

399 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index b66978e..aa85231 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-04-27 00:30+0200\n"
-"PO-Revision-Date: 2017-04-27 21:37+\n"
+"PO-Revision-Date: 2017-06-10 10:38+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce4-panel/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -107,11 +107,11 @@ msgstr "Sla de werkbalkconfiguratie op"
 
 #: ../panel/main.c:83
 msgid "Add a new plugin to the panel"
-msgstr "Nieuwe invoegtoepassing aan de werkbalk toevoegen"
+msgstr "Nieuw invoegsel aan de werkbalk toevoegen"
 
 #: ../panel/main.c:83
 msgid "PLUGIN-NAME"
-msgstr "NAAM VAN INVOEGTOEPASSING"
+msgstr "NAAM VAN INVOEGSEL"
 
 #: ../panel/main.c:84
 msgid "Restart the running panel instance"
@@ -174,7 +174,7 @@ msgstr "Kon de werkbalkinstellingen niet opslaan"
 
 #: ../panel/main.c:387
 msgid "Failed to add a plugin to the panel"
-msgstr "Kon de invoegtoepassing niet aan de werkbalk toevoegen"
+msgstr "Kon het invoegsel niet aan de werkbalk toevoegen"
 
 #: ../panel/main.c:389
 msgid "Failed to restart the panel"
@@ -215,7 +215,7 @@ msgstr "Maak starter"
 msgid ""
 "This will create a new launcher plugin on the panel and inserts the dropped "
 "files as menu items."
-msgstr "Dit zal een nieuwe starter toevoegen aan de werkbalk en voegt de 
geplaatste bestanden in als menu-onderdelen."
+msgstr "Dit zal een nieuw starter-invoegsel toevoegen aan de werkbalk en voegt 
de geplaatste bestanden in als menu-onderdelen."
 
 #: ../panel/panel-application.c:985
 #, c-format
@@ -246,7 +246,7 @@ msgstr "Kon de opdracht '%s' niet uitvoeren"
 #: ../panel/panel-dbus-client.c:210
 msgid ""
 "Invalid plugin event syntax specified. Use PLUGIN-NAME:NAME[:TYPE:VALUE]."
-msgstr "Ongeldige invoegtoepassing-gebeurtenis-syntax gespecificeerd. Gebruik 
PLUGINNAAM:NAAM[:TYPE:WAARDE]."
+msgstr "Ongeldig invoegsel-gebeurtenis-syntax gespecificeerd. Gebruik 
PLUGIN-NAME:NAME[:TYPE:VALUE]."
 
 #: ../panel/panel-dbus-client.c:243
 #, c-format
@@ -274,7 +274,7 @@ msgstr "Toevoegen"
 
 #: ../panel/panel-dialogs.c:139
 msgid "Please choose a panel for the new plugin:"
-msgstr "Kies een werkbalk voor de nieuwe invoegtoepassing:"
+msgstr "Kies a.u.b. een werkbalk voor het nieuwe invoegsel:"
 
 #: ../panel/panel-dialogs.c:159 ../panel/panel-preferences-dialog.c:864
 #, c-format
@@ -297,7 +297,7 @@ msgstr "Voeg nieuwe elementen toe"
 
 #: ../panel/panel-item-dialog.c:192
 msgid "Add new plugins to the panel"
-msgstr "Voeg nieuwe invoegtoepassingen toe aan de werkbalk"
+msgstr "Voeg nieuwe invoegsels toe aan de werkbalk"
 
 #: ../panel/panel-item-dialog.c:202
 msgid "Help"
@@ -319,7 +319,7 @@ msgstr "Geef hier een zoekterm op"
 #: ../panel/panel-plugin-external.c:429
 #, c-format
 msgid "Plugin \"%s\" unexpectedly left the panel, do you want to restart it?"
-msgstr "De invoegtoepassing '%s' heeft onverwacht de werkbalk verlaten, wilt u 
hem herstarten?"
+msgstr "Het invoegsel '%s' heeft onverwacht de werkbalk verlaten, wilt u het 
herstarten?"
 
 #: ../panel/panel-plugin-external.c:431
 #, c-format
@@ -327,7 +327,7 @@ msgid ""
 "The plugin restarted more than once in the last %d seconds. If you press "
 "Execute the panel will try to restart the plugin otherwise it will be "
 "permanently removed from the panel."
-msgstr "De invoegtoepassing is meer dan één keer opnieuw opgestart in de 
afgelopen %d seconden. Druk op 'Uitvoeren' om te proberen de invoegtoepassing 
opnieuw te starten, anders zal deze invoegtoepassing blijvend van de werkbalk 
worden verwijderd."
+msgstr "Het invoegsel is meer dan één keer opnieuw opgestart in de afgelopen 
%d seconden. Druk op 'Uitvoeren' om te proberen het invoegsel opnieuw te 
starten, anders zal dit invoegsel blijvend van de werkbalk worden verwijderd."
 
 #: ../panel/panel-preferences-dialog.c:494
 msgid "Automatic"
@@ -351,7 +351,7 @@ msgstr "Monitor %d"
 
 #: ../panel/panel-preferences-dialog.c:930
 msgid "The panel and plugin configurations will be permanently removed"
-msgstr "De instellingen van de werkbalk en de invoegtoepassingen zullen 
blijvend verwijderd worden"
+msgstr "De instellingen van de werkbalk en de invoegsels zullen blijvend 
verwijderd worden"
 
 #: 

[Xfce4-commits] [xfce/tumbler] branch master updated (5d78207 -> 03268fe)

2017-06-10 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  5d78207   I18n: Update translation nl (100%).
   new  03268fe   I18n: Update translation nl (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/nl.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/tumbler] 01/01: I18n: Update translation nl (100%).

2017-06-10 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 03268fe78cd0fbb3ad4947b2e6f5b1dcc8fe8408
Author: Pjotr 
Date:   Sat Jun 10 15:03:22 2017 +0200

I18n: Update translation nl (100%).

39 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index f689725..f312be3 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Tumbler\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-05-28 12:30+0200\n"
-"PO-Revision-Date: 2017-06-10 10:30+\n"
+"PO-Revision-Date: 2017-06-10 10:31+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch (http://www.transifex.com/xfce/tumbler/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -113,7 +113,7 @@ msgstr "Het opslag-invoegsel '%s' ontbeert de vereiste 
symbolen"
 #: ../tumbler/tumbler-cache-plugin.c:153
 #, c-format
 msgid "Failed to load the cache plugin \"%s\": %s"
-msgstr "Kon de opslag-invoegtoepassing '%s' niet laden: %s"
+msgstr "Kon het opslag-invoegsel '%s' niet laden: %s"
 
 #: ../tumbler/tumbler-file-info.c:297
 #, c-format
@@ -123,12 +123,12 @@ msgstr "Het bestand '%s' is zelf een miniatuur"
 #: ../tumbler/tumbler-provider-plugin.c:135
 #, c-format
 msgid "Plugin \"%s\" lacks required symbols."
-msgstr "Invoegtoepassing '%s' heeft de vereiste symbolen niet."
+msgstr "Invoegsel '%s' heeft de vereiste symbolen niet."
 
 #: ../tumbler/tumbler-provider-plugin.c:143
 #, c-format
 msgid "Failed to load plugin \"%s\": %s"
-msgstr "Kon invoegtoepassing '%s' niet laden: %s"
+msgstr "Kon invoegsel '%s' niet laden: %s"
 
 #: ../plugins/cover-thumbnailer/cover-thumbnailer-plugin.c:59
 #: ../plugins/gst-thumbnailer/gst-thumbnailer-plugin.c:59

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] annotated tag 0.7.1 created (now 5a82aa9)

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

ninetls pushed a 
change to annotated 
tag 0.7.1
in repository panel-plugins/xfce4-xkb-plugin.

at  5a82aa9   (tag)
   tagging  ba8007dad15d37227e6f8182d2264c017aa1464e (commit)
  replaces  0.7.0
 tagged by  Viktor Odintsev
on  Sun Apr 23 06:38:00 2017 +0300

- Log -
2015-02-27 18:29
* New version 0.7.1 - to be used with xfce4-settings 4.11 or later;
  do *not* use this version with XFCE 4.8 or 4.10, it won't work!
* Many translation updates
* Fix crash in xkb_util_normalize_group_name
* Add Montenegrin flag; add el.svg as a synonym for gr.svg
---

No new revisions were added by this update.

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 10/17: Merge xfce4-xkb-plugin and xkb-callbacks

2017-06-10 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-xkb-plugin.

commit 7de49ae2612fe9e13d26064d539e3082ebf40893
Author: Viktor Odintsev 
Date:   Tue Mar 28 15:27:43 2017 +0300

Merge xfce4-xkb-plugin and xkb-callbacks

XkbPlugin extends XfcePanelPlugin now.
Callbacks shouldn't be placed separately with object
so they were merged into single file.
---
 panel-plugin/Makefile.am  |   6 +-
 panel-plugin/xfce4-xkb-plugin.c   | 431 --
 panel-plugin/xkb-cairo.c  |   2 +-
 panel-plugin/xkb-callbacks.c  | 241 
 panel-plugin/xkb-callbacks.h  |  70 ---
 panel-plugin/xkb-plugin.c | 693 ++
 panel-plugin/{xfce4-xkb-plugin.h => xkb-plugin.h} |  35 +-
 panel-plugin/xkb-settings-dialog.c|  31 +-
 panel-plugin/xkb-settings-dialog.h|   6 +-
 po/POTFILES.in|   2 +-
 10 files changed, 734 insertions(+), 783 deletions(-)

diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index e2fead7..177c945 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -7,8 +7,8 @@ plugin_LTLIBRARIES = \
libxkb.la
 
 libxkb_la_SOURCES = \
-   xfce4-xkb-plugin.h \
-   xfce4-xkb-plugin.c \
+   xkb-plugin.h \
+   xkb-plugin.c \
xkb-settings-dialog.h \
xkb-settings-dialog.c \
xkb-keyboard.h \
@@ -17,8 +17,6 @@ libxkb_la_SOURCES = \
xkb-util.c \
xkb-cairo.h \
xkb-cairo.c \
-   xkb-callbacks.h \
-   xkb-callbacks.c \
xkb-properties.h \
xkb-xfconf.h \
xkb-xfconf.c
diff --git a/panel-plugin/xfce4-xkb-plugin.c b/panel-plugin/xfce4-xkb-plugin.c
deleted file mode 100644
index c08189f..000
--- a/panel-plugin/xfce4-xkb-plugin.c
+++ /dev/null
@@ -1,431 +0,0 @@
-/* vim: set backspace=2 ts=4 softtabstop=4 sw=4 cinoptions=>4 expandtab 
autoindent smartindent: */
-/* xfce4-xkb-plugin.c
- * Copyright (C) 2008 Alexander Iliev 
- *
- * Parts of this program comes from the XfKC tool:
- * Copyright (C) 2006 Gauvain Pocentek 
- *
- * A part of this file comes from the gnome keyboard capplet (control-center):
- * Copyright (C) 2003 Sergey V. Oudaltsov 
- *
- * 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, 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 St, Fifth Floor, Boston, MA  02110-1301  USA
- */
-
-#ifdef HAVE_CONFIG_H
-#include 
-#endif
-
-#include 
-#include 
-
-#include 
-
-#include 
-#include 
-
-#include "xfce4-xkb-plugin.h"
-#include "xkb-settings-dialog.h"
-#include "xkb-util.h"
-#include "xkb-cairo.h"
-#include "xkb-callbacks.h"
-#include "xkb-properties.h"
-
-/* -- *
- * Panel Plugin Interface *
- * -- */
-
-static void xfce_xkb_construct  (XfcePanelPlugin 
*plugin);
-
-static void xfce_xkb_orientation_changed(XfcePanelPlugin 
*plugin,
-GtkOrientation 
orientation,
-t_xkb *xkb);
-
-static gboolean xfce_xkb_set_size   (XfcePanelPlugin 
*plugin,
- gint size,
- t_xkb *xkb);
-
-static void xfce_xkb_free_data  (XfcePanelPlugin 
*plugin,
- t_xkb *xkb);
-
-/* - *
- *   XKB Stuff   *
- * - */
-
-static t_xkb *  xkb_new (XfcePanelPlugin 
*plugin);
-
-static void xkb_free(t_xkb *xkb);
-
-static gboolean xkb_calculate_sizes 

[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 05/17: Allow to hide tooltip icon

2017-06-10 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-xkb-plugin.

commit 0d77ca975a04077fd2cb30dee090ed258d3f657a
Author: Viktor Odintsev 
Date:   Thu Mar 16 04:16:03 2017 +0300

Allow to hide tooltip icon
---
 panel-plugin/xkb-callbacks.c   | 17 +
 panel-plugin/xkb-properties.h  |  1 +
 panel-plugin/xkb-settings-dialog.c | 14 ++
 panel-plugin/xkb-xfconf.c  | 35 ++-
 panel-plugin/xkb-xfconf.h  |  1 +
 5 files changed, 63 insertions(+), 5 deletions(-)

diff --git a/panel-plugin/xkb-callbacks.c b/panel-plugin/xkb-callbacks.c
index de8902d..13107de 100644
--- a/panel-plugin/xkb-callbacks.c
+++ b/panel-plugin/xkb-callbacks.c
@@ -185,11 +185,20 @@ xkb_plugin_set_tooltip (GtkWidget *widget,
 GtkTooltip *tooltip,
 t_xkb *xkb)
 {
-gint   group   = xkb_config_get_current_group ();
-GdkPixbuf *pixbuf  = xkb_config_get_tooltip_pixbuf (group);
-gchar *layout_name = xkb_config_get_pretty_layout_name (group);
+gint group;
+gchar *layout_name;
+GdkPixbuf *pixbuf;
+
+group = xkb_config_get_current_group ();
+
+if (xkb_xfconf_get_display_tooltip_icon (xkb->config))
+{
+pixbuf = xkb_config_get_tooltip_pixbuf (group);
+gtk_tooltip_set_icon (tooltip, pixbuf);
+}
+
+layout_name = xkb_config_get_pretty_layout_name (group);
 
-gtk_tooltip_set_icon (tooltip, pixbuf);
 gtk_tooltip_set_text (tooltip, layout_name);
 
 return TRUE;
diff --git a/panel-plugin/xkb-properties.h b/panel-plugin/xkb-properties.h
index 960fc6e..62450cb 100644
--- a/panel-plugin/xkb-properties.h
+++ b/panel-plugin/xkb-properties.h
@@ -28,6 +28,7 @@
 
 #define DISPLAY_TYPE "display-type"
 #define DISPLAY_SCALE "display-scale"
+#define DISPLAY_TOOLTIP_ICON "display-tooltip-icon"
 #define GROUP_POLICY "group-policy"
 
 typedef enum
diff --git a/panel-plugin/xkb-settings-dialog.c 
b/panel-plugin/xkb-settings-dialog.c
index 1b19810..04429d4 100644
--- a/panel-plugin/xkb-settings-dialog.c
+++ b/panel-plugin/xkb-settings-dialog.c
@@ -95,6 +95,7 @@ xfce_xkb_configure (XfcePanelPlugin *plugin,
 {
 GtkWidget *display_type_combo;
 GtkWidget *display_scale_range;
+GtkWidget *display_tooltip_icon_switch;
 GtkWidget *group_policy_combo;
 GtkWidget *vbox, *frame, *bin, *grid, *label;
 DialogInstance *instance;
@@ -151,6 +152,15 @@ xfce_xkb_configure (XfcePanelPlugin *plugin,
 gtk_widget_set_size_request (display_scale_range, 230, -1);
 gtk_grid_attach (GTK_GRID (grid), display_scale_range, 1, 1, 1, 1);
 
+label = gtk_label_new (_("Tooltip icon:"));
+gtk_label_set_xalign (GTK_LABEL (label), 0.f);
+gtk_widget_set_hexpand (label, TRUE);
+gtk_grid_attach (GTK_GRID (grid), label, 0, 2, 1, 1);
+
+display_tooltip_icon_switch = gtk_switch_new ();
+gtk_widget_set_halign (display_tooltip_icon_switch, GTK_ALIGN_END);
+gtk_grid_attach (GTK_GRID (grid), display_tooltip_icon_switch, 1, 2, 1, 1);
+
 frame = xfce_gtk_frame_box_new (_("Behavior"), );
 gtk_box_pack_start (GTK_BOX (vbox), frame, TRUE, TRUE, 2);
 
@@ -191,6 +201,10 @@ xfce_xkb_configure (XfcePanelPlugin *plugin,
 G_OBJECT (gtk_range_get_adjustment (GTK_RANGE 
(display_scale_range))),
 "value", G_BINDING_SYNC_CREATE | G_BINDING_BIDIRECTIONAL);
 
+g_object_bind_property (G_OBJECT (xkb->config), DISPLAY_TOOLTIP_ICON,
+G_OBJECT (display_tooltip_icon_switch),
+"active", G_BINDING_SYNC_CREATE | G_BINDING_BIDIRECTIONAL);
+
 g_object_bind_property (G_OBJECT (xkb->config), GROUP_POLICY,
 G_OBJECT (group_policy_combo),
 "active", G_BINDING_SYNC_CREATE | G_BINDING_BIDIRECTIONAL);
diff --git a/panel-plugin/xkb-xfconf.c b/panel-plugin/xkb-xfconf.c
index 9ade5fd..7287c90 100644
--- a/panel-plugin/xkb-xfconf.c
+++ b/panel-plugin/xkb-xfconf.c
@@ -36,6 +36,7 @@
 
 #define DEFAULT_DISPLAY_TYPEDISPLAY_TYPE_IMAGE
 #define DEFAULT_DISPLAY_SCALE   DISPLAY_SCALE_MAX
+#define DEFAULT_DISPLAY_TOOLTIP_ICONTRUE
 #define DEFAULT_GROUP_POLICYGROUP_POLICY_PER_APPLICATION
 
 static voidxkb_xfconf_finalize(GObject  
*object);
@@ -59,6 +60,7 @@ struct _XkbXfconf
 
 guint display_type;
 guint display_scale;
+gboolean display_tooltip_icon;
 guint group_policy;
 };
 
@@ -67,6 +69,7 @@ enum
 PROP_0,
 PROP_DISPLAY_TYPE,
 PROP_DISPLAY_SCALE,
+PROP_DISPLAY_TOOLTIP_ICON,
 PROP_GROUP_POLICY,
 N_PROPERTIES,
 };
@@ -77,7 +80,7 @@ enum
 LAST_SIGNAL
 };
 
-static guint xkb_xfconf_signals [LAST_SIGNAL] = { NULL, };
+static guint xkb_xfconf_signals 

[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 15/17: Bug 12294: Use local charset for layout names

2017-06-10 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-xkb-plugin.

commit 36a6e59403cb9c9b9b51c46b8d6b9f065841c585
Author: Viktor Odintsev 
Date:   Wed Apr 19 02:06:13 2017 +0300

Bug 12294: Use local charset for layout names
---
 panel-plugin/xkb-cairo.c| 6 ++
 panel-plugin/xkb-keyboard.c | 2 +-
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/panel-plugin/xkb-cairo.c b/panel-plugin/xkb-cairo.c
index 8947f83..9631ba0 100644
--- a/panel-plugin/xkb-cairo.c
+++ b/panel-plugin/xkb-cairo.c
@@ -163,8 +163,7 @@ xkb_cairo_draw_label (cairo_t *cr,
 layout = pango_cairo_create_layout (cr);
 normalized_group_name = xkb_util_normalize_group_name (group_name, FALSE);
 
-if (!normalized_group_name ||
-!g_utf8_validate (normalized_group_name, -1, NULL))
+if (!normalized_group_name)
 {
 g_object_unref (layout);
 g_free (normalized_group_name);
@@ -257,8 +256,7 @@ xkb_cairo_draw_label_system (cairo_t *cr,
 layout = pango_cairo_create_layout (cr);
 normalized_group_name = xkb_util_normalize_group_name (group_name, TRUE);
 
-if (!normalized_group_name ||
-!g_utf8_validate (normalized_group_name, -1, NULL))
+if (!normalized_group_name)
 {
 g_object_unref (layout);
 g_free (normalized_group_name);
diff --git a/panel-plugin/xkb-keyboard.c b/panel-plugin/xkb-keyboard.c
index 7b35e1b..3a932e7 100644
--- a/panel-plugin/xkb-keyboard.c
+++ b/panel-plugin/xkb-keyboard.c
@@ -176,7 +176,7 @@ xkb_keyboard_xkb_description (XklConfigItem *config_item)
 if (ci_description[0] == 0)
 description = g_strdup (config_item->name);
 else
-description = g_locale_to_utf8 (ci_description, -1, NULL, NULL, NULL);
+description = g_strdup (ci_description);
 
 return description;
 }

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 17/17: Bug 12884: Load flags from XDG_DATA_HOME if present

2017-06-10 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-xkb-plugin.

commit 7f74d7e811e8031d4e8c475919493d93dd0bbf3d
Author: Viktor Odintsev 
Date:   Mon Jun 5 17:53:14 2017 +0300

Bug 12884: Load flags from XDG_DATA_HOME if present
---
 panel-plugin/Makefile.am  | 5 +++--
 panel-plugin/xkb-plugin.c | 2 +-
 panel-plugin/xkb-util.c   | 7 ++-
 3 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index 164a6c5..60a1b65 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -36,8 +36,9 @@ libxkb_la_CFLAGS = \
$(LIBWNCK_CFLAGS) \
$(GARCON_CFLAGS) \
$(PLATFORM_CFLAGS) \
-   -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
-   -DFLAGSDIR=\"$(datadir)/xfce4/xkb/flags\" \
+   -DLOCALEDIR=\"$(localedir)\" \
+   -DDATADIR=\"$(datadir)\" \
+   -DFLAGSRELDIR=\"xfce4/xkb/flags\" \
-DWNCK_I_KNOW_THIS_IS_UNSTABLE
 
 libxkb_la_LDFLAGS = \
diff --git a/panel-plugin/xkb-plugin.c b/panel-plugin/xkb-plugin.c
index 2bc49c9..dcb3d9f 100644
--- a/panel-plugin/xkb-plugin.c
+++ b/panel-plugin/xkb-plugin.c
@@ -234,7 +234,7 @@ xkb_plugin_construct (XfcePanelPlugin *plugin)
 g_signal_connect (G_OBJECT (wnck_screen), "application-closed",
 G_CALLBACK (xkb_plugin_application_closed), xkb_plugin);
 
-xfce_textdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR, "UTF-8");
+xfce_textdomain (GETTEXT_PACKAGE, LOCALEDIR, "UTF-8");
 
 xfce_panel_plugin_menu_show_configure (plugin);
 xfce_panel_plugin_menu_show_about (plugin);
diff --git a/panel-plugin/xkb-util.c b/panel-plugin/xkb-util.c
index eb75f6e..c105ca3 100644
--- a/panel-plugin/xkb-util.c
+++ b/panel-plugin/xkb-util.c
@@ -35,7 +35,12 @@ xkb_util_get_flag_filename (const gchar* group_name)
 if (!group_name)
 return NULL;
 
-filename = g_strconcat (FLAGSDIR, "/", group_name, ".svg", NULL);
+filename = g_strconcat (g_get_user_data_dir (), "/", FLAGSRELDIR, "/", 
group_name, ".svg", NULL);
+
+if (!g_file_test (filename, G_FILE_TEST_EXISTS))
+{
+filename = g_strconcat (DATADIR, "/", FLAGSRELDIR, "/", group_name, 
".svg", NULL);
+}
 
 return filename;
 }

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 04/17: Update settings dialog style

2017-06-10 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-xkb-plugin.

commit cc2119154dd3fd41d369689a9c07fb2f90feb638
Author: Viktor Odintsev 
Date:   Thu Mar 16 03:45:29 2017 +0300

Update settings dialog style
---
 panel-plugin/xkb-settings-dialog.c | 76 --
 1 file changed, 49 insertions(+), 27 deletions(-)

diff --git a/panel-plugin/xkb-settings-dialog.c 
b/panel-plugin/xkb-settings-dialog.c
index e370eae..1b19810 100644
--- a/panel-plugin/xkb-settings-dialog.c
+++ b/panel-plugin/xkb-settings-dialog.c
@@ -93,9 +93,10 @@ void
 xfce_xkb_configure (XfcePanelPlugin *plugin,
 t_xkb *xkb)
 {
-GtkWidget *display_type_optmenu, *group_policy_combo;
-GtkWidget *vbox, *display_type_frame, *group_policy_frame, *bin;
-GtkWidget *display_scale_frame, *display_scale_range;
+GtkWidget *display_type_combo;
+GtkWidget *display_scale_range;
+GtkWidget *group_policy_combo;
+GtkWidget *vbox, *frame, *bin, *grid, *label;
 DialogInstance *instance;
 
 xfce_panel_plugin_block_menu (plugin);
@@ -116,40 +117,61 @@ xfce_xkb_configure (XfcePanelPlugin *plugin,
 gtk_widget_show (vbox);
 gtk_container_add (GTK_CONTAINER (gtk_dialog_get_content_area (GTK_DIALOG 
(settings_dialog))), vbox);
 
-/*/
-display_type_frame = xfce_gtk_frame_box_new (_("Show layout as:"), );
-gtk_widget_show (display_type_frame);
-gtk_box_pack_start (GTK_BOX (vbox), display_type_frame, TRUE, TRUE, 2);
-
-display_type_optmenu = gtk_combo_box_text_new ();
-gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (display_type_optmenu), 
_("image"));
-gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (display_type_optmenu), 
_("text"));
-gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (display_type_optmenu), 
_("system"));
-gtk_widget_set_size_request (display_type_optmenu, 230, -1);
-gtk_container_add (GTK_CONTAINER (bin), display_type_optmenu);
-
-display_scale_frame = xfce_gtk_frame_box_new (_("Widget size:"), );
-gtk_widget_show (display_scale_frame);
-gtk_box_pack_start (GTK_BOX (vbox), display_scale_frame, TRUE, TRUE, 2);
+frame = xfce_gtk_frame_box_new (_("Appearance"), );
+gtk_box_pack_start (GTK_BOX (vbox), frame, TRUE, TRUE, 2);
+
+grid = gtk_grid_new ();
+gtk_grid_set_row_spacing (GTK_GRID (grid), 6);
+gtk_grid_set_column_spacing (GTK_GRID (grid), 18);
+gtk_grid_set_row_homogeneous (GTK_GRID (grid), TRUE);
+gtk_widget_set_size_request (grid, -1, -1);
+gtk_container_add (GTK_CONTAINER (bin), grid);
+
+label = gtk_label_new (_("Show layout as:"));
+gtk_label_set_xalign (GTK_LABEL (label), 0.f);
+gtk_widget_set_hexpand (label, TRUE);
+gtk_grid_attach (GTK_GRID (grid), label, 0, 0, 1, 1);
+
+display_type_combo = gtk_combo_box_text_new ();
+gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (display_type_combo), 
_("image"));
+gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (display_type_combo), 
_("text"));
+gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (display_type_combo), 
_("system"));
+gtk_widget_set_size_request (display_type_combo, 230, -1);
+gtk_grid_attach (GTK_GRID (grid), display_type_combo, 1, 0, 1, 1);
+
+label = gtk_label_new (_("Widget size:"));
+gtk_label_set_xalign (GTK_LABEL (label), 0.f);
+gtk_widget_set_hexpand (label, TRUE);
+gtk_grid_attach (GTK_GRID (grid), label, 0, 1, 1, 1);
 
 display_scale_range = gtk_scale_new_with_range (GTK_ORIENTATION_HORIZONTAL,
 DISPLAY_SCALE_MIN, DISPLAY_SCALE_MAX, 1);
 instance->display_scale_range = display_scale_range;
 gtk_scale_set_value_pos (GTK_SCALE (display_scale_range), GTK_POS_RIGHT);
 gtk_widget_set_size_request (display_scale_range, 230, -1);
-gtk_container_add (GTK_CONTAINER (bin), display_scale_range);
+gtk_grid_attach (GTK_GRID (grid), display_scale_range, 1, 1, 1, 1);
+
+frame = xfce_gtk_frame_box_new (_("Behavior"), );
+gtk_box_pack_start (GTK_BOX (vbox), frame, TRUE, TRUE, 2);
+
+grid = gtk_grid_new ();
+gtk_grid_set_row_spacing (GTK_GRID (grid), 6);
+gtk_grid_set_column_spacing (GTK_GRID (grid), 18);
+gtk_grid_set_row_homogeneous (GTK_GRID (grid), TRUE);
+gtk_widget_set_size_request (grid, -1, -1);
+gtk_container_add (GTK_CONTAINER (bin), grid);
 
-group_policy_frame = xfce_gtk_frame_box_new (_("Manage layout:"), );
-gtk_widget_show (group_policy_frame);
-gtk_box_pack_start (GTK_BOX (vbox), group_policy_frame, TRUE, TRUE, 2);
+label = gtk_label_new (_("Manage layout:"));
+gtk_label_set_xalign (GTK_LABEL (label), 0.f);
+gtk_widget_set_hexpand (label, TRUE);
+gtk_grid_attach (GTK_GRID (grid), label, 0, 0, 1, 1);
 

[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 14/17: Fix IT_PROG_INTLTOOL warning

2017-06-10 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-xkb-plugin.

commit 775f3d67b780bc6a69ce8b38d3bc9bb99102fff8
Author: Viktor Odintsev 
Date:   Wed Apr 19 01:58:56 2017 +0300

Fix IT_PROG_INTLTOOL warning
---
 configure.ac.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac.in b/configure.ac.in
index 4581ac1..781f586 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -50,7 +50,7 @@ dnl 
 AC_PROG_CC()
 AC_PROG_LD()
 AC_PROG_INSTALL()
-AC_PROG_INTLTOOL()
+IT_PROG_INTLTOOL([0.35.0])
 LT_PREREQ([2.2.6])
 LT_INIT([disable-static])
 AM_PROG_CC_C_O()

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 06/17: Refactor menus and remove deprecations

2017-06-10 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-xkb-plugin.

commit 862e0e0dd56541ce6622f372fb6ad71bf338b699
Author: Viktor Odintsev 
Date:   Fri Mar 17 02:07:30 2017 +0300

Refactor menus and remove deprecations

Panel button's behavior was refactored.
Removed deprecated GtkImageMenuItem usage.
---
 panel-plugin/xfce4-xkb-plugin.c | 79 ++---
 panel-plugin/xkb-callbacks.c| 57 ++---
 panel-plugin/xkb-callbacks.h|  6 +++-
 3 files changed, 69 insertions(+), 73 deletions(-)

diff --git a/panel-plugin/xfce4-xkb-plugin.c b/panel-plugin/xfce4-xkb-plugin.c
index 8f59431..7dd8556 100644
--- a/panel-plugin/xfce4-xkb-plugin.c
+++ b/panel-plugin/xfce4-xkb-plugin.c
@@ -96,9 +96,6 @@ static void
 xfce_xkb_construct (XfcePanelPlugin *plugin)
 {
 GtkWidget *configure_layouts;
-GtkIconTheme *theme;
-GtkWidget *image;
-GdkPixbuf *pixbuf;
 
 t_xkb *xkb = xkb_new (plugin);
 
@@ -123,27 +120,12 @@ xfce_xkb_construct (XfcePanelPlugin *plugin)
 g_signal_connect (plugin, "about",
 G_CALLBACK (xfce_xkb_about), xkb);
 
-configure_layouts =
-gtk_image_menu_item_new_with_label (_("Keyboard settings"));
-
-theme = gtk_icon_theme_get_for_screen (gdk_screen_get_default());
-pixbuf = gtk_icon_theme_load_icon (theme, "preferences-desktop-keyboard",
-   GTK_ICON_SIZE_MENU, 0, NULL);
-if (pixbuf != NULL)
-{
-image = gtk_image_new ();
-gtk_image_set_from_pixbuf (GTK_IMAGE (image), pixbuf);
-gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (configure_layouts),
-   image);
-g_object_unref (pixbuf);
-}
-
+configure_layouts = gtk_menu_item_new_with_label (_("Keyboard settings"));
 gtk_widget_show (configure_layouts);
-xfce_panel_plugin_menu_insert_item (plugin,
-GTK_MENU_ITEM (configure_layouts));
+xfce_panel_plugin_menu_insert_item (plugin, GTK_MENU_ITEM 
(configure_layouts));
 
 g_signal_connect (G_OBJECT (configure_layouts), "activate",
-  G_CALLBACK (xfce_xkb_configure_layout), NULL);
+G_CALLBACK (xfce_xkb_configure_layout), NULL);
 }
 
 static void
@@ -223,9 +205,12 @@ xkb_new (XfcePanelPlugin *plugin)
 g_object_unref (css_provider);
 
 gtk_widget_show (xkb->btn);
-g_signal_connect (xkb->btn, "clicked", G_CALLBACK 
(xkb_plugin_button_clicked), xkb);
+g_signal_connect (xkb->btn, "button-press-event",
+G_CALLBACK (xkb_plugin_button_clicked), xkb);
+g_signal_connect (xkb->btn, "button-release-event",
+G_CALLBACK (xkb_plugin_button_clicked), xkb);
 g_signal_connect (xkb->btn, "scroll-event",
-  G_CALLBACK (xkb_plugin_button_scrolled), NULL);
+G_CALLBACK (xkb_plugin_button_scrolled), NULL);
 
 g_object_set (G_OBJECT (xkb->btn), "has-tooltip", TRUE, NULL);
 g_signal_connect (xkb->btn, "query-tooltip",
@@ -259,9 +244,9 @@ xkb_free (t_xkb *xkb)
 {
 xkb_config_finalize ();
 
+xkb_destroy_popup_menu (xkb);
 gtk_widget_destroy (xkb->layout_image);
 gtk_widget_destroy (xkb->btn);
-xkb_destroy_popup_menu (xkb);
 
 g_object_unref (G_OBJECT (xkb->config));
 
@@ -325,11 +310,10 @@ xkb_calculate_sizes (t_xkb *xkb, GtkOrientation 
orientation, gint panel_size)
 static void
 xkb_destroy_popup_menu (t_xkb *xkb)
 {
-if (xkb->popup)
+if (xkb->popup != NULL)
 {
-gtk_widget_destroy (xkb->popup);
-g_object_ref_sink (xkb->popup);
-g_object_unref (xkb->popup);
+gtk_menu_popdown (GTK_MENU (xkb->popup));
+gtk_menu_detach (GTK_MENU (xkb->popup));
 xkb->popup = NULL;
 }
 }
@@ -338,10 +322,7 @@ static void
 xkb_populate_popup_menu (t_xkb *xkb)
 {
 gint i, group_count;
-RsvgHandle *handle;
-GdkPixbuf *pixbuf, *tmp;
-gchar *imgfilename;
-GtkWidget *image;
+gchar *layout_string;
 GtkWidget *menu_item;
 
 if (G_UNLIKELY (xkb == NULL)) return;
@@ -352,43 +333,21 @@ xkb_populate_popup_menu (t_xkb *xkb)
 group_count = xkb_config_get_group_count ();
 for (i = 0; i < group_count; i++)
 {
-gchar *layout_string;
-
-imgfilename = xkb_util_get_flag_filename (xkb_config_get_group_name 
(i));
-handle = rsvg_handle_new_from_file (imgfilename, NULL);
-g_free (imgfilename);
-
-if (handle)
-{
-tmp = rsvg_handle_get_pixbuf (handle);
-}
-
 layout_string = xkb_config_get_pretty_layout_name (i);
 
-menu_item = gtk_image_menu_item_new_with_label (layout_string);
+menu_item = gtk_menu_item_new_with_label 

[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 13/17: Allow to display language name instead of country name

2017-06-10 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-xkb-plugin.

commit 0a8d39d4c0bc138e47c8dbc476e5f04fb88eecdc
Author: Viktor Odintsev 
Date:   Fri Mar 31 13:51:38 2017 +0300

Allow to display language name instead of country name

For example, the "EN" text will be shown instead of "US" in case of
"en_US" locale. This behavior is configurable.

A memory-stored GdkPixbuf is used to draw an image now.
---
 panel-plugin/xkb-cairo.c  |  48 +++---
 panel-plugin/xkb-cairo.h  |   5 +-
 panel-plugin/xkb-dialog.c |  43 +++--
 panel-plugin/xkb-keyboard.c   | 201 ++
 panel-plugin/xkb-keyboard.h   |   9 +-
 panel-plugin/xkb-plugin.c |  39 +---
 panel-plugin/xkb-properties.h |   7 ++
 panel-plugin/xkb-xfconf.c |  32 +++
 panel-plugin/xkb-xfconf.h |   1 +
 9 files changed, 245 insertions(+), 140 deletions(-)

diff --git a/panel-plugin/xkb-cairo.c b/panel-plugin/xkb-cairo.c
index dc77c75..8947f83 100644
--- a/panel-plugin/xkb-cairo.c
+++ b/panel-plugin/xkb-cairo.c
@@ -24,7 +24,6 @@
  */
 
 #include 
-#include 
 
 #include "xkb-cairo.h"
 #include "xkb-util.h"
@@ -33,55 +32,36 @@
 
 void
 xkb_cairo_draw_flag (cairo_t *cr,
- const gchar *group_name,
+ GdkPixbuf *image,
  gint actual_width,
  gint actual_height,
  gint variant_markers_count,
  guint max_variant_markers_count,
- guint scale,
- GdkRGBA rgba)
+ guint scale)
 {
-gchar *filename;
-RsvgHandle *handle;
-RsvgDimensionData dim;
 double scalex, scaley;
-gint i;
+gint i, width, height;
 double layoutx, layouty, img_width, img_height;
 double radius, diameter;
 guint spacing;
 
 g_assert (cr != NULL);
+g_assert (image != NULL);
 
-if (!group_name)
-return;
+width = gdk_pixbuf_get_width (image);
+height = gdk_pixbuf_get_height (image);
 
-filename = xkb_util_get_flag_filename (group_name);
-handle = rsvg_handle_new_from_file (filename, NULL);
-g_free (filename);
-
-if (!handle)
-{
-xkb_cairo_draw_label (cr, group_name,
-actual_width, actual_height,
-variant_markers_count,
-scale,
-rgba);
-return;
-}
-
-rsvg_handle_get_dimensions (handle, );
-
-scalex = (double) (actual_width - 4) / dim.width;
-scaley = (double) (actual_height - 4) / dim.height;
+scalex = (double) (actual_width - 4) / width;
+scaley = (double) (actual_height - 4) / height;
 
 scalex *= scale / 100.0;
 scaley *= scale / 100.0;
 
-img_width  = dim.width * scalex;
-img_height = dim.height * scaley;
+img_width  = width * scalex;
+img_height = height * scaley;
 
 DBG ("scale x/y: %.3f/%.3f, dim w/h: %d/%d, scaled w/h: %.1f/%.1f",
- scalex, scaley, dim.width, dim.height, scalex*dim.width, 
scaley*dim.height);
+ scalex, scaley, width, height, scalex*width, scaley*height);
 
 layoutx = (actual_width - img_width) / 2;
 layouty = (actual_height - img_height) / 2;
@@ -90,7 +70,8 @@ xkb_cairo_draw_flag (cairo_t *cr,
 cairo_save (cr);
 
 cairo_scale (cr, scalex, scaley);
-rsvg_handle_render_cairo (handle, cr);
+gdk_cairo_set_source_pixbuf (cr, image, 0, 0);
+cairo_paint (cr);
 
 cairo_restore (cr);
 
@@ -153,9 +134,6 @@ xkb_cairo_draw_flag (cairo_t *cr,
 cairo_set_source_rgb (cr, 1, 1, 1);
 cairo_stroke (cr);
 }
-
-rsvg_handle_close (handle, NULL);
-g_object_unref (handle);
 }
 
 void
diff --git a/panel-plugin/xkb-cairo.h b/panel-plugin/xkb-cairo.h
index e124760..1da2c6e 100644
--- a/panel-plugin/xkb-cairo.h
+++ b/panel-plugin/xkb-cairo.h
@@ -31,13 +31,12 @@
 #include 
 
 voidxkb_cairo_draw_flag (cairo_t *cr,
- const gchar *flag_name,
+ GdkPixbuf *image,
  gint actual_width,
  gint actual_height,
  gint variant_markers_count,
  guint max_variant_markers_count,
- guint scale,
- GdkRGBA rgba);
+ guint scale);
 
 voidxkb_cairo_draw_label(cairo_t *cr,
  const gchar *group_name,
diff --git a/panel-plugin/xkb-dialog.c b/panel-plugin/xkb-dialog.c
index aa969fd..b7bb0d4 100644
--- 

[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 02/17: Introduce new plugin style

2017-06-10 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-xkb-plugin.

commit d1689c7acb6dca933952c362d197020b37b07d33
Author: Viktor Odintsev 
Date:   Wed Mar 15 17:09:39 2017 +0300

Introduce new plugin style
---
 panel-plugin/xfce4-xkb-plugin-private.h |  2 +
 panel-plugin/xfce4-xkb-plugin.c | 17 +++--
 panel-plugin/xfce4-xkb-plugin.h |  3 +-
 panel-plugin/xkb-cairo.c| 68 -
 panel-plugin/xkb-cairo.h| 40 +++
 panel-plugin/xkb-callbacks.c| 12 +-
 panel-plugin/xkb-settings-dialog.c  |  3 +-
 panel-plugin/xkb-util.c | 29 +-
 panel-plugin/xkb-util.h |  3 +-
 9 files changed, 143 insertions(+), 34 deletions(-)

diff --git a/panel-plugin/xfce4-xkb-plugin-private.h 
b/panel-plugin/xfce4-xkb-plugin-private.h
index c97bd03..98468dc 100644
--- a/panel-plugin/xfce4-xkb-plugin-private.h
+++ b/panel-plugin/xfce4-xkb-plugin-private.h
@@ -31,5 +31,7 @@ voidxfce_xkb_save_config(XfcePanelPlugin 
*plugin,
 
 voidxkb_refresh_gui (t_xkb *xkb);
 
+voidxkb_refresh_gui_and_size(t_xkb *xkb);
+
 #endif
 
diff --git a/panel-plugin/xfce4-xkb-plugin.c b/panel-plugin/xfce4-xkb-plugin.c
index 0486ab1..f3670de 100644
--- a/panel-plugin/xfce4-xkb-plugin.c
+++ b/panel-plugin/xfce4-xkb-plugin.c
@@ -356,16 +356,18 @@ xkb_calculate_sizes (t_xkb *xkb, GtkOrientation 
orientation, gint panel_size)
 {
 guint nrows;
 gint hsize, vsize;
+gboolean proportional;
 
 nrows   = xfce_panel_plugin_get_nrows (xkb->plugin);
 panel_size /= nrows;
+proportional = nrows > 1 || xkb->display_type == DISPLAY_TYPE_SYSTEM;
 TRACE ("calculate_sizes(%p: %d,%d)", xkb, panel_size, nrows);
 
 switch (orientation)
 {
 case GTK_ORIENTATION_HORIZONTAL:
 vsize = panel_size;
-if (nrows > 1)
+if (proportional)
 {
 hsize = panel_size;
 }
@@ -378,7 +380,7 @@ xkb_calculate_sizes (t_xkb *xkb, GtkOrientation 
orientation, gint panel_size)
 break;
 case GTK_ORIENTATION_VERTICAL:
 hsize = panel_size;
-if (nrows > 1)
+if (proportional)
 {
 vsize = panel_size;
 }
@@ -394,7 +396,8 @@ xkb_calculate_sizes (t_xkb *xkb, GtkOrientation 
orientation, gint panel_size)
 break;
 }
 
-DBG ("size requested: h/v (%p: %d/%d)", xkb, hsize, vsize);
+DBG ("size requested: h/v (%p: %d/%d), proportional: %d",
+xkb, hsize, vsize, proportional);
 
 xkb_refresh_gui (xkb);
 return TRUE;
@@ -488,6 +491,14 @@ xkb_refresh_gui (t_xkb *xkb)
 }
 }
 
+void
+xkb_refresh_gui_and_size (t_xkb *xkb)
+{
+xkb_calculate_sizes (xkb,
+xfce_panel_plugin_get_orientation (xkb->plugin),
+xfce_panel_plugin_get_size (xkb->plugin));
+}
+
 static void
 xfce_xkb_configure_layout (GtkWidget *widget,
gpointer user_data)
diff --git a/panel-plugin/xfce4-xkb-plugin.h b/panel-plugin/xfce4-xkb-plugin.h
index 2b1f778..2b1ecbb 100644
--- a/panel-plugin/xfce4-xkb-plugin.h
+++ b/panel-plugin/xfce4-xkb-plugin.h
@@ -39,7 +39,8 @@
 typedef enum
 {
 DISPLAY_TYPE_IMAGE = 0,
-DISPLAY_TYPE_TEXT = 1
+DISPLAY_TYPE_TEXT = 1,
+DISPLAY_TYPE_SYSTEM = 2
 } t_display_type;
 
 typedef enum
diff --git a/panel-plugin/xkb-cairo.c b/panel-plugin/xkb-cairo.c
index ce79214..21deea5 100644
--- a/panel-plugin/xkb-cairo.c
+++ b/panel-plugin/xkb-cairo.c
@@ -184,7 +184,7 @@ xkb_cairo_draw_label (cairo_t *cr,
  actual_width, actual_height, variant_markers_count);
 
 layout = pango_cairo_create_layout (cr);
-normalized_group_name = xkb_util_normalize_group_name (group_name);
+normalized_group_name = xkb_util_normalize_group_name (group_name, FALSE);
 
 if (!normalized_group_name ||
 !g_utf8_validate (normalized_group_name, -1, NULL))
@@ -256,3 +256,69 @@ xkb_cairo_draw_label (cairo_t *cr,
 g_object_unref (layout);
 }
 
+void
+xkb_cairo_draw_label_system (cairo_t *cr,
+ const gchar *group_name,
+ const gint actual_width,
+ const gint actual_height,
+ const gint variant_markers_count,
+ const PangoFontDescription *desc,
+ const GdkRGBA rgba)
+{
+gchar *normalized_group_name;
+gint pango_width, pango_height;
+double layoutx, layouty;
+gint i;
+double radius, diameter;
+PangoLayout *layout;
+
+g_assert (cr != NULL);
+
+DBG ("actual width/height: %d/%d; 

[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 16/17: Cleanup pointers to consts

2017-06-10 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-xkb-plugin.

commit e1a4ae185bc65a3905aff1922f3a2601e25f6c04
Author: Viktor Odintsev 
Date:   Sun Apr 30 18:04:47 2017 +0300

Cleanup pointers to consts
---
 panel-plugin/xkb-cairo.c | 20 ++--
 panel-plugin/xkb-cairo.h | 18 +-
 2 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/panel-plugin/xkb-cairo.c b/panel-plugin/xkb-cairo.c
index 9631ba0..29ad324 100644
--- a/panel-plugin/xkb-cairo.c
+++ b/panel-plugin/xkb-cairo.c
@@ -32,7 +32,7 @@
 
 void
 xkb_cairo_draw_flag (cairo_t *cr,
- GdkPixbuf *image,
+ const GdkPixbuf *image,
  gint actual_width,
  gint actual_height,
  gint variant_markers_count,
@@ -139,11 +139,11 @@ xkb_cairo_draw_flag (cairo_t *cr,
 void
 xkb_cairo_draw_label (cairo_t *cr,
   const gchar *group_name,
-  const gint actual_width,
-  const gint actual_height,
-  const gint variant_markers_count,
-  const guint scale,
-  const GdkRGBA rgba)
+  gint actual_width,
+  gint actual_height,
+  gint variant_markers_count,
+  guint scale,
+  GdkRGBA rgba)
 {
 gchar *normalized_group_name;
 gint pango_width, pango_height;
@@ -235,11 +235,11 @@ xkb_cairo_draw_label (cairo_t *cr,
 void
 xkb_cairo_draw_label_system (cairo_t *cr,
  const gchar *group_name,
- const gint actual_width,
- const gint actual_height,
- const gint variant_markers_count,
+ gint actual_width,
+ gint actual_height,
+ gint variant_markers_count,
  const PangoFontDescription *desc,
- const GdkRGBA rgba)
+ GdkRGBA rgba)
 {
 gchar *normalized_group_name;
 gint pango_width, pango_height;
diff --git a/panel-plugin/xkb-cairo.h b/panel-plugin/xkb-cairo.h
index 1da2c6e..e6ff6d4 100644
--- a/panel-plugin/xkb-cairo.h
+++ b/panel-plugin/xkb-cairo.h
@@ -31,7 +31,7 @@
 #include 
 
 voidxkb_cairo_draw_flag (cairo_t *cr,
- GdkPixbuf *image,
+ const GdkPixbuf *image,
  gint actual_width,
  gint actual_height,
  gint variant_markers_count,
@@ -40,17 +40,17 @@ voidxkb_cairo_draw_flag (cairo_t *cr,
 
 voidxkb_cairo_draw_label(cairo_t *cr,
  const gchar *group_name,
- const gint actual_width,
- const gint actual_height,
- const gint variant_markers_count,
- const guint scale,
- const GdkRGBA rgba);
+ gint actual_width,
+ gint actual_height,
+ gint variant_markers_count,
+ guint scale,
+ GdkRGBA rgba);
 
 voidxkb_cairo_draw_label_system (cairo_t *cr,
  const gchar *group_name,
- const gint actual_width,
- const gint actual_height,
- const gint variant_markers_count,
+ gint actual_width,
+ gint actual_height,
+ gint variant_markers_count,
  const PangoFontDescription *desc,
  GdkRGBA rgba);
 

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] branch master updated (cace06d -> 7f74d7e)

2017-06-10 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-xkb-plugin.

  from  cace06d   I18n: Update translation id (100%).
   new  b6716e8   Port to GTK 3
   new  d1689c7   Introduce new plugin style
   new  0f72f63   Add xfconf support
   new  cc21191   Update settings dialog style
   new  0d77ca9   Allow to hide tooltip icon
   new  862e0e0   Refactor menus and remove deprecations
   new  11377f0   Bug 12630: Fix typo in README
   new  24c154d   Bug 12441: Rename Indian flag filename
   new  bd69f3b   Move xkb-config to xkb-keyboard
   new  7de49ae   Merge xfce4-xkb-plugin and xkb-callbacks
   new  d124b61   Move dialog callbacks to xkb-plugin source
   new  22a54b0   Reorganize includes
   new  0a8d39d   Allow to display language name instead of country name
   new  775f3d6   Fix IT_PROG_INTLTOOL warning
   new  36a6e59   Bug 12294: Use local charset for layout names
   new  e1a4ae1   Cleanup pointers to consts
   new  7f74d7e   Bug 12884: Load flags from XDG_DATA_HOME if present

The 17 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:
 .gitignore |   5 +-
 README |   2 +-
 configure.in.in => configure.ac.in |  22 +-
 flags/Makefile.am  |   2 +-
 flags/{dev.svg => in.svg}  |   0
 panel-plugin/Makefile.am   | 100 +--
 panel-plugin/xfce4-xkb-plugin.c| 512 ---
 panel-plugin/xfce4-xkb-plugin.h|  83 ---
 panel-plugin/xkb-cairo.c   | 180 +++---
 panel-plugin/xkb-cairo.h   |  48 +-
 panel-plugin/xkb-callbacks.c   | 226 ---
 panel-plugin/xkb-callbacks.h   |  78 ---
 panel-plugin/xkb-config.c  | 603 -
 panel-plugin/xkb-config.h  | 125 
 panel-plugin/xkb-dialog.c  | 247 +++
 .../{xkb-settings-dialog.h => xkb-dialog.h}|  11 +-
 panel-plugin/xkb-keyboard.c| 713 
 panel-plugin/xkb-keyboard.h|  87 +++
 panel-plugin/xkb-plugin.c  | 715 +
 panel-plugin/{xkb-util.h => xkb-plugin.h}  |  33 +-
 ...xfce4-xkb-plugin-private.h => xkb-properties.h} |  39 +-
 panel-plugin/xkb-settings-dialog.c | 222 ---
 panel-plugin/xkb-util.c|  40 +-
 panel-plugin/xkb-util.h|   6 +-
 panel-plugin/xkb-xfconf.c  | 308 +
 panel-plugin/xkb-xfconf.h  |  56 ++
 .../{xkb-plugin.desktop.in.in => xkb.desktop.in}   |   4 +-
 po/POTFILES.in |   7 +-
 28 files changed, 2410 insertions(+), 2064 deletions(-)
 rename configure.in.in => configure.ac.in (78%)
 rename flags/{dev.svg => in.svg} (100%)
 delete mode 100644 panel-plugin/xfce4-xkb-plugin.c
 delete mode 100644 panel-plugin/xfce4-xkb-plugin.h
 delete mode 100644 panel-plugin/xkb-callbacks.c
 delete mode 100644 panel-plugin/xkb-callbacks.h
 delete mode 100644 panel-plugin/xkb-config.c
 delete mode 100644 panel-plugin/xkb-config.h
 create mode 100644 panel-plugin/xkb-dialog.c
 rename panel-plugin/{xkb-settings-dialog.h => xkb-dialog.h} (82%)
 create mode 100644 panel-plugin/xkb-keyboard.c
 create mode 100644 panel-plugin/xkb-keyboard.h
 create mode 100644 panel-plugin/xkb-plugin.c
 copy panel-plugin/{xkb-util.h => xkb-plugin.h} (53%)
 rename panel-plugin/{xfce4-xkb-plugin-private.h => xkb-properties.h} (59%)
 delete mode 100644 panel-plugin/xkb-settings-dialog.c
 create mode 100644 panel-plugin/xkb-xfconf.c
 create mode 100644 panel-plugin/xkb-xfconf.h
 rename panel-plugin/{xkb-plugin.desktop.in.in => xkb.desktop.in} (72%)

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 09/17: Move xkb-config to xkb-keyboard

2017-06-10 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-xkb-plugin.

commit bd69f3b3f405db13d0fcd82f56e498aa5743c0eb
Author: Viktor Odintsev 
Date:   Tue Mar 28 10:05:07 2017 +0300

Move xkb-config to xkb-keyboard

XkbKeyboard is the object now.
xkb-config was renamed because "config" may be confusing.
---
 panel-plugin/Makefile.am|   4 +-
 panel-plugin/xfce4-xkb-plugin.c |  32 +-
 panel-plugin/xfce4-xkb-plugin.h |  10 +-
 panel-plugin/xkb-callbacks.c|  32 +-
 panel-plugin/xkb-config.c   | 604 ---
 panel-plugin/xkb-config.h   | 120 ---
 panel-plugin/xkb-keyboard.c | 685 
 panel-plugin/xkb-keyboard.h |  87 +
 panel-plugin/xkb-properties.h   |   4 +-
 panel-plugin/xkb-util.c |   1 -
 10 files changed, 824 insertions(+), 755 deletions(-)

diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index b31f23f..e2fead7 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -11,8 +11,8 @@ libxkb_la_SOURCES = \
xfce4-xkb-plugin.c \
xkb-settings-dialog.h \
xkb-settings-dialog.c \
-   xkb-config.h \
-   xkb-config.c \
+   xkb-keyboard.h \
+   xkb-keyboard.c \
xkb-util.h \
xkb-util.c \
xkb-cairo.h \
diff --git a/panel-plugin/xfce4-xkb-plugin.c b/panel-plugin/xfce4-xkb-plugin.c
index 7dd8556..c08189f 100644
--- a/panel-plugin/xfce4-xkb-plugin.c
+++ b/panel-plugin/xfce4-xkb-plugin.c
@@ -169,8 +169,8 @@ static void
 xkb_plugin_set_group (GtkMenuItem *item,
   gpointer data)
 {
-gint group = GPOINTER_TO_INT (data);
-xkb_config_set_group (group);
+MenuItemData *item_data = data;
+xkb_keyboard_set_group (item_data->xkb->keyboard, item_data->group);
 }
 
 static t_xkb *
@@ -210,7 +210,7 @@ xkb_new (XfcePanelPlugin *plugin)
 g_signal_connect (xkb->btn, "button-release-event",
 G_CALLBACK (xkb_plugin_button_clicked), xkb);
 g_signal_connect (xkb->btn, "scroll-event",
-G_CALLBACK (xkb_plugin_button_scrolled), NULL);
+G_CALLBACK (xkb_plugin_button_scrolled), xkb);
 
 g_object_set (G_OBJECT (xkb->btn), "has-tooltip", TRUE, NULL);
 g_signal_connect (xkb->btn, "query-tooltip",
@@ -222,7 +222,9 @@ xkb_new (XfcePanelPlugin *plugin)
 G_CALLBACK (xkb_plugin_layout_image_draw), xkb);
 gtk_widget_show (GTK_WIDGET (xkb->layout_image));
 
-if (xkb_config_initialize (xkb_xfconf_get_group_policy (xkb->config), 
xkb_state_changed, xkb))
+xkb->keyboard = xkb_keyboard_new (xkb_xfconf_get_group_policy 
(xkb->config),
+xkb_state_changed, xkb);
+if (xkb_keyboard_get_initialized (xkb->keyboard))
 {
 xkb_refresh_gui (xkb);
 xkb_populate_popup_menu (xkb);
@@ -242,12 +244,11 @@ xkb_new (XfcePanelPlugin *plugin)
 static void
 xkb_free (t_xkb *xkb)
 {
-xkb_config_finalize ();
-
 xkb_destroy_popup_menu (xkb);
 gtk_widget_destroy (xkb->layout_image);
 gtk_widget_destroy (xkb->btn);
 
+g_object_unref (G_OBJECT (xkb->keyboard));
 g_object_unref (G_OBJECT (xkb->config));
 
 panel_slice_free (t_xkb, xkb);
@@ -314,6 +315,8 @@ xkb_destroy_popup_menu (t_xkb *xkb)
 {
 gtk_menu_popdown (GTK_MENU (xkb->popup));
 gtk_menu_detach (GTK_MENU (xkb->popup));
+g_free (xkb->popup_user_data);
+xkb->popup_user_data = NULL;
 xkb->popup = NULL;
 }
 }
@@ -324,21 +327,29 @@ xkb_populate_popup_menu (t_xkb *xkb)
 gint i, group_count;
 gchar *layout_string;
 GtkWidget *menu_item;
+MenuItemData *popup_user_data;
 
 if (G_UNLIKELY (xkb == NULL)) return;
 
+group_count = xkb_keyboard_get_group_count (xkb->keyboard);
+
 xkb_destroy_popup_menu (xkb);
 xkb->popup = gtk_menu_new ();
+xkb->popup_user_data = g_new0 (MenuItemData, group_count);
+
+popup_user_data = xkb->popup_user_data;
 
-group_count = xkb_config_get_group_count ();
 for (i = 0; i < group_count; i++)
 {
-layout_string = xkb_config_get_pretty_layout_name (i);
+layout_string = xkb_keyboard_get_pretty_layout_name (xkb->keyboard, i);
 
 menu_item = gtk_menu_item_new_with_label (layout_string);
 
+popup_user_data[i].xkb = xkb;
+popup_user_data[i].group = i;
+
 g_signal_connect (G_OBJECT (menu_item), "activate",
-G_CALLBACK (xkb_plugin_set_group), GINT_TO_POINTER (i));
+G_CALLBACK (xkb_plugin_set_group), _user_data[i]);
 
 gtk_widget_show (menu_item);
 gtk_menu_shell_append (GTK_MENU_SHELL (xkb->popup), menu_item);
@@ -415,5 +426,6 @@ xkb_plugin_display_scale_changed (t_xkb *xkb)
 static void
 xkb_plugin_group_policy_changed 

[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 08/17: Bug 12441: Rename Indian flag filename

2017-06-10 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-xkb-plugin.

commit 24c154d92fbd2a0973512a5e68c56e3184fed4ef
Author: Viktor Odintsev 
Date:   Mon Mar 20 20:56:28 2017 +0300

Bug 12441: Rename Indian flag filename
---
 flags/Makefile.am | 2 +-
 flags/{dev.svg => in.svg} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/flags/Makefile.am b/flags/Makefile.am
index dd87f73..794254e 100644
--- a/flags/Makefile.am
+++ b/flags/Makefile.am
@@ -18,7 +18,7 @@ flags_DATA = ae.svg \
cu.svg \
cz.svg \
de.svg \
-   dev.svg \
+   in.svg \
dj.svg \
dk.svg \
dvorak.svg \
diff --git a/flags/dev.svg b/flags/in.svg
similarity index 100%
rename from flags/dev.svg
rename to flags/in.svg

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 01/17: Port to GTK 3

2017-06-10 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-xkb-plugin.

commit b6716e83da0e98b63ea1203f7ef766e1c498e45c
Author: Viktor Odintsev 
Date:   Wed Mar 15 15:10:13 2017 +0300

Port to GTK 3
---
 .gitignore |  5 +-
 configure.in.in => configure.ac.in | 19 ++---
 panel-plugin/Makefile.am   | 95 --
 panel-plugin/xfce4-xkb-plugin.c| 50 +++-
 panel-plugin/xfce4-xkb-plugin.h| 15 
 panel-plugin/xkb-cairo.c   | 52 +++-
 panel-plugin/xkb-cairo.h   | 11 +--
 panel-plugin/xkb-callbacks.c   | 80 +-
 panel-plugin/xkb-callbacks.h   | 16 +---
 panel-plugin/xkb-config.c  |  3 +-
 panel-plugin/xkb-settings-dialog.c | 41 ++
 panel-plugin/xkb-util.c|  1 -
 .../{xkb-plugin.desktop.in.in => xkb.desktop.in}   |  4 +-
 po/POTFILES.in |  3 +-
 14 files changed, 158 insertions(+), 237 deletions(-)

diff --git a/.gitignore b/.gitignore
index eb0ea70..238f737 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,7 +6,10 @@ po/*.gmo
 *.o
 *.tar.*
 config.*
-configure*
 m4/*.m4
 *.m4
 *.in
+/configure*
+!/configure.ac.in
+!/po/POTFILES.in
+!/panel-plugin/xkb.desktop.in
diff --git a/configure.in.in b/configure.ac.in
similarity index 78%
rename from configure.in.in
rename to configure.ac.in
index c35d72d..933982d 100644
--- a/configure.in.in
+++ b/configure.ac.in
@@ -34,6 +34,7 @@ dnl ***
 AM_INIT_AUTOMAKE([1.8 dist-bzip2 tar-ustar])
 AM_CONFIG_HEADER([config.h])
 AM_MAINTAINER_MODE()
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 
 dnl ***
 dnl *** Check for UNIX variants ***
@@ -70,16 +71,14 @@ XDT_I18N([@LINGUAS@])
 dnl ***
 dnl *** Check for required packages ***
 dnl ***
-XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.6.0])
-XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.8.0])
-XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.8.0])
-XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.8.0])
-XDT_CHECK_PACKAGE([LIBXKLAVIER], [libxklavier], [5.0])
-XDT_CHECK_PACKAGE([LIBRSVG], [librsvg-2.0], [2.18])
-dnl check librsvg version to see if including headers other than rsvg.h is 
deprecated
-XDT_CHECK_OPTIONAL_PACKAGE([LIBRSVG_2_36_2], [librsvg-2.0], [2.36.2], 
[librsvg_2.36.2], [deprecated includes of librsvg header files (always leave 
enabled)], yes)
-XDT_CHECK_PACKAGE([LIBWNCK], [libwnck-1.0], [2.12])
-XDT_CHECK_PACKAGE([GARCON], [garcon-1], [0.1.5])
+XDT_CHECK_PACKAGE([GTK], [gtk+-3.0], [3.20.0])
+XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-2.0], [4.12.0])
+XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.12.0])
+XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-2], [4.12.0])
+XDT_CHECK_PACKAGE([LIBXKLAVIER], [libxklavier], [5.4])
+XDT_CHECK_PACKAGE([LIBRSVG], [librsvg-2.0], [2.40])
+XDT_CHECK_PACKAGE([LIBWNCK], [libwnck-3.0], [3.14])
+XDT_CHECK_PACKAGE([GARCON], [garcon-1], [0.4.0])
 
 dnl ***
 dnl *** Check for debugging support ***
diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index a4bb4c3..dc33005 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -1,65 +1,72 @@
 # $Id$
 
-plugindir = $(libexecdir)/xfce4/panel-plugins
+plugindir = \
+   $(libdir)/xfce4/panel/plugins
 
-plugin_PROGRAMS = xfce4-xkb-plugin
+plugin_LTLIBRARIES = \
+   libxkb.la
 
-xfce4_xkb_plugin_SOURCES = 
\
-   xfce4-xkb-plugin.h  
\
-   xfce4-xkb-plugin-private.h  
\
-   xfce4-xkb-plugin.c  
\
-   xkb-settings-dialog.h   
\
-   xkb-settings-dialog.c   
\
-   xkb-config.h
\
-   xkb-config.c
\
-   xkb-util.h  
\
-   xkb-util.c  
\
-   xkb-cairo.h 
\
-   xkb-cairo.c 
   

[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 11/17: Move dialog callbacks to xkb-plugin source

2017-06-10 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-xkb-plugin.

commit d124b618cd7eff9fcf7e3d8bbb1c20d31f311b43
Author: Viktor Odintsev 
Date:   Wed Mar 29 13:59:50 2017 +0300

Move dialog callbacks to xkb-plugin source
---
 panel-plugin/Makefile.am   | 14 +++---
 .../{xkb-settings-dialog.c => xkb-dialog.c}| 58 ++
 .../{xkb-settings-dialog.h => xkb-dialog.h}|  7 +--
 panel-plugin/xkb-plugin.c  | 27 ++
 panel-plugin/xkb-plugin.h  |  2 -
 po/POTFILES.in |  2 +-
 6 files changed, 44 insertions(+), 66 deletions(-)

diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index 177c945..164a6c5 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -9,17 +9,17 @@ plugin_LTLIBRARIES = \
 libxkb_la_SOURCES = \
xkb-plugin.h \
xkb-plugin.c \
-   xkb-settings-dialog.h \
-   xkb-settings-dialog.c \
+   xkb-properties.h \
xkb-keyboard.h \
xkb-keyboard.c \
-   xkb-util.h \
-   xkb-util.c \
+   xkb-dialog.h \
+   xkb-dialog.c \
+   xkb-xfconf.h \
+   xkb-xfconf.c \
xkb-cairo.h \
xkb-cairo.c \
-   xkb-properties.h \
-   xkb-xfconf.h \
-   xkb-xfconf.c
+   xkb-util.h \
+   xkb-util.c
 
 libxkb_la_CPPFLAGS = \
-I$(top_srcdir) \
diff --git a/panel-plugin/xkb-settings-dialog.c b/panel-plugin/xkb-dialog.c
similarity index 88%
rename from panel-plugin/xkb-settings-dialog.c
rename to panel-plugin/xkb-dialog.c
index 4b2ca15..5d378ed 100644
--- a/panel-plugin/xkb-settings-dialog.c
+++ b/panel-plugin/xkb-dialog.c
@@ -1,5 +1,5 @@
 /* vim: set backspace=2 ts=4 softtabstop=4 sw=4 cinoptions=>4 expandtab 
autoindent smartindent: */
-/* xkb-settings-dialog.c
+/* xkb-dialog.c
  * Copyright (C) 2008 Alexander Iliev 
  *
  * Parts of this program comes from the XfKC tool:
@@ -35,48 +35,19 @@
 #include 
 
 #include "xkb-plugin.h"
-#include "xkb-settings-dialog.h"
+#include "xkb-dialog.h"
 #include "xkb-util.h"
 
-GtkTreeIter current_iter;
-GtkWidget *settings_dialog;
-GtkWidget *default_layout_menu;
-
 typedef struct
 {
 XfcePanelPlugin *plugin;
 GtkWidget *display_scale_range;
 } DialogInstance;
 
-enum combo_enum
-{
-DESC = 0,
-NOM,
-COMBO_NUM
-};
-
-enum tree_enum
-{
-DEFAULT_LAYOUT = 0,
-LAYOUTS,
-VARIANTS,
-TREE_NUM
-};
-
-enum enumeration
-{
-AVAIL_LAYOUT_TREE_COL_DESCRIPTION = 0,
-AVAIL_LAYOUT_TREE_COL_ID,
-NUM
-};
-
-
-/**/
-
 static void
-on_settings_close (GtkDialog *dialog,
-   gint response,
-   DialogInstance *instance)
+xkb_dialog_on_settings_close (GtkDialog *dialog,
+  gint response,
+  DialogInstance *instance)
 {
 xfce_panel_plugin_unblock_menu (instance->plugin);
 gtk_widget_destroy (GTK_WIDGET (dialog));
@@ -84,8 +55,8 @@ on_settings_close (GtkDialog *dialog,
 }
 
 static void
-on_display_type_changed (GtkComboBox *cb,
- DialogInstance *instance)
+xkb_dialog_on_display_type_changed (GtkComboBox *cb,
+DialogInstance *instance)
 {
 gint active = gtk_combo_box_get_active (cb);
 gtk_widget_set_sensitive (instance->display_scale_range,
@@ -93,20 +64,19 @@ on_display_type_changed (GtkComboBox *cb,
 }
 
 void
-xkb_plugin_configure_plugin (XfcePanelPlugin *plugin)
+xkb_dialog_configure_plugin (XfcePanelPlugin *plugin,
+ XkbXfconf *config)
 {
+GtkWidget *settings_dialog;
 GtkWidget *display_type_combo;
 GtkWidget *display_scale_range;
 GtkWidget *display_tooltip_icon_switch;
 GtkWidget *group_policy_combo;
 GtkWidget *vbox, *frame, *bin, *grid, *label;
-XkbXfconf *config;
 DialogInstance *instance;
 
 xfce_panel_plugin_block_menu (plugin);
 
-config = xkb_plugin_get_config (XKB_PLUGIN (plugin));
-
 instance = g_new0 (DialogInstance, 1);
 instance->plugin = plugin;
 
@@ -191,12 +161,12 @@ xkb_plugin_configure_plugin (XfcePanelPlugin *plugin)
 gtk_widget_show_all (vbox);
 
 g_signal_connect ((gpointer) settings_dialog, "response",
-G_CALLBACK (on_settings_close), instance);
+G_CALLBACK (xkb_dialog_on_settings_close), instance);
 
 /* enable or disable display_scale_range depending on display type */
 g_signal_connect (display_type_combo, "changed",
-G_CALLBACK (on_display_type_changed), instance);
-on_display_type_changed (GTK_COMBO_BOX (display_type_combo), instance);
+G_CALLBACK 

[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 03/17: Add xfconf support

2017-06-10 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-xkb-plugin.

commit 0f72f634988fe39eb9e07ec1803e2310957a50cb
Author: Viktor Odintsev 
Date:   Wed Mar 15 22:06:11 2017 +0300

Add xfconf support
---
 configure.ac.in|   1 +
 panel-plugin/Makefile.am   |   8 +-
 panel-plugin/xfce4-xkb-plugin.c| 155 -
 panel-plugin/xfce4-xkb-plugin.h|  20 +-
 panel-plugin/xkb-cairo.c   |  15 +-
 panel-plugin/xkb-cairo.h   |   5 +-
 panel-plugin/xkb-callbacks.c   |  13 +-
 panel-plugin/xkb-config.h  |   7 +-
 ...xfce4-xkb-plugin-private.h => xkb-properties.h} |  30 ++-
 panel-plugin/xkb-settings-dialog.c | 102 -
 panel-plugin/xkb-xfconf.c  | 244 +
 panel-plugin/xkb-xfconf.h  |  53 +
 12 files changed, 432 insertions(+), 221 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index 933982d..4581ac1 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -75,6 +75,7 @@ XDT_CHECK_PACKAGE([GTK], [gtk+-3.0], [3.20.0])
 XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-2.0], [4.12.0])
 XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.12.0])
 XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-2], [4.12.0])
+XDT_CHECK_PACKAGE([XFCONF], [libxfconf-0], [4.12.1])
 XDT_CHECK_PACKAGE([LIBXKLAVIER], [libxklavier], [5.4])
 XDT_CHECK_PACKAGE([LIBRSVG], [librsvg-2.0], [2.40])
 XDT_CHECK_PACKAGE([LIBWNCK], [libwnck-3.0], [3.14])
diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index dc33005..b31f23f 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -8,7 +8,6 @@ plugin_LTLIBRARIES = \
 
 libxkb_la_SOURCES = \
xfce4-xkb-plugin.h \
-   xfce4-xkb-plugin-private.h \
xfce4-xkb-plugin.c \
xkb-settings-dialog.h \
xkb-settings-dialog.c \
@@ -19,7 +18,10 @@ libxkb_la_SOURCES = \
xkb-cairo.h \
xkb-cairo.c \
xkb-callbacks.h \
-   xkb-callbacks.c
+   xkb-callbacks.c \
+   xkb-properties.h \
+   xkb-xfconf.h \
+   xkb-xfconf.c
 
 libxkb_la_CPPFLAGS = \
-I$(top_srcdir) \
@@ -30,6 +32,7 @@ libxkb_la_CFLAGS = \
$(LIBXFCE4PANEL_CFLAGS) \
$(LIBXFCE4UTIL_CFLAGS) \
$(LIBXFCE4UI_CFLAGS) \
+   $(XFCONF_CFLAGS) \
$(LIBXKLAVIER_CFLAGS) \
$(LIBRSVG_CFLAGS) \
$(LIBWNCK_CFLAGS) \
@@ -50,6 +53,7 @@ libxkb_la_LIBADD = \
$(LIBXFCE4PANEL_LIBS) \
$(LIBXFCE4UTIL_LIBS) \
$(LIBXFCE4UI_LIBS) \
+   $(XFCONF_LIBS) \
$(LIBXKLAVIER_LIBS) \
$(LIBWNCK_LIBS) \
$(GARCON_LIBS) \
diff --git a/panel-plugin/xfce4-xkb-plugin.c b/panel-plugin/xfce4-xkb-plugin.c
index f3670de..8f59431 100644
--- a/panel-plugin/xfce4-xkb-plugin.c
+++ b/panel-plugin/xfce4-xkb-plugin.c
@@ -36,14 +36,11 @@
 #include 
 
 #include "xfce4-xkb-plugin.h"
-#include "xfce4-xkb-plugin-private.h"
 #include "xkb-settings-dialog.h"
 #include "xkb-util.h"
 #include "xkb-cairo.h"
 #include "xkb-callbacks.h"
-
-#define DISPLAY_TEXTSCALE_LARGE 100
-#define DISPLAY_IMGSCALE_LARGE  100
+#include "xkb-properties.h"
 
 /* -- *
  * Panel Plugin Interface *
@@ -74,18 +71,20 @@ static gboolean xkb_calculate_sizes 
(t_xkb *xkb,
  GtkOrientation 
orientation,
  gint panel_size);
 
-static gboolean xkb_load_config (t_xkb *xkb,
- const gchar 
*filename);
-
-static void xkb_load_default(t_xkb *xkb);
-
 static void xkb_populate_popup_menu (t_xkb *xkb);
 
 static void xkb_destroy_popup_menu  (t_xkb *xkb);
 
+static void xkb_refresh_gui (t_xkb *xkb);
+
 static void xfce_xkb_configure_layout   (GtkWidget *widget,
  gpointer user_data);
 
+static void xkb_plugin_display_type_changed (t_xkb *xkb);
+
+static void xkb_plugin_display_scale_changed(t_xkb *xkb);
+
+static void xkb_plugin_group_policy_changed (t_xkb *xkb);
 
 /* == *
  *Implementation  *
@@ -116,9 +115,6 @@ xfce_xkb_construct (XfcePanelPlugin *plugin)
 g_signal_connect (plugin, "free-data",
 

[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 12/17: Reorganize includes

2017-06-10 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-xkb-plugin.

commit 22a54b07f5ee80940fe419152c1530f8d0cf8dbb
Author: Viktor Odintsev 
Date:   Fri Mar 31 10:08:43 2017 +0300

Reorganize includes
---
 panel-plugin/xkb-cairo.c  |  7 ++---
 panel-plugin/xkb-cairo.h  |  3 --
 panel-plugin/xkb-dialog.c |  7 +
 panel-plugin/xkb-dialog.h |  4 +++
 panel-plugin/xkb-keyboard.c   | 19 +
 panel-plugin/xkb-keyboard.h   |  1 -
 panel-plugin/xkb-plugin.c | 66 +--
 panel-plugin/xkb-plugin.h |  9 +-
 panel-plugin/xkb-properties.h |  1 -
 panel-plugin/xkb-util.c   |  2 --
 panel-plugin/xkb-util.h   |  3 --
 panel-plugin/xkb-xfconf.c |  9 +++---
 panel-plugin/xkb-xfconf.h |  7 +++--
 13 files changed, 50 insertions(+), 88 deletions(-)

diff --git a/panel-plugin/xkb-cairo.c b/panel-plugin/xkb-cairo.c
index e04f125..dc77c75 100644
--- a/panel-plugin/xkb-cairo.c
+++ b/panel-plugin/xkb-cairo.c
@@ -23,11 +23,11 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
+#include 
+#include 
+
 #include "xkb-cairo.h"
 #include "xkb-util.h"
-#include "xkb-plugin.h"
-
-#include 
 
 #define XKB_PREFERRED_FONT "Courier New, Courier 10 Pitch, Monospace Bold"
 
@@ -320,4 +320,3 @@ xkb_cairo_draw_label_system (cairo_t *cr,
 g_free (normalized_group_name);
 g_object_unref (layout);
 }
-
diff --git a/panel-plugin/xkb-cairo.h b/panel-plugin/xkb-cairo.h
index b08b1e3..e124760 100644
--- a/panel-plugin/xkb-cairo.h
+++ b/panel-plugin/xkb-cairo.h
@@ -26,8 +26,6 @@
 #ifndef _XKB_CAIRO_H_
 #define _XKB_CAIRO_H_
 
-#include 
-#include 
 #include 
 #include 
 #include 
@@ -58,4 +56,3 @@ voidxkb_cairo_draw_label_system (cairo_t *cr,
  GdkRGBA rgba);
 
 #endif
-
diff --git a/panel-plugin/xkb-dialog.c b/panel-plugin/xkb-dialog.c
index 5d378ed..aa969fd 100644
--- a/panel-plugin/xkb-dialog.c
+++ b/panel-plugin/xkb-dialog.c
@@ -27,16 +27,11 @@
 #include 
 #endif
 
-#include 
-#include 
-#include 
-
-#include 
 #include 
 
 #include "xkb-plugin.h"
+#include "xkb-properties.h"
 #include "xkb-dialog.h"
-#include "xkb-util.h"
 
 typedef struct
 {
diff --git a/panel-plugin/xkb-dialog.h b/panel-plugin/xkb-dialog.h
index 1e2e848..7305794 100644
--- a/panel-plugin/xkb-dialog.h
+++ b/panel-plugin/xkb-dialog.h
@@ -26,6 +26,10 @@
 #ifndef __XKB_SETTINGS_DIALOG_H__
 #define __XKB_SETTINGS_DIALOG_H__
 
+#include 
+
+#include "xkb-xfconf.h"
+
 voidxkb_dialog_configure_plugin(XfcePanelPlugin *plugin,
 XkbXfconf *config);
 voidxkb_dialog_about_show  (void);
diff --git a/panel-plugin/xkb-keyboard.c b/panel-plugin/xkb-keyboard.c
index 5730a4a..fd1dd8b 100644
--- a/panel-plugin/xkb-keyboard.c
+++ b/panel-plugin/xkb-keyboard.c
@@ -23,30 +23,13 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifdef HAVE_CONFIG_H
-#include 
-#endif
-
 #include "xkb-keyboard.h"
 #include "xkb-util.h"
 
-#include 
-#include 
-#include 
-
-#include 
-
-#include 
-#include 
-#include 
 #include 
+#include 
 #include 
 
-#ifndef DEBUG
-#undef G_DISABLE_ASSERT
-#define G_DISABLE_ASSERT
-#endif
-
 typedef struct
 {
 gchar*group_name;
diff --git a/panel-plugin/xkb-keyboard.h b/panel-plugin/xkb-keyboard.h
index 213e353..62096e4 100644
--- a/panel-plugin/xkb-keyboard.h
+++ b/panel-plugin/xkb-keyboard.h
@@ -27,7 +27,6 @@
 #define _xkb_keyboard_H_
 
 #include 
-#include 
 
 #include "xkb-properties.h"
 
diff --git a/panel-plugin/xkb-plugin.c b/panel-plugin/xkb-plugin.c
index 2b316b0..128322c 100644
--- a/panel-plugin/xkb-plugin.c
+++ b/panel-plugin/xkb-plugin.c
@@ -27,19 +27,16 @@
 #include 
 #endif
 
-#include 
-#include 
-
+#include 
 #include 
-
 #include 
 #include 
 
 #include "xkb-plugin.h"
+#include "xkb-properties.h"
+#include "xkb-keyboard.h"
 #include "xkb-dialog.h"
-#include "xkb-util.h"
 #include "xkb-cairo.h"
-#include "xkb-properties.h"
 
 typedef struct
 {
@@ -325,7 +322,7 @@ xkb_plugin_calculate_sizes (XkbPlugin *plugin,
 guint nrows;
 gint hsize, vsize;
 gboolean proportional;
-guint display_type;
+XkbDisplayType display_type;
 
 display_type = xkb_xfconf_get_display_type (plugin->config);
 nrows = xfce_panel_plugin_get_nrows (XFCE_PANEL_PLUGIN (plugin));
@@ -591,7 +588,8 @@ xkb_plugin_layout_image_draw (GtkWidget *widget,
 PangoFontDescription *desc;
 GdkRGBA rgba;
 gint actual_hsize, actual_vsize;
-gint display_type, display_scale;
+XkbDisplayType display_type;
+gint display_scale;
 
 display_type = xkb_xfconf_get_display_type (plugin->config);
 display_scale = 

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

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

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

commit afd1990224f7e502d2a785004f3e9154ba0e303b
Author: Dušan Kazik 
Date:   Sat Jun 10 12:31:47 2017 +0200

I18n: Update translation sk (100%).

35 translated messages.

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

diff --git a/po/sk.po b/po/sk.po
index daa44ff..615edd5 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,35 +3,41 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Dušan Kazik , 2017
 # Slavko , 2015
 # Tomáš Vadina , 2011-2012
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-11-16 12:31+0100\n"
-"PO-Revision-Date: 2015-02-26 11:31+\n"
-"Last-Translator: Slavko \n"
-"Language-Team: Slovak 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/sk/)\n"
+"POT-Creation-Date: 2017-06-09 12:31+0200\n"
+"PO-Revision-Date: 2017-06-10 08:12+\n"
+"Last-Translator: Dušan Kazik \n"
+"Language-Team: Slovak 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/sk/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: sk\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: ../panel-plugin/netload.c:62
+#. Defaults
+#: ../panel-plugin/netload.c:42
+msgid "Net"
+msgstr "Sieť"
+
+#: ../panel-plugin/netload.c:61
 msgid "Xfce4-Netload-Plugin"
 msgstr "Xfce4-Netload-Plugin"
 
-#: ../panel-plugin/netload.c:65
+#: ../panel-plugin/netload.c:64
 msgid "Unknown error."
 msgstr "Neznáma chyba."
 
-#: ../panel-plugin/netload.c:66
+#: ../panel-plugin/netload.c:65
 msgid "Linux proc device '/proc/net/dev' not found."
 msgstr "Linuxové zariadenie proc '/proc/net/dev' nebolo nájdené."
 
-#: ../panel-plugin/netload.c:67
+#: ../panel-plugin/netload.c:66
 msgid "Interface was not found."
 msgstr "Rozhranie nebolo nájdené."
 
@@ -55,82 +61,78 @@ msgstr "<< %s >> (%s)\nPriemer posledných %d meraní\ns 
intervalom %.2fs:\nPrij
 msgid "no IP address"
 msgstr "žiadna IP adresa"
 
-#: ../panel-plugin/netload.c:585
+#: ../panel-plugin/netload.c:642
 #, c-format
 msgid ""
 "%s: Error in initializing:\n"
 "%s"
 msgstr "%s: Chyba pri inicializácii:\n%s"
 
-#: ../panel-plugin/netload.c:914
-msgid "Select color"
-msgstr "Vyberte farbu"
-
-#: ../panel-plugin/netload.c:981
+#: ../panel-plugin/netload.c:980
 msgid "Bar color (i_ncoming):"
 msgstr "Farba panela (_prichádzajúce):"
 
-#: ../panel-plugin/netload.c:982
+#: ../panel-plugin/netload.c:981
 msgid "Bar color (_outgoing):"
 msgstr "Farba panela (_odchádzajúce):"
 
-#: ../panel-plugin/netload.c:985
+#: ../panel-plugin/netload.c:984
 msgid "Maximum (inco_ming):"
 msgstr "Maximum (pri_chádzajúce):"
 
-#: ../panel-plugin/netload.c:986
+#: ../panel-plugin/netload.c:985
 msgid "Maximum (o_utgoing):"
 msgstr "Maximum (odc_hádzajúce):"
 
-#: ../panel-plugin/netload.c:991 ../panel-plugin/netload.desktop.in.in.h:1
+#: ../panel-plugin/netload.c:990 ../panel-plugin/netload.desktop.in.in.h:1
 msgid "Network Monitor"
 msgstr "Sledovanie siete"
 
-#: ../panel-plugin/netload.c:1020
+#: ../panel-plugin/netload.c:1019
 msgid "_Text to display:"
 msgstr "Zobrazený _text:"
 
-#: ../panel-plugin/netload.c:1049
+#: ../panel-plugin/netload.c:1050
 msgid "Network _device:"
 msgstr "Sieťové zaria_denie:"
 
-#: ../panel-plugin/netload.c:1074
+#: ../panel-plugin/netload.c:1077
 msgid "Update _interval:"
 msgstr "_Interval obnovenia:"
 
-#: ../panel-plugin/netload.c:1087
+#: ../panel-plugin/netload.c:1090
 msgid "s"
 msgstr "s"
 
-#: ../panel-plugin/netload.c:1101
+#: ../panel-plugin/netload.c:1104
 msgid "Show values as _bits"
 msgstr "Zobraziť hodnoty ako _bity"
 
-#: ../panel-plugin/netload.c:1115
+#: ../panel-plugin/netload.c:1118
 msgid "_Automatic maximum"
 msgstr "_Automatické maximum"
 
-#: ../panel-plugin/netload.c:1149
+#: ../panel-plugin/netload.c:1152
 msgid "KiB/s"
 msgstr "KiB/s"
 
-#: ../panel-plugin/netload.c:1174
+#: ../panel-plugin/netload.c:1177
 msgid "_Present data as:"
 msgstr "_Prezentovať dáta ako:"
 
-#: ../panel-plugin/netload.c:1183
+#: ../panel-plugin/netload.c:1186
 msgid "Bars"
 msgstr "Panely"
 
-#: ../panel-plugin/netload.c:1184
+#: ../panel-plugin/netload.c:1187
 msgid "Values"
 msgstr "Hodnoty"
 
-#: ../panel-plugin/netload.c:1185
+#: ../panel-plugin/netload.c:1188
 msgid "Bars and values"
 msgstr "Panely a hodnoty"
 
-#: ../panel-plugin/netload.c:1235
+#: 

[Xfce4-commits] [panel-plugins/xfce4-netload-plugin] branch master updated (739444f -> afd1990)

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

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

  from  739444f   I18n: Update translation zh_TW (100%).
   new  afd1990   I18n: Update translation sk (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/sk.po | 62 --
 1 file changed, 32 insertions(+), 30 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-cpufreq-plugin] branch master updated (5c45ed8 -> 9b297c9)

2017-06-10 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-cpufreq-plugin.

  from  5c45ed8   I18n: Update translation zh_TW (100%).
   new  9b297c9   I18n: Update translation sk (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/sk.po | 58 +-
 1 file changed, 33 insertions(+), 25 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-cpufreq-plugin] 01/01: I18n: Update translation sk (100%).

2017-06-10 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-cpufreq-plugin.

commit 9b297c944f6df0c1eb7c8729ba299c94cb3d4418
Author: Dušan Kazik 
Date:   Sat Jun 10 12:31:29 2017 +0200

I18n: Update translation sk (100%).

41 translated messages.

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

diff --git a/po/sk.po b/po/sk.po
index e0f547f..208e2ec 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-05-17 06:31+0200\n"
-"PO-Revision-Date: 2017-05-21 07:42+\n"
+"POT-Creation-Date: 2017-06-09 06:31+0200\n"
+"PO-Revision-Date: 2017-06-10 08:14+\n"
 "Last-Translator: Dušan Kazik \n"
 "Language-Team: Slovak 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/sk/)\n"
 "MIME-Version: 1.0\n"
@@ -36,64 +36,72 @@ msgstr "Pravým tlačidlom vrátite predvolené písmo."
 msgid "Select font"
 msgstr "Vyberte písmo"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:187
+#: ../panel-plugin/xfce4-cpufreq-configure.c:199
 msgid "Configure CPU Frequency Monitor"
 msgstr "Nastavenie sledovania frekvencie procesora"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:192
+#: ../panel-plugin/xfce4-cpufreq-configure.c:204
 msgid "Configure the CPU frequency plugin"
 msgstr "Nastaviť zásuvný modul frekvencie procesora"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:210
+#: ../panel-plugin/xfce4-cpufreq-configure.c:222
 msgid "Monitor"
 msgstr "Monitor"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:233
+#: ../panel-plugin/xfce4-cpufreq-configure.c:245
 msgid "_Update interval:"
 msgstr "Interval _obnovenia:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:251
+#: ../panel-plugin/xfce4-cpufreq-configure.c:263
 msgid "Panel"
 msgstr "Panel"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:275
+#: ../panel-plugin/xfce4-cpufreq-configure.c:287
 msgid "_Font:"
 msgstr "_Písmo:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:294
+#: ../panel-plugin/xfce4-cpufreq-configure.c:306
+msgid "_Font color:"
+msgstr "_Farba písma:"
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:316
+msgid "Select font color"
+msgstr "Vybrať farbu písma"
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:326
 msgid "_Display CPU:"
 msgstr "_Zobraziť CPU:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:310
+#: ../panel-plugin/xfce4-cpufreq-configure.c:342
 msgid "min"
 msgstr "min"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:311
+#: ../panel-plugin/xfce4-cpufreq-configure.c:343
 msgid "avg"
 msgstr "priem"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:312
+#: ../panel-plugin/xfce4-cpufreq-configure.c:344
 msgid "max"
 msgstr "max"
 
 #. check buttons for display widgets in panel
-#: ../panel-plugin/xfce4-cpufreq-configure.c:318
+#: ../panel-plugin/xfce4-cpufreq-configure.c:350
 msgid "_Keep compact"
 msgstr "_Kompaktné"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:323
+#: ../panel-plugin/xfce4-cpufreq-configure.c:355
 msgid "Show text in a single _line"
 msgstr "Zobraziť text v _jednom riadku"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:328
+#: ../panel-plugin/xfce4-cpufreq-configure.c:360
 msgid "Show CPU _icon"
 msgstr "Zobraziť _ikonu CPU"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:335
+#: ../panel-plugin/xfce4-cpufreq-configure.c:367
 msgid "Show CPU fre_quency"
 msgstr "Zobraziť fre_kvenciu CPU"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:340
+#: ../panel-plugin/xfce4-cpufreq-configure.c:372
 msgid "Show CPU _governor"
 msgstr "Zobraziť _správcu CPU"
 
@@ -144,11 +152,11 @@ msgstr "aktuálny priem"
 msgid "current max"
 msgstr "aktuálne max"
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:367
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:383
 msgid "No CPU information available."
 msgstr "Nie sú dostupné informácie o oCPU"
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:373
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:389
 #, c-format
 msgid "%d cpu available"
 msgid_plural "%d cpus available"
@@ -156,29 +164,29 @@ msgstr[0] "%d dostupných procesorov"
 msgstr[1] "%d dostupný procesor"
 msgstr[2] "%d dostupné procesory"
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:380
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:396
 msgid "Frequency: "
 msgstr "Frekvencia:"
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:388
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:404
 msgid "Governor: "
 msgstr "Správca:"
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:645
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:669
 #: ../panel-plugin/cpufreq.desktop.in.h:2
 msgid "Show CPU frequencies and governor"
 msgstr "Zobraziť frekvenciu a správcu CPU"
 

[Xfce4-commits] [xfce/tumbler] branch master updated (550c35d -> 5d78207)

2017-06-10 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  550c35d   I18n: Update translation zh_CN (100%).
   new  5d78207   I18n: Update translation nl (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/nl.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] 01/01: I18n: Update translation nl (100%).

2017-06-10 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 5d7820785f3dd76f1dd10eb03d869c4f4cd1d37e
Author: Pjotr 
Date:   Sat Jun 10 12:30:43 2017 +0200

I18n: Update translation nl (100%).

39 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 747c4f6..f689725 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Tumbler\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-05-28 12:30+0200\n"
-"PO-Revision-Date: 2017-05-29 08:23+\n"
+"PO-Revision-Date: 2017-06-10 10:30+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch (http://www.transifex.com/xfce/tumbler/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -108,7 +108,7 @@ msgstr "RGB-kleurruimte"
 #: ../tumbler/tumbler-cache-plugin.c:145
 #, c-format
 msgid "Cache plugin \"%s\" lacks required symbols"
-msgstr "De opslag-invoegtoepassing '%s' ontbeert de vereiste symbolen"
+msgstr "Het opslag-invoegsel '%s' ontbeert de vereiste symbolen"
 
 #: ../tumbler/tumbler-cache-plugin.c:153
 #, c-format

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


[Xfce4-commits] [xfce/thunar] branch master updated (f522139 -> 5b90d36)

2017-06-10 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  f522139   I18n: Update translation ko (100%).
   new  5b90d36   I18n: Update translation nl (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/nl.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

2017-06-10 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 5b90d36f94df19e2fb72f62b283ff0b0364c9691
Author: Pjotr 
Date:   Sat Jun 10 12:30:21 2017 +0200

I18n: Update translation nl (100%).

738 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 2ecd09f..4364c4f 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -10,7 +10,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-03-04 09:45+\n"
+"PO-Revision-Date: 2017-06-10 10:29+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch (http://www.transifex.com/xfce/thunar/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -1961,7 +1961,7 @@ msgid ""
 "No renamer modules were found on your system. Please check your\n"
 "installation or contact your system administrator. If you install Thunar\n"
 "from source, be sure to enable the \"Simple Builtin Renamers\" plugin."
-msgstr "Er zijn geen hernoemmodules op uw systeem gevonden. Controleer 
a.u.b.\nuw installatie of neem contact op met uw systeembeheerder. Als 
u\nThunar vanuit de broncode installeert, zorg dan dat u de \ninvoegtoepassing 
'Simple Builtin Renamers' inschakelt."
+msgstr "Er zijn geen hernoemmodules op uw systeem gevonden. Controleer 
a.u.b.\nuw installatie of neem contact op met uw systeembeheerder. Als 
u\nThunar vanuit de broncode installeert, zorg dan dat u het \ninvoegsel 
'Simple Builtin Renamers' inschakelt."
 
 #. tell the user that we failed
 #: ../thunar/thunar-renamer-dialog.c:954
@@ -2848,7 +2848,7 @@ msgstr "Resident"
 
 #: ../thunarx/thunarx-provider-plugin.c:73
 msgid "Don't unload the plugin from memory"
-msgstr "Verwijder de invoegtoepassing niet uit het geheugen"
+msgstr "Verwijder het invoegsel niet uit het geheugen"
 
 #: ../thunarx/thunarx-renamer.c:130
 msgid "Help URL"

-- 
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