[Xfce4-commits] [apps/xfce4-terminal] 01/01: Add "Copy as HTML" to Edit and context menus

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

f2404 pushed a 
commit to branch 
master
in repository apps/xfce4-terminal.

commit e03b02912483df4cfeaeb1738604badda796fe51
Author: Igor 
Date:   Fri Jul 21 21:36:31 2017 -0400

Add "Copy as HTML" to Edit and context menus

This action copies text in HTML format preserving its color, boldness, etc.
The functionality will be available starting from vte 0.50 release.
---
 terminal/terminal-screen.c | 28 +++-
 terminal/terminal-screen.h |  3 +++
 terminal/terminal-window.c | 40 
 3 files changed, 70 insertions(+), 1 deletion(-)

diff --git a/terminal/terminal-screen.c b/terminal/terminal-screen.c
index 74dff03..472c677 100644
--- a/terminal/terminal-screen.c
+++ b/terminal/terminal-screen.c
@@ -1263,7 +1263,11 @@ terminal_screen_vte_selection_changed (VteTerminal
*terminal,
   g_object_get (G_OBJECT (screen->preferences),
 "misc-copy-on-select", _on_select, NULL);
   if (copy_on_select && vte_terminal_get_has_selection (terminal))
+#if VTE_CHECK_VERSION (0, 49, 2)
+vte_terminal_copy_clipboard_format (terminal, VTE_FORMAT_TEXT);
+#else
 vte_terminal_copy_clipboard (terminal);
+#endif
 
   g_signal_emit (G_OBJECT (screen), screen_signals[SELECTION_CHANGED], 0);
 }
@@ -2068,14 +2072,36 @@ terminal_screen_has_selection (TerminalScreen *screen)
  * terminal_screen_copy_clipboard:
  * @screen  : A #TerminalScreen.
  *
- * Places the selected text in the terminal in the #GDK_SELECTIN_CLIPBOARD 
selection.
+ * Places the selected text in the terminal in the #GDK_SELECTION_CLIPBOARD 
selection.
  **/
 void
 terminal_screen_copy_clipboard (TerminalScreen *screen)
 {
   terminal_return_if_fail (TERMINAL_IS_SCREEN (screen));
+#if VTE_CHECK_VERSION (0, 49, 2)
+  vte_terminal_copy_clipboard_format (VTE_TERMINAL (screen->terminal), 
VTE_FORMAT_TEXT);
+#else
   vte_terminal_copy_clipboard (VTE_TERMINAL (screen->terminal));
+#endif
+}
+
+
+
+/**
+ * terminal_screen_copy_clipboard_html:
+ * @screen  : A #TerminalScreen.
+ *
+ * Places the selected text in the terminal in the #GDK_SELECTION_CLIPBOARD 
selection
+ * as HTML (preserving colors, bold font, etc).
+ **/
+#if VTE_CHECK_VERSION (0, 49, 2)
+void
+terminal_screen_copy_clipboard_html (TerminalScreen *screen)
+{
+  terminal_return_if_fail (TERMINAL_IS_SCREEN (screen));
+  vte_terminal_copy_clipboard_format (VTE_TERMINAL (screen->terminal), 
VTE_FORMAT_HTML);
 }
+#endif
 
 
 
diff --git a/terminal/terminal-screen.h b/terminal/terminal-screen.h
index a8b7c37..ad151b2 100644
--- a/terminal/terminal-screen.h
+++ b/terminal/terminal-screen.h
@@ -78,6 +78,9 @@ voidterminal_screen_set_working_directory 
(TerminalScreen *scree
 gbooleanterminal_screen_has_selection (TerminalScreen 
*screen);
 
 voidterminal_screen_copy_clipboard(TerminalScreen 
*screen);
+#if VTE_CHECK_VERSION (0, 49, 2)
+voidterminal_screen_copy_clipboard_html   (TerminalScreen 
*screen);
+#endif
 voidterminal_screen_paste_clipboard   (TerminalScreen 
*screen);
 voidterminal_screen_paste_primary (TerminalScreen 
*screen);
 
diff --git a/terminal/terminal-window.c b/terminal/terminal-window.c
index 671eef8..d0938cf 100644
--- a/terminal/terminal-window.c
+++ b/terminal/terminal-window.c
@@ -185,6 +185,10 @@ static void terminal_window_action_close_window
   (GtkAction

TerminalWindow *window);
 static void terminal_window_action_copy   (GtkAction   
   *action,

TerminalWindow *window);
+#if VTE_CHECK_VERSION (0, 49, 2)
+static void terminal_window_action_copy_html  (GtkAction   
   *action,
+   
TerminalWindow *window);
+#endif
 static void terminal_window_action_paste  (GtkAction   
   *action,

TerminalWindow *window);
 static void terminal_window_action_paste_selection(GtkAction   
   *action,
@@ -323,6 +327,9 @@ static const GtkActionEntry action_entries[] =
 { "close-window", "application-exit", N_ ("Close _Window"), 
"q", NULL, G_CALLBACK (terminal_window_action_close_window), },
   { "edit-menu", NULL, N_ ("_Edit"), NULL, NULL, NULL, },
 { "copy", "edit-copy", N_ ("_Copy"), "c", N_ ("Copy to 
clipboard"), G_CALLBACK (terminal_window_action_copy), },
+#if VTE_CHECK_VERSION (0, 49, 2)
+{ "copy-html", "edit-copy", N_ ("Copy as _HTML"), NULL, N_ 

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

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

f2404 pushed a 
change to branch 
master
in repository apps/xfce4-terminal.

  from  6ed5d0b   I18n: Update translation da (100%).
   new  e03b029   Add "Copy as HTML" to Edit and context menus

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


Summary of changes:
 terminal/terminal-screen.c | 28 +++-
 terminal/terminal-screen.h |  3 +++
 terminal/terminal-window.c | 40 
 3 files changed, 70 insertions(+), 1 deletion(-)

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


[Xfce4-commits] [panel-plugins/xfce4-statusnotifier-plugin] branch master updated (20c3664 -> 4999bc5)

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

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

  from  20c3664   Use ctrl + right click to always display plugin's menu
   new  f017cfb   Split watcher and host logic
   new  4999bc5   Remove SnBox instead of its children upon plugin 
destruction

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:
 panel-plugin/sn-backend.c  | 689 +
 panel-plugin/sn-item.c |  19 -
 panel-plugin/sn-plugin.c   |   7 +-
 panel-plugin/statusnotifier.desktop.in |   2 +-
 4 files changed, 531 insertions(+), 186 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-statusnotifier-plugin] 02/02: Remove SnBox instead of its children upon plugin destruction

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

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

commit 4999bc52532893c80ac370dfa12ee05f3784de3b
Author: Viktor Odintsev 
Date:   Sat Jul 22 03:32:26 2017 +0300

Remove SnBox instead of its children upon plugin destruction
---
 panel-plugin/sn-plugin.c | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/panel-plugin/sn-plugin.c b/panel-plugin/sn-plugin.c
index de9582e..3dff055 100644
--- a/panel-plugin/sn-plugin.c
+++ b/panel-plugin/sn-plugin.c
@@ -107,12 +107,7 @@ sn_plugin_free (XfcePanelPlugin *panel_plugin)
   GList*children, *li;
 
   /* remove children so they won't use unrefed SnItems and SnConfig */
-  children = gtk_container_get_children (GTK_CONTAINER (plugin->box));
-  for (li = children; li != NULL; li = li->next)
-{
-  gtk_container_remove (GTK_CONTAINER (plugin->box), li->data);
-}
-  g_list_free (children);
+  gtk_container_remove (GTK_CONTAINER (panel_plugin), plugin->box);
 
   g_object_unref (plugin->backend);
   g_object_unref (plugin->config);

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


[Xfce4-commits] [panel-plugins/xfce4-statusnotifier-plugin] 01/02: Split watcher and host logic

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

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

commit f017cfb5c466707ac9f30907193ff373aebaf811
Author: Viktor Odintsev 
Date:   Sat Jul 22 03:26:48 2017 +0300

Split watcher and host logic

This change allows to use multiple instances of the plugin and even
work with external watchers depending on how well they designed.

One of the running plugins will be a "master" plugin which runs a
watcher service while other plugins will use this service. One of
these plugins will become a "master" plugin in the moment when
previous "master" plugin was removed.
---
 panel-plugin/sn-backend.c  | 689 +
 panel-plugin/sn-item.c |  19 -
 panel-plugin/statusnotifier.desktop.in |   2 +-
 3 files changed, 530 insertions(+), 180 deletions(-)

diff --git a/panel-plugin/sn-backend.c b/panel-plugin/sn-backend.c
index 4148804..d42bf3a 100644
--- a/panel-plugin/sn-backend.c
+++ b/panel-plugin/sn-backend.c
@@ -35,22 +35,59 @@
 
 static void  sn_backend_finalize (GObject  
   *object);
 
-static void  sn_backend_clear_items  
(SnBackend   *backend);
+static void  sn_backend_watcher_bus_acquired 
(GDBusConnection *connection,
+  const 
gchar *name,
+  gpointer 
user_data);
 
-static gboolean  sn_backend_register_item
(SnWatcher   *watcher,
+static void  sn_backend_watcher_name_lost
(GDBusConnection *connection,
+  const 
gchar *name,
+  gpointer 
user_data);
+
+static gboolean  sn_backend_watcher_register_item
(SnWatcher   *watcher_skeleton,
   
GDBusMethodInvocation   *invocation,
   const 
gchar *service,
   
SnBackend   *backend);
 
-static void  sn_backend_unregister_item  
(SnBackend   *backend,
-  SnItem   
   *item,
-  gboolean 
remove_and_notify);
-
-static gboolean  sn_backend_register_host
(SnWatcher   *watcher,
+static gboolean  sn_backend_watcher_register_host
(SnWatcher   *watcher_skeleton,
   
GDBusMethodInvocation   *invocation,
   const 
gchar *service);
 
-static void  sn_backend_update_registered_items  
(SnBackend   *backend);
+static void  sn_backend_watcher_update_items 
(SnBackend   *backend);
+
+static void  sn_backend_watcher_clear_items  
(SnBackend   *backend);
+
+static void  sn_backend_host_name_appeared   
(GDBusConnection *connection,
+  const 
gchar *name,
+  const 
gchar *name_owner,
+  gpointer 
user_data);
+
+static void  sn_backend_host_name_vanished   
(GDBusConnection*connection,
+  const 
gchar*name,
+  gpointer 
   user_data);
+
+static void  sn_backend_host_item_registered 
(SnWatcher   *host_proxy,
+  const 
gchar *service,
+  
SnBackend   *backend);
+
+static void  sn_backend_host_item_unregistered   
(SnWatcher   *host_proxy,
+

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

2017-07-21 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  4880427   I18n: Update translation zh_TW (100%).
   new  6ed5d0b   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 | 170 +--
 1 file changed, 89 insertions(+), 81 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 da (100%).

2017-07-21 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 6ed5d0bca561b4ab7ebbd06cfbb35409c7ba791b
Author: Anonymous 
Date:   Fri Jul 21 18:31:09 2017 +0200

I18n: Update translation da (100%).

348 translated messages.

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

diff --git a/po/da.po b/po/da.po
index bfb0d59..aa7320d 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,8 +12,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-07-19 00:31+0200\n"
-"PO-Revision-Date: 2017-07-19 20:20+\n"
+"POT-Creation-Date: 2017-07-20 00:31+0200\n"
+"PO-Revision-Date: 2017-07-21 13:53+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-apps/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -171,12 +171,12 @@ msgstr "Rapportér venligst fejl til <%s>."
 msgid "Unable to register terminal service: %s\n"
 msgstr "Kan ikke registrere terminalservice: %s\n"
 
-#: ../terminal/terminal-app.c:851
+#: ../terminal/terminal-app.c:848
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "Ugyldig geometri-streng \"%s\"\n"
 
-#: ../terminal/terminal-app.c:940
+#: ../terminal/terminal-app.c:937
 #, c-format
 msgid "Failed to connect to session manager: %s\n"
 msgstr "Kunne ikke oprette forbindelse til sessionhåndtering: %s\n"
@@ -411,25 +411,25 @@ msgstr "Indlæs forudinstillinger..."
 msgid "Terminal"
 msgstr "Terminal"
 
-#: ../terminal/terminal-screen.c:403 ../terminal/terminal-screen.c:771
-#: ../terminal/terminal-screen.c:1936
+#: ../terminal/terminal-screen.c:404 ../terminal/terminal-screen.c:772
+#: ../terminal/terminal-screen.c:1938
 msgid "Untitled"
 msgstr "Uden titel"
 
-#: ../terminal/terminal-screen.c:672
+#: ../terminal/terminal-screen.c:673
 #, c-format
 msgid "Unable to determine your login shell."
 msgstr "Kunne ikke bestemme din login-skal."
 
-#: ../terminal/terminal-screen.c:1620 ../terminal/terminal-screen.c:1646
+#: ../terminal/terminal-screen.c:1622 ../terminal/terminal-screen.c:1648
 msgid "Failed to execute child"
 msgstr "Kunne ikke afvikle underproces"
 
-#: ../terminal/terminal-screen.c:2236
+#: ../terminal/terminal-screen.c:2238
 msgid "Close this tab"
 msgstr "Luk dette faneblad"
 
-#: ../terminal/terminal-screen.c:2290
+#: ../terminal/terminal-screen.c:2292
 #, c-format
 msgid "Failed to set encoding %s\n"
 msgstr "Kunne ikke indstille kodning %s\n"
@@ -539,291 +539,299 @@ msgstr "Rullegardin-terminal"
 msgid "Toggle Drop-down Terminal"
 msgstr "Slå rullegardin-termin til og fra"
 
-#: ../terminal/terminal-window.c:310
+#: ../terminal/terminal-window.c:316
 msgid "_File"
 msgstr "_Fil"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open _Tab"
 msgstr "Åbn _faneblad"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open a new terminal tab"
 msgstr "Åbn et nyt terminalfaneblad"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open T_erminal"
 msgstr "Åbn t_erminal"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open a new terminal window"
 msgstr "Åbn et nyt terminalvindue"
 
-#: ../terminal/terminal-window.c:313
+#: ../terminal/terminal-window.c:319
 msgid "_Undo Close Tab"
 msgstr "F_ortryk luk faneblad"
 
-#: ../terminal/terminal-window.c:314
+#: ../terminal/terminal-window.c:320
 msgid "_Detach Tab"
 msgstr "F_rigør faneblad"
 
-#: ../terminal/terminal-window.c:315 ../terminal/terminal-window.c:736
+#: ../terminal/terminal-window.c:321 ../terminal/terminal-window.c:751
 msgid "Close T_ab"
 msgstr "_Luk faneblad"
 
-#: ../terminal/terminal-window.c:316
+#: ../terminal/terminal-window.c:322
 msgid "Close Other Ta_bs"
 msgstr "Luk _andre faneblade"
 
-#: ../terminal/terminal-window.c:317 ../terminal/terminal-window.c:739
+#: ../terminal/terminal-window.c:323 ../terminal/terminal-window.c:754
 msgid "Close _Window"
 msgstr "Luk _vindue"
 
-#: ../terminal/terminal-window.c:318
+#: ../terminal/terminal-window.c:324
 msgid "_Edit"
 msgstr "_Redigér"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:325
 msgid "_Copy"
 msgstr "_Kopiér"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:325
 msgid "Copy to clipboard"
 msgstr "Kopiér til udklipsholder"
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:326
 msgid "_Paste"
 msgstr "I_ndsæt"
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:326
 msgid "Paste from clipboard"
 msgstr "Indsæt fra udklipsholder"
 
-#: 

[Xfce4-commits] [panel-plugins/xfce4-clipman-plugin] annotated tag 1.4.2 created (now 8652da0)

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

ochosi pushed a 
change to annotated 
tag 1.4.2
in repository panel-plugins/xfce4-clipman-plugin.

at  8652da0   (tag)
   tagging  2691a6f86ab9716119c39189b972b0ba4d51fd26 (commit)
  replaces  1.4.1
 tagged by  Simon Steinbeiss
on  Fri Jul 21 14:47:12 2017 +0200

- Log -
Version 1.4.2
- Port to GtkApplication
  (this should help with keyboard shortcut issues)
- Translation updates: Catalan, Croatian, Danish, Dutch (Flemish), Greek,
  Indonesian, Italian, Kazakh, Lithuanian, Norwegian Bokmål, Serbian, Thai
---

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-clipman-plugin] 02/02: Updates for release

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

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

commit 2691a6f86ab9716119c39189b972b0ba4d51fd26
Author: Simon Steinbeiss 
Date:   Fri Jul 21 14:46:24 2017 +0200

Updates for release
---
 NEWS| 8 +++-
 configure.ac.in | 4 ++--
 2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 34dc34d..68b6fa7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,10 @@
+Version 1.4.2 - 2017-07-21
+
+- Port to GtkApplication
+  (this should help with keyboard shortcut issues)
+- Translation updates: Catalan, Croatian, Danish, Dutch (Flemish), Greek,
+  Indonesian, Italian, Kazakh, Lithuanian, Norwegian Bokmål, Serbian, Thai
+
 Version 1.4.1 - 2016-11-28
 
 - New application icon
@@ -172,4 +179,3 @@ Version 0.9.0 - 2009-01-15
   done by David Collins.
 - Drop the repetitive timeout against a callback/signal to check for clipboard
   changes.
-
diff --git a/configure.ac.in b/configure.ac.in
index 5835ff1..7f7a635 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -11,9 +11,9 @@ dnl *** Version information ***
 dnl ***
 m4_define([project_version_major], [1])
 m4_define([project_version_minor], [4])
-m4_define([project_version_micro], [1])
+m4_define([project_version_micro], [2])
 m4_define([project_version_build], [@REVISION@])
-m4_define([project_version_tag], [git]) # leave empty for release
+m4_define([project_version_tag], []) # leave empty for release
 m4_define([project_version], 
[project_version_major().project_version_minor().project_version_micro()ifelse(project_version_tag(),
 [git], [project_version_tag()-project_version_build()], 
[project_version_tag()])])
 
 dnl ***

-- 
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/02: Ignore deprecation warning for gtk_menu_popup

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

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

commit 30a97b52a07b1531039e7db4323dc1c9762b2a8e
Author: Simon Steinbeiss 
Date:   Fri Jul 21 14:45:42 2017 +0200

Ignore deprecation warning for gtk_menu_popup

As this is done for the panel plugin itself as well, let's also
do it for the actions.
---
 panel-plugin/actions.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/panel-plugin/actions.c b/panel-plugin/actions.c
index 929e5c8..7943c57 100644
--- a/panel-plugin/actions.c
+++ b/panel-plugin/actions.c
@@ -771,8 +771,9 @@ clipman_actions_match_with_menu (ClipmanActions *actions,
 gtk_grab_add(actions->priv->menu);
   }
 
-
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
   gtk_menu_popup (GTK_MENU (actions->priv->menu), NULL, NULL, NULL, NULL, 0, 
gtk_get_current_event_time ());
+G_GNUC_END_IGNORE_DEPRECATIONS
 
   g_slist_free (entries);
 }

-- 
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 (68bc4ff -> 2691a6f)

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

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

  from  68bc4ff   Implement GtkApplication for the panel plugin
   new  30a97b5   Ignore deprecation warning for gtk_menu_popup
   new  2691a6f   Updates for release

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:
 NEWS   | 8 +++-
 configure.ac.in| 4 ++--
 panel-plugin/actions.c | 3 ++-
 3 files changed, 11 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-statusnotifier-plugin] 01/01: Use ctrl + right click to always display plugin's menu

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

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

commit 20c3664e6a1838f76549b0577833f89e278b7bf2
Author: Viktor Odintsev 
Date:   Fri Jul 21 15:15:42 2017 +0300

Use ctrl + right click to always display plugin's menu
---
 panel-plugin/sn-button.c | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/panel-plugin/sn-button.c b/panel-plugin/sn-button.c
index 6dcf23a..56d2ba4 100644
--- a/panel-plugin/sn-button.c
+++ b/panel-plugin/sn-button.c
@@ -244,6 +244,12 @@ sn_button_button_press (GtkWidget  *widget,
 
   menu_is_primary = sn_config_get_menu_is_primary (button->config);
 
+  if (event->button == 3 && (event->state & GDK_CONTROL_MASK) == 
GDK_CONTROL_MASK)
+{
+  /* ctrl + right click is used to show plugin's menu */
+  return FALSE;
+}
+
   if (event->button == 3 && (button->menu_only || menu_is_primary))
 {
   /* menu is available by left click, so show the panel menu instead */

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


[Xfce4-commits] [panel-plugins/xfce4-statusnotifier-plugin] branch master updated (21760d0 -> 20c3664)

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

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

  from  21760d0   Always use preferred icon size for GtkIconTheme
   new  20c3664   Use ctrl + right click to always display plugin's menu

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


Summary of changes:
 panel-plugin/sn-button.c | 6 ++
 1 file changed, 6 insertions(+)

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

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

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

commit fbafa93a9f81eee38ee20210d2c49cb022f74495
Author: 玉堂白鹤 
Date:   Fri Jul 21 12:32:01 2017 +0200

I18n: Update translation zh_CN (100%).

40 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/zh_CN.po | 39 ---
 1 file changed, 24 insertions(+), 15 deletions(-)

diff --git a/po/zh_CN.po b/po/zh_CN.po
index c36e5b3..0c9be72 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -6,13 +6,14 @@
 # Chipong Luo , 2011-2013
 # Mingcong Bai , 2017
 # 玉堂白鹤 , 2013
+# 玉堂白鹤 , 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: 2017-01-09 07:22+\n"
-"Last-Translator: Mingcong Bai \n"
+"POT-Creation-Date: 2017-07-16 18:31+0200\n"
+"PO-Revision-Date: 2017-07-21 07:53+\n"
+"Last-Translator: 玉堂白鹤 \n"
 "Language-Team: Chinese (China) 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -104,7 +105,7 @@ msgstr "清空"
 msgid "Are you sure you want to clear the list of known indicators?"
 msgstr "您确定要清除已知指示器列表吗?"
 
-#: ../panel-plugin/indicator-dialog.c:577
+#: ../panel-plugin/indicator-dialog.c:579
 #, c-format
 msgid "Unable to open the following url: %s"
 msgstr "未能打开以下地址:%s"
@@ -134,51 +135,59 @@ msgid ""
 msgstr "控制处于桌面栏模式下的面板上的指示器按钮布局。可能的选项是 “居中” 或 “居左”。"
 
 #: ../panel-plugin/indicator-dialog.glade.h:6
+msgid "Square icons"
+msgstr "方形图标"
+
+#: ../panel-plugin/indicator-dialog.glade.h:7
+msgid "Indicator buttons will take a square when it's possible."
+msgstr "指示器按钮将尽可能使用方形图标。"
+
+#: ../panel-plugin/indicator-dialog.glade.h:8
 msgid "Appearance"
 msgstr "外观"
 
-#: ../panel-plugin/indicator-dialog.glade.h:7
+#: ../panel-plugin/indicator-dialog.glade.h:9
 msgid "Hide indicators by default"
 msgstr "默认隐藏指示器"
 
-#: ../panel-plugin/indicator-dialog.glade.h:8
+#: ../panel-plugin/indicator-dialog.glade.h:10
 msgid ""
 "When enabled, only indicators marked \"Visible\" are shown. Otherwise, all "
 "indicators not marked \"Hidden\" are displayed."
 msgstr "启用后,只显示标有 “可见” 的指示器。否则,显示所有未标有 “隐藏” 的指示器。"
 
-#: ../panel-plugin/indicator-dialog.glade.h:9
+#: ../panel-plugin/indicator-dialog.glade.h:11
 msgid "Indicator"
 msgstr "指示器"
 
-#: ../panel-plugin/indicator-dialog.glade.h:10
+#: ../panel-plugin/indicator-dialog.glade.h:12
 msgid "Hidden"
 msgstr "隐藏"
 
-#: ../panel-plugin/indicator-dialog.glade.h:11
+#: ../panel-plugin/indicator-dialog.glade.h:13
 msgid "Visible"
 msgstr "可见"
 
-#: ../panel-plugin/indicator-dialog.glade.h:12
+#: ../panel-plugin/indicator-dialog.glade.h:14
 msgid "Move the selected indicator one row up."
 msgstr "将选中的指示器上移一行。"
 
-#: ../panel-plugin/indicator-dialog.glade.h:13
+#: ../panel-plugin/indicator-dialog.glade.h:15
 msgid "Move the selected indicator one row down."
 msgstr "将选中的指示器下移一行。"
 
-#: ../panel-plugin/indicator-dialog.glade.h:14
+#: ../panel-plugin/indicator-dialog.glade.h:16
 msgid "Please restart the panel for visibility changes to take effect."
 msgstr "请重启面板以便可见性更改生效。"
 
-#: ../panel-plugin/indicator-dialog.glade.h:15
+#: ../panel-plugin/indicator-dialog.glade.h:17
 msgid "C_lear known indicators"
 msgstr "清除已知的指示器(_L)"
 
-#: ../panel-plugin/indicator-dialog.glade.h:16
+#: ../panel-plugin/indicator-dialog.glade.h:18
 msgid "Resets the list of indicators and their visibility settings."
 msgstr "重置指示器列表及其可见性设置。"
 
-#: ../panel-plugin/indicator-dialog.glade.h:17
+#: ../panel-plugin/indicator-dialog.glade.h:19
 msgid "Known Indicators"
 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] [apps/xfce4-taskmanager] 01/01: I18n: Update translation sr (95%).

2017-07-21 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-taskmanager.

commit f5567654ec193c82ec1ac435df3a6d972bcfb8a1
Author: Саша Петровић 
Date:   Fri Jul 21 12:31:23 2017 +0200

I18n: Update translation sr (95%).

81 translated messages, 4 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/sr.po | 128 ++-
 1 file changed, 85 insertions(+), 43 deletions(-)

diff --git a/po/sr.po b/po/sr.po
index 830a058..c38f578 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,16 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Саша Петровић , 2012-2013
+# Саша Петровић , 2012-2013,2017
 # Саша Петровић , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-20 00:31+0100\n"
-"PO-Revision-Date: 2014-12-28 16:36+\n"
+"POT-Creation-Date: 2017-01-27 00:30+0100\n"
+"PO-Revision-Date: 2017-07-21 07:29+\n"
 "Last-Translator: Саша Петровић \n"
-"Language-Team: Serbian 
(http://www.transifex.com/projects/p/xfce-apps/language/sr/)\n"
+"Language-Team: Serbian 
(http://www.transifex.com/xfce/xfce-apps/language/sr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -21,13 +21,13 @@ msgstr ""
 
 #: ../xfce4-taskmanager.desktop.in.h:1 ../src/exec-tool-button.c:106
 #: ../src/exec-tool-button.c:151 ../src/main.c:186
-#: ../src/process-tree-view.c:372 ../src/process-tree-view.c:387
-#: ../src/process-tree-view.c:415 ../src/process-window.c:389
+#: ../src/process-tree-view.c:374 ../src/process-tree-view.c:389
+#: ../src/process-tree-view.c:417 ../src/process-window.c:500
 #: ../src/process-window.ui.h:1 ../src/process-window-gtk3.ui.h:1
 msgid "Task Manager"
 msgstr "Управник задатака"
 
-#: ../xfce4-taskmanager.desktop.in.h:2 ../src/process-window.c:396
+#: ../xfce4-taskmanager.desktop.in.h:2 ../src/process-window.c:507
 msgid "Easy to use task manager"
 msgstr "Управник задатака лак за коришћење"
 
@@ -78,12 +78,12 @@ msgid ""
 "Swap: %s"
 msgstr "Процеси: %u\nПроцесор: %.0f%%\nМеморија: %s\nЗаменска меморија: %s"
 
-#: ../src/process-statusbar.c:147 ../src/process-window.c:461
+#: ../src/process-statusbar.c:147 ../src/process-window.c:572
 #, c-format
 msgid "CPU: %s%%"
 msgstr "Процесор: %s%%"
 
-#: ../src/process-statusbar.c:162 ../src/process-window.c:465
+#: ../src/process-statusbar.c:162 ../src/process-window.c:576
 #, c-format
 msgid "Memory: %s"
 msgstr "Меморија: %s"
@@ -98,120 +98,162 @@ msgstr "Заменска меморија: %s"
 msgid "Processes: %d"
 msgstr "Процеси: %d"
 
-#: ../src/process-tree-view.c:136
+#: ../src/process-tree-view.c:137
 msgid "Task"
 msgstr "Задатак"
 
-#: ../src/process-tree-view.c:147 ../src/settings-tool-button.c:175
+#: ../src/process-tree-view.c:148 ../src/settings-tool-button.c:175
 msgid "PID"
 msgstr "ПИД"
 
-#: ../src/process-tree-view.c:155 ../src/settings-tool-button.c:176
+#: ../src/process-tree-view.c:156 ../src/settings-tool-button.c:176
 msgid "PPID"
 msgstr "ППИД"
 
-#: ../src/process-tree-view.c:163 ../src/settings-tool-button.c:177
+#: ../src/process-tree-view.c:164 ../src/settings-tool-button.c:177
 msgid "State"
 msgstr "Стање"
 
-#: ../src/process-tree-view.c:172
+#: ../src/process-tree-view.c:173
 msgid "VSZ"
 msgstr "ВСЗ"
 
-#: ../src/process-tree-view.c:180
+#: ../src/process-tree-view.c:181
 msgid "RSS"
 msgstr "РСС"
 
-#: ../src/process-tree-view.c:188 ../src/settings-tool-button.c:180
+#: ../src/process-tree-view.c:189 ../src/settings-tool-button.c:180
 msgid "UID"
 msgstr "ЈЛБ"
 
-#: ../src/process-tree-view.c:196 ../src/settings-tool-button.c:181
+#: ../src/process-tree-view.c:197 ../src/settings-tool-button.c:181
 msgid "CPU"
 msgstr "Процесор"
 
 #. TRANSLATORS: “Prio.” is short for Priority, it appears in the tree view
 #. header.
-#: ../src/process-tree-view.c:205
+#: ../src/process-tree-view.c:206
 msgid "Prio."
 msgstr "Предност"
 
-#: ../src/process-tree-view.c:369
+#: ../src/process-tree-view.c:370
 msgid "Terminate task"
 msgstr "Окончај задатак"
 
-#: ../src/process-tree-view.c:369
+#: ../src/process-tree-view.c:370
 msgid "Kill task"
 msgstr "Убиј задатак"
 
-#: ../src/process-tree-view.c:371
+#: ../src/process-tree-view.c:372
 #, c-format
-msgid "Are you sure you want to send a signal to the PID %d?"
-msgstr "Да ли сте сигурни да желите послати сигнал ПИД-у %d?"
+msgid "Are you sure you want to send the %s signal to the PID %d?"
+msgstr "Да ли сигурно желите послати сигнал%s ПИД-у %d?"
 
-#: ../src/process-tree-view.c:383
+#: 

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

2017-07-21 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  b2ae17e   I18n: Update translation ru (100%).
   new  4d6c717   I18n: Update translation zh_CN (99%).
   new  4880427   I18n: Update translation zh_TW (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/zh_CN.po | 412 +++-
 po/zh_TW.po | 170 +
 2 files changed, 305 insertions(+), 277 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/02: I18n: Update translation zh_CN (99%).

2017-07-21 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 4d6c717de9ed52c61776914c9d2a416cdee6c12c
Author: 玉堂白鹤 
Date:   Fri Jul 21 12:31:31 2017 +0200

I18n: Update translation zh_CN (99%).

346 translated messages, 2 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/zh_CN.po | 412 +++-
 1 file changed, 216 insertions(+), 196 deletions(-)

diff --git a/po/zh_CN.po b/po/zh_CN.po
index 12e5b7a..4a07e85 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -14,8 +14,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-07-06 06:31+0200\n"
-"PO-Revision-Date: 2017-07-09 03:35+\n"
+"POT-Creation-Date: 2017-07-20 00:31+0200\n"
+"PO-Revision-Date: 2017-07-21 08:08+\n"
 "Last-Translator: 玉堂白鹤 \n"
 "Language-Team: Chinese (China) 
(http://www.transifex.com/xfce/xfce-apps/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
@@ -173,12 +173,12 @@ msgstr "请向 <%s> 报告缺陷。"
 msgid "Unable to register terminal service: %s\n"
 msgstr "未能注册终端服务:%s\n"
 
-#: ../terminal/terminal-app.c:851
+#: ../terminal/terminal-app.c:848
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "无效的几何属性字符串 “%s”\n"
 
-#: ../terminal/terminal-app.c:940
+#: ../terminal/terminal-app.c:937
 #, c-format
 msgid "Failed to connect to session manager: %s\n"
 msgstr "无法连接到会话管理器:%s\n"
@@ -397,41 +397,41 @@ msgstr "选项“--zoom”需要指定缩放大小(%d .. %d)作为其参数"
 msgid "Unknown option \"%s\""
 msgstr "未知选项 “%s”"
 
-#: ../terminal/terminal-preferences-dialog.c:379
+#: ../terminal/terminal-preferences-dialog.c:385
 msgid "All Files"
 msgstr "所有文件"
 
-#: ../terminal/terminal-preferences-dialog.c:385
+#: ../terminal/terminal-preferences-dialog.c:391
 msgid "Image Files"
 msgstr "图片文件"
 
-#: ../terminal/terminal-preferences-dialog.c:818
+#: ../terminal/terminal-preferences-dialog.c:847
 msgid "Load Presets..."
 msgstr "载入预设..."
 
-#: ../terminal/terminal-preferences.c:1073
+#: ../terminal/terminal-preferences.c:1084
 msgid "Terminal"
 msgstr "Terminal 终端"
 
-#: ../terminal/terminal-screen.c:403 ../terminal/terminal-screen.c:771
-#: ../terminal/terminal-screen.c:1936
+#: ../terminal/terminal-screen.c:404 ../terminal/terminal-screen.c:772
+#: ../terminal/terminal-screen.c:1938
 msgid "Untitled"
 msgstr "无标题"
 
-#: ../terminal/terminal-screen.c:672
+#: ../terminal/terminal-screen.c:673
 #, c-format
 msgid "Unable to determine your login shell."
 msgstr "未能确定您的登录 shell。"
 
-#: ../terminal/terminal-screen.c:1620 ../terminal/terminal-screen.c:1646
+#: ../terminal/terminal-screen.c:1622 ../terminal/terminal-screen.c:1648
 msgid "Failed to execute child"
 msgstr "无法执行子进程"
 
-#: ../terminal/terminal-screen.c:2236
+#: ../terminal/terminal-screen.c:2238
 msgid "Close this tab"
 msgstr "关闭此标签"
 
-#: ../terminal/terminal-screen.c:2290
+#: ../terminal/terminal-screen.c:2292
 #, c-format
 msgid "Failed to set encoding %s\n"
 msgstr "设置编码 %s 失败\n"
@@ -529,303 +529,311 @@ msgstr "收到了无效的颜色数据:错误的格式(%d)或长度(%d)\n"
 msgid "Failed to open the URL '%s'"
 msgstr "无法打开 URL “%s”"
 
-#: ../terminal/terminal-window-dropdown.c:274
+#: ../terminal/terminal-window-dropdown.c:283
 msgid "Keep window open when it loses focus"
 msgstr "当窗口失去焦点时保持其打开"
 
-#: ../terminal/terminal-window-dropdown.c:395
+#: ../terminal/terminal-window-dropdown.c:408
 msgid "Drop-down Terminal"
 msgstr "下拉终端"
 
-#: ../terminal/terminal-window-dropdown.c:396
+#: ../terminal/terminal-window-dropdown.c:409
 msgid "Toggle Drop-down Terminal"
 msgstr "切换下拉终端"
 
-#: ../terminal/terminal-window.c:310
+#: ../terminal/terminal-window.c:316
 msgid "_File"
 msgstr "文件(_F)"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open _Tab"
 msgstr "打开标签(_T)"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open a new terminal tab"
 msgstr "打开新的终端标签"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open T_erminal"
 msgstr "打开终端(_E)"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open a new terminal window"
 msgstr "打开新的终端窗口"
 
-#: ../terminal/terminal-window.c:313
+#: ../terminal/terminal-window.c:319
 msgid "_Undo Close Tab"
 msgstr "撤销关闭标签(_U)"
 
-#: ../terminal/terminal-window.c:314
+#: ../terminal/terminal-window.c:320
 msgid "_Detach Tab"
 msgstr "分离标签(_D)"
 
-#: ../terminal/terminal-window.c:315 ../terminal/terminal-window.c:736
+#: ../terminal/terminal-window.c:321 ../terminal/terminal-window.c:751
 msgid "Close T_ab"
 msgstr "关闭标签(_A)"
 
-#: ../terminal/terminal-window.c:316
+#: ../terminal/terminal-window.c:322
 msgid "Close Other Ta_bs"
 msgstr "关闭其他标签(_B)"
 
-#: 

[Xfce4-commits] [panel-plugins/xfce4-indicator-plugin] branch master updated (0a39c97 -> fbafa93)

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

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

  from  0a39c97   I18n: Update translation pt_BR (100%).
   new  fbafa93   I18n: Update translation zh_CN (100%).

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


Summary of changes:
 po/zh_CN.po | 39 ---
 1 file changed, 24 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] [apps/xfce4-terminal] 02/02: I18n: Update translation zh_TW (100%).

2017-07-21 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 488042780a4505594089283a9693aa895663352e
Author: Jeff Huang 
Date:   Fri Jul 21 12:31:31 2017 +0200

I18n: Update translation zh_TW (100%).

348 translated messages.

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

diff --git a/po/zh_TW.po b/po/zh_TW.po
index 6eb944e..614a658 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-07-19 00:31+0200\n"
-"PO-Revision-Date: 2017-07-19 05:48+\n"
+"POT-Creation-Date: 2017-07-20 00:31+0200\n"
+"PO-Revision-Date: 2017-07-21 05:26+\n"
 "Last-Translator: Jeff Huang \n"
 "Language-Team: Chinese (Taiwan) 
(http://www.transifex.com/xfce/xfce-apps/language/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -170,12 +170,12 @@ msgstr "請回報臭蟲至 <%s>。"
 msgid "Unable to register terminal service: %s\n"
 msgstr "無法註冊終端機服務:%s\n"
 
-#: ../terminal/terminal-app.c:851
+#: ../terminal/terminal-app.c:848
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "無效的幾何字串 \"%s\"\n"
 
-#: ../terminal/terminal-app.c:940
+#: ../terminal/terminal-app.c:937
 #, c-format
 msgid "Failed to connect to session manager: %s\n"
 msgstr "連線至工作階段管理員時失敗:%s\n"
@@ -410,25 +410,25 @@ msgstr "載入預置設定..."
 msgid "Terminal"
 msgstr "終端機"
 
-#: ../terminal/terminal-screen.c:403 ../terminal/terminal-screen.c:771
-#: ../terminal/terminal-screen.c:1936
+#: ../terminal/terminal-screen.c:404 ../terminal/terminal-screen.c:772
+#: ../terminal/terminal-screen.c:1938
 msgid "Untitled"
 msgstr "無標題"
 
-#: ../terminal/terminal-screen.c:672
+#: ../terminal/terminal-screen.c:673
 #, c-format
 msgid "Unable to determine your login shell."
 msgstr "無法決定您登入的 shell。"
 
-#: ../terminal/terminal-screen.c:1620 ../terminal/terminal-screen.c:1646
+#: ../terminal/terminal-screen.c:1622 ../terminal/terminal-screen.c:1648
 msgid "Failed to execute child"
 msgstr "無法執行子程序"
 
-#: ../terminal/terminal-screen.c:2236
+#: ../terminal/terminal-screen.c:2238
 msgid "Close this tab"
 msgstr "關閉此分頁"
 
-#: ../terminal/terminal-screen.c:2290
+#: ../terminal/terminal-screen.c:2292
 #, c-format
 msgid "Failed to set encoding %s\n"
 msgstr "設定編碼 %s 時失敗\n"
@@ -538,291 +538,299 @@ msgstr "下拉式終端機"
 msgid "Toggle Drop-down Terminal"
 msgstr "切換下拉式終端機"
 
-#: ../terminal/terminal-window.c:310
+#: ../terminal/terminal-window.c:316
 msgid "_File"
 msgstr "檔案(_F)"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open _Tab"
 msgstr "開啟分頁(_T)"
 
-#: ../terminal/terminal-window.c:311
+#: ../terminal/terminal-window.c:317
 msgid "Open a new terminal tab"
 msgstr "開啟新的終端機分頁"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open T_erminal"
 msgstr "開啟終端機(_E)"
 
-#: ../terminal/terminal-window.c:312
+#: ../terminal/terminal-window.c:318
 msgid "Open a new terminal window"
 msgstr "開啟新的終端機視窗"
 
-#: ../terminal/terminal-window.c:313
+#: ../terminal/terminal-window.c:319
 msgid "_Undo Close Tab"
 msgstr "復原關閉分頁(_U)"
 
-#: ../terminal/terminal-window.c:314
+#: ../terminal/terminal-window.c:320
 msgid "_Detach Tab"
 msgstr "脫離分頁(_D)"
 
-#: ../terminal/terminal-window.c:315 ../terminal/terminal-window.c:736
+#: ../terminal/terminal-window.c:321 ../terminal/terminal-window.c:751
 msgid "Close T_ab"
 msgstr "關閉分頁(_A)"
 
-#: ../terminal/terminal-window.c:316
+#: ../terminal/terminal-window.c:322
 msgid "Close Other Ta_bs"
 msgstr "關閉其他分頁(_B)"
 
-#: ../terminal/terminal-window.c:317 ../terminal/terminal-window.c:739
+#: ../terminal/terminal-window.c:323 ../terminal/terminal-window.c:754
 msgid "Close _Window"
 msgstr "關閉視窗(_W)"
 
-#: ../terminal/terminal-window.c:318
+#: ../terminal/terminal-window.c:324
 msgid "_Edit"
 msgstr "編輯(_E)"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:325
 msgid "_Copy"
 msgstr "複製(_C)"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:325
 msgid "Copy to clipboard"
 msgstr "複製到剪貼簿"
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:326
 msgid "_Paste"
 msgstr "貼上(_P)"
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:326
 msgid "Paste from clipboard"
 msgstr "從剪貼簿貼上"
 
-#: ../terminal/terminal-window.c:321
+#: ../terminal/terminal-window.c:327
 msgid "Paste _Selection"
 msgstr "貼上選取內容(_S)"
 
-#: ../terminal/terminal-window.c:322
+#: ../terminal/terminal-window.c:328
 msgid "Select _All"
 msgstr "全選(_A)"
 
-#: ../terminal/terminal-window.c:323
+#: ../terminal/terminal-window.c:329
 

[Xfce4-commits] [apps/xfce4-taskmanager] branch master updated (e935fa0 -> f556765)

2017-07-21 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-taskmanager.

  from  e935fa0   I18n: Update translation ar (89%).
   new  f556765   I18n: Update translation sr (95%).

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 | 128 ++-
 1 file changed, 85 insertions(+), 43 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-appfinder] 01/01: I18n: Update translation zh_CN (100%).

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

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

commit e17c19e935b5e9d35ce9e6a0ae09e79c3b361880
Author: 玉堂白鹤 
Date:   Fri Jul 21 12:30:42 2017 +0200

I18n: Update translation zh_CN (100%).

75 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/zh_CN.po | 64 ++---
 1 file changed, 40 insertions(+), 24 deletions(-)

diff --git a/po/zh_CN.po b/po/zh_CN.po
index 47037fb..ce9bc46 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -10,15 +10,15 @@
 # Jick Nan , 2006
 # 玉堂白鹤 , 2013-2014
 # Yongtao Yang , 2004
-# 玉堂白鹤 , 2015
+# 玉堂白鹤 , 2015,2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-appfinder\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-28 18:30+0100\n"
-"PO-Revision-Date: 2015-03-02 08:57+\n"
+"POT-Creation-Date: 2017-07-17 06:30+0200\n"
+"PO-Revision-Date: 2017-07-21 08:13+\n"
 "Last-Translator: 玉堂白鹤 \n"
-"Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/xfce4-appfinder/language/zh_CN/)\n"
+"Language-Team: Chinese (China) 
(http://www.transifex.com/xfce/xfce4-appfinder/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -34,35 +34,35 @@ msgstr "强制退出"
 msgid "All Applications"
 msgstr "所有应用程序"
 
-#: ../src/appfinder-model.c:575
+#: ../src/appfinder-model.c:576
 msgid "Name"
 msgstr "名称"
 
-#: ../src/appfinder-model.c:576
+#: ../src/appfinder-model.c:577
 msgid "Comment"
 msgstr "注释"
 
-#: ../src/appfinder-model.c:577
+#: ../src/appfinder-model.c:578
 msgid "Command"
 msgstr "命令"
 
-#: ../src/appfinder-model.c:578
+#: ../src/appfinder-model.c:579
 msgid "Categories"
 msgstr "类别"
 
-#: ../src/appfinder-model.c:579
+#: ../src/appfinder-model.c:580
 msgid "Filename"
 msgstr "文件名"
 
-#: ../src/appfinder-model.c:2100
+#: ../src/appfinder-model.c:2097
 msgid "Application has no command"
 msgstr "应用程序没有命令"
 
-#: ../src/appfinder-model.c:2519
+#: ../src/appfinder-model.c:2516
 msgid "Commands History"
 msgstr "命令历史"
 
-#: ../src/appfinder-model.c:2543
+#: ../src/appfinder-model.c:2540
 msgid "Bookmarks"
 msgstr "书签"
 
@@ -87,64 +87,80 @@ msgstr "将永远删除自定义的动作。"
 msgid "Are you sure you want to delete pattern \"%s\"?"
 msgstr "您确定要删除类型 “%s” 吗?"
 
-#: ../src/appfinder-window.c:222 ../src/appfinder-preferences.glade.h:10
+#: ../src/appfinder-window.c:220 ../src/appfinder-preferences.glade.h:10
 #: ../data/xfce4-appfinder.desktop.in.h:1
 msgid "Application Finder"
 msgstr "应用程序查找器"
 
-#: ../src/appfinder-window.c:289
+#: ../src/appfinder-window.c:268
 msgid "Toggle view mode"
 msgstr "切换视图模式"
 
-#: ../src/appfinder-window.c:394
+#: ../src/appfinder-window.c:344
+msgid "_Preferences"
+msgstr "首选项(_P)"
+
+#: ../src/appfinder-window.c:360
+msgid "Close"
+msgstr "关闭"
+
+#: ../src/appfinder-window.c:370 ../src/appfinder-window.c:1040
 msgid "La_unch"
 msgstr "启动(_U)"
 
-#: ../src/appfinder-window.c:880
+#: ../src/appfinder-window.c:854
 msgid "Failed to launch desktop item editor"
 msgstr "无法启动桌面项目编辑器"
 
-#: ../src/appfinder-window.c:906
+#: ../src/appfinder-window.c:880
 msgid ""
 "This will permanently remove the custom desktop file from your home "
 "directory."
 msgstr "这会从您的主文件夹中永远移除自定义的桌面文件。"
 
-#: ../src/appfinder-window.c:907
+#: ../src/appfinder-window.c:881
 #, c-format
 msgid "Are you sure you want to revert \"%s\"?"
 msgstr "您确定要恢复 “%s” 吗?"
 
-#: ../src/appfinder-window.c:917
+#: ../src/appfinder-window.c:891
 msgid "Failed to remove desktop file"
 msgstr "无法移除桌面文件"
 
 #. I18N: the first %s will be replace with users' applications directory, the
 #. * second with Hidden=true
-#: ../src/appfinder-window.c:950
+#: ../src/appfinder-window.c:924
 #, c-format
 msgid ""
 "To unhide the item you have to manually remove the desktop file from \"%s\" "
 "or open the file in the same directory and remove the line \"%s\"."
 msgstr "要隐藏此项目,您只得从 “%s” 手动移除桌面文件、或在相同的目录中打开此文件并移除行 “%s”。"
 
-#: ../src/appfinder-window.c:955 ../src/appfinder-window.c:1074
+#: ../src/appfinder-window.c:929 ../src/appfinder-window.c:1077
 msgid "_Hide"
 msgstr "隐藏(_H)"
 
-#: ../src/appfinder-window.c:956
+#: ../src/appfinder-window.c:930
 #, c-format
 msgid "Are you sure you want to hide \"%s\"?"
 msgstr "您确定要隐藏 “%s” 吗?"
 
-#: ../src/appfinder-window.c:1037
+#: ../src/appfinder-window.c:1024
 msgid "Remove From Bookmarks"
 msgstr "从书签中移除"
 
-#: ../src/appfinder-window.c:1037
+#: ../src/appfinder-window.c:1024
 msgid "Add to Bookmarks"
 msgstr "添加至书签"
 
+#: ../src/appfinder-window.c:1053
+msgid "_Edit"
+msgstr "编辑(_E)"
+
+#: ../src/appfinder-window.c:1070
+msgid "_Revert"
+msgstr "重置(_R)"

[Xfce4-commits] [xfce/xfce4-appfinder] branch master updated (251e256 -> e17c19e)

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

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

  from  251e256   I18n: Update translation pt_BR (100%).
   new  e17c19e   I18n: Update translation zh_CN (100%).

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


Summary of changes:
 po/zh_CN.po | 64 ++---
 1 file changed, 40 insertions(+), 24 deletions(-)

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


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

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

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

commit 8f7bb9b0cdf5af5171ce33560101fa4b009c79cd
Author: 玉堂白鹤 
Date:   Fri Jul 21 12:30:03 2017 +0200

I18n: Update translation zh_CN (100%).

298 translated messages.

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

diff --git a/po/zh_CN.po b/po/zh_CN.po
index 63406ff..5e5c349 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -15,8 +15,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Exo\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-07-08 12:30+0200\n"
-"PO-Revision-Date: 2017-07-09 03:52+\n"
+"POT-Creation-Date: 2017-07-17 00:30+0200\n"
+"PO-Revision-Date: 2017-07-21 07:45+\n"
 "Last-Translator: 玉堂白鹤 \n"
 "Language-Team: Chinese (China) 
(http://www.transifex.com/xfce/exo/language/zh_CN/)\n"
 "MIME-Version: 1.0\n"
@@ -530,9 +530,9 @@ msgstr "  --strip-content   移除 XML 文件中的节点内容\n"
 #: ../exo-csource/main.c:314
 #, c-format
 msgid "  --output=filename Write generated csource to specified file\n"
-msgstr ""
+msgstr "--output=filename 将生成的 csource 写入指定的文件\n"
 
-#: ../exo-csource/main.c:324 ../exo-desktop-item-edit/main.c:195
+#: ../exo-csource/main.c:324 ../exo-desktop-item-edit/main.c:196
 #: ../exo-open/main.c:509
 #, c-format
 msgid ""
@@ -543,7 +543,7 @@ msgid ""
 "\n"
 msgstr "版权 (c) %s\n  os-cillation e.K. 版权所有。\n\n由 Benedikt Meurer 
 撰写。\n\n"
 
-#: ../exo-csource/main.c:328 ../exo-desktop-item-edit/main.c:199
+#: ../exo-csource/main.c:328 ../exo-desktop-item-edit/main.c:200
 #: ../exo-open/main.c:513
 #, c-format
 msgid ""
@@ -554,7 +554,7 @@ msgid ""
 "\n"
 msgstr "%1$s 绝对没有任何担保,\n您可以在 %3$s 的源码包中找到 GNU 宽通用公共\n许可协议并在此协议的约束下重新发布 %2$s 
的副本。\n\n"
 
-#: ../exo-csource/main.c:332 ../exo-desktop-item-edit/main.c:203
+#: ../exo-csource/main.c:332 ../exo-desktop-item-edit/main.c:204
 #: ../exo-open/main.c:517
 #, c-format
 msgid "Please report bugs to <%s>.\n"
@@ -568,7 +568,7 @@ msgstr "选择应用程序"
 #: ../exo-desktop-item-edit/exo-die-command-entry.c:260
 #: ../exo-desktop-item-edit/exo-die-editor.c:594
 #: ../exo-desktop-item-edit/exo-die-editor.c:638
-#: ../exo-desktop-item-edit/main.c:325 ../exo-desktop-item-edit/main.c:516
+#: ../exo-desktop-item-edit/main.c:326 ../exo-desktop-item-edit/main.c:517
 #: ../exo-helper/exo-helper-chooser.c:382
 #: ../exo-helper/exo-helper-chooser.c:527
 #: ../exo-helper/exo-helper-launcher-dialog.c:109
@@ -712,130 +712,130 @@ msgid "File location is not a regular file or directory"
 msgstr "文件位置不是常规的文件或目录"
 
 #. --- constants ---
-#: ../exo-desktop-item-edit/main.c:53
+#: ../exo-desktop-item-edit/main.c:54
 msgid "Create Launcher"
 msgstr "创建启动器"
 
-#: ../exo-desktop-item-edit/main.c:53
+#: ../exo-desktop-item-edit/main.c:54
 msgid "Create Link"
 msgstr "创建链接"
 
-#: ../exo-desktop-item-edit/main.c:53
+#: ../exo-desktop-item-edit/main.c:54
 msgid "Create Directory"
 msgstr "创建目录"
 
-#: ../exo-desktop-item-edit/main.c:54
+#: ../exo-desktop-item-edit/main.c:55
 msgid "Edit Launcher"
 msgstr "编辑启动器"
 
-#: ../exo-desktop-item-edit/main.c:54
+#: ../exo-desktop-item-edit/main.c:55
 msgid "Edit Link"
 msgstr "编辑链接"
 
-#: ../exo-desktop-item-edit/main.c:54
+#: ../exo-desktop-item-edit/main.c:55
 msgid "Edit Directory"
 msgstr "编辑目录"
 
-#: ../exo-desktop-item-edit/main.c:79
+#: ../exo-desktop-item-edit/main.c:80
 msgid "Create a new desktop file in the given directory"
 msgstr "在给定的目录下创建新的桌面文件"
 
-#: ../exo-desktop-item-edit/main.c:80
+#: ../exo-desktop-item-edit/main.c:81
 msgid "Type of desktop file to create (Application or Link)"
 msgstr "要创建的桌面文件类型(应用程序或链接)"
 
-#: ../exo-desktop-item-edit/main.c:81
+#: ../exo-desktop-item-edit/main.c:82
 msgid "Preset name when creating a desktop file"
 msgstr "创建桌面文件时的预设名称"
 
-#: ../exo-desktop-item-edit/main.c:82
+#: ../exo-desktop-item-edit/main.c:83
 msgid "Preset comment when creating a desktop file"
 msgstr "创建桌面文件时的预设注释"
 
-#: ../exo-desktop-item-edit/main.c:83
+#: ../exo-desktop-item-edit/main.c:84
 msgid "Preset command when creating a launcher"
 msgstr "创建启动器时的预设命令"
 
-#: ../exo-desktop-item-edit/main.c:84
+#: ../exo-desktop-item-edit/main.c:85
 msgid "Preset URL when creating a link"
 msgstr "创建链接时的预设 URL"
 
-#: ../exo-desktop-item-edit/main.c:85
+#: ../exo-desktop-item-edit/main.c:86
 msgid "Preset icon when creating a desktop file"
 msgstr "创建桌面文件时的预设图标"
 
-#: ../exo-desktop-item-edit/main.c:86 ../exo-helper/main.c:72
+#: ../exo-desktop-item-edit/main.c:87 ../exo-helper/main.c:72
 msgid "Print version information and exit"
 msgstr "列印版本信息后退出"
 
 #. initialize Gtk+
-#: ../exo-desktop-item-edit/main.c:171
+#: ../exo-desktop-item-edit/main.c:172
 msgid 

[Xfce4-commits] [xfce/exo] branch master updated (142f5b9 -> 8f7bb9b)

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

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

  from  142f5b9   I18n: Update translation pt_BR (100%).
   new  8f7bb9b   I18n: Update translation zh_CN (100%).

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


Summary of changes:
 po/zh_CN.po | 84 ++---
 1 file changed, 42 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