[Xfce4-commits] [panel-plugins/xfce4-netload-plugin] branch master updated (8fb438c - 4be032a)

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  8fb438c   Add bufBullshit value in commandline test program
   new  4be032a   Add option Show values as bits (bug #9932)

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/netload.c |   42 ++
 1 file changed, 38 insertions(+), 4 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-netload-plugin] 01/01: Add option Show values as bits (bug #9932)

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 4be032a9bd8c505425040d4c508d607725a1b6c8
Author: Mike Massonnet m...@gandi.net
Date:   Sun Nov 16 12:00:14 2014 +0100

Add option Show values as bits (bug #9932)
---
 panel-plugin/netload.c |   42 ++
 1 file changed, 38 insertions(+), 4 deletions(-)

diff --git a/panel-plugin/netload.c b/panel-plugin/netload.c
index 990a75d..bd9168c 100644
--- a/panel-plugin/netload.c
+++ b/panel-plugin/netload.c
@@ -72,6 +72,7 @@ typedef struct
 gboolean use_label;
 gboolean show_bars;
 gboolean show_values;
+gboolean values_as_bits;
 gboolean colorize_values;
 gboolean auto_max;
 gulong   max[SUM];
@@ -103,6 +104,7 @@ typedef struct
 GtkWidget *opt_entry;
 GtkBox*opt_hbox;
 GtkWidget *opt_use_label;
+GtkWidget *opt_as_bits;
 
 /* Update interval */
 GtkWidget *update_spinner;
@@ -241,11 +243,11 @@ static gboolean update_monitors(t_global_monitor *global)
 if (global-monitor-options.show_bars)
 
gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(global-monitor-status[i]), 
temp);
 
-format_byte_humanreadable( buffer[i], BUFSIZ - 1, display[i], 2, FALSE 
);
-format_byte_humanreadable( buffer_panel[i], BUFSIZ - 1, display[i], 2, 
FALSE );
+format_byte_humanreadable( buffer[i], BUFSIZ - 1, display[i], 2, 
global-monitor-options.values_as_bits );
+format_byte_humanreadable( buffer_panel[i], BUFSIZ - 1, display[i], 2, 
global-monitor-options.values_as_bits );
 }
 
-format_byte_humanreadable( buffer[TOT], BUFSIZ - 1, 
(display[IN]+display[OUT]), 2, FALSE );
+format_byte_humanreadable( buffer[TOT], BUFSIZ - 1, 
(display[IN]+display[OUT]), 2, global-monitor-options.values_as_bits );
 
 {
 char* ip = get_ip_address((global-monitor-data));
@@ -440,6 +442,7 @@ static t_global_monitor * monitor_new(XfcePanelPlugin 
*plugin)
 global-monitor-options.old_network_device = g_strdup();
 global-monitor-options.use_label = TRUE;
 global-monitor-options.show_values = FALSE;
+global-monitor-options.values_as_bits = FALSE;
 global-monitor-options.show_bars = TRUE;
 global-monitor-options.auto_max = TRUE;
 global-monitor-options.update_interval = UPDATE_TIMEOUT;
@@ -659,6 +662,8 @@ static void monitor_read_config(XfcePanelPlugin *plugin, 
t_global_monitor *globa
 global-monitor-options.update_interval = 
 xfce_rc_read_int_entry (rc, Update_Interval, UPDATE_TIMEOUT);
 
+global-monitor-options.values_as_bits = xfce_rc_read_bool_entry (rc, 
Values_As_Bits, FALSE);
+
 PRINT_DBG(monitor_read_config);
 setup_monitor(global, TRUE);
 
@@ -715,6 +720,8 @@ static void monitor_write_config(XfcePanelPlugin *plugin, 
t_global_monitor *glob
 
 xfce_rc_write_int_entry (rc, Update_Interval, 
global-monitor-options.update_interval);
 
+xfce_rc_write_bool_entry (rc, Values_As_Bits, 
global-monitor-options.values_as_bits);
+
 xfce_rc_close (rc);
 }
 
@@ -817,6 +824,16 @@ static void label_toggled(GtkWidget *check_button, 
t_global_monitor *global)
 }
 
 /* 
--
 */
+static void as_bits_toggled(GtkWidget *check_button, t_global_monitor *global)
+{
+global-monitor-options.values_as_bits = 
!global-monitor-options.values_as_bits;
+
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(global-monitor-opt_as_bits),
+ global-monitor-options.values_as_bits);
+
+PRINT_DBG(label_toggled);
+}
+
+/* 
--
 */
 static void present_data_combobox_changed(GtkWidget *combobox, 
t_global_monitor *global)
 {
 gint option = gtk_combo_box_get_active(GTK_COMBO_BOX(combobox));
@@ -951,6 +968,7 @@ static void monitor_create_options(XfcePanelPlugin *plugin, 
t_global_monitor *gl
 GtkBox   *vbox, *global_vbox, *net_hbox;
 GtkWidget*device_label, *unit_label[SUM], *max_label[SUM];
 GtkWidget*sep1, *sep2;
+GtkBox   *bits_hbox;
 GtkBox   *update_hbox;
 GtkWidget*update_label, *update_unit_label;
 GtkWidget*color_label[SUM];
@@ -1048,7 +1066,6 @@ static void monitor_create_options(XfcePanelPlugin 
*plugin, t_global_monitor *gl
 
 gtk_widget_show_all(GTK_WIDGET(net_hbox));
 
-
 /* Update timevalue */
 update_hbox = GTK_BOX(gtk_hbox_new(FALSE, 5));
 gtk_box_pack_start(GTK_BOX(global-monitor-opt_vbox),
@@ -1074,6 +1091,21 @@ static void monitor_create_options(XfcePanelPlugin 
*plugin, t_global_monitor *gl
 gtk_widget_show_all(GTK_WIDGET(update_hbox));
 gtk_size_group_add_widget(sg, update_label);
 
+/* Show values as bits */
+bits_hbox = 

[Xfce4-commits] [panel-plugins/xfce4-netload-plugin] branch master updated (4be032a - a70a21a)

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  4be032a   Add option Show values as bits (bug #9932)
   new  a70a21a   Update po

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/ar.po|   72 +---
 po/ast.po   |   91 
 po/bg.po|   91 
 po/ca.po|   84 -
 po/cs.po|   93 +++-
 po/da.po|   91 
 po/de.po|   93 +++-
 po/el.po|   72 +---
 po/en_AU.po |   91 
 po/en_GB.po |   89 +--
 po/eo.po|  147 +
 po/es.po|   91 
 po/eu.po|   83 +
 po/fi.po|   79 +++
 po/fr.po|   91 
 po/gl.po|   91 ++--
 po/he.po|   93 +++-
 po/hr.po|   94 -
 po/hu.po|   91 
 po/id.po|   91 
 po/is.po|   91 
 po/it.po|   91 
 po/ja.po|   72 +---
 po/kk.po|  144 
 po/ko.po|   90 +++
 po/lt.po|   83 +
 po/lv.po|  144 +---
 po/ms.po|   91 
 po/nb.po|   91 
 po/nl.po|   91 
 po/oc.po|   91 
 po/pa.po|  144 +---
 po/pl.po|   94 -
 po/pt.po|   72 +---
 po/pt_BR.po |   74 ++---
 po/ru.po|   72 +---
 po/sk.po|   83 +
 po/sq.po|  145 +
 po/sr.po|   79 +++
 po/sv.po|   91 
 po/th.po|   88 +++
 po/tr.po|   91 
 po/ug.po|   78 ---
 po/uk.po|   94 -
 po/ur.po|  145 +
 po/ur_PK.po |  145 +
 po/vi.po|  150 +++
 po/zh_CN.po |   72 +---
 po/zh_TW.po |   91 
 49 files changed, 3150 insertions(+), 1555 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: Enable pt translations

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 7342479694cef27e3556811f85856cc92fc33379
Author: Mike Massonnet m...@gandi.net
Date:   Sun Nov 16 12:25:22 2014 +0100

Enable pt translations
---
 lib/locales.php |1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/locales.php b/lib/locales.php
index d2f74c1..e18d923 100644
--- a/lib/locales.php
+++ b/lib/locales.php
@@ -14,6 +14,7 @@ $languages = array (
'nl' = 'Dutch',
'oc' = 'Occitan',
'pl' = 'Polish',
+   'pt' = 'Portuguese',
'pt_BR' = 'Portuguese (Brazilian)',
'sk' = 'Slovak',
'sr' = 'Serbian',

-- 
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 (c23ee15 - 7342479)

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  c23ee15   I18n: Update translation ru (82%).
   new  7342479   Enable pt translations

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/locales.php |1 +
 1 file changed, 1 insertion(+)

-- 
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 (7342479 - 0ed6b32)

2014-11-16 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  7342479   Enable pt translations
   new  0ed6b32   I18n: Update translation ru (83%).

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/ru.po |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

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


[Xfce4-commits] [www/www.xfce.org] 01/01: I18n: Update translation ru (83%).

2014-11-16 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 0ed6b326ddb27674695bfc255ca4eb9747908639
Author: AlexanderFilev ifill...@gmail.com
Date:   Sun Nov 16 12:31:52 2014 +0100

I18n: Update translation ru (83%).

491 translated messages, 100 untranslated messages.

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

diff --git a/lib/po/ru.po b/lib/po/ru.po
index b580da4..1110788 100644
--- a/lib/po/ru.po
+++ b/lib/po/ru.po
@@ -19,7 +19,7 @@ msgstr 
 Project-Id-Version: Xfce Websites\n
 Report-Msgid-Bugs-To: https://bugzilla.xfce.org\n;
 POT-Creation-Date: 2013-07-03 22:08+0200\n
-PO-Revision-Date: 2014-11-06 19:28+\n
+PO-Revision-Date: 2014-11-16 09:27+\n
 Last-Translator: AlexanderFilev ifill...@gmail.com\n
 Language-Team: Russian 
(http://www.transifex.com/projects/p/xfce-www/language/ru/)\n
 MIME-Version: 1.0\n
@@ -905,7 +905,7 @@ msgid 
 manager (power management), tumbler (thumbnail generation for Thunar and 
 other components), garcon (menu library, was already a dependency in 4.8), 
 thunar-volman (volume manager for Thunar).
-msgstr 
+msgstr Кроме того, мы убрали xfce-utils. Его содержание было удалено либо 
перемещено к другим пакетом Xfce. Все другие изменения зависимостей приведены в 
4.10pre1 списке изменений. Ядро Xfce также получило несколько новых 
компонентов, потому что мы думаем, что они имеют решающее значение для 
минимального рабочего стола: xfce4-power-manager (управление питанием), tumbler 
(генератор миниатюр для Thunar и других компонентов), garcon (библиотека меню, 
была как зависимость с 4,8), Thunar-Vol [...]
 
 #: news-array.php:52
 msgid 
@@ -2714,7 +2714,7 @@ msgstr Сколько должно быть предварительных вы
 
 #: about/releasemodel.php:20
 msgid What do we use as a replacement for SVN revision versioning with Git?
-msgstr 
+msgstr Что мы используем в качестве замены для SVN ревизии версий с Git?
 
 #: about/releasemodel.php:24
 msgid 
@@ -2730,7 +2730,7 @@ msgstr Основное окружение рабочего стола Xfce
 msgid 
 All core components of the Xfce desktop must adhere to the release policy 
 defined in this document.
-msgstr 
+msgstr Все основные компоненты рабочего стола Xfce должны придерживаться 
политики выпуска, определенной в этом документе.
 
 #: about/releasemodel.php:54
 msgid Essential Dependencies
@@ -2755,7 +2755,7 @@ msgid 
 Below you can see a graphical timeline of an example release cycle and 
 maintenance process for Xfce 4.8 with three components: Thunar, exo and 
 xfwm4.
-msgstr 
+msgstr Ниже можно увидеть графическое хронологию цикла выпуска и технического 
сопровождения на примере релиза Xfce 4.8 с тремя компонентами: Thunar, exo и 
xfwm4.
 
 #: about/releasemodel.php:72
 msgid Example Release Cycle
@@ -2771,7 +2771,7 @@ msgid 
 which dependencies to use and also to appoint the release team for the cycle
  (first 2 weeks). It eventually leads to the dependency freeze (after 4 
 weeks).
-msgstr 
+msgstr Этот этап знаменует начало цикла выпуска и используется для 
определения которых зависимостей использовать, а также назначить команду релиз 
для цикла (первые 2 недели). Это в конечном итоге приводит к замораживанию 
зависимости (через 4 недели).
 
 #: about/releasemodel.php:81
 msgid Appointing the Release Team

-- 
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/squeeze] 03/03: Added Go menu

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

peter pushed a commit to branch stephan/new-ui
in repository apps/squeeze.

commit 9e042478d1983834029ccb35004ad97d716ef4e5
Author: Peter de Ridder pe...@xfce.org
Date:   Wed Nov 5 18:54:42 2014 +0100

Added Go menu
---
 libsqueeze/scanf-parser.c |2 +-
 src/main_window.c |  139 -
 src/main_window_ui.xml|8 +++
 3 files changed, 146 insertions(+), 3 deletions(-)

diff --git a/libsqueeze/scanf-parser.c b/libsqueeze/scanf-parser.c
index d2c2db6..81cb474 100644
--- a/libsqueeze/scanf-parser.c
+++ b/libsqueeze/scanf-parser.c
@@ -519,7 +519,7 @@ skip_datetime (
 LSQScanfParser *parser
 )
 {
-gchar *ptr;
+gchar *ptr = NULL;
 gchar *cur;
 const gchar *delim;
 
diff --git a/src/main_window.c b/src/main_window.c
index 7f01ea5..b6ab48d 100644
--- a/src/main_window.c
+++ b/src/main_window.c
@@ -79,6 +79,30 @@ cb_sq_main_window_reload (
 );
 
 static void
+cb_sq_main_window_go_up (
+GtkAction *,
+gpointer
+);
+
+static void
+cb_sq_main_window_go_back (
+GtkAction *,
+gpointer
+);
+
+static void
+cb_sq_main_window_go_forward (
+GtkAction *,
+gpointer
+);
+
+static void
+cb_sq_main_window_go_home (
+GtkAction *,
+gpointer
+);
+
+static void
 cb_sq_main_window_contents (
 GtkAction *,
 gpointer
@@ -173,6 +197,35 @@ static GtkActionEntry action_entries[] =
 NULL,
 N_(_Location Selector),
 NULL },
+/* View Menu */
+{ go-menu,
+NULL,
+N_(_Go),
+NULL },
+{ parent-node,
+GTK_STOCK_GO_UP, /* Icon-name */
+N_(Open _Parent), /* Label-text */
+altUp, /* Keyboard shortcut */
+N_(Open the parent folder), /* Tooltip text */
+G_CALLBACK( cb_sq_main_window_go_up ) },
+{ back,
+GTK_STOCK_GO_BACK, /* Icon-name */
+N_(_Back), /* Label-text */
+altLeft, /* Keyboard shortcut */
+N_(Open previous visited folder), /* Tooltip text */
+G_CALLBACK( cb_sq_main_window_go_back ) },
+{ forward,
+GTK_STOCK_GO_FORWARD, /* Icon-name */
+N_(Forward), /* Label-text */
+altRight, /* Keyboard shortcut */
+N_(Open next visited folder), /* Tooltip text */
+G_CALLBACK( cb_sq_main_window_go_forward ) },
+{ root-node,
+GTK_STOCK_HOME, /* Icon-name */
+N_(Open _Root), /* Label-text */
+altHome, /* Keyboard shortcut */
+N_(Open the rooot folder), /* Tooltip text */
+G_CALLBACK( cb_sq_main_window_go_home ) },
 /* Help Menu */
 { help-menu,
 NULL,
@@ -591,6 +644,81 @@ cb_sq_main_window_reload (
 }
 
 static void
+cb_sq_main_window_go_up (
+GtkAction *action,
+gpointer   user_data
+)
+{
+SQMainWindow *window = SQ_MAIN_WINDOW (user_data);
+LSQArchiveIter *cwd;
+
+cwd = sq_archive_store_get_root( window-archive_store );
+if ( NULL == cwd )
+return;
+cwd = lsq_archive_iter_get_parent( cwd );
+if ( NULL == cwd )
+return;
+
+/* for now unset and set the model */
+gtk_tree_view_set_model(
+GTK_TREE_VIEW( window-tree_view ),
+NULL
+);
+sq_archive_store_set_root( window-archive_store, cwd );
+lsq_archive_iter_unref( cwd );
+gtk_tree_view_set_model(
+GTK_TREE_VIEW( window-tree_view ),
+GTK_TREE_MODEL( window-archive_store )
+);
+}
+
+static void
+cb_sq_main_window_go_back (
+GtkAction *action,
+gpointer   user_data
+)
+{
+return;
+}
+
+static void
+cb_sq_main_window_go_forward (
+GtkAction *action,
+gpointer   user_data
+)
+{
+return;
+}
+
+static void
+cb_sq_main_window_go_home (
+GtkAction *action,
+gpointer   user_data
+)
+{
+SQMainWindow *window = SQ_MAIN_WINDOW (user_data);
+LSQArchive *archive;
+LSQArchiveIter *root;
+
+archive = sq_archive_store_get_archive( window-archive_store );
+if ( NULL == archive )
+return;
+root = lsq_archive_get_iter( archive, NULL );
+
+/* for now unset and set the model */
+gtk_tree_view_set_model(
+GTK_TREE_VIEW( window-tree_view ),
+NULL
+);
+sq_archive_store_set_root( window-archive_store, root );
+lsq_archive_iter_unref( root );
+gtk_tree_view_set_model(
+GTK_TREE_VIEW( window-tree_view ),
+GTK_TREE_MODEL( window-archive_store )
+);
+}
+
+static void
 cb_sq_main_window_contents (
 GtkAction *action,
 gpointer   user_data
@@ -716,8 +844,15 @@ cb_sq_main_window_row_activated (
 
 if ( lsq_archive_iter_is_directory( entry ) )
 {
+/* for now unset and set the model */
+gtk_tree_view_set_model(
+GTK_TREE_VIEW( window-tree_view ),
+NULL
+   

[Xfce4-commits] [apps/squeeze] 01/03: Merge branch 'master' into stephan/new-ui

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

peter pushed a commit to branch stephan/new-ui
in repository apps/squeeze.

commit 270bad3819ee1e87801dbb6302d7bf3859a7d272
Merge: ba043fd 100870e
Author: Peter de Ridder pe...@xfce.org
Date:   Fri Oct 31 14:37:50 2014 +0100

Merge branch 'master' into stephan/new-ui

Conflicts:
configure.ac.in

 configure.ac.in  |9 +-
 data/gnu-tar.squeeze.in  |4 +-
 data/unzip.squeeze.in|4 +-
 data/zip.squeeze.in  |4 +-
 libsqueeze/execute-context.c |2 +-
 module.xml   |   20 --
 po/ar.po |   56 +++---
 po/ast.po|  245 +++--
 po/{ko.po = bg.po}  |  228 +++
 po/de.po |  281 +---
 po/el.po |  140 +++---
 po/{tl_PH.po = en_AU.po}|  289 +
 po/es.po |  360 
 po/fr.po |  360 +---
 po/he.po |  110 +--
 po/hr.po |  106 +--
 po/ja.po |  235 ++--
 po/ko.po |2 +-
 po/{ku.po = ms.po}  |  293 +++---
 po/{hr.po = nb.po}  |  233 +++-
 po/nl.po |  258 +++---
 po/{hr.po = oc.po}  |  230 +++
 po/pt_BR.po  |  361 +---
 po/ru.po |  165 -
 po/{hr.po = sr.po}  |  232 
 po/th.po |  412 ++
 po/ug.po |  298 ++
 po/zh_TW.po  |   11 +-
 squeeze-cli/cli.c|   82 +
 squeeze-cli/main.c   |2 +-
 stamp-h.in   |1 -
 31 files changed, 2182 insertions(+), 2851 deletions(-)

diff --cc configure.ac.in
index 88b2ea4,9dff30d..6881f66
--- a/configure.ac.in
+++ b/configure.ac.in
@@@ -70,13 -70,14 +70,10 @@@ dnl Check for i18n suppor
  XDT_I18N([@LINGUAS@])
  
  
- XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.24.0])
- XDT_CHECK_PACKAGE([GOBJECT], [gobject-2.0], [2.24.0])
- XDT_CHECK_PACKAGE([GIO], [gio-2.0], [2.20.0])
 -XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.24.0])
 -XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.36.0])
 -XDT_CHECK_PACKAGE([GOBJECT], [gobject-2.0], [2.36.0])
 -XDT_CHECK_PACKAGE([GIO], [gio-2.0], [2.36.0])
  XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.8.0])
- XDT_CHECK_PACKAGE([DBUS], [dbus-glib-1], [0.34])
+ XDT_CHECK_PACKAGE([DBUS], [dbus-glib-1], [0.84])
  
- XDT_CHECK_PACKAGE([XFCONF], [libxfconf-0], [4.7.0])
+ XDT_CHECK_PACKAGE([XFCONF], [libxfconf-0], [4.8.0])
  
  dnl Some distro's have dbus  1.0, need to define the following to make it 
compile. (Squeeze depends on the glib-bindings anyways)
  AC_DEFINE([DBUS_API_SUBJECT_TO_CHANGE], [1], [Define we understand dbus is 
subject to api churn])

-- 
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/squeeze] branch stephan/new-ui updated (ba043fd - 9e04247)

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

peter pushed a change to branch stephan/new-ui
in repository apps/squeeze.

  from  ba043fd   Fixed syntax and Makefile errors.
  adds  a021978   l10n: Updated Uyghur (ug) translation to 100%
  adds  e030037   l10n: Updated Uyghur (ug) translation to 100%
  adds  6eb6b4a   l10n: Updated Uyghur (ug) translation to 100%
  adds  bcf2bc0   l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
  adds  4b00a1c   l10n: Updated Chinese (Taiwan) (zh_TW) translation to 98%
  adds  c7a4e5b   l10n: Updated Uyghur (ug) translation to 100%
  adds  4496112   l10n: New Serbian translation, author salepetronije
  adds  07f46bd   l10n: Updated Greek (el) translation to 100%
  adds  a6beeed   l10n: Updated Hebrew (he) translation to 97%
  adds  d3f582b   l10n: Updated Uyghur (ug) translation to 100%
  adds  5f149b4   l10n: Updated Arabic (ar) translation to 100%
  adds  5f8f381   l10n: Updated Hebrew (he) translation to 100%
  adds  ed954b7   l10n: Updated French (fr) translation to 98%
  adds  257e57c   l10n: Updated French (fr) translation to 100%
  adds  f78f321   l10n: Updates to Bulgarian translation
  adds  2271cd5   l10n: Updated Croatian (hr) translation to 87%
  adds  d6c71c3   l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
  adds  eaf1c3f   l10n: Updated Korean (ko) translation to 100%
  adds  cee3d56   l10n: Updated Dutch (Flemish) (nl) translation to 100%
  adds  7177548   I18n: Remove broken / unsupported translations.
  adds  f8ee452   Remove unneeded files.
  adds  a5bf507   I18n: Add new translation en_AU (100%).
  adds  e196792   I18n: Update translation fr (100%).
  adds  7e9cb1e   I18n: Update translation nl (100%).
  adds  2e68282   I18n: Update translation pt_BR (100%).
  adds  5c57268   I18n: Add new translation oc (100%).
  adds  b8099e6   I18n: Update translation ja (97%).
  adds  33b9ef0   I18n: Update translation es (100%).
  adds  38415b2   I18n: Update translation hr (100%).
  adds  a4e7826   I18n: Add new translation ms (100%).
  adds  663e4d0   I18n: Add new translation th (100%).
  adds  aada9a1   I18n: Update translation ast (100%).
  adds  87b986f   I18n: Add new translation nb (61%).
  adds  983999d   I18n: Update translation nb (100%).
  adds  365e14b   I18n: Update translation ru (100%).
  adds  4c84afc   I18n: Update translation fr (100%).
  adds  67463c9   I18n: Update translation de (100%).
  adds  766bbbf   I18n: Update translation hr (96%).
  adds  3bcc3b8   Updated regex for new pcre limitation.
  adds  59c0278   Updated dependencies
  adds  b05139b   Remove format-y2k warning
  adds  c60cf11   Updated squeeze-cli to the new libsqueeze
  adds  100870e   Merge branch 'peter/libsqueeze'
   new  270bad3   Merge branch 'master' into stephan/new-ui
   new  0c4e85d   Open archive connected to the new ui
   new  9e04247   Added Go menu

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


Summary of changes:
 configure.ac.in  |9 +-
 data/gnu-tar.squeeze.in  |4 +-
 data/unzip.squeeze.in|4 +-
 data/zip.squeeze.in  |4 +-
 libsqueeze/execute-context.c |2 +-
 libsqueeze/scanf-parser.c|2 +-
 libsqueeze/support-info.c|2 +-
 module.xml   |   20 -
 po/ar.po |   56 ++-
 po/ast.po|  245 ++--
 po/{ko.po = bg.po}  |  228 ++--
 po/de.po |  281 +++---
 po/el.po |  140 ---
 po/{en_GB.po = en_AU.po}|  243 ++--
 po/es.po |  360 --
 po/fr.po |  360 +-
 po/he.po |  110 +++---
 po/hr.po |  106 +++---
 po/ja.po |  235 +---
 po/ko.po |2 +-
 po/ku.po |  419 -
 po/{pl.po = ms.po}  |  223 +--
 po/{pl.po = nb.po}  |  224 +--
 po/nl.po |  258 -
 po/{pl.po = oc.po}  |  221 +--
 po/pt_BR.po  |  361 --
 po/ru.po |  165 -
 po/{hr.po = sr.po}  |  232 ++--
 po/th.po |  412 +
 po/tl_PH.po  |  445 --
 po/ug.po |  298 +--
 po/zh_TW.po  |   11 +-
 squeeze-cli/cli.c|   82 ++--
 squeeze-cli/main.c   |2 +-
 src/archive_store.c  |  411 +++-
 src/archive_store.h 

[Xfce4-commits] [apps/squeeze] 02/03: Open archive connected to the new ui

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

peter pushed a commit to branch stephan/new-ui
in repository apps/squeeze.

commit 0c4e85dea8df7c73c0eddac3abf2a37d910195ed
Author: Peter de Ridder pe...@xfce.org
Date:   Sat Nov 1 23:43:05 2014 +0100

Open archive connected to the new ui
---
 libsqueeze/support-info.c |2 +-
 src/archive_store.c   |  411 --
 src/archive_store.h   |   85 ++
 src/main.c|3 -
 src/main_window.c |  715 ++---
 src/main_window.h |   39 +--
 src/main_window_ui.xml|   18 +-
 7 files changed, 675 insertions(+), 598 deletions(-)

diff --git a/libsqueeze/support-info.c b/libsqueeze/support-info.c
index 74071eb..f923ba3 100644
--- a/libsqueeze/support-info.c
+++ b/libsqueeze/support-info.c
@@ -192,5 +192,5 @@ lsq_support_info_get_all ( void )
 GList *
 lsq_support_info_get_all_mime_types ( void )
 {
-return g_hash_table_get_values( lsq_support_info_table );
+return g_hash_table_get_keys( lsq_support_info_table );
 }
diff --git a/src/archive_store.c b/src/archive_store.c
index f38979a..fc8862b 100644
--- a/src/archive_store.c
+++ b/src/archive_store.c
@@ -43,20 +43,10 @@ sq_archive_store_dispose(GObject *object);
 
 /* properties */
 enum {
-   SQ_ARCHIVE_STORE_SHOW_ICONS = 1,
-   SQ_ARCHIVE_STORE_SORT_FOLDERS_FIRST,
+   SQ_ARCHIVE_STORE_SORT_FOLDERS_FIRST = 1,
SQ_ARCHIVE_STORE_SORT_CASE_SENSITIVE
 };
 
-/* signals */
-enum {
-   SQ_ARCHIVE_STORE_SIGNAL_PWD_CHANGED = 0,
-   SQ_ARCHIVE_STORE_SIGNAL_NEW_ARCHIVE,
-   SQ_ARCHIVE_STORE_SIGNAL_FILE_ACTIVATED,
-   SQ_ARCHIVE_STORE_SIGNAL_COUNT
-};
-static gint sq_archive_store_signals[SQ_ARCHIVE_STORE_SIGNAL_COUNT];
-
 static GObjectClass *parent_class;
 
 static void
@@ -90,12 +80,6 @@ sq_archive_store_iter_nth_child (GtkTreeModel *tree_model, 
GtkTreeIter *iter, Gt
 static gboolean
 sq_archive_store_iter_parent (GtkTreeModel *tree_model, GtkTreeIter *iter, 
GtkTreeIter *child);
 
-static void
-sq_archive_store_file_activated(SQArchiveStore *store, GtkTreePath *path);
-
-static void
-cb_sq_archive_store_row_activated(GtkTreeView *treeview, GtkTreePath *path, 
GtkTreeViewColumn *column, gpointer user_data);
-
 /* tree sortable */
 static gboolean
 sq_archive_store_get_sort_column_id(GtkTreeSortable *sortable, gint 
*sort_col_id, GtkSortType *order);
@@ -118,14 +102,33 @@ static GIcon *
 sq_archive_store_get_icon_name_for_iter(SQArchiveStore *store, LSQArchiveIter 
*iter);
 
 static void
-sq_archive_store_check_trailing(SQArchiveStore *store);
-
-static void
 sq_archive_store_refresh(SQArchiveStore *store);
 
 static void
 cb_sq_archive_store_archive_refreshed(LSQArchive *archive, gpointer user_data);
 
+struct _SQArchiveStore
+{
+GObject parent;
+gint stamp;
+LSQArchive *archive;
+LSQArchiveIter *entry;
+
+gint sort_column;
+GtkSortType sort_order;
+LSQArchiveIter **sort_list;
+guint list_size;
+struct {
+guint _sort_folders_first : 1;
+guint _sort_case_sensitive : 1;
+} props;
+};
+
+struct _SQArchiveStoreClass
+{
+GObjectClass parent_class;
+};
+
 GType
 sq_archive_store_get_type(void)
 {
@@ -209,7 +212,6 @@ sq_archive_store_init(SQArchiveStore *as)
as-sort_column = GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID;
as-sort_order = GTK_SORT_ASCENDING;
as-sort_list = NULL;
-   as-props._show_icons = 0;
as-props._sort_folders_first = 1;
as-props._sort_case_sensitive = 1;
 }
@@ -226,13 +228,6 @@ sq_archive_store_class_init(SQArchiveStoreClass *as_class)
 
 parent_class = g_type_class_peek_parent(as_class);
 
-   pspec = g_param_spec_boolean(show-icons,
-   _(Show mime icons),
-   _(Show the mime type icons for each entry),
-   FALSE,
-   G_PARAM_READWRITE);
-   g_object_class_install_property(object_class, 
SQ_ARCHIVE_STORE_SHOW_ICONS, pspec);
-
pspec = g_param_spec_boolean(sort-folders-first,
_(Sort folders before files),
_(The folders will be put at the top of the list),
@@ -254,9 +249,6 @@ sq_archive_store_set_property(GObject *object, guint 
prop_id, const GValue *valu
SQArchiveStore *store = SQ_ARCHIVE_STORE(object);
switch(prop_id)
{
-   case SQ_ARCHIVE_STORE_SHOW_ICONS:
-   sq_archive_store_set_show_icons(store, 
g_value_get_boolean(value));
-   break;
case SQ_ARCHIVE_STORE_SORT_FOLDERS_FIRST:
sq_archive_store_set_sort_folders_first(store, 
g_value_get_boolean(value));
break;
@@ -271,9 +263,6 @@ sq_archive_store_get_property(GObject *object, guint 
prop_id, GValue *value, GPa
 {
switch(prop_id)
{
-   case SQ_ARCHIVE_STORE_SHOW_ICONS:
-   g_value_set_boolean(value, 

[Xfce4-commits] [xfce/exo] branch master updated (a079eec - 9bdfca0)

2014-11-16 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  a079eec   I18n: Update translation ast (100%).
   new  9bdfca0   I18n: Update translation ast (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/ast.po |2 +-
 1 file changed, 1 insertion(+), 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] [xfce/thunar] 01/01: I18n: Update translation sq (91%).

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit bb0302de4aa1665d897ebee6e332d8de709fb45a
Author: Erlin Hysenbelliu erlin...@gmail.com
Date:   Sun Nov 16 18:30:19 2014 +0100

I18n: Update translation sq (91%).

677 translated messages, 60 untranslated messages.

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

diff --git a/po/sq.po b/po/sq.po
index 7516348..a366445 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# ard1t ardit.d...@gmail.com, 2014
+# Ardit Dani ardit.d...@gmail.com, 2014
+# Erlin Hysenbelliu erlin...@gmail.com, 2014
 msgid 
 msgstr 
 Project-Id-Version: Thunar\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-07-30 00:30+0200\n
-PO-Revision-Date: 2014-02-01 00:44+\n
-Last-Translator: ard1t ardit.d...@gmail.com\n
-Language-Team: Albanian 
(http://www.transifex.com/projects/p/xfce/language/sq/)\n
+POT-Creation-Date: 2014-11-05 18:30+0100\n
+PO-Revision-Date: 2014-11-16 13:23+\n
+Last-Translator: Erlin Hysenbelliu erlin...@gmail.com\n
+Language-Team: Albanian 
(http://www.transifex.com/projects/p/thunar/language/sq/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
@@ -247,7 +248,7 @@ msgstr Të heqë tërë kartelat dhe dosjet prej Hedhurinave?
 #. prepare the menu item
 #: ../thunar/thunar-application.c:2008 ../thunar/thunar-location-buttons.c:179
 #: ../thunar/thunar-shortcuts-view.c:1191 ../thunar/thunar-tree-view.c:1183
-#: ../thunar/thunar-window.c:351 ../plugins/thunar-tpa/thunar-tpa.c:189
+#: ../thunar/thunar-window.c:351 ../plugins/thunar-tpa/thunar-tpa.c:191
 msgid _Empty Trash
 msgstr _Zbraz Hedhurina
 
@@ -496,7 +497,7 @@ msgstr _Zgjero shtyllat vetvetiu aq sa duhet
 #. tell the user that we're unable to determine the file info
 #: ../thunar/thunar-column-model.c:858 ../thunar/thunar-list-model.c:680
 #: ../thunar/thunar-list-model.c:708
-#: ../thunar/thunar-permissions-chooser.c:229 ../thunar/thunar-util.c:446
+#: ../thunar/thunar-permissions-chooser.c:229 ../thunar/thunar-util.c:454
 #: ../plugins/thunar-apr/thunar-apr-desktop-page.c:503
 #: ../plugins/thunar-apr/thunar-apr-image-page.c:285
 #: ../plugins/thunar-apr/thunar-apr-image-page.c:286
@@ -615,7 +616,7 @@ msgstr _Riprovo
 
 #: ../thunar/thunar-dialogs.c:445
 msgid Copy _Anyway
-msgstr 
+msgstr Kopjo _Gjithsesi
 
 #: ../thunar/thunar-dialogs.c:468
 msgid _Cancel
@@ -991,7 +992,7 @@ msgstr _Hap
 #: ../thunar/thunar-launcher.c:178 ../thunar/thunar-launcher.c:859
 #: ../thunar/thunar-tree-view.c:1124
 msgid Open in New _Tab
-msgstr 
+msgstr Hap në _Tab të re
 
 #. append the Open in New Window menu action
 #: ../thunar/thunar-launcher.c:179 ../thunar/thunar-launcher.c:853
@@ -2036,7 +2037,7 @@ msgid 
 msgstr Doni të anashkalohet kjo kartelë dhe të vazhdohet me riemërtimin e 
kartelave të mbetura?
 
 #: ../thunar/thunar-shortcuts-model.c:597
-#: ../plugins/thunar-tpa/thunar-tpa.c:310
+#: ../plugins/thunar-tpa/thunar-tpa.c:308
 msgid Trash is empty
 msgstr Hedhurina është bosh
 
@@ -2449,46 +2450,46 @@ msgstr _Ngjit Te Dosje
 msgid P_roperties...
 msgstr V_eti...
 
-#: ../thunar/thunar-util.c:272
+#: ../thunar/thunar-util.c:280
 #, c-format
 msgid Invalid path
 msgstr Shteg i pavlefshëm
 
-#: ../thunar/thunar-util.c:306
+#: ../thunar/thunar-util.c:314
 #, c-format
 msgid Unknown user \%s\
 msgstr Përdorues i panjohur \%s\
 
 #. TRANSLATORS: file was modified less than one day ago
-#: ../thunar/thunar-util.c:395
+#: ../thunar/thunar-util.c:403
 msgid Today
 msgstr Sot
 
 #. TRANSLATORS: file was modified less than one day ago
-#: ../thunar/thunar-util.c:400
+#: ../thunar/thunar-util.c:408
 #, c-format
 msgid Today at %X
 msgstr Sot më %X
 
 #. TRANSLATORS: file was modified less than two days ago
-#: ../thunar/thunar-util.c:408
+#: ../thunar/thunar-util.c:416
 msgid Yesterday
 msgstr Dje
 
 #. TRANSLATORS: file was modified less than two days ago
-#: ../thunar/thunar-util.c:413
+#: ../thunar/thunar-util.c:421
 #, c-format
 msgid Yesterday at %X
 msgstr Dje më %X
 
 #. Days from last week
-#: ../thunar/thunar-util.c:421
+#: ../thunar/thunar-util.c:429
 #, c-format
 msgid %A at %X
 msgstr %A te %X
 
 #. Any other date
-#: ../thunar/thunar-util.c:426
+#: ../thunar/thunar-util.c:434
 #, c-format
 msgid %x at %X
 msgstr %x te %X
@@ -3274,15 +3275,15 @@ msgid Mail Recipient
 msgstr Marrës Poste
 
 #. tell the user that we failed to connect to the trash
-#: ../plugins/thunar-tpa/thunar-tpa.c:295
-#: ../plugins/thunar-tpa/thunar-tpa.c:336
-#: ../plugins/thunar-tpa/thunar-tpa.c:358
-#: ../plugins/thunar-tpa/thunar-tpa.c:385
+#: ../plugins/thunar-tpa/thunar-tpa.c:293
+#: ../plugins/thunar-tpa/thunar-tpa.c:334
+#: 

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

2014-11-16 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 9bdfca0dd37a95e0c7a7acfcb0cc1e1cb1b1a3ab
Author: Ḷḷumex03 tor...@opmbx.org
Date:   Sun Nov 16 18:30:03 2014 +0100

I18n: Update translation ast (100%).

279 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/ast.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/ast.po b/po/ast.po
index 5981b5f..fa882e0 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -10,7 +10,7 @@ msgstr 
 Project-Id-Version: Exo\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-02 22:30+0200\n
-PO-Revision-Date: 2014-11-15 12:47+\n
+PO-Revision-Date: 2014-11-16 11:45+\n
 Last-Translator: Ḷḷumex03 tor...@opmbx.org\n
 Language-Team: Asturian 
(http://www.transifex.com/projects/p/exo/language/ast/)\n
 MIME-Version: 1.0\n

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


[Xfce4-commits] [xfce/thunar] branch master updated (a373a64 - bb0302d)

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  a373a64   I18n: Update translation de (100%).
   new  bb0302d   I18n: Update translation sq (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/sq.po |   68 --
 1 file changed, 44 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-cellmodem-plugin] branch master updated (ec17f01 - b3f8f15)

2014-11-16 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-cellmodem-plugin.

  from  ec17f01   I18n: Add new translation nb (100%).
   new  b3f8f15   I18n: Update translation ast (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/ast.po |   53 +++--
 1 file changed, 27 insertions(+), 26 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-cellmodem-plugin] 01/01: I18n: Update translation ast (100%).

2014-11-16 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-cellmodem-plugin.

commit b3f8f15123df78b50a2cb3fe349edbb5a93807ac
Author: Ḷḷumex03 tor...@opmbx.org
Date:   Sun Nov 16 18:31:13 2014 +0100

I18n: Update translation ast (100%).

63 translated messages.

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

diff --git a/po/ast.po b/po/ast.po
index dbe9e90..abed58c 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Tornes Llume l.lumex03.tor...@gmail.com, 2014
+# Ḷḷumex03 tor...@opmbx.org, 2014
+# Ḷḷumex03 tor...@opmbx.org, 2014
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 20:50+0200\n
-PO-Revision-Date: 2014-04-14 14:48+\n
-Last-Translator: Tornes Llume l.lumex03.tor...@gmail.com\n
-Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce/language/ast/)\n
+PO-Revision-Date: 2014-11-16 11:57+\n
+Last-Translator: Ḷḷumex03 tor...@opmbx.org\n
+Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/ast/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
@@ -27,7 +28,7 @@ msgstr Aniciando'l complementu agora
 msgid 
 Error detected:\n
 %s
-msgstr Erru deteutáu:\n%s
+msgstr Fallu deteutáu:\n%s
 
 #: ../panel-plugin/cellmodem.c:611
 #, c-format
@@ -49,28 +50,28 @@ msgstr Rexistrando
 msgid 
 Registered [GPRS] to %s\n
 Quality: %d (%d%%)
-msgstr Rexistráu [GPRS] con %s\nCalidá: %d (%d%%)
+msgstr Rexistráu [GPRS] a %s\nCalidá: %d (%d%%)
 
 #: ../panel-plugin/cellmodem.c:628
 #, c-format
 msgid 
 Registered [UMTS] to %s\n
 Quality: %d (%d%%)
-msgstr Rexistráu [UMTS] con %s\nCalidá: %d (%d%%)
+msgstr Rexistráu [UMTS] a %s\nCalidá: %d (%d%%)
 
 #: ../panel-plugin/cellmodem.c:634
 #, c-format
 msgid 
 Registered [HSDPA] to %s\n
 Quality: %d (%d%%)
-msgstr Rexistráu [HSDPA] con %s\nCalidá: %d (%d%%)
+msgstr Rexistráu [HSDPA] a %s\nCalidá: %d (%d%%)
 
 #: ../panel-plugin/cellmodem.c:640
 #, c-format
 msgid 
 Registered to %s\n
 Quality: %d (%d%%)
-msgstr Rexistráu con %s\nCalidá: %d (%d%%)
+msgstr Rexistráu a %s\nCalidá: %d (%d%%)
 
 #: ../panel-plugin/cellmodem.c:649
 #, c-format
@@ -84,11 +85,11 @@ msgstr \nEnsin sofitu de SMS
 msgid 
 \n
 SMS not checked yet
-msgstr \nEntá nun se comprobó el SMS
+msgstr \nEntá nun se comprobó'l SMS
 
 #: ../panel-plugin/cellmodem.c:849
 msgid Error in modem reply to CREG
-msgstr Erru na rempuesta del módem a CREG
+msgstr Fallu na rempuesta del módem a CREG
 
 #: ../panel-plugin/cellmodem.c:862
 msgid Invalid reply to +CREG
@@ -100,7 +101,7 @@ msgstr Rempuesta CREG non válida dende'l módem
 
 #: ../panel-plugin/cellmodem.c:940
 msgid Error in modem reply to COPS
-msgstr Erru na rempuesta del módem a COPS
+msgstr Fallu na rempuesta del módem pa COPS
 
 #: ../panel-plugin/cellmodem.c:1012
 msgid Invalid COPS reply from modem
@@ -108,7 +109,7 @@ msgstr Rempuesta COPS non válida dende'l módem
 
 #: ../panel-plugin/cellmodem.c:1068
 msgid Error in modem reply to CPIN
-msgstr Erru na rempuesta del módem a CPIN
+msgstr Fallu na rempuesta del módem pa CPIN
 
 #: ../panel-plugin/cellmodem.c:1105
 msgid Invalid CPIN reply from modem
@@ -136,11 +137,11 @@ msgstr Rempuesta CMFG non sofitada dende'l módem
 
 #: ../panel-plugin/cellmodem.c:1287
 msgid Cannot send PIN to modem
-msgstr Nun pue unviase PIN al módem
+msgstr Nun pue unviase'l PIN al módem
 
 #: ../panel-plugin/cellmodem.c:1326
 msgid Error in modem reply to CSQ
-msgstr Erru na rempuesta del módem a CSQ
+msgstr Fallu na rempuesta del módem pa CSQ
 
 #: ../panel-plugin/cellmodem.c:1352
 msgid Invalid CSQ reply from modem
@@ -152,7 +153,7 @@ msgstr Rempuesta CPMS non válida dende'l módem
 
 #: ../panel-plugin/cellmodem.c:1688
 msgid Error in modem reply to CMGL
-msgstr Erru na rempuesta del modem pa CMGL
+msgstr Fallu na rempuesta del modem pa CMGL
 
 #: ../panel-plugin/cellmodem.c:1900 ../panel-plugin/cellmodem.c:2398
 msgid Cannot open modem
@@ -160,11 +161,11 @@ msgstr Nun pue abrise'l módem
 
 #: ../panel-plugin/cellmodem.c:2117
 msgid Error reading from modem
-msgstr Erru al lleer del módem
+msgstr Fallu al lleer del módem
 
 #: ../panel-plugin/cellmodem.c:2199
 msgid Error writing to modem
-msgstr Erru al escribir en módem
+msgstr Erru al escribir al módem
 
 #: ../panel-plugin/cellmodem.c:2216
 msgid Modem did not reply to command
@@ -176,7 +177,7 @@ msgstr Nun se definió dengún controlador
 
 #: ../panel-plugin/cellmodem.c:2245
 msgid No modem instance
-msgstr Nun hai denguna instancia de módem
+msgstr Nun hai denguna instancia del módem
 
 #: ../panel-plugin/cellmodem.c:2556
 msgid Modem initializing
@@ -193,7 +194,7 

[Xfce4-commits] [panel-plugins/xfce4-battery-plugin] branch master updated (63fd0cc - bd41c54)

2014-11-16 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  63fd0cc   I18n: Add new translation th (100%).
   new  bd41c54   I18n: Update translation ast (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/ast.po |   17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

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


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

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 15240e0d1661212c09a391f34c844f98db68211b
Author: Ḷḷumex03 tor...@opmbx.org
Date:   Sun Nov 16 18:31:15 2014 +0100

I18n: Update translation ast (86%).

59 translated messages, 9 untranslated messages.

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

diff --git a/po/ast.po b/po/ast.po
index 12c3179..d880776 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Tornes Llume l.lumex03.tor...@gmail.com, 2014
-# Tornes Llume l.lumex03.tor...@gmail.com, 2014
+# Ḷḷumex03 tor...@opmbx.org, 2014
+# Ḷḷumex03 tor...@opmbx.org, 2014
+# Ḷḷumex03 tor...@opmbx.org, 2014
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2014-06-01 00:31+0200\n
-PO-Revision-Date: 2014-06-04 07:04+\n
-Last-Translator: Tornes Llume l.lumex03.tor...@gmail.com\n
+PO-Revision-Date: 2014-11-16 12:26+\n
+Last-Translator: Ḷḷumex03 tor...@opmbx.org\n
 Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/ast/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -90,12 +91,12 @@ msgstr Shift+Insert
 
 #: ../panel-plugin/xfce4-clipman-settings.c:533
 msgid bReset actions/b
-msgstr bRefitar aiciones/b
+msgstr bReafitar aiciones/b
 
 #: ../panel-plugin/xfce4-clipman-settings.c:535
 msgid 
 Are you sure you want to reset the actions to the system default values?
-msgstr ¿De xuru quies reafitar les aiciones?
+msgstr ¿De xuru que quies reafitar les aiciones?
 
 #: ../panel-plugin/settings-dialog.ui.h:1
 msgid Configure the plugin
@@ -268,7 +269,7 @@ msgstr Activar namái copia manual
 msgid 
 By default the action is triggerred by a selection, check this option to 
 trigger the action only when you make a manual copy
-msgstr Por defeutu l'aición ye activada por una Escoyeta, marca esta opción 
p'activar l'aición namái cuando se fai una copia manual
+msgstr Por defeutu l'aición actívase por una seleición, conseña esta opción 
p'activar l'aición namái cuando se fai una copia manual
 
 #: ../panel-plugin/settings-dialog.ui.h:39
 msgid bAction/b
@@ -297,11 +298,11 @@ msgid 
 Unable to execute the command \%s\\n
 \n
 %s
-msgstr Nun puede executase'l comandu \%s\\n\n%s
+msgstr Nun pue executase'l comandu \%s\\n\n%s
 
 #: ../panel-plugin/menu.c:235
 msgid Are you sure you want to clear the history?
-msgstr ¿De xuru quies desaniciar la historia?
+msgstr ¿De xuru que quies llimpiar la historia?
 
 #: ../panel-plugin/menu.c:244
 msgid Don't ask again
@@ -309,12 +310,12 @@ msgstr Nun entrugar más
 
 #: ../panel-plugin/menu.c:356
 msgid Could not generate QR-Code.
-msgstr Nun pue xenerase'l códigu QR.
+msgstr Nun pudo xenerase'l códigu QR.
 
 #. Insert empty menu item
 #: ../panel-plugin/menu.c:370
 msgid Clipboard is empty
-msgstr Clipboard ta baleru
+msgstr El cartafueyu ta baleru
 
 #: ../panel-plugin/plugin.c:326
 msgid Contributors:
@@ -322,11 +323,11 @@ msgstr 
 
 #: ../panel-plugin/plugin.c:341
 msgid Clipboard Manager for Xfce
-msgstr Xestor de cartafueyu pal escritoriu Xfce
+msgstr Xestor del cartafueyu pal escritoriu Xfce
 
 #: ../panel-plugin/plugin.c:349
 msgid translator-credits
-msgstr Softastur www.softastur.org
+msgstr Softastur www.softastur.org
 
 #: ../panel-plugin/plugin.c:363
 msgid Unable to open the settings dialog

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

2014-11-16 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 bd41c54b98b034e7958de62c3d61303324594462
Author: Ḷḷumex03 tor...@opmbx.org
Date:   Sun Nov 16 18:31:10 2014 +0100

I18n: Update translation ast (100%).

43 translated messages.

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

diff --git a/po/ast.po b/po/ast.po
index fb0be37..0b94a35 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Tornes Llume l.lumex03.tor...@gmail.com, 2014
+# Ḷḷumex03 tor...@opmbx.org, 2014
+# Ḷḷumex03 tor...@opmbx.org, 2014
 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: 2014-04-14 15:09+\n
-Last-Translator: Tornes Llume l.lumex03.tor...@gmail.com\n
-Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce/language/ast/)\n
+PO-Revision-Date: 2014-11-16 11:49+\n
+Last-Translator: Ḷḷumex03 tor...@opmbx.org\n
+Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/ast/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
@@ -48,19 +49,19 @@ msgstr %d%% restante
 #: ../panel-plugin/battery.c:554
 #, c-format
 msgid AC off-line
-msgstr Alimentación desconeutada
+msgstr AC desconeutáu
 
 #: ../panel-plugin/battery.c:624
 msgid 
 WARNING: Your battery has reached critical status. You should plug in or 
 shutdown your computer now to avoid possible data loss.
-msgstr ATENCIÓN: La batería algamó un estáu críticu. Tienes d'enchufar o 
apagar el to ordenador pa evitar una posible perda de datos.
+msgstr AVISU: La to batería algamó l'estáu críticu. Tienes d'enchufar o 
apagar el to ordenador pa evitar una posible perda de datos.
 
 #: ../panel-plugin/battery.c:642
 msgid 
 WARNING: Your battery is running low. You should consider plugging in or 
 shutting down your computer soon to avoid possible data loss.
-msgstr ATENCIÓN: La batería ta escosándose. Deberíes enchufar o apagar el to 
ordenador aína pa evitar una posible perda de datos.
+msgstr AVISU: La to batería ta escosándose. Deberíes enchufar o apagar el to 
ordenador aína pa evitar una posible perda de datos.
 
 #: ../panel-plugin/battery.c:678
 msgid Battery
@@ -81,7 +82,7 @@ msgstr Esbillar color
 #: ../panel-plugin/battery.c:1305
 #, c-format
 msgid Unable to open the following url: %s
-msgstr Imposible abrir la siguiente URL: %s
+msgstr Nun pue abrise la siguiente URL: %s
 
 #: ../panel-plugin/battery.c:1330 ../panel-plugin/battery.desktop.in.h:1
 msgid Battery Monitor

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

2014-11-16 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-eyes-plugin.

commit cde7c080a7dcbe998917f3c7ecbe3e1b0ca07fc5
Author: Ḷḷumex03 tor...@opmbx.org
Date:   Sun Nov 16 18:31:25 2014 +0100

I18n: Update translation ast (100%).

4 translated messages.

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

diff --git a/po/ast.po b/po/ast.po
index aec4650..9632dbc 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -3,16 +3,17 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Astur I. malditoas...@gmail.com, 2004
-# Tornes Llume l.lumex03.tor...@gmail.com, 2014
+# malditoastur malditoas...@gmail.com, 2004
+# Ḷḷumex03 tor...@opmbx.org, 2014
+# Ḷḷumex03 tor...@opmbx.org, 2014
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 20:59+0200\n
-PO-Revision-Date: 2014-04-13 23:15+\n
-Last-Translator: Tornes Llume l.lumex03.tor...@gmail.com\n
-Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce/language/ast/)\n
+PO-Revision-Date: 2014-11-16 11:58+\n
+Last-Translator: Ḷḷumex03 tor...@opmbx.org\n
+Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/ast/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
@@ -29,7 +30,7 @@ msgstr _Esbillar un tema:
 
 #: ../panel-plugin/eyes.c:385
 msgid Use single _row in multi-row panel
-msgstr Usa una _filera sola nel panel de fileres múltiples
+msgstr Usa una _filera nel panel de fileres múltiples
 
 #: ../panel-plugin/eyes.desktop.in.h:2
 msgid Eyes that spy on you

-- 
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 (c61a4aa - 15240e0)

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  c61a4aa   I18n: Update translation hr (100%).
   new  15240e0   I18n: Update translation ast (86%).

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/ast.po |   27 ++-
 1 file changed, 14 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-eyes-plugin] branch master updated (7ba4b0a - cde7c08)

2014-11-16 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-eyes-plugin.

  from  7ba4b0a   I18n: Update translation de (100%).
   new  cde7c08   I18n: Update translation ast (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/ast.po |   13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

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


[Xfce4-commits] [apps/xfburn] branch master updated (1a4f311 - 470c14c)

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  1a4f311   I18n: Update translation nl (100%).
   new  470c14c   I18n: Update translation fr (100%).

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


Summary of changes:
 po/fr.po |   78 +++---
 1 file changed, 39 insertions(+), 39 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/xfburn] 01/01: I18n: Update translation fr (100%).

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 470c14cd65ee4f49fff793684e152e859f512632
Author: Yannick Le Guen leguen.yann...@gmail.com
Date:   Mon Nov 17 00:30:55 2014 +0100

I18n: Update translation fr (100%).

303 translated messages.

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

diff --git a/po/fr.po b/po/fr.po
index 9837bc9..e194010 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -16,7 +16,7 @@ msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2014-04-05 12:31+0200\n
-PO-Revision-Date: 2014-07-28 20:53+\n
+PO-Revision-Date: 2014-11-16 20:54+\n
 Last-Translator: Yannick Le Guen leguen.yann...@gmail.com\n
 Language-Team: French 
(http://www.transifex.com/projects/p/xfce-apps/language/fr/)\n
 MIME-Version: 1.0\n
@@ -39,7 +39,7 @@ msgstr Temps total :
 
 #: ../xfburn/xfburn-global.h:32
 msgid length
-msgstr Durée
+msgstr durée
 
 #: ../xfburn/xfburn-global.h:33 ../xfburn/xfburn-copy-cd-progress-dialog.c:93
 msgid Flushing cache...
@@ -55,7 +55,7 @@ msgstr Impossible de déterminer l'état du disque - appuyez 
sur Entrée pour r
 
 #: ../xfburn/xfburn-global.h:36
 msgid CD copying finished successfully.
-msgstr Copie CD terminée avec succès.
+msgstr Copie du CD terminée avec succès.
 
 #: ../xfburn/xfburn-global.h:43
 msgid Data composition
@@ -75,7 +75,7 @@ msgstr Effacement rapide
 
 #: ../xfburn/xfburn-blank-dialog.c:72
 msgid Full Blank (slow)
-msgstr Effacement total (lent)
+msgstr Effacement complet (lent)
 
 #: ../xfburn/xfburn-blank-dialog.c:73
 msgid Quick Format
@@ -87,11 +87,11 @@ msgstr Formatage complet
 
 #: ../xfburn/xfburn-blank-dialog.c:75
 msgid Quick Deformat
-msgstr Formatage rapide
+msgstr Dé-formatage rapide
 
 #: ../xfburn/xfburn-blank-dialog.c:76
 msgid Full Deformat (slow)
-msgstr Formatage total (lent)
+msgstr Dé-formatage complet (lent)
 
 #: ../xfburn/xfburn-blank-dialog.c:149
 msgid Eject the disc
@@ -99,11 +99,11 @@ msgstr Éjecter le disque
 
 #: ../xfburn/xfburn-blank-dialog.c:150
 msgid Default value for eject checkbox
-msgstr Valeur par défaut pour la case à cocher d'éjection
+msgstr Valeur par défaut pour la case d'éjection
 
 #: ../xfburn/xfburn-blank-dialog.c:197
 msgid Blank Disc
-msgstr Nettoyage de disque
+msgstr Effacer un disque
 
 #: ../xfburn/xfburn-blank-dialog.c:209
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:196
@@ -116,7 +116,7 @@ msgstr Périphérique de gravure
 
 #: ../xfburn/xfburn-blank-dialog.c:222 ../xfburn/xfburn-device-box.c:185
 msgid Blank mode
-msgstr Mode vierge
+msgstr Mode d'effacement
 
 #: ../xfburn/xfburn-blank-dialog.c:230
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:228
@@ -138,7 +138,7 @@ msgstr É_jecter le disque
 
 #: ../xfburn/xfburn-blank-dialog.c:244
 msgid _Blank
-msgstr _Nettoyer
+msgstr _Effacer
 
 #. blanking can only be performed on blank discs, format and deformat are
 #. allowed to be blank ones
@@ -153,7 +153,7 @@ msgstr Prêt
 
 #: ../xfburn/xfburn-blank-dialog.c:365
 msgid No disc detected in the drive.
-msgstr Aucun disque détecté dans le lecteur.
+msgstr Aucun disque détecté dans le périphérique.
 
 #: ../xfburn/xfburn-blank-dialog.c:374
 msgid Disc is not erasable.
@@ -181,7 +181,7 @@ msgstr Échec
 #: ../xfburn/xfburn-burn-image-dialog.c:576
 #: ../xfburn/xfburn-burn-audio-cd-composition-dialog.c:397
 msgid Unable to grab the drive.
-msgstr Impossible de joindre le lecteur.
+msgstr Impossible de joindre le périphérique.
 
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:156
 msgid Image
@@ -189,7 +189,7 @@ msgstr Image
 
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:158
 msgid Show volume name
-msgstr Montrer le nom du volume logique
+msgstr Afficher le nom du volume
 
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:158
 msgid Show a text entry for the name of the volume
@@ -241,7 +241,7 @@ msgstr _Graver la composition
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:477
 #, c-format
 msgid Could not create destination ISO file: %s
-msgstr Échec à la création du fichier ISO : %s
+msgstr Impossible de créer le fichier ISO de destination : %s
 
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:484
 msgid Writing ISO...
@@ -304,11 +304,11 @@ msgstr Une erreur est intervenue dans le moteur de 
gravure
 
 #: ../xfburn/xfburn-burn-image-dialog.c:347
 msgid Unable to determine image size.
-msgstr Échec à la détermination de la taille de l'image.
+msgstr Impossible de déterminer la taille de l'image.
 
 #: ../xfburn/xfburn-burn-image-dialog.c:354
 msgid Cannot open image.
-msgstr Échec à l'ouverture de l'image.
+msgstr Impossible d'ouvrir l'image.
 
 #: ../xfburn/xfburn-burn-image-dialog.c:391
 msgid Burning image...
@@ -327,7 +327,7 @@ msgstr L'ajout de données au 

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

2014-11-16 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 d5983ab32c6abd2aeb9a6b233128095bb67103e5
Author: Yannick Le Guen leguen.yann...@gmail.com
Date:   Mon Nov 17 00:31:24 2014 +0100

I18n: Update translation fr (100%).

35 translated messages.

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

diff --git a/po/fr.po b/po/fr.po
index 5dea954..9969d31 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,24 +1,24 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
+# 
 # Translators:
 # jc1 jc1.quebe...@gmail.com, 2013
 # Maximilian Schleiss maximil...@xfce.org, 2007
 # Stephane Roy s...@j2n.net, 2005
+# Yannick Le Guen leguen.yann...@gmail.com, 2014
 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-08-03 15:13+\n
-Last-Translator: jc1 jc1.quebe...@gmail.com\n
-Language-Team: French (http://www.transifex.com/projects/p/xfce/language/;
-fr/)\n
-Language: fr\n
+POT-Creation-Date: 2014-11-16 12:31+0100\n
+PO-Revision-Date: 2014-11-16 17:41+\n
+Last-Translator: Yannick Le Guen leguen.yann...@gmail.com\n
+Language-Team: French 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/fr/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: fr\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../panel-plugin/netload.c:62
@@ -51,13 +51,7 @@ msgid 
 Incoming: %s\n
 Outgoing: %s\n
 Total: %s
-msgstr 
- %s  (%s)\n
-Moyenne des %d dernières mesures\n
-avec un intervalle de %.2fs :\n
-Entrant : %s/s\n
-Sortant : %s/s\n
-Total : %s/s
+msgstr  %s  (%s)\nMoyenne des %d dernières mesures\navec un intervalle de 
%.2fs :\nEntrant : %s/s\nSortant : %s/s\nTotal : %s/s
 
 #: ../panel-plugin/netload.c:258
 msgid no IP address
@@ -68,9 +62,7 @@ msgstr pas d'adresse IP
 msgid 
 %s: Error in initializing:\n
 %s
-msgstr 
-%s : Erreur durant l'initialisation :\n
-%s
+msgstr %s : Erreur durant l'initialisation :\n%s
 
 #: ../panel-plugin/netload.c:914
 msgid Select color
@@ -166,16 +158,16 @@ msgstr Gio
 
 #: ../panel-plugin/utils.c:79
 msgid bps
-msgstr 
+msgstr bit/s
 
 #: ../panel-plugin/utils.c:79
 msgid Kbps
-msgstr 
+msgstr kbit/s
 
 #: ../panel-plugin/utils.c:79
 msgid Mbps
-msgstr 
+msgstr Mbit/s
 
 #: ../panel-plugin/utils.c:79
 msgid Gbps
-msgstr 
+msgstr Gbit/s

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


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

2014-11-16 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 62fda31cd95597713ff03def983edcb24f0ca8fd
Author: André Miranda andreldm1...@gmail.com
Date:   Mon Nov 17 00:31:24 2014 +0100

I18n: Update translation pt_BR (100%).

35 translated messages.

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

diff --git a/po/pt_BR.po b/po/pt_BR.po
index 7e0f1dc..aa3e7c5 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -1,23 +1,25 @@
-# Brazilian portuguese translations for xfce4-netload-plugin package.
-# Copyright (C) 2005 Adriano Winter Bess
-# This file is distributed under the same license as the xfce4-netload-plugin 
package.
-# Adriano Winter Bess awb...@gmail.com, 2005,2006.
-# Vladimir Melo vladimirm...@foresightlinux.org, 2007.
-# Og Maciel ogmac...@gnome.org, 2008.
-# Rafael Ferreira rafael.f...@gmail.com, 2013.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Adriano Winter Bess awb...@gmail.com, 2005-2006
+# André Miranda andreldm1...@gmail.com, 2014
+# Og Maciel ogmac...@gnome.org, 2008
+# Rafael Ferreira rafael.f...@gmail.com, 2013
+# Vladimir Melo vladimirm...@foresightlinux.org, 2007
 msgid 
 msgstr 
-Project-Id-Version: xfce4-netload-plugin 0.3.3\n
+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-06-26 19:13-0300\n
-Last-Translator: Rafael Ferreira rafael.f...@gmail.com\n
-Language-Team: Brazilian Portuguese xfce-i18n...@xfce.org\n
-Language: pt_BR\n
+POT-Creation-Date: 2014-11-16 12:31+0100\n
+PO-Revision-Date: 2014-11-16 18:31+\n
+Last-Translator: André Miranda andreldm1...@gmail.com\n
+Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/pt_BR/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: pt_BR\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../panel-plugin/netload.c:62
@@ -50,13 +52,7 @@ msgid 
 Incoming: %s\n
 Outgoing: %s\n
 Total: %s
-msgstr 
- %s  (%s)\n
-Média das últimas %d medições\n
-com um intervalo de %.2fs:\n
-Entrada: %s\n
-Saída: %s\n
-Total: %s
+msgstr  %s  (%s)\nMédia das últimas %d medições\ncom um intervalo de 
%.2fs:\nEntrada: %s\nSaída: %s\nTotal: %s
 
 #: ../panel-plugin/netload.c:258
 msgid no IP address
@@ -67,9 +63,7 @@ msgstr nenhum endereço IP
 msgid 
 %s: Error in initializing:\n
 %s
-msgstr 
-%s: Erro na inicialização:\n
-%s
+msgstr %s: Erro na inicialização:\n%s
 
 #: ../panel-plugin/netload.c:914
 msgid Select color
@@ -113,7 +107,7 @@ msgstr s
 
 #: ../panel-plugin/netload.c:1101
 msgid Show values as _bits
-msgstr 
+msgstr Mostrar valores como _bits
 
 #: ../panel-plugin/netload.c:1115
 msgid _Automatic maximum
@@ -145,7 +139,7 @@ msgstr Co_lorir valores
 
 #: ../panel-plugin/netload.desktop.in.in.h:2
 msgid Show network traffic
-msgstr Mostra o tráfego de rede
+msgstr Mostrar o tráfego de rede
 
 #: ../panel-plugin/utils.c:78
 msgid B
@@ -165,22 +159,16 @@ msgstr GiB
 
 #: ../panel-plugin/utils.c:79
 msgid bps
-msgstr 
+msgstr bps
 
 #: ../panel-plugin/utils.c:79
 msgid Kbps
-msgstr 
+msgstr Kbps
 
 #: ../panel-plugin/utils.c:79
 msgid Mbps
-msgstr 
+msgstr Mbps
 
 #: ../panel-plugin/utils.c:79
 msgid Gbps
-msgstr 
-
-#~ msgid kByte/s
-#~ msgstr kByte/s
-
-#~ msgid Edit Properties
-#~ msgstr Editar Propriedades
+msgstr Gbps

-- 
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 (a70a21a - 62fda31)

2014-11-16 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  a70a21a   Update po
   new  d5983ab   I18n: Update translation fr (100%).
   new  62fda31   I18n: Update translation pt_BR (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/fr.po|   34 +
 po/pt_BR.po |   60 ---
 2 files changed, 37 insertions(+), 57 deletions(-)

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


[Xfce4-commits] [xfce/xfdesktop] branch master updated (35580a9 - b07baf2)

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  35580a9   I18n: Update translation zh_TW (100%).
   new  b07baf2   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 |   65 +++---
 1 file changed, 33 insertions(+), 32 deletions(-)

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


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

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit b07baf253f042e6f338cf1a5a16680e084749de4
Author: AlexanderFilev ifill...@gmail.com
Date:   Mon Nov 17 00:31:52 2014 +0100

I18n: Update translation ru (100%).

220 translated messages.

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

diff --git a/po/ru.po b/po/ru.po
index 2ed15b5..80883ba 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -12,6 +12,7 @@
 # Claque cpt-alatri...@ya.ru, 2011
 # Dan Korostelev digger_t...@netman.ru, 2003
 # Denis Koryavov dkorya...@yandex.ru, 2010
+# AlexanderFilev ifill...@gmail.com, 2014
 # Ilya Shestopalov yast...@yahoo.com, 2009
 # Kyrill Detinov lazy.k...@opensuse.org, 2014
 # Poul Ionkin wizz...@nmg.lv, 2003
@@ -21,9 +22,9 @@ msgid 
 msgstr 
 Project-Id-Version: Xfdesktop\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2014-08-03 12:32+0200\n
-PO-Revision-Date: 2014-09-03 18:23+\n
-Last-Translator: Sergey Alyoshin alyoshi...@gmail.com\n
+POT-Creation-Date: 2014-11-11 18:32+0100\n
+PO-Revision-Date: 2014-11-16 23:24+\n
+Last-Translator: AlexanderFilev ifill...@gmail.com\n
 Language-Team: Russian 
(http://www.transifex.com/projects/p/xfdesktop/language/ru/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -69,95 +70,99 @@ msgid 
 Size: %s
 msgstr b%s/b\nТип: %s\nРазмер: %s
 
-#: ../settings/main.c:715
+#: ../settings/main.c:716
 #, c-format
 msgid Wallpaper for Monitor %d (%s)
 msgstr Фоновое изображение для монитора %d (%s)
 
-#: ../settings/main.c:718
+#: ../settings/main.c:719
 #, c-format
 msgid Wallpaper for Monitor %d
 msgstr Фоновое изображение для монитора %d
 
-#: ../settings/main.c:724
+#: ../settings/main.c:725
 msgid Move this dialog to the display you want to edit the settings for.
 msgstr Переместите этот диалог на экран, настройки которого хотите изменить.
 
-#: ../settings/main.c:731
+#: ../settings/main.c:732
 #, c-format
 msgid Wallpaper for %s on Monitor %d (%s)
 msgstr Фоновое изображение для %s на мониторе %d (%s)
 
-#: ../settings/main.c:735
+#: ../settings/main.c:736
 #, c-format
 msgid Wallpaper for %s on Monitor %d
 msgstr Фоновое изображение для %s на мониторе %d
 
-#: ../settings/main.c:742
+#: ../settings/main.c:743
 msgid 
 Move this dialog to the display and workspace you want to edit the settings 
 for.
 msgstr Переместите этот диалог на экран и рабочее место, настройки которых 
хотите изменить.
 
 #. Single monitor and single workspace
-#: ../settings/main.c:749
+#: ../settings/main.c:751
 #, c-format
 msgid Wallpaper for my desktop
 msgstr Фоновое изображение для рабочего стола
 
 #. Single monitor and per workspace wallpaper
-#: ../settings/main.c:755
+#: ../settings/main.c:757
 #, c-format
 msgid Wallpaper for %s
 msgstr Фоновое изображение для %s
 
-#: ../settings/main.c:760
+#: ../settings/main.c:762
 msgid Move this dialog to the workspace you want to edit the settings for.
 msgstr Перенесите этот диалог на рабочее место настройки которого хотите 
изменить.
 
-#: ../settings/main.c:1174
+#: ../settings/main.c:1176
 msgid Image selection is unavailable while the image style is set to None.
 msgstr Выбор изображения недоступен, если не указан стиль изображения.
 
-#: ../settings/main.c:1524
+#: ../settings/main.c:1526
 msgid Spanning screens
 msgstr Объединённые экраны
 
-#: ../settings/main.c:1831
+#: ../settings/main.c:1836
 msgid Image files
 msgstr Файлы изображений
 
-#: ../settings/main.c:2010
+#: ../settings/main.c:2016
 msgid Settings manager socket
 msgstr Сокет диспетчера настроек
 
-#: ../settings/main.c:2010
+#: ../settings/main.c:2016
 msgid SOCKET ID
 msgstr ID сокета
 
-#: ../settings/main.c:2011
+#: ../settings/main.c:2017
 msgid Version information
 msgstr Информация о версии
 
-#: ../settings/main.c:2039
+#: ../settings/main.c:2018 ../src/xfdesktop-application.c:844
+msgid Enable debug messages
+msgstr Включить отладочные сообщения
+
+#: ../settings/main.c:2046
 #, c-format
 msgid Type '%s --help' for usage.
 msgstr Наберите «%s --help» для информации об использовании.
 
-#: ../settings/main.c:2051
+#: ../settings/main.c:2058
 msgid The Xfce development team. All rights reserved.
 msgstr Команда разработчиков Xfce. Все права защищены.
 
-#: ../settings/main.c:2052
+#: ../settings/main.c:2059
 #, c-format
 msgid Please report bugs to %s.
 msgstr Об ошибках сообщайте на %s.
 
-#: ../settings/main.c:2059
+#: ../settings/main.c:2066
 msgid Desktop Settings
 msgstr Настройки рабочего стола
 
-#: ../settings/main.c:2061
+#: ../settings/main.c:2068
 msgid Unable to contact settings server
 msgstr Не удаётся подключиться к серверу настроек
 
@@ -346,7 +351,7 @@ msgstr Значки свёрнутых приложений
 msgid File/launcher icons
 msgstr Значки файлов и запуска
 
-#: ../settings/xfdesktop-settings-ui.glade.h:10 

[Xfce4-commits] [panel-plugins/xfce4-netload-plugin] branch master updated (62fda31 - a221f7b)

2014-11-16 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  62fda31   I18n: Update translation pt_BR (100%).
   new  6317b01   I18n: Update translation de (100%).
   new  a221f7b   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/de.po|   33 -
 po/zh_TW.po |   41 +
 2 files changed, 29 insertions(+), 45 deletions(-)

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


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

2014-11-16 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 a221f7bae96638c55aea5f895eff19a11a325271
Author: Jeff Huang s8321...@gmail.com
Date:   Mon Nov 17 06:31:23 2014 +0100

I18n: Update translation zh_TW (100%).

35 translated messages.

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

diff --git a/po/zh_TW.po b/po/zh_TW.po
index eb4969f..286c2a6 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -1,21 +1,22 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
+# 
 # Translators:
+# Jeff Huang s8321...@gmail.com, 2014
+# Walter Cheuk wwych...@gmail.com, 2014
 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-07-06 15:56+\n
-Last-Translator: Cheng-Chia Tseng pswo10...@gmail.com\n
-Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/xfce/;
-language/zh_TW/)\n
-Language: zh_TW\n
+POT-Creation-Date: 2014-11-16 12:31+0100\n
+PO-Revision-Date: 2014-11-17 02:43+\n
+Last-Translator: Jeff Huang s8321...@gmail.com\n
+Language-Team: Chinese (Taiwan) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/zh_TW/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: zh_TW\n
 Plural-Forms: nplurals=1; plural=0;\n
 
 #: ../panel-plugin/netload.c:62
@@ -48,13 +49,7 @@ msgid 
 Incoming: %s\n
 Outgoing: %s\n
 Total: %s
-msgstr 
- %s  (%s)\n
-最近 %d 次測量平均\n
-間隔 %.2fs:\n
-傳入:%s\n
-傳出:%s\n
-總計:%s
+msgstr  %s  (%s)\n最近 %d 次測量平均\n間隔 %.2fs:\n傳入:%s\n傳出:%s\n總計:%s
 
 #: ../panel-plugin/netload.c:258
 msgid no IP address
@@ -65,9 +60,7 @@ msgstr 無 IP 位址
 msgid 
 %s: Error in initializing:\n
 %s
-msgstr 
-%s:初始化發生錯誤:\n
-%s
+msgstr %s:初始化發生錯誤:\n%s
 
 #: ../panel-plugin/netload.c:914
 msgid Select color
@@ -103,15 +96,15 @@ msgstr 網路裝置(_D):
 
 #: ../panel-plugin/netload.c:1074
 msgid Update _interval:
-msgstr 更新時間隔 (_I):
+msgstr 更新時間隔(_I):
 
 #: ../panel-plugin/netload.c:1087
 msgid s
-msgstr s
+msgstr 秒
 
 #: ../panel-plugin/netload.c:1101
 msgid Show values as _bits
-msgstr 
+msgstr 以位元顯示值(_B)
 
 #: ../panel-plugin/netload.c:1115
 msgid _Automatic maximum
@@ -163,16 +156,16 @@ msgstr GiB
 
 #: ../panel-plugin/utils.c:79
 msgid bps
-msgstr 
+msgstr bps
 
 #: ../panel-plugin/utils.c:79
 msgid Kbps
-msgstr 
+msgstr Kbps
 
 #: ../panel-plugin/utils.c:79
 msgid Mbps
-msgstr 
+msgstr Mbps
 
 #: ../panel-plugin/utils.c:79
 msgid Gbps
-msgstr 
+msgstr Gbps

-- 
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/02: I18n: Update translation de (100%).

2014-11-16 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 6317b01a4dd1bc960e61802ed38f04eeff1fa37c
Author: Anonymous nore...@xfce.org
Date:   Mon Nov 17 06:31:23 2014 +0100

I18n: Update translation de (100%).

35 translated messages.

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

diff --git a/po/de.po b/po/de.po
index 260e149..2a20481 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1,7 +1,7 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
+# 
 # Translators:
 # Bernhard Walle bernhard.wa...@gmx.de, 2003,2005
 # Enrico Tröger enrico.troe...@uvena.de, 2006
@@ -12,15 +12,14 @@ 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: 2014-08-01 20:56+\n
+POT-Creation-Date: 2014-11-16 12:31+0100\n
+PO-Revision-Date: 2014-11-17 00:17+\n
 Last-Translator: Tobias Bannert\n
-Language-Team: German (http://www.transifex.com/projects/p/xfce-panel-;
-plugins/language/de/)\n
-Language: de\n
+Language-Team: German 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/de/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: de\n
 Plural-Forms: nplurals=2; plural=(n != 1);\n
 
 #: ../panel-plugin/netload.c:62
@@ -53,13 +52,7 @@ msgid 
 Incoming: %s\n
 Outgoing: %s\n
 Total: %s
-msgstr 
-»%s« (%s)\n
-Durchschnitt der letzten %d Messungen\n
-in einem Abstand von %.2fs:\n
-Eingehend: %s\n
-Ausgehend: %s\n
-Gesamt: %s
+msgstr »%s« (%s)\nDurchschnitt der letzten %d Messungen\nin einem Abstand von 
%.2fs:\nEingehend: %s\nAusgehend: %s\nGesamt: %s
 
 #: ../panel-plugin/netload.c:258
 msgid no IP address
@@ -70,9 +63,7 @@ msgstr keine IP-Adresse
 msgid 
 %s: Error in initializing:\n
 %s
-msgstr 
-%s: Fehler beim Initialisieren:\n
-%s
+msgstr %s: Fehler beim Initialisieren:\n%s
 
 #: ../panel-plugin/netload.c:914
 msgid Select color
@@ -116,7 +107,7 @@ msgstr s
 
 #: ../panel-plugin/netload.c:1101
 msgid Show values as _bits
-msgstr 
+msgstr Werte als _Bits anzeigen
 
 #: ../panel-plugin/netload.c:1115
 msgid _Automatic maximum
@@ -168,16 +159,16 @@ msgstr GiB
 
 #: ../panel-plugin/utils.c:79
 msgid bps
-msgstr 
+msgstr bit/s
 
 #: ../panel-plugin/utils.c:79
 msgid Kbps
-msgstr 
+msgstr Kbit/s
 
 #: ../panel-plugin/utils.c:79
 msgid Mbps
-msgstr 
+msgstr Mbit/s
 
 #: ../panel-plugin/utils.c:79
 msgid Gbps
-msgstr 
+msgstr Gbit/s

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


[Xfce4-commits] [xfce/xfdesktop] 01/01: Default application not respected with glib = 2.41 (Bug #11306)

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit a4d701b2836724f101d319c11205fa03201134fb
Author: Eric Koegel eric.koe...@gmail.com
Date:   Sun Nov 16 16:35:26 2014 +0300

Default application not respected with glib = 2.41 (Bug #11306)

Ensure xfdesktop's right click menu has the default
application as the first element of the returned list. This is
just a copy of Thunar's patch adapted for xfdesktop. See:
https://bugzilla.xfce.org/show_bug.cgi?id=11212 and

http://git.xfce.org/xfce/thunar/commit/?id=4b142af9dfe19f90ffe5529e2f099dc55298ecef
---
 src/xfdesktop-file-icon-manager.c |   21 -
 1 file changed, 20 insertions(+), 1 deletion(-)

diff --git a/src/xfdesktop-file-icon-manager.c 
b/src/xfdesktop-file-icon-manager.c
index 3d02d51..ccfd91e 100644
--- a/src/xfdesktop-file-icon-manager.c
+++ b/src/xfdesktop-file-icon-manager.c
@@ -1539,7 +1539,26 @@ 
xfdesktop_file_icon_manager_populate_context_menu(XfceDesktop *desktop,
 
 app_infos = 
g_app_info_get_all_for_type(g_file_info_get_content_type(info));
 if(app_infos) {
-GAppInfo *app_info = G_APP_INFO(app_infos-data);
+GAppInfo *app_info, *default_application;
+GList *ap;
+
+/* move any default application in front of the list */
+default_application = g_app_info_get_default_for_type 
(g_file_info_get_content_type(info), FALSE);
+if (G_LIKELY (default_application != NULL))
+{
+for (ap = app_infos; ap != NULL; ap = ap-next)
+{
+if (g_app_info_equal (ap-data, 
default_application))
+{
+g_object_unref (ap-data);
+app_infos = g_list_delete_link (app_infos, ap);
+break;
+}
+}
+app_infos = g_list_prepend (app_infos, 
default_application);
+}
+
+app_info = G_APP_INFO(app_infos-data);
 
 mi = xfdesktop_menu_item_from_app_info(fmanager, file_icon,
app_info, TRUE, 
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] [xfce/xfdesktop] branch master updated (b07baf2 - a4d701b)

2014-11-16 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  b07baf2   I18n: Update translation ru (100%).
   new  a4d701b   Default application not respected with glib = 2.41 (Bug 
#11306)

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:
 src/xfdesktop-file-icon-manager.c |   21 -
 1 file changed, 20 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