[Xfce4-commits] [apps/xfce4-terminal] branch master updated (183896a -> 0983901)

2016-10-23 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  183896a   Resolve gdk_screen_get_monitor_geometry deprecation 
warning
   new  0983901   Resolve gdk_menu_popup deprecation warnings

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-widget.c  | 4 
 terminal/terminal-window-dropdown.c | 4 
 terminal/terminal-window.c  | 4 
 3 files changed, 12 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] [apps/xfce4-terminal] 01/01: Resolve gdk_menu_popup deprecation warnings

2016-10-23 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 09839017c428a1f608667f0a36621270cbb88d67
Author: Igor 
Date:   Sun Oct 23 20:20:07 2016 +0300

Resolve gdk_menu_popup deprecation warnings
---
 terminal/terminal-widget.c  | 4 
 terminal/terminal-window-dropdown.c | 4 
 terminal/terminal-window.c  | 4 
 3 files changed, 12 insertions(+)

diff --git a/terminal/terminal-widget.c b/terminal/terminal-widget.c
index e5ff96b..8d2da66 100644
--- a/terminal/terminal-widget.c
+++ b/terminal/terminal-widget.c
@@ -346,7 +346,11 @@ terminal_widget_context_menu (TerminalWidget *widget,
 
   /* run our custom main loop */
   gtk_grab_add (menu);
+#if GTK_CHECK_VERSION (3, 22, 0)
+  gtk_menu_popup_at_pointer (GTK_MENU (menu), NULL);
+#else
   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL, button, event_time);
+#endif
   g_main_loop_run (loop);
   g_main_loop_unref (loop);
   gtk_grab_remove (menu);
diff --git a/terminal/terminal-window-dropdown.c 
b/terminal/terminal-window-dropdown.c
index 7af50a7..3f68910 100644
--- a/terminal/terminal-window-dropdown.c
+++ b/terminal/terminal-window-dropdown.c
@@ -547,10 +547,14 @@ terminal_window_dropdown_status_icon_popup_menu 
(GtkStatusIcon  *status_
  gtk_action_create_menu_item (action));
 
   gtk_widget_show_all (menu);
+#if GTK_CHECK_VERSION (3, 22, 0)
+  gtk_menu_popup_at_pointer (GTK_MENU (menu), NULL);
+#else
   gtk_menu_popup (GTK_MENU (menu),
   NULL, NULL,
   NULL, NULL,
   button, timestamp);
+#endif
 }
 
 
diff --git a/terminal/terminal-window.c b/terminal/terminal-window.c
index 8ebe241..c468af8 100644
--- a/terminal/terminal-window.c
+++ b/terminal/terminal-window.c
@@ -1115,7 +1115,11 @@ terminal_window_notebook_button_press_event (GtkNotebook 
   *notebook,
 
   /* show the tab menu */
   menu = gtk_ui_manager_get_widget (window->ui_manager, "/tab-menu");
+#if GTK_CHECK_VERSION (3, 22, 0)
+  gtk_menu_popup_at_pointer (GTK_MENU (menu), NULL);
+#else
   gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL, 
event->button, event->time);
+#endif
 }
 
   return TRUE;

-- 
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: Resolve gdk_screen_get_monitor_geometry deprecation warning

2016-10-23 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 183896ae8403aaa513b94c2ba28a4056f2a9bfc0
Author: Igor 
Date:   Sun Oct 23 20:07:47 2016 +0300

Resolve gdk_screen_get_monitor_geometry deprecation warning
---
 terminal/terminal-window-dropdown.c | 36 
 1 file changed, 36 insertions(+)

diff --git a/terminal/terminal-window-dropdown.c 
b/terminal/terminal-window-dropdown.c
index 941dc29..7af50a7 100644
--- a/terminal/terminal-window-dropdown.c
+++ b/terminal/terminal-window-dropdown.c
@@ -565,7 +565,14 @@ terminal_window_dropdown_animate_down (gpointer data)
   gintstep_size, vbox_h;
 
   /* get window size */
+#if GTK_CHECK_VERSION (3, 22, 0)
+  GdkDisplay *display = gdk_screen_get_display (dropdown->screen);
+  GdkMonitor *monitor =
+  gdk_display_get_monitor_at_window (display, gtk_widget_get_window 
(GTK_WIDGET (data)));
+  gdk_monitor_get_geometry (monitor, );
+#else
   gdk_screen_get_monitor_geometry (dropdown->screen, dropdown->monitor_num, 
);
+#endif
   if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION 
(window->action_fullscreen)))
 {
   /* calculate width/height if not fullscreen */
@@ -612,7 +619,14 @@ terminal_window_dropdown_animate_up (gpointer data)
   gintstep_size, vbox_h, min_size;
 
   /* get window size */
+#if GTK_CHECK_VERSION (3, 22, 0)
+  GdkDisplay *display = gdk_screen_get_display (dropdown->screen);
+  GdkMonitor *monitor =
+  gdk_display_get_monitor_at_window (display, gtk_widget_get_window 
(GTK_WIDGET (data)));
+  gdk_monitor_get_geometry (monitor, );
+#else
   gdk_screen_get_monitor_geometry (dropdown->screen, dropdown->monitor_num, 
);
+#endif
   if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION 
(window->action_fullscreen)))
 {
   /* calculate width/height if not fullscreen */
@@ -706,6 +720,10 @@ terminal_window_dropdown_show (TerminalWindowDropdown 
*dropdown,
   gboolean   visible;
   gint   vbox_h;
   TerminalDirection  old_animation_dir = ANIMATION_DIR_NONE;
+#if GTK_CHECK_VERSION (3, 22, 0)
+  GdkDisplay*display;
+  GdkMonitor*monitor;
+#endif
 
   visible = gtk_widget_get_visible (GTK_WIDGET (dropdown));
 
@@ -726,7 +744,14 @@ terminal_window_dropdown_show (TerminalWindowDropdown 
*dropdown,
 dropdown->screen = xfce_gdk_screen_get_active (>monitor_num);
 
   /* get the active monitor size */
+#if GTK_CHECK_VERSION (3, 22, 0)
+  display = gdk_screen_get_display (dropdown->screen);
+  monitor = gdk_display_get_monitor_at_window (display,
+   gtk_widget_get_window 
(GTK_WIDGET (dropdown)));
+  gdk_monitor_get_geometry (monitor, _geo);
+#else
   gdk_screen_get_monitor_geometry (dropdown->screen, dropdown->monitor_num, 
_geo);
+#endif
 
   /* move window to correct screen */
   gtk_window_set_screen (GTK_WINDOW (dropdown), dropdown->screen);
@@ -967,10 +992,21 @@ terminal_window_dropdown_get_size (TerminalWindowDropdown 
*dropdown,
   gintxpad, ypad;
   glong   char_width, char_height;
   GtkRequisition  req;
+#if GTK_CHECK_VERSION (3, 22, 0)
+  GdkDisplay *display;
+  GdkMonitor *monitor;
+#endif
 
   /* get the active monitor size */
   gdkscreen = xfce_gdk_screen_get_active (_num);
+#if GTK_CHECK_VERSION (3, 22, 0)
+  display = gdk_screen_get_display (gdkscreen);
+  monitor = gdk_display_get_monitor_at_window (display,
+   gtk_widget_get_window 
(GTK_WIDGET (dropdown)));
+  gdk_monitor_get_geometry (monitor, _geo);
+#else
   gdk_screen_get_monitor_geometry (gdkscreen, monitor_num, _geo);
+#endif
 
   /* get terminal size */
   terminal_screen_get_geometry (screen, _width, _height, , 
);

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


[Xfce4-commits] [apps/xfce4-terminal] branch master updated (17379fd -> 183896a)

2016-10-23 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  17379fd   I18n: Update translation pl (100%).
   new  183896a   Resolve gdk_screen_get_monitor_geometry deprecation 
warning

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-window-dropdown.c | 36 
 1 file changed, 36 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-xkb-plugin] branch master updated (ae64f66 -> 6841afb)

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

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

  from  ae64f66   I18n: Update translation kk (100%).
   new  6841afb   I18n: Update translation oc (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/oc.po | 52 +++-
 1 file changed, 23 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-verve-plugin] branch master updated (04620b2 -> 1c02e40)

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

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

  from  04620b2   I18n: Update translation it (100%).
   new  1c02e40   I18n: Update translation oc (56%).

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/oc.po | 101 +++
 1 file changed, 88 insertions(+), 13 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-wavelan-plugin] branch master updated (2755c96 -> 7ba9d27)

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

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

  from  2755c96   I18n: Update translation lt (100%).
   new  7ba9d27   I18n: Update translation oc (66%).

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/oc.po | 73 +---
 1 file changed, 51 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] [panel-plugins/xfce4-systemload-plugin] 01/01: I18n: Update translation oc (95%).

2016-10-23 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 4fdcd35efc5bc931ca7c7dfb2290cd01ecb5203e
Author: Cédric Valmary 
Date:   Sun Oct 23 18:32:11 2016 +0200

I18n: Update translation oc (95%).

21 translated messages, 1 untranslated message.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/oc.po | 77 
 1 file changed, 39 insertions(+), 38 deletions(-)

diff --git a/po/oc.po b/po/oc.po
index 2557cbf..52f757e 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Cedric31 , 2013
+# Cédric Valmary , 2016
+# Cédric Valmary , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-03 21:20+0200\n"
-"PO-Revision-Date: 2013-12-07 09:04+\n"
-"Last-Translator: Cedric31 \n"
-"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n"
+"POT-Creation-Date: 2016-06-05 18:31+0200\n"
+"PO-Revision-Date: 2016-10-23 14:54+\n"
+"Last-Translator: Cédric Valmary \n"
+"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/oc/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -22,96 +23,96 @@ msgstr ""
 msgid "File /proc/stat not found!"
 msgstr "Fichièr /proc/stat pas trobat !"
 
-#: ../panel-plugin/systemload.c:159
+#: ../panel-plugin/systemload.c:179
 #, c-format
 msgid "System Load: %ld%%"
 msgstr "Carga del sistèma : %ld%%"
 
-#: ../panel-plugin/systemload.c:166
+#: ../panel-plugin/systemload.c:186
 #, c-format
 msgid "Memory: %ldMB of %ldMB used"
 msgstr "Memòria : %ldMio de %ldMio utilizat"
 
-#: ../panel-plugin/systemload.c:174
+#: ../panel-plugin/systemload.c:194
 #, c-format
 msgid "Swap: %ldMB of %ldMB used"
 msgstr "Fichièr d'escambi : %ldMio de %ldMio utilizat"
 
-#: ../panel-plugin/systemload.c:177
+#: ../panel-plugin/systemload.c:197
 #, c-format
 msgid "No swap"
 msgstr "Pas cap de fichièr d'escambi"
 
-#: ../panel-plugin/systemload.c:188
+#: ../panel-plugin/systemload.c:208
 #, c-format
 msgid "%d day"
 msgid_plural "%d days"
 msgstr[0] "%d Jorn"
 msgstr[1] "%d Jorns"
 
-#: ../panel-plugin/systemload.c:192
+#: ../panel-plugin/systemload.c:212
 #, c-format
 msgid "Uptime: %d day %d:%02d"
 msgid_plural "Uptime: %d days %d:%02d"
 msgstr[0] "Temps de foncionament : %d jorn %d:%02d"
 msgstr[1] "Temps de foncionament : %d jorns %d:%02d"
 
-#: ../panel-plugin/systemload.c:200
+#: ../panel-plugin/systemload.c:220
 #, c-format
 msgid "Uptime: %d:%02d"
 msgstr "Temps de foncionament : %d:%02d"
 
-#: ../panel-plugin/systemload.c:816
+#: ../panel-plugin/systemload.c:335
+msgid "Run _System Monitor"
+msgstr ""
+
+#: ../panel-plugin/systemload.c:824
+msgid "Bar color:"
+msgstr "Color de barra :"
+
+#: ../panel-plugin/systemload.c:838
+msgid "Text to display:"
+msgstr "Tèxte d'afichar :"
+
+#: ../panel-plugin/systemload.c:895
 msgid "CPU monitor"
 msgstr "Monitor del CPU"
 
-#: ../panel-plugin/systemload.c:817
+#: ../panel-plugin/systemload.c:896
 msgid "Memory monitor"
 msgstr "Monitor de la memòria"
 
-#: ../panel-plugin/systemload.c:818
+#: ../panel-plugin/systemload.c:897
 msgid "Swap monitor"
 msgstr "Monitor del fichièr d'escambi"
 
-#: ../panel-plugin/systemload.c:819
+#: ../panel-plugin/systemload.c:898
 msgid "Uptime monitor"
 msgstr "Monitor del temps de foncionament"
 
-#: ../panel-plugin/systemload.c:824 ../panel-plugin/systemload.desktop.in:4
+#: ../panel-plugin/systemload.c:903 ../panel-plugin/systemload.desktop.in.h:1
 msgid "System Load Monitor"
 msgstr "Monitor de la carga del sistèma"
 
-#: ../panel-plugin/systemload.c:839
-msgid "General"
-msgstr "General"
-
-#: ../panel-plugin/systemload.c:841
+#: ../panel-plugin/systemload.c:923
 msgid "Update interval:"
 msgstr "Interval de mesa a jorn :"
 
-#: ../panel-plugin/systemload.c:841 ../panel-plugin/systemload.c:846
-msgid "s"
-msgstr "s"
-
-#: ../panel-plugin/systemload.c:846
+#: ../panel-plugin/systemload.c:928
 msgid "Power-saving interval:"
 msgstr "Interval d'estalvi d'energia :"
 
-#: ../panel-plugin/systemload.c:860
-msgid "Text to display:"
-msgstr "Tèxte d'afichar :"
-
-#: ../panel-plugin/systemload.c:864
-msgid "Bar color:"
-msgstr "Color de barra :"
+#: ../panel-plugin/systemload.c:934
+msgid "System monitor:"
+msgstr "Monitor del sistèma :"
 
-#: ../panel-plugin/systemload.c:889 ../panel-plugin/systemload.desktop.in:5
+#: ../panel-plugin/systemload.c:972 ../panel-plugin/systemload.desktop.in.h:2
 msgid "Monitor CPU load, swap usage and memory footprint"
 msgstr "Monitor de la carga del CPU, utilizacion del 

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

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

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

commit 7eab13b84297721b6ab73077ec4c6088846e0d90
Author: Cédric Valmary 
Date:   Sun Oct 23 18:31:50 2016 +0200

I18n: Update translation oc (100%).

24 translated messages.

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

diff --git a/po/oc.po b/po/oc.po
index 4a96984..b32747f 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -3,113 +3,114 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Cedric31 , 2013
+# Cédric Valmary , 2016
+# Cédric Valmary , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-03 21:07+0200\n"
-"PO-Revision-Date: 2013-12-06 19:55+\n"
-"Last-Translator: Cedric31 \n"
-"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n"
+"POT-Creation-Date: 2016-05-01 18:33+0200\n"
+"PO-Revision-Date: 2016-10-23 14:54+\n"
+"Last-Translator: Cédric Valmary \n"
+"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/oc/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: oc\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:137
-#: ../panel-plugin/xfce4-mpc-plugin.c:213
-#: ../panel-plugin/xfce4-mpc-plugin.c:758
+#: ../panel-plugin/xfce4-mpc-plugin.c:116
+#: ../panel-plugin/xfce4-mpc-plugin.c:192
+#: ../panel-plugin/xfce4-mpc-plugin.c:739
 msgid "Launch"
 msgstr "Aviar"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:270
+#: ../panel-plugin/xfce4-mpc-plugin.c:249
 msgid "Mpd Client Plugin"
 msgstr "Empeuton del client mpd"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:276
+#: ../panel-plugin/xfce4-mpc-plugin.c:255
 msgid "Properties"
 msgstr "Proprietats"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:289
+#: ../panel-plugin/xfce4-mpc-plugin.c:270
 msgid "Host : "
 msgstr "Òste :"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:290
+#: ../panel-plugin/xfce4-mpc-plugin.c:271
 msgid "Port : "
 msgstr "Pòrt :"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:291
+#: ../panel-plugin/xfce4-mpc-plugin.c:272
 msgid "Password : "
 msgstr "Senhal :"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:292
+#: ../panel-plugin/xfce4-mpc-plugin.c:273
 msgid "MPD Client : "
 msgstr "Client MPD :"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:293
+#: ../panel-plugin/xfce4-mpc-plugin.c:274
 msgid "Tooltip Format : "
 msgstr "Format de l'infobulla :"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:294
+#: ../panel-plugin/xfce4-mpc-plugin.c:275
 msgid "Playlist Format : "
 msgstr "Format de la lista de lectura :"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:328
+#: ../panel-plugin/xfce4-mpc-plugin.c:276
+msgid "Show _frame"
+msgstr "Afichar lo _quadre"
+
+#: ../panel-plugin/xfce4-mpc-plugin.c:316
 msgid "Hostname or IP address"
 msgstr "Nom d'òste o adreça IP"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:329
+#: ../panel-plugin/xfce4-mpc-plugin.c:317
 msgid "Graphical MPD Client to launch in plugin context menu"
 msgstr "Client MPD grafic d'aviar dins lo menú contextual de l'empeuton"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:330
+#: ../panel-plugin/xfce4-mpc-plugin.c:318
 msgid "Variables : %artist%, %album%, %track% and %title%"
 msgstr "Variablas : %artist%, %album%, %track% e %title%"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:331
+#: ../panel-plugin/xfce4-mpc-plugin.c:319
 msgid ""
 "Variables : %vol%, %status%, %newline%, %artist%, %album%, %track% and "
 "%title%"
 msgstr "Variablas : %vol%, %status%, %newline%, %artist%, %album%, %track% e 
%title%"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:336
-msgid "Show _frame"
-msgstr "Afichar lo _quadre"
-
-#: ../panel-plugin/xfce4-mpc-plugin.c:458
-#: ../panel-plugin/xfce4-mpc-plugin.c:689
+#: ../panel-plugin/xfce4-mpc-plugin.c:440
+#: ../panel-plugin/xfce4-mpc-plugin.c:670
 msgid " not connected ?"
 msgstr "... pas connectat ?"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:542
+#: ../panel-plugin/xfce4-mpc-plugin.c:524
 msgid "Mpd playlist"
 msgstr "Lista de lectura Mpd"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:754
+#: ../panel-plugin/xfce4-mpc-plugin.c:735
 msgid "Random"
 msgstr "Aleatòri"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:756
+#: ../panel-plugin/xfce4-mpc-plugin.c:737
 msgid "Repeat"
 msgstr "Repetir"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:761
+#: ../panel-plugin/xfce4-mpc-plugin.c:742
 msgid "Commands"
 msgstr "Comandas"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:765
+#: ../panel-plugin/xfce4-mpc-plugin.c:746
 msgid "Outputs"
 msgstr "Sortidas"
 
-#: ../panel-plugin/xfce4-mpc-plugin.c:789

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

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

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

commit 6841afbc42cc8ff7eb7e714b9699a39e18d223eb
Author: Cédric Valmary 
Date:   Sun Oct 23 18:32:39 2016 +0200

I18n: Update translation oc (100%).

15 translated messages.

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

diff --git a/po/oc.po b/po/oc.po
index cef24c3..8e0d214 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -3,85 +3,79 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Cedric31 , 2013
+# Cédric Valmary , 2016
+# Cédric Valmary , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-03 21:34+0200\n"
-"PO-Revision-Date: 2013-12-07 10:54+\n"
-"Last-Translator: Cedric31 \n"
-"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n"
+"POT-Creation-Date: 2015-07-01 00:31+0200\n"
+"PO-Revision-Date: 2016-10-23 14:54+\n"
+"Last-Translator: Cédric Valmary \n"
+"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/oc/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: oc\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../panel-plugin/xkb-settings-dialog.c:112
+#: ../panel-plugin/xkb-settings-dialog.c:120
 #: ../panel-plugin/xkb-plugin.desktop.in.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Disposicions del clavièr"
 
 #. ***
-#: ../panel-plugin/xkb-settings-dialog.c:122
+#: ../panel-plugin/xkb-settings-dialog.c:130
 msgid "Show layout as:"
 msgstr "Afichar la disposicion en tant que :"
 
-#: ../panel-plugin/xkb-settings-dialog.c:127
+#: ../panel-plugin/xkb-settings-dialog.c:135
 msgid "image"
 msgstr "imatge"
 
-#: ../panel-plugin/xkb-settings-dialog.c:128
+#: ../panel-plugin/xkb-settings-dialog.c:136
 msgid "text"
 msgstr "tèxte"
 
 #. text size option
-#: ../panel-plugin/xkb-settings-dialog.c:133
+#: ../panel-plugin/xkb-settings-dialog.c:141
 msgid "Text size:"
 msgstr "Talha del tèxte :"
 
-#: ../panel-plugin/xkb-settings-dialog.c:138
-msgid "small"
-msgstr "pichon"
+#. image size option
+#: ../panel-plugin/xkb-settings-dialog.c:152
+msgid "Image size:"
+msgstr "Talha de l'imatge :"
 
-#: ../panel-plugin/xkb-settings-dialog.c:139
-msgid "medium"
-msgstr "mejan"
-
-#: ../panel-plugin/xkb-settings-dialog.c:140
-msgid "large"
-msgstr "grand"
-
-#: ../panel-plugin/xkb-settings-dialog.c:144
+#: ../panel-plugin/xkb-settings-dialog.c:162
 msgid "Manage layout:"
 msgstr "Gerir la disposicion :"
 
-#: ../panel-plugin/xkb-settings-dialog.c:149
+#: ../panel-plugin/xkb-settings-dialog.c:167
 msgid "globally"
 msgstr "globalament"
 
-#: ../panel-plugin/xkb-settings-dialog.c:150
+#: ../panel-plugin/xkb-settings-dialog.c:168
 msgid "per window"
 msgstr "per fenèstra"
 
-#: ../panel-plugin/xkb-settings-dialog.c:151
+#: ../panel-plugin/xkb-settings-dialog.c:169
 msgid "per application"
 msgstr "per aplicacion"
 
-#: ../panel-plugin/xkb-settings-dialog.c:185
+#: ../panel-plugin/xkb-settings-dialog.c:205
 msgid "Keyboard Layouts Plugin"
 msgstr "Empeuton de disposicion del clavièr"
 
-#: ../panel-plugin/xkb-settings-dialog.c:195
+#: ../panel-plugin/xkb-settings-dialog.c:215
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Permet l'utilizacion de mantuna disposicions del clavièr."
 
-#: ../panel-plugin/xkb-settings-dialog.c:199
+#: ../panel-plugin/xkb-settings-dialog.c:219
 msgid "Other plugins available here"
 msgstr "Autres empeutons disponibles aicí"
 
-#: ../panel-plugin/xfce4-xkb-plugin.c:128
+#: ../panel-plugin/xfce4-xkb-plugin.c:131
 msgid "Keyboard settings"
 msgstr "Paramètres del clavièr"
 

-- 
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 (104d0f6 -> 4fdcd35)

2016-10-23 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  104d0f6   I18n: Update translation eu (100%).
   new  4fdcd35   I18n: Update translation oc (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/oc.po | 77 
 1 file changed, 39 insertions(+), 38 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-mpc-plugin] branch master updated (6a4c75d -> 7eab13b)

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

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

  from  6a4c75d   I18n: Update translation th (100%).
   new  7eab13b   I18n: Update translation oc (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/oc.po | 71 
 1 file changed, 36 insertions(+), 35 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] branch master updated (bdba311 -> e633f99)

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

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

  from  bdba311   I18n: Update translation eu (54%).
   new  e633f99   I18n: Update translation oc (99%).

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/oc.po | 564 ---
 1 file changed, 285 insertions(+), 279 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] [www/www.xfce.org] 01/01: I18n: Update translation oc (87%).

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

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

commit 3806c5950829a8051e43008f2a5e963ed76afd34
Author: Cédric Valmary 
Date:   Sun Oct 23 18:32:44 2016 +0200

I18n: Update translation oc (87%).

594 translated messages, 85 untranslated messages.

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

diff --git a/lib/po/oc.po b/lib/po/oc.po
index ddbf19c..57aa6b2 100644
--- a/lib/po/oc.po
+++ b/lib/po/oc.po
@@ -11,8 +11,8 @@ msgstr ""
 "Project-Id-Version: Xfce Websites\n"
 "Report-Msgid-Bugs-To: https://bugzilla.xfce.org\n;
 "POT-Creation-Date: 2015-03-28 09:10+0100\n"
-"PO-Revision-Date: 2016-06-12 13:52+\n"
-"Last-Translator: Tot en òc \n"
+"PO-Revision-Date: 2016-10-23 14:42+\n"
+"Last-Translator: Cédric Valmary \n"
 "Language-Team: Occitan (post 1500) 
(http://www.transifex.com/xfce/xfce-www/language/oc/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -2269,7 +2269,7 @@ msgid ""
 "This tour will introduce you to new major features of Xfce 4.12. It only "
 "covers improvements made on the surface; for the full list of changes, see "
 "the changelogs."
-msgstr ""
+msgstr "Aquesta visita vous fera descobrir de novèlas foncionalitats majeures 
de Xfce 4.12. Cobrís pas que la partida visuala d'aqueste qu'es estada faita, 
per la lista completa de las modificacions, veire lo la lista dels modificacions."
 
 #: about/tour.php:9
 msgid "Window Switcher Dialog"
@@ -2355,7 +2355,7 @@ msgstr ""
 
 #: about/tour.php:43
 msgid "Don't come closer!"
-msgstr ""
+msgstr "Aprochetz pas !"
 
 #: about/tour.php:45
 msgid "Hah! Now you don't see me!"

-- 
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] [www/www.xfce.org] branch master updated (5ca2c53 -> 3806c59)

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

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

  from  5ca2c53   I18n: Update translation pl (98%).
   new  3806c59   I18n: Update translation oc (87%).

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:
 lib/po/oc.po | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-quicklauncher-plugin] branch master updated (056ff79 -> 46a0d39)

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

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

  from  056ff79   I18n: Update translation eu (100%).
   new  46a0d39   I18n: Update translation oc (82%).

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/oc.po | 49 +
 1 file changed, 25 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] [panel-plugins/xfce4-netload-plugin] 01/01: I18n: Update translation oc (97%).

2016-10-23 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 576723bc64d38ac037c087f9e7a0ec894c895fa4
Author: Cédric Valmary 
Date:   Sun Oct 23 18:31:55 2016 +0200

I18n: Update translation oc (97%).

33 translated messages, 1 untranslated message.

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

diff --git a/po/oc.po b/po/oc.po
index 27b0210..696c32a 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -1,46 +1,46 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
+# 
 # Translators:
-# Cedric31 , 2013
+# Cédric Valmary , 2016
+# Cédric Valmary , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-11-16 12:09+0100\n"
-"PO-Revision-Date: 2013-12-06 19:54+\n"
-"Last-Translator: Cedric31 \n"
-"Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/xfce/;
-"language/oc/)\n"
-"Language: oc\n"
+"POT-Creation-Date: 2016-05-14 18:31+0200\n"
+"PO-Revision-Date: 2016-10-23 14:54+\n"
+"Last-Translator: Cédric Valmary \n"
+"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/oc/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: oc\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../panel-plugin/netload.c:62
+#: ../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 "Error desconeguda."
 
-#: ../panel-plugin/netload.c:66
+#: ../panel-plugin/netload.c:65
 msgid "Linux proc device '/proc/net/dev' not found."
 msgstr "Periferic Linux proc '/proc/net/dev' pas trobat."
 
-#: ../panel-plugin/netload.c:67
+#: ../panel-plugin/netload.c:66
 msgid "Interface was not found."
 msgstr "Interfàcia pas trobada."
 
-#: ../panel-plugin/netload.c:168
+#: ../panel-plugin/netload.c:167
 #, c-format
 msgid "<< %s >> (Interface down)"
 msgstr "<< %s >> (interfàcia inactiva)"
 
-#: ../panel-plugin/netload.c:255
+#: ../panel-plugin/netload.c:254
 #, c-format
 msgid ""
 "<< %s >> (%s)\n"
@@ -49,96 +49,84 @@ msgid ""
 "Incoming: %s\n"
 "Outgoing: %s\n"
 "Total: %s"
-msgstr ""
-"<< %s >> (%s)\n"
-"Mejana de las %d darrièras mesuras\n"
-"amb un interval de %.2fs :\n"
-"Entrant : %s/s\n"
-"Sortent : %s/s\n"
-"Total : %s/s"
+msgstr "<< %s >> (%s)\nMejana de las %d darrièras mesuras\namb un interval de 
%.2fs :\nEntrant : %s/s\nSortent : %s/s\nTotal : %s/s"
 
-#: ../panel-plugin/netload.c:258
+#: ../panel-plugin/netload.c:257
 msgid "no IP address"
 msgstr "pas d'adreça IP"
 
-#: ../panel-plugin/netload.c:585
+#: ../panel-plugin/netload.c:659
 #, c-format
 msgid ""
 "%s: Error in initializing:\n"
 "%s"
-msgstr ""
-"%s : Error pendent l'inicializacion :\n"
-"%s"
+msgstr "%s : Error pendent l'inicializacion :\n%s"
 
-#: ../panel-plugin/netload.c:914
-msgid "Select color"
-msgstr "Seleccionar una color"
-
-#: ../panel-plugin/netload.c:981
+#: ../panel-plugin/netload.c:999
 msgid "Bar color (i_ncoming):"
 msgstr "Color de la barra (_entrant) :"
 
-#: ../panel-plugin/netload.c:982
+#: ../panel-plugin/netload.c:1000
 msgid "Bar color (_outgoing):"
 msgstr "Color de la barra (_sortent) :"
 
-#: ../panel-plugin/netload.c:985
+#: ../panel-plugin/netload.c:1003
 msgid "Maximum (inco_ming):"
 msgstr "Maximum (e_ntrant) :"
 
-#: ../panel-plugin/netload.c:986
+#: ../panel-plugin/netload.c:1004
 msgid "Maximum (o_utgoing):"
 msgstr "Maximum (s_ortent) :"
 
-#: ../panel-plugin/netload.c:991 ../panel-plugin/netload.desktop.in.in.h:1
+#: ../panel-plugin/netload.c:1009 ../panel-plugin/netload.desktop.in.in.h:1
 msgid "Network Monitor"
 msgstr "Monitor ret"
 
-#: ../panel-plugin/netload.c:1020
+#: ../panel-plugin/netload.c:1038
 msgid "_Text to display:"
 msgstr "_Tèxte d'afichar :"
 
-#: ../panel-plugin/netload.c:1049
+#: ../panel-plugin/netload.c:1069
 msgid "Network _device:"
 msgstr "_Periferic ret :"
 
-#: ../panel-plugin/netload.c:1074
+#: ../panel-plugin/netload.c:1096
 msgid "Update _interval:"
 msgstr "_Interval de mesa a jorn :"
 
-#: ../panel-plugin/netload.c:1087
+#: ../panel-plugin/netload.c:1109
 msgid "s"
 msgstr "s"
 
-#: ../panel-plugin/netload.c:1101
+#: ../panel-plugin/netload.c:1123
 msgid "Show values as _bits"
 msgstr ""
 
-#: ../panel-plugin/netload.c:1115
+#: ../panel-plugin/netload.c:1137
 msgid "_Automatic maximum"
 msgstr "_Maximum automatic"
 
-#: ../panel-plugin/netload.c:1149
+#: ../panel-plugin/netload.c:1171
 

[Xfce4-commits] [panel-plugins/xfce4-time-out-plugin] branch master updated (100adff -> b0daa0e)

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

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

  from  100adff   I18n: Update translation pt (100%).
   new  b0daa0e   I18n: Update translation oc (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/oc.po | 50 --
 1 file changed, 28 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] [panel-plugins/xfce4-weather-plugin] 01/01: I18n: Update translation oc (99%).

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

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

commit e633f993deabeb0c4290de328a79b0897b7e9089
Author: Cédric Valmary 
Date:   Sun Oct 23 18:32:33 2016 +0200

I18n: Update translation oc (99%).

328 translated messages, 2 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/oc.po | 564 ---
 1 file changed, 285 insertions(+), 279 deletions(-)

diff --git a/po/oc.po b/po/oc.po
index 0bc4326..0d6d012 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -3,16 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Cedric31 , 2014
-# Cedric31 , 2013
+# Cédric Valmary , 2014,2016
+# Cédric Valmary , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-01-12 06:31+0100\n"
-"PO-Revision-Date: 2014-01-18 09:44+\n"
-"Last-Translator: Cedric31 \n"
-"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n"
+"POT-Creation-Date: 2014-10-24 18:31+0200\n"
+"PO-Revision-Date: 2016-10-23 14:54+\n"
+"Last-Translator: Cédric Valmary \n"
+"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/oc/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -76,88 +76,72 @@ msgstr "B"
 msgid "R"
 msgstr "P"
 
-#: ../panel-plugin/weather.c:358 ../panel-plugin/weather.c:360
+#: ../panel-plugin/weather.c:351 ../panel-plugin/weather.c:353
 msgid "No Data"
 msgstr "Pas de donadas"
 
-#: ../panel-plugin/weather.c:498
-msgid ""
-"Met.no sunrise API states that this version of the webservice is deprecated,"
-" and the plugin needs to be adapted to use a newer version, or it will stop "
-"working within a few month. Please file a bug on https://bugzilla.xfce.org "
-"if no one else has done so yet."
-msgstr "L'API sunrise de Met.no senhala qu'aquesta version de servici web es 
obsoleta, e que l'empeuton a besonh d'èsser adaptat per utilizar una version 
mai recenta, ont daissarà de foncionar dins qualques meses. Se vos plai, 
senhalatz un bug sus https://bugzilla.xfce.org se degun mai l'a pas encara 
fach."
-
-#: ../panel-plugin/weather.c:518
+#: ../panel-plugin/weather.c:505
 msgid "Error parsing astronomical data!"
 msgstr "Error d'analisi de las donadas astronomicas !"
 
-#: ../panel-plugin/weather.c:520
+#: ../panel-plugin/weather.c:507
 #, c-format
 msgid ""
 "Download of astronomical data failed with HTTP Status Code %d, Reason "
 "phrase: %s"
 msgstr "Lo telecargament de las donadas astronomicas a fracassat amb lo còde 
d'estat ​​HTTP %d, causa : %s"
 
-#: ../panel-plugin/weather.c:560
-msgid ""
-"Met.no LocationforecastLTS API states that this version of the webservice is"
-" deprecated, and the plugin needs to be adapted to use a newer version, or "
-"it will stop working within a few month. Please file a bug on "
-"https://bugzilla.xfce.org if no one else has done so yet."
-msgstr "L'API Met.no LocationforecastLTS senhala qu'aquesta version de servici 
web es obsoleta, e que l'empeuton a besonh d'èsser adaptat per utilizar una 
version mai recenta, ont daissarà de foncionar dins qualques meses. Se vos 
plai, senhalatz un bug sus https://bugzilla.xfce.org se degun mai l'a pas 
encara fach."
-
-#: ../panel-plugin/weather.c:578
+#: ../panel-plugin/weather.c:558
 msgid "Error parsing weather data!"
 msgstr "Error d'analisi de las donadas meteorologicas !"
 
-#: ../panel-plugin/weather.c:581
+#: ../panel-plugin/weather.c:561
 #, c-format
 msgid ""
 "Download of weather data failed with HTTP Status Code %d, Reason phrase: %s"
 msgstr "Lo telecargament de las donadas de temps a fracassat amb lo còde 
d'estat ​​HTTP %d, causa : %s"
 
 #. start receive thread
-#: ../panel-plugin/weather.c:655 ../panel-plugin/weather.c:674
+#: ../panel-plugin/weather.c:635 ../panel-plugin/weather.c:654
 #: ../panel-plugin/weather-search.c:169 ../panel-plugin/weather-search.c:435
 #, c-format
 msgid "getting %s"
 msgstr "obtencion %s"
 
-#: ../panel-plugin/weather.c:1173
+#: ../panel-plugin/weather.c:1157
 #, c-format
 msgid "Error writing cache file %s!"
 msgstr "Error d'escritura de l'escondedor fichièr %s !"
 
-#: ../panel-plugin/weather.c:1584
+#: ../panel-plugin/weather.c:1609
 #, c-format
 msgid "Unable to open the following url: %s"
 msgstr "Fracàs a la dobertura del ligam : %s"
 
-#: ../panel-plugin/weather.c:1615 ../panel-plugin/weather.desktop.in.h:1
+#: ../panel-plugin/weather.c:1640 ../panel-plugin/weather.desktop.in.h:1
 msgid "Weather Update"
 msgstr "Mesa a jorn metèo"
 
-#: ../panel-plugin/weather.c:1652
+#: ../panel-plugin/weather.c:1677
 

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

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

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

commit 7ba9d2721b71d04e010c9cf539bb30df14d59aef
Author: Cédric Valmary 
Date:   Sun Oct 23 18:32:27 2016 +0200

I18n: Update translation oc (66%).

12 translated messages, 6 untranslated messages.

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

diff --git a/po/oc.po b/po/oc.po
index 0ce246a..94a26af 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -3,67 +3,96 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Cedric31 , 2013
+# Cédric Valmary , 2016
+# Cédric Valmary , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-03 21:27+0200\n"
-"PO-Revision-Date: 2013-12-07 10:54+\n"
-"Last-Translator: Cedric31 \n"
-"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n"
+"POT-Creation-Date: 2015-03-05 00:32+0100\n"
+"PO-Revision-Date: 2016-10-23 14:54+\n"
+"Last-Translator: Cédric Valmary \n"
+"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/oc/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: oc\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../panel-plugin/wavelan.c:156
+#: ../panel-plugin/wavelan.c:159 ../panel-plugin/wi_common.c:35
 msgid "No carrier signal"
 msgstr "Pas de portadoira"
 
-#: ../panel-plugin/wavelan.c:175
+#. Translators: net_name: quality quality_unit at rate Mb/s
+#: ../panel-plugin/wavelan.c:173
+#, c-format
+msgid "%s: %d%s at %dMb/s"
+msgstr ""
+
+#. Translators: quality quality_unit at rate Mb/s
+#: ../panel-plugin/wavelan.c:176
+#, c-format
+msgid "%d%s at %dMb/s"
+msgstr ""
+
+#: ../panel-plugin/wavelan.c:180
 msgid "No device configured"
 msgstr "Cap de periferic pas configurat"
 
-#: ../panel-plugin/wavelan.c:508
+#: ../panel-plugin/wavelan.c:501
 msgid "Wavelan Plugin Options"
 msgstr "Opcions de l'empeuton Wavelan"
 
-#: ../panel-plugin/wavelan.c:523
+#: ../panel-plugin/wavelan.c:516
 msgid "Properties"
 msgstr "Proprietats"
 
-#: ../panel-plugin/wavelan.c:534
+#: ../panel-plugin/wavelan.c:527
 msgid "Interface"
 msgstr "Interfàcia"
 
-#: ../panel-plugin/wavelan.c:555
+#: ../panel-plugin/wavelan.c:549
 msgid "_Autohide when offline"
 msgstr "Amagar _automaticament fòra connexion"
 
-#: ../panel-plugin/wavelan.c:565
-msgid "Autohide when no hardware present"
-msgstr "Amagar automaticament en l'abséncia de material"
+#: ../panel-plugin/wavelan.c:559
+msgid "Autohide when no _hardware present"
+msgstr ""
 
-#: ../panel-plugin/wavelan.c:576
+#: ../panel-plugin/wavelan.c:570
 msgid ""
 "Note: This will make it difficult to remove or configure the plugin if there"
 " is no device detected."
 msgstr "Nòta : La configuracion o supression d'aqueste empeuton serà dificile 
en l'abséncia de periferic."
 
-#: ../panel-plugin/wavelan.c:584
-msgid "Enable signal quality colors"
-msgstr "Activar las colors de qualitat del senhal"
+#: ../panel-plugin/wavelan.c:578
+msgid "Enable sig_nal quality colors"
+msgstr ""
 
-#: ../panel-plugin/wavelan.c:595
-msgid "Show icon"
-msgstr "Afichar l'icòna"
+#: ../panel-plugin/wavelan.c:589
+msgid "Show _icon"
+msgstr "Afichar l'_icòna"
 
-#: ../panel-plugin/wavelan.c:623 ../panel-plugin/wavelan.desktop.in.h:2
+#: ../panel-plugin/wavelan.c:617 ../panel-plugin/wavelan.desktop.in.h:2
 msgid "View the status of a wireless network"
 msgstr "Veire l'estat d'una ret sens fial"
 
+#: ../panel-plugin/wi_common.c:38
+msgid "No such WaveLAN device"
+msgstr ""
+
+#: ../panel-plugin/wi_common.c:41
+msgid "Invalid parameter"
+msgstr ""
+
+#: ../panel-plugin/wi_common.c:44
+msgid "Unknown error"
+msgstr "Error desconeguda"
+
+#: ../panel-plugin/wi_linux.c:150
+msgid "Unknown"
+msgstr "Desconegut"
+
 #: ../panel-plugin/wavelan.desktop.in.h:1
 msgid "Wavelan"
 msgstr "Wavelan"

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


[Xfce4-commits] [panel-plugins/xfce4-netload-plugin] branch master updated (a9cee44 -> 576723b)

2016-10-23 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  a9cee44   I18n: Update translation lt (100%).
   new  576723b   I18n: Update translation oc (97%).

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/oc.po | 90 
 1 file changed, 39 insertions(+), 51 deletions(-)

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


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

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

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

commit 46a0d3921b2e777334d21e77f92455cf3080f7ab
Author: Cédric Valmary 
Date:   Sun Oct 23 18:32:02 2016 +0200

I18n: Update translation oc (82%).

14 translated messages, 3 untranslated messages.

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

diff --git a/po/oc.po b/po/oc.po
index 05b4e01..1d2be75 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Cedric31 , 2013
+# Cédric Valmary , 2016
+# Cédric Valmary , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-17 21:37+0200\n"
-"PO-Revision-Date: 2013-12-06 20:48+\n"
-"Last-Translator: Cedric31 \n"
-"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n"
+"POT-Creation-Date: 2014-07-30 00:31+0200\n"
+"PO-Revision-Date: 2016-10-23 14:54+\n"
+"Last-Translator: Cédric Valmary \n"
+"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/oc/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -22,66 +23,66 @@ msgstr ""
 msgid "Configure Quicklauncher"
 msgstr "Configuracion de Quicklauncher"
 
-#: ../panel-plugin/callbacks.c:93
+#: ../panel-plugin/callbacks.c:111
 msgid "Lines: "
 msgstr "Linhas : "
 
-#: ../panel-plugin/callbacks.c:123
+#: ../panel-plugin/callbacks.c:124
 msgid "Space between launchers:"
-msgstr "Espaci entre los aviadors :"
+msgstr ""
 
-#: ../panel-plugin/callbacks.c:131
+#: ../panel-plugin/callbacks.c:132
 msgid "Show tooltips"
-msgstr "afichar las Infobullas"
+msgstr ""
 
-#: ../panel-plugin/callbacks.c:135
+#: ../panel-plugin/callbacks.c:136
 msgid "Show labels"
-msgstr "afichar las etiquetas"
+msgstr ""
 
-#: ../panel-plugin/callbacks.c:216
+#: ../panel-plugin/callbacks.c:220
 msgid "icon"
 msgstr "icòna"
 
-#: ../panel-plugin/callbacks.c:222
+#: ../panel-plugin/callbacks.c:226
 msgid "command"
 msgstr "comanda"
 
-#: ../panel-plugin/callbacks.c:228
+#: ../panel-plugin/callbacks.c:232
 msgid "name"
 msgstr "nom"
 
-#: ../panel-plugin/callbacks.c:327
+#: ../panel-plugin/callbacks.c:331
 msgid "Open icon"
 msgstr "Dobrir una icòna"
 
-#: ../panel-plugin/main.c:163 ../panel-plugin/quicklauncher.desktop.in.in.h:2
+#: ../panel-plugin/main.c:164 ../panel-plugin/quicklauncher.desktop.in.in.h:1
 msgid "Quicklauncher"
 msgstr "Aviada rapida"
 
-#: ../panel-plugin/main.c:166
+#: ../panel-plugin/main.c:167
 msgid "Allows you to add launchers easily and display them on many lines."
 msgstr "Vos permet d'apondre aisidament d'aviadors e de los afichar sus 
mantuna linhas."
 
-#: ../panel-plugin/main.c:168
+#: ../panel-plugin/main.c:169
 msgid "Other plugins available here"
 msgstr "Autres empeutons disponibles aicí"
 
-#: ../panel-plugin/main.c:320
+#: ../panel-plugin/main.c:321
 msgid "Lock"
 msgstr "Varrolhar"
 
-#: ../panel-plugin/main.c:323
+#: ../panel-plugin/main.c:324
 msgid "Parameters"
 msgstr "Paramètres"
 
-#: ../panel-plugin/main.c:326
+#: ../panel-plugin/main.c:327
 msgid "Applications"
 msgstr "Aplicacions"
 
-#: ../panel-plugin/main.c:329
+#: ../panel-plugin/main.c:330
 msgid "Help"
 msgstr "Ajuda"
 
-#: ../panel-plugin/quicklauncher.desktop.in.in.h:1
+#: ../panel-plugin/quicklauncher.desktop.in.in.h:2
 msgid "Program with several launchers"
 msgstr "Aplicacion amb mantun aviadors"

-- 
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-screenshooter] branch master updated (fe979b8 -> 21b6a78)

2016-10-23 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-screenshooter.

  from  fe979b8   I18n: Update translation ca (100%).
   new  21b6a78   I18n: Update translation oc (96%).

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/oc.po | 226 +--
 1 file changed, 132 insertions(+), 94 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] branch master updated (a5d2112 -> 17379fd)

2016-10-23 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  a5d2112   I18n: Update translation lt (100%).
   new  17379fd   I18n: Update translation pl (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/pl.po | 72 ++--
 1 file changed, 38 insertions(+), 34 deletions(-)

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


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

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

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

commit a99f2246faa8538cc48324275571ccff7b2d7396
Author: Cédric Valmary 
Date:   Sun Oct 23 18:31:45 2016 +0200

I18n: Update translation oc (91%).

51 translated messages, 5 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/oc.po | 147 ++-
 1 file changed, 79 insertions(+), 68 deletions(-)

diff --git a/po/oc.po b/po/oc.po
index da2cd31..bf04155 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Cedric31 , 2013
+# Cédric Valmary , 2016
+# Cédric Valmary , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-03 21:06+0200\n"
-"PO-Revision-Date: 2013-12-06 19:37+\n"
-"Last-Translator: Cedric31 \n"
-"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n"
+"POT-Creation-Date: 2016-06-08 00:31+0200\n"
+"PO-Revision-Date: 2016-10-23 14:54+\n"
+"Last-Translator: Cédric Valmary \n"
+"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/oc/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -83,82 +84,90 @@ msgstr "punt de montatge :   %s\n"
 msgid "not mounted\n"
 msgstr "pas montat\n"
 
-#. show error message if smth failed
-#. xfce_dialog_show_error (NULL, error, "%s %s %d, %s %s", _("Mount
-#. Plugin:\n\nError executing command."),
-#. _("Return value:"), WEXITSTATUS(exit_status), _("\nError was:"),
-#. erroutput);
-#: ../panel-plugin/devices.c:288
-#, c-format
-msgid "Failed to mount device \"%s\"."
-msgstr "Impossible de montar lo periferic « %s »."
+#: ../panel-plugin/devices.c:293 ../panel-plugin/devices.c:316
+#: ../panel-plugin/devices.c:379 ../panel-plugin/devices.c:390
+#: ../panel-plugin/devices.c:400 ../panel-plugin/devices.c:487
+msgid "Xfce 4 Mount Plugin"
+msgstr ""
 
-#: ../panel-plugin/devices.c:303
-#, c-format
-msgid "Error executing on-mount command \"%s\"."
-msgstr "Error d'execucion de la comanda mount «%s »."
+#: ../panel-plugin/devices.c:295
+msgid "Failed to mount device:"
+msgstr "Impossible de montar lo periferic :"
 
-#. xfce_dialog_show_error (NULL, error, "%s %s %d, %s %s", _("Mount Plugin:
-#. Error executing command."),
-#. _("Returned"), WEXITSTATUS(exit_status), _("error was"), erroutput);
-#: ../panel-plugin/devices.c:357
-#, c-format
-msgid "Failed to umount device \"%s\"."
-msgstr "Impossible de desmontar lo periferic «%s »."
+#: ../panel-plugin/devices.c:318
+msgid "Error executing on-mount command:"
+msgstr ""
 
-#: ../panel-plugin/devices.c:360
-#, c-format
-msgid "The device \"%s\" should be removable safely now."
-msgstr "Lo periferic «%s » pòt èsser levat en tota seguretat ara."
+#: ../panel-plugin/devices.c:381
+msgid "Failed to umount device:"
+msgstr "Impossible de desmontar lo periferic :"
+
+#: ../panel-plugin/devices.c:392
+msgid "The device should be removable safely now:"
+msgstr "Lo periferic pòt èsser levat en tota seguretat ara :"
+
+#: ../panel-plugin/devices.c:402
+msgid "An error occurred. The device should not be removed:"
+msgstr "Una error s'es produita. Lo periferic «%s » deuriá pas èsser 
desconnectat :"
 
-#: ../panel-plugin/devices.c:362
+#: ../panel-plugin/devices.c:489
+msgid ""
+"Your /etc/fstab could not be read. This will severely degrade the plugin's "
+"abilities."
+msgstr ""
+
+#: ../panel-plugin/mount-plugin.c:177
+msgid " -> "
+msgstr " -> "
+
+#: ../panel-plugin/mount-plugin.c:230
 #, c-format
-msgid "An error occurred. The device \"%s\" should not be removed!"
-msgstr "Una error s'es produsida. Lo periferic «%s » deuriá pas èsser 
desconnectat !"
+msgid "[%s/%s] %s free"
+msgstr ""
 
-#: ../panel-plugin/mount-plugin.c:242
+#: ../panel-plugin/mount-plugin.c:249
 msgid "not mounted"
 msgstr "pas montat"
 
-#: ../panel-plugin/mount-plugin.c:513
+#: ../panel-plugin/mount-plugin.c:516
 msgid "devices"
 msgstr "periferics"
 
-#: ../panel-plugin/mount-plugin.c:706
+#: ../panel-plugin/mount-plugin.c:707
 msgid "Mount Plugin"
 msgstr "Empeuton de montatge"
 
-#: ../panel-plugin/mount-plugin.c:711
+#: ../panel-plugin/mount-plugin.c:712
 msgid "Properties"
 msgstr "Proprietats"
 
-#: ../panel-plugin/mount-plugin.c:745
+#: ../panel-plugin/mount-plugin.c:743
 msgid ""
 "This is only useful and recommended if you specify \"sync\" as part of the "
 "\"unmount\" command string."
 msgstr "Es solament utile e recomandat se especificatz « sync » en tant que 
partida de la cadena de comanda « unmount »."
 
-#: ../panel-plugin/mount-plugin.c:750
+#: 

[Xfce4-commits] [apps/xfce4-screenshooter] 01/01: I18n: Update translation oc (96%).

2016-10-23 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-screenshooter.

commit 21b6a78a5be00c6c68421abe0211970aa8bb8dd4
Author: Cédric Valmary 
Date:   Sun Oct 23 18:31:13 2016 +0200

I18n: Update translation oc (96%).

78 translated messages, 3 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/oc.po | 226 +--
 1 file changed, 132 insertions(+), 94 deletions(-)

diff --git a/po/oc.po b/po/oc.po
index 50079ca..265d913 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -3,365 +3,394 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Cedric31 , 2013
+# Cédric Valmary , 2016
+# Cédric Valmary , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-13 22:14+0200\n"
-"PO-Revision-Date: 2013-12-05 17:01+\n"
-"Last-Translator: Cedric31 \n"
-"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n"
+"POT-Creation-Date: 2015-11-01 12:31+0100\n"
+"PO-Revision-Date: 2016-10-23 14:38+\n"
+"Last-Translator: Cédric Valmary \n"
+"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/xfce/xfce-apps/language/oc/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: oc\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../lib/screenshooter-dialogs.c:453
+#: ../lib/screenshooter-dialogs.c:466
 #, c-format
 msgid "%.2fKb of %.2fKb"
 msgstr "%.2fKb de %.2fKb"
 
-#: ../lib/screenshooter-dialogs.c:539
+#: ../lib/screenshooter-dialogs.c:552
 msgid "Transfer"
 msgstr "Transferiment"
 
-#: ../lib/screenshooter-dialogs.c:560
+#: ../lib/screenshooter-dialogs.c:573
 msgid ""
 "The screenshot is being "
 "transferred to:"
 msgstr "La captura d'ecran es 
transferida cap a :"
 
-#: ../lib/screenshooter-dialogs.c:682 ../lib/screenshooter-dialogs.c:699
-#: ../lib/screenshooter-dialogs.c:891 ../lib/screenshooter-utils.c:64
+#: ../lib/screenshooter-dialogs.c:695 ../lib/screenshooter-dialogs.c:712
+#: ../lib/screenshooter-dialogs.c:905 ../lib/screenshooter-utils.c:64
 #: ../lib/screenshooter-utils.c:96
 #: ../src/xfce4-screenshooter.desktop.in.in.h:1
 #: ../panel-plugin/screenshooter.desktop.in.h:1
 msgid "Screenshot"
 msgstr "Captura d'ecran"
 
-#: ../lib/screenshooter-dialogs.c:694
+#: ../lib/screenshooter-dialogs.c:707
 msgid "Take a screenshot"
 msgstr "Prene una captura d'ecran"
 
-#: ../lib/screenshooter-dialogs.c:709
+#: ../lib/screenshooter-dialogs.c:722
 msgid "Preferences"
 msgstr "Preferéncias"
 
-#: ../lib/screenshooter-dialogs.c:740
+#: ../lib/screenshooter-dialogs.c:753
 msgid "Region to capture"
 msgstr "Zòna de capturar"
 
-#: ../lib/screenshooter-dialogs.c:760
+#: ../lib/screenshooter-dialogs.c:773
 msgid "Entire screen"
 msgstr "L'ecran tot entièr"
 
-#: ../lib/screenshooter-dialogs.c:767 ../src/main.c:59
-#: ../panel-plugin/screenshooter-plugin.c:317
+#: ../lib/screenshooter-dialogs.c:780 ../src/main.c:60
+#: ../panel-plugin/screenshooter-plugin.c:318
 msgid "Take a screenshot of the entire screen"
 msgstr "Prene una captura d'ecran de l'ecran tot entièr"
 
-#: ../lib/screenshooter-dialogs.c:775
+#: ../lib/screenshooter-dialogs.c:788
 msgid "Active window"
 msgstr "La fenèstra activa"
 
-#: ../lib/screenshooter-dialogs.c:782 ../src/main.c:96
-#: ../panel-plugin/screenshooter-plugin.c:322
+#: ../lib/screenshooter-dialogs.c:795 ../src/main.c:102
+#: ../panel-plugin/screenshooter-plugin.c:323
 msgid "Take a screenshot of the active window"
 msgstr "Prene una captura d'ecran de la fenèstra activa"
 
-#: ../lib/screenshooter-dialogs.c:790
+#: ../lib/screenshooter-dialogs.c:803
 msgid "Select a region"
 msgstr "Seleccionar una zòna"
 
-#: ../lib/screenshooter-dialogs.c:795 ../src/main.c:74
-#: ../panel-plugin/screenshooter-plugin.c:327
+#: ../lib/screenshooter-dialogs.c:808 ../src/main.c:75
+#: ../panel-plugin/screenshooter-plugin.c:328
 msgid ""
 "Select a region to be captured by clicking a point of the screen without "
 "releasing the mouse button, dragging your mouse to the other corner of the "
 "region, and releasing the mouse button."
 msgstr "Seleccionar una zòna de capturar en clicant sus un punt de l'ecran 
sens daissar lo boton de la mirga, puèi en desplaçant vòstra mirga fins a 
l'autre canton de la zòna, e en daissant lo boton de la mirga."
 
-#: ../lib/screenshooter-dialogs.c:805
+#: ../lib/screenshooter-dialogs.c:818
 msgid "Capture the mouse pointer"
 msgstr "Capturar lo puntador de la mirga"
 
-#: ../lib/screenshooter-dialogs.c:810
+#: ../lib/screenshooter-dialogs.c:823
 msgid "Display the mouse pointer on the screenshot"
 msgstr "Afichar la mirga sus la captura d'ecran"
 
-#: 

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

2016-10-23 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-battery-plugin.

commit 4b8a4b2214eb32046136c073cfe88bdc4f29cc89
Author: Cédric Valmary 
Date:   Sun Oct 23 18:31:25 2016 +0200

I18n: Update translation oc (100%).

42 translated messages.

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

diff --git a/po/oc.po b/po/oc.po
index 682974d..e2bbee0 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -3,49 +3,50 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Cedric31 , 2013
+# Cédric Valmary , 2016
+# Cédric Valmary , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-03 20:48+0200\n"
-"PO-Revision-Date: 2013-11-23 17:12+\n"
-"Last-Translator: Cedric31 \n"
-"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n"
+"POT-Creation-Date: 2016-05-29 12:30+0200\n"
+"PO-Revision-Date: 2016-10-23 14:54+\n"
+"Last-Translator: Cédric Valmary \n"
+"Language-Team: Occitan (post 1500) 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/oc/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: oc\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../panel-plugin/battery.c:536
+#: ../panel-plugin/battery.c:526
 msgid "(No battery, AC on-line)"
 msgstr "(Pas de batariá, sector brancat)"
 
-#: ../panel-plugin/battery.c:538
+#: ../panel-plugin/battery.c:528
 msgid "(Charging from AC)"
 msgstr "(Batariá en carga)"
 
-#: ../panel-plugin/battery.c:538
+#: ../panel-plugin/battery.c:528
 msgid "(AC on-line)"
 msgstr "(Sector brancat)"
 
-#: ../panel-plugin/battery.c:548
+#: ../panel-plugin/battery.c:538
 #, c-format
 msgid "%d%% (%02d:%02d) remaining"
 msgstr "%d%% (%02d:%02d) restants"
 
-#: ../panel-plugin/battery.c:550
+#: ../panel-plugin/battery.c:540
 #, c-format
 msgid "%02d:%02d remaining"
 msgstr "%02d:%02d restants"
 
-#: ../panel-plugin/battery.c:552
+#: ../panel-plugin/battery.c:542
 #, c-format
 msgid "%d%% remaining"
 msgstr "%d%% restants"
 
-#: ../panel-plugin/battery.c:554
+#: ../panel-plugin/battery.c:544
 #, c-format
 msgid "AC off-line"
 msgstr "Sector desbrancat"
@@ -66,135 +67,131 @@ msgstr "ATENCION : La batariá es febla. Es conselhat de 
brancar lo cargador o d
 msgid "Battery"
 msgstr "Batariá"
 
-#: ../panel-plugin/battery.c:1207
+#: ../panel-plugin/battery.c:1173
 msgid "Select file"
 msgstr "Seleccionar un fichièr"
 
-#: ../panel-plugin/battery.c:1248
+#: ../panel-plugin/battery.c:1214
 msgid "Select command"
 msgstr "Seleccionar una comanda"
 
-#: ../panel-plugin/battery.c:1263
-msgid "Select color"
-msgstr "Seleccionar una color"
-
-#: ../panel-plugin/battery.c:1305
+#: ../panel-plugin/battery.c:1258
 #, c-format
 msgid "Unable to open the following url: %s"
 msgstr "Impossible de dobrir l'URL seguenta : %s"
 
-#: ../panel-plugin/battery.c:1330 ../panel-plugin/battery.desktop.in.h:1
+#: ../panel-plugin/battery.c:1283 ../panel-plugin/battery.desktop.in.h:1
 msgid "Battery Monitor"
 msgstr "Monitor de batariá"
 
-#: ../panel-plugin/battery.c:1337
+#: ../panel-plugin/battery.c:1290
 msgid "Properties"
 msgstr "Proprietats"
 
-#: ../panel-plugin/battery.c:1363
+#: ../panel-plugin/battery.c:1316
 msgid "On AC:"
 msgstr "Sus cargador :"
 
-#: ../panel-plugin/battery.c:1380
+#: ../panel-plugin/battery.c:1329
 msgid "Battery high:"
 msgstr "Nivèl de batariá naut :"
 
-#: ../panel-plugin/battery.c:1397
+#: ../panel-plugin/battery.c:1342
 msgid "Battery low:"
 msgstr "Nivèl de batariá bas :"
 
-#: ../panel-plugin/battery.c:1414
+#: ../panel-plugin/battery.c:1355
 msgid "Battery critical:"
 msgstr "Nivèl de batariá critic :"
 
-#: ../panel-plugin/battery.c:1428
+#: ../panel-plugin/battery.c:1365
 msgid "Bar _colors"
 msgstr "_Colors de la barra"
 
-#: ../panel-plugin/battery.c:1442
+#: ../panel-plugin/battery.c:1379
 msgid "Low percentage:"
 msgstr "Percentatge feble :"
 
-#: ../panel-plugin/battery.c:1455
+#: ../panel-plugin/battery.c:1392
 msgid "Low battery action:"
 msgstr "Accion batariá febla :"
 
-#: ../panel-plugin/battery.c:1461 ../panel-plugin/battery.c:1513
+#: ../panel-plugin/battery.c:1398 ../panel-plugin/battery.c:1442
 msgid "Do nothing"
 msgstr "Far pas res"
 
-#: ../panel-plugin/battery.c:1463 ../panel-plugin/battery.c:1515
+#: ../panel-plugin/battery.c:1399 ../panel-plugin/battery.c:1443
 msgid "Display a warning message"
 msgstr "Afichar un messatge d'avertiment"
 
-#: ../panel-plugin/battery.c:1465 ../panel-plugin/battery.c:1517
+#: ../panel-plugin/battery.c:1400 

[Xfce4-commits] [panel-plugins/xfce4-mount-plugin] branch master updated (c9ee0e8 -> a99f224)

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

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

  from  c9ee0e8   I18n: Update translation pt (100%).
   new  a99f224   I18n: Update translation oc (91%).

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/oc.po | 147 ++-
 1 file changed, 79 insertions(+), 68 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-mailwatch-plugin] branch master updated (38ed145 -> ae39df5)

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

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

  from  38ed145   I18n: Update translation lt (100%).
   new  ae39df5   I18n: Update translation oc (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/oc.po | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

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


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

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

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

commit ae39df5e3a03540d24ccaee9e470c4732341b64f
Author: Cédric Valmary 
Date:   Sun Oct 23 18:31:39 2016 +0200

I18n: Update translation oc (100%).

112 translated messages.

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

diff --git a/po/oc.po b/po/oc.po
index cbc6cda..808a5a4 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -3,15 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Cédric Valmary , 2014
+# Cédric Valmary , 2014,2016
 # Cédric Valmary , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-07-05 18:31+0200\n"
-"PO-Revision-Date: 2016-03-11 15:57+\n"
-"Last-Translator: Xfce Bot \n"
+"PO-Revision-Date: 2016-10-23 14:54+\n"
+"Last-Translator: Cédric Valmary \n"
 "Language-Team: Occitan (post 1500) 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/oc/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -555,7 +555,7 @@ msgstr "Un empeuton de verificacion de corrièr pel tablèu 
de bòrd de Xfce"
 msgid ""
 "Copyright (c) 2005-2008 Brian Tarricone\n"
 "Copyright (c) 2005 Pasi Orovuo"
-msgstr ""
+msgstr "Copyright (c) 2005-2008 Brian Tarricone\nCopyright (c) 2005 Pasi 
Orovuo"
 
 #: ../panel-plugin/mailwatch-plugin.c:1304
 msgid "Update Now"

-- 
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-battery-plugin] branch master updated (8f9205e -> 4b8a4b2)

2016-10-23 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-battery-plugin.

  from  8f9205e   I18n: Update translation kk (100%).
   new  4b8a4b2   I18n: Update translation oc (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/oc.po | 97 +++-
 1 file changed, 47 insertions(+), 50 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/ristretto] 01/01: I18n: Update translation pl (100%).

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

transifex pushed a commit to branch master
in repository apps/ristretto.

commit 653f2c998bbf6472b6513a86bbb4099ac164a03b
Author: Marcin XD 
Date:   Sun Oct 23 18:31:02 2016 +0200

I18n: Update translation pl (100%).

195 translated messages.

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

diff --git a/po/pl.po b/po/pl.po
index 82fbb79..2ab2049 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
 "POT-Creation-Date: 2016-10-07 18:30+0200\n"
-"PO-Revision-Date: 2016-10-09 21:08+\n"
+"PO-Revision-Date: 2016-10-23 12:42+\n"
 "Last-Translator: Marcin XD \n"
 "Language-Team: Polish 
(http://www.transifex.com/xfce/xfce-apps/language/pl/)\n"
 "MIME-Version: 1.0\n"
@@ -933,4 +933,4 @@ msgid ""
 "statusbar to indicate when it is busy and progressive loading of directories"
 " to prevent lockup of the UI. This version is designed to work with version "
 "4.10 of Xfce."
-msgstr ""
+msgstr "Ta wersja zawiera kilka zmian takich jak dokumentacja na 
docs.xfcr.org, opcja ograniczenia maksymalnej jakości obrazu wymiarów ekranu w 
celu poprawy zużycia pamięci i wydajności. Risretto wyświetla wiadomość 
\"Ładowanie...\" na pasku zadań aby pokazać, kiedy jest zajęty i kolejno ładuje 
katalogi aby zapobiec niestabilnoścu interfejsu. Ta wersja jest zaprojektowana 
do działania z wersją 4.10 środowiska XFCE."

-- 
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/parole] branch master updated (06a70dd -> cafeb61)

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

transifex pushed a change to branch master
in repository apps/parole.

  from  06a70dd   I18n: Update translation ru (100%).
   new  cafeb61   I18n: Update translation pl (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/pl.po | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

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


[Xfce4-commits] [apps/orage] 01/01: I18n: Update translation pl (97%).

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

transifex pushed a commit to branch master
in repository apps/orage.

commit 59ff226745f5d5a8be5bb940e9232b0ae8e0dab1
Author: Marcin XD 
Date:   Sun Oct 23 18:30:46 2016 +0200

I18n: Update translation pl (97%).

1007 translated messages, 23 untranslated messages.

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

diff --git a/po/pl.po b/po/pl.po
index 0dd1d49..ca35290 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -4,13 +4,14 @@
 # 
 # Translators:
 # Adam Stachowicz , 2015
-# Dawid , 2015
+# Dawid, 2015
 # ised, 2014
 # Kamil "elder" P. , 2013
+# Marcin XD , 2016
 # Marek Piechut (mco) , 2005
 # Paweł Klimek , 2014
 # Piotr Maliński , 2006
-# Piotr Sokół , 2009,2013
+# Piotr Sokół , 2009,2013
 # Piotr Strębski , 2013-2015
 # Szymon Kałasz , 2006
 msgid ""
@@ -18,8 +19,8 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-09-23 12:30+0200\n"
-"PO-Revision-Date: 2015-12-22 12:23+\n"
-"Last-Translator: Piotr Strębski \n"
+"PO-Revision-Date: 2016-10-23 12:43+\n"
+"Last-Translator: Marcin XD \n"
 "Language-Team: Polish 
(http://www.transifex.com/xfce/xfce-apps/language/pl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -2099,7 +2100,7 @@ msgstr "Okno Orage"
 
 #: ../src/parameters.c:1000
 msgid "Notify notification"
-msgstr ""
+msgstr "Przypominaj o powiadomieniach"
 
 #: ../src/parameters.c:1018
 msgid "Always quit when asked to close"

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

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

transifex pushed a commit to branch master
in repository apps/parole.

commit cafeb61c9dea4d667857561b084ff03dcd0950f3
Author: Marcin XD 
Date:   Sun Oct 23 18:30:57 2016 +0200

I18n: Update translation pl (100%).

272 translated messages.

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

diff --git a/po/pl.po b/po/pl.po
index 6e62423..9b4ab66 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,6 +7,7 @@
 # Kamil "elder" P. , 2013
 # ised, 2014
 # Kamil "elder" P. , 2013
+# Marcin XD , 2016
 # Paweł Drożański , 2012
 # Piotr Sokół , 2012-2014
 # Piotr Strębski , 2013-2016
@@ -16,8 +17,8 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-01-11 06:30+0100\n"
-"PO-Revision-Date: 2016-06-09 20:48+\n"
-"Last-Translator: Piotr Strębski \n"
+"PO-Revision-Date: 2016-10-23 12:11+\n"
+"Last-Translator: Marcin XD \n"
 "Language-Team: Polish 
(http://www.transifex.com/xfce/xfce-apps/language/pl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -518,7 +519,7 @@ msgid ""
 "This unstable development release adds the new clutter backend and cleans up"
 " deprecated Gtk3 symbols. It also adds a \"go to position\" feature and "
 "several bugs have been addressed."
-msgstr ""
+msgstr "To wydanie rozwojowe czyści nieużywane elementy GTK3, dodaje funkcję 
\"idź do pozycji\" i naprawia kilka błędów."
 
 #: ../data/appdata/parole.appdata.xml.in.h:5
 msgid "This release fixes a problem with detecting DVD drive locations."
@@ -552,7 +553,7 @@ msgid ""
 "toolkit, improvements in the user-interface (more streamlined menus), better"
 " playlists. It also brings updated artwork, GStreamer1.0 support, improved "
 "plugins and the occasional bugfix."
-msgstr ""
+msgstr "To wydanie rozwojowe zawiera kompletny port do GTK+3, poprawki 
interfejsu użytkownika, lepsze playlisty, aktualne grafiki, wsparcie GStreamer 
1.0, poprawione wtyczki i drobne poprawki błędów."
 
 #: ../src/common/parole-common.c:88
 msgid "Message"

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


[Xfce4-commits] [apps/ristretto] branch master updated (9f34f74 -> 653f2c9)

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

transifex pushed a change to branch master
in repository apps/ristretto.

  from  9f34f74   Fix memory leaks in Properties dialog
   new  653f2c9   I18n: Update translation pl (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/pl.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-whiskermenu-plugin] branch master updated (3c4fdbd -> 0937210)

2016-10-23 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  3c4fdbd   Add option to hide category names.
   new  0937210   Update strings.

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/am.po| 124 +++--
 po/ar.po| 124 +++--
 po/ast.po   | 124 +++--
 po/bg.po| 124 +++--
 po/ca.po| 124 +++--
 po/c...@valencia.po   | 124 +++--
 po/cs.po| 124 +++--
 po/da.po| 124 +++--
 po/de.po| 124 +++--
 po/el.po| 124 +++--
 po/en_GB.po | 124 +++--
 po/es.po| 124 +++--
 po/et.po| 124 +++--
 po/eu.po| 124 +++--
 po/fa.po| 124 +++--
 po/fi.po| 124 +++--
 po/fr.po| 124 +++--
 po/he.po| 124 +++--
 po/hr.po| 134 +---
 po/hu.po| 124 +++--
 po/id.po| 124 +++--
 po/is.po| 124 +++--
 po/it.po| 124 +++--
 po/ja.po| 124 +++--
 po/kk.po| 124 +++--
 po/ko.po| 124 +++--
 po/lt.po| 124 +++--
 po/lv.po| 124 +++--
 po/ms.po| 124 +++--
 po/nb.po| 124 +++--
 po/ne.po| 124 +++--
 po/nl.po| 124 +++--
 po/pl.po| 124 +++--
 po/pt.po| 124 +++--
 po/pt_BR.po | 124 +++--
 po/ro.po| 124 +++--
 po/ru.po| 124 +++--
 po/sk.po| 124 +++--
 po/sl.po| 124 +++--
 po/sr.po| 124 +++--
 po/s...@latin.po  | 124 +++--
 po/sv.po| 124 +++--
 po/tr.po| 124 +++--
 po/uk.po| 124 +++--
 po/uz.po| 124 +++--
 po/vi.po| 124 +++--
 po/xfce4-whiskermenu-plugin.pot | 124 +++--
 po/zh_CN.po | 124 +++--
 po/zh_TW.po | 124 +++--
 49 files changed, 3141 insertions(+), 2945 deletions(-)

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


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

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

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

commit d37bf40359d1a250afe5edef9f73d1b7c79c29c1
Author: Igor 
Date:   Sun Oct 23 12:31:34 2016 +0200

I18n: Update translation ru (100%).

173 translated messages.

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

diff --git a/po/ru.po b/po/ru.po
index 92644c7..0b8cd1a 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -23,7 +23,7 @@ msgstr ""
 "Project-Id-Version: Xfwm4\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-05-01 00:32+0200\n"
-"PO-Revision-Date: 2016-10-22 19:15+\n"
+"PO-Revision-Date: 2016-10-23 07:57+\n"
 "Last-Translator: Igor \n"
 "Language-Team: Russian (http://www.transifex.com/xfce/xfwm4/language/ru/)\n"
 "MIME-Version: 1.0\n"
@@ -393,7 +393,7 @@ msgstr "Это действие сбросит все настройки ком
 msgid ""
 "S_kip windows that have \"skip pager\"\n"
 "or \"skip taskbar\" properties set"
-msgstr "_Пропускать окна, у которых установлено свойство\n«не показывать в 
переключателе рабочих мест»\nили «не показывать на панели задач»"
+msgstr "_Пропускать окна, у которых установлено свойство «не показывать в 
переключателе рабочих мест»\nили «не показывать на панели задач»"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:5
 msgid "_Include hidden (i.e. iconified) windows"
@@ -433,7 +433,7 @@ msgstr "_Переместить окно на текущее рабочее ме
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:14
 msgid "Switch to win_dow's workspace"
-msgstr "Переключится на _рабочее место окна"
+msgstr "Переключиться на _рабочее место окна"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:15
 msgid "Do _nothing"
@@ -473,7 +473,7 @@ msgstr "_Непрерывно мигать срочными окнами"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:25
 msgid "Use mouse wheel on title bar to ro_ll up the window"
-msgstr "Используйте колесо мыши на заголовке, чтобы свернуть его в заголовок."
+msgstr "Использовать колесо мыши на заголовке, чтобы свернуть его в заголовок"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:26
 msgid "_Accessibility"

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


[Xfce4-commits] [xfce/xfwm4] branch master updated (4465a67 -> d37bf40)

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

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

  from  4465a67   I18n: Update translation ru (100%).
   new  d37bf40   I18n: Update translation ru (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/ru.po | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

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