[Xfce4-commits] [xfce/exo] 01/01: Add the possibility to write exo-csource output directly to a file (Bug #12901)

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

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

commit f6e0495bda40c493bb2d59241489ece69aed8909
Author: Flo 
Date:   Wed Jun 14 23:09:57 2017 -0400

Add the possibility to write exo-csource output directly to a file (Bug 
#12901)
---
 docs/reference/exo-csource.xml | 11 +++
 exo-csource/main.c | 37 -
 2 files changed, 47 insertions(+), 1 deletion(-)

diff --git a/docs/reference/exo-csource.xml b/docs/reference/exo-csource.xml
index 0a232bd..fa60787 100644
--- a/docs/reference/exo-csource.xml
+++ b/docs/reference/exo-csource.xml
@@ -104,6 +104,17 @@
 
   
 
+
+
+  --output=identifier
+  
+
+  Prints the output to identifier instead of
+  stdout (only used if --build-list was
+  not specified as well).
+
+  
+
   
 
   
diff --git a/exo-csource/main.c b/exo-csource/main.c
index 3a948a8..627e34f 100644
--- a/exo-csource/main.c
+++ b/exo-csource/main.c
@@ -42,6 +42,7 @@
 #include 
 #include 
 #include 
+#include 
 
 
 
@@ -63,6 +64,7 @@ static gboolean gen_stripcomments = FALSE;
 static gboolean gen_stripcontent = FALSE;
 static const gchar *gen_linkage = "static ";
 static const gchar *gen_varname = "my_data";
+static const gchar *out_name = NULL;
 
 
 
@@ -132,6 +134,23 @@ parse_args (gint*argc_p,
   gen_stripcontent = TRUE;
   argv[n] = NULL;
 }
+  else if (strcmp (argv[n], "--output") == 0
+|| strncmp (argv[n], "--output=", 9) == 0)
+{
+  s = argv[n] + 8;
+
+  if (G_LIKELY (*s == '='))
+{
+  out_name = g_strdup (s + 1);
+}
+  else if (n + 1 < argc)
+{
+  out_name = g_strdup (argv[n + 1]);
+  argv[n++] = NULL;
+}
+
+  argv[n] = NULL;
+}
 }
 
   for (m = 0, n = 1; n < argc; ++n)
@@ -292,6 +311,7 @@ print_usage (void)
   g_print (_("  --build-list  Parse (name, file) pairs\n"));
   g_print (_("  --strip-comments  Remove comments from XML files\n"));
   g_print (_("  --strip-content   Remove node contents from XML files\n"));
+  g_print (_("  --output=filename Write generated csource to specified 
file\n"));
   g_print ("\n");
 }
 
@@ -324,6 +344,7 @@ main (int argc, char **argv)
   gchar   *data;
   gsizelength;
   gint n;
+  FILE*out_file;
 
   bindtextdomain (GETTEXT_PACKAGE, PACKAGE_LOCALE_DIR);
 
@@ -348,6 +369,17 @@ main (int argc, char **argv)
   return EXIT_FAILURE;
 }
 
+  if (out_name == NULL)
+  out_file = stdout;
+  else
+{
+  out_file = g_fopen (out_name, "w");
+  if (out_file == NULL) {
+g_fprintf (stderr, "Failed to open output file \"%s\"\n", 
out_name);
+return EXIT_FAILURE;
+  }
+}
+
 #ifdef G_OS_WIN32
   filename = g_local_to_utf8 (argv[1], -1, NULL, NULL, NULL);
 #else
@@ -362,7 +394,10 @@ main (int argc, char **argv)
   return EXIT_FAILURE;
 }
 
-  print_csource (stdout, data, length, filename);
+  print_csource (out_file, data, length, filename);
+
+  if (out_file != NULL && out_file != stdout)
+fclose (out_file);
 
   g_free (data);
 }

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


[Xfce4-commits] [xfce/exo] 02/02: Some deprecation replacements

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

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

commit fac670d382b0227cb34a522f21f80b983037069b
Author: Sean Davis 
Date:   Wed Jun 14 22:52:01 2017 -0400

Some deprecation replacements
---
 exo-desktop-item-edit/exo-die-editor.c | 13 ---
 exo-helper/exo-helper-chooser-dialog.c |  2 --
 exo-helper/exo-helper-chooser.c|  7 +-
 exo-open/main.c|  4 
 exo/exo-gtk-extensions.c   |  8 ++-
 exo/exo-icon-view.c| 42 ++
 exo/exo-toolbars-private.c |  4 
 7 files changed, 55 insertions(+), 25 deletions(-)

diff --git a/exo-desktop-item-edit/exo-die-editor.c 
b/exo-desktop-item-edit/exo-die-editor.c
index 8c43dd6..62f49b9 100644
--- a/exo-desktop-item-edit/exo-die-editor.c
+++ b/exo-desktop-item-edit/exo-die-editor.c
@@ -595,10 +595,6 @@ exo_die_editor_icon_clicked (GtkWidget*button,
  _("_OK"), GTK_RESPONSE_ACCEPT,
  NULL);
   gtk_dialog_set_default_response (GTK_DIALOG (chooser), GTK_RESPONSE_ACCEPT);
-  gtk_dialog_set_alternative_button_order (GTK_DIALOG (chooser),
-   GTK_RESPONSE_ACCEPT,
-   GTK_RESPONSE_CANCEL,
-   -1);
 
   /* check if we have an icon to set for the chooser */
   if (G_LIKELY (!exo_str_is_empty (editor->icon)))
@@ -643,10 +639,6 @@ exo_die_editor_path_clicked (GtkWidget*button,
  _("_OK"), GTK_RESPONSE_ACCEPT,
  NULL);
   gtk_dialog_set_default_response (GTK_DIALOG (chooser), GTK_RESPONSE_ACCEPT);
-  gtk_dialog_set_alternative_button_order (GTK_DIALOG (chooser),
-   GTK_RESPONSE_ACCEPT,
-   GTK_RESPONSE_CANCEL,
-   -1);
 
   /* check if we have a path to set for the chooser */
   if (G_LIKELY (!exo_str_is_empty (editor->path)))
@@ -1332,8 +1324,3 @@ exo_die_editor_set_terminal (ExoDieEditor *editor,
   g_object_notify (G_OBJECT (editor), "terminal");
 }
 }
-
-
-
-
-
diff --git a/exo-helper/exo-helper-chooser-dialog.c 
b/exo-helper/exo-helper-chooser-dialog.c
index 2164307..9c622f8 100644
--- a/exo-helper/exo-helper-chooser-dialog.c
+++ b/exo-helper/exo-helper-chooser-dialog.c
@@ -309,5 +309,3 @@ exo_helper_chooser_dialog_get_plug_child 
(ExoHelperChooserDialog *dialog)
 {
   return dialog->plug_child;
 }
-
-
diff --git a/exo-helper/exo-helper-chooser.c b/exo-helper/exo-helper-chooser.c
index 3d7b056..1c8d50c 100644
--- a/exo-helper/exo-helper-chooser.c
+++ b/exo-helper/exo-helper-chooser.c
@@ -609,7 +609,7 @@ menu_activate_other (GtkWidget*item,
 }
 
 
-
+#if !GTK_CHECK_VERSION (3, 22, 0)
 static void
 menu_position (GtkMenu  *menu,
gint *x,
@@ -648,6 +648,7 @@ menu_position (GtkMenu  *menu,
 
   *push_in = TRUE;
 }
+#endif
 
 
 
@@ -787,7 +788,11 @@ exo_helper_chooser_pressed (ExoHelperChooser *chooser,
 
   /* run the loop for the menu */
   gtk_grab_add (menu);
+#if GTK_CHECK_VERSION (3, 22, 0)
+  gtk_menu_popup_at_widget (GTK_MENU (menu), button, GDK_GRAVITY_SOUTH_WEST, 
GDK_GRAVITY_NORTH_WEST, NULL);
+#else
   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, menu_position, button, 0, 
gtk_get_current_event_time ());
+#endif
   g_main_loop_run (loop);
   gtk_grab_remove (menu);
   g_main_loop_unref (loop);
diff --git a/exo-open/main.c b/exo-open/main.c
index 119b557..8cba8d5 100644
--- a/exo-open/main.c
+++ b/exo-open/main.c
@@ -437,7 +437,11 @@ exo_open_uri (const gchar  *uri,
   && (strcmp (scheme, "ftp") == 0 || strcmp (scheme, "ftps") == 0))
 retval = exo_open_launch_category ("WebBrowser", uri);
   else
+#if GTK_CHECK_VERSION (3, 22, 0)
+retval = gtk_show_uri_on_window (NULL, uri, 0, error);
+#else
 retval = gtk_show_uri (NULL, uri, 0, error);
+#endif
 }
 
   g_free (scheme);
diff --git a/exo/exo-gtk-extensions.c b/exo/exo-gtk-extensions.c
index 3b2a761..0d68fa3 100644
--- a/exo/exo-gtk-extensions.c
+++ b/exo/exo-gtk-extensions.c
@@ -205,7 +205,9 @@ exo_gtk_url_about_dialog_hook (GtkAboutDialog *about_dialog,
gpointeruser_data)
 {
   GtkWidget *message;
+#if !GTK_CHECK_VERSION (3, 22, 0)
   GdkScreen *screen;
+#endif
   GError*error = NULL;
   gchar *uri, *escaped;
 
@@ -224,11 +226,15 @@ exo_gtk_url_about_dialog_hook (GtkAboutDialog 
*about_dialog,
   uri = g_strdup (address);
 }
 
+  /* try to open the url on the given screen */
+#if GTK_CHECK_VERSION (3, 22, 0)
+  if 

[Xfce4-commits] [xfce/exo] 01/01: Require building of GTK3 library, drop some unused ifdefs

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

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

commit bc9c4990f8d371048c2a6ddb085894e2928dfb58
Author: Sean Davis 
Date:   Wed Jun 14 20:08:42 2017 -0400

Require building of GTK3 library, drop some unused ifdefs
---
 configure.ac.in   | 13 ++---
 exo/Makefile.am   |  3 ---
 exo/exo-icon-chooser-dialog.c |  8 
 3 files changed, 2 insertions(+), 22 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index e228c23..e462cf2 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -166,22 +166,13 @@ dnl ***
 XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.30.0])
 XDT_CHECK_PACKAGE([GIO], [gio-2.0], [2.30.0])
 XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.24.0])
+XDT_CHECK_PACKAGE([GTK3], [gtk+-3.0], [3.6.0])
 XDT_CHECK_PACKAGE([GTHREAD], [gthread-2.0], [2.30.0])
 XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.10.0])
 XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.10.0])
+XDT_CHECK_PACKAGE([LIBXFCE4UI2], [libxfce4ui-2], [4.12.0])
 XDT_CHECK_OPTIONAL_PACKAGE([GIO_UNIX], [gio-unix-2.0], [2.30.0], [gio-unix], 
[GIO-Unix features])
 
-dnl ***
-dnl *** Optional support for a GTK+3 version of the library ***
-dnl ***
-XDT_CHECK_OPTIONAL_PACKAGE([GTK3],
-   [gtk+-3.0], [3.6.0], [gtk3],
-   [GTK+ 3 support])
-XDT_CHECK_OPTIONAL_PACKAGE([LIBXFCE4UI2],
-   [libxfce4ui-2], [4.12.0], [libxfce4ui2],
-   [GTK+ 3 support: libxfce4ui-2])
-AM_CONDITIONAL([ENABLE_GTK3_LIBRARY], [test "x$GTK3_FOUND" = "xyes" && test 
"x$LIBXFCE4UI2_FOUND" = "xyes" ])
-
 dnl *
 dnl *** Check for X11 ***
 dnl *
diff --git a/exo/Makefile.am b/exo/Makefile.am
index 0074ea0..e67916e 100644
--- a/exo/Makefile.am
+++ b/exo/Makefile.am
@@ -114,7 +114,6 @@ pkgconfig_DATA = exo-$(LIBEXO_VERSION_API).pc
 ##
 ## GTK+ 3 support library
 ##
-if ENABLE_GTK3_LIBRARY
 
 libexo_2_includedir = $(includedir)/exo-2/exo
 
@@ -188,8 +187,6 @@ libexo_2_la_LIBADD =
\
 
 pkgconfig_DATA += exo-2.pc
 
-endif
-
 ##
 ## Rules to auto-generate built sources
 ##
diff --git a/exo/exo-icon-chooser-dialog.c b/exo/exo-icon-chooser-dialog.c
index 582d0a1..82825f9 100644
--- a/exo/exo-icon-chooser-dialog.c
+++ b/exo/exo-icon-chooser-dialog.c
@@ -81,11 +81,9 @@ static void exo_icon_chooser_dialog_combo_changed
(GtkWidget
   
ExoIconChooserDialog   *icon_chooser_dialog);
 static void exo_icon_chooser_dialog_entry_changed(GtkWidget
  *entry,
   
ExoIconChooserDialog   *icon_chooser_dialog);
-#if GTK_CHECK_VERSION (2, 16, 0)
 static void exo_icon_chooser_dialog_entry_clear  (GtkEntry 
  *entry,
   
GtkEntryIconPositionicon_pos,
   GdkEvent 
  *event);
-#endif
 static void exo_icon_chooser_dialog_selection_changed
(ExoIconChooserDialog   *icon_chooser_dialog);
 
 
@@ -260,12 +258,10 @@ exo_icon_chooser_dialog_init (ExoIconChooserDialog 
*icon_chooser_dialog)
 #endif
   gtk_label_set_mnemonic_widget (GTK_LABEL (label), priv->filter_entry);
   g_signal_connect (G_OBJECT (priv->filter_entry), "changed", G_CALLBACK 
(exo_icon_chooser_dialog_entry_changed), icon_chooser_dialog);
-#if GTK_CHECK_VERSION (2, 16, 0)
   gtk_entry_set_icon_from_icon_name (GTK_ENTRY (priv->filter_entry), 
GTK_ENTRY_ICON_SECONDARY, "edit-clear");
   gtk_entry_set_icon_tooltip_text (GTK_ENTRY (priv->filter_entry), 
GTK_ENTRY_ICON_SECONDARY, _("Clear search field"));
   gtk_entry_set_icon_sensitive (GTK_ENTRY (priv->filter_entry), 
GTK_ENTRY_ICON_SECONDARY, FALSE);
   g_signal_connect (G_OBJECT (priv->filter_entry), "icon-release", G_CALLBACK 
(exo_icon_chooser_dialog_entry_clear), NULL);
-#endif
 
   /* setup the scrolled window for the icon chooser */
   scrolled_window = gtk_scrolled_window_new (NULL, NULL);
@@ -565,11 +561,9 @@ exo_icon_chooser_dialog_entry_changed (GtkWidget   
 *combo,
   g_free (normalized);
 }
 
-#if GTK_CHECK_VERSION (2, 16, 0)
   gtk_entry_set_icon_sensitive (GTK_ENTRY (priv->filter_entry),
 GTK_ENTRY_ICON_SECONDARY,
 !exo_str_is_empty (text));
-#endif
 
   model = exo_icon_view_get_model (EXO_ICON_VIEW 

[Xfce4-commits] [xfce/exo] branch master updated (ef279fd -> bc9c499)

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

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

  from  ef279fd   I18n: Update translation ast (100%).
   new  bc9c499   Require building of GTK3 library, drop some unused ifdefs

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:
 configure.ac.in   | 13 ++---
 exo/Makefile.am   |  3 ---
 exo/exo-icon-chooser-dialog.c |  8 
 3 files changed, 2 insertions(+), 22 deletions(-)

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


[Xfce4-commits] [xfce/xfdesktop] branch master updated (5b852d6 -> 959eb22)

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

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

  from  5b852d6   Post release tag bump.
   new  959eb22   I18n: Update translation sr (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/sr.po | 11 +++
 1 file changed, 7 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/xfdesktop] 01/01: I18n: Update translation sr (100%).

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

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

commit 959eb221065d2f9bdfe9778fcf5e9a84e7cf9ac1
Author: Саша Петровић 
Date:   Thu Jun 15 00:33:50 2017 +0200

I18n: Update translation sr (100%).

227 translated messages.

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

diff --git a/po/sr.po b/po/sr.po
index 165c4e8..b40cf11 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-04-23 18:32+0200\n"
-"PO-Revision-Date: 2017-04-30 10:05+\n"
+"POT-Creation-Date: 2017-05-04 18:31+0200\n"
+"PO-Revision-Date: 2017-06-14 17:26+\n"
 "Last-Translator: Саша Петровић \n"
 "Language-Team: Serbian 
(http://www.transifex.com/xfce/xfdesktop/language/sr/)\n"
 "MIME-Version: 1.0\n"
@@ -165,8 +165,7 @@ msgid "Quit"
 msgstr "Напусти"
 
 #: ../settings/xfce-backdrop-settings.desktop.in.h:1
-#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1049
-msgid "Desktop"
+msgid "Desktop "
 msgstr "Радна површ"
 
 #: ../settings/xfce-backdrop-settings.desktop.in.h:2
@@ -350,6 +349,10 @@ msgstr "Умањене иконице програма"
 msgid "File/launcher icons"
 msgstr "Датотека/покретач иконица"
 
+#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1049
+msgid "Desktop"
+msgstr "Радна површ"
+
 #: ../settings/xfdesktop-settings-ui.glade.h:12
 msgid "_Background"
 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] [xfce/xfconf] branch master updated (4ae7a49 -> 0d910df)

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

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

  from  4ae7a49   I18n: Update translation th (100%).
   new  0d910df   I18n: Update translation sr (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/sr.po | 96 ++--
 1 file changed, 51 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-netload-plugin] 01/01: I18n: Update translation sr (100%).

2017-06-14 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 2319a25704a13029b0ec735a783c7967558b8f35
Author: Саша Петровић 
Date:   Thu Jun 15 00:32:49 2017 +0200

I18n: Update translation sr (100%).

35 translated messages.

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

diff --git a/po/sr.po b/po/sr.po
index 46708e0..6e10327 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,41 +3,46 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Саша Петровић , 2013-2014
+# Саша Петровић , 2013-2014,2016-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:10+\n"
+"POT-Creation-Date: 2017-06-09 12:31+0200\n"
+"PO-Revision-Date: 2017-06-14 17:35+\n"
 "Last-Translator: Саша Петровић \n"
-"Language-Team: Serbian 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/sr/)\n"
+"Language-Team: Serbian 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/sr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: sr\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
-#: ../panel-plugin/netload.c:62
+#. Defaults
+#: ../panel-plugin/netload.c:42
+msgid "Net"
+msgstr "Мрежа"
+
+#: ../panel-plugin/netload.c:61
 msgid "Xfce4-Netload-Plugin"
 msgstr "Прикључак надзорника мреже за Иксфце4"
 
-#: ../panel-plugin/netload.c:65
+#: ../panel-plugin/netload.c:64
 msgid "Unknown error."
 msgstr "Непозната грешка"
 
-#: ../panel-plugin/netload.c:66
+#: ../panel-plugin/netload.c:65
 msgid "Linux proc device '/proc/net/dev' not found."
-msgstr "Није пронађен Линукс уређај „/proc/net/dev“."
+msgstr "Није пронађен Линуксов уређај „/proc/net/dev“."
 
-#: ../panel-plugin/netload.c:67
+#: ../panel-plugin/netload.c:66
 msgid "Interface was not found."
 msgstr "Није пронађен уређај."
 
 #: ../panel-plugin/netload.c:168
 #, c-format
 msgid "<< %s >> (Interface down)"
-msgstr "<< %s >> (уређај није укључен)"
+msgstr "<< %s >> (сучеље је искључено)"
 
 #: ../panel-plugin/netload.c:255
 #, c-format
@@ -52,84 +57,80 @@ msgstr "<< %s >> (%s)\nПросек последњих %d мерења\nса у
 
 #: ../panel-plugin/netload.c:258
 msgid "no IP address"
-msgstr "нема ИП адреса"
+msgstr "нема адреса ИП-а"
 
-#: ../panel-plugin/netload.c:585
+#: ../panel-plugin/netload.c:642
 #, c-format
 msgid ""
 "%s: Error in initializing:\n"
 "%s"
 msgstr "%s: Грешка при покретању:\n%s"
 
-#: ../panel-plugin/netload.c:914
-msgid "Select color"
-msgstr "Изаберите боју"
-
-#: ../panel-plugin/netload.c:981
+#: ../panel-plugin/netload.c:980
 msgid "Bar color (i_ncoming):"
 msgstr "Боја траке (_долазни):"
 
-#: ../panel-plugin/netload.c:982
+#: ../panel-plugin/netload.c:981
 msgid "Bar color (_outgoing):"
 msgstr "Боја траке (_одлазни):"
 
-#: ../panel-plugin/netload.c:985
+#: ../panel-plugin/netload.c:984
 msgid "Maximum (inco_ming):"
 msgstr "Највећи (долазни):"
 
-#: ../panel-plugin/netload.c:986
+#: ../panel-plugin/netload.c:985
 msgid "Maximum (o_utgoing):"
 msgstr "Највећи (одлазни):"
 
-#: ../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 "Надзорник мреже"
 
-#: ../panel-plugin/netload.c:1020
+#: ../panel-plugin/netload.c:1019
 msgid "_Text to display:"
 msgstr "_Натпис које ће се приказивати:"
 
-#: ../panel-plugin/netload.c:1049
+#: ../panel-plugin/netload.c:1050
 msgid "Network _device:"
 msgstr "Мрежни _уређаји:"
 
-#: ../panel-plugin/netload.c:1074
+#: ../panel-plugin/netload.c:1077
 msgid "Update _interval:"
 msgstr "Учесталост _упита:"
 
-#: ../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 "Приказуј вредности у битовима"
 
-#: ../panel-plugin/netload.c:1115
+#: ../panel-plugin/netload.c:1118
 msgid "_Automatic maximum"
 msgstr "_Самостално највећи"
 
-#: ../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 "_Прикажи податке као:"
 
-#: ../panel-plugin/netload.c:1183
+#: ../panel-plugin/netload.c:1186
 msgid "Bars"
 msgstr "Траке"
 

[Xfce4-commits] [panel-plugins/xfce4-netload-plugin] branch master updated (5d0cc8a -> 2319a25)

2017-06-14 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  5d0cc8a   I18n: Update translation th (100%).
   new  2319a25   I18n: Update translation sr (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/sr.po | 67 
 1 file changed, 34 insertions(+), 33 deletions(-)

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


[Xfce4-commits] [xfce/xfce4-session] branch master updated (c1410eb -> 958aff1)

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

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

  from  c1410eb   I18n: Update translation da (100%).
   new  958aff1   I18n: Update translation sr (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/sr.po | 110 +++
 1 file changed, 61 insertions(+), 49 deletions(-)

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


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

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

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

commit 958aff1ea5476db68db4ad4b4da1145d70d58900
Author: Саша Петровић 
Date:   Thu Jun 15 00:31:17 2017 +0200

I18n: Update translation sr (100%).

178 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/sr.po | 110 +++
 1 file changed, 61 insertions(+), 49 deletions(-)

diff --git a/po/sr.po b/po/sr.po
index 2d1d3d8..398d3a0 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-session\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-06-28 18:30+0200\n"
-"PO-Revision-Date: 2017-04-30 10:28+\n"
+"POT-Creation-Date: 2017-06-11 12:30+0200\n"
+"PO-Revision-Date: 2017-06-14 17:34+\n"
 "Last-Translator: Саша Петровић \n"
 "Language-Team: Serbian 
(http://www.transifex.com/xfce/xfce4-session/language/sr/)\n"
 "MIME-Version: 1.0\n"
@@ -37,7 +37,7 @@ msgstr "Изабери датотеку теме за уградњу..."
 
 #: ../engines/balou/config.c:327 ../engines/balou/config.c:495
 #: ../settings/session-editor.c:173 ../settings/session-editor.c:257
-#: ../xfce4-session/xfsm-logout-dialog.c:209
+#: ../xfce4-session/xfsm-logout-dialog.c:211
 #: ../xfce4-session/xfsm-splash-screen.c:213
 msgid "_Cancel"
 msgstr "_Откажи"
@@ -61,7 +61,7 @@ msgstr "Молим, проверите да ли је датотека испр
 
 #: ../engines/balou/config.c:344 ../engines/balou/config.c:949
 #: ../engines/simple/simple.c:338 ../settings/session-editor.c:132
-#: ../settings/session-editor.c:289 ../xfce4-session/xfsm-manager.c:1223
+#: ../settings/session-editor.c:289 ../xfce4-session/xfsm-manager.c:1226
 msgid "_Close"
 msgstr "_Затвори"
 
@@ -188,12 +188,12 @@ msgid "Type '%s --help' for usage."
 msgstr "Упишите „%s --help“ за коришћење."
 
 #: ../settings/main.c:92 ../xfce4-session/main.c:353
-#: ../xfce4-session-logout/main.c:140
+#: ../xfce4-session-logout/main.c:146
 msgid "The Xfce development team. All rights reserved."
 msgstr "Развојна дружина ИксФЦЕ-а. Сва права су задржана."
 
 #: ../settings/main.c:93 ../xfce4-session/main.c:354
-#: ../xfce4-session-logout/main.c:143
+#: ../xfce4-session-logout/main.c:149
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Молим пријавите грешку на <%s>."
@@ -310,11 +310,11 @@ msgstr "Начин поновног покретања"
 msgid "None"
 msgstr "Ништа"
 
-#: ../settings/xfae-dialog.c:73 ../settings/xfae-dialog.c:181
+#: ../settings/xfae-dialog.c:73 ../settings/xfae-dialog.c:182
 msgid "Cancel"
 msgstr "Откажи"
 
-#: ../settings/xfae-dialog.c:74 ../settings/xfae-dialog.c:182
+#: ../settings/xfae-dialog.c:74 ../settings/xfae-dialog.c:183
 msgid "OK"
 msgstr "У реду"
 
@@ -322,23 +322,23 @@ msgstr "У реду"
 msgid "Add application"
 msgstr "Додај програм"
 
-#: ../settings/xfae-dialog.c:92
+#: ../settings/xfae-dialog.c:90
 msgid "Name:"
 msgstr "Назив:"
 
-#: ../settings/xfae-dialog.c:107
+#: ../settings/xfae-dialog.c:104
 msgid "Description:"
 msgstr "Опис:"
 
-#: ../settings/xfae-dialog.c:120 ../settings/xfae-model.c:479
+#: ../settings/xfae-dialog.c:117 ../settings/xfae-model.c:479
 msgid "Command:"
 msgstr "Наредба:"
 
-#: ../settings/xfae-dialog.c:178
+#: ../settings/xfae-dialog.c:179
 msgid "Select a command"
 msgstr "Изаберите наредбу"
 
-#: ../settings/xfae-dialog.c:227
+#: ../settings/xfae-dialog.c:228
 msgid "Edit application"
 msgstr "Уреди програм"
 
@@ -413,7 +413,7 @@ msgstr "Нисам успео да заменим ставку"
 msgid "Disable binding to TCP ports"
 msgstr "Искључује повезивање на прикључке ТЦП-а"
 
-#: ../xfce4-session/main.c:78 ../xfce4-session-logout/main.c:96
+#: ../xfce4-session/main.c:78 ../xfce4-session-logout/main.c:102
 msgid "Print version information and exit"
 msgstr "Штампа податке о издању и излази"
 
@@ -422,11 +422,11 @@ msgid "Loading desktop settings"
 msgstr "Учитавам подешавања радног окружења"
 
 #. verify that the DNS settings are ok
-#: ../xfce4-session/main.c:198
+#: ../xfce4-session/main.c:199
 msgid "Verifying DNS settings"
 msgstr "Проверавам подешавања ДНС-а"
 
-#: ../xfce4-session/main.c:202
+#: ../xfce4-session/main.c:203
 msgid "Loading session data"
 msgstr "Учитавам податке седнице"
 
@@ -471,7 +471,7 @@ msgstr "Покрећем услуге КДЕ-а"
 msgid "(Unknown)"
 msgstr "(Непознато)"
 
-#: ../xfce4-session/xfsm-dns.c:147
+#: ../xfce4-session/xfsm-dns.c:152
 #, c-format
 msgid ""
 "Could not look up internet address for %s.\n"
@@ -480,11 +480,11 @@ msgid ""
 "%s to the file /etc/hosts on your system."
 msgstr "Нисам могао приступити мрежној адреси %s.\nТо ће спречити ИксФЦЕ да 
ради исправно\nМогуће је да ће потешкоћа бити исправљена додавањем\n%s у 
датотеку „/etc/hosts“ на вашем рачунару."
 
-#: 

[Xfce4-commits] [panel-plugins/xfce4-clipman-plugin] branch master updated (7141b11 -> e9ca8f1)

2017-06-14 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  7141b11   I18n: Update translation nl (100%).
   new  e9ca8f1   I18n: Update translation th (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/th.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] [panel-plugins/xfce4-systemload-plugin] branch master updated (177a921 -> d21b1a9)

2017-06-14 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-systemload-plugin.

  from  177a921   I18n: Update translation th (95%).
   new  d21b1a9   I18n: Update translation th (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/th.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


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

2017-06-14 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 5d0cc8a82702ddd2aa692a8ea452d94d6f391035
Author: Theppitak Karoonboonyanan 
Date:   Wed Jun 14 18:31:52 2017 +0200

I18n: Update translation th (100%).

35 translated messages.

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

diff --git a/po/th.po b/po/th.po
index 757bd35..059df12 100644
--- a/po/th.po
+++ b/po/th.po
@@ -4,33 +4,39 @@
 # 
 # Translators:
 # Theppitak Karoonboonyanan , 2013
+# Theppitak Karoonboonyanan , 2013,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-17 05:55+\n"
+"POT-Creation-Date: 2017-06-09 12:31+0200\n"
+"PO-Revision-Date: 2017-06-14 15:36+\n"
 "Last-Translator: Theppitak Karoonboonyanan \n"
-"Language-Team: Thai 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/th/)\n"
+"Language-Team: Thai 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/th/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: th\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../panel-plugin/netload.c:62
+#. Defaults
+#: ../panel-plugin/netload.c:42
+msgid "Net"
+msgstr "เน็ต"
+
+#: ../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 "ข้อผิดพลาดไม่ทราบสาเหตุ"
 
-#: ../panel-plugin/netload.c:66
+#: ../panel-plugin/netload.c:65
 msgid "Linux proc device '/proc/net/dev' not found."
 msgstr "ไม่พบอุปกรณ์ '/proc/net/dev' ของลินุกซ์"
 
-#: ../panel-plugin/netload.c:67
+#: ../panel-plugin/netload.c:66
 msgid "Interface was not found."
 msgstr "ไม่พบอินเทอร์เฟซเครือข่าย"
 
@@ -54,82 +60,78 @@ msgstr "<< %s >> (%s)\nค่าเฉลี่ยของการวัด %d
 msgid "no IP address"
 msgstr "ไม่มีที่อยู่ไอพี"
 
-#: ../panel-plugin/netload.c:585
+#: ../panel-plugin/netload.c:642
 #, c-format
 msgid ""
 "%s: Error in initializing:\n"
 "%s"
 msgstr "%s: เกิดข้อผิดพลาดขณะตั้งต้นทำงาน:\n%s"
 
-#: ../panel-plugin/netload.c:914
-msgid "Select color"
-msgstr "เลือกสี"
-
-#: ../panel-plugin/netload.c:981
+#: ../panel-plugin/netload.c:980
 msgid "Bar color (i_ncoming):"
 msgstr "สีแถบ (ขาเ_ข้า):"
 
-#: ../panel-plugin/netload.c:982
+#: ../panel-plugin/netload.c:981
 msgid "Bar color (_outgoing):"
 msgstr "สีแถบ (ขา_ออก):"
 
-#: ../panel-plugin/netload.c:985
+#: ../panel-plugin/netload.c:984
 msgid "Maximum (inco_ming):"
 msgstr "ค่าสูงสุด (ขาเข้_า):"
 
-#: ../panel-plugin/netload.c:986
+#: ../panel-plugin/netload.c:985
 msgid "Maximum (o_utgoing):"
 msgstr "ค่าสูงสุด (ขาออ_ก):"
 
-#: ../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 "เครื่องมือเฝ้าสังเกตเครือข่าย"
 
-#: ../panel-plugin/netload.c:1020
+#: ../panel-plugin/netload.c:1019
 msgid "_Text to display:"
 msgstr "ข้อ_ความที่จะแสดง:"
 
-#: ../panel-plugin/netload.c:1049
+#: ../panel-plugin/netload.c:1050
 msgid "Network _device:"
 msgstr "อุ_ปกรณ์เครือข่าย:"
 
-#: ../panel-plugin/netload.c:1074
+#: ../panel-plugin/netload.c:1077
 msgid "Update _interval:"
 msgstr "_ระยะเวลาการปรับข้อมูล:"
 
-#: ../panel-plugin/netload.c:1087
+#: ../panel-plugin/netload.c:1090
 msgid "s"
 msgstr "วินาที"
 
-#: ../panel-plugin/netload.c:1101
+#: ../panel-plugin/netload.c:1104
 msgid "Show values as _bits"
 msgstr "แสดงค่าเป็น_บิต"
 
-#: ../panel-plugin/netload.c:1115
+#: ../panel-plugin/netload.c:1118
 msgid "_Automatic maximum"
 msgstr "ตั้งค่าสูงสุดโดยอัตโนมั_ติ"
 
-#: ../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 "แสด_งข้อมูลในแบบ:"
 
-#: ../panel-plugin/netload.c:1183
+#: ../panel-plugin/netload.c:1186
 msgid "Bars"
 msgstr "แถบ"
 
-#: ../panel-plugin/netload.c:1184
+#: ../panel-plugin/netload.c:1187
 msgid "Values"
 msgstr "ค่า"
 
-#: ../panel-plugin/netload.c:1185
+#: ../panel-plugin/netload.c:1188
 msgid "Bars and values"
 msgstr "แถบและค่า"
 
-#: ../panel-plugin/netload.c:1235
+#: ../panel-plugin/netload.c:1230
 msgid "_Colorize values"
 msgstr "ใช้_สีแสดงค่า"
 

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

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

2017-06-14 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-systemload-plugin.

commit d21b1a9e92d6cf99515d38bc844bb1e1d3c8da30
Author: Theppitak Karoonboonyanan 
Date:   Wed Jun 14 18:32:07 2017 +0200

I18n: Update translation th (100%).

22 translated messages.

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

diff --git a/po/th.po b/po/th.po
index 8e76e3c..008f703 100644
--- a/po/th.po
+++ b/po/th.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-02-10 00:31+0100\n"
-"PO-Revision-Date: 2017-06-12 14:55+\n"
+"PO-Revision-Date: 2017-06-14 15:29+\n"
 "Last-Translator: Theppitak Karoonboonyanan \n"
 "Language-Team: Thai 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/th/)\n"
 "MIME-Version: 1.0\n"
@@ -110,7 +110,7 @@ msgstr "เฝ้าสังเกตโหลดของซีพียู, 
 
 #: ../panel-plugin/systemload.c:986
 msgid "Copyright (c) 2003-2017\n"
-msgstr ""
+msgstr "Copyright (c) 2003-2017\n"
 
 #: ../panel-plugin/uptime.c:53
 msgid "File /proc/uptime not found!"

-- 
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 (5999578 -> 76a38bc)

2017-06-14 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  5999578   I18n: Update translation nl (100%).
   new  76a38bc   I18n: Update translation th (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/th.po | 24 ++--
 1 file changed, 14 insertions(+), 10 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 th (100%).

2017-06-14 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 76a38bc59cabf47f2fbbb2224e2e66b8ba7f0177
Author: Theppitak Karoonboonyanan 
Date:   Wed Jun 14 18:31:42 2017 +0200

I18n: Update translation th (100%).

38 translated messages.

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

diff --git a/po/th.po b/po/th.po
index 3633a74..6c46cb1 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,15 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# theppitak , 2014
+# Theppitak Karoonboonyanan , 2014,2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-09-06 00:31+0200\n"
-"PO-Revision-Date: 2014-05-28 15:49+\n"
-"Last-Translator: theppitak \n"
-"Language-Team: Thai 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/th/)\n"
+"POT-Creation-Date: 2016-11-29 00:31+0100\n"
+"PO-Revision-Date: 2017-06-14 15:40+\n"
+"Last-Translator: Theppitak Karoonboonyanan \n"
+"Language-Team: Thai 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/th/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -22,17 +22,17 @@ msgstr ""
 msgid "Indicator Plugin"
 msgstr "ปลั๊กอินบ่งชี้สถานะ"
 
-#: ../panel-plugin/indicator.desktop.in.in.h:2 ../panel-plugin/indicator.c:174
+#: ../panel-plugin/indicator.desktop.in.in.h:2 ../panel-plugin/indicator.c:181
 msgid ""
 "Provides a panel area for Unity indicators. Indicators allow applications "
 "and system services to display their status and interact with the user."
 msgstr "จัดเตรียมพื้นที่ในพาเนลสำหรับบ่งชี้สถานะแบบ Unity ตัวบ่งชี้ต่างๆ 
จะเปิดให้โปรแกรมและบริการต่างๆ ของระบบสามารถแสดงสถานะและโต้ตอบกับผู้ใช้ได้"
 
-#: ../panel-plugin/indicator.c:176
+#: ../panel-plugin/indicator.c:183
 msgid "Copyright (c) 2009-2013\n"
 msgstr "Copyright (c) 2009-2013\n"
 
-#: ../panel-plugin/indicator.c:312
+#: ../panel-plugin/indicator.c:324
 msgid "No Indicators"
 msgstr "ไม่มีตัวบ่งชี้"
 
@@ -94,11 +94,15 @@ msgstr "เครือข่าย"
 msgid "Workrave"
 msgstr "Workrave"
 
-#: ../panel-plugin/indicator-dialog.c:450
+#: ../panel-plugin/indicator-dialog.c:446
+msgid "Clear"
+msgstr "ล้าง"
+
+#: ../panel-plugin/indicator-dialog.c:447
 msgid "Are you sure you want to clear the list of known indicators?"
 msgstr "คุณแน่ใจหรือไม่ว่าต้องการล้างรายชื่อตัวบ่งชี้ที่รู้จัก?"
 
-#: ../panel-plugin/indicator-dialog.c:593
+#: ../panel-plugin/indicator-dialog.c:577
 #, c-format
 msgid "Unable to open the following url: %s"
 msgstr "ไม่สามารถเปิด URL ต่อไปนี้ได้: %s"

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

2017-06-14 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 db8d05e572ce4d3f2f5bb3bd1391e518aab7fe38
Author: Theppitak Karoonboonyanan 
Date:   Wed Jun 14 18:31:24 2017 +0200

I18n: Update translation th (100%).

41 translated messages.

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

diff --git a/po/th.po b/po/th.po
index bb0dfc9..6a301f5 100644
--- a/po/th.po
+++ b/po/th.po
@@ -4,95 +4,103 @@
 # 
 # Translators:
 # Theppitak Karoonboonyanan , 2014
-# theppitak , 2014
+# Theppitak Karoonboonyanan , 2014,2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-08-30 00:31+0200\n"
-"PO-Revision-Date: 2014-02-06 15:10+\n"
-"Last-Translator: theppitak \n"
-"Language-Team: Thai (http://www.transifex.com/projects/p/xfce/language/th/)\n"
+"POT-Creation-Date: 2017-06-09 06:31+0200\n"
+"PO-Revision-Date: 2017-06-14 15:18+\n"
+"Last-Translator: Theppitak Karoonboonyanan \n"
+"Language-Team: Thai 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/th/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: th\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:78
+#: ../panel-plugin/xfce4-cpufreq-configure.c:80
 msgid "Select font..."
 msgstr "เลือกแบบอักษร..."
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:80
+#: ../panel-plugin/xfce4-cpufreq-configure.c:82
 msgid "Select font family and size to use for the labels."
 msgstr "เลือกแบบอักษรและขนาดที่จะใช้กับฉลากต่างๆ"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:84
+#: ../panel-plugin/xfce4-cpufreq-configure.c:86
 msgid "Right-click to revert to the default font."
 msgstr "คลิกขวาเพื่อคืนกลับเป็นแบบอักษรปริยาย"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:102
+#: ../panel-plugin/xfce4-cpufreq-configure.c:100
 msgid "Select font"
 msgstr "เลือกแบบอักษร"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:188
+#: ../panel-plugin/xfce4-cpufreq-configure.c:199
 msgid "Configure CPU Frequency Monitor"
 msgstr "ตั้งค่าปลั๊กอินเฝ้าสังเกตความถี่ซีพียู"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:190
+#: ../panel-plugin/xfce4-cpufreq-configure.c:204
 msgid "Configure the CPU frequency plugin"
 msgstr "ตั้งค่าปลั๊กอินความถี่ซีพียู"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:208
+#: ../panel-plugin/xfce4-cpufreq-configure.c:222
 msgid "Monitor"
 msgstr "การเฝ้าสังเกต"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:223
+#: ../panel-plugin/xfce4-cpufreq-configure.c:245
 msgid "_Update interval:"
 msgstr "ช่วงเวลา_ปรับข้อมูล:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:241
+#: ../panel-plugin/xfce4-cpufreq-configure.c:263
 msgid "Panel"
 msgstr "พาเนล"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:257
+#: ../panel-plugin/xfce4-cpufreq-configure.c:287
 msgid "_Font:"
 msgstr "แบบ_อักษร:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:275
+#: ../panel-plugin/xfce4-cpufreq-configure.c:306
+msgid "_Font color:"
+msgstr "_สีตัวอักษร:"
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:316
+msgid "Select font color"
+msgstr "เลือกสีตัวอักษร"
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:326
 msgid "_Display CPU:"
-msgstr "แ_สดงซีพียู:"
+msgstr "แสด_งซีพียู:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:290
+#: ../panel-plugin/xfce4-cpufreq-configure.c:342
 msgid "min"
 msgstr "ต่ำสุด"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:291
+#: ../panel-plugin/xfce4-cpufreq-configure.c:343
 msgid "avg"
 msgstr "เฉลี่ย"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:292
+#: ../panel-plugin/xfce4-cpufreq-configure.c:344
 msgid "max"
 msgstr "สูงสุด"
 
 #. check buttons for display widgets in panel
-#: ../panel-plugin/xfce4-cpufreq-configure.c:298
+#: ../panel-plugin/xfce4-cpufreq-configure.c:350
 msgid "_Keep compact"
 msgstr "ขนาด_กะทัดรัด"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:303
+#: ../panel-plugin/xfce4-cpufreq-configure.c:355
 msgid "Show text in a single _line"
 msgstr "แสดงข้อความใน_บรรทัดเดียว"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:308
+#: ../panel-plugin/xfce4-cpufreq-configure.c:360
 msgid "Show CPU _icon"
 msgstr "แสดงไอ_คอนซีพียู"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:315
+#: ../panel-plugin/xfce4-cpufreq-configure.c:367
 msgid "Show CPU fre_quency"
 msgstr "แสดงความ_ถี่ซีพียู"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:320
+#: ../panel-plugin/xfce4-cpufreq-configure.c:372
 msgid "Show CPU _governor"
 msgstr 

[Xfce4-commits] [panel-plugins/xfce4-netload-plugin] branch master updated (9dba63a -> 5d0cc8a)

2017-06-14 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  9dba63a   I18n: Update translation fr (100%).
   new  5d0cc8a   I18n: Update translation th (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/th.po | 60 +++-
 1 file changed, 31 insertions(+), 29 deletions(-)

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


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

2017-06-14 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 e9ca8f11a3a05b806715aecb741ab4b8c458981d
Author: Theppitak Karoonboonyanan 
Date:   Wed Jun 14 18:31:12 2017 +0200

I18n: Update translation th (100%).

72 translated messages.

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

diff --git a/po/th.po b/po/th.po
index 8367a34..44999a2 100644
--- a/po/th.po
+++ b/po/th.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-06-02 00:31+0200\n"
-"PO-Revision-Date: 2016-09-13 04:03+\n"
+"POT-Creation-Date: 2016-09-15 18:31+0200\n"
+"PO-Revision-Date: 2017-06-14 15:46+\n"
 "Last-Translator: Theppitak Karoonboonyanan \n"
 "Language-Team: Thai 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/th/)\n"
 "MIME-Version: 1.0\n"
@@ -31,7 +31,7 @@ msgstr "โปรแกรมจัดการคลิปบอร์ด ม
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.h:1
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:1
 #: ../panel-plugin/main-panel-plugin.c:73
-#: ../panel-plugin/main-status-icon.c:62 ../panel-plugin/plugin.c:318
+#: ../panel-plugin/main-status-icon.c:62 ../panel-plugin/plugin.c:319
 msgid "Clipman"
 msgstr "คลิปแมน"
 
@@ -154,13 +154,13 @@ msgstr "ถ้าเลือก จะปรับการป้ายเล
 
 #: ../panel-plugin/settings-dialog.ui.h:13
 msgid "Show _QR-Code"
-msgstr "แสดง _QR-Code"
+msgstr "แสดงรหัส _QR"
 
 #: ../panel-plugin/settings-dialog.ui.h:14
 msgid ""
-"If checked, the menu shows a QR-Code of the corrently selected clipboard "
+"If checked, the menu shows a QR-Code of the currently selected clipboard "
 "entry"
-msgstr "ถ้าเลือก เมนูจะแสดง QR-Code ของรายการคลิปบอร์ดที่เลือกอยู่"
+msgstr "ถ้าเลือก เมนูจะแสดงรหัส QR ของรายการคลิปบอร์ดที่เลือกอยู่"
 
 #: ../panel-plugin/settings-dialog.ui.h:15
 msgid "Behavior"
@@ -302,7 +302,7 @@ msgstr "นิพจน์เรกิวลาร์"
 msgid "_Disable"
 msgstr "ปิ_ดใช้"
 
-#: ../panel-plugin/actions.c:369
+#: ../panel-plugin/actions.c:370
 #, c-format
 msgid ""
 "Unable to execute the command \"%s\"\n"
@@ -320,7 +320,7 @@ msgstr "ไม่ต้องถามอีก"
 
 #: ../panel-plugin/menu.c:362
 msgid "Could not generate QR-Code."
-msgstr "ไม่สามารถสร้าง QR-Code"
+msgstr "ไม่สามารถสร้างรหัส QR"
 
 #. Insert empty menu item
 #: ../panel-plugin/menu.c:376
@@ -331,18 +331,18 @@ msgstr "คลิปบอร์ดว่างเปล่า"
 msgid "_Clear history"
 msgstr "_ล้างประวัติ"
 
-#: ../panel-plugin/plugin.c:306
+#: ../panel-plugin/plugin.c:307
 msgid "Contributors:"
 msgstr "ผู้ร่วมสมทบงาน:"
 
-#: ../panel-plugin/plugin.c:320
+#: ../panel-plugin/plugin.c:321
 msgid "Clipboard Manager for Xfce"
 msgstr "เครื่องมือจัดการคลิปบอร์ดสำหรับ Xfce"
 
-#: ../panel-plugin/plugin.c:328
+#: ../panel-plugin/plugin.c:329
 msgid "translator-credits"
 msgstr "Theppitak Karoonboonyanan"
 
-#: ../panel-plugin/plugin.c:342
+#: ../panel-plugin/plugin.c:343
 msgid "Unable to open the settings dialog"
 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-cpufreq-plugin] branch master updated (57a7fe6 -> db8d05e)

2017-06-14 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  57a7fe6   I18n: Update translation pt_BR (100%).
   new  db8d05e   I18n: Update translation th (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/th.po | 98 +++-
 1 file changed, 53 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-whiskermenu-plugin] 03/03: I18n: Update translation tr (100%).

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

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

commit b96f34fe2b468b96266e4ea9d97b38c6d44f0bff
Author: Graeme Gott 
Date:   Wed Jun 14 07:12:35 2017 -0400

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

diff --git a/po/tr.po b/po/tr.po
index f34f163..efe5a0a 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,7 +3,7 @@
 # This file is distributed under the same license as the 
xfce4-whiskermenu-plugin package.
 #
 # Translators:
-# reis33 , 2013
+# Ercan PEKER , 2013,2017
 # Demiray Muhterem , 2013-2017
 # Yusuf Faruk DOĞAN , 2013
 msgid ""
@@ -11,8 +11,8 @@ msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-01-13 22:55+\n"
-"PO-Revision-Date: 2017-01-21 09:57+\n"
-"Last-Translator: Demiray Muhterem \n"
+"PO-Revision-Date: 2017-06-03 07:24+\n"
+"Last-Translator: Ercan PEKER \n"
 "Language-Team: Turkish (http://www.transifex.com/gottcode/xfce4-whiskermenu-;
 "plugin/language/tr/)\n"
 "Language: tr\n"
@@ -31,7 +31,7 @@ msgstr "Masaüstüne Ekle"
 
 #: ../panel-plugin/page.cpp:241
 msgid "Add to Favorites"
-msgstr "Favorilere Ekle"
+msgstr "Sık kullanılanlara ekle"
 
 #: ../panel-plugin/page.cpp:261
 msgid "Add to Panel"
@@ -59,7 +59,7 @@ msgstr "Uygulamalar"
 
 #: ../panel-plugin/configuration-dialog.cpp:652
 msgid "Background opacit_y:"
-msgstr "Arkaplan matlı_k:"
+msgstr "Arkaplan şeffaflı_k:"
 
 #: ../panel-plugin/command-edit.cpp:49
 msgid "Browse the file system to choose a custom command."
@@ -133,7 +133,7 @@ msgstr "Kullanıcı geçişi başarısız oldu."
 
 #: ../panel-plugin/window.cpp:161
 msgid "Favorites"
-msgstr "Favoriler"
+msgstr "Sık kullanılanlar"
 
 #: ../panel-plugin/configuration-dialog.cpp:538
 msgid "Icon"
@@ -145,7 +145,7 @@ msgstr "Başlık ve Simge"
 
 #: ../panel-plugin/configuration-dialog.cpp:728
 msgid "Ignore _favorites"
-msgstr "Favorileri _gözardı et"
+msgstr "Sık kullanılanları _gözardı et"
 
 #: ../panel-plugin/configuration-dialog.cpp:621
 msgid "Ite_m icon size:"
@@ -190,7 +190,7 @@ msgstr "Normal"
 
 #: ../panel-plugin/settings.cpp:130
 msgid "Open URI"
-msgstr "URL aktif"
+msgstr "URI aç"
 
 #: ../panel-plugin/configuration-dialog.cpp:528
 msgid "Panel Button"
@@ -218,7 +218,7 @@ msgstr "Son Kullanılanlar"
 
 #: ../panel-plugin/page.cpp:249
 msgid "Remove From Favorites"
-msgstr "Favorilerden Kaldır"
+msgstr "Sık kullanılanlardan kaldır"
 
 #: ../panel-plugin/configuration-dialog.cpp:432
 #, c-format
@@ -236,7 +236,7 @@ msgstr "Çalıştır %s"
 
 #: ../panel-plugin/settings.cpp:129
 msgid "Run in Terminal"
-msgstr "Konsolda Çalıştır"
+msgstr "Uçbirimde Çalıştır"
 
 #: ../panel-plugin/configuration-dialog.cpp:86
 msgid "Search Actio_ns"
@@ -413,6 +413,8 @@ msgstr "_Başlık:"
 #: ../panel-plugin/plugin.cpp:416
 msgid "translator-credits"
 msgstr ""
-"Demiray Muhterem-tulliana\n"
 "Yusuf Faruk Doğan-yfdogan\n"
-"Reis33"
+"Mekanın cennet olsun Yusuf Abim\n"
+"---\n"
+"Demiray Muhterem-tulliana\n"
+"Ercan PEKER-Reis33"

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


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] branch master updated (34e398b -> b96f34f)

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

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

  from  34e398b   I18n: Update translation zh_CN (100%).
   new  52e2527   FIXED: Desktop action incorrectly parsed escaped k.
   new  ada83c0   I18n: Update translation pt_BR (100%).
   new  b96f34f   I18n: Update translation tr (100%).

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


Summary of changes:
 panel-plugin/launcher.cpp |  1 +
 po/pt_BR.po   | 60 +++
 po/tr.po  | 26 ++--
 3 files changed, 45 insertions(+), 42 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-whiskermenu-plugin] 02/03: I18n: Update translation pt_BR (100%).

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

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

commit ada83c07076964298697cbab16f64832332f4f1c
Author: Graeme Gott 
Date:   Wed Jun 14 07:09:56 2017 -0400

I18n: Update translation pt_BR (100%).
---
 po/pt_BR.po | 60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

diff --git a/po/pt_BR.po b/po/pt_BR.po
index a8b5998..bdb5aab 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -4,7 +4,7 @@
 #
 # Translators:
 # fabioluciano , 2013
-# Gabriel Henrique , 2017
+# Gabriel Henrique , 2017
 # Holmes , 2014
 # José Vieira , 2016-2017
 # Paulo Castro, 2013
@@ -13,8 +13,8 @@ msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-01-13 22:55+\n"
-"PO-Revision-Date: 2017-02-16 17:07+\n"
-"Last-Translator: Gabriel Henrique \n"
+"PO-Revision-Date: 2017-06-13 19:57+\n"
+"Last-Translator: Gabriel Henrique \n"
 "Language-Team: Portuguese (Brazil) (http://www.transifex.com/gottcode/xfce4-;
 "whiskermenu-plugin/language/pt_BR/)\n"
 "Language: pt_BR\n"
@@ -29,7 +29,7 @@ msgstr "Adicionar ação"
 
 #: ../panel-plugin/page.cpp:257
 msgid "Add to Desktop"
-msgstr "Adicionar à área de trabalho"
+msgstr "Adicionar à Área de Trabalho"
 
 #: ../panel-plugin/page.cpp:241
 msgid "Add to Favorites"
@@ -37,7 +37,7 @@ msgstr "Adicionar aos Favoritos"
 
 #: ../panel-plugin/page.cpp:261
 msgid "Add to Panel"
-msgstr "Adicionar ao painel"
+msgstr "Adicionar ao Painel"
 
 #: ../panel-plugin/category.cpp:61
 msgid "All"
@@ -45,7 +45,7 @@ msgstr "Tudo"
 
 #: ../panel-plugin/settings.cpp:119
 msgid "All _Settings"
-msgstr "Todas _Configurações"
+msgstr "Todas as _Configurações"
 
 #: ../panel-plugin/plugin.cpp:411
 msgid "Alternate application launcher for Xfce"
@@ -53,7 +53,7 @@ msgstr "Lançador de aplicações alternativo para o Xfce"
 
 #: ../panel-plugin/configuration-dialog.cpp:717
 msgid "Amount of _items:"
-msgstr "Número de íte_ns"
+msgstr "Número de ite_ns:"
 
 #: ../panel-plugin/plugin.cpp:243
 msgid "Applications"
@@ -61,7 +61,7 @@ msgstr "Aplicações"
 
 #: ../panel-plugin/configuration-dialog.cpp:652
 msgid "Background opacit_y:"
-msgstr "_Opacidade do fundo"
+msgstr "_Opacidade do fundo:"
 
 #: ../panel-plugin/command-edit.cpp:49
 msgid "Browse the file system to choose a custom command."
@@ -73,15 +73,15 @@ msgstr "C_omando:"
 
 #: ../panel-plugin/configuration-dialog.cpp:637
 msgid "Categ_ory icon size:"
-msgstr "Tamanho do ícone da categ_oria"
+msgstr "Tamanho do ícone da categ_oria:"
 
 #: ../panel-plugin/recent-page.cpp:173
 msgid "Clear Recently Used"
-msgstr "Limpar os usados recentemente"
+msgstr "Limpar os Usados Recentemente"
 
 #: ../panel-plugin/plugin.cpp:412
 msgid "Copyright © 2013-2017 Graeme Gott"
-msgstr "Direitos de autor: Copyright © 2013-2017 Graeme Gott"
+msgstr "Direitos autorais: Copyright © 2013-2017 Graeme Gott"
 
 #: ../panel-plugin/configuration-dialog.cpp:844
 msgid "Details"
@@ -93,7 +93,7 @@ msgstr "Mo_strar:"
 
 #: ../panel-plugin/configuration-dialog.cpp:734
 msgid "Display by _default"
-msgstr "Mostrar por pré-_definição"
+msgstr "Mostrar por p_adrão"
 
 #: ../panel-plugin/page.cpp:268
 msgid "Edit Application..."
@@ -111,7 +111,7 @@ msgstr "Falha ao editar perfil."
 #: ../panel-plugin/run-action.cpp:41 ../panel-plugin/search-action.cpp:188
 #, c-format
 msgid "Failed to execute command \"%s\"."
-msgstr "Falhou ao executar o comando \"%s\"."
+msgstr "Falha ao executar o comando \"%s\"."
 
 #: ../panel-plugin/settings.cpp:123
 msgid "Failed to launch menu editor."
@@ -119,19 +119,19 @@ msgstr "Falha ao iniciar o editor de menu."
 
 #: ../panel-plugin/settings.cpp:120
 msgid "Failed to lock screen."
-msgstr "Falhou ao bloquear a tela"
+msgstr "Falha ao bloquear a tela."
 
 #: ../panel-plugin/settings.cpp:122
 msgid "Failed to log out."
-msgstr "Falhou ao sair"
+msgstr "Falha ao sair."
 
 #: ../panel-plugin/settings.cpp:119
 msgid "Failed to open settings manager."
-msgstr "Falhou ao abrir o gerenciador de configurações"
+msgstr "Falha ao abrir o gerenciador de configurações."
 
 #: ../panel-plugin/settings.cpp:121
 msgid "Failed to switch users."
-msgstr "Falha ao alternar usuários."
+msgstr "Falha ao trocar usuários."
 
 #: ../panel-plugin/window.cpp:161
 msgid "Favorites"
@@ -151,7 +151,7 @@ msgstr "Ig_norar favoritos"
 
 #: ../panel-plugin/configuration-dialog.cpp:621
 msgid "Ite_m icon size:"
-msgstr "Tamanho do Ícone do ítem"
+msgstr "Tamanho do ícone do item:"
 
 #: ../panel-plugin/icon-size.cpp:54
 msgid "Large"
@@ -159,15 +159,15 

[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 01/03: FIXED: Desktop action incorrectly parsed escaped k.

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

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

commit 52e25275e269a353b5cad1b497d3d2a3c448dc53
Author: Graeme Gott 
Date:   Fri Jun 2 09:23:09 2017 -0400

FIXED: Desktop action incorrectly parsed escaped k.
---
 panel-plugin/launcher.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/panel-plugin/launcher.cpp b/panel-plugin/launcher.cpp
index 7c3396e..7d164a5 100644
--- a/panel-plugin/launcher.cpp
+++ b/panel-plugin/launcher.cpp
@@ -319,6 +319,7 @@ void Launcher::run(GdkScreen* screen, DesktopAction* 
action) const
 
case 'k':
replace_and_free_with_quoted_string(command, i, 
garcon_menu_item_get_uri(m_item));
+   break;
 
case '%':
command.erase(i, 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